fix(deps): update typescript-projects (#28008)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
renovate[bot]
2026-04-21 15:29:34 +02:00
committed by GitHub
parent 312bb91a4f
commit c2786978cd
12 changed files with 3148 additions and 2664 deletions
-10
View File
@@ -10298,16 +10298,6 @@
"operationId": "getServerLicense",
"parameters": [],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LicenseResponseDto"
}
}
},
"description": ""
},
"404": {
"description": ""
}
+1 -6
View File
@@ -5591,12 +5591,7 @@ export function deleteServerLicense(opts?: Oazapfts.RequestOpts) {
* Get product key
*/
export function getServerLicense(opts?: Oazapfts.RequestOpts) {
return oazapfts.ok(oazapfts.fetchJson<{
status: 200;
data: UserLicense;
} | {
status: 404;
}>("/server/license", {
return oazapfts.ok(oazapfts.fetchText("/server/license", {
...opts
}));
}