@accelbyte/sdk-ams 0.0.0-dev-20250519035357 → 0.0.0-dev-20260320085237
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{FleetClaimResponse-Tpo4nWk_.d.cts → FleetClaimResponse-CE1Oz24x.d.cts} +91 -46
- package/dist/{FleetClaimResponse-Tpo4nWk_.d.ts → FleetClaimResponse-CE1Oz24x.d.ts} +91 -46
- package/dist/all-query-imports.cjs +230 -131
- package/dist/all-query-imports.d.cts +23 -5
- package/dist/all-query-imports.d.ts +23 -5
- package/dist/all-query-imports.js +17 -1
- package/dist/{chunk-YDYBKQVZ.js → chunk-UWNS42GE.js} +213 -131
- package/dist/global/index.global.js +1 -1
- package/dist/index.cjs +253 -189
- package/dist/index.d.cts +33 -141
- package/dist/index.d.ts +33 -141
- package/dist/index.js +39 -55
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AccelByteSDK, SdkSetConfigParam, Response } from '@accelbyte/sdk';
|
|
2
2
|
import { AxiosResponse, AxiosInstance } from 'axios';
|
|
3
|
-
import { A as AccountResponse, b as AccountCreateRequest, a as AccountCreateResponse, c as AccountLinkTokenResponse, e as AccountLinkRequest, d as AccountLinkResponse, f as AmsRegionsResponse, I as
|
|
3
|
+
import { A as AccountResponse, b as AccountCreateRequest, a as AccountCreateResponse, c as AccountLinkTokenResponse, e as AccountLinkRequest, d as AccountLinkResponse, f as AmsRegionsResponse, I as InstanceTypesResponse, Q as QoSEndpointResponse, U as UpdateServerRequest, g as ArtifactListResponse, h as ArtifactUsageResponse, i as ArtifactUrlResponse, F as FleetArtifactsSampleRules, D as DevelopmentServerConfigurationListResponse, k as DevelopmentServerConfigurationCreateRequest, j as DevelopmentServerConfigurationCreateResponse, l as DevelopmentServerConfigurationGetResponse, m as DevelopmentServerConfigurationUpdateRequest, n as FleetListResponse, p as FleetParameters, o as FleetCreateResponse, q as FleetGetResponse, r as FleetServersResponse, s as ImageList, t as ImageStorage, u as ImageDetails, v as ImageUpdate, w as FleetServerInfoResponse, x as FleetServerHistoryResponse, y as DsHistoryList, z as FleetServerConnectionInfoResponse, C as FleetClaimByKeysReq, B as FleetClaimResponse, E as FleetClaimReq } from './FleetClaimResponse-CE1Oz24x.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -38,7 +38,7 @@ declare function AmsInfoAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam): {
|
|
|
38
38
|
/**
|
|
39
39
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA [READ]
|
|
40
40
|
*/
|
|
41
|
-
getSupportedInstances: () => Promise<AxiosResponse<
|
|
41
|
+
getSupportedInstances: () => Promise<AxiosResponse<InstanceTypesResponse>>;
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
/**
|
|
@@ -136,6 +136,10 @@ declare function DevelopmentAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam
|
|
|
136
136
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
|
|
137
137
|
*/
|
|
138
138
|
getDevelopmentServerConfiguration_ByDevelopmentServerConfigId: (developmentServerConfigID: string) => Promise<AxiosResponse<DevelopmentServerConfigurationGetResponse>>;
|
|
139
|
+
/**
|
|
140
|
+
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [UPDATE]
|
|
141
|
+
*/
|
|
142
|
+
patchDevelopmentServerConfiguration_ByDevelopmentServerConfigId: (developmentServerConfigID: string, data: DevelopmentServerConfigurationUpdateRequest) => Promise<AxiosResponse<unknown>>;
|
|
139
143
|
};
|
|
140
144
|
|
|
141
145
|
/**
|
|
@@ -149,11 +153,11 @@ declare function FleetsAdminApi(sdk: AccelByteSDK, args?: SdkSetConfigParam): {
|
|
|
149
153
|
getFleets: (queryParams?: {
|
|
150
154
|
active?: boolean | null;
|
|
151
155
|
count?: number;
|
|
152
|
-
desc?: "asc" | "desc";
|
|
153
156
|
name?: string | null;
|
|
154
157
|
offset?: number;
|
|
155
158
|
region?: string | null;
|
|
156
159
|
sortBy?: "active" | "name";
|
|
160
|
+
sortDirection?: "asc" | "desc";
|
|
157
161
|
}) => Promise<AxiosResponse<FleetListResponse>>;
|
|
158
162
|
/**
|
|
159
163
|
* Optionally, sampling rules for the fleet can also be specified Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [CREATE]
|
|
@@ -390,7 +394,7 @@ declare class AmsInfoAdmin$ {
|
|
|
390
394
|
/**
|
|
391
395
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA [READ]
|
|
392
396
|
*/
|
|
393
|
-
getSupportedInstances(): Promise<Response<
|
|
397
|
+
getSupportedInstances(): Promise<Response<InstanceTypesResponse>>;
|
|
394
398
|
}
|
|
395
399
|
|
|
396
400
|
/**
|
|
@@ -500,6 +504,10 @@ declare class DevelopmentAdmin$ {
|
|
|
500
504
|
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [READ]
|
|
501
505
|
*/
|
|
502
506
|
getDevelopmentServerConfiguration_ByDevelopmentServerConfigId(developmentServerConfigID: string): Promise<Response<DevelopmentServerConfigurationGetResponse>>;
|
|
507
|
+
/**
|
|
508
|
+
* Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [UPDATE]
|
|
509
|
+
*/
|
|
510
|
+
patchDevelopmentServerConfiguration_ByDevelopmentServerConfigId(developmentServerConfigID: string, data: DevelopmentServerConfigurationUpdateRequest): Promise<Response<unknown>>;
|
|
503
511
|
}
|
|
504
512
|
|
|
505
513
|
/**
|
|
@@ -517,11 +525,11 @@ declare class FleetsAdmin$ {
|
|
|
517
525
|
getFleets(queryParams?: {
|
|
518
526
|
active?: boolean | null;
|
|
519
527
|
count?: number;
|
|
520
|
-
desc?: 'asc' | 'desc';
|
|
521
528
|
name?: string | null;
|
|
522
529
|
offset?: number;
|
|
523
530
|
region?: string | null;
|
|
524
531
|
sortBy?: 'active' | 'name';
|
|
532
|
+
sortDirection?: 'asc' | 'desc';
|
|
525
533
|
}): Promise<Response<FleetListResponse>>;
|
|
526
534
|
/**
|
|
527
535
|
* Optionally, sampling rules for the fleet can also be specified Required Permission: ADMIN:NAMESPACE:{namespace}:ARMADA:FLEET [CREATE]
|
|
@@ -665,6 +673,7 @@ declare const ArtifactResponse: z.ZodObject<{
|
|
|
665
673
|
id: z.ZodString;
|
|
666
674
|
imageId: z.ZodString;
|
|
667
675
|
namespace: z.ZodString;
|
|
676
|
+
reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
668
677
|
region: z.ZodString;
|
|
669
678
|
sizeBytes: z.ZodNumber;
|
|
670
679
|
status: z.ZodString;
|
|
@@ -681,6 +690,7 @@ declare const ArtifactResponse: z.ZodObject<{
|
|
|
681
690
|
sizeBytes: number;
|
|
682
691
|
createdOn?: any;
|
|
683
692
|
expiresOn?: any;
|
|
693
|
+
reason?: string | null | undefined;
|
|
684
694
|
}, {
|
|
685
695
|
namespace: string;
|
|
686
696
|
status: string;
|
|
@@ -694,6 +704,7 @@ declare const ArtifactResponse: z.ZodObject<{
|
|
|
694
704
|
sizeBytes: number;
|
|
695
705
|
createdOn?: any;
|
|
696
706
|
expiresOn?: any;
|
|
707
|
+
reason?: string | null | undefined;
|
|
697
708
|
}>;
|
|
698
709
|
interface ArtifactResponse extends z.TypeOf<typeof ArtifactResponse> {
|
|
699
710
|
}
|
|
@@ -822,20 +833,20 @@ declare const DsHistoryEvent: z.ZodObject<{
|
|
|
822
833
|
}, "strip", z.ZodTypeAny, {
|
|
823
834
|
status: string;
|
|
824
835
|
region: string;
|
|
836
|
+
reason: string;
|
|
825
837
|
ipAddress: string;
|
|
826
838
|
serverId: string;
|
|
827
839
|
sessionId: string;
|
|
828
840
|
exitCode: number;
|
|
829
|
-
reason: string;
|
|
830
841
|
createdAt?: any;
|
|
831
842
|
}, {
|
|
832
843
|
status: string;
|
|
833
844
|
region: string;
|
|
845
|
+
reason: string;
|
|
834
846
|
ipAddress: string;
|
|
835
847
|
serverId: string;
|
|
836
848
|
sessionId: string;
|
|
837
849
|
exitCode: number;
|
|
838
|
-
reason: string;
|
|
839
850
|
createdAt?: any;
|
|
840
851
|
}>;
|
|
841
852
|
interface DsHistoryEvent extends z.TypeOf<typeof DsHistoryEvent> {
|
|
@@ -913,12 +924,14 @@ declare const FleetListItemResponse: z.ZodObject<{
|
|
|
913
924
|
targetDsCount: number;
|
|
914
925
|
targetVmCount: number;
|
|
915
926
|
}>, "many">;
|
|
927
|
+
fallbackFleet: z.ZodString;
|
|
916
928
|
id: z.ZodString;
|
|
917
929
|
image: z.ZodString;
|
|
918
930
|
instanceProvider: z.ZodString;
|
|
919
931
|
isLocal: z.ZodBoolean;
|
|
920
932
|
name: z.ZodString;
|
|
921
933
|
onDemand: z.ZodBoolean;
|
|
934
|
+
primaryFleet: z.ZodString;
|
|
922
935
|
regions: z.ZodArray<z.ZodString, "many">;
|
|
923
936
|
}, "strip", z.ZodTypeAny, {
|
|
924
937
|
name: string;
|
|
@@ -926,8 +939,10 @@ declare const FleetListItemResponse: z.ZodObject<{
|
|
|
926
939
|
regions: string[];
|
|
927
940
|
instanceProvider: string;
|
|
928
941
|
active: boolean;
|
|
942
|
+
fallbackFleet: string;
|
|
929
943
|
isLocal: boolean;
|
|
930
944
|
onDemand: boolean;
|
|
945
|
+
primaryFleet: string;
|
|
931
946
|
counts: {
|
|
932
947
|
region: string;
|
|
933
948
|
claimedServerCount: number;
|
|
@@ -943,8 +958,10 @@ declare const FleetListItemResponse: z.ZodObject<{
|
|
|
943
958
|
regions: string[];
|
|
944
959
|
instanceProvider: string;
|
|
945
960
|
active: boolean;
|
|
961
|
+
fallbackFleet: string;
|
|
946
962
|
isLocal: boolean;
|
|
947
963
|
onDemand: boolean;
|
|
964
|
+
primaryFleet: string;
|
|
948
965
|
counts: {
|
|
949
966
|
region: string;
|
|
950
967
|
claimedServerCount: number;
|
|
@@ -993,17 +1010,17 @@ declare const FleetServerHistoryEventResponse: z.ZodObject<{
|
|
|
993
1010
|
serverId: z.ZodString;
|
|
994
1011
|
}, "strip", z.ZodTypeAny, {
|
|
995
1012
|
fleetId: string;
|
|
1013
|
+
reason: string;
|
|
996
1014
|
serverId: string;
|
|
997
1015
|
exitCode: number;
|
|
998
|
-
reason: string;
|
|
999
1016
|
newState: string;
|
|
1000
1017
|
oldState: string;
|
|
1001
1018
|
createdAt?: any;
|
|
1002
1019
|
}, {
|
|
1003
1020
|
fleetId: string;
|
|
1021
|
+
reason: string;
|
|
1004
1022
|
serverId: string;
|
|
1005
1023
|
exitCode: number;
|
|
1006
|
-
reason: string;
|
|
1007
1024
|
newState: string;
|
|
1008
1025
|
oldState: string;
|
|
1009
1026
|
createdAt?: any;
|
|
@@ -1077,7 +1094,7 @@ interface ImageDeploymentProfile extends z.TypeOf<typeof ImageDeploymentProfile>
|
|
|
1077
1094
|
|
|
1078
1095
|
declare const ImageListItem: z.ZodObject<{
|
|
1079
1096
|
createdAt: z.ZodAny;
|
|
1080
|
-
deleteAt: z.ZodAny
|
|
1097
|
+
deleteAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
1081
1098
|
executable: z.ZodString;
|
|
1082
1099
|
id: z.ZodString;
|
|
1083
1100
|
isProtected: z.ZodBoolean;
|
|
@@ -1121,7 +1138,7 @@ declare const ImageListItem: z.ZodObject<{
|
|
|
1121
1138
|
interface ImageListItem extends z.TypeOf<typeof ImageListItem> {
|
|
1122
1139
|
}
|
|
1123
1140
|
|
|
1124
|
-
declare const
|
|
1141
|
+
declare const InstanceType: z.ZodObject<{
|
|
1125
1142
|
capacity: z.ZodArray<z.ZodObject<{
|
|
1126
1143
|
region: z.ZodString;
|
|
1127
1144
|
vmCount: z.ZodNumber;
|
|
@@ -1134,6 +1151,7 @@ declare const InstanceTypeForNamespaceResponse: z.ZodObject<{
|
|
|
1134
1151
|
}>, "many">;
|
|
1135
1152
|
description: z.ZodString;
|
|
1136
1153
|
id: z.ZodString;
|
|
1154
|
+
isBaremetal: z.ZodBoolean;
|
|
1137
1155
|
memoryGiB: z.ZodNumber;
|
|
1138
1156
|
minSpeed: z.ZodString;
|
|
1139
1157
|
name: z.ZodString;
|
|
@@ -1148,6 +1166,7 @@ declare const InstanceTypeForNamespaceResponse: z.ZodObject<{
|
|
|
1148
1166
|
vmCount: number;
|
|
1149
1167
|
}[];
|
|
1150
1168
|
description: string;
|
|
1169
|
+
isBaremetal: boolean;
|
|
1151
1170
|
memoryGiB: number;
|
|
1152
1171
|
minSpeed: string;
|
|
1153
1172
|
ownerAccountId: string;
|
|
@@ -1161,106 +1180,14 @@ declare const InstanceTypeForNamespaceResponse: z.ZodObject<{
|
|
|
1161
1180
|
vmCount: number;
|
|
1162
1181
|
}[];
|
|
1163
1182
|
description: string;
|
|
1183
|
+
isBaremetal: boolean;
|
|
1164
1184
|
memoryGiB: number;
|
|
1165
1185
|
minSpeed: string;
|
|
1166
1186
|
ownerAccountId: string;
|
|
1167
1187
|
provider: string;
|
|
1168
1188
|
virtualCpu: number;
|
|
1169
1189
|
}>;
|
|
1170
|
-
interface
|
|
1171
|
-
}
|
|
1172
|
-
|
|
1173
|
-
declare const Location: z.ZodObject<{
|
|
1174
|
-
cacheEnd: z.ZodNumber;
|
|
1175
|
-
cacheStart: z.ZodNumber;
|
|
1176
|
-
cacheZone: z.ZodObject<{
|
|
1177
|
-
isDST: z.ZodBoolean;
|
|
1178
|
-
name: z.ZodString;
|
|
1179
|
-
offset: z.ZodNumber;
|
|
1180
|
-
}, "strip", z.ZodTypeAny, {
|
|
1181
|
-
name: string;
|
|
1182
|
-
isDST: boolean;
|
|
1183
|
-
offset: number;
|
|
1184
|
-
}, {
|
|
1185
|
-
name: string;
|
|
1186
|
-
isDST: boolean;
|
|
1187
|
-
offset: number;
|
|
1188
|
-
}>;
|
|
1189
|
-
extend: z.ZodString;
|
|
1190
|
-
name: z.ZodString;
|
|
1191
|
-
tx: z.ZodArray<z.ZodObject<{
|
|
1192
|
-
index: z.ZodNumber;
|
|
1193
|
-
isstd: z.ZodBoolean;
|
|
1194
|
-
isutc: z.ZodBoolean;
|
|
1195
|
-
when: z.ZodNumber;
|
|
1196
|
-
}, "strip", z.ZodTypeAny, {
|
|
1197
|
-
index: number;
|
|
1198
|
-
isstd: boolean;
|
|
1199
|
-
isutc: boolean;
|
|
1200
|
-
when: number;
|
|
1201
|
-
}, {
|
|
1202
|
-
index: number;
|
|
1203
|
-
isstd: boolean;
|
|
1204
|
-
isutc: boolean;
|
|
1205
|
-
when: number;
|
|
1206
|
-
}>, "many">;
|
|
1207
|
-
zone: z.ZodArray<z.ZodObject<{
|
|
1208
|
-
isDST: z.ZodBoolean;
|
|
1209
|
-
name: z.ZodString;
|
|
1210
|
-
offset: z.ZodNumber;
|
|
1211
|
-
}, "strip", z.ZodTypeAny, {
|
|
1212
|
-
name: string;
|
|
1213
|
-
isDST: boolean;
|
|
1214
|
-
offset: number;
|
|
1215
|
-
}, {
|
|
1216
|
-
name: string;
|
|
1217
|
-
isDST: boolean;
|
|
1218
|
-
offset: number;
|
|
1219
|
-
}>, "many">;
|
|
1220
|
-
}, "strip", z.ZodTypeAny, {
|
|
1221
|
-
name: string;
|
|
1222
|
-
cacheEnd: number;
|
|
1223
|
-
cacheStart: number;
|
|
1224
|
-
cacheZone: {
|
|
1225
|
-
name: string;
|
|
1226
|
-
isDST: boolean;
|
|
1227
|
-
offset: number;
|
|
1228
|
-
};
|
|
1229
|
-
extend: string;
|
|
1230
|
-
tx: {
|
|
1231
|
-
index: number;
|
|
1232
|
-
isstd: boolean;
|
|
1233
|
-
isutc: boolean;
|
|
1234
|
-
when: number;
|
|
1235
|
-
}[];
|
|
1236
|
-
zone: {
|
|
1237
|
-
name: string;
|
|
1238
|
-
isDST: boolean;
|
|
1239
|
-
offset: number;
|
|
1240
|
-
}[];
|
|
1241
|
-
}, {
|
|
1242
|
-
name: string;
|
|
1243
|
-
cacheEnd: number;
|
|
1244
|
-
cacheStart: number;
|
|
1245
|
-
cacheZone: {
|
|
1246
|
-
name: string;
|
|
1247
|
-
isDST: boolean;
|
|
1248
|
-
offset: number;
|
|
1249
|
-
};
|
|
1250
|
-
extend: string;
|
|
1251
|
-
tx: {
|
|
1252
|
-
index: number;
|
|
1253
|
-
isstd: boolean;
|
|
1254
|
-
isutc: boolean;
|
|
1255
|
-
when: number;
|
|
1256
|
-
}[];
|
|
1257
|
-
zone: {
|
|
1258
|
-
name: string;
|
|
1259
|
-
isDST: boolean;
|
|
1260
|
-
offset: number;
|
|
1261
|
-
}[];
|
|
1262
|
-
}>;
|
|
1263
|
-
interface Location extends z.TypeOf<typeof Location> {
|
|
1190
|
+
interface InstanceType extends z.TypeOf<typeof InstanceType> {
|
|
1264
1191
|
}
|
|
1265
1192
|
|
|
1266
1193
|
declare const PaginationInfo: z.ZodObject<{
|
|
@@ -1418,41 +1345,6 @@ declare const Timeout: z.ZodObject<{
|
|
|
1418
1345
|
interface Timeout extends z.TypeOf<typeof Timeout> {
|
|
1419
1346
|
}
|
|
1420
1347
|
|
|
1421
|
-
declare const Zone: z.ZodObject<{
|
|
1422
|
-
isDST: z.ZodBoolean;
|
|
1423
|
-
name: z.ZodString;
|
|
1424
|
-
offset: z.ZodNumber;
|
|
1425
|
-
}, "strip", z.ZodTypeAny, {
|
|
1426
|
-
name: string;
|
|
1427
|
-
isDST: boolean;
|
|
1428
|
-
offset: number;
|
|
1429
|
-
}, {
|
|
1430
|
-
name: string;
|
|
1431
|
-
isDST: boolean;
|
|
1432
|
-
offset: number;
|
|
1433
|
-
}>;
|
|
1434
|
-
interface Zone extends z.TypeOf<typeof Zone> {
|
|
1435
|
-
}
|
|
1436
|
-
|
|
1437
|
-
declare const ZoneTrans: z.ZodObject<{
|
|
1438
|
-
index: z.ZodNumber;
|
|
1439
|
-
isstd: z.ZodBoolean;
|
|
1440
|
-
isutc: z.ZodBoolean;
|
|
1441
|
-
when: z.ZodNumber;
|
|
1442
|
-
}, "strip", z.ZodTypeAny, {
|
|
1443
|
-
index: number;
|
|
1444
|
-
isstd: boolean;
|
|
1445
|
-
isutc: boolean;
|
|
1446
|
-
when: number;
|
|
1447
|
-
}, {
|
|
1448
|
-
index: number;
|
|
1449
|
-
isstd: boolean;
|
|
1450
|
-
isutc: boolean;
|
|
1451
|
-
when: number;
|
|
1452
|
-
}>;
|
|
1453
|
-
interface ZoneTrans extends z.TypeOf<typeof ZoneTrans> {
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
1348
|
/**
|
|
1457
1349
|
* AUTO GENERATED
|
|
1458
1350
|
*/
|
|
@@ -1545,4 +1437,4 @@ declare class Watchdogs$ {
|
|
|
1545
1437
|
getConnect_ByWatchdogId_ByNS(watchdogID: string): Promise<Response<unknown>>;
|
|
1546
1438
|
}
|
|
1547
1439
|
|
|
1548
|
-
export { Account$, AccountAdmin$, AccountAdminApi, AccountApi, AccountCreateRequest, AccountCreateResponse, AccountLimits, AccountLinkRequest, AccountLinkResponse, AccountLinkTokenResponse, AccountResponse, Ams, AmsInfo$, AmsInfoAdmin$, AmsInfoAdminApi, AmsInfoApi, AmsQoSAdmin$, AmsQoSAdminApi, AmsRegionsResponse, ArtifactListResponse, ArtifactResponse, ArtifactSamplingRule, ArtifactTypeSamplingRules, ArtifactUrlResponse, ArtifactUsageResponse, ArtifactsAdmin$, ArtifactsAdminApi, Auth$, AuthApi, Capacity, CoredumpSamplingRules, DevelopmentAdmin$, DevelopmentAdminApi, DevelopmentServerConfigurationCreateRequest, DevelopmentServerConfigurationCreateResponse, DevelopmentServerConfigurationGetResponse, DevelopmentServerConfigurationListResponse, DsHistoryEvent, DsHistoryList, DsHostConfiguration, DsHostConfigurationParameters, ErrorResponse, FleetArtifactsSampleRules, FleetClaimByKeysReq, FleetClaimReq, FleetClaimResponse, FleetCommander$, FleetCommanderApi, FleetCreateResponse, FleetGetResponse, FleetListItemResponse, FleetListResponse, FleetParameters, FleetRegionalServerCounts, FleetServerConnectionInfoResponse, FleetServerHistoryEventResponse, FleetServerHistoryResponse, FleetServerInfoResponse, FleetServersResponse, Fleets$, FleetsAdmin$, FleetsAdminApi, FleetsApi, ImageDeploymentProfile, ImageDetails, ImageList, ImageListItem, ImageStorage, ImageUpdate, ImagesAdmin$, ImagesAdminApi,
|
|
1440
|
+
export { Account$, AccountAdmin$, AccountAdminApi, AccountApi, AccountCreateRequest, AccountCreateResponse, AccountLimits, AccountLinkRequest, AccountLinkResponse, AccountLinkTokenResponse, AccountResponse, Ams, AmsInfo$, AmsInfoAdmin$, AmsInfoAdminApi, AmsInfoApi, AmsQoSAdmin$, AmsQoSAdminApi, AmsRegionsResponse, ArtifactListResponse, ArtifactResponse, ArtifactSamplingRule, ArtifactTypeSamplingRules, ArtifactUrlResponse, ArtifactUsageResponse, ArtifactsAdmin$, ArtifactsAdminApi, Auth$, AuthApi, Capacity, CoredumpSamplingRules, DevelopmentAdmin$, DevelopmentAdminApi, DevelopmentServerConfigurationCreateRequest, DevelopmentServerConfigurationCreateResponse, DevelopmentServerConfigurationGetResponse, DevelopmentServerConfigurationListResponse, DevelopmentServerConfigurationUpdateRequest, DsHistoryEvent, DsHistoryList, DsHostConfiguration, DsHostConfigurationParameters, ErrorResponse, FleetArtifactsSampleRules, FleetClaimByKeysReq, FleetClaimReq, FleetClaimResponse, FleetCommander$, FleetCommanderApi, FleetCreateResponse, FleetGetResponse, FleetListItemResponse, FleetListResponse, FleetParameters, FleetRegionalServerCounts, FleetServerConnectionInfoResponse, FleetServerHistoryEventResponse, FleetServerHistoryResponse, FleetServerInfoResponse, FleetServersResponse, Fleets$, FleetsAdmin$, FleetsAdminApi, FleetsApi, ImageDeploymentProfile, ImageDetails, ImageList, ImageListItem, ImageStorage, ImageUpdate, ImagesAdmin$, ImagesAdminApi, InstanceType, InstanceTypesResponse, PaginationInfo, PagingInfo, PortConfiguration, QoSEndpointResponse, QoSServer, ReferencingFleet, RegionConfig, ServersAdmin$, ServersAdminApi, Time, Timeout, UpdateServerRequest, Watchdogs$, WatchdogsApi };
|
package/dist/index.js
CHANGED
|
@@ -60,8 +60,8 @@ import {
|
|
|
60
60
|
ImageStorage,
|
|
61
61
|
ImagesAdmin$,
|
|
62
62
|
ImagesAdminApi,
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
InstanceType,
|
|
64
|
+
InstanceTypesResponse,
|
|
65
65
|
PaginationInfo,
|
|
66
66
|
PagingInfo,
|
|
67
67
|
PortConfiguration,
|
|
@@ -75,11 +75,11 @@ import {
|
|
|
75
75
|
Timeout,
|
|
76
76
|
Watchdogs$,
|
|
77
77
|
WatchdogsApi
|
|
78
|
-
} from "./chunk-
|
|
78
|
+
} from "./chunk-UWNS42GE.js";
|
|
79
79
|
|
|
80
80
|
// package.json
|
|
81
81
|
var name = "@accelbyte/sdk-ams";
|
|
82
|
-
var version = "5.2
|
|
82
|
+
var version = "5.3.2";
|
|
83
83
|
var author = "AccelByte Inc";
|
|
84
84
|
|
|
85
85
|
// src/Ams.ts
|
|
@@ -119,74 +119,60 @@ var AccountLinkRequest = z2.object({ token: z2.string() });
|
|
|
119
119
|
import { z as z3 } from "zod";
|
|
120
120
|
var DevelopmentServerConfigurationCreateRequest = z3.object({
|
|
121
121
|
commandLineArguments: z3.string(),
|
|
122
|
-
expiresAt:
|
|
122
|
+
expiresAt: Time.nullish(),
|
|
123
123
|
imageId: z3.string(),
|
|
124
124
|
name: z3.string()
|
|
125
125
|
});
|
|
126
126
|
|
|
127
|
-
// src/generated-definitions/
|
|
127
|
+
// src/generated-definitions/DevelopmentServerConfigurationUpdateRequest.ts
|
|
128
128
|
import { z as z4 } from "zod";
|
|
129
|
-
var
|
|
129
|
+
var DevelopmentServerConfigurationUpdateRequest = z4.object({
|
|
130
|
+
commandLineArguments: z4.string().nullish(),
|
|
131
|
+
expiresAt: Time.nullish()
|
|
132
|
+
});
|
|
130
133
|
|
|
131
|
-
// src/generated-definitions/
|
|
134
|
+
// src/generated-definitions/DsHostConfigurationParameters.ts
|
|
132
135
|
import { z as z5 } from "zod";
|
|
133
|
-
var
|
|
136
|
+
var DsHostConfigurationParameters = z5.object({ instanceId: z5.string(), serversPerVm: z5.number().int() });
|
|
134
137
|
|
|
135
|
-
// src/generated-definitions/
|
|
138
|
+
// src/generated-definitions/ErrorResponse.ts
|
|
136
139
|
import { z as z6 } from "zod";
|
|
137
|
-
var
|
|
140
|
+
var ErrorResponse = z6.object({ errorMessage: z6.string(), errorType: z6.string(), traceId: z6.string() });
|
|
138
141
|
|
|
139
|
-
// src/generated-definitions/
|
|
142
|
+
// src/generated-definitions/FleetClaimByKeysReq.ts
|
|
140
143
|
import { z as z7 } from "zod";
|
|
141
|
-
var
|
|
144
|
+
var FleetClaimByKeysReq = z7.object({ claimKeys: z7.array(z7.string()), regions: z7.array(z7.string()), sessionId: z7.string() });
|
|
142
145
|
|
|
143
|
-
// src/generated-definitions/
|
|
146
|
+
// src/generated-definitions/FleetClaimReq.ts
|
|
144
147
|
import { z as z8 } from "zod";
|
|
145
|
-
var
|
|
146
|
-
|
|
147
|
-
|
|
148
|
+
var FleetClaimReq = z8.object({ region: z8.string(), sessionId: z8.string() });
|
|
149
|
+
|
|
150
|
+
// src/generated-definitions/FleetParameters.ts
|
|
151
|
+
import { z as z9 } from "zod";
|
|
152
|
+
var FleetParameters = z9.object({
|
|
153
|
+
active: z9.boolean(),
|
|
154
|
+
claimKeys: z9.array(z9.string()).nullish(),
|
|
148
155
|
dsHostConfiguration: DsHostConfigurationParameters,
|
|
156
|
+
fallbackFleet: z9.string().nullish(),
|
|
149
157
|
imageDeploymentProfile: ImageDeploymentProfile,
|
|
150
|
-
name:
|
|
151
|
-
onDemand:
|
|
152
|
-
regions:
|
|
158
|
+
name: z9.string(),
|
|
159
|
+
onDemand: z9.boolean(),
|
|
160
|
+
regions: z9.array(RegionConfig),
|
|
153
161
|
samplingRules: FleetArtifactsSampleRules.nullish()
|
|
154
162
|
});
|
|
155
163
|
|
|
156
164
|
// src/generated-definitions/ImageUpdate.ts
|
|
157
|
-
import { z as z9 } from "zod";
|
|
158
|
-
var ImageUpdate = z9.object({
|
|
159
|
-
addedTags: z9.array(z9.string()),
|
|
160
|
-
isProtected: z9.boolean(),
|
|
161
|
-
name: z9.string(),
|
|
162
|
-
removedTags: z9.array(z9.string())
|
|
163
|
-
});
|
|
164
|
-
|
|
165
|
-
// src/generated-definitions/Location.ts
|
|
166
|
-
import { z as z12 } from "zod";
|
|
167
|
-
|
|
168
|
-
// src/generated-definitions/Zone.ts
|
|
169
165
|
import { z as z10 } from "zod";
|
|
170
|
-
var
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
// src/generated-definitions/Location.ts
|
|
177
|
-
var Location = z12.object({
|
|
178
|
-
cacheEnd: z12.number().int(),
|
|
179
|
-
cacheStart: z12.number().int(),
|
|
180
|
-
cacheZone: Zone,
|
|
181
|
-
extend: z12.string(),
|
|
182
|
-
name: z12.string(),
|
|
183
|
-
tx: z12.array(ZoneTrans),
|
|
184
|
-
zone: z12.array(Zone)
|
|
166
|
+
var ImageUpdate = z10.object({
|
|
167
|
+
addedTags: z10.array(z10.string()),
|
|
168
|
+
isProtected: z10.boolean().nullish(),
|
|
169
|
+
name: z10.string().nullish(),
|
|
170
|
+
removedTags: z10.array(z10.string())
|
|
185
171
|
});
|
|
186
172
|
|
|
187
173
|
// src/generated-definitions/UpdateServerRequest.ts
|
|
188
|
-
import { z as
|
|
189
|
-
var UpdateServerRequest =
|
|
174
|
+
import { z as z11 } from "zod";
|
|
175
|
+
var UpdateServerRequest = z11.object({ status: z11.string() });
|
|
190
176
|
export {
|
|
191
177
|
Account$,
|
|
192
178
|
AccountAdmin$,
|
|
@@ -225,6 +211,7 @@ export {
|
|
|
225
211
|
DevelopmentServerConfigurationCreateResponse,
|
|
226
212
|
DevelopmentServerConfigurationGetResponse,
|
|
227
213
|
DevelopmentServerConfigurationListResponse,
|
|
214
|
+
DevelopmentServerConfigurationUpdateRequest,
|
|
228
215
|
DsHistoryEvent,
|
|
229
216
|
DsHistoryList,
|
|
230
217
|
DsHostConfiguration,
|
|
@@ -259,9 +246,8 @@ export {
|
|
|
259
246
|
ImageUpdate,
|
|
260
247
|
ImagesAdmin$,
|
|
261
248
|
ImagesAdminApi,
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
Location,
|
|
249
|
+
InstanceType,
|
|
250
|
+
InstanceTypesResponse,
|
|
265
251
|
PaginationInfo,
|
|
266
252
|
PagingInfo,
|
|
267
253
|
PortConfiguration,
|
|
@@ -275,7 +261,5 @@ export {
|
|
|
275
261
|
Timeout,
|
|
276
262
|
UpdateServerRequest,
|
|
277
263
|
Watchdogs$,
|
|
278
|
-
WatchdogsApi
|
|
279
|
-
Zone,
|
|
280
|
-
ZoneTrans
|
|
264
|
+
WatchdogsApi
|
|
281
265
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@accelbyte/sdk-ams",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260320085237",
|
|
4
4
|
"author": "AccelByte Inc",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@types/node": "22.3.0",
|
|
26
26
|
"@types/platform": "1.3.4",
|
|
27
27
|
"@types/uuid": "8.3.4",
|
|
28
|
-
"eslint": "9.
|
|
28
|
+
"eslint": "9.26.0",
|
|
29
29
|
"prettier": "3.3.3",
|
|
30
30
|
"react": "17.0.2",
|
|
31
31
|
"rimraf": "4.4.1",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"typescript": "5.5.4"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@accelbyte/validator": "0.0.0-dev-
|
|
38
|
-
"axios": "1.
|
|
37
|
+
"@accelbyte/validator": "0.0.0-dev-20260320085237",
|
|
38
|
+
"axios": "1.13.5",
|
|
39
39
|
"buffer": "6.0.3",
|
|
40
40
|
"crypto-js": "4.2.0",
|
|
41
41
|
"platform": "1.3.6",
|
|
42
42
|
"uuid": "8.3.2",
|
|
43
|
-
"validator": "13.
|
|
43
|
+
"validator": "13.15.22",
|
|
44
44
|
"zod": "3.23.8"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@accelbyte/sdk": "0.0.0-dev-
|
|
47
|
+
"@accelbyte/sdk": "0.0.0-dev-20260320085237",
|
|
48
48
|
"@tanstack/react-query": "^4.36.1 || ^5.0.0"
|
|
49
49
|
},
|
|
50
50
|
"sideEffects": false,
|