@accelbyte/sdk-ams 0.0.0-dev-20250519035357 → 0.0.0-dev-20250530101210

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.
@@ -187,7 +187,7 @@ declare const AmsRegionsResponse: z.ZodObject<{
187
187
  interface AmsRegionsResponse extends z.TypeOf<typeof AmsRegionsResponse> {
188
188
  }
189
189
 
190
- declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
190
+ declare const InstanceTypesResponse: z.ZodObject<{
191
191
  availableInstanceTypes: z.ZodArray<z.ZodObject<{
192
192
  capacity: z.ZodArray<z.ZodObject<{
193
193
  region: z.ZodString;
@@ -201,6 +201,7 @@ declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
201
201
  }>, "many">;
202
202
  description: z.ZodString;
203
203
  id: z.ZodString;
204
+ isBaremetal: z.ZodBoolean;
204
205
  memoryGiB: z.ZodNumber;
205
206
  minSpeed: z.ZodString;
206
207
  name: z.ZodString;
@@ -215,6 +216,7 @@ declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
215
216
  vmCount: number;
216
217
  }[];
217
218
  description: string;
219
+ isBaremetal: boolean;
218
220
  memoryGiB: number;
219
221
  minSpeed: string;
220
222
  ownerAccountId: string;
@@ -228,6 +230,7 @@ declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
228
230
  vmCount: number;
229
231
  }[];
230
232
  description: string;
233
+ isBaremetal: boolean;
231
234
  memoryGiB: number;
232
235
  minSpeed: string;
233
236
  ownerAccountId: string;
@@ -243,6 +246,7 @@ declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
243
246
  vmCount: number;
244
247
  }[];
245
248
  description: string;
249
+ isBaremetal: boolean;
246
250
  memoryGiB: number;
247
251
  minSpeed: string;
248
252
  ownerAccountId: string;
@@ -258,6 +262,7 @@ declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
258
262
  vmCount: number;
259
263
  }[];
260
264
  description: string;
265
+ isBaremetal: boolean;
261
266
  memoryGiB: number;
262
267
  minSpeed: string;
263
268
  ownerAccountId: string;
@@ -265,7 +270,7 @@ declare const InstanceTypesForNamespaceResponse: z.ZodObject<{
265
270
  virtualCpu: number;
266
271
  }[];
267
272
  }>;
