rozod 6.7.0 → 6.7.1
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/lib/endpoints/accountinformationv1.d.ts +50 -87
- package/lib/endpoints/accountinformationv1.js +46 -90
- package/lib/endpoints/assetdeliveryv1.d.ts +1 -0
- package/lib/endpoints/assetdeliveryv1.js +1 -0
- package/lib/endpoints/assetdeliveryv2.d.ts +1 -0
- package/lib/endpoints/assetdeliveryv2.js +1 -0
- package/lib/endpoints/authv1.d.ts +64 -1
- package/lib/endpoints/authv1.js +67 -3
- package/lib/endpoints/authv2.d.ts +21 -0
- package/lib/endpoints/authv2.js +22 -1
- package/lib/endpoints/avatarv1.d.ts +9 -6
- package/lib/endpoints/avatarv1.js +9 -6
- package/lib/endpoints/avatarv2.d.ts +11 -5
- package/lib/endpoints/avatarv2.js +11 -5
- package/lib/endpoints/avatarv3.d.ts +16 -7
- package/lib/endpoints/avatarv3.js +16 -7
- package/lib/endpoints/catalogv1.d.ts +23 -2
- package/lib/endpoints/catalogv1.js +19 -2
- package/lib/endpoints/catalogv2.d.ts +242 -6
- package/lib/endpoints/catalogv2.js +235 -7
- package/lib/endpoints/chatv2.d.ts +778 -778
- package/lib/endpoints/clientsettingsv2.d.ts +6 -0
- package/lib/endpoints/clientsettingsv2.js +6 -0
- package/lib/endpoints/contactsv1.d.ts +18 -22
- package/lib/endpoints/contactsv1.js +14 -22
- package/lib/endpoints/developv1.d.ts +33 -1
- package/lib/endpoints/developv1.js +9 -3
- package/lib/endpoints/developv2.d.ts +29 -2
- package/lib/endpoints/developv2.js +13 -4
- package/lib/endpoints/gameinternationalizationv1.d.ts +59 -0
- package/lib/endpoints/gameinternationalizationv1.js +57 -1
- package/lib/endpoints/gamejoinv1.d.ts +458 -458
- package/lib/endpoints/gamesv1.d.ts +77 -0
- package/lib/endpoints/gamesv1.js +68 -97
- package/lib/endpoints/gamesv2.d.ts +1 -0
- package/lib/endpoints/gamesv2.js +1 -0
- package/lib/endpoints/groupsv1.d.ts +7 -3
- package/lib/endpoints/groupsv1.js +7 -3
- package/lib/endpoints/groupsv2.d.ts +1 -0
- package/lib/endpoints/groupsv2.js +1 -0
- package/lib/endpoints/inventoryv2.d.ts +68 -0
- package/lib/endpoints/inventoryv2.js +66 -1
- package/lib/endpoints/localev1.d.ts +27 -0
- package/lib/endpoints/localev1.js +28 -1
- package/lib/endpoints/metricsv1.d.ts +88 -88
- package/lib/endpoints/publishv1.d.ts +3 -6
- package/lib/endpoints/publishv1.js +3 -6
- package/lib/opencloud/v2/cloud.d.ts +27 -5
- package/lib/opencloud/v2/cloud.js +43 -6
- package/package.json +108 -108
|
@@ -233,6 +233,33 @@ export const getLocalesSupportedLocalesForCreators = endpoint({
|
|
|
233
233
|
Roblox_Web_WebAPI_Models_ApiArrayResponse_Roblox_Locale_Api_SupportedLocaleLocus_,
|
|
234
234
|
errors: [],
|
|
235
235
|
});
|
|
236
|
+
/**
|
|
237
|
+
* @api GET https://locale.roblox.com/v1/locales/supported-locales-for-feature
|
|
238
|
+
* @summary Get list of Supported locales for a specific feature.
|
|
239
|
+
* @param featureName
|
|
240
|
+
*/
|
|
241
|
+
export const getLocalesSupportedLocalesForFeature = endpoint({
|
|
242
|
+
method: "GET",
|
|
243
|
+
path: "/v1/locales/supported-locales-for-feature",
|
|
244
|
+
baseUrl: "https://locale.roblox.com",
|
|
245
|
+
requestFormat: "json",
|
|
246
|
+
serializationMethod: {
|
|
247
|
+
featureName: {
|
|
248
|
+
style: "form",
|
|
249
|
+
explode: true,
|
|
250
|
+
},
|
|
251
|
+
},
|
|
252
|
+
parameters: {
|
|
253
|
+
featureName: z.string(),
|
|
254
|
+
},
|
|
255
|
+
response: Roblox_Locale_Api_SupportedLocalesResponse,
|
|
256
|
+
errors: [
|
|
257
|
+
{
|
|
258
|
+
status: 500,
|
|
259
|
+
description: `Internal server error`,
|
|
260
|
+
},
|
|
261
|
+
],
|
|
262
|
+
});
|
|
236
263
|
/**
|
|
237
264
|
* @api GET https://locale.roblox.com/v1/locales/user-locale
|
|
238
265
|
* @summary Gets user locale. If user is absent returns, locale from http request object.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getLocalesUserLocalizationLocusSupportedLocales = exports.getLocalesUserLocale = exports.getLocalesSupportedLocalesForCreators = exports.getLocalesSupportedLocales = exports.postLocalesSetUserSupportedLocale = exports.postLocalesSetShowRobloxTranslations = exports.getLocales = exports.getCountryRegions = void 0;
|
|
3
|
+
exports.getLocalesUserLocalizationLocusSupportedLocales = exports.getLocalesUserLocale = exports.getLocalesSupportedLocalesForFeature = exports.getLocalesSupportedLocalesForCreators = exports.getLocalesSupportedLocales = exports.postLocalesSetUserSupportedLocale = exports.postLocalesSetShowRobloxTranslations = exports.getLocales = exports.getCountryRegions = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const __1 = require("..");
|
|
6
6
|
const Roblox_Locale_Api_CountryRegion = zod_1.z.object({
|
|
@@ -233,6 +233,33 @@ exports.getLocalesSupportedLocalesForCreators = (0, __1.endpoint)({
|
|
|
233
233
|
response: Roblox_Web_WebAPI_Models_ApiArrayResponse_Roblox_Locale_Api_SupportedLocaleLocus_,
|
|
234
234
|
errors: [],
|
|
235
235
|
});
|
|
236
|
+
/**
|
|
237
|
+
* @api GET https://locale.roblox.com/v1/locales/supported-locales-for-feature
|
|
238
|
+
* @summary Get list of Supported locales for a specific feature.
|
|
239
|
+
* @param featureName
|
|
240
|
+
*/
|
|
241
|
+
exports.getLocalesSupportedLocalesForFeature = (0, __1.endpoint)({
|
|
242
|
+
method: 'GET',
|
|
243
|
+
path: '/v1/locales/supported-locales-for-feature',
|
|
244
|
+
baseUrl: 'https://locale.roblox.com',
|
|
245
|
+
requestFormat: 'json',
|
|
246
|
+
serializationMethod: {
|
|
247
|
+
featureName: {
|
|
248
|
+
style: 'form',
|
|
249
|
+
explode: true,
|
|
250
|
+
},
|
|
251
|
+
},
|
|
252
|
+
parameters: {
|
|
253
|
+
featureName: zod_1.z.string(),
|
|
254
|
+
},
|
|
255
|
+
response: Roblox_Locale_Api_SupportedLocalesResponse,
|
|
256
|
+
errors: [
|
|
257
|
+
{
|
|
258
|
+
status: 500,
|
|
259
|
+
description: `Internal server error`,
|
|
260
|
+
},
|
|
261
|
+
],
|
|
262
|
+
});
|
|
236
263
|
/**
|
|
237
264
|
* @api GET https://locale.roblox.com/v1/locales/user-locale
|
|
238
265
|
* @summary Gets user locale. If user is absent returns, locale from http request object.
|
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { endpoint } from '..';
|
|
3
|
-
|
|
4
|
-
const Roblox_Metrics_Api_ThumbnailLoadMetadataResponse = z.object({
|
|
5
|
-
logRatio: z.number(),
|
|
6
|
-
});
|
|
7
|
-
const Roblox_Metrics_Api_RecordBundleLoadRequest = z.object({
|
|
8
|
-
bundleUrl: z.string().url(),
|
|
9
|
-
bundleName: z.string(),
|
|
10
|
-
loadTimeInMilliseconds: z.number().int(),
|
|
11
|
-
cdnProviderName: z.string(),
|
|
12
|
-
loadState: z.union([z.literal(0), z.literal(1), z.literal(2), z.literal(3)]),
|
|
13
|
-
bundleContentType: z.union([z.literal(0), z.literal(1), z.literal(2)]),
|
|
14
|
-
});
|
|
15
|
-
const Roblox_Web_WebAPI_ApiEmptyResponseModel = z.object({});
|
|
16
|
-
const Roblox_Metrics_Api_RecordThumbnailLoadRequest = z.object({
|
|
17
|
-
duration: z.number().int(),
|
|
18
|
-
loadState: z.union([z.literal(0), z.literal(1), z.literal(2)]),
|
|
19
|
-
thumbnailType: z.string(),
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* @api POST https://metrics.roblox.com/v1/bundle-metrics/report
|
|
24
|
-
* @summary Records bundle load successes.
|
|
25
|
-
* @param body The Roblox.Metrics.Api.RecordBundleLoadRequest.
|
|
26
|
-
* @description Xsrf protection disabled because this endpoint is supposed to be used
|
|
27
|
-
to record static content. It's possible XSRF can't be retried if:
|
|
28
|
-
- The XSRF retry JavaScript fails to load (or fails to execute)
|
|
29
|
-
- CSS fails to load before JavaScript finishes loading.
|
|
30
|
-
*/
|
|
31
|
-
export const postBundleMetricsReport = endpoint({
|
|
32
|
-
method: 'POST',
|
|
33
|
-
path: '/v1/bundle-metrics/report',
|
|
34
|
-
baseUrl: 'https://metrics.roblox.com',
|
|
35
|
-
requestFormat: 'json',
|
|
36
|
-
serializationMethod: {
|
|
37
|
-
body: {},
|
|
38
|
-
},
|
|
39
|
-
parameters: {},
|
|
40
|
-
body: Roblox_Metrics_Api_RecordBundleLoadRequest,
|
|
41
|
-
response: z.object({}),
|
|
42
|
-
errors: [
|
|
43
|
-
{
|
|
44
|
-
status: 400,
|
|
45
|
-
description: `1: The bundle url is invalid.`,
|
|
46
|
-
},
|
|
47
|
-
],
|
|
48
|
-
});
|
|
49
|
-
/**
|
|
50
|
-
* @api POST https://metrics.roblox.com/v1/thumbnails/load
|
|
51
|
-
* @summary Records the time it takes for a thumbnail to get loaded in the UI.
|
|
52
|
-
* @param body The Roblox.Metrics.Api.RecordThumbnailLoadRequest.
|
|
53
|
-
*/
|
|
54
|
-
export const postThumbnailsLoad = endpoint({
|
|
55
|
-
method: 'POST',
|
|
56
|
-
path: '/v1/thumbnails/load',
|
|
57
|
-
baseUrl: 'https://metrics.roblox.com',
|
|
58
|
-
requestFormat: 'json',
|
|
59
|
-
serializationMethod: {
|
|
60
|
-
body: {},
|
|
61
|
-
},
|
|
62
|
-
parameters: {},
|
|
63
|
-
body: Roblox_Metrics_Api_RecordThumbnailLoadRequest,
|
|
64
|
-
response: z.object({}),
|
|
65
|
-
errors: [
|
|
66
|
-
{
|
|
67
|
-
status: 400,
|
|
68
|
-
description: `2: A required parameter is missing from the request`,
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
status: 403,
|
|
72
|
-
description: `0: Token Validation Failed`,
|
|
73
|
-
},
|
|
74
|
-
],
|
|
75
|
-
});
|
|
76
|
-
/**
|
|
77
|
-
* @api GET https://metrics.roblox.com/v1/thumbnails/metadata
|
|
78
|
-
* @summary Get metadata related to logging thumbnail load metrics.
|
|
79
|
-
e.g. ThumbnailLoadLoggingRatio
|
|
80
|
-
*/
|
|
81
|
-
export const getThumbnailsMetadata = endpoint({
|
|
82
|
-
method: 'GET',
|
|
83
|
-
path: '/v1/thumbnails/metadata',
|
|
84
|
-
baseUrl: 'https://metrics.roblox.com',
|
|
85
|
-
requestFormat: 'json',
|
|
86
|
-
response: z.object({ logRatio: z.number() }),
|
|
87
|
-
errors: [],
|
|
88
|
-
});
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { endpoint } from '..';
|
|
3
|
+
|
|
4
|
+
const Roblox_Metrics_Api_ThumbnailLoadMetadataResponse = z.object({
|
|
5
|
+
logRatio: z.number(),
|
|
6
|
+
});
|
|
7
|
+
const Roblox_Metrics_Api_RecordBundleLoadRequest = z.object({
|
|
8
|
+
bundleUrl: z.string().url(),
|
|
9
|
+
bundleName: z.string(),
|
|
10
|
+
loadTimeInMilliseconds: z.number().int(),
|
|
11
|
+
cdnProviderName: z.string(),
|
|
12
|
+
loadState: z.union([z.literal(0), z.literal(1), z.literal(2), z.literal(3)]),
|
|
13
|
+
bundleContentType: z.union([z.literal(0), z.literal(1), z.literal(2)]),
|
|
14
|
+
});
|
|
15
|
+
const Roblox_Web_WebAPI_ApiEmptyResponseModel = z.object({});
|
|
16
|
+
const Roblox_Metrics_Api_RecordThumbnailLoadRequest = z.object({
|
|
17
|
+
duration: z.number().int(),
|
|
18
|
+
loadState: z.union([z.literal(0), z.literal(1), z.literal(2)]),
|
|
19
|
+
thumbnailType: z.string(),
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* @api POST https://metrics.roblox.com/v1/bundle-metrics/report
|
|
24
|
+
* @summary Records bundle load successes.
|
|
25
|
+
* @param body The Roblox.Metrics.Api.RecordBundleLoadRequest.
|
|
26
|
+
* @description Xsrf protection disabled because this endpoint is supposed to be used
|
|
27
|
+
to record static content. It's possible XSRF can't be retried if:
|
|
28
|
+
- The XSRF retry JavaScript fails to load (or fails to execute)
|
|
29
|
+
- CSS fails to load before JavaScript finishes loading.
|
|
30
|
+
*/
|
|
31
|
+
export const postBundleMetricsReport = endpoint({
|
|
32
|
+
method: 'POST',
|
|
33
|
+
path: '/v1/bundle-metrics/report',
|
|
34
|
+
baseUrl: 'https://metrics.roblox.com',
|
|
35
|
+
requestFormat: 'json',
|
|
36
|
+
serializationMethod: {
|
|
37
|
+
body: {},
|
|
38
|
+
},
|
|
39
|
+
parameters: {},
|
|
40
|
+
body: Roblox_Metrics_Api_RecordBundleLoadRequest,
|
|
41
|
+
response: z.object({}),
|
|
42
|
+
errors: [
|
|
43
|
+
{
|
|
44
|
+
status: 400,
|
|
45
|
+
description: `1: The bundle url is invalid.`,
|
|
46
|
+
},
|
|
47
|
+
],
|
|
48
|
+
});
|
|
49
|
+
/**
|
|
50
|
+
* @api POST https://metrics.roblox.com/v1/thumbnails/load
|
|
51
|
+
* @summary Records the time it takes for a thumbnail to get loaded in the UI.
|
|
52
|
+
* @param body The Roblox.Metrics.Api.RecordThumbnailLoadRequest.
|
|
53
|
+
*/
|
|
54
|
+
export const postThumbnailsLoad = endpoint({
|
|
55
|
+
method: 'POST',
|
|
56
|
+
path: '/v1/thumbnails/load',
|
|
57
|
+
baseUrl: 'https://metrics.roblox.com',
|
|
58
|
+
requestFormat: 'json',
|
|
59
|
+
serializationMethod: {
|
|
60
|
+
body: {},
|
|
61
|
+
},
|
|
62
|
+
parameters: {},
|
|
63
|
+
body: Roblox_Metrics_Api_RecordThumbnailLoadRequest,
|
|
64
|
+
response: z.object({}),
|
|
65
|
+
errors: [
|
|
66
|
+
{
|
|
67
|
+
status: 400,
|
|
68
|
+
description: `2: A required parameter is missing from the request`,
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
status: 403,
|
|
72
|
+
description: `0: Token Validation Failed`,
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
});
|
|
76
|
+
/**
|
|
77
|
+
* @api GET https://metrics.roblox.com/v1/thumbnails/metadata
|
|
78
|
+
* @summary Get metadata related to logging thumbnail load metrics.
|
|
79
|
+
e.g. ThumbnailLoadLoggingRatio
|
|
80
|
+
*/
|
|
81
|
+
export const getThumbnailsMetadata = endpoint({
|
|
82
|
+
method: 'GET',
|
|
83
|
+
path: '/v1/thumbnails/metadata',
|
|
84
|
+
baseUrl: 'https://metrics.roblox.com',
|
|
85
|
+
requestFormat: 'json',
|
|
86
|
+
response: z.object({ logRatio: z.number() }),
|
|
87
|
+
errors: [],
|
|
88
|
+
});
|
|
@@ -114,6 +114,7 @@ export const postAudio = endpoint({
|
|
|
114
114
|
description: `3: The request did not contain a file to be uploaded.
|
|
115
115
|
4: The file in the request is too large.
|
|
116
116
|
5: The duration of the audio file is too long.
|
|
117
|
+
7: Failed to parse the file.
|
|
117
118
|
8: The file type is not supported.
|
|
118
119
|
9: The file is corrupted
|
|
119
120
|
11: Missing permissions to spend group funds.
|
|
@@ -138,8 +139,7 @@ export const postAudio = endpoint({
|
|
|
138
139
|
},
|
|
139
140
|
{
|
|
140
141
|
status: 500,
|
|
141
|
-
description: `
|
|
142
|
-
19: Asset creation was unavailable. Please try again.`,
|
|
142
|
+
description: `19: Asset creation was unavailable. Please try again.`,
|
|
143
143
|
},
|
|
144
144
|
],
|
|
145
145
|
});
|
|
@@ -165,6 +165,7 @@ export const postAudioVerify = endpoint({
|
|
|
165
165
|
description: `3: The request did not contain a file to be uploaded.
|
|
166
166
|
4: The file in the request is too large.
|
|
167
167
|
5: The duration of the audio file is too long.
|
|
168
|
+
7: Failed to parse the file.
|
|
168
169
|
8: The file type is not supported.
|
|
169
170
|
9: The file is corrupted
|
|
170
171
|
18: Too many requests. Try again later.`,
|
|
@@ -178,10 +179,6 @@ export const postAudioVerify = endpoint({
|
|
|
178
179
|
status: 403,
|
|
179
180
|
description: `0: Token Validation Failed`,
|
|
180
181
|
},
|
|
181
|
-
{
|
|
182
|
-
status: 500,
|
|
183
|
-
description: `7: Failed to parse the file.`,
|
|
184
|
-
},
|
|
185
182
|
],
|
|
186
183
|
});
|
|
187
184
|
/**
|
|
@@ -115,6 +115,7 @@ exports.postAudio = (0, __1.endpoint)({
|
|
|
115
115
|
description: `3: The request did not contain a file to be uploaded.
|
|
116
116
|
4: The file in the request is too large.
|
|
117
117
|
5: The duration of the audio file is too long.
|
|
118
|
+
7: Failed to parse the file.
|
|
118
119
|
8: The file type is not supported.
|
|
119
120
|
9: The file is corrupted
|
|
120
121
|
11: Missing permissions to spend group funds.
|
|
@@ -139,8 +140,7 @@ exports.postAudio = (0, __1.endpoint)({
|
|
|
139
140
|
},
|
|
140
141
|
{
|
|
141
142
|
status: 500,
|
|
142
|
-
description: `
|
|
143
|
-
19: Asset creation was unavailable. Please try again.`,
|
|
143
|
+
description: `19: Asset creation was unavailable. Please try again.`,
|
|
144
144
|
},
|
|
145
145
|
],
|
|
146
146
|
});
|
|
@@ -166,6 +166,7 @@ exports.postAudioVerify = (0, __1.endpoint)({
|
|
|
166
166
|
description: `3: The request did not contain a file to be uploaded.
|
|
167
167
|
4: The file in the request is too large.
|
|
168
168
|
5: The duration of the audio file is too long.
|
|
169
|
+
7: Failed to parse the file.
|
|
169
170
|
8: The file type is not supported.
|
|
170
171
|
9: The file is corrupted
|
|
171
172
|
18: Too many requests. Try again later.`,
|
|
@@ -179,10 +180,6 @@ exports.postAudioVerify = (0, __1.endpoint)({
|
|
|
179
180
|
status: 403,
|
|
180
181
|
description: `0: Token Validation Failed`,
|
|
181
182
|
},
|
|
182
|
-
{
|
|
183
|
-
status: 500,
|
|
184
|
-
description: `7: Failed to parse the file.`,
|
|
185
|
-
},
|
|
186
183
|
],
|
|
187
184
|
});
|
|
188
185
|
/**
|
|
@@ -1842,7 +1842,7 @@ export declare const getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesSco
|
|
|
1842
1842
|
nextPageToken: string;
|
|
1843
1843
|
}, undefined>;
|
|
1844
1844
|
/**
|
|
1845
|
-
* `
|
|
1845
|
+
* `STABLE`
|
|
1846
1846
|
*
|
|
1847
1847
|
* Create a new `LuauExecutionSessionTaskBinaryInput`.
|
|
1848
1848
|
*
|
|
@@ -2591,7 +2591,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstance
|
|
|
2591
2591
|
};
|
|
2592
2592
|
}, undefined>;
|
|
2593
2593
|
/**
|
|
2594
|
-
* `
|
|
2594
|
+
* `STABLE`
|
|
2595
2595
|
*
|
|
2596
2596
|
* Creates a task but does not wait for the task to complete.
|
|
2597
2597
|
|
|
@@ -2780,7 +2780,7 @@ export declare const patchCloudV2UniversesUniverseIdPlacesPlaceIdUserRestriction
|
|
|
2780
2780
|
} | undefined;
|
|
2781
2781
|
}>;
|
|
2782
2782
|
/**
|
|
2783
|
-
* `
|
|
2783
|
+
* `STABLE`
|
|
2784
2784
|
*
|
|
2785
2785
|
* Creates a task but does not wait for the task to complete.
|
|
2786
2786
|
|
|
@@ -2842,7 +2842,7 @@ export declare const postCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionI
|
|
|
2842
2842
|
binaryOutputUri: string;
|
|
2843
2843
|
}>;
|
|
2844
2844
|
/**
|
|
2845
|
-
* `
|
|
2845
|
+
* `STABLE`
|
|
2846
2846
|
*
|
|
2847
2847
|
* Gets information about a task.
|
|
2848
2848
|
|
|
@@ -2898,7 +2898,7 @@ export declare const getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionId
|
|
|
2898
2898
|
binaryOutputUri: string;
|
|
2899
2899
|
}, undefined>;
|
|
2900
2900
|
/**
|
|
2901
|
-
* `
|
|
2901
|
+
* `STABLE`
|
|
2902
2902
|
*
|
|
2903
2903
|
* Lists log chunks generated by a `LuauExecutionSessionTask`.
|
|
2904
2904
|
|
|
@@ -3448,3 +3448,25 @@ export declare const postCloudV2UsersUserIdNotifications: import("../..").Endpoi
|
|
|
3448
3448
|
};
|
|
3449
3449
|
};
|
|
3450
3450
|
}>;
|
|
3451
|
+
export declare const postApiKeysIntrospect: import("../..").EndpointGeneric<{}, {
|
|
3452
|
+
name: string;
|
|
3453
|
+
authorizedUserId: number;
|
|
3454
|
+
scopes: {
|
|
3455
|
+
name: string;
|
|
3456
|
+
operations: string[];
|
|
3457
|
+
universeDatastores?: {
|
|
3458
|
+
universeId: string;
|
|
3459
|
+
datastoreName: string;
|
|
3460
|
+
}[] | undefined;
|
|
3461
|
+
groupIds?: string[] | undefined;
|
|
3462
|
+
userIds?: string[] | undefined;
|
|
3463
|
+
}[];
|
|
3464
|
+
enabled: boolean;
|
|
3465
|
+
expired: boolean;
|
|
3466
|
+
expirationTimeUtc: string;
|
|
3467
|
+
}, {
|
|
3468
|
+
apiKey: string;
|
|
3469
|
+
}>;
|
|
3470
|
+
export declare const deleteLegacyDevelopV2TeamtestByPlaceId: import("../..").EndpointGeneric<{
|
|
3471
|
+
placeId: number;
|
|
3472
|
+
}, Record<string, never>, undefined>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.patchCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItemsItemId = exports.deleteCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItemsItemId = exports.getCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItemsItemId = exports.postCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItems = exports.getCloudV2UniversesUniverseIdMemoryStoreSortedMapsSortedMapIdItems = exports.getCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItemsRead = exports.postCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItemsDiscard = exports.postCloudV2UniversesUniverseIdMemoryStoreQueuesQueueIdItems = exports.postCloudV2UniversesUniverseIdMemoryStoreFlush = exports.postCloudV2UniversesUniverseIdLuauExecutionSessionTaskBinaryInputs = exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryIdListRevisions = exports.postCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryIdIncrement = exports.patchCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryId = exports.deleteCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryId = exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEntryId = exports.postCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntries = exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntries = exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryIdListRevisions = exports.postCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryIdIncrement = exports.patchCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryId = exports.deleteCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryId = exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntriesEntryId = exports.postCloudV2UniversesUniverseIdDataStoresDataStoreIdEntries = exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdEntries = exports.postCloudV2UniversesUniverseIdDataStoresDataStoreIdUndelete = exports.deleteCloudV2UniversesUniverseIdDataStoresDataStoreId = exports.postCloudV2UniversesUniverseIdDataStoresSnapshot = exports.getCloudV2UniversesUniverseIdDataStores = exports.postCloudV2UniversesUniverseIdTranslateText = exports.postCloudV2UniversesUniverseIdRestartServers = exports.postCloudV2UniversesUniverseIdPublishMessage = exports.postCloudV2UniversesUniverseIdGenerateSpeechAsset = exports.patchCloudV2UniversesUniverseId = exports.getCloudV2UniversesUniverseId = exports.getCloudV2GroupsGroupIdRolesRoleId = exports.getCloudV2GroupsGroupIdRoles = exports.postCloudV2GroupsGroupIdMembershipsMembershipIdUnassignRole = exports.postCloudV2GroupsGroupIdMembershipsMembershipIdAssignRole = exports.patchCloudV2GroupsGroupIdMembershipsMembershipId = exports.getCloudV2GroupsGroupIdMemberships = exports.postCloudV2GroupsGroupIdJoinRequestsJoinRequestIdDecline = exports.postCloudV2GroupsGroupIdJoinRequestsJoinRequestIdAccept = exports.getCloudV2GroupsGroupIdJoinRequests = exports.getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPostsPostIdComments = exports.getCloudV2GroupsGroupIdForumCategoriesForumCategoryIdPosts = exports.getCloudV2GroupsGroupIdForumCategories = exports.getCloudV2GroupsGroupId = exports.patchCloudV2CreatorStoreProductsCreatorStoreProductId = exports.getCloudV2CreatorStoreProductsCreatorStoreProductId = exports.postCloudV2CreatorStoreProducts = void 0;
|
|
4
|
-
exports.postCloudV2UsersUserIdNotifications = exports.getCloudV2UsersUserIdInventoryItems = exports.getCloudV2UsersUserIdAssetQuotas = exports.getCloudV2UsersUserIdGenerateThumbnail = exports.getCloudV2UsersUserId = exports.patchCloudV2UniversesUniverseIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdUserRestrictionsListLogs = exports.getCloudV2UniversesUniverseIdUserRestrictions = exports.getCloudV2UniversesUniverseIdSubscriptionProductsSubscriptionProductIdSubscriptionsSubscriptionId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutionSessionsLuauExecutionSessionIdTasksTaskIdLogs = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutionSessionsLuauExecutionSessionIdTasksTaskId = exports.postCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutionSessionTasks = exports.patchCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictions = exports.postCloudV2UniversesUniverseIdPlacesPlaceIdLuauExecutionSessionTasks = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceIdListChildren = exports.patchCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceId = exports.patchCloudV2UniversesUniverseIdPlacesPlaceId = exports.getCloudV2UniversesUniverseIdPlacesPlaceId = exports.postCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryIdIncrement = exports.patchCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryId = exports.deleteCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryId = exports.getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryId = exports.postCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntries = exports.getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntries = void 0;
|
|
4
|
+
exports.deleteLegacyDevelopV2TeamtestByPlaceId = exports.postApiKeysIntrospect = exports.postCloudV2UsersUserIdNotifications = exports.getCloudV2UsersUserIdInventoryItems = exports.getCloudV2UsersUserIdAssetQuotas = exports.getCloudV2UsersUserIdGenerateThumbnail = exports.getCloudV2UsersUserId = exports.patchCloudV2UniversesUniverseIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdUserRestrictionsListLogs = exports.getCloudV2UniversesUniverseIdUserRestrictions = exports.getCloudV2UniversesUniverseIdSubscriptionProductsSubscriptionProductIdSubscriptionsSubscriptionId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutionSessionsLuauExecutionSessionIdTasksTaskIdLogs = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutionSessionsLuauExecutionSessionIdTasksTaskId = exports.postCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutionSessionTasks = exports.patchCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictionsUserRestrictionId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictions = exports.postCloudV2UniversesUniverseIdPlacesPlaceIdLuauExecutionSessionTasks = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceIdListChildren = exports.patchCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceId = exports.getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceId = exports.patchCloudV2UniversesUniverseIdPlacesPlaceId = exports.getCloudV2UniversesUniverseIdPlacesPlaceId = exports.postCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryIdIncrement = exports.patchCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryId = exports.deleteCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryId = exports.getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntriesEntryId = exports.postCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntries = exports.getCloudV2UniversesUniverseIdOrderedDataStoresOrderedDataStoreIdScopesScopeIdEntries = void 0;
|
|
5
5
|
const zod_1 = require("zod");
|
|
6
6
|
const __1 = require("../..");
|
|
7
7
|
const Decimal = zod_1.z.object({
|
|
@@ -2387,7 +2387,7 @@ exports.getCloudV2UniversesUniverseIdDataStoresDataStoreIdScopesScopeIdEntriesEn
|
|
|
2387
2387
|
errors: [],
|
|
2388
2388
|
});
|
|
2389
2389
|
/**
|
|
2390
|
-
* `
|
|
2390
|
+
* `STABLE`
|
|
2391
2391
|
*
|
|
2392
2392
|
* Create a new `LuauExecutionSessionTaskBinaryInput`.
|
|
2393
2393
|
*
|
|
@@ -3221,7 +3221,7 @@ exports.getCloudV2UniversesUniverseIdPlacesPlaceIdInstancesInstanceIdListChildre
|
|
|
3221
3221
|
errors: [],
|
|
3222
3222
|
});
|
|
3223
3223
|
/**
|
|
3224
|
-
* `
|
|
3224
|
+
* `STABLE`
|
|
3225
3225
|
*
|
|
3226
3226
|
* Creates a task but does not wait for the task to complete.
|
|
3227
3227
|
|
|
@@ -3382,7 +3382,7 @@ exports.patchCloudV2UniversesUniverseIdPlacesPlaceIdUserRestrictionsUserRestrict
|
|
|
3382
3382
|
errors: [],
|
|
3383
3383
|
});
|
|
3384
3384
|
/**
|
|
3385
|
-
* `
|
|
3385
|
+
* `STABLE`
|
|
3386
3386
|
*
|
|
3387
3387
|
* Creates a task but does not wait for the task to complete.
|
|
3388
3388
|
|
|
@@ -3424,7 +3424,7 @@ exports.postCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecutio
|
|
|
3424
3424
|
errors: [],
|
|
3425
3425
|
});
|
|
3426
3426
|
/**
|
|
3427
|
-
* `
|
|
3427
|
+
* `STABLE`
|
|
3428
3428
|
*
|
|
3429
3429
|
* Gets information about a task.
|
|
3430
3430
|
|
|
@@ -3479,7 +3479,7 @@ exports.getCloudV2UniversesUniverseIdPlacesPlaceIdVersionsVersionIdLuauExecution
|
|
|
3479
3479
|
errors: [],
|
|
3480
3480
|
});
|
|
3481
3481
|
/**
|
|
3482
|
-
* `
|
|
3482
|
+
* `STABLE`
|
|
3483
3483
|
*
|
|
3484
3484
|
* Lists log chunks generated by a `LuauExecutionSessionTask`.
|
|
3485
3485
|
|
|
@@ -3980,3 +3980,40 @@ exports.postCloudV2UsersUserIdNotifications = (0, __1.endpoint)({
|
|
|
3980
3980
|
response: UserNotification,
|
|
3981
3981
|
errors: [],
|
|
3982
3982
|
});
|
|
3983
|
+
// Patched endpoints missing from Roblox API docs
|
|
3984
|
+
const Patch_ApiKeyIntrospectScope = zod_1.z.object({
|
|
3985
|
+
name: zod_1.z.string(),
|
|
3986
|
+
operations: zod_1.z.array(zod_1.z.string()),
|
|
3987
|
+
universeDatastores: zod_1.z.array(zod_1.z.object({ universeId: zod_1.z.string(), datastoreName: zod_1.z.string() })).optional(),
|
|
3988
|
+
groupIds: zod_1.z.array(zod_1.z.string()).optional(),
|
|
3989
|
+
userIds: zod_1.z.array(zod_1.z.string()).optional(),
|
|
3990
|
+
});
|
|
3991
|
+
const Patch_ApiKeyIntrospectResponse = zod_1.z.object({
|
|
3992
|
+
name: zod_1.z.string(),
|
|
3993
|
+
authorizedUserId: zod_1.z.number(),
|
|
3994
|
+
scopes: zod_1.z.array(Patch_ApiKeyIntrospectScope),
|
|
3995
|
+
enabled: zod_1.z.boolean(),
|
|
3996
|
+
expired: zod_1.z.boolean(),
|
|
3997
|
+
expirationTimeUtc: zod_1.z.string(),
|
|
3998
|
+
});
|
|
3999
|
+
exports.postApiKeysIntrospect = (0, __1.endpoint)({
|
|
4000
|
+
method: 'POST',
|
|
4001
|
+
path: '/api-keys/v1/introspect',
|
|
4002
|
+
baseUrl: 'https://apis.roblox.com',
|
|
4003
|
+
requestFormat: 'json',
|
|
4004
|
+
serializationMethod: { body: {} },
|
|
4005
|
+
parameters: {},
|
|
4006
|
+
body: zod_1.z.object({ apiKey: zod_1.z.string() }),
|
|
4007
|
+
response: Patch_ApiKeyIntrospectResponse,
|
|
4008
|
+
errors: [],
|
|
4009
|
+
});
|
|
4010
|
+
exports.deleteLegacyDevelopV2TeamtestByPlaceId = (0, __1.endpoint)({
|
|
4011
|
+
method: 'DELETE',
|
|
4012
|
+
path: '/legacy-develop/v2/teamtest/:placeId',
|
|
4013
|
+
baseUrl: 'https://apis.roblox.com',
|
|
4014
|
+
requestFormat: 'json',
|
|
4015
|
+
serializationMethod: { placeId: { style: 'simple' } },
|
|
4016
|
+
parameters: { placeId: zod_1.z.number().int() },
|
|
4017
|
+
response: zod_1.z.object({}),
|
|
4018
|
+
errors: [],
|
|
4019
|
+
});
|