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
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.endpoint = exports.hbaClient = void 0;
|
|
3
|
+
exports.endpoint = exports.OperationSchema = exports.hbaClient = void 0;
|
|
4
4
|
exports.configureServer = configureServer;
|
|
5
5
|
exports.clearServerConfig = clearServerConfig;
|
|
6
6
|
exports.getServerConfig = getServerConfig;
|
|
@@ -14,6 +14,8 @@ exports.fetchApi = fetchApi;
|
|
|
14
14
|
exports.fetchApiSplit = fetchApiSplit;
|
|
15
15
|
exports.fetchApiPages = fetchApiPages;
|
|
16
16
|
exports.fetchApiPagesGenerator = fetchApiPagesGenerator;
|
|
17
|
+
exports.pollOperation = pollOperation;
|
|
18
|
+
exports.fetchApiOperation = fetchApiOperation;
|
|
17
19
|
const zod_1 = require("zod");
|
|
18
20
|
const cache_1 = require("./cache");
|
|
19
21
|
const roblox_bat_1 = require("roblox-bat");
|
|
@@ -78,6 +80,10 @@ function prepareRequestUrl(endpoint, extendedParams) {
|
|
|
78
80
|
if (key === 'body' || usedPathParams.has(key))
|
|
79
81
|
continue;
|
|
80
82
|
const value = paramsObject[key];
|
|
83
|
+
// An unset optional parameter must be omitted, not serialized as the literal
|
|
84
|
+
// string "undefined"/"null" (which the API would reject as an invalid value).
|
|
85
|
+
if (value === undefined || value === null)
|
|
86
|
+
continue;
|
|
81
87
|
const serializationMethod = endpoint.serializationMethod?.[key];
|
|
82
88
|
// Handle exploded arrays by creating separate query params for each element
|
|
83
89
|
if (Array.isArray(value) && serializationMethod?.explode) {
|
|
@@ -971,3 +977,110 @@ async function* fetchApiPagesGenerator(endpoint, initialParams, requestOptions,
|
|
|
971
977
|
cursor = nextCursor;
|
|
972
978
|
}
|
|
973
979
|
}
|
|
980
|
+
/**
|
|
981
|
+
* Roblox Open Cloud long-running operation envelope. Endpoints such as
|
|
982
|
+
* `generateThumbnail` / `generateAsset` return this instead of the final
|
|
983
|
+
* result: `done` is false until the work completes, at which point `response`
|
|
984
|
+
* holds the payload. Fields are optional because the API omits `response`
|
|
985
|
+
* (and sometimes `done`) while the operation is still in progress.
|
|
986
|
+
*/
|
|
987
|
+
exports.OperationSchema = zod_1.z.object({
|
|
988
|
+
path: zod_1.z.string(),
|
|
989
|
+
metadata: zod_1.z.record(zod_1.z.string(), zod_1.z.any()).optional(),
|
|
990
|
+
done: zod_1.z.boolean().optional(),
|
|
991
|
+
error: zod_1.z
|
|
992
|
+
.object({
|
|
993
|
+
code: zod_1.z.number().optional(),
|
|
994
|
+
message: zod_1.z.string().optional(),
|
|
995
|
+
details: zod_1.z.array(zod_1.z.any()).optional(),
|
|
996
|
+
})
|
|
997
|
+
.partial()
|
|
998
|
+
.optional(),
|
|
999
|
+
response: zod_1.z.record(zod_1.z.string(), zod_1.z.any()).optional(),
|
|
1000
|
+
});
|
|
1001
|
+
function sleep(ms, signal) {
|
|
1002
|
+
return new Promise((resolve, reject) => {
|
|
1003
|
+
if (signal?.aborted) {
|
|
1004
|
+
reject(signal.reason ?? new Error('Aborted'));
|
|
1005
|
+
return;
|
|
1006
|
+
}
|
|
1007
|
+
const timer = setTimeout(() => {
|
|
1008
|
+
signal?.removeEventListener('abort', onAbort);
|
|
1009
|
+
resolve();
|
|
1010
|
+
}, ms);
|
|
1011
|
+
const onAbort = () => {
|
|
1012
|
+
clearTimeout(timer);
|
|
1013
|
+
reject(signal?.reason ?? new Error('Aborted'));
|
|
1014
|
+
};
|
|
1015
|
+
signal?.addEventListener('abort', onAbort, { once: true });
|
|
1016
|
+
});
|
|
1017
|
+
}
|
|
1018
|
+
function buildOperationUrl(endpoint, operationPath, options) {
|
|
1019
|
+
const base = (options?.baseUrl ?? endpoint.baseUrl).replace(/\/+$/, '');
|
|
1020
|
+
let prefix = options?.pathPrefix;
|
|
1021
|
+
if (prefix === undefined) {
|
|
1022
|
+
// Derive the version prefix by locating the operation path's leading segment
|
|
1023
|
+
// within the originating endpoint's path (e.g. `/cloud/v2/users/:id:generate…` → `/cloud/v2`).
|
|
1024
|
+
const firstSegment = operationPath.replace(/^\/+/, '').split('/')[0];
|
|
1025
|
+
const marker = '/' + firstSegment + '/';
|
|
1026
|
+
const idx = firstSegment ? endpoint.path.indexOf(marker) : -1;
|
|
1027
|
+
prefix = idx > 0 ? endpoint.path.slice(0, idx) : '';
|
|
1028
|
+
}
|
|
1029
|
+
const cleanPrefix = prefix ? '/' + prefix.replace(/^\/+|\/+$/g, '') : '';
|
|
1030
|
+
const cleanPath = operationPath.replace(/^\/+/, '');
|
|
1031
|
+
return `${base}${cleanPrefix}/${cleanPath}`;
|
|
1032
|
+
}
|
|
1033
|
+
function isZodSchema(value) {
|
|
1034
|
+
return typeof value?.safeParse === 'function';
|
|
1035
|
+
}
|
|
1036
|
+
async function pollOperation(endpoint, operation, resultSchemaOrOptions, maybeOptions = {}) {
|
|
1037
|
+
const explicitSchema = isZodSchema(resultSchemaOrOptions) ? resultSchemaOrOptions : undefined;
|
|
1038
|
+
const options = explicitSchema ? maybeOptions : (resultSchemaOrOptions ?? {});
|
|
1039
|
+
const schema = explicitSchema ?? endpoint.resultResponse;
|
|
1040
|
+
const interval = options.interval ?? 1000;
|
|
1041
|
+
const timeout = options.timeout ?? 30000;
|
|
1042
|
+
const deadline = Date.now() + timeout;
|
|
1043
|
+
const finish = (op) => {
|
|
1044
|
+
if (op.error && (op.error.message || op.error.code)) {
|
|
1045
|
+
throw new Error(op.error.message ?? `Operation failed with code ${op.error.code}`);
|
|
1046
|
+
}
|
|
1047
|
+
return schema ? schema.parse(op.response) : op.response;
|
|
1048
|
+
};
|
|
1049
|
+
if (operation.done) {
|
|
1050
|
+
return finish(operation);
|
|
1051
|
+
}
|
|
1052
|
+
const url = buildOperationUrl(endpoint, operation.path, options);
|
|
1053
|
+
const pollEndpoint = {
|
|
1054
|
+
method: 'GET',
|
|
1055
|
+
path: '',
|
|
1056
|
+
baseUrl: url,
|
|
1057
|
+
requestFormat: 'json',
|
|
1058
|
+
parameters: {},
|
|
1059
|
+
response: exports.OperationSchema,
|
|
1060
|
+
errors: [],
|
|
1061
|
+
};
|
|
1062
|
+
while (true) {
|
|
1063
|
+
await sleep(interval, options.signal);
|
|
1064
|
+
const polled = (await fetchApi(pollEndpoint, {}, {
|
|
1065
|
+
...options.requestOptions,
|
|
1066
|
+
throwOnError: true,
|
|
1067
|
+
}));
|
|
1068
|
+
if (polled.done) {
|
|
1069
|
+
return finish(polled);
|
|
1070
|
+
}
|
|
1071
|
+
if (Date.now() >= deadline) {
|
|
1072
|
+
throw new Error(`Operation "${operation.path}" did not complete within ${timeout}ms`);
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
async function fetchApiOperation(endpoint, params, resultSchemaOrOptions, maybeOptions = {}) {
|
|
1077
|
+
const explicitSchema = isZodSchema(resultSchemaOrOptions) ? resultSchemaOrOptions : undefined;
|
|
1078
|
+
const options = explicitSchema ? maybeOptions : (resultSchemaOrOptions ?? {});
|
|
1079
|
+
const operation = (await fetchApi(endpoint, params, {
|
|
1080
|
+
...options.requestOptions,
|
|
1081
|
+
throwOnError: true,
|
|
1082
|
+
}));
|
|
1083
|
+
return explicitSchema
|
|
1084
|
+
? pollOperation(endpoint, operation, explicitSchema, options)
|
|
1085
|
+
: pollOperation(endpoint, operation, options);
|
|
1086
|
+
}
|
|
@@ -80,7 +80,7 @@ export declare const postAssets: import("../..").EndpointGeneric<{}, {
|
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
82
|
fileContent: File;
|
|
83
|
-
}>;
|
|
83
|
+
}, undefined>;
|
|
84
84
|
/**
|
|
85
85
|
* **Get Asset** · `BETA`
|
|
86
86
|
*
|
|
@@ -123,7 +123,7 @@ export declare const getAssetsAssetId: import("../..").EndpointGeneric<{
|
|
|
123
123
|
title: string;
|
|
124
124
|
uri: string;
|
|
125
125
|
};
|
|
126
|
-
}, undefined>;
|
|
126
|
+
}, undefined, undefined>;
|
|
127
127
|
/**
|
|
128
128
|
* **Update Asset** · `BETA`
|
|
129
129
|
*
|
|
@@ -209,7 +209,7 @@ export declare const patchAssetsAssetId: import("../..").EndpointGeneric<{
|
|
|
209
209
|
};
|
|
210
210
|
} | undefined;
|
|
211
211
|
fileContent?: File | undefined;
|
|
212
|
-
}>;
|
|
212
|
+
}, undefined>;
|
|
213
213
|
/**
|
|
214
214
|
* **Archive Asset** · `BETA`
|
|
215
215
|
*
|
|
@@ -250,7 +250,7 @@ export declare const postAssetsAssetIdArchive: import("../..").EndpointGeneric<{
|
|
|
250
250
|
title: string;
|
|
251
251
|
uri: string;
|
|
252
252
|
};
|
|
253
|
-
}, undefined>;
|
|
253
|
+
}, undefined, undefined>;
|
|
254
254
|
/**
|
|
255
255
|
* **Restore Asset** · `BETA`
|
|
256
256
|
*
|
|
@@ -291,7 +291,7 @@ export declare const postAssetsAssetIdRestore: import("../..").EndpointGeneric<{
|
|
|
291
291
|
title: string;
|
|
292
292
|
uri: string;
|
|
293
293
|
};
|
|
294
|
-
}, undefined>;
|
|
294
|
+
}, undefined, undefined>;
|
|
295
295
|
/**
|
|
296
296
|
* **List Asset Versions** · `BETA`
|
|
297
297
|
*
|
|
@@ -321,7 +321,7 @@ export declare const getAssetsAssetIdVersions: import("../..").EndpointGeneric<{
|
|
|
321
321
|
moderationState: string;
|
|
322
322
|
};
|
|
323
323
|
published: boolean;
|
|
324
|
-
}[], undefined>;
|
|
324
|
+
}[], undefined, undefined>;
|
|
325
325
|
/**
|
|
326
326
|
* **Rollback Asset Version** · `BETA`
|
|
327
327
|
*
|
|
@@ -352,7 +352,7 @@ export declare const postAssetsAssetIdVersionsRollback: import("../..").Endpoint
|
|
|
352
352
|
published: boolean;
|
|
353
353
|
}, {
|
|
354
354
|
assetVersion: string;
|
|
355
|
-
}>;
|
|
355
|
+
}, undefined>;
|
|
356
356
|
/**
|
|
357
357
|
* **Get Asset Version** · `BETA`
|
|
358
358
|
*
|
|
@@ -380,7 +380,7 @@ export declare const getAssetsAssetIdVersionsVersionNumber: import("../..").Endp
|
|
|
380
380
|
moderationState: string;
|
|
381
381
|
};
|
|
382
382
|
published: boolean;
|
|
383
|
-
}, undefined>;
|
|
383
|
+
}, undefined, undefined>;
|
|
384
384
|
/**
|
|
385
385
|
* **Get Operation** · `BETA`
|
|
386
386
|
*
|
|
@@ -429,4 +429,4 @@ export declare const getOperationsOperationId: import("../..").EndpointGeneric<{
|
|
|
429
429
|
uri: string;
|
|
430
430
|
};
|
|
431
431
|
};
|
|
432
|
-
}, undefined>;
|
|
432
|
+
}, undefined, undefined>;
|
|
@@ -30,7 +30,7 @@ export declare const getUniversesUniverseIdOrderedDataStoresOrderedDataStoreScop
|
|
|
30
30
|
value: number;
|
|
31
31
|
}[];
|
|
32
32
|
nextPageToken: string;
|
|
33
|
-
}, undefined>;
|
|
33
|
+
}, undefined, undefined>;
|
|
34
34
|
/**
|
|
35
35
|
* **Create** · `BETA`
|
|
36
36
|
*
|
|
@@ -57,7 +57,7 @@ export declare const postUniversesUniverseIdOrderedDataStoresOrderedDataStoreSco
|
|
|
57
57
|
value: number;
|
|
58
58
|
}, {
|
|
59
59
|
value: number;
|
|
60
|
-
}>;
|
|
60
|
+
}, undefined>;
|
|
61
61
|
/**
|
|
62
62
|
* **Get** · `BETA`
|
|
63
63
|
*
|
|
@@ -81,7 +81,7 @@ export declare const getUniversesUniverseIdOrderedDataStoresOrderedDataStoreScop
|
|
|
81
81
|
path: string;
|
|
82
82
|
id: string;
|
|
83
83
|
value: number;
|
|
84
|
-
}, undefined>;
|
|
84
|
+
}, undefined, undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* **Delete** · `BETA`
|
|
87
87
|
*
|
|
@@ -101,7 +101,7 @@ export declare const deleteUniversesUniverseIdOrderedDataStoresOrderedDataStoreS
|
|
|
101
101
|
scope: string;
|
|
102
102
|
orderedDataStore: string;
|
|
103
103
|
entry: string;
|
|
104
|
-
}, void, undefined>;
|
|
104
|
+
}, void, undefined, undefined>;
|
|
105
105
|
/**
|
|
106
106
|
* **Update** · `BETA`
|
|
107
107
|
*
|
|
@@ -130,7 +130,7 @@ export declare const patchUniversesUniverseIdOrderedDataStoresOrderedDataStoreSc
|
|
|
130
130
|
value: number;
|
|
131
131
|
}, {
|
|
132
132
|
value?: number | undefined;
|
|
133
|
-
}>;
|
|
133
|
+
}, undefined>;
|
|
134
134
|
/**
|
|
135
135
|
* **Increment** · `BETA`
|
|
136
136
|
*
|
|
@@ -159,4 +159,4 @@ export declare const postUniversesUniverseIdOrderedDataStoresOrderedDataStoreSco
|
|
|
159
159
|
value: number;
|
|
160
160
|
}, {
|
|
161
161
|
amount: number;
|
|
162
|
-
}>;
|
|
162
|
+
}, undefined>;
|
|
@@ -24,7 +24,7 @@ export declare const getUniversesUniverseIdDatastores: import("../..").EndpointG
|
|
|
24
24
|
createdTime: string | null;
|
|
25
25
|
}[];
|
|
26
26
|
nextPageCursor: string | null;
|
|
27
|
-
}, undefined>;
|
|
27
|
+
}, undefined, undefined>;
|
|
28
28
|
/**
|
|
29
29
|
* **List Entries** · `BETA`
|
|
30
30
|
*
|
|
@@ -57,7 +57,7 @@ export declare const getUniversesUniverseIdDatastoresDatastoreEntries: import(".
|
|
|
57
57
|
}, {
|
|
58
58
|
keys: string[];
|
|
59
59
|
nextPageCursor: string | null;
|
|
60
|
-
}, undefined>;
|
|
60
|
+
}, undefined, undefined>;
|
|
61
61
|
/**
|
|
62
62
|
* **Get Entry** · `BETA`
|
|
63
63
|
*
|
|
@@ -101,7 +101,7 @@ export declare const getUniversesUniverseIdDatastoresDatastoreEntriesEntry: impo
|
|
|
101
101
|
datastoreName?: string | null | undefined;
|
|
102
102
|
scope?: string | null | undefined;
|
|
103
103
|
entryKey?: string | null | undefined;
|
|
104
|
-
}, Record<string, never>, undefined>;
|
|
104
|
+
}, Record<string, never>, undefined, undefined>;
|
|
105
105
|
/**
|
|
106
106
|
* **Set Entry** · `BETA`
|
|
107
107
|
*
|
|
@@ -136,7 +136,7 @@ export declare const postUniversesUniverseIdDatastoresDatastoreEntriesEntry: imp
|
|
|
136
136
|
"roblox-entry-attributes"?: string | null | undefined;
|
|
137
137
|
"roblox-entry-userids"?: string | null | undefined;
|
|
138
138
|
"content-md5"?: string | null | undefined;
|
|
139
|
-
}, void, string>;
|
|
139
|
+
}, void, string, undefined>;
|
|
140
140
|
/**
|
|
141
141
|
* **Delete Entry** · `BETA`
|
|
142
142
|
*
|
|
@@ -158,7 +158,7 @@ export declare const deleteUniversesUniverseIdDatastoresDatastoreEntriesEntry: i
|
|
|
158
158
|
datastoreName?: string | null | undefined;
|
|
159
159
|
scope?: string | null | undefined;
|
|
160
160
|
entryKey?: string | null | undefined;
|
|
161
|
-
}, void, undefined>;
|
|
161
|
+
}, void, undefined, undefined>;
|
|
162
162
|
/**
|
|
163
163
|
* **Increment Entry** · `BETA`
|
|
164
164
|
*
|
|
@@ -206,7 +206,7 @@ export declare const postUniversesUniverseIdDatastoresDatastoreEntriesEntryIncre
|
|
|
206
206
|
"roblox-entry-attributes"?: string | null | undefined;
|
|
207
207
|
"roblox-entry-userids"?: string | null | undefined;
|
|
208
208
|
incrementBy?: number | undefined;
|
|
209
|
-
}, Record<string, never>, undefined>;
|
|
209
|
+
}, Record<string, never>, undefined, undefined>;
|
|
210
210
|
/**
|
|
211
211
|
* **List Entry Versions** · `BETA`
|
|
212
212
|
*
|
|
@@ -238,7 +238,7 @@ export declare const getUniversesUniverseIdDatastoresDatastoreEntriesEntryVersio
|
|
|
238
238
|
scope?: string | null | undefined;
|
|
239
239
|
entryKey?: string | null | undefined;
|
|
240
240
|
sortOrder?: string | null | undefined;
|
|
241
|
-
}, void, undefined>;
|
|
241
|
+
}, void, undefined, undefined>;
|
|
242
242
|
/**
|
|
243
243
|
* **Get Entry Version** · `BETA`
|
|
244
244
|
*
|
|
@@ -282,4 +282,4 @@ export declare const getUniversesUniverseIdDatastoresDatastoreEntriesEntryVersio
|
|
|
282
282
|
scope?: string | null | undefined;
|
|
283
283
|
entryKey?: string | null | undefined;
|
|
284
284
|
versionId?: string | null | undefined;
|
|
285
|
-
}, Record<string, never>, undefined>;
|
|
285
|
+
}, Record<string, never>, undefined, undefined>;
|
|
@@ -33,7 +33,7 @@ export declare const postDeveloperProductsV2UniversesUniverseIdDeveloperProducts
|
|
|
33
33
|
price?: number | null | undefined;
|
|
34
34
|
imageFile?: File | null | undefined;
|
|
35
35
|
isRegionalPricingEnabled?: boolean | null | undefined;
|
|
36
|
-
}>;
|
|
36
|
+
}, undefined>;
|
|
37
37
|
/**
|
|
38
38
|
* `BETA`
|
|
39
39
|
*
|
|
@@ -58,7 +58,7 @@ export declare const patchDeveloperProductsV2UniversesUniverseIdDeveloperProduct
|
|
|
58
58
|
imageFile?: File | null | undefined;
|
|
59
59
|
isRegionalPricingEnabled?: boolean | null | undefined;
|
|
60
60
|
storePageEnabled?: boolean | null | undefined;
|
|
61
|
-
}>;
|
|
61
|
+
}, undefined>;
|
|
62
62
|
/**
|
|
63
63
|
* `BETA`
|
|
64
64
|
*
|
|
@@ -88,7 +88,7 @@ export declare const getDeveloperProductsV2UniversesUniverseIdDeveloperProductsP
|
|
|
88
88
|
isImmutable: boolean;
|
|
89
89
|
createdTimestamp: string;
|
|
90
90
|
updatedTimestamp: string;
|
|
91
|
-
}, undefined>;
|
|
91
|
+
}, undefined, undefined>;
|
|
92
92
|
/**
|
|
93
93
|
* `BETA`
|
|
94
94
|
*
|
|
@@ -123,4 +123,4 @@ export declare const getDeveloperProductsV2UniversesUniverseIdDeveloperProductsC
|
|
|
123
123
|
updatedTimestamp: string;
|
|
124
124
|
}[];
|
|
125
125
|
nextPageToken: string | null;
|
|
126
|
-
}, undefined>;
|
|
126
|
+
}, undefined, undefined>;
|
|
@@ -30,7 +30,7 @@ export declare const postGamePassesV1UniversesUniverseIdGamePasses: import("../.
|
|
|
30
30
|
isForSale?: boolean | null | undefined;
|
|
31
31
|
price?: number | null | undefined;
|
|
32
32
|
isRegionalPricingEnabled?: boolean | null | undefined;
|
|
33
|
-
}>;
|
|
33
|
+
}, undefined>;
|
|
34
34
|
/**
|
|
35
35
|
* `BETA`
|
|
36
36
|
*
|
|
@@ -54,7 +54,7 @@ export declare const patchGamePassesV1UniversesUniverseIdGamePassesGamePassId: i
|
|
|
54
54
|
isForSale?: boolean | null | undefined;
|
|
55
55
|
price?: number | null | undefined;
|
|
56
56
|
isRegionalPricingEnabled?: boolean | null | undefined;
|
|
57
|
-
}>;
|
|
57
|
+
}, undefined>;
|
|
58
58
|
/**
|
|
59
59
|
* `BETA`
|
|
60
60
|
*
|
|
@@ -81,7 +81,7 @@ export declare const getGamePassesV1UniversesUniverseIdGamePassesGamePassIdCreat
|
|
|
81
81
|
defaultPriceInRobux: number | null;
|
|
82
82
|
enabledFeatures: ("Invalid" | "PriceOptimization" | "UserFixedPrice" | "RegionalPricing")[];
|
|
83
83
|
} | null;
|
|
84
|
-
}, undefined>;
|
|
84
|
+
}, undefined, undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* `BETA`
|
|
87
87
|
*
|
|
@@ -113,4 +113,4 @@ export declare const getGamePassesV1UniversesUniverseIdGamePassesCreator: import
|
|
|
113
113
|
} | null;
|
|
114
114
|
}[];
|
|
115
115
|
nextPageToken: string | null;
|
|
116
|
-
}, undefined>;
|
|
116
|
+
}, undefined, undefined>;
|
|
@@ -23,7 +23,7 @@ export declare const postOpenEvalApiV1Eval: import("../..").EndpointGeneric<{},
|
|
|
23
23
|
model_version?: string | null | undefined;
|
|
24
24
|
api_key?: string | null | undefined;
|
|
25
25
|
} | undefined;
|
|
26
|
-
}>;
|
|
26
|
+
}, undefined>;
|
|
27
27
|
/**
|
|
28
28
|
* `BETA`
|
|
29
29
|
*
|
|
@@ -64,4 +64,4 @@ export declare const getOpenEvalApiV1EvalRecordsJobId: import("../..").EndpointG
|
|
|
64
64
|
fullLogs?: string | null | undefined;
|
|
65
65
|
evalSucceeded?: string | null | undefined;
|
|
66
66
|
createUtc?: string | null | undefined;
|
|
67
|
-
}, undefined>;
|
|
67
|
+
}, undefined, undefined>;
|
|
@@ -37,7 +37,7 @@ export declare const postCloudV2UniversesUniverseIdSecrets: import("../..").Endp
|
|
|
37
37
|
domain: string | null;
|
|
38
38
|
create_time: string | null;
|
|
39
39
|
update_time: string | null;
|
|
40
|
-
}>;
|
|
40
|
+
}, undefined>;
|
|
41
41
|
/**
|
|
42
42
|
* `BETA`
|
|
43
43
|
*
|
|
@@ -69,7 +69,7 @@ export declare const getCloudV2UniversesUniverseIdSecrets: import("../..").Endpo
|
|
|
69
69
|
}[] | null;
|
|
70
70
|
nextPageCursor: string | null;
|
|
71
71
|
previousPageCursor: string | null;
|
|
72
|
-
}, undefined>;
|
|
72
|
+
}, undefined, undefined>;
|
|
73
73
|
/**
|
|
74
74
|
* `BETA`
|
|
75
75
|
*
|
|
@@ -113,7 +113,7 @@ export declare const patchCloudV2UniversesUniverseIdSecretsSecretId: import("../
|
|
|
113
113
|
domain?: string | null | undefined;
|
|
114
114
|
create_time?: string | null | undefined;
|
|
115
115
|
update_time?: string | null | undefined;
|
|
116
|
-
}>;
|
|
116
|
+
}, undefined>;
|
|
117
117
|
/**
|
|
118
118
|
* `BETA`
|
|
119
119
|
*
|
|
@@ -133,7 +133,7 @@ This operation is irreversible. Make sure you no longer need the secret before d
|
|
|
133
133
|
export declare const deleteCloudV2UniversesUniverseIdSecretsSecretId: import("../..").EndpointGeneric<{
|
|
134
134
|
universeId: number;
|
|
135
135
|
secretId: string;
|
|
136
|
-
}, void, undefined>;
|
|
136
|
+
}, void, undefined, undefined>;
|
|
137
137
|
/**
|
|
138
138
|
* `BETA`
|
|
139
139
|
*
|
|
@@ -165,4 +165,4 @@ export declare const getCloudV2UniversesUniverseIdSecretsPublicKey: import("../.
|
|
|
165
165
|
domain: string | null;
|
|
166
166
|
create_time: string | null;
|
|
167
167
|
update_time: string | null;
|
|
168
|
-
}, undefined>;
|
|
168
|
+
}, undefined, undefined>;
|
|
@@ -115,7 +115,7 @@ export declare const getToolboxServiceV2AssetsSearch: import("../..").EndpointGe
|
|
|
115
115
|
}[] | null;
|
|
116
116
|
totalResults: number;
|
|
117
117
|
filteredKeyword: string | null;
|
|
118
|
-
} | null, undefined>;
|
|
118
|
+
} | null, undefined, undefined>;
|
|
119
119
|
/**
|
|
120
120
|
* `BETA`
|
|
121
121
|
*
|
|
@@ -174,4 +174,4 @@ export declare const getToolboxServiceV2AssetsId: import("../..").EndpointGeneri
|
|
|
174
174
|
updateTime: string | null;
|
|
175
175
|
categoryPath: string | null;
|
|
176
176
|
} | null;
|
|
177
|
-
} | null, undefined>;
|
|
177
|
+
} | null, undefined, undefined>;
|