@jacobhumston/roblox-openapi-ts 1.0.26 → 1.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +634 -191
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,442 @@
|
|
|
1
1
|
export interface paths {
|
|
2
|
+
"/analytics-query-api/v1/universes/{universeId}/dimension-values": {
|
|
3
|
+
parameters: {
|
|
4
|
+
query?: never;
|
|
5
|
+
header?: never;
|
|
6
|
+
path?: never;
|
|
7
|
+
cookie?: never;
|
|
8
|
+
};
|
|
9
|
+
get?: never;
|
|
10
|
+
put?: never;
|
|
11
|
+
/**
|
|
12
|
+
* Queries dimension values for a universe.
|
|
13
|
+
* @description See the <a href="https://create.roblox.com/docs/cloud/guides/analytics">Analytics guide</a> for more information.
|
|
14
|
+
*/
|
|
15
|
+
post: {
|
|
16
|
+
parameters: {
|
|
17
|
+
query?: never;
|
|
18
|
+
header?: never;
|
|
19
|
+
path: {
|
|
20
|
+
/** @description The universe ID to query dimension values for. */
|
|
21
|
+
universeId: number;
|
|
22
|
+
};
|
|
23
|
+
cookie?: never;
|
|
24
|
+
};
|
|
25
|
+
/** @description The dimension values request. */
|
|
26
|
+
requestBody: {
|
|
27
|
+
content: {
|
|
28
|
+
"application/json": components["schemas"]["DimensionValuesRequest"];
|
|
29
|
+
"text/json": components["schemas"]["DimensionValuesRequest"];
|
|
30
|
+
"application/*+json": components["schemas"]["DimensionValuesRequest"];
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
responses: {
|
|
34
|
+
/** @description OK */
|
|
35
|
+
200: {
|
|
36
|
+
headers: {
|
|
37
|
+
[name: string]: unknown;
|
|
38
|
+
};
|
|
39
|
+
content: {
|
|
40
|
+
"application/json": components["schemas"]["DimensionValuesOperationResult"];
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
/** @description Accepted */
|
|
44
|
+
202: {
|
|
45
|
+
headers: {
|
|
46
|
+
[name: string]: unknown;
|
|
47
|
+
};
|
|
48
|
+
content: {
|
|
49
|
+
"application/json": components["schemas"]["OperationPending"];
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
/** @description Bad Request */
|
|
53
|
+
400: {
|
|
54
|
+
headers: {
|
|
55
|
+
[name: string]: unknown;
|
|
56
|
+
};
|
|
57
|
+
content: {
|
|
58
|
+
"application/json": components["schemas"]["OperationError"];
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
/** @description Forbidden */
|
|
62
|
+
403: {
|
|
63
|
+
headers: {
|
|
64
|
+
[name: string]: unknown;
|
|
65
|
+
};
|
|
66
|
+
content: {
|
|
67
|
+
"application/json": components["schemas"]["OperationError"];
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
/** @description Too Many Requests */
|
|
71
|
+
429: {
|
|
72
|
+
headers: {
|
|
73
|
+
[name: string]: unknown;
|
|
74
|
+
};
|
|
75
|
+
content: {
|
|
76
|
+
"application/json": components["schemas"]["OperationError"];
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
/** @description Internal Server Error */
|
|
80
|
+
500: {
|
|
81
|
+
headers: {
|
|
82
|
+
[name: string]: unknown;
|
|
83
|
+
};
|
|
84
|
+
content: {
|
|
85
|
+
"application/json": components["schemas"]["OperationError"];
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
/** @description Service Unavailable */
|
|
89
|
+
503: {
|
|
90
|
+
headers: {
|
|
91
|
+
[name: string]: unknown;
|
|
92
|
+
};
|
|
93
|
+
content: {
|
|
94
|
+
"application/json": components["schemas"]["OperationError"];
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
/** @description Gateway Timeout */
|
|
98
|
+
504: {
|
|
99
|
+
headers: {
|
|
100
|
+
[name: string]: unknown;
|
|
101
|
+
};
|
|
102
|
+
content: {
|
|
103
|
+
"application/json": components["schemas"]["OperationError"];
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
delete?: never;
|
|
109
|
+
options?: never;
|
|
110
|
+
head?: never;
|
|
111
|
+
patch?: never;
|
|
112
|
+
trace?: never;
|
|
113
|
+
};
|
|
114
|
+
"/analytics-query-api/v1/universes/{universeId}/metrics": {
|
|
115
|
+
parameters: {
|
|
116
|
+
query?: never;
|
|
117
|
+
header?: never;
|
|
118
|
+
path?: never;
|
|
119
|
+
cookie?: never;
|
|
120
|
+
};
|
|
121
|
+
get?: never;
|
|
122
|
+
put?: never;
|
|
123
|
+
/**
|
|
124
|
+
* Queries time series metric data for a universe.
|
|
125
|
+
* @description See the <a href="https://create.roblox.com/docs/cloud/guides/analytics">Analytics guide</a> for more information.
|
|
126
|
+
*/
|
|
127
|
+
post: {
|
|
128
|
+
parameters: {
|
|
129
|
+
query?: never;
|
|
130
|
+
header?: never;
|
|
131
|
+
path: {
|
|
132
|
+
/** @description The universe ID to query metrics for. */
|
|
133
|
+
universeId: number;
|
|
134
|
+
};
|
|
135
|
+
cookie?: never;
|
|
136
|
+
};
|
|
137
|
+
/** @description The query request. */
|
|
138
|
+
requestBody: {
|
|
139
|
+
content: {
|
|
140
|
+
"application/json": components["schemas"]["QueryRequest"];
|
|
141
|
+
"text/json": components["schemas"]["QueryRequest"];
|
|
142
|
+
"application/*+json": components["schemas"]["QueryRequest"];
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
responses: {
|
|
146
|
+
/** @description OK */
|
|
147
|
+
200: {
|
|
148
|
+
headers: {
|
|
149
|
+
[name: string]: unknown;
|
|
150
|
+
};
|
|
151
|
+
content: {
|
|
152
|
+
"application/json": components["schemas"]["QueryOperationResult"];
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
/** @description Accepted */
|
|
156
|
+
202: {
|
|
157
|
+
headers: {
|
|
158
|
+
[name: string]: unknown;
|
|
159
|
+
};
|
|
160
|
+
content: {
|
|
161
|
+
"application/json": components["schemas"]["OperationPending"];
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
/** @description Bad Request */
|
|
165
|
+
400: {
|
|
166
|
+
headers: {
|
|
167
|
+
[name: string]: unknown;
|
|
168
|
+
};
|
|
169
|
+
content: {
|
|
170
|
+
"application/json": components["schemas"]["OperationError"];
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
/** @description Forbidden */
|
|
174
|
+
403: {
|
|
175
|
+
headers: {
|
|
176
|
+
[name: string]: unknown;
|
|
177
|
+
};
|
|
178
|
+
content: {
|
|
179
|
+
"application/json": components["schemas"]["OperationError"];
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
/** @description Too Many Requests */
|
|
183
|
+
429: {
|
|
184
|
+
headers: {
|
|
185
|
+
[name: string]: unknown;
|
|
186
|
+
};
|
|
187
|
+
content: {
|
|
188
|
+
"application/json": components["schemas"]["OperationError"];
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
/** @description Internal Server Error */
|
|
192
|
+
500: {
|
|
193
|
+
headers: {
|
|
194
|
+
[name: string]: unknown;
|
|
195
|
+
};
|
|
196
|
+
content: {
|
|
197
|
+
"application/json": components["schemas"]["OperationError"];
|
|
198
|
+
};
|
|
199
|
+
};
|
|
200
|
+
/** @description Service Unavailable */
|
|
201
|
+
503: {
|
|
202
|
+
headers: {
|
|
203
|
+
[name: string]: unknown;
|
|
204
|
+
};
|
|
205
|
+
content: {
|
|
206
|
+
"application/json": components["schemas"]["OperationError"];
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
/** @description Gateway Timeout */
|
|
210
|
+
504: {
|
|
211
|
+
headers: {
|
|
212
|
+
[name: string]: unknown;
|
|
213
|
+
};
|
|
214
|
+
content: {
|
|
215
|
+
"application/json": components["schemas"]["OperationError"];
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
delete?: never;
|
|
221
|
+
options?: never;
|
|
222
|
+
head?: never;
|
|
223
|
+
patch?: never;
|
|
224
|
+
trace?: never;
|
|
225
|
+
};
|
|
226
|
+
"/analytics-query-api/v1/universes/{universeId}/operations/dimension-values/{operationId}": {
|
|
227
|
+
parameters: {
|
|
228
|
+
query?: never;
|
|
229
|
+
header?: never;
|
|
230
|
+
path?: never;
|
|
231
|
+
cookie?: never;
|
|
232
|
+
};
|
|
233
|
+
/**
|
|
234
|
+
* Retrieves the result of a long-running dimension values operation.
|
|
235
|
+
* @description See the <a href="https://create.roblox.com/docs/cloud/guides/analytics">Analytics guide</a> for more information.
|
|
236
|
+
*/
|
|
237
|
+
get: {
|
|
238
|
+
parameters: {
|
|
239
|
+
query?: never;
|
|
240
|
+
header?: never;
|
|
241
|
+
path: {
|
|
242
|
+
/** @description The universe ID the operation belongs to. */
|
|
243
|
+
universeId: number;
|
|
244
|
+
/** @description The operation id returned from a prior dimension values request. */
|
|
245
|
+
operationId: string;
|
|
246
|
+
};
|
|
247
|
+
cookie?: never;
|
|
248
|
+
};
|
|
249
|
+
requestBody?: never;
|
|
250
|
+
responses: {
|
|
251
|
+
/** @description OK */
|
|
252
|
+
200: {
|
|
253
|
+
headers: {
|
|
254
|
+
[name: string]: unknown;
|
|
255
|
+
};
|
|
256
|
+
content: {
|
|
257
|
+
"application/json": components["schemas"]["DimensionValuesOperationResult"];
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
/** @description Accepted */
|
|
261
|
+
202: {
|
|
262
|
+
headers: {
|
|
263
|
+
[name: string]: unknown;
|
|
264
|
+
};
|
|
265
|
+
content: {
|
|
266
|
+
"application/json": components["schemas"]["OperationPending"];
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
/** @description Bad Request */
|
|
270
|
+
400: {
|
|
271
|
+
headers: {
|
|
272
|
+
[name: string]: unknown;
|
|
273
|
+
};
|
|
274
|
+
content: {
|
|
275
|
+
"application/json": components["schemas"]["OperationError"];
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
/** @description Not Found */
|
|
279
|
+
404: {
|
|
280
|
+
headers: {
|
|
281
|
+
[name: string]: unknown;
|
|
282
|
+
};
|
|
283
|
+
content: {
|
|
284
|
+
"application/json": components["schemas"]["OperationError"];
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
/** @description Too Many Requests */
|
|
288
|
+
429: {
|
|
289
|
+
headers: {
|
|
290
|
+
[name: string]: unknown;
|
|
291
|
+
};
|
|
292
|
+
content: {
|
|
293
|
+
"application/json": components["schemas"]["OperationError"];
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
/** @description Internal Server Error */
|
|
297
|
+
500: {
|
|
298
|
+
headers: {
|
|
299
|
+
[name: string]: unknown;
|
|
300
|
+
};
|
|
301
|
+
content: {
|
|
302
|
+
"application/json": components["schemas"]["OperationError"];
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
/** @description Service Unavailable */
|
|
306
|
+
503: {
|
|
307
|
+
headers: {
|
|
308
|
+
[name: string]: unknown;
|
|
309
|
+
};
|
|
310
|
+
content: {
|
|
311
|
+
"application/json": components["schemas"]["OperationError"];
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
/** @description Gateway Timeout */
|
|
315
|
+
504: {
|
|
316
|
+
headers: {
|
|
317
|
+
[name: string]: unknown;
|
|
318
|
+
};
|
|
319
|
+
content: {
|
|
320
|
+
"application/json": components["schemas"]["OperationError"];
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
put?: never;
|
|
326
|
+
post?: never;
|
|
327
|
+
delete?: never;
|
|
328
|
+
options?: never;
|
|
329
|
+
head?: never;
|
|
330
|
+
patch?: never;
|
|
331
|
+
trace?: never;
|
|
332
|
+
};
|
|
333
|
+
"/analytics-query-api/v1/universes/{universeId}/operations/metrics/{operationId}": {
|
|
334
|
+
parameters: {
|
|
335
|
+
query?: never;
|
|
336
|
+
header?: never;
|
|
337
|
+
path?: never;
|
|
338
|
+
cookie?: never;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Retrieves the result of a long-running metrics query operation.
|
|
342
|
+
* @description See the <a href="https://create.roblox.com/docs/cloud/guides/analytics">Analytics guide</a> for more information.
|
|
343
|
+
*/
|
|
344
|
+
get: {
|
|
345
|
+
parameters: {
|
|
346
|
+
query?: never;
|
|
347
|
+
header?: never;
|
|
348
|
+
path: {
|
|
349
|
+
/** @description The universe ID the operation belongs to. */
|
|
350
|
+
universeId: number;
|
|
351
|
+
/** @description The operation id returned from a prior query request. */
|
|
352
|
+
operationId: string;
|
|
353
|
+
};
|
|
354
|
+
cookie?: never;
|
|
355
|
+
};
|
|
356
|
+
requestBody?: never;
|
|
357
|
+
responses: {
|
|
358
|
+
/** @description OK */
|
|
359
|
+
200: {
|
|
360
|
+
headers: {
|
|
361
|
+
[name: string]: unknown;
|
|
362
|
+
};
|
|
363
|
+
content: {
|
|
364
|
+
"application/json": components["schemas"]["QueryOperationResult"];
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
/** @description Accepted */
|
|
368
|
+
202: {
|
|
369
|
+
headers: {
|
|
370
|
+
[name: string]: unknown;
|
|
371
|
+
};
|
|
372
|
+
content: {
|
|
373
|
+
"application/json": components["schemas"]["OperationPending"];
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
/** @description Bad Request */
|
|
377
|
+
400: {
|
|
378
|
+
headers: {
|
|
379
|
+
[name: string]: unknown;
|
|
380
|
+
};
|
|
381
|
+
content: {
|
|
382
|
+
"application/json": components["schemas"]["OperationError"];
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
/** @description Not Found */
|
|
386
|
+
404: {
|
|
387
|
+
headers: {
|
|
388
|
+
[name: string]: unknown;
|
|
389
|
+
};
|
|
390
|
+
content: {
|
|
391
|
+
"application/json": components["schemas"]["OperationError"];
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
/** @description Too Many Requests */
|
|
395
|
+
429: {
|
|
396
|
+
headers: {
|
|
397
|
+
[name: string]: unknown;
|
|
398
|
+
};
|
|
399
|
+
content: {
|
|
400
|
+
"application/json": components["schemas"]["OperationError"];
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
/** @description Internal Server Error */
|
|
404
|
+
500: {
|
|
405
|
+
headers: {
|
|
406
|
+
[name: string]: unknown;
|
|
407
|
+
};
|
|
408
|
+
content: {
|
|
409
|
+
"application/json": components["schemas"]["OperationError"];
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
/** @description Service Unavailable */
|
|
413
|
+
503: {
|
|
414
|
+
headers: {
|
|
415
|
+
[name: string]: unknown;
|
|
416
|
+
};
|
|
417
|
+
content: {
|
|
418
|
+
"application/json": components["schemas"]["OperationError"];
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
/** @description Gateway Timeout */
|
|
422
|
+
504: {
|
|
423
|
+
headers: {
|
|
424
|
+
[name: string]: unknown;
|
|
425
|
+
};
|
|
426
|
+
content: {
|
|
427
|
+
"application/json": components["schemas"]["OperationError"];
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
put?: never;
|
|
433
|
+
post?: never;
|
|
434
|
+
delete?: never;
|
|
435
|
+
options?: never;
|
|
436
|
+
head?: never;
|
|
437
|
+
patch?: never;
|
|
438
|
+
trace?: never;
|
|
439
|
+
};
|
|
2
440
|
"/asset-delivery-api/v1/assetId/{assetId}": {
|
|
3
441
|
parameters: {
|
|
4
442
|
query?: never;
|
|
@@ -1595,7 +2033,7 @@ export interface paths {
|
|
|
1595
2033
|
};
|
|
1596
2034
|
/**
|
|
1597
2035
|
* Get Memory Store Flush Operation
|
|
1598
|
-
* @description Retrieves the status of the operation to [flush the memory stores of a universe](https://create.roblox.com/docs/cloud/reference/features/
|
|
2036
|
+
* @description Retrieves the status of the operation to [flush the memory stores of a universe](https://create.roblox.com/docs/cloud/reference/features/storage#Cloud_FlushMemoryStore).
|
|
1599
2037
|
*/
|
|
1600
2038
|
get: operations["Cloud_GetMemoryStoreFlushOperation"];
|
|
1601
2039
|
put?: never;
|
|
@@ -1898,7 +2336,7 @@ export interface paths {
|
|
|
1898
2336
|
};
|
|
1899
2337
|
/**
|
|
1900
2338
|
* Get Update Instance Operation
|
|
1901
|
-
* @description Retrieves the status of the operation to [update an instance](https://create.roblox.com/docs/cloud/reference/features/
|
|
2339
|
+
* @description Retrieves the status of the operation to [update an instance](https://create.roblox.com/docs/cloud/reference/features/universes#Cloud_UpdateInstance).
|
|
1902
2340
|
*/
|
|
1903
2341
|
get: operations["Cloud_GetUpdateInstanceOperation"];
|
|
1904
2342
|
put?: never;
|
|
@@ -23960,67 +24398,6 @@ export interface paths {
|
|
|
23960
24398
|
patch?: never;
|
|
23961
24399
|
trace?: never;
|
|
23962
24400
|
};
|
|
23963
|
-
"/v1/groups/{groupId}/wall/posts": {
|
|
23964
|
-
parameters: {
|
|
23965
|
-
query?: never;
|
|
23966
|
-
header?: never;
|
|
23967
|
-
path?: never;
|
|
23968
|
-
cookie?: never;
|
|
23969
|
-
};
|
|
23970
|
-
/** Gets a list of group wall posts. */
|
|
23971
|
-
get: {
|
|
23972
|
-
parameters: {
|
|
23973
|
-
query?: {
|
|
23974
|
-
/** @description The number of results per request. */
|
|
23975
|
-
limit?: 10 | 25 | 50 | 100;
|
|
23976
|
-
/** @description The paging cursor for the previous or next page. */
|
|
23977
|
-
cursor?: string;
|
|
23978
|
-
/** @description Sorted by group wall post Id */
|
|
23979
|
-
sortOrder?: "Asc" | "Desc";
|
|
23980
|
-
};
|
|
23981
|
-
header?: never;
|
|
23982
|
-
path: {
|
|
23983
|
-
/** @description The group id. */
|
|
23984
|
-
groupId: number;
|
|
23985
|
-
};
|
|
23986
|
-
cookie?: never;
|
|
23987
|
-
};
|
|
23988
|
-
requestBody?: never;
|
|
23989
|
-
responses: {
|
|
23990
|
-
/** @description OK */
|
|
23991
|
-
200: {
|
|
23992
|
-
headers: {
|
|
23993
|
-
[name: string]: unknown;
|
|
23994
|
-
};
|
|
23995
|
-
content: {
|
|
23996
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.Models.Response.GroupWallPostModel_"];
|
|
23997
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.Models.Response.GroupWallPostModel_"];
|
|
23998
|
-
};
|
|
23999
|
-
};
|
|
24000
|
-
/** @description 1: The group is invalid or does not exist. */
|
|
24001
|
-
400: {
|
|
24002
|
-
headers: {
|
|
24003
|
-
[name: string]: unknown;
|
|
24004
|
-
};
|
|
24005
|
-
content?: never;
|
|
24006
|
-
};
|
|
24007
|
-
/** @description 2: You do not have permission to access this group wall. */
|
|
24008
|
-
403: {
|
|
24009
|
-
headers: {
|
|
24010
|
-
[name: string]: unknown;
|
|
24011
|
-
};
|
|
24012
|
-
content?: never;
|
|
24013
|
-
};
|
|
24014
|
-
};
|
|
24015
|
-
};
|
|
24016
|
-
put?: never;
|
|
24017
|
-
post?: never;
|
|
24018
|
-
delete?: never;
|
|
24019
|
-
options?: never;
|
|
24020
|
-
head?: never;
|
|
24021
|
-
patch?: never;
|
|
24022
|
-
trace?: never;
|
|
24023
|
-
};
|
|
24024
24401
|
"/v1/installer-cdns": {
|
|
24025
24402
|
parameters: {
|
|
24026
24403
|
query?: never;
|
|
@@ -33072,7 +33449,7 @@ export interface paths {
|
|
|
33072
33449
|
parameters: {
|
|
33073
33450
|
query?: {
|
|
33074
33451
|
/** @description The asset type for the collectibles you're trying to get. */
|
|
33075
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92;
|
|
33452
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94;
|
|
33076
33453
|
/** @description The number of results per request. */
|
|
33077
33454
|
limit?: 10 | 25 | 50 | 100;
|
|
33078
33455
|
/** @description The paging cursor for the previous or next page. */
|
|
@@ -36241,7 +36618,7 @@ export interface paths {
|
|
|
36241
36618
|
query?: {
|
|
36242
36619
|
includeLocked?: boolean;
|
|
36243
36620
|
includeNotificationPreferences?: boolean;
|
|
36244
|
-
discoveryType?: 0 | 1;
|
|
36621
|
+
discoveryType?: 0 | 1 | 2;
|
|
36245
36622
|
};
|
|
36246
36623
|
header?: never;
|
|
36247
36624
|
path: {
|
|
@@ -37553,75 +37930,6 @@ export interface paths {
|
|
|
37553
37930
|
patch?: never;
|
|
37554
37931
|
trace?: never;
|
|
37555
37932
|
};
|
|
37556
|
-
"/v2/assets/{assetId}/bundles": {
|
|
37557
|
-
parameters: {
|
|
37558
|
-
query?: never;
|
|
37559
|
-
header?: never;
|
|
37560
|
-
path?: never;
|
|
37561
|
-
cookie?: never;
|
|
37562
|
-
};
|
|
37563
|
-
/** Lists bundles that contain the given asset (hydrated search-detail shape for marketplace). */
|
|
37564
|
-
get: {
|
|
37565
|
-
parameters: {
|
|
37566
|
-
query?: {
|
|
37567
|
-
/** @description The number of results per request. */
|
|
37568
|
-
limit?: 10 | 25 | 50 | 100;
|
|
37569
|
-
/** @description The paging cursor for the previous or next page. */
|
|
37570
|
-
cursor?: string;
|
|
37571
|
-
/** @description The order the results are sorted in. */
|
|
37572
|
-
sortOrder?: "Asc" | "Desc";
|
|
37573
|
-
};
|
|
37574
|
-
header: {
|
|
37575
|
-
/** @description Roblox-Place-Id header. */
|
|
37576
|
-
"Roblox-Place-Id": number;
|
|
37577
|
-
/** @description Roblox-Game-Id header. */
|
|
37578
|
-
"Roblox-Game-Id": string;
|
|
37579
|
-
};
|
|
37580
|
-
path: {
|
|
37581
|
-
/** @description Asset id. */
|
|
37582
|
-
assetId: number;
|
|
37583
|
-
};
|
|
37584
|
-
cookie?: never;
|
|
37585
|
-
};
|
|
37586
|
-
requestBody?: never;
|
|
37587
|
-
responses: {
|
|
37588
|
-
/** @description OK */
|
|
37589
|
-
200: {
|
|
37590
|
-
headers: {
|
|
37591
|
-
[name: string]: unknown;
|
|
37592
|
-
};
|
|
37593
|
-
content: {
|
|
37594
|
-
"application/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.CatalogSearchDetailedResponseItem_"];
|
|
37595
|
-
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Catalog.Api.CatalogSearchDetailedResponseItem_"];
|
|
37596
|
-
};
|
|
37597
|
-
};
|
|
37598
|
-
/**
|
|
37599
|
-
* @description 1: Invalid assetId
|
|
37600
|
-
* 4: Invalid Cursor.
|
|
37601
|
-
*/
|
|
37602
|
-
400: {
|
|
37603
|
-
headers: {
|
|
37604
|
-
[name: string]: unknown;
|
|
37605
|
-
};
|
|
37606
|
-
content?: never;
|
|
37607
|
-
};
|
|
37608
|
-
/** @description 7: User is unauthorized. */
|
|
37609
|
-
403: {
|
|
37610
|
-
headers: {
|
|
37611
|
-
[name: string]: unknown;
|
|
37612
|
-
};
|
|
37613
|
-
content?: never;
|
|
37614
|
-
};
|
|
37615
|
-
};
|
|
37616
|
-
};
|
|
37617
|
-
put?: never;
|
|
37618
|
-
post?: never;
|
|
37619
|
-
delete?: never;
|
|
37620
|
-
options?: never;
|
|
37621
|
-
head?: never;
|
|
37622
|
-
patch?: never;
|
|
37623
|
-
trace?: never;
|
|
37624
|
-
};
|
|
37625
37933
|
"/v2/assets/{assetId}/owners": {
|
|
37626
37934
|
parameters: {
|
|
37627
37935
|
query?: never;
|
|
@@ -39539,7 +39847,7 @@ export interface paths {
|
|
|
39539
39847
|
};
|
|
39540
39848
|
get?: never;
|
|
39541
39849
|
put?: never;
|
|
39542
|
-
post: operations["SalesReportDownload_PublishSalesReportDownloadMessage"];
|
|
39850
|
+
post: operations["TransactionRecordsApi.SalesReportDownload_PublishSalesReportDownloadMessage"];
|
|
39543
39851
|
delete?: never;
|
|
39544
39852
|
options?: never;
|
|
39545
39853
|
head?: never;
|
|
@@ -41328,7 +41636,7 @@ export interface paths {
|
|
|
41328
41636
|
query: {
|
|
41329
41637
|
includeLocked: boolean;
|
|
41330
41638
|
includeNotificationPreferences: boolean;
|
|
41331
|
-
discoveryType: 0 | 1;
|
|
41639
|
+
discoveryType: 0 | 1 | 2;
|
|
41332
41640
|
};
|
|
41333
41641
|
header?: never;
|
|
41334
41642
|
path: {
|
|
@@ -41381,7 +41689,7 @@ export interface paths {
|
|
|
41381
41689
|
parameters: {
|
|
41382
41690
|
query: {
|
|
41383
41691
|
/** @description The asset types to query. */
|
|
41384
|
-
assetTypes: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92)[];
|
|
41692
|
+
assetTypes: (1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94)[];
|
|
41385
41693
|
/** @description Filters moderated assets when enabled. */
|
|
41386
41694
|
filterDisapprovedAssets?: boolean;
|
|
41387
41695
|
/** @description Filters moderated assets and assets pending review when enabled. */
|
|
@@ -42298,6 +42606,15 @@ export interface components {
|
|
|
42298
42606
|
/** @description The list of grants that had errors. */
|
|
42299
42607
|
errors?: components["schemas"]["GrantPermissionError"][] | null;
|
|
42300
42608
|
};
|
|
42609
|
+
/** @description A breakdown dimension value in a query result. */
|
|
42610
|
+
BreakdownValue: {
|
|
42611
|
+
/** @description The dimension name. */
|
|
42612
|
+
dimension: string;
|
|
42613
|
+
/** @description The dimension value. */
|
|
42614
|
+
value: string;
|
|
42615
|
+
/** @description A human-readable display value when the dimension is a unique ID. */
|
|
42616
|
+
displayValue?: string | null;
|
|
42617
|
+
};
|
|
42301
42618
|
/** @description Request model for bulk deleting saves */
|
|
42302
42619
|
BulkDeleteSavesRequest: {
|
|
42303
42620
|
/** @description A list of saves being deleted */
|
|
@@ -42805,6 +43122,27 @@ export interface components {
|
|
|
42805
43122
|
* @enum {string}
|
|
42806
43123
|
*/
|
|
42807
43124
|
CustomSignalType: "Invalid" | "PlayerCategorical" | "ServerCategorical" | "ServerNumerical" | "PlayerNumerical";
|
|
43125
|
+
/** @description A single data point in a metric query result. */
|
|
43126
|
+
DataPoint: {
|
|
43127
|
+
/**
|
|
43128
|
+
* Format: date-time
|
|
43129
|
+
* @description The timestamp of the data point in UTC.
|
|
43130
|
+
*/
|
|
43131
|
+
time: string;
|
|
43132
|
+
/**
|
|
43133
|
+
* Format: double
|
|
43134
|
+
* @description The numeric value of the data point.
|
|
43135
|
+
*/
|
|
43136
|
+
value: number;
|
|
43137
|
+
/** @description String values associated with the data point, when applicable. */
|
|
43138
|
+
stringValues?: string[] | null;
|
|
43139
|
+
status?: components["schemas"]["DataStatus"];
|
|
43140
|
+
};
|
|
43141
|
+
/**
|
|
43142
|
+
* @description The status of a data point in a query result.
|
|
43143
|
+
* @enum {string}
|
|
43144
|
+
*/
|
|
43145
|
+
DataStatus: "Valid" | "Projected" | "NotStatisticallySignificant";
|
|
42808
43146
|
/** @description Represents a data store. */
|
|
42809
43147
|
DataStore: {
|
|
42810
43148
|
/**
|
|
@@ -43058,6 +43396,59 @@ export interface components {
|
|
|
43058
43396
|
/** @description Whether managed pricing is enabled for the developer product. */
|
|
43059
43397
|
isManagedPricingEnabled: boolean;
|
|
43060
43398
|
};
|
|
43399
|
+
/** @description A single dimension value returned by a dimension values query. */
|
|
43400
|
+
DimensionValue: {
|
|
43401
|
+
/** @description The dimension value. */
|
|
43402
|
+
value: string;
|
|
43403
|
+
/** @description A human-readable display value when the dimension is a unique ID. */
|
|
43404
|
+
displayValue?: string | null;
|
|
43405
|
+
};
|
|
43406
|
+
/** @description The values for a single dimension returned by a dimension values query. */
|
|
43407
|
+
DimensionValues: {
|
|
43408
|
+
/** @description The dimension name. */
|
|
43409
|
+
dimension: string;
|
|
43410
|
+
/** @description The values for the dimension. */
|
|
43411
|
+
values?: components["schemas"]["DimensionValue"][];
|
|
43412
|
+
};
|
|
43413
|
+
/** @description A completed long-running dimension values operation with results. */
|
|
43414
|
+
DimensionValuesOperationResult: {
|
|
43415
|
+
/** @description The server-assigned resource path. */
|
|
43416
|
+
path?: string | null;
|
|
43417
|
+
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
43418
|
+
done?: boolean;
|
|
43419
|
+
response?: components["schemas"]["DimensionValuesResponse"];
|
|
43420
|
+
metadata?: components["schemas"]["OperationMetadata"];
|
|
43421
|
+
};
|
|
43422
|
+
/** @description A request to query dimension values. */
|
|
43423
|
+
DimensionValuesRequest: {
|
|
43424
|
+
/** @description The metric that provides context for resolving dimension namespaces. */
|
|
43425
|
+
metric: string;
|
|
43426
|
+
/** @description The dimensions to retrieve values for. Each entry is a single dimension name. */
|
|
43427
|
+
dimensions?: string[];
|
|
43428
|
+
/**
|
|
43429
|
+
* Format: date-time
|
|
43430
|
+
* @description The inclusive start of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
43431
|
+
*/
|
|
43432
|
+
startTime: string;
|
|
43433
|
+
/**
|
|
43434
|
+
* Format: date-time
|
|
43435
|
+
* @description The exclusive end of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
43436
|
+
*/
|
|
43437
|
+
endTime: string;
|
|
43438
|
+
/** @description Filters to apply to the query. */
|
|
43439
|
+
filter?: components["schemas"]["QueryFilter"][];
|
|
43440
|
+
granularity?: components["schemas"]["MetricGranularity"];
|
|
43441
|
+
/**
|
|
43442
|
+
* Format: int32
|
|
43443
|
+
* @description The maximum number of values to return per dimension.
|
|
43444
|
+
*/
|
|
43445
|
+
limit?: number;
|
|
43446
|
+
};
|
|
43447
|
+
/** @description The response for a dimension values query. */
|
|
43448
|
+
DimensionValuesResponse: {
|
|
43449
|
+
/** @description The dimension values returned by the query. */
|
|
43450
|
+
values?: components["schemas"]["DimensionValues"][];
|
|
43451
|
+
};
|
|
43061
43452
|
/** @description Discards read items from the front of the queue. */
|
|
43062
43453
|
DiscardMemoryStoreQueueItemsRequest: {
|
|
43063
43454
|
/**
|
|
@@ -43143,6 +43534,11 @@ export interface components {
|
|
|
43143
43534
|
/** @description The list of available values for the filter. */
|
|
43144
43535
|
values?: unknown[] | null;
|
|
43145
43536
|
};
|
|
43537
|
+
/**
|
|
43538
|
+
* @description The operation to apply to a query filter.
|
|
43539
|
+
* @enum {string}
|
|
43540
|
+
*/
|
|
43541
|
+
FilterOperation: "In" | "NotIn" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual" | "Match";
|
|
43146
43542
|
/** @description Response model for filter options endpoint. */
|
|
43147
43543
|
FilterOptionsResponse: {
|
|
43148
43544
|
/** @description A dictionary of filter field names to their metadata and available values. */
|
|
@@ -45275,6 +45671,18 @@ export interface components {
|
|
|
45275
45671
|
*/
|
|
45276
45672
|
readonly count?: number;
|
|
45277
45673
|
};
|
|
45674
|
+
/**
|
|
45675
|
+
* @description The time granularity of metric data points in a query.
|
|
45676
|
+
* @enum {string}
|
|
45677
|
+
*/
|
|
45678
|
+
MetricGranularity: "OneMinute" | "HalfHour" | "OneHour" | "OneDay" | "OneWeek" | "OneMonth" | "None";
|
|
45679
|
+
/** @description A metric value for a single breakdown series. */
|
|
45680
|
+
MetricValue: {
|
|
45681
|
+
/** @description The breakdown values for this series. */
|
|
45682
|
+
breakdowns?: components["schemas"]["BreakdownValue"][];
|
|
45683
|
+
/** @description The data points for this series. */
|
|
45684
|
+
dataPoints?: components["schemas"]["DataPoint"][];
|
|
45685
|
+
};
|
|
45278
45686
|
/** @description Mock server signal values. */
|
|
45279
45687
|
MockServerSignalValues: {
|
|
45280
45688
|
/**
|
|
@@ -45570,12 +45978,37 @@ export interface components {
|
|
|
45570
45978
|
*/
|
|
45571
45979
|
response?: components["schemas"]["GoogleProtobufAny"];
|
|
45572
45980
|
};
|
|
45981
|
+
/** @description A completed long-running operation that failed with an error. */
|
|
45982
|
+
OperationError: {
|
|
45983
|
+
/** @description The server-assigned resource path. */
|
|
45984
|
+
path?: string | null;
|
|
45985
|
+
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
45986
|
+
done?: boolean;
|
|
45987
|
+
error?: components["schemas"]["QueryError"];
|
|
45988
|
+
metadata?: components["schemas"]["OperationMetadata"];
|
|
45989
|
+
};
|
|
45573
45990
|
OperationErrorResponse: {
|
|
45574
45991
|
/** Format: int32 */
|
|
45575
45992
|
readonly code?: number;
|
|
45576
45993
|
readonly error?: string | null;
|
|
45577
45994
|
message?: string | null;
|
|
45578
45995
|
};
|
|
45996
|
+
/** @description The metadata associated with a long-running operation. */
|
|
45997
|
+
OperationMetadata: {
|
|
45998
|
+
/**
|
|
45999
|
+
* Format: date-time
|
|
46000
|
+
* @description The time the operation was created.
|
|
46001
|
+
*/
|
|
46002
|
+
createdTime?: string | null;
|
|
46003
|
+
};
|
|
46004
|
+
/** @description A long-running operation that is still in progress. */
|
|
46005
|
+
OperationPending: {
|
|
46006
|
+
/** @description The server-assigned resource path. */
|
|
46007
|
+
path?: string | null;
|
|
46008
|
+
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
46009
|
+
done?: boolean;
|
|
46010
|
+
metadata?: components["schemas"]["OperationMetadata"];
|
|
46011
|
+
};
|
|
45579
46012
|
/** @description A key-value entry in an ordered data store. */
|
|
45580
46013
|
OrderedDataStoreEntry: {
|
|
45581
46014
|
/**
|
|
@@ -46077,6 +46510,16 @@ export interface components {
|
|
|
46077
46510
|
/** @description The suggested spelling correction for the original search query. */
|
|
46078
46511
|
suggestedQuery?: string | null;
|
|
46079
46512
|
} | null;
|
|
46513
|
+
/** @description The error returned from a query request. */
|
|
46514
|
+
QueryError: {
|
|
46515
|
+
/**
|
|
46516
|
+
* Format: int32
|
|
46517
|
+
* @description The error code.
|
|
46518
|
+
*/
|
|
46519
|
+
code?: number;
|
|
46520
|
+
/** @description The message associated with the query error. */
|
|
46521
|
+
message: string;
|
|
46522
|
+
};
|
|
46080
46523
|
/** @description The facets of a query. */
|
|
46081
46524
|
QueryFacets: {
|
|
46082
46525
|
/** @description Facets that are already applied to the search. */
|
|
@@ -46084,6 +46527,53 @@ export interface components {
|
|
|
46084
46527
|
/** @description The unused and still available facets. */
|
|
46085
46528
|
availableFacets?: string[] | null;
|
|
46086
46529
|
} | null;
|
|
46530
|
+
/** @description A filter applied to a query dimension. */
|
|
46531
|
+
QueryFilter: {
|
|
46532
|
+
/** @description The dimension name to filter on. */
|
|
46533
|
+
dimension: string;
|
|
46534
|
+
/** @description The values to filter by. */
|
|
46535
|
+
values?: string[];
|
|
46536
|
+
operation: components["schemas"]["FilterOperation"];
|
|
46537
|
+
};
|
|
46538
|
+
/** @description A completed long-running query operation with results. */
|
|
46539
|
+
QueryOperationResult: {
|
|
46540
|
+
/** @description The server-assigned resource path. */
|
|
46541
|
+
path?: string | null;
|
|
46542
|
+
/** @description If false, the operation is still in progress. If true, the operation is completed. */
|
|
46543
|
+
done?: boolean;
|
|
46544
|
+
response?: components["schemas"]["QueryResponse"];
|
|
46545
|
+
metadata?: components["schemas"]["OperationMetadata"];
|
|
46546
|
+
};
|
|
46547
|
+
/** @description A request to query time series metric data. */
|
|
46548
|
+
QueryRequest: {
|
|
46549
|
+
/** @description The metric to query. */
|
|
46550
|
+
metric: string;
|
|
46551
|
+
granularity: components["schemas"]["MetricGranularity"];
|
|
46552
|
+
/**
|
|
46553
|
+
* Format: date-time
|
|
46554
|
+
* @description The inclusive start of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
46555
|
+
*/
|
|
46556
|
+
startTime: string;
|
|
46557
|
+
/**
|
|
46558
|
+
* Format: date-time
|
|
46559
|
+
* @description The exclusive end of the query time range. Any UTC offset is accepted; results are always bucketed in UTC.
|
|
46560
|
+
*/
|
|
46561
|
+
endTime: string;
|
|
46562
|
+
/** @description The dimensions to group results by. Each entry is a single dimension name. */
|
|
46563
|
+
breakdown?: string[];
|
|
46564
|
+
/** @description Filters to apply to the query. */
|
|
46565
|
+
filter?: components["schemas"]["QueryFilter"][];
|
|
46566
|
+
/**
|
|
46567
|
+
* Format: int32
|
|
46568
|
+
* @description The maximum number of breakdown series to return.
|
|
46569
|
+
*/
|
|
46570
|
+
limit?: number;
|
|
46571
|
+
};
|
|
46572
|
+
/** @description The response for a metric query. */
|
|
46573
|
+
QueryResponse: {
|
|
46574
|
+
/** @description The metric values returned by the query. */
|
|
46575
|
+
values?: components["schemas"]["MetricValue"][];
|
|
46576
|
+
};
|
|
46087
46577
|
/** @description Returns the specified number of items at the front of the queue. */
|
|
46088
46578
|
ReadMemoryStoreQueueItemsResponse: {
|
|
46089
46579
|
/**
|
|
@@ -48886,7 +49376,7 @@ export interface components {
|
|
|
48886
49376
|
* @description The Roblox.Platform.Assets.AssetType serialized if item is an asset.
|
|
48887
49377
|
* @enum {integer}
|
|
48888
49378
|
*/
|
|
48889
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92;
|
|
49379
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93;
|
|
48890
49380
|
/**
|
|
48891
49381
|
* Format: int32
|
|
48892
49382
|
* @description The Roblox.Platform.Bundles.Core.BundleType serialized if item is a bundle.
|
|
@@ -49015,7 +49505,7 @@ export interface components {
|
|
|
49015
49505
|
* @description The Roblox.Platform.Assets.AssetType serialized if item is an asset.
|
|
49016
49506
|
* @enum {integer}
|
|
49017
49507
|
*/
|
|
49018
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92;
|
|
49508
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93;
|
|
49019
49509
|
/**
|
|
49020
49510
|
* Format: int32
|
|
49021
49511
|
* @description The Roblox.Platform.Bundles.Core.BundleType serialized if item is a bundle.
|
|
@@ -51174,9 +51664,9 @@ export interface components {
|
|
|
51174
51664
|
};
|
|
51175
51665
|
/** @description A model representing data about an Roblox.Platform.Membership.IUser */
|
|
51176
51666
|
"Roblox.Groups.Api.GroupMembershipPermissionsModel": {
|
|
51177
|
-
/** @description
|
|
51667
|
+
/** @description Update a member's role */
|
|
51178
51668
|
changeRank?: boolean;
|
|
51179
|
-
/** @description
|
|
51669
|
+
/** @description Invite members to the group */
|
|
51180
51670
|
inviteMembers?: boolean;
|
|
51181
51671
|
/** @description Remove from group permission */
|
|
51182
51672
|
removeMembers?: boolean;
|
|
@@ -51277,12 +51767,6 @@ export interface components {
|
|
|
51277
51767
|
};
|
|
51278
51768
|
/** @description A model representing group posts permissions */
|
|
51279
51769
|
"Roblox.Groups.Api.GroupPostsPermissionsModel": {
|
|
51280
|
-
/** @description View wall permission */
|
|
51281
|
-
viewWall?: boolean;
|
|
51282
|
-
/** @description Post to wall permission */
|
|
51283
|
-
postToWall?: boolean;
|
|
51284
|
-
/** @description Delete from wall permission */
|
|
51285
|
-
deleteFromWall?: boolean;
|
|
51286
51770
|
/** @description View status permission */
|
|
51287
51771
|
viewStatus?: boolean;
|
|
51288
51772
|
/** @description Post to status permission */
|
|
@@ -51489,18 +51973,6 @@ export interface components {
|
|
|
51489
51973
|
* @description The maximum length of a group status
|
|
51490
51974
|
*/
|
|
51491
51975
|
groupStatusMaxLength?: number;
|
|
51492
|
-
/**
|
|
51493
|
-
* Format: int32
|
|
51494
|
-
* @description The maximum length of a group wall post
|
|
51495
|
-
*/
|
|
51496
|
-
groupPostMaxLength?: number;
|
|
51497
|
-
/** @description If set to true, group details will subscribe and respond to wall notifications. */
|
|
51498
|
-
isGroupWallNotificationsEnabled?: boolean;
|
|
51499
|
-
/**
|
|
51500
|
-
* Format: int32
|
|
51501
|
-
* @description Time in milliseconds between calls to subscribe to group wall notifications.
|
|
51502
|
-
*/
|
|
51503
|
-
groupWallNotificationsSubscribeIntervalInMilliseconds?: number;
|
|
51504
51976
|
/**
|
|
51505
51977
|
* @description If set to true, groups showcase will not show on users profiles.
|
|
51506
51978
|
*
|
|
@@ -51621,27 +52093,6 @@ export interface components {
|
|
|
51621
52093
|
*/
|
|
51622
52094
|
created?: string;
|
|
51623
52095
|
};
|
|
51624
|
-
/** @description A response model for group wall post information */
|
|
51625
|
-
"Roblox.Groups.Api.Models.Response.GroupWallPostModel": {
|
|
51626
|
-
/**
|
|
51627
|
-
* Format: int64
|
|
51628
|
-
* @description The group wall post Id.
|
|
51629
|
-
*/
|
|
51630
|
-
id?: number;
|
|
51631
|
-
poster?: components["schemas"]["Roblox.Groups.Api.Models.Response.UserModel"];
|
|
51632
|
-
/** @description The group wall post body. */
|
|
51633
|
-
body?: string;
|
|
51634
|
-
/**
|
|
51635
|
-
* Format: date-time
|
|
51636
|
-
* @description When the group wall post was posted.
|
|
51637
|
-
*/
|
|
51638
|
-
created?: string;
|
|
51639
|
-
/**
|
|
51640
|
-
* Format: date-time
|
|
51641
|
-
* @description When the group wall post was last updated.
|
|
51642
|
-
*/
|
|
51643
|
-
updated?: string;
|
|
51644
|
-
};
|
|
51645
52096
|
/** @description A model representing data about an Roblox.Platform.Membership.IUser */
|
|
51646
52097
|
"Roblox.Groups.Api.Models.Response.UserModel": {
|
|
51647
52098
|
/**
|
|
@@ -51911,14 +52362,11 @@ export interface components {
|
|
|
51911
52362
|
"Roblox.Groups.Api.UpdatePermissionsRequest": {
|
|
51912
52363
|
/** @description The permission-value pairs to be updated. */
|
|
51913
52364
|
permissions?: {
|
|
51914
|
-
DeleteFromWall?: boolean;
|
|
51915
|
-
PostToWall?: boolean;
|
|
51916
52365
|
InviteMembers?: boolean;
|
|
51917
52366
|
PostToStatus?: boolean;
|
|
51918
52367
|
RemoveMembers?: boolean;
|
|
51919
52368
|
BanMembers?: boolean;
|
|
51920
52369
|
ViewStatus?: boolean;
|
|
51921
|
-
ViewWall?: boolean;
|
|
51922
52370
|
ChangeRank?: boolean;
|
|
51923
52371
|
AdvertiseGroup?: boolean;
|
|
51924
52372
|
ManageRelationships?: boolean;
|
|
@@ -52215,10 +52663,10 @@ export interface components {
|
|
|
52215
52663
|
name?: string;
|
|
52216
52664
|
/**
|
|
52217
52665
|
* Format: int32
|
|
52218
|
-
* @description The asset type id of asset with id Roblox.Inventory.Api.V2.UserAssetItemModelV2.AssetId. ['Image' = 1, 'TShirt' = 2, 'Audio' = 3, 'Mesh' = 4, 'Lua' = 5, 'HTML' = 6, 'Text' = 7, 'Hat' = 8, 'Place' = 9, 'Model' = 10, 'Shirt' = 11, 'Pants' = 12, 'Decal' = 13, 'Avatar' = 16, 'Head' = 17, 'Face' = 18, 'Gear' = 19, 'Badge' = 21, 'GroupEmblem' = 22, 'Animation' = 24, 'Arms' = 25, 'Legs' = 26, 'Torso' = 27, 'RightArm' = 28, 'LeftArm' = 29, 'LeftLeg' = 30, 'RightLeg' = 31, 'Package' = 32, 'YouTubeVideo' = 33, 'GamePass' = 34, 'App' = 35, 'Code' = 37, 'Plugin' = 38, 'SolidModel' = 39, 'MeshPart' = 40, 'HairAccessory' = 41, 'FaceAccessory' = 42, 'NeckAccessory' = 43, 'ShoulderAccessory' = 44, 'FrontAccessory' = 45, 'BackAccessory' = 46, 'WaistAccessory' = 47, 'ClimbAnimation' = 48, 'DeathAnimation' = 49, 'FallAnimation' = 50, 'IdleAnimation' = 51, 'JumpAnimation' = 52, 'RunAnimation' = 53, 'SwimAnimation' = 54, 'WalkAnimation' = 55, 'PoseAnimation' = 56, 'LocalizationTableManifest' = 59, 'LocalizationTableTranslation' = 60, 'EmoteAnimation' = 61, 'Video' = 62, 'TexturePack' = 63, 'TShirtAccessory' = 64, 'ShirtAccessory' = 65, 'PantsAccessory' = 66, 'JacketAccessory' = 67, 'SweaterAccessory' = 68, 'ShortsAccessory' = 69, 'LeftShoeAccessory' = 70, 'RightShoeAccessory' = 71, 'DressSkirtAccessory' = 72, 'FontFamily' = 73, 'FontFace' = 74, 'MeshHiddenSurfaceRemoval' = 75, 'EyebrowAccessory' = 76, 'EyelashAccessory' = 77, 'MoodAnimation' = 78, 'DynamicHead' = 79, 'CodeSnippet' = 80, 'AdsVideo' = 81, 'OtaUpdate' = 82, 'Screenshot' = 83, 'RuntimePropertySet' = 84, 'StorePreviewVideo' = 85, 'GamePreviewVideo' = 86, 'CreatorExperienceConfig' = 87, 'FaceMakeup' = 88, 'LipMakeup' = 89, 'EyeMakeup' = 90, 'VoxelFragment' = 91, 'AvatarBackground' = 92]
|
|
52666
|
+
* @description The asset type id of asset with id Roblox.Inventory.Api.V2.UserAssetItemModelV2.AssetId. ['Image' = 1, 'TShirt' = 2, 'Audio' = 3, 'Mesh' = 4, 'Lua' = 5, 'HTML' = 6, 'Text' = 7, 'Hat' = 8, 'Place' = 9, 'Model' = 10, 'Shirt' = 11, 'Pants' = 12, 'Decal' = 13, 'Avatar' = 16, 'Head' = 17, 'Face' = 18, 'Gear' = 19, 'Badge' = 21, 'GroupEmblem' = 22, 'Animation' = 24, 'Arms' = 25, 'Legs' = 26, 'Torso' = 27, 'RightArm' = 28, 'LeftArm' = 29, 'LeftLeg' = 30, 'RightLeg' = 31, 'Package' = 32, 'YouTubeVideo' = 33, 'GamePass' = 34, 'App' = 35, 'Code' = 37, 'Plugin' = 38, 'SolidModel' = 39, 'MeshPart' = 40, 'HairAccessory' = 41, 'FaceAccessory' = 42, 'NeckAccessory' = 43, 'ShoulderAccessory' = 44, 'FrontAccessory' = 45, 'BackAccessory' = 46, 'WaistAccessory' = 47, 'ClimbAnimation' = 48, 'DeathAnimation' = 49, 'FallAnimation' = 50, 'IdleAnimation' = 51, 'JumpAnimation' = 52, 'RunAnimation' = 53, 'SwimAnimation' = 54, 'WalkAnimation' = 55, 'PoseAnimation' = 56, 'LocalizationTableManifest' = 59, 'LocalizationTableTranslation' = 60, 'EmoteAnimation' = 61, 'Video' = 62, 'TexturePack' = 63, 'TShirtAccessory' = 64, 'ShirtAccessory' = 65, 'PantsAccessory' = 66, 'JacketAccessory' = 67, 'SweaterAccessory' = 68, 'ShortsAccessory' = 69, 'LeftShoeAccessory' = 70, 'RightShoeAccessory' = 71, 'DressSkirtAccessory' = 72, 'FontFamily' = 73, 'FontFace' = 74, 'MeshHiddenSurfaceRemoval' = 75, 'EyebrowAccessory' = 76, 'EyelashAccessory' = 77, 'MoodAnimation' = 78, 'DynamicHead' = 79, 'CodeSnippet' = 80, 'AdsVideo' = 81, 'OtaUpdate' = 82, 'Screenshot' = 83, 'RuntimePropertySet' = 84, 'StorePreviewVideo' = 85, 'GamePreviewVideo' = 86, 'CreatorExperienceConfig' = 87, 'FaceMakeup' = 88, 'LipMakeup' = 89, 'EyeMakeup' = 90, 'VoxelFragment' = 91, 'AvatarBackground' = 92, 'TextDocument' = 93, 'Post' = 94]
|
|
52219
52667
|
* @enum {integer}
|
|
52220
52668
|
*/
|
|
52221
|
-
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92;
|
|
52669
|
+
assetType?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94;
|
|
52222
52670
|
/**
|
|
52223
52671
|
* Format: date-time
|
|
52224
52672
|
* @description The created date time of the user asset.
|
|
@@ -54436,11 +54884,6 @@ export interface components {
|
|
|
54436
54884
|
nextPageCursor?: string;
|
|
54437
54885
|
data?: components["schemas"]["Roblox.Groups.Api.Models.Response.GroupNameHistoryResponseItem"][];
|
|
54438
54886
|
};
|
|
54439
|
-
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.Models.Response.GroupWallPostModel_": {
|
|
54440
|
-
previousPageCursor?: string;
|
|
54441
|
-
nextPageCursor?: string;
|
|
54442
|
-
data?: components["schemas"]["Roblox.Groups.Api.Models.Response.GroupWallPostModel"][];
|
|
54443
|
-
};
|
|
54444
54887
|
"Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Groups.Api.Models.Response.UserModel_": {
|
|
54445
54888
|
previousPageCursor?: string;
|
|
54446
54889
|
nextPageCursor?: string;
|
|
@@ -63284,7 +63727,7 @@ export interface operations {
|
|
|
63284
63727
|
};
|
|
63285
63728
|
};
|
|
63286
63729
|
};
|
|
63287
|
-
SalesReportDownload_PublishSalesReportDownloadMessage: {
|
|
63730
|
+
"TransactionRecordsApi.SalesReportDownload_PublishSalesReportDownloadMessage": {
|
|
63288
63731
|
parameters: {
|
|
63289
63732
|
query?: never;
|
|
63290
63733
|
header?: never;
|