rozod 6.7.1 → 6.8.0
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/LICENSE +1 -1
- package/README.md +75 -451
- package/lib/endpoints/assetdeliveryv1.d.ts +38 -0
- package/lib/endpoints/assetdeliveryv1.js +38 -0
- package/lib/endpoints/assetdeliveryv2.d.ts +26 -0
- package/lib/endpoints/assetdeliveryv2.js +26 -0
- package/lib/endpoints/authv1.d.ts +7 -2
- package/lib/endpoints/authv1.js +3 -1
- package/lib/endpoints/authv2.d.ts +1 -1
- package/lib/endpoints/authv2.js +1 -1
- package/lib/endpoints/badgesv1.d.ts +4 -0
- package/lib/endpoints/badgesv1.js +4 -0
- package/lib/endpoints/catalogv1.d.ts +2 -1
- package/lib/endpoints/catalogv1.js +2 -1
- package/lib/endpoints/catalogv2.d.ts +53 -45
- package/lib/endpoints/catalogv2.js +21 -17
- package/lib/endpoints/chatv2.d.ts +778 -778
- package/lib/endpoints/developv1.d.ts +3 -0
- package/lib/endpoints/developv1.js +3 -0
- package/lib/endpoints/developv2.d.ts +3 -1
- package/lib/endpoints/developv2.js +3 -1
- package/lib/endpoints/friendsv1.d.ts +222 -314
- package/lib/endpoints/friendsv1.js +213 -313
- package/lib/endpoints/gamejoinv1.d.ts +458 -458
- package/lib/endpoints/gamesv1.d.ts +2 -0
- package/lib/endpoints/gamesv1.js +2 -0
- package/lib/endpoints/gamesv2.d.ts +11 -0
- package/lib/endpoints/gamesv2.js +9 -0
- package/lib/endpoints/groupsv1.d.ts +42 -1
- package/lib/endpoints/groupsv1.js +48 -4
- package/lib/endpoints/groupsv2.d.ts +1 -0
- package/lib/endpoints/groupsv2.js +1 -0
- package/lib/endpoints/inventoryv1.d.ts +3 -1
- package/lib/endpoints/inventoryv1.js +3 -1
- package/lib/endpoints/inventoryv2.d.ts +2 -0
- package/lib/endpoints/inventoryv2.js +2 -0
- package/lib/endpoints/metricsv1.d.ts +88 -88
- package/lib/endpoints/thumbnailsv1.d.ts +44 -87
- package/lib/endpoints/thumbnailsv1.js +25 -0
- package/lib/index.d.ts +96 -3
- package/lib/index.js +114 -1
- package/lib/opencloud/v1/asset-permissions.d.ts +1 -1
- package/lib/opencloud/v1/assets.d.ts +9 -9
- package/lib/opencloud/v1/datastores-ordered.d.ts +6 -6
- package/lib/opencloud/v1/datastores.d.ts +8 -8
- package/lib/opencloud/v1/developer-products.d.ts +4 -4
- package/lib/opencloud/v1/game-passes.d.ts +4 -4
- package/lib/opencloud/v1/messaging.d.ts +1 -1
- package/lib/opencloud/v1/open-eval.d.ts +2 -2
- package/lib/opencloud/v1/secrets-store.d.ts +5 -5
- package/lib/opencloud/v1/toolbox.d.ts +2 -2
- package/lib/opencloud/v1/universes.d.ts +1 -1
- package/lib/opencloud/v2/cloud.d.ts +172 -84
- package/lib/opencloud/v2/cloud.js +25 -9
- package/package.json +1 -1
|
@@ -66,7 +66,7 @@ export declare const postCloudV2CreatorStoreProducts: import("../..").EndpointGe
|
|
|
66
66
|
meshPartAssetId: string;
|
|
67
67
|
videoAssetId: string;
|
|
68
68
|
fontFamilyAssetId: string;
|
|
69
|
-
}>;
|
|
69
|
+
}, undefined>;
|
|
70
70
|
/**
|
|
71
71
|
* `BETA`
|
|
72
72
|
*
|
|
@@ -107,7 +107,7 @@ export declare const getCloudV2CreatorStoreProductsCreatorStoreProductId: import
|
|
|
107
107
|
meshPartAssetId: string;
|
|
108
108
|
videoAssetId: string;
|
|
109
109
|
fontFamilyAssetId: string;
|
|
110
|
-
}, undefined>;
|
|
110
|
+
}, undefined, undefined>;
|
|
111
111
|
/**
|
|
112
112
|
* `BETA`
|
|
113
113
|
*
|
|
@@ -182,7 +182,7 @@ export declare const patchCloudV2CreatorStoreProductsCreatorStoreProductId: impo
|
|
|
182
182
|
meshPartAssetId?: string | undefined;
|
|
183
183
|
videoAssetId?: string | undefined;
|
|
184
184
|
fontFamilyAssetId?: string | undefined;
|
|
185
|
-
}>;
|
|
185
|
+
}, undefined>;
|
|
186
186
|
/**
|
|
187
187
|
* `BETA`
|
|
188
188
|
*
|
|
@@ -206,11 +206,11 @@ export declare const getCloudV2GroupsGroupId: import("../..").EndpointGeneric<{
|
|
|
206
206
|
publicEntryAllowed: boolean;
|
|
207
207
|
locked: boolean;
|
|
208
208
|
verified: boolean;
|
|
209
|
-
}, undefined>;
|
|
209
|
+
}, undefined, undefined>;
|
|
210
210
|
/**
|
|
211
211
|
* `BETA`
|
|
212
212
|
*
|
|
213
|
-
* Lists forum categories in the group.
|
|
213
|
+
* Lists forum categories in the group. Supports filtering.
|
|
214
214
|
*
|
|
215
215
|
* **Scopes:** `group-forum:read`
|
|
216
216
|
* **Engine:** Usable with HttpService
|
|
@@ -248,11 +248,11 @@ export declare const getCloudV2GroupsGroupIdForumCategories: import("../..").End
|
|
|
248
248
|
archiver: string;
|
|
249
249
|
}[];
|
|
250
250
|
nextPageToken: string;
|
|
251
|
-
}, undefined>;
|
|
251
|
+
}, undefined, undefined>;
|
|
252
252
|
/**
|
|
253
253
|
* `BETA`
|
|
254
254
|
*
|
|
255
|
-
* Lists forum posts in the group's forum category.
|
|
255
|
+
* Lists forum posts in the group's forum category. Supports filtering.
|
|
256
256
|
*
|
|
257
257
|
* **Scopes:** `group-forum:read`
|
|
258
258
|
* **Engine:** Usable with HttpService
|
|
@@ -321,11 +321,11 @@ export declare const getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPosts:
|
|
|
321
321
|
commentCount: number;
|
|
322
322
|
}[];
|
|
323
323
|
nextPageToken: string;
|
|
324
|
-
}, undefined>;
|
|
324
|
+
}, undefined, undefined>;
|
|
325
325
|
/**
|
|
326
326
|
* `BETA`
|
|
327
327
|
*
|
|
328
|
-
* Lists forum comments on a group's forum post.
|
|
328
|
+
* Lists forum comments on a group's forum post. Supports filtering.
|
|
329
329
|
*
|
|
330
330
|
* **Scopes:** `group-forum:read`
|
|
331
331
|
* **Engine:** Usable with HttpService
|
|
@@ -374,11 +374,11 @@ export declare const getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPostsP
|
|
|
374
374
|
};
|
|
375
375
|
}[];
|
|
376
376
|
nextPageToken: string;
|
|
377
|
-
}, undefined>;
|
|
377
|
+
}, undefined, undefined>;
|
|
378
378
|
/**
|
|
379
379
|
* `BETA`
|
|
380
380
|
*
|
|
381
|
-
* List join requests under a group.
|
|
381
|
+
* List join requests under a group. Supports filtering.
|
|
382
382
|
*
|
|
383
383
|
* **Scopes:** `group:read`
|
|
384
384
|
* **Engine:** Usable with HttpService
|
|
@@ -412,7 +412,7 @@ export declare const getCloudV2GroupsGroupIdJoinRequests: import("../..").Endpoi
|
|
|
412
412
|
user: string;
|
|
413
413
|
}[];
|
|
414
414
|
nextPageToken: string;
|
|
415
|
-
}, undefined>;
|
|
415
|
+
}, undefined, undefined>;
|
|
416
416
|
/**
|
|
417
417
|
* `BETA`
|
|
418
418
|
*
|
|
@@ -428,7 +428,7 @@ export declare const getCloudV2GroupsGroupIdJoinRequests: import("../..").Endpoi
|
|
|
428
428
|
export declare const postCloudV2GroupsGroupIdJoinRequestsJoinRequestIdAccept: import("../..").EndpointGeneric<{
|
|
429
429
|
group_id: string;
|
|
430
430
|
join_request_id: string;
|
|
431
|
-
}, void, Record<string, never
|
|
431
|
+
}, void, Record<string, never>, undefined>;
|
|
432
432
|
/**
|
|
433
433
|
* `BETA`
|
|
434
434
|
*
|
|
@@ -444,11 +444,11 @@ export declare const postCloudV2GroupsGroupIdJoinRequestsJoinRequestIdAccept: im
|
|
|
444
444
|
export declare const postCloudV2GroupsGroupIdJoinRequestsJoinRequestIdDecline: import("../..").EndpointGeneric<{
|
|
445
445
|
group_id: string;
|
|
446
446
|
join_request_id: string;
|
|
447
|
-
}, void, Record<string, never
|
|
447
|
+
}, void, Record<string, never>, undefined>;
|
|
448
448
|
/**
|
|
449
449
|
* `BETA`
|
|
450
450
|
*
|
|
451
|
-
* List group members in a group.
|
|
451
|
+
* List group members in a group. Supports filtering.
|
|
452
452
|
*
|
|
453
453
|
* **Engine:** Usable with HttpService
|
|
454
454
|
*
|
|
@@ -481,7 +481,7 @@ export declare const getCloudV2GroupsGroupIdMemberships: import("../..").Endpoin
|
|
|
481
481
|
roles: string[];
|
|
482
482
|
}[];
|
|
483
483
|
nextPageToken: string;
|
|
484
|
-
}, undefined>;
|
|
484
|
+
}, undefined, undefined>;
|
|
485
485
|
/**
|
|
486
486
|
* `BETA`
|
|
487
487
|
*
|
|
@@ -515,7 +515,7 @@ export declare const patchCloudV2GroupsGroupIdMembershipsMembershipId: import(".
|
|
|
515
515
|
user?: string | undefined;
|
|
516
516
|
role?: string | undefined;
|
|
517
517
|
roles?: string[] | undefined;
|
|
518
|
-
}>;
|
|
518
|
+
}, undefined>;
|
|
519
519
|
/**
|
|
520
520
|
* `BETA`
|
|
521
521
|
*
|
|
@@ -541,7 +541,7 @@ export declare const postCloudV2GroupsGroupIdMembershipsMembershipIdAssignRole:
|
|
|
541
541
|
roles: string[];
|
|
542
542
|
}, {
|
|
543
543
|
role: string;
|
|
544
|
-
}>;
|
|
544
|
+
}, undefined>;
|
|
545
545
|
/**
|
|
546
546
|
* `BETA`
|
|
547
547
|
*
|
|
@@ -567,7 +567,7 @@ export declare const postCloudV2GroupsGroupIdMembershipsMembershipIdUnassignRole
|
|
|
567
567
|
roles: string[];
|
|
568
568
|
}, {
|
|
569
569
|
role: string;
|
|
570
|
-
}>;
|
|
570
|
+
}, undefined>;
|
|
571
571
|
/**
|
|
572
572
|
* `BETA`
|
|
573
573
|
*
|
|
@@ -644,7 +644,7 @@ export declare const getCloudV2GroupsGroupIdRoles: import("../..").EndpointGener
|
|
|
644
644
|
};
|
|
645
645
|
}[];
|
|
646
646
|
nextPageToken: string;
|
|
647
|
-
}, undefined>;
|
|
647
|
+
}, undefined, undefined>;
|
|
648
648
|
/**
|
|
649
649
|
* `BETA`
|
|
650
650
|
*
|
|
@@ -700,7 +700,7 @@ export declare const getCloudV2GroupsGroupIdRolesRoleId: import("../..").Endpoin
|
|
|
700
700
|
viewBlockedWords: boolean;
|
|
701
701
|
bypassSlowMode: boolean;
|
|
702
702
|
};
|
|
703
|
-
}, undefined>;
|
|
703
|
+
}, undefined, undefined>;
|
|
704
704
|
/**
|
|
705
705
|
* `STABLE`
|
|
706
706
|
*
|
|
@@ -759,7 +759,7 @@ export declare const getCloudV2UniversesUniverseId: import("../..").EndpointGene
|
|
|
759
759
|
consoleEnabled?: boolean | undefined;
|
|
760
760
|
vrEnabled?: boolean | undefined;
|
|
761
761
|
rootPlace?: string | undefined;
|
|
762
|
-
}, undefined>;
|
|
762
|
+
}, undefined, undefined>;
|
|
763
763
|
/**
|
|
764
764
|
* `STABLE`
|
|
765
765
|
*
|
|
@@ -872,7 +872,7 @@ export declare const patchCloudV2UniversesUniverseId: import("../..").EndpointGe
|
|
|
872
872
|
vrEnabled?: boolean | undefined;
|
|
873
873
|
rootPlace?: string | undefined;
|
|
874
874
|
templateRootPlace?: string | undefined;
|
|
875
|
-
}>;
|
|
875
|
+
}, undefined>;
|
|
876
876
|
/**
|
|
877
877
|
* `BETA`
|
|
878
878
|
*
|
|
@@ -917,6 +917,9 @@ export declare const postCloudV2UniversesUniverseIdGenerateSpeechAsset: import("
|
|
|
917
917
|
pitch: number;
|
|
918
918
|
speed: number;
|
|
919
919
|
} | undefined;
|
|
920
|
+
}, {
|
|
921
|
+
assetId: string;
|
|
922
|
+
remainingQuota: number;
|
|
920
923
|
}>;
|
|
921
924
|
/**
|
|
922
925
|
* `STABLE`
|
|
@@ -937,7 +940,7 @@ export declare const postCloudV2UniversesUniverseIdPublishMessage: import("../..
|
|
|
937
940
|
}, void, {
|
|
938
941
|
topic: string;
|
|
939
942
|
message: string;
|
|
940
|
-
}>;
|
|
943
|
+
}, undefined>;
|
|
941
944
|
/**
|
|
942
945
|
* `STABLE`
|
|
943
946
|
*
|
|
@@ -958,7 +961,7 @@ export declare const postCloudV2UniversesUniverseIdRestartServers: import("../..
|
|
|
958
961
|
closeAllVersions: boolean;
|
|
959
962
|
bleedOffServers: boolean;
|
|
960
963
|
bleedOffDurationMinutes: number;
|
|
961
|
-
}>;
|
|
964
|
+
}, undefined>;
|
|
962
965
|
/**
|
|
963
966
|
* `BETA`
|
|
964
967
|
*
|
|
@@ -979,7 +982,7 @@ export declare const postCloudV2UniversesUniverseIdTranslateText: import("../.."
|
|
|
979
982
|
text: string;
|
|
980
983
|
sourceLanguageCode?: string | undefined;
|
|
981
984
|
targetLanguageCodes?: string[] | undefined;
|
|
982
|
-
}>;
|
|
985
|
+
}, undefined>;
|
|
983
986
|
/**
|
|
984
987
|
* `STABLE`
|
|
985
988
|
*
|
|
@@ -1029,7 +1032,7 @@ export declare const getCloudV2UniversesUniverseIdDataStores: import("../..").En
|
|
|
1029
1032
|
id: string;
|
|
1030
1033
|
}[];
|
|
1031
1034
|
nextPageToken: string;
|
|
1032
|
-
}, undefined>;
|
|
1035
|
+
}, undefined, undefined>;
|
|
1033
1036
|
/**
|
|
1034
1037
|
* `STABLE`
|
|
1035
1038
|
*
|
|
@@ -1061,7 +1064,7 @@ export declare const postCloudV2UniversesUniverseIdDataStoresSnapshot: import(".
|
|
|
1061
1064
|
}, {
|
|
1062
1065
|
newSnapshotTaken: boolean;
|
|
1063
1066
|
latestSnapshotTime: string;
|
|
1064
|
-
}, Record<string, never
|
|
1067
|
+
}, Record<string, never>, undefined>;
|
|
1065
1068
|
/**
|
|
1066
1069
|
* `BETA`
|
|
1067
1070
|
*
|
|
@@ -1112,7 +1115,7 @@ export declare const deleteCloudV2UniversesUniverseIdDataStoresDataStoreId: impo
|
|
|
1112
1115
|
expireTime: string;
|
|
1113
1116
|
state: "STATE_UNSPECIFIED" | "ACTIVE" | "DELETED";
|
|
1114
1117
|
id: string;
|
|
1115
|
-
}, undefined>;
|
|
1118
|
+
}, undefined, undefined>;
|
|
1116
1119
|
/**
|
|
1117
1120
|
* `BETA`
|
|
1118
1121
|
*
|
|
@@ -1134,7 +1137,7 @@ export declare const postCloudV2UniversesUniverseIdDataStoresDataStoreIdUndelete
|
|
|
1134
1137
|
expireTime: string;
|
|
1135
1138
|
state: "STATE_UNSPECIFIED" | "ACTIVE" | "DELETED";
|
|
1136
1139
|
id: string;
|
|
1137
|
-
}, Record<string, never
|
|
1140
|
+
}, Record<string, never>, undefined>;
|
|
1138
1141
|
/**
|
|
1139
1142
|
* `STABLE`
|
|
1140
1143
|
*
|
|
@@ -1191,7 +1194,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntries:
|
|
|
1191
1194
|
attributes: Record<string, never>;
|
|
1192
1195
|
}[];
|
|
1193
1196
|
nextPageToken: string;
|
|
1194
|
-
}, undefined>;
|
|
1197
|
+
}, undefined, undefined>;
|
|
1195
1198
|
/**
|
|
1196
1199
|
* `STABLE`
|
|
1197
1200
|
*
|
|
@@ -1239,7 +1242,7 @@ export declare const postCloudV2UniversesUniverseIdDataStoresDataStoreIdEntries:
|
|
|
1239
1242
|
id: string;
|
|
1240
1243
|
users: string[];
|
|
1241
1244
|
attributes: Record<string, never>;
|
|
1242
|
-
}>;
|
|
1245
|
+
}, undefined>;
|
|
1243
1246
|
/**
|
|
1244
1247
|
* `STABLE`
|
|
1245
1248
|
*
|
|
@@ -1292,7 +1295,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEn
|
|
|
1292
1295
|
id: string;
|
|
1293
1296
|
users: string[];
|
|
1294
1297
|
attributes: Record<string, never>;
|
|
1295
|
-
}, undefined>;
|
|
1298
|
+
}, undefined, undefined>;
|
|
1296
1299
|
/**
|
|
1297
1300
|
* `STABLE`
|
|
1298
1301
|
*
|
|
@@ -1315,7 +1318,7 @@ export declare const deleteCloudV2UniversesUniverseIdDataStoresDataStoreIdEntrie
|
|
|
1315
1318
|
universe_id: string;
|
|
1316
1319
|
data_store_id: string;
|
|
1317
1320
|
entry_id: string;
|
|
1318
|
-
}, void, undefined>;
|
|
1321
|
+
}, void, undefined, undefined>;
|
|
1319
1322
|
/**
|
|
1320
1323
|
* `STABLE`
|
|
1321
1324
|
*
|
|
@@ -1369,7 +1372,7 @@ export declare const patchCloudV2UniversesUniverseIdDataStoresDataStoreIdEntries
|
|
|
1369
1372
|
id?: string | undefined;
|
|
1370
1373
|
users?: string[] | undefined;
|
|
1371
1374
|
attributes?: Record<string, never> | undefined;
|
|
1372
|
-
}>;
|
|
1375
|
+
}, undefined>;
|
|
1373
1376
|
/**
|
|
1374
1377
|
* `STABLE`
|
|
1375
1378
|
*
|
|
@@ -1417,7 +1420,7 @@ export declare const postCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesE
|
|
|
1417
1420
|
amount: number;
|
|
1418
1421
|
users: string[];
|
|
1419
1422
|
attributes: Record<string, never>;
|
|
1420
|
-
}>;
|
|
1423
|
+
}, undefined>;
|
|
1421
1424
|
/**
|
|
1422
1425
|
* `STABLE`
|
|
1423
1426
|
*
|
|
@@ -1480,7 +1483,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEn
|
|
|
1480
1483
|
attributes: Record<string, never>;
|
|
1481
1484
|
}[];
|
|
1482
1485
|
nextPageToken: string;
|
|
1483
|
-
}, undefined>;
|
|
1486
|
+
}, undefined, undefined>;
|
|
1484
1487
|
/**
|
|
1485
1488
|
* `STABLE`
|
|
1486
1489
|
*
|
|
@@ -1539,7 +1542,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesSco
|
|
|
1539
1542
|
attributes: Record<string, never>;
|
|
1540
1543
|
}[];
|
|
1541
1544
|
nextPageToken: string;
|
|
1542
|
-
}, undefined>;
|
|
1545
|
+
}, undefined, undefined>;
|
|
1543
1546
|
/**
|
|
1544
1547
|
* `STABLE`
|
|
1545
1548
|
*
|
|
@@ -1589,7 +1592,7 @@ export declare const postCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesSc
|
|
|
1589
1592
|
id: string;
|
|
1590
1593
|
users: string[];
|
|
1591
1594
|
attributes: Record<string, never>;
|
|
1592
|
-
}>;
|
|
1595
|
+
}, undefined>;
|
|
1593
1596
|
/**
|
|
1594
1597
|
* `STABLE`
|
|
1595
1598
|
*
|
|
@@ -1644,7 +1647,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesSco
|
|
|
1644
1647
|
id: string;
|
|
1645
1648
|
users: string[];
|
|
1646
1649
|
attributes: Record<string, never>;
|
|
1647
|
-
}, undefined>;
|
|
1650
|
+
}, undefined, undefined>;
|
|
1648
1651
|
/**
|
|
1649
1652
|
* `STABLE`
|
|
1650
1653
|
*
|
|
@@ -1669,7 +1672,7 @@ export declare const deleteCloudV2UniversesUniverseIdDataStoresDataStoreIdScopes
|
|
|
1669
1672
|
data_store_id: string;
|
|
1670
1673
|
entry_id: string;
|
|
1671
1674
|
scope_id: string;
|
|
1672
|
-
}, void, undefined>;
|
|
1675
|
+
}, void, undefined, undefined>;
|
|
1673
1676
|
/**
|
|
1674
1677
|
* `STABLE`
|
|
1675
1678
|
*
|
|
@@ -1725,7 +1728,7 @@ export declare const patchCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesS
|
|
|
1725
1728
|
id?: string | undefined;
|
|
1726
1729
|
users?: string[] | undefined;
|
|
1727
1730
|
attributes?: Record<string, never> | undefined;
|
|
1728
|
-
}>;
|
|
1731
|
+
}, undefined>;
|
|
1729
1732
|
/**
|
|
1730
1733
|
* `STABLE`
|
|
1731
1734
|
*
|
|
@@ -1775,7 +1778,7 @@ export declare const postCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesSc
|
|
|
1775
1778
|
amount: number;
|
|
1776
1779
|
users: string[];
|
|
1777
1780
|
attributes: Record<string, never>;
|
|
1778
|
-
}>;
|
|
1781
|
+
}, undefined>;
|
|
1779
1782
|
/**
|
|
1780
1783
|
* `STABLE`
|
|
1781
1784
|
*
|
|
@@ -1840,7 +1843,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesSco
|
|
|
1840
1843
|
attributes: Record<string, never>;
|
|
1841
1844
|
}[];
|
|
1842
1845
|
nextPageToken: string;
|
|
1843
|
-
}, undefined>;
|
|
1846
|
+
}, undefined, undefined>;
|
|
1844
1847
|
/**
|
|
1845
1848
|
* `STABLE`
|
|
1846
1849
|
*
|
|
@@ -1862,7 +1865,7 @@ export declare const postCloudV2UniversesUniverseIdLuauExecutionSessionTaskBinar
|
|
|
1862
1865
|
path: string;
|
|
1863
1866
|
size: number;
|
|
1864
1867
|
uploadUri: string;
|
|
1865
|
-
}>;
|
|
1868
|
+
}, undefined>;
|
|
1866
1869
|
/**
|
|
1867
1870
|
* `STABLE`
|
|
1868
1871
|
*
|
|
@@ -1871,11 +1874,19 @@ export declare const postCloudV2UniversesUniverseIdLuauExecutionSessionTaskBinar
|
|
|
1871
1874
|
* **Scopes:** `memory-store:flush`
|
|
1872
1875
|
* **Engine:** Not available in-engine
|
|
1873
1876
|
*
|
|
1874
|
-
* @param body
|
|
1875
1877
|
* @param universe_id The universe ID.
|
|
1878
|
+
* @param scope The scope of the memory store to flush.
|
|
1879
|
+
|
|
1880
|
+
Possible values:
|
|
1881
|
+
|
|
1882
|
+
| Value | Description |
|
|
1883
|
+
| --- | --- |
|
|
1884
|
+
| LIVE | Flush the live memory store scope. This is the default. |
|
|
1885
|
+
| TEST | Flush the test memory store scope. |
|
|
1876
1886
|
*/
|
|
1877
1887
|
export declare const postCloudV2UniversesUniverseIdMemoryStoreFlush: import("../..").EndpointGeneric<{
|
|
1878
1888
|
universe_id: string;
|
|
1889
|
+
scope?: "LIVE" | "TEST" | undefined;
|
|
1879
1890
|
}, {
|
|
1880
1891
|
path: string;
|
|
1881
1892
|
metadata: {
|
|
@@ -1892,7 +1903,7 @@ export declare const postCloudV2UniversesUniverseIdMemoryStoreFlush: import("../
|
|
|
1892
1903
|
response: {
|
|
1893
1904
|
'@type': string;
|
|
1894
1905
|
};
|
|
1895
|
-
}, Record<string, never>>;
|
|
1906
|
+
}, undefined, Record<string, never>>;
|
|
1896
1907
|
/**
|
|
1897
1908
|
* `STABLE`
|
|
1898
1909
|
*
|
|
@@ -1930,7 +1941,7 @@ export declare const postCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItems
|
|
|
1930
1941
|
ttl: string;
|
|
1931
1942
|
expireTime: string;
|
|
1932
1943
|
id: string;
|
|
1933
|
-
}>;
|
|
1944
|
+
}, undefined>;
|
|
1934
1945
|
/**
|
|
1935
1946
|
* `STABLE`
|
|
1936
1947
|
*
|
|
@@ -1950,7 +1961,7 @@ export declare const postCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItems
|
|
|
1950
1961
|
queue_id: string;
|
|
1951
1962
|
}, void, {
|
|
1952
1963
|
readId: string;
|
|
1953
|
-
}>;
|
|
1964
|
+
}, undefined>;
|
|
1954
1965
|
/**
|
|
1955
1966
|
* `STABLE`
|
|
1956
1967
|
*
|
|
@@ -1996,7 +2007,7 @@ export declare const getCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItemsR
|
|
|
1996
2007
|
expireTime: string;
|
|
1997
2008
|
id: string;
|
|
1998
2009
|
}[];
|
|
1999
|
-
}, undefined>;
|
|
2010
|
+
}, undefined, undefined>;
|
|
2000
2011
|
/**
|
|
2001
2012
|
* `STABLE`
|
|
2002
2013
|
*
|
|
@@ -2052,7 +2063,7 @@ export declare const getCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMap
|
|
|
2052
2063
|
numericSortKey: number;
|
|
2053
2064
|
}[];
|
|
2054
2065
|
nextPageToken: string;
|
|
2055
|
-
}, undefined>;
|
|
2066
|
+
}, undefined, undefined>;
|
|
2056
2067
|
/**
|
|
2057
2068
|
* `STABLE`
|
|
2058
2069
|
*
|
|
@@ -2093,7 +2104,7 @@ export declare const postCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMa
|
|
|
2093
2104
|
id: string;
|
|
2094
2105
|
stringSortKey: string;
|
|
2095
2106
|
numericSortKey: number;
|
|
2096
|
-
}>;
|
|
2107
|
+
}, undefined>;
|
|
2097
2108
|
/**
|
|
2098
2109
|
* `STABLE`
|
|
2099
2110
|
*
|
|
@@ -2119,7 +2130,7 @@ export declare const getCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMap
|
|
|
2119
2130
|
id: string;
|
|
2120
2131
|
stringSortKey: string;
|
|
2121
2132
|
numericSortKey: number;
|
|
2122
|
-
}, undefined>;
|
|
2133
|
+
}, undefined, undefined>;
|
|
2123
2134
|
/**
|
|
2124
2135
|
* `STABLE`
|
|
2125
2136
|
*
|
|
@@ -2136,7 +2147,7 @@ export declare const deleteCloudV2UniversesUniverseIdMemoryStoreSortedMapsSorted
|
|
|
2136
2147
|
universe_id: string;
|
|
2137
2148
|
sorted_map_id: string;
|
|
2138
2149
|
item_id: string;
|
|
2139
|
-
}, void, undefined>;
|
|
2150
|
+
}, void, undefined, undefined>;
|
|
2140
2151
|
/**
|
|
2141
2152
|
* `STABLE`
|
|
2142
2153
|
*
|
|
@@ -2175,7 +2186,7 @@ export declare const patchCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedM
|
|
|
2175
2186
|
id?: string | undefined;
|
|
2176
2187
|
stringSortKey?: string | undefined;
|
|
2177
2188
|
numericSortKey?: number | undefined;
|
|
2178
|
-
}>;
|
|
2189
|
+
}, undefined>;
|
|
2179
2190
|
/**
|
|
2180
2191
|
* `STABLE`
|
|
2181
2192
|
*
|
|
@@ -2230,7 +2241,7 @@ export declare const getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataSt
|
|
|
2230
2241
|
id: string;
|
|
2231
2242
|
}[];
|
|
2232
2243
|
nextPageToken: string;
|
|
2233
|
-
}, undefined>;
|
|
2244
|
+
}, undefined, undefined>;
|
|
2234
2245
|
/**
|
|
2235
2246
|
* `STABLE`
|
|
2236
2247
|
*
|
|
@@ -2264,7 +2275,7 @@ export declare const postCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataS
|
|
|
2264
2275
|
path: string;
|
|
2265
2276
|
value: number;
|
|
2266
2277
|
id: string;
|
|
2267
|
-
}>;
|
|
2278
|
+
}, undefined>;
|
|
2268
2279
|
/**
|
|
2269
2280
|
* `STABLE`
|
|
2270
2281
|
*
|
|
@@ -2287,7 +2298,7 @@ export declare const getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataSt
|
|
|
2287
2298
|
path: string;
|
|
2288
2299
|
value: number;
|
|
2289
2300
|
id: string;
|
|
2290
|
-
}, undefined>;
|
|
2301
|
+
}, undefined, undefined>;
|
|
2291
2302
|
/**
|
|
2292
2303
|
* `STABLE`
|
|
2293
2304
|
*
|
|
@@ -2309,7 +2320,7 @@ export declare const deleteCloudV2UniversesUniverseIdOrderedDataStoresOrderedDat
|
|
|
2309
2320
|
entry_id: string;
|
|
2310
2321
|
scope_id: string;
|
|
2311
2322
|
ordered_data_store_id: string;
|
|
2312
|
-
}, void, undefined>;
|
|
2323
|
+
}, void, undefined, undefined>;
|
|
2313
2324
|
/**
|
|
2314
2325
|
* `STABLE`
|
|
2315
2326
|
*
|
|
@@ -2340,7 +2351,7 @@ export declare const patchCloudV2UniversesUniverseIdOrderedDataStoresOrderedData
|
|
|
2340
2351
|
path?: string | undefined;
|
|
2341
2352
|
value?: number | undefined;
|
|
2342
2353
|
id?: string | undefined;
|
|
2343
|
-
}>;
|
|
2354
|
+
}, undefined>;
|
|
2344
2355
|
/**
|
|
2345
2356
|
* `STABLE`
|
|
2346
2357
|
*
|
|
@@ -2375,7 +2386,7 @@ export declare const postCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataS
|
|
|
2375
2386
|
id: string;
|
|
2376
2387
|
}, {
|
|
2377
2388
|
amount: number;
|
|
2378
|
-
}>;
|
|
2389
|
+
}, undefined>;
|
|
2379
2390
|
/**
|
|
2380
2391
|
* `STABLE`
|
|
2381
2392
|
*
|
|
@@ -2399,7 +2410,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceId: import("../..")
|
|
|
2399
2410
|
serverSize?: number | undefined;
|
|
2400
2411
|
root?: boolean | undefined;
|
|
2401
2412
|
universeRuntimeCreation?: boolean | undefined;
|
|
2402
|
-
}, undefined>;
|
|
2413
|
+
}, undefined, undefined>;
|
|
2403
2414
|
/**
|
|
2404
2415
|
* `STABLE`
|
|
2405
2416
|
*
|
|
@@ -2437,7 +2448,7 @@ export declare const patchCloudV2UniversesUniverseIdPlacesPlaceId: import("../..
|
|
|
2437
2448
|
root?: boolean | undefined;
|
|
2438
2449
|
universeRuntimeCreation?: boolean | undefined;
|
|
2439
2450
|
templatePlace?: string | undefined;
|
|
2440
|
-
}>;
|
|
2451
|
+
}, undefined>;
|
|
2441
2452
|
/**
|
|
2442
2453
|
* `BETA`
|
|
2443
2454
|
*
|
|
@@ -2475,7 +2486,31 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstance
|
|
|
2475
2486
|
response: {
|
|
2476
2487
|
'@type': string;
|
|
2477
2488
|
};
|
|
2478
|
-
}, undefined
|
|
2489
|
+
}, undefined, {
|
|
2490
|
+
path: string;
|
|
2491
|
+
hasChildren: boolean;
|
|
2492
|
+
engineInstance: {
|
|
2493
|
+
Id: string;
|
|
2494
|
+
Parent: string;
|
|
2495
|
+
Name: string;
|
|
2496
|
+
Details: {
|
|
2497
|
+
Folder: Record<string, never>;
|
|
2498
|
+
LocalScript: {
|
|
2499
|
+
Enabled: boolean;
|
|
2500
|
+
RunContext: "Legacy" | "Server" | "Client" | "Plugin";
|
|
2501
|
+
Source: string;
|
|
2502
|
+
};
|
|
2503
|
+
ModuleScript: {
|
|
2504
|
+
Source: string;
|
|
2505
|
+
};
|
|
2506
|
+
Script: {
|
|
2507
|
+
Enabled: boolean;
|
|
2508
|
+
RunContext: "Legacy" | "Server" | "Client" | "Plugin";
|
|
2509
|
+
Source: string;
|
|
2510
|
+
};
|
|
2511
|
+
};
|
|
2512
|
+
};
|
|
2513
|
+
}>;
|
|
2479
2514
|
/**
|
|
2480
2515
|
* `BETA`
|
|
2481
2516
|
*
|
|
@@ -2538,6 +2573,30 @@ export declare const patchCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstan
|
|
|
2538
2573
|
};
|
|
2539
2574
|
};
|
|
2540
2575
|
} | undefined;
|
|
2576
|
+
}, {
|
|
2577
|
+
path: string;
|
|
2578
|
+
hasChildren: boolean;
|
|
2579
|
+
engineInstance: {
|
|
2580
|
+
Id: string;
|
|
2581
|
+
Parent: string;
|
|
2582
|
+
Name: string;
|
|
2583
|
+
Details: {
|
|
2584
|
+
Folder: Record<string, never>;
|
|
2585
|
+
LocalScript: {
|
|
2586
|
+
Enabled: boolean;
|
|
2587
|
+
RunContext: "Legacy" | "Server" | "Client" | "Plugin";
|
|
2588
|
+
Source: string;
|
|
2589
|
+
};
|
|
2590
|
+
ModuleScript: {
|
|
2591
|
+
Source: string;
|
|
2592
|
+
};
|
|
2593
|
+
Script: {
|
|
2594
|
+
Enabled: boolean;
|
|
2595
|
+
RunContext: "Legacy" | "Server" | "Client" | "Plugin";
|
|
2596
|
+
Source: string;
|
|
2597
|
+
};
|
|
2598
|
+
};
|
|
2599
|
+
};
|
|
2541
2600
|
}>;
|
|
2542
2601
|
/**
|
|
2543
2602
|
* `BETA`
|
|
@@ -2589,7 +2648,34 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstance
|
|
|
2589
2648
|
response: {
|
|
2590
2649
|
'@type': string;
|
|
2591
2650
|
};
|
|
2592
|
-
}, undefined
|
|
2651
|
+
}, undefined, {
|
|
2652
|
+
instances: {
|
|
2653
|
+
path: string;
|
|
2654
|
+
hasChildren: boolean;
|
|
2655
|
+
engineInstance: {
|
|
2656
|
+
Id: string;
|
|
2657
|
+
Parent: string;
|
|
2658
|
+
Name: string;
|
|
2659
|
+
Details: {
|
|
2660
|
+
Folder: Record<string, never>;
|
|
2661
|
+
LocalScript: {
|
|
2662
|
+
Enabled: boolean;
|
|
2663
|
+
RunContext: "Legacy" | "Server" | "Client" | "Plugin";
|
|
2664
|
+
Source: string;
|
|
2665
|
+
};
|
|
2666
|
+
ModuleScript: {
|
|
2667
|
+
Source: string;
|
|
2668
|
+
};
|
|
2669
|
+
Script: {
|
|
2670
|
+
Enabled: boolean;
|
|
2671
|
+
RunContext: "Legacy" | "Server" | "Client" | "Plugin";
|
|
2672
|
+
Source: string;
|
|
2673
|
+
};
|
|
2674
|
+
};
|
|
2675
|
+
};
|
|
2676
|
+
}[];
|
|
2677
|
+
nextPageToken: string;
|
|
2678
|
+
}>;
|
|
2593
2679
|
/**
|
|
2594
2680
|
* `STABLE`
|
|
2595
2681
|
*
|
|
@@ -2649,7 +2735,7 @@ export declare const postCloudV2UniversesUniverseIdPlacesPlaceIdLuauExecutionSes
|
|
|
2649
2735
|
binaryInput: string;
|
|
2650
2736
|
enableBinaryOutput: boolean;
|
|
2651
2737
|
binaryOutputUri: string;
|
|
2652
|
-
}>;
|
|
2738
|
+
}, undefined>;
|
|
2653
2739
|
/**
|
|
2654
2740
|
* `BETA`
|
|
2655
2741
|
*
|
|
@@ -2690,7 +2776,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictions:
|
|
|
2690
2776
|
};
|
|
2691
2777
|
}[];
|
|
2692
2778
|
nextPageToken: string;
|
|
2693
|
-
}, undefined>;
|
|
2779
|
+
}, undefined, undefined>;
|
|
2694
2780
|
/**
|
|
2695
2781
|
* `BETA`
|
|
2696
2782
|
*
|
|
@@ -2720,7 +2806,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictionsU
|
|
|
2720
2806
|
excludeAltAccounts: boolean;
|
|
2721
2807
|
inherited: boolean;
|
|
2722
2808
|
};
|
|
2723
|
-
}, undefined>;
|
|
2809
|
+
}, undefined, undefined>;
|
|
2724
2810
|
/**
|
|
2725
2811
|
* `BETA`
|
|
2726
2812
|
*
|
|
@@ -2778,7 +2864,7 @@ export declare const patchCloudV2UniversesUniverseIdPlacesPlaceIdUserRestriction
|
|
|
2778
2864
|
excludeAltAccounts: boolean;
|
|
2779
2865
|
inherited: boolean;
|
|
2780
2866
|
} | undefined;
|
|
2781
|
-
}>;
|
|
2867
|
+
}, undefined>;
|
|
2782
2868
|
/**
|
|
2783
2869
|
* `STABLE`
|
|
2784
2870
|
*
|
|
@@ -2840,7 +2926,7 @@ export declare const postCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionI
|
|
|
2840
2926
|
binaryInput: string;
|
|
2841
2927
|
enableBinaryOutput: boolean;
|
|
2842
2928
|
binaryOutputUri: string;
|
|
2843
|
-
}>;
|
|
2929
|
+
}, undefined>;
|
|
2844
2930
|
/**
|
|
2845
2931
|
* `STABLE`
|
|
2846
2932
|
*
|
|
@@ -2896,7 +2982,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionId
|
|
|
2896
2982
|
binaryInput: string;
|
|
2897
2983
|
enableBinaryOutput: boolean;
|
|
2898
2984
|
binaryOutputUri: string;
|
|
2899
|
-
}, undefined>;
|
|
2985
|
+
}, undefined, undefined>;
|
|
2900
2986
|
/**
|
|
2901
2987
|
* `STABLE`
|
|
2902
2988
|
*
|
|
@@ -2955,7 +3041,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionId
|
|
|
2955
3041
|
}[];
|
|
2956
3042
|
}[];
|
|
2957
3043
|
nextPageToken: string;
|
|
2958
|
-
}, undefined>;
|
|
3044
|
+
}, undefined, undefined>;
|
|
2959
3045
|
/**
|
|
2960
3046
|
* `BETA`
|
|
2961
3047
|
*
|
|
@@ -3010,7 +3096,7 @@ export declare const getCloudV2UniversesUniverseIdSubscriptionProductsSubscripti
|
|
|
3010
3096
|
purchasePlatform: "PURCHASE_PLATFORM_UNSPECIFIED" | "DESKTOP" | "MOBILE";
|
|
3011
3097
|
paymentProvider: "PAYMENT_PROVIDER_UNSPECIFIED" | "STRIPE" | "APPLE" | "GOOGLE" | "ROBLOX_CREDIT" | "ROBUX";
|
|
3012
3098
|
user: string;
|
|
3013
|
-
}, undefined>;
|
|
3099
|
+
}, undefined, undefined>;
|
|
3014
3100
|
/**
|
|
3015
3101
|
* `BETA`
|
|
3016
3102
|
*
|
|
@@ -3049,7 +3135,7 @@ export declare const getCloudV2UniversesUniverseIdUserRestrictions: import("../.
|
|
|
3049
3135
|
};
|
|
3050
3136
|
}[];
|
|
3051
3137
|
nextPageToken: string;
|
|
3052
|
-
}, undefined>;
|
|
3138
|
+
}, undefined, undefined>;
|
|
3053
3139
|
/**
|
|
3054
3140
|
* `BETA`
|
|
3055
3141
|
*
|
|
@@ -3106,7 +3192,7 @@ export declare const getCloudV2UniversesUniverseIdUserRestrictionsListLogs: impo
|
|
|
3106
3192
|
excludeAltAccounts: boolean;
|
|
3107
3193
|
}[];
|
|
3108
3194
|
nextPageToken: string;
|
|
3109
|
-
}, undefined>;
|
|
3195
|
+
}, undefined, undefined>;
|
|
3110
3196
|
/**
|
|
3111
3197
|
* `BETA`
|
|
3112
3198
|
*
|
|
@@ -3134,7 +3220,7 @@ export declare const getCloudV2UniversesUniverseIdUserRestrictionsUserRestrictio
|
|
|
3134
3220
|
excludeAltAccounts: boolean;
|
|
3135
3221
|
inherited: boolean;
|
|
3136
3222
|
};
|
|
3137
|
-
}, undefined>;
|
|
3223
|
+
}, undefined, undefined>;
|
|
3138
3224
|
/**
|
|
3139
3225
|
* `BETA`
|
|
3140
3226
|
*
|
|
@@ -3190,7 +3276,7 @@ export declare const patchCloudV2UniversesUniverseIdUserRestrictionsUserRestrict
|
|
|
3190
3276
|
excludeAltAccounts: boolean;
|
|
3191
3277
|
inherited: boolean;
|
|
3192
3278
|
} | undefined;
|
|
3193
|
-
}>;
|
|
3279
|
+
}, undefined>;
|
|
3194
3280
|
/**
|
|
3195
3281
|
* `BETA`
|
|
3196
3282
|
*
|
|
@@ -3230,7 +3316,7 @@ export declare const getCloudV2UsersUserId: import("../..").EndpointGeneric<{
|
|
|
3230
3316
|
guilded: string;
|
|
3231
3317
|
visibility: "SOCIAL_NETWORK_VISIBILITY_UNSPECIFIED" | "NO_ONE" | "FRIENDS" | "FRIENDS_AND_FOLLOWING" | "FRIENDS_FOLLOWING_AND_FOLLOWERS" | "EVERYONE";
|
|
3232
3318
|
};
|
|
3233
|
-
}, undefined>;
|
|
3319
|
+
}, undefined, undefined>;
|
|
3234
3320
|
/**
|
|
3235
3321
|
* `BETA`
|
|
3236
3322
|
*
|
|
@@ -3285,7 +3371,9 @@ export declare const getCloudV2UsersUserIdGenerateThumbnail: import("../..").End
|
|
|
3285
3371
|
response: {
|
|
3286
3372
|
'@type': string;
|
|
3287
3373
|
};
|
|
3288
|
-
}, undefined
|
|
3374
|
+
}, undefined, {
|
|
3375
|
+
imageUri: string;
|
|
3376
|
+
}>;
|
|
3289
3377
|
/**
|
|
3290
3378
|
* `BETA`
|
|
3291
3379
|
*
|
|
@@ -3327,7 +3415,7 @@ export declare const getCloudV2UsersUserIdAssetQuotas: import("../..").EndpointG
|
|
|
3327
3415
|
usageResetTime: string;
|
|
3328
3416
|
}[];
|
|
3329
3417
|
nextPageToken: string;
|
|
3330
|
-
}, undefined>;
|
|
3418
|
+
}, undefined, undefined>;
|
|
3331
3419
|
/**
|
|
3332
3420
|
* `BETA`
|
|
3333
3421
|
*
|
|
@@ -3393,7 +3481,7 @@ export declare const getCloudV2UsersUserIdInventoryItems: import("../..").Endpoi
|
|
|
3393
3481
|
addTime: string;
|
|
3394
3482
|
}[];
|
|
3395
3483
|
nextPageToken: string;
|
|
3396
|
-
}, undefined>;
|
|
3484
|
+
}, undefined, undefined>;
|
|
3397
3485
|
/**
|
|
3398
3486
|
* `STABLE`
|
|
3399
3487
|
*
|
|
@@ -3447,7 +3535,7 @@ export declare const postCloudV2UsersUserIdNotifications: import("../..").Endpoi
|
|
|
3447
3535
|
category: string;
|
|
3448
3536
|
};
|
|
3449
3537
|
};
|
|
3450
|
-
}>;
|
|
3538
|
+
}, undefined>;
|
|
3451
3539
|
export declare const postApiKeysIntrospect: import("../..").EndpointGeneric<{}, {
|
|
3452
3540
|
name: string;
|
|
3453
3541
|
authorizedUserId: number;
|
|
@@ -3466,7 +3554,7 @@ export declare const postApiKeysIntrospect: import("../..").EndpointGeneric<{},
|
|
|
3466
3554
|
expirationTimeUtc: string;
|
|
3467
3555
|
}, {
|
|
3468
3556
|
apiKey: string;
|
|
3469
|
-
}>;
|
|
3557
|
+
}, undefined>;
|
|
3470
3558
|
export declare const deleteLegacyDevelopV2TeamtestByPlaceId: import("../..").EndpointGeneric<{
|
|
3471
3559
|
placeId: number;
|
|
3472
|
-
}, Record<string, never>, undefined>;
|
|
3560
|
+
}, Record<string, never>, undefined, undefined>;
|