fix(server): rename android-links api endpoint to apk-links ()

* remove auth from endpoint and change android to apk

* add auth back to `apk-links`
This commit is contained in:
Nicholas 2025-05-31 00:27:55 -04:00 committed by GitHub
parent e2defbc49a
commit 3a5fed99e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 14 additions and 14 deletions
open-api/typescript-sdk/src

View file

@ -2874,11 +2874,11 @@ export function getAboutInfo(opts?: Oazapfts.RequestOpts) {
...opts
}));
}
export function getAndroidLinks(opts?: Oazapfts.RequestOpts) {
export function getApkLinks(opts?: Oazapfts.RequestOpts) {
return oazapfts.ok(oazapfts.fetchJson<{
status: 200;
data: ServerApkLinksDto;
}>("/server/android-links", {
}>("/server/apk-links", {
...opts
}));
}