268
- interface InstanceTypesForNamespaceResponse extends z.TypeOf<typeof InstanceTypesForNamespaceResponse> {
273
+ interface InstanceTypesResponse extends z.TypeOf<typeof InstanceTypesResponse> {
269
274
  }
270
275
 
271
276
  declare const QoSEndpointResponse: z.ZodObject<{
@@ -334,6 +339,7 @@ declare const ArtifactListResponse: z.ZodObject<{
334
339
  id: z.ZodString;
335
340
  imageId: z.ZodString;
336
341
  namespace: z.ZodString;
342
+ reason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
337
343
  region: z.ZodString;
338
344
  sizeBytes: z.ZodNumber;
339
345
  status: z.ZodString;
@@ -350,6 +356,7 @@ declare const ArtifactListResponse: z.ZodObject<{
350
356
  sizeBytes: number;
351
357
  createdOn?: any;
352
358
  expiresOn?: any;
359
+ reason?: string | null | undefined;
353
360
  }, {
354
361
  namespace: string;
355
362
  status: string;
@@ -363,6 +370,7 @@ declare const ArtifactListResponse: z.ZodObject<{
363
370
  sizeBytes: number;
364
371
  createdOn?: any;
365
372
  expiresOn?: any;
373
+ reason?: string | null | undefined;
366
374
  }>, "many">;
367
375
  totalData: z.ZodNumber;
368
376
  }, "strip", z.ZodTypeAny, {
@@ -379,6 +387,7 @@ declare const ArtifactListResponse: z.ZodObject<{
379
387
  sizeBytes: number;
380
388
  createdOn?: any;
381
389
  expiresOn?: any;
390
+ reason?: string | null | undefined;
382
391
  }[];
383
392
  totalData: number;
384
393
  }, {
@@ -395,6 +404,7 @@ declare const ArtifactListResponse: z.ZodObject<{
395
404
  sizeBytes: number;
396
405
  createdOn?: any;
397
406
  expiresOn?: any;
407
+ reason?: string | null | undefined;
398
408
  }[];
399
409
  totalData: number;
400
410
  }>;
@@ -556,19 +566,19 @@ interface FleetArtifactsSampleRules extends z.TypeOf<typeof FleetArtifactsSample
556
566
 
557
567
  declare const DevelopmentServerConfigurationCreateRequest: z.ZodObject<{
558
568
  commandLineArguments: z.ZodString;
559
- expiresAt: z.ZodString;
569
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
560
570
  imageId: z.ZodString;
561
571
  name: z.ZodString;
562
572
  }, "strip", z.ZodTypeAny, {
563
573
  name: string;
564
574
  imageId: string;
565
575
  commandLineArguments: string;
566
- expiresAt: string;
576
+ expiresAt?: any;
567
577
  }, {
568
578
  name: string;
569
579
  imageId: string;
570
580
  commandLineArguments: string;
571
- expiresAt: string;
581
+ expiresAt?: any;
572
582
  }>;
573
583
  interface DevelopmentServerConfigurationCreateRequest extends z.TypeOf<typeof DevelopmentServerConfigurationCreateRequest> {
574
584
  }
@@ -585,22 +595,22 @@ interface DevelopmentServerConfigurationCreateResponse extends z.TypeOf<typeof D
585
595
 
586
596
  declare const DevelopmentServerConfigurationGetResponse: z.ZodObject<{
587
597
  commandLineArguments: z.ZodString;
588
- createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
589
- expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
598
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
599
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
590
600
  imageId: z.ZodString;
591
601
  name: z.ZodString;
592
602
  }, "strip", z.ZodTypeAny, {
593
603
  name: string;
594
604
  imageId: string;
595
605
  commandLineArguments: string;
596
- expiresAt?: string | null | undefined;
597
- createdAt?: string | null | undefined;
606
+ expiresAt?: any;
607
+ createdAt?: any;
598
608
  }, {
599
609
  name: string;
600
610
  imageId: string;
601
611
  commandLineArguments: string;
602
- expiresAt?: string | null | undefined;
603
- createdAt?: string | null | undefined;
612
+ expiresAt?: any;
613
+ createdAt?: any;
604
614
  }>;
605
615
  interface DevelopmentServerConfigurationGetResponse extends z.TypeOf<typeof DevelopmentServerConfigurationGetResponse> {
606
616
  }
@@ -608,22 +618,22 @@ interface DevelopmentServerConfigurationGetResponse extends z.TypeOf<typeof Deve
608
618
  declare const DevelopmentServerConfigurationListResponse: z.ZodObject<{
609
619
  data: z.ZodArray<z.ZodObject<{
610
620
  commandLineArguments: z.ZodString;
611
- createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
612
- expiresAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
621
+ createdAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
622
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
613
623
  imageId: z.ZodString;
614
624
  name: z.ZodString;
615
625
  }, "strip", z.ZodTypeAny, {
616
626
  name: string;
617
627
  imageId: string;
618
628
  commandLineArguments: string;
619
- expiresAt?: string | null | undefined;
620
- createdAt?: string | null | undefined;
629
+ expiresAt?: any;
630
+ createdAt?: any;
621
631
  }, {
622
632
  name: string;
623
633
  imageId: string;
624
634
  commandLineArguments: string;
625
- expiresAt?: string | null | undefined;
626
- createdAt?: string | null | undefined;
635
+ expiresAt?: any;
636
+ createdAt?: any;
627
637
  }>, "many">;
628
638
  totalData: z.ZodNumber;
629
639
  }, "strip", z.ZodTypeAny, {
@@ -631,8 +641,8 @@ declare const DevelopmentServerConfigurationListResponse: z.ZodObject<{
631
641
  name: string;
632
642
  imageId: string;
633
643
  commandLineArguments: string;
634
- expiresAt?: string | null | undefined;
635
- createdAt?: string | null | undefined;
644
+ expiresAt?: any;
645
+ createdAt?: any;
636
646
  }[];
637
647
  totalData: number;
638
648
  }, {
@@ -640,14 +650,27 @@ declare const DevelopmentServerConfigurationListResponse: z.ZodObject<{
640
650
  name: string;
641
651
  imageId: string;
642
652
  commandLineArguments: string;
643
- expiresAt?: string | null | undefined;
644
- createdAt?: string | null | undefined;
653
+ expiresAt?: any;
654
+ createdAt?: any;
645
655
  }[];
646
656
  totalData: number;
647
657
  }>;
648
658
  interface DevelopmentServerConfigurationListResponse extends z.TypeOf<typeof DevelopmentServerConfigurationListResponse> {
649
659
  }
650
660
 
661
+ declare const DevelopmentServerConfigurationUpdateRequest: z.ZodObject<{
662
+ commandLineArguments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
663
+ expiresAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
664
+ }, "strip", z.ZodTypeAny, {
665
+ commandLineArguments?: string | null | undefined;
666
+ expiresAt?: any;
667
+ }, {
668
+ commandLineArguments?: string | null | undefined;
669
+ expiresAt?: any;
670
+ }>;
671
+ interface DevelopmentServerConfigurationUpdateRequest extends z.TypeOf<typeof DevelopmentServerConfigurationUpdateRequest> {
672
+ }
673
+
651
674
  declare const FleetCreateResponse: z.ZodObject<{
652
675
  id: z.ZodString;
653
676
  }, "strip", z.ZodTypeAny, {
@@ -677,6 +700,7 @@ declare const FleetGetResponse: z.ZodObject<{
677
700
  instanceType: string;
678
701
  serversPerVm: number;
679
702
  }>;
703
+ fallbackFleet: z.ZodString;
680
704
  id: z.ZodString;
681
705
  imageDeploymentProfile: z.ZodObject<{
682
706
  commandLine: z.ZodString;
@@ -742,6 +766,7 @@ declare const FleetGetResponse: z.ZodObject<{
742
766
  isLocal: z.ZodBoolean;
743
767
  name: z.ZodString;
744
768
  onDemand: z.ZodBoolean;
769
+ primaryFleet: z.ZodString;
745
770
  regions: z.ZodArray<z.ZodObject<{
746
771
  bufferSize: z.ZodNumber;
747
772
  dynamicBuffer: z.ZodBoolean;
@@ -903,6 +928,7 @@ declare const FleetGetResponse: z.ZodObject<{
903
928
  instanceType: string;
904
929
  serversPerVm: number;
905
930
  };
931
+ fallbackFleet: string;
906
932
  imageDeploymentProfile: {
907
933
  imageId: string;
908
934
  commandLine: string;
@@ -920,6 +946,7 @@ declare const FleetGetResponse: z.ZodObject<{
920
946
  };
921
947
  isLocal: boolean;
922
948
  onDemand: boolean;
949
+ primaryFleet: string;
923
950
  samplingRules: {
924
951
  coredumps: {
925
952
  crashed: {
@@ -960,6 +987,7 @@ declare const FleetGetResponse: z.ZodObject<{
960
987
  instanceType: string;
961
988
  serversPerVm: number;
962
989
  };
990
+ fallbackFleet: string;
963
991
  imageDeploymentProfile: {
964
992
  imageId: string;
965
993
  commandLine: string;
@@ -977,6 +1005,7 @@ declare const FleetGetResponse: z.ZodObject<{
977
1005
  };
978
1006
  isLocal: boolean;
979
1007
  onDemand: boolean;
1008
+ primaryFleet: string;
980
1009
  samplingRules: {
981
1010
  coredumps: {
982
1011
  crashed: {
@@ -1028,12 +1057,14 @@ declare const FleetListResponse: z.ZodObject<{
1028
1057
  targetDsCount: number;
1029
1058
  targetVmCount: number;
1030
1059
  }>, "many">;
1060
+ fallbackFleet: z.ZodString;
1031
1061
  id: z.ZodString;
1032
1062
  image: z.ZodString;
1033
1063
  instanceProvider: z.ZodString;
1034
1064
  isLocal: z.ZodBoolean;
1035
1065
  name: z.ZodString;
1036
1066
  onDemand: z.ZodBoolean;
1067
+ primaryFleet: z.ZodString;
1037
1068
  regions: z.ZodArray<z.ZodString, "many">;
1038
1069
  }, "strip", z.ZodTypeAny, {
1039
1070
  name: string;
@@ -1041,8 +1072,10 @@ declare const FleetListResponse: z.ZodObject<{
1041
1072
  regions: string[];
1042
1073
  instanceProvider: string;
1043
1074
  active: boolean;
1075
+ fallbackFleet: string;
1044
1076
  isLocal: boolean;
1045
1077
  onDemand: boolean;
1078
+ primaryFleet: string;
1046
1079
  counts: {
1047
1080
  region: string;
1048
1081
  claimedServerCount: number;
@@ -1058,8 +1091,10 @@ declare const FleetListResponse: z.ZodObject<{
1058
1091
  regions: string[];
1059
1092
  instanceProvider: string;
1060
1093
  active: boolean;
1094
+ fallbackFleet: string;
1061
1095
  isLocal: boolean;
1062
1096
  onDemand: boolean;
1097
+ primaryFleet: string;
1063
1098
  counts: {
1064
1099
  region: string;
1065
1100
  claimedServerCount: number;
@@ -1096,8 +1131,10 @@ declare const FleetListResponse: z.ZodObject<{
1096
1131
  regions: string[];
1097
1132
  instanceProvider: string;
1098
1133
  active: boolean;
1134
+ fallbackFleet: string;
1099
1135
  isLocal: boolean;
1100
1136
  onDemand: boolean;
1137
+ primaryFleet: string;
1101
1138
  counts: {
1102
1139
  region: string;
1103
1140
  claimedServerCount: number;
@@ -1122,8 +1159,10 @@ declare const FleetListResponse: z.ZodObject<{
1122
1159
  regions: string[];
1123
1160
  instanceProvider: string;
1124
1161
  active: boolean;
1162
+ fallbackFleet: string;
1125
1163
  isLocal: boolean;
1126
1164
  onDemand: boolean;
1165
+ primaryFleet: string;
1127
1166
  counts: {
1128
1167
  region: string;
1129
1168
  claimedServerCount: number;
@@ -1158,6 +1197,7 @@ declare const FleetParameters: z.ZodObject<{
1158
1197
  instanceId: string;
1159
1198
  serversPerVm: number;
1160
1199
  }>;
1200
+ fallbackFleet: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1161
1201
  imageDeploymentProfile: z.ZodObject<{
1162
1202
  commandLine: z.ZodString;
1163
1203
  imageId: z.ZodString;
@@ -1395,6 +1435,7 @@ declare const FleetParameters: z.ZodObject<{
1395
1435
  };
1396
1436
  onDemand: boolean;
1397
1437
  claimKeys?: string[] | null | undefined;
1438
+ fallbackFleet?: string | null | undefined;
1398
1439
  samplingRules?: {
1399
1440
  coredumps: {
1400
1441
  crashed: {
@@ -1448,6 +1489,7 @@ declare const FleetParameters: z.ZodObject<{
1448
1489
  };
1449
1490
  onDemand: boolean;
1450
1491
  claimKeys?: string[] | null | undefined;
1492
+ fallbackFleet?: string | null | undefined;
1451
1493
  samplingRules?: {
1452
1494
  coredumps: {
1453
1495
  crashed: {
@@ -1526,7 +1568,7 @@ declare const FleetServersResponse: z.ZodObject<{
1526
1568
  targetVmCount: number;
1527
1569
  }>, "many">;
1528
1570
  servers: z.ZodArray<z.ZodObject<{
1529
- createdAt: z.ZodString;
1571
+ createdAt: z.ZodAny;
1530
1572
  fleetId: z.ZodString;
1531
1573
  fleetName: z.ZodString;
1532
1574
  imageCmd: z.ZodString;
@@ -1554,7 +1596,6 @@ declare const FleetServersResponse: z.ZodObject<{
1554
1596
  region: string;
1555
1597
  fleetId: string;
1556
1598
  imageId: string;
1557
- createdAt: string;
1558
1599
  instanceType: string;
1559
1600
  fleetName: string;
1560
1601
  imageCmd: string;
@@ -1567,12 +1608,12 @@ declare const FleetServersResponse: z.ZodObject<{
1567
1608
  serverConfiguration: string;
1568
1609
  serverId: string;
1569
1610
  sessionId: string;
1611
+ createdAt?: any;
1570
1612
  }, {
1571
1613
  status: string;
1572
1614
  region: string;
1573
1615
  fleetId: string;
1574
1616
  imageId: string;
1575
- createdAt: string;
1576
1617
  instanceType: string;
1577
1618
  fleetName: string;
1578
1619
  imageCmd: string;
@@ -1585,6 +1626,7 @@ declare const FleetServersResponse: z.ZodObject<{
1585
1626
  serverConfiguration: string;
1586
1627
  serverId: string;
1587
1628
  sessionId: string;
1629
+ createdAt?: any;
1588
1630
  }>, "many">;
1589
1631
  }, "strip", z.ZodTypeAny, {
1590
1632
  regions: {
@@ -1600,7 +1642,6 @@ declare const FleetServersResponse: z.ZodObject<{
1600
1642
  region: string;
1601
1643
  fleetId: string;
1602
1644
  imageId: string;
1603
- createdAt: string;
1604
1645
  instanceType: string;
1605
1646
  fleetName: string;
1606
1647
  imageCmd: string;
@@ -1613,6 +1654,7 @@ declare const FleetServersResponse: z.ZodObject<{
1613
1654
  serverConfiguration: string;
1614
1655
  serverId: string;
1615
1656
  sessionId: string;
1657
+ createdAt?: any;
1616
1658
  }[];
1617
1659
  paging: {
1618
1660
  next: string;
@@ -1638,7 +1680,6 @@ declare const FleetServersResponse: z.ZodObject<{
1638
1680
  region: string;
1639
1681
  fleetId: string;
1640
1682
  imageId: string;
1641
- createdAt: string;
1642
1683
  instanceType: string;
1643
1684
  fleetName: string;
1644
1685
  imageCmd: string;
@@ -1651,6 +1692,7 @@ declare const FleetServersResponse: z.ZodObject<{
1651
1692
  serverConfiguration: string;
1652
1693
  serverId: string;
1653
1694
  sessionId: string;
1695
+ createdAt?: any;
1654
1696
  }[];
1655
1697
  paging: {
1656
1698
  next: string;
@@ -1668,7 +1710,7 @@ interface FleetServersResponse extends z.TypeOf<typeof FleetServersResponse> {
1668
1710
 
1669
1711
  declare const ImageDetails: z.ZodObject<{
1670
1712
  createdAt: z.ZodAny;
1671
- deleteAt: z.ZodAny;
1713
+ deleteAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1672
1714
  executable: z.ZodString;
1673
1715
  id: z.ZodString;
1674
1716
  isProtected: z.ZodBoolean;
@@ -1732,7 +1774,7 @@ interface ImageDetails extends z.TypeOf<typeof ImageDetails> {
1732
1774
  declare const ImageList: z.ZodObject<{
1733
1775
  images: z.ZodArray<z.ZodObject<{
1734
1776
  createdAt: z.ZodAny;
1735
- deleteAt: z.ZodAny;
1777
+ deleteAt: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
1736
1778
  executable: z.ZodString;
1737
1779
  id: z.ZodString;
1738
1780
  isProtected: z.ZodBoolean;
@@ -1875,19 +1917,19 @@ interface ImageStorage extends z.TypeOf<typeof ImageStorage> {
1875
1917
 
1876
1918
  declare const ImageUpdate: z.ZodObject<{
1877
1919
  addedTags: z.ZodArray<z.ZodString, "many">;
1878
- isProtected: z.ZodBoolean;
1879
- name: z.ZodString;
1920
+ isProtected: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1921
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1880
1922
  removedTags: z.ZodArray<z.ZodString, "many">;
1881
1923
  }, "strip", z.ZodTypeAny, {
1882
- name: string;
1883
- isProtected: boolean;
1884
1924
  addedTags: string[];
1885
1925
  removedTags: string[];
1926
+ name?: string | null | undefined;
1927
+ isProtected?: boolean | null | undefined;
1886
1928
  }, {
1887
- name: string;
1888
- isProtected: boolean;
1889
1929
  addedTags: string[];
1890
1930
  removedTags: string[];
1931
+ name?: string | null | undefined;
1932
+ isProtected?: boolean | null | undefined;
1891
1933
  }>;
1892
1934
  interface ImageUpdate extends z.TypeOf<typeof ImageUpdate> {
1893
1935
  }
@@ -1905,20 +1947,20 @@ declare const DsHistoryList: z.ZodObject<{
1905
1947
  }, "strip", z.ZodTypeAny, {
1906
1948
  status: string;
1907
1949
  region: string;
1950
+ reason: string;
1908
1951
  ipAddress: string;
1909
1952
  serverId: string;
1910
1953
  sessionId: string;
1911
1954
  exitCode: number;
1912
- reason: string;
1913
1955
  createdAt?: any;
1914
1956
  }, {
1915
1957
  status: string;
1916
1958
  region: string;
1959
+ reason: string;
1917
1960
  ipAddress: string;
1918
1961
  serverId: string;
1919
1962
  sessionId: string;
1920
1963
  exitCode: number;
1921
- reason: string;
1922
1964
  createdAt?: any;
1923
1965
  }>, "many">;
1924
1966
  paging: z.ZodObject<{
@@ -1963,11 +2005,11 @@ declare const DsHistoryList: z.ZodObject<{
1963
2005
  events: {
1964
2006
  status: string;
1965
2007
  region: string;
2008
+ reason: string;
1966
2009
  ipAddress: string;
1967
2010
  serverId: string;
1968
2011
  sessionId: string;
1969
2012
  exitCode: number;
1970
- reason: string;
1971
2013
  createdAt?: any;
1972
2014
  }[];
1973
2015
  }, {
@@ -1984,11 +2026,11 @@ declare const DsHistoryList: z.ZodObject<{
1984
2026
  events: {
1985
2027
  status: string;
1986
2028
  region: string;
2029
+ reason: string;
1987
2030
  ipAddress: string;
1988
2031
  serverId: string;
1989
2032
  sessionId: string;
1990
2033
  exitCode: number;
1991
- reason: string;
1992
2034
  createdAt?: any;
1993
2035
  }[];
1994
2036
  }>;
@@ -2025,17 +2067,17 @@ declare const FleetServerHistoryResponse: z.ZodObject<{
2025
2067
  serverId: z.ZodString;
2026
2068
  }, "strip", z.ZodTypeAny, {
2027
2069
  fleetId: string;
2070
+ reason: string;
2028
2071
  serverId: string;
2029
2072
  exitCode: number;
2030
- reason: string;
2031
2073
  newState: string;
2032
2074
  oldState: string;
2033
2075
  createdAt?: any;
2034
2076
  }, {
2035
2077
  fleetId: string;
2078
+ reason: string;
2036
2079
  serverId: string;
2037
2080
  exitCode: number;
2038
- reason: string;
2039
2081
  newState: string;
2040
2082
  oldState: string;
2041
2083
  createdAt?: any;
@@ -2043,9 +2085,9 @@ declare const FleetServerHistoryResponse: z.ZodObject<{
2043
2085
  }, "strip", z.ZodTypeAny, {
2044
2086
  events: {
2045
2087
  fleetId: string;
2088
+ reason: string;
2046
2089
  serverId: string;
2047
2090
  exitCode: number;
2048
- reason: string;
2049
2091
  newState: string;
2050
2092
  oldState: string;
2051
2093
  createdAt?: any;
@@ -2053,9 +2095,9 @@ declare const FleetServerHistoryResponse: z.ZodObject<{
2053
2095
  }, {
2054
2096
  events: {
2055
2097
  fleetId: string;
2098
+ reason: string;
2056
2099
  serverId: string;
2057
2100
  exitCode: number;
2058
- reason: string;
2059
2101
  newState: string;
2060
2102
  oldState: string;
2061
2103
  createdAt?: any;
@@ -2065,7 +2107,7 @@ interface FleetServerHistoryResponse extends z.TypeOf<typeof FleetServerHistoryR
2065
2107
  }
2066
2108
 
2067
2109
  declare const FleetServerInfoResponse: z.ZodObject<{
2068
- createdAt: z.ZodString;
2110
+ createdAt: z.ZodAny;
2069
2111
  fleetId: z.ZodString;
2070
2112
  fleetName: z.ZodString;
2071
2113
  imageCmd: z.ZodString;
@@ -2093,7 +2135,6 @@ declare const FleetServerInfoResponse: z.ZodObject<{
2093
2135
  region: string;
2094
2136
  fleetId: string;
2095
2137
  imageId: string;
2096
- createdAt: string;
2097
2138
  instanceType: string;
2098
2139
  fleetName: string;
2099
2140
  imageCmd: string;
@@ -2106,12 +2147,12 @@ declare const FleetServerInfoResponse: z.ZodObject<{
2106
2147
  serverConfiguration: string;
2107
2148
  serverId: string;
2108
2149
  sessionId: string;
2150
+ createdAt?: any;
2109
2151
  }, {
2110
2152
  status: string;
2111
2153
  region: string;
2112
2154
  fleetId: string;
2113
2155
  imageId: string;
2114
- createdAt: string;
2115
2156
  instanceType: string;
2116
2157
  fleetName: string;
2117
2158
  imageCmd: string;
@@ -2124,6 +2165,7 @@ declare const FleetServerInfoResponse: z.ZodObject<{
2124
2165
  serverConfiguration: string;
2125
2166
  serverId: string;
2126
2167
  sessionId: string;
2168
+ createdAt?: any;
2127
2169
  }>;
2128
2170
  interface FleetServerInfoResponse extends z.TypeOf<typeof FleetServerInfoResponse> {
2129
2171
  }
@@ -2158,6 +2200,7 @@ interface FleetClaimReq extends z.TypeOf<typeof FleetClaimReq> {
2158
2200
  }
2159
2201
 
2160
2202
  declare const FleetClaimResponse: z.ZodObject<{
2203
+ fleetId: z.ZodString;
2161
2204
  ip: z.ZodString;
2162
2205
  ports: z.ZodRecord<z.ZodString, z.ZodNumber>;
2163
2206
  region: z.ZodString;
@@ -2165,15 +2208,17 @@ declare const FleetClaimResponse: z.ZodObject<{
2165
2208
  }, "strip", z.ZodTypeAny, {
2166
2209
  region: string;
2167
2210
  ip: string;
2211
+ fleetId: string;
2168
2212
  ports: Record<string, number>;
2169
2213
  serverId: string;
2170
2214
  }, {
2171
2215
  region: string;
2172
2216
  ip: string;
2217
+ fleetId: string;
2173
2218
  ports: Record<string, number>;
2174
2219
  serverId: string;
2175
2220
  }>;
2176
2221
  interface FleetClaimResponse extends z.TypeOf<typeof FleetClaimResponse> {
2177
2222
  }
2178
2223
 
2179
- export { AccountResponse as A, FleetClaimByKeysReq as B, FleetClaimReq as C, DevelopmentServerConfigurationListResponse as D, FleetArtifactsSampleRules as F, InstanceTypesForNamespaceResponse as I, QoSEndpointResponse as Q, UpdateServerRequest as U, AccountCreateResponse as a, AccountCreateRequest as b, AccountLinkTokenResponse as c, AccountLinkResponse as d, AccountLinkRequest as e, AmsRegionsResponse as f, ArtifactListResponse as g, ArtifactUsageResponse as h, ArtifactUrlResponse as i, DevelopmentServerConfigurationCreateResponse as j, DevelopmentServerConfigurationCreateRequest as k, DevelopmentServerConfigurationGetResponse as l, FleetListResponse as m, FleetCreateResponse as n, FleetParameters as o, FleetGetResponse as p, FleetServersResponse as q, ImageList as r, ImageStorage as s, ImageDetails as t, ImageUpdate as u, FleetServerInfoResponse as v, FleetServerHistoryResponse as w, DsHistoryList as x, FleetServerConnectionInfoResponse as y, FleetClaimResponse as z };
2224
+ export { AccountResponse as A, FleetClaimResponse as B, FleetClaimByKeysReq as C, DevelopmentServerConfigurationListResponse as D, FleetClaimReq as E, FleetArtifactsSampleRules as F, InstanceTypesResponse as I, QoSEndpointResponse as Q, UpdateServerRequest as U, AccountCreateResponse as a, AccountCreateRequest as b, AccountLinkTokenResponse as c, AccountLinkResponse as d, AccountLinkRequest as e, AmsRegionsResponse as f, ArtifactListResponse as g, ArtifactUsageResponse as h, ArtifactUrlResponse as i, DevelopmentServerConfigurationCreateResponse as j, DevelopmentServerConfigurationCreateRequest as k, DevelopmentServerConfigurationGetResponse as l, DevelopmentServerConfigurationUpdateRequest as m, FleetListResponse as n, FleetCreateResponse as o, FleetParameters as p, FleetGetResponse as q, FleetServersResponse as r, ImageList as s, ImageStorage as t, ImageDetails as u, ImageUpdate as v, FleetServerInfoResponse as w, FleetServerHistoryResponse as x, DsHistoryList as y, FleetServerConnectionInfoResponse as z };