@jacobhumston/roblox-openapi-ts 1.0.11 → 1.0.13
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 +35 -993
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -9716,365 +9716,6 @@ export interface paths {
|
|
|
9716
9716
|
patch?: never;
|
|
9717
9717
|
trace?: never;
|
|
9718
9718
|
};
|
|
9719
|
-
"/secrets/v1/universes/{universeId}/secrets": {
|
|
9720
|
-
parameters: {
|
|
9721
|
-
query?: never;
|
|
9722
|
-
header?: never;
|
|
9723
|
-
path?: never;
|
|
9724
|
-
cookie?: never;
|
|
9725
|
-
};
|
|
9726
|
-
/**
|
|
9727
|
-
* List Secrets
|
|
9728
|
-
* @description Lists all secrets defined for a universe.
|
|
9729
|
-
* Secret content is not returned for security reasons - only metadata such as ID, domain, creation and update timestamps are included.
|
|
9730
|
-
*
|
|
9731
|
-
* Only the owner of the universe can list secrets. For group-owned universes, only the group owner or authorized
|
|
9732
|
-
* members can list secrets.
|
|
9733
|
-
*/
|
|
9734
|
-
get: {
|
|
9735
|
-
parameters: {
|
|
9736
|
-
query?: {
|
|
9737
|
-
/** @description Number of secrets to return per page (1-500, default 10) */
|
|
9738
|
-
limit?: number;
|
|
9739
|
-
/** @description Pagination cursor from previous response */
|
|
9740
|
-
cursor?: string;
|
|
9741
|
-
};
|
|
9742
|
-
header?: never;
|
|
9743
|
-
path: {
|
|
9744
|
-
/** @description The universe ID */
|
|
9745
|
-
universeId: number;
|
|
9746
|
-
};
|
|
9747
|
-
cookie?: never;
|
|
9748
|
-
};
|
|
9749
|
-
requestBody?: never;
|
|
9750
|
-
responses: {
|
|
9751
|
-
/** @description OK */
|
|
9752
|
-
200: {
|
|
9753
|
-
headers: {
|
|
9754
|
-
[name: string]: unknown;
|
|
9755
|
-
};
|
|
9756
|
-
content: {
|
|
9757
|
-
"application/json": components["schemas"]["SecretPaginatedList"];
|
|
9758
|
-
};
|
|
9759
|
-
};
|
|
9760
|
-
/** @description Bad Request */
|
|
9761
|
-
400: {
|
|
9762
|
-
headers: {
|
|
9763
|
-
[name: string]: unknown;
|
|
9764
|
-
};
|
|
9765
|
-
content: {
|
|
9766
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9767
|
-
};
|
|
9768
|
-
};
|
|
9769
|
-
/** @description Forbidden */
|
|
9770
|
-
403: {
|
|
9771
|
-
headers: {
|
|
9772
|
-
[name: string]: unknown;
|
|
9773
|
-
};
|
|
9774
|
-
content: {
|
|
9775
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9776
|
-
};
|
|
9777
|
-
};
|
|
9778
|
-
};
|
|
9779
|
-
};
|
|
9780
|
-
put?: never;
|
|
9781
|
-
/**
|
|
9782
|
-
* Create Secret
|
|
9783
|
-
* @description Creates a new secret. A maximum of 500 secrets per universe is allowed.
|
|
9784
|
-
*
|
|
9785
|
-
* Only the owner of the universe can create secrets. For group-owned universes, only the group owner or authorized
|
|
9786
|
-
* members can create secrets.
|
|
9787
|
-
*
|
|
9788
|
-
* To encrypt the secret:
|
|
9789
|
-
* 1. Get the public key using the Get Public Key endpoint
|
|
9790
|
-
* 2. Encrypt your secret using LibSodium sealed box
|
|
9791
|
-
* 3. Base64 encode the encrypted content
|
|
9792
|
-
*
|
|
9793
|
-
* Include the key_id from the public key response in the request.
|
|
9794
|
-
*
|
|
9795
|
-
* For an example, see the [Secrets store guide](https://create.roblox.com/docs/cloud/guides/secrets-store).
|
|
9796
|
-
*/
|
|
9797
|
-
post: {
|
|
9798
|
-
parameters: {
|
|
9799
|
-
query?: never;
|
|
9800
|
-
header?: never;
|
|
9801
|
-
path: {
|
|
9802
|
-
/** @description The universe ID */
|
|
9803
|
-
universeId: number;
|
|
9804
|
-
};
|
|
9805
|
-
cookie?: never;
|
|
9806
|
-
};
|
|
9807
|
-
/** @description The secret to create with encrypted content */
|
|
9808
|
-
requestBody?: {
|
|
9809
|
-
content: {
|
|
9810
|
-
"application/json": components["schemas"]["Secret"];
|
|
9811
|
-
};
|
|
9812
|
-
};
|
|
9813
|
-
responses: {
|
|
9814
|
-
/** @description Created */
|
|
9815
|
-
201: {
|
|
9816
|
-
headers: {
|
|
9817
|
-
[name: string]: unknown;
|
|
9818
|
-
};
|
|
9819
|
-
content: {
|
|
9820
|
-
"application/json": components["schemas"]["Secret"];
|
|
9821
|
-
};
|
|
9822
|
-
};
|
|
9823
|
-
/** @description Bad Request */
|
|
9824
|
-
400: {
|
|
9825
|
-
headers: {
|
|
9826
|
-
[name: string]: unknown;
|
|
9827
|
-
};
|
|
9828
|
-
content: {
|
|
9829
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9830
|
-
};
|
|
9831
|
-
};
|
|
9832
|
-
/** @description Forbidden */
|
|
9833
|
-
403: {
|
|
9834
|
-
headers: {
|
|
9835
|
-
[name: string]: unknown;
|
|
9836
|
-
};
|
|
9837
|
-
content: {
|
|
9838
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9839
|
-
};
|
|
9840
|
-
};
|
|
9841
|
-
/** @description Conflict */
|
|
9842
|
-
409: {
|
|
9843
|
-
headers: {
|
|
9844
|
-
[name: string]: unknown;
|
|
9845
|
-
};
|
|
9846
|
-
content: {
|
|
9847
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9848
|
-
};
|
|
9849
|
-
};
|
|
9850
|
-
};
|
|
9851
|
-
};
|
|
9852
|
-
delete?: never;
|
|
9853
|
-
options?: never;
|
|
9854
|
-
head?: never;
|
|
9855
|
-
patch?: never;
|
|
9856
|
-
trace?: never;
|
|
9857
|
-
};
|
|
9858
|
-
"/secrets/v1/universes/{universeId}/secrets/public-key": {
|
|
9859
|
-
parameters: {
|
|
9860
|
-
query?: never;
|
|
9861
|
-
header?: never;
|
|
9862
|
-
path?: never;
|
|
9863
|
-
cookie?: never;
|
|
9864
|
-
};
|
|
9865
|
-
/**
|
|
9866
|
-
* Get Public Key
|
|
9867
|
-
* @description Retrieves the public key for a universe. You need this key to encrypt secret content
|
|
9868
|
-
* before sending it to Roblox.
|
|
9869
|
-
*
|
|
9870
|
-
* Only the owner of the universe can retrieve the public key. For group-owned universes, only the group owner or
|
|
9871
|
-
* authorized members can retrieve the public key.
|
|
9872
|
-
*
|
|
9873
|
-
* The secret id field is static and always returns "public-key".
|
|
9874
|
-
*
|
|
9875
|
-
* The returned public key in the secret field is universe-specific and derived from a master key using the universe ID.
|
|
9876
|
-
* Use this key with LibSodium sealed box encryption to encrypt your secret content before
|
|
9877
|
-
* creating or updating secrets.
|
|
9878
|
-
*
|
|
9879
|
-
* Include the key_id from the public key response in the request to create or update a secret.
|
|
9880
|
-
*/
|
|
9881
|
-
get: {
|
|
9882
|
-
parameters: {
|
|
9883
|
-
query?: never;
|
|
9884
|
-
header?: never;
|
|
9885
|
-
path: {
|
|
9886
|
-
/** @description The universe ID */
|
|
9887
|
-
universeId: number;
|
|
9888
|
-
};
|
|
9889
|
-
cookie?: never;
|
|
9890
|
-
};
|
|
9891
|
-
requestBody?: never;
|
|
9892
|
-
responses: {
|
|
9893
|
-
/** @description OK */
|
|
9894
|
-
200: {
|
|
9895
|
-
headers: {
|
|
9896
|
-
[name: string]: unknown;
|
|
9897
|
-
};
|
|
9898
|
-
content: {
|
|
9899
|
-
"application/json": components["schemas"]["Secret"];
|
|
9900
|
-
};
|
|
9901
|
-
};
|
|
9902
|
-
/** @description Bad Request */
|
|
9903
|
-
400: {
|
|
9904
|
-
headers: {
|
|
9905
|
-
[name: string]: unknown;
|
|
9906
|
-
};
|
|
9907
|
-
content: {
|
|
9908
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9909
|
-
};
|
|
9910
|
-
};
|
|
9911
|
-
/** @description Forbidden */
|
|
9912
|
-
403: {
|
|
9913
|
-
headers: {
|
|
9914
|
-
[name: string]: unknown;
|
|
9915
|
-
};
|
|
9916
|
-
content: {
|
|
9917
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9918
|
-
};
|
|
9919
|
-
};
|
|
9920
|
-
};
|
|
9921
|
-
};
|
|
9922
|
-
put?: never;
|
|
9923
|
-
post?: never;
|
|
9924
|
-
delete?: never;
|
|
9925
|
-
options?: never;
|
|
9926
|
-
head?: never;
|
|
9927
|
-
patch?: never;
|
|
9928
|
-
trace?: never;
|
|
9929
|
-
};
|
|
9930
|
-
"/secrets/v1/universes/{universeId}/secrets/{secretId}": {
|
|
9931
|
-
parameters: {
|
|
9932
|
-
query?: never;
|
|
9933
|
-
header?: never;
|
|
9934
|
-
path?: never;
|
|
9935
|
-
cookie?: never;
|
|
9936
|
-
};
|
|
9937
|
-
get?: never;
|
|
9938
|
-
put?: never;
|
|
9939
|
-
post?: never;
|
|
9940
|
-
/**
|
|
9941
|
-
* Delete Secret
|
|
9942
|
-
* @description Permanently deletes a secret from a universe.
|
|
9943
|
-
*
|
|
9944
|
-
* Only the owner of the universe can delete secrets. For group-owned universes, only the group owner or authorized
|
|
9945
|
-
* members can delete secrets.
|
|
9946
|
-
*
|
|
9947
|
-
* This operation is irreversible. Make sure you no longer need the secret before deleting it.
|
|
9948
|
-
*/
|
|
9949
|
-
delete: {
|
|
9950
|
-
parameters: {
|
|
9951
|
-
query?: never;
|
|
9952
|
-
header?: never;
|
|
9953
|
-
path: {
|
|
9954
|
-
/** @description The universe ID */
|
|
9955
|
-
universeId: number;
|
|
9956
|
-
/** @description The ID of the secret to delete */
|
|
9957
|
-
secretId: string;
|
|
9958
|
-
};
|
|
9959
|
-
cookie?: never;
|
|
9960
|
-
};
|
|
9961
|
-
requestBody?: never;
|
|
9962
|
-
responses: {
|
|
9963
|
-
/** @description OK */
|
|
9964
|
-
200: {
|
|
9965
|
-
headers: {
|
|
9966
|
-
[name: string]: unknown;
|
|
9967
|
-
};
|
|
9968
|
-
content?: never;
|
|
9969
|
-
};
|
|
9970
|
-
/** @description Bad Request */
|
|
9971
|
-
400: {
|
|
9972
|
-
headers: {
|
|
9973
|
-
[name: string]: unknown;
|
|
9974
|
-
};
|
|
9975
|
-
content: {
|
|
9976
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9977
|
-
};
|
|
9978
|
-
};
|
|
9979
|
-
/** @description Forbidden */
|
|
9980
|
-
403: {
|
|
9981
|
-
headers: {
|
|
9982
|
-
[name: string]: unknown;
|
|
9983
|
-
};
|
|
9984
|
-
content: {
|
|
9985
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9986
|
-
};
|
|
9987
|
-
};
|
|
9988
|
-
/** @description Not Found */
|
|
9989
|
-
404: {
|
|
9990
|
-
headers: {
|
|
9991
|
-
[name: string]: unknown;
|
|
9992
|
-
};
|
|
9993
|
-
content: {
|
|
9994
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
9995
|
-
};
|
|
9996
|
-
};
|
|
9997
|
-
};
|
|
9998
|
-
};
|
|
9999
|
-
options?: never;
|
|
10000
|
-
head?: never;
|
|
10001
|
-
/**
|
|
10002
|
-
* Update Secret
|
|
10003
|
-
* @description Updates an existing secret.
|
|
10004
|
-
*
|
|
10005
|
-
* Only the owner of the universe can update secrets. For group-owned universes, only the group owner or authorized
|
|
10006
|
-
* members can update secrets.
|
|
10007
|
-
*
|
|
10008
|
-
* Only the secret content, key_id, and domain can be updated - the secret ID cannot be changed.
|
|
10009
|
-
*
|
|
10010
|
-
* To encrypt the updated secret:
|
|
10011
|
-
* 1. Get the current public key using the GetPublicKey endpoint
|
|
10012
|
-
* 2. Encrypt your new secret content using LibSodium sealed box
|
|
10013
|
-
* 3. Base64 encode the encrypted content
|
|
10014
|
-
*
|
|
10015
|
-
* Include the key_id from the public key response in the request.
|
|
10016
|
-
*
|
|
10017
|
-
* For an example, see the [Secrets store guide](https://create.roblox.com/docs/cloud/guides/secrets-store).
|
|
10018
|
-
*/
|
|
10019
|
-
patch: {
|
|
10020
|
-
parameters: {
|
|
10021
|
-
query?: never;
|
|
10022
|
-
header?: never;
|
|
10023
|
-
path: {
|
|
10024
|
-
/** @description The universe ID */
|
|
10025
|
-
universeId: number;
|
|
10026
|
-
/** @description The ID of the secret to update */
|
|
10027
|
-
secretId: string;
|
|
10028
|
-
};
|
|
10029
|
-
cookie?: never;
|
|
10030
|
-
};
|
|
10031
|
-
/** @description The updated secret data with encrypted content */
|
|
10032
|
-
requestBody?: {
|
|
10033
|
-
content: {
|
|
10034
|
-
"application/json": components["schemas"]["Secret"];
|
|
10035
|
-
};
|
|
10036
|
-
};
|
|
10037
|
-
responses: {
|
|
10038
|
-
/** @description OK */
|
|
10039
|
-
200: {
|
|
10040
|
-
headers: {
|
|
10041
|
-
[name: string]: unknown;
|
|
10042
|
-
};
|
|
10043
|
-
content: {
|
|
10044
|
-
"application/json": components["schemas"]["Secret"];
|
|
10045
|
-
};
|
|
10046
|
-
};
|
|
10047
|
-
/** @description Bad Request */
|
|
10048
|
-
400: {
|
|
10049
|
-
headers: {
|
|
10050
|
-
[name: string]: unknown;
|
|
10051
|
-
};
|
|
10052
|
-
content: {
|
|
10053
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
10054
|
-
};
|
|
10055
|
-
};
|
|
10056
|
-
/** @description Forbidden */
|
|
10057
|
-
403: {
|
|
10058
|
-
headers: {
|
|
10059
|
-
[name: string]: unknown;
|
|
10060
|
-
};
|
|
10061
|
-
content: {
|
|
10062
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
10063
|
-
};
|
|
10064
|
-
};
|
|
10065
|
-
/** @description Not Found */
|
|
10066
|
-
404: {
|
|
10067
|
-
headers: {
|
|
10068
|
-
[name: string]: unknown;
|
|
10069
|
-
};
|
|
10070
|
-
content: {
|
|
10071
|
-
"application/json": components["schemas"]["SecretsStoreService.ProblemDetails"];
|
|
10072
|
-
};
|
|
10073
|
-
};
|
|
10074
|
-
};
|
|
10075
|
-
};
|
|
10076
|
-
trace?: never;
|
|
10077
|
-
};
|
|
10078
9719
|
"/server-management/v1/universes/{universeId}/places/{placeId}/game-servers:filter-options": {
|
|
10079
9720
|
parameters: {
|
|
10080
9721
|
query?: never;
|
|
@@ -10144,102 +9785,6 @@ export interface paths {
|
|
|
10144
9785
|
patch?: never;
|
|
10145
9786
|
trace?: never;
|
|
10146
9787
|
};
|
|
10147
|
-
"/thumbnail-personalization-api/v1/universe/{universeId}/personalization": {
|
|
10148
|
-
parameters: {
|
|
10149
|
-
query?: never;
|
|
10150
|
-
header?: never;
|
|
10151
|
-
path?: never;
|
|
10152
|
-
cookie?: never;
|
|
10153
|
-
};
|
|
10154
|
-
get: operations["HomepageThumbnail_FindThumbnailPersonalizations"];
|
|
10155
|
-
put?: never;
|
|
10156
|
-
post?: never;
|
|
10157
|
-
delete?: never;
|
|
10158
|
-
options?: never;
|
|
10159
|
-
head?: never;
|
|
10160
|
-
patch?: never;
|
|
10161
|
-
trace?: never;
|
|
10162
|
-
};
|
|
10163
|
-
"/thumbnail-personalization-api/v1/universe/{universeId}/personalization/create": {
|
|
10164
|
-
parameters: {
|
|
10165
|
-
query?: never;
|
|
10166
|
-
header?: never;
|
|
10167
|
-
path?: never;
|
|
10168
|
-
cookie?: never;
|
|
10169
|
-
};
|
|
10170
|
-
get?: never;
|
|
10171
|
-
put?: never;
|
|
10172
|
-
post: operations["HomepageThumbnail_CreateThumbnailPersonalization"];
|
|
10173
|
-
delete?: never;
|
|
10174
|
-
options?: never;
|
|
10175
|
-
head?: never;
|
|
10176
|
-
patch?: never;
|
|
10177
|
-
trace?: never;
|
|
10178
|
-
};
|
|
10179
|
-
"/thumbnail-personalization-api/v1/universe/{universeId}/personalization/update": {
|
|
10180
|
-
parameters: {
|
|
10181
|
-
query?: never;
|
|
10182
|
-
header?: never;
|
|
10183
|
-
path?: never;
|
|
10184
|
-
cookie?: never;
|
|
10185
|
-
};
|
|
10186
|
-
get?: never;
|
|
10187
|
-
put?: never;
|
|
10188
|
-
post: operations["HomepageThumbnail_UpdateThumbnailPersonalization"];
|
|
10189
|
-
delete?: never;
|
|
10190
|
-
options?: never;
|
|
10191
|
-
head?: never;
|
|
10192
|
-
patch?: never;
|
|
10193
|
-
trace?: never;
|
|
10194
|
-
};
|
|
10195
|
-
"/thumbnail-personalization-api/v1/universe/{universeId}/thumbnails": {
|
|
10196
|
-
parameters: {
|
|
10197
|
-
query?: never;
|
|
10198
|
-
header?: never;
|
|
10199
|
-
path?: never;
|
|
10200
|
-
cookie?: never;
|
|
10201
|
-
};
|
|
10202
|
-
get: operations["HomepageThumbnail_GetHomepageThumbnails"];
|
|
10203
|
-
put?: never;
|
|
10204
|
-
post?: never;
|
|
10205
|
-
delete: operations["HomepageThumbnail_DeleteHomepageThumbnails"];
|
|
10206
|
-
options?: never;
|
|
10207
|
-
head?: never;
|
|
10208
|
-
patch?: never;
|
|
10209
|
-
trace?: never;
|
|
10210
|
-
};
|
|
10211
|
-
"/thumbnail-personalization-api/v1/universe/{universeId}/thumbnails/uploads": {
|
|
10212
|
-
parameters: {
|
|
10213
|
-
query?: never;
|
|
10214
|
-
header?: never;
|
|
10215
|
-
path?: never;
|
|
10216
|
-
cookie?: never;
|
|
10217
|
-
};
|
|
10218
|
-
get?: never;
|
|
10219
|
-
put?: never;
|
|
10220
|
-
post: operations["HomepageThumbnail_UploadHomepageThumbnails"];
|
|
10221
|
-
delete?: never;
|
|
10222
|
-
options?: never;
|
|
10223
|
-
head?: never;
|
|
10224
|
-
patch?: never;
|
|
10225
|
-
trace?: never;
|
|
10226
|
-
};
|
|
10227
|
-
"/thumbnail-personalization-api/v1/universe/{universeId}/thumbnails/uploads/status": {
|
|
10228
|
-
parameters: {
|
|
10229
|
-
query?: never;
|
|
10230
|
-
header?: never;
|
|
10231
|
-
path?: never;
|
|
10232
|
-
cookie?: never;
|
|
10233
|
-
};
|
|
10234
|
-
get: operations["HomepageThumbnail_GetHomepageThumbnailsStatus"];
|
|
10235
|
-
put?: never;
|
|
10236
|
-
post?: never;
|
|
10237
|
-
delete?: never;
|
|
10238
|
-
options?: never;
|
|
10239
|
-
head?: never;
|
|
10240
|
-
patch?: never;
|
|
10241
|
-
trace?: never;
|
|
10242
|
-
};
|
|
10243
9788
|
"/toolbox-service/v1/saves": {
|
|
10244
9789
|
parameters: {
|
|
10245
9790
|
query?: never;
|
|
@@ -14515,7 +14060,10 @@ export interface paths {
|
|
|
14515
14060
|
};
|
|
14516
14061
|
get?: never;
|
|
14517
14062
|
put?: never;
|
|
14518
|
-
/**
|
|
14063
|
+
/**
|
|
14064
|
+
* Returns details for one or more catalog items.
|
|
14065
|
+
* @description There is an item count limit per request. Exceeding this returns 400 Bad Request.
|
|
14066
|
+
*/
|
|
14519
14067
|
post: {
|
|
14520
14068
|
parameters: {
|
|
14521
14069
|
query?: never;
|
|
@@ -27738,43 +27286,6 @@ export interface paths {
|
|
|
27738
27286
|
patch?: never;
|
|
27739
27287
|
trace?: never;
|
|
27740
27288
|
};
|
|
27741
|
-
"/v1/metadata#ThumbnailsApi": {
|
|
27742
|
-
parameters: {
|
|
27743
|
-
query?: never;
|
|
27744
|
-
header?: never;
|
|
27745
|
-
path?: never;
|
|
27746
|
-
cookie?: never;
|
|
27747
|
-
};
|
|
27748
|
-
/** Return list of thumbnail meta data. */
|
|
27749
|
-
get: {
|
|
27750
|
-
parameters: {
|
|
27751
|
-
query?: never;
|
|
27752
|
-
header?: never;
|
|
27753
|
-
path?: never;
|
|
27754
|
-
cookie?: never;
|
|
27755
|
-
};
|
|
27756
|
-
requestBody?: never;
|
|
27757
|
-
responses: {
|
|
27758
|
-
/** @description OK */
|
|
27759
|
-
200: {
|
|
27760
|
-
headers: {
|
|
27761
|
-
[name: string]: unknown;
|
|
27762
|
-
};
|
|
27763
|
-
content: {
|
|
27764
|
-
"application/json": components["schemas"]["Roblox.Thumbnails.Api.Models.ThumbnailMetaDataResponse"];
|
|
27765
|
-
"text/json": components["schemas"]["Roblox.Thumbnails.Api.Models.ThumbnailMetaDataResponse"];
|
|
27766
|
-
};
|
|
27767
|
-
};
|
|
27768
|
-
};
|
|
27769
|
-
};
|
|
27770
|
-
put?: never;
|
|
27771
|
-
post?: never;
|
|
27772
|
-
delete?: never;
|
|
27773
|
-
options?: never;
|
|
27774
|
-
head?: never;
|
|
27775
|
-
patch?: never;
|
|
27776
|
-
trace?: never;
|
|
27777
|
-
};
|
|
27778
27289
|
"/v1/metadata#TwoStepVerificationApi": {
|
|
27779
27290
|
parameters: {
|
|
27780
27291
|
query?: never;
|
|
@@ -33686,6 +33197,13 @@ export interface paths {
|
|
|
33686
33197
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Badges.Api.BadgeResponse_"];
|
|
33687
33198
|
};
|
|
33688
33199
|
};
|
|
33200
|
+
/** @description 26: The pagination cursor is invalid or incompatible with the current request. */
|
|
33201
|
+
400: {
|
|
33202
|
+
headers: {
|
|
33203
|
+
[name: string]: unknown;
|
|
33204
|
+
};
|
|
33205
|
+
content?: never;
|
|
33206
|
+
};
|
|
33689
33207
|
/** @description 3: The game is invalid or does not exist. */
|
|
33690
33208
|
404: {
|
|
33691
33209
|
headers: {
|
|
@@ -37406,7 +36924,7 @@ export interface paths {
|
|
|
37406
36924
|
parameters: {
|
|
37407
36925
|
query?: {
|
|
37408
36926
|
/** @description The asset type for the collectibles you're trying to get. */
|
|
37409
|
-
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;
|
|
36927
|
+
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;
|
|
37410
36928
|
/** @description The number of results per request. */
|
|
37411
36929
|
limit?: 10 | 25 | 50 | 100;
|
|
37412
36930
|
/** @description The paging cursor for the previous or next page. */
|
|
@@ -48001,7 +47519,7 @@ export interface paths {
|
|
|
48001
47519
|
parameters: {
|
|
48002
47520
|
query: {
|
|
48003
47521
|
/** @description The asset types to query. */
|
|
48004
|
-
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)[];
|
|
47522
|
+
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)[];
|
|
48005
47523
|
/** @description Filters moderated assets when enabled. */
|
|
48006
47524
|
filterDisapprovedAssets?: boolean;
|
|
48007
47525
|
/** @description Filters moderated assets and assets pending review when enabled. */
|
|
@@ -49324,9 +48842,6 @@ export interface components {
|
|
|
49324
48842
|
*/
|
|
49325
48843
|
collectionName?: string | null;
|
|
49326
48844
|
} | null;
|
|
49327
|
-
CreateThumbnailPersonalizationRequest: {
|
|
49328
|
-
homepageThumbnailIds: string[];
|
|
49329
|
-
};
|
|
49330
48845
|
/** @description The context of creation that is not part of the asset content, such as metadata and creator information. Required for [Create Asset](#POST-v1-assets). */
|
|
49331
48846
|
CreationContext: {
|
|
49332
48847
|
/** @description Desired privacy setting for the asset on creation. Only applies to asset types that support privacy override. */
|
|
@@ -49892,10 +49407,6 @@ export interface components {
|
|
|
49892
49407
|
* @enum {string}
|
|
49893
49408
|
*/
|
|
49894
49409
|
FilterType: "String" | "Number";
|
|
49895
|
-
FindThumbnailsResponse: {
|
|
49896
|
-
homepageThumbnails: components["schemas"]["HomepageThumbnail"][];
|
|
49897
|
-
nextCursor?: string | null;
|
|
49898
|
-
};
|
|
49899
49410
|
/**
|
|
49900
49411
|
* @description Represents metadata about the long-running operation corresponding to a
|
|
49901
49412
|
* FlushMemoryStore request.
|
|
@@ -50696,16 +50207,6 @@ export interface components {
|
|
|
50696
50207
|
*/
|
|
50697
50208
|
bypassSlowMode?: boolean;
|
|
50698
50209
|
};
|
|
50699
|
-
HomepageThumbnail: {
|
|
50700
|
-
homepageThumbnailId: string;
|
|
50701
|
-
/** Format: int64 */
|
|
50702
|
-
assetId: number;
|
|
50703
|
-
moderationStatus: components["schemas"]["ThumbnailPersonalizationApi.ModerationStatus"];
|
|
50704
|
-
personalizedConfigStatus: components["schemas"]["PersonalizedConfigStatus"];
|
|
50705
|
-
homepageThumbnailStatus: components["schemas"]["HomepageThumbnailStatus"];
|
|
50706
|
-
};
|
|
50707
|
-
/** @enum {string} */
|
|
50708
|
-
HomepageThumbnailStatus: "Active" | "Spammy";
|
|
50709
50210
|
HttpContent: {
|
|
50710
50211
|
readonly headers?: components["schemas"]["StringStringIEnumerableKeyValuePair"][] | null;
|
|
50711
50212
|
};
|
|
@@ -52270,8 +51771,6 @@ export interface components {
|
|
|
52270
51771
|
/** @description The name of the entry. */
|
|
52271
51772
|
readonly id?: string;
|
|
52272
51773
|
};
|
|
52273
|
-
/** @enum {string} */
|
|
52274
|
-
PersonalizedConfigStatus: "Active" | "Inactive";
|
|
52275
51774
|
/** @description Represents a Roblox place. */
|
|
52276
51775
|
Place: {
|
|
52277
51776
|
/**
|
|
@@ -56473,6 +55972,7 @@ export interface components {
|
|
|
56473
55972
|
id?: number;
|
|
56474
55973
|
};
|
|
56475
55974
|
"Roblox.Catalog.Api.MultigetItemDetailsRequestModel": {
|
|
55975
|
+
/** @description The items to retrieve details for. Each endpoint has an item count limit per request. */
|
|
56476
55976
|
items?: components["schemas"]["Roblox.Catalog.Api.MultigetItemDetailsRequestItem"][];
|
|
56477
55977
|
};
|
|
56478
55978
|
/** @description A model to represent owned bundles. */
|
|
@@ -58965,6 +58465,8 @@ export interface components {
|
|
|
58965
58465
|
Recipients?: components["schemas"]["Roblox.Groups.Api.PayoutRecipientRequest"][];
|
|
58966
58466
|
/** @description The idempotency key of the payout request. */
|
|
58967
58467
|
IdempotencyKey?: string;
|
|
58468
|
+
/** @description Optional watermark contributions for DevEx attribution tracking. */
|
|
58469
|
+
WatermarkContributions?: components["schemas"]["Roblox.Groups.Api.WatermarkContributionRequest"][];
|
|
58968
58470
|
};
|
|
58969
58471
|
/** @description A request model for setting the authenticated user's primary group. */
|
|
58970
58472
|
"Roblox.Groups.Api.PostGroupStatusRequest": {
|
|
@@ -59221,6 +58723,15 @@ export interface components {
|
|
|
59221
58723
|
user?: components["schemas"]["Roblox.Groups.Api.Models.Response.UserModel"];
|
|
59222
58724
|
role?: components["schemas"]["Roblox.Groups.Api.GroupRoleResponse"];
|
|
59223
58725
|
};
|
|
58726
|
+
"Roblox.Groups.Api.WatermarkContributionRequest": {
|
|
58727
|
+
/**
|
|
58728
|
+
* @description ['Standard' = 1, 'O18Boosted' = 2]
|
|
58729
|
+
* @enum {string}
|
|
58730
|
+
*/
|
|
58731
|
+
balanceKey?: "Standard" | "O18Boosted";
|
|
58732
|
+
/** Format: int64 */
|
|
58733
|
+
amount?: number;
|
|
58734
|
+
};
|
|
59224
58735
|
"Roblox.Groups.Client.BlockedKeywordModel": {
|
|
59225
58736
|
id?: string;
|
|
59226
58737
|
keyword?: string;
|
|
@@ -59341,10 +58852,10 @@ export interface components {
|
|
|
59341
58852
|
name?: string;
|
|
59342
58853
|
/**
|
|
59343
58854
|
* Format: int32
|
|
59344
|
-
* @description ['User' = 1, 'Group' = 2]
|
|
58855
|
+
* @description ['User' = 1, 'Group' = 2, 'Experience' = 3]
|
|
59345
58856
|
* @enum {integer}
|
|
59346
58857
|
*/
|
|
59347
|
-
type?: 1 | 2;
|
|
58858
|
+
type?: 1 | 2 | 3;
|
|
59348
58859
|
};
|
|
59349
58860
|
/** @description Model representing an inventory item */
|
|
59350
58861
|
"Roblox.Inventory.Api.Models.IItemModel": {
|
|
@@ -59462,10 +58973,10 @@ export interface components {
|
|
|
59462
58973
|
name?: string;
|
|
59463
58974
|
/**
|
|
59464
58975
|
* Format: int32
|
|
59465
|
-
* @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]
|
|
58976
|
+
* @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]
|
|
59466
58977
|
* @enum {integer}
|
|
59467
58978
|
*/
|
|
59468
|
-
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;
|
|
58979
|
+
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;
|
|
59469
58980
|
/**
|
|
59470
58981
|
* Format: date-time
|
|
59471
58982
|
* @description The created date time of the user asset.
|
|
@@ -60283,16 +59794,6 @@ export interface components {
|
|
|
60283
59794
|
canAfford?: boolean;
|
|
60284
59795
|
};
|
|
60285
59796
|
/** @description A response model for thumbnails which belong to a specific universe ID */
|
|
60286
|
-
"Roblox.Thumbnails.Api.Models.ThumbnailMetaDataResponse": {
|
|
60287
|
-
/** @description webapp use cache */
|
|
60288
|
-
isWebappUseCacheEnabled?: boolean;
|
|
60289
|
-
/**
|
|
60290
|
-
* Format: date-span
|
|
60291
|
-
* @description webapp caching expiration in ms
|
|
60292
|
-
*/
|
|
60293
|
-
webappCacheExpirationTimspan?: string;
|
|
60294
|
-
};
|
|
60295
|
-
/** @description A response model for thumbnails which belong to a specific universe ID */
|
|
60296
59797
|
"Roblox.Thumbnails.Api.Models.UniverseThumbnailsResponse": {
|
|
60297
59798
|
/**
|
|
60298
59799
|
* Format: int64
|
|
@@ -62498,8 +61999,6 @@ export interface components {
|
|
|
62498
61999
|
*/
|
|
62499
62000
|
reason?: "EXPIRATION_REASON_UNSPECIFIED" | "PRODUCT_INACTIVE" | "PRODUCT_DELETED" | "SUBSCRIBER_CANCELLED" | "SUBSCRIBER_REFUNDED" | "LAPSED";
|
|
62500
62001
|
};
|
|
62501
|
-
/** @enum {string} */
|
|
62502
|
-
"ThumbnailPersonalizationApi.ModerationStatus": "Reviewing" | "Rejected" | "Approved" | "Unspecified";
|
|
62503
62002
|
"ThumbnailsApi.Roblox.Web.Responses.Thumbnails.ThumbnailResponse": {
|
|
62504
62003
|
/** Format: int64 */
|
|
62505
62004
|
targetId?: number;
|
|
@@ -62671,6 +62170,12 @@ export interface components {
|
|
|
62671
62170
|
/** Format: int64 */
|
|
62672
62171
|
licensingPaymentClawbackOutgoingTotal?: number;
|
|
62673
62172
|
/** Format: int64 */
|
|
62173
|
+
incomingRobuxTransferTotal?: number;
|
|
62174
|
+
/** Format: int64 */
|
|
62175
|
+
outgoingRobuxTransferTotal?: number;
|
|
62176
|
+
/** Format: int64 */
|
|
62177
|
+
robloxSelectIncomingTotal?: number;
|
|
62178
|
+
/** Format: int64 */
|
|
62674
62179
|
robloxSelectOutgoingTotal?: number;
|
|
62675
62180
|
};
|
|
62676
62181
|
/** @enum {string} */
|
|
@@ -63060,32 +62565,6 @@ export interface components {
|
|
|
63060
62565
|
UpdateMatchmakingServerAttributeDefinitionResponse: {
|
|
63061
62566
|
playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
|
|
63062
62567
|
};
|
|
63063
|
-
UpdateThumbnailPersonalizationRequest: {
|
|
63064
|
-
homepageThumbnailIds: string[];
|
|
63065
|
-
id: string;
|
|
63066
|
-
};
|
|
63067
|
-
/**
|
|
63068
|
-
* Format: int32
|
|
63069
|
-
* @enum {integer}
|
|
63070
|
-
*/
|
|
63071
|
-
UploadStatus: 1 | 2;
|
|
63072
|
-
UploadThumbnailStatus: {
|
|
63073
|
-
homepageThumbnailId?: string | null;
|
|
63074
|
-
/** Format: int64 */
|
|
63075
|
-
assetId?: number;
|
|
63076
|
-
moderationStatus?: components["schemas"]["ThumbnailPersonalizationApi.ModerationStatus"];
|
|
63077
|
-
};
|
|
63078
|
-
UploadThumbnailsResponse: {
|
|
63079
|
-
fileToOperationIdDict: {
|
|
63080
|
-
[key: string]: string | null;
|
|
63081
|
-
};
|
|
63082
|
-
};
|
|
63083
|
-
UploadThumbnailsStatusResponse: {
|
|
63084
|
-
uploadStatus: components["schemas"]["UploadStatus"];
|
|
63085
|
-
uploadThumbnailStatusDict: {
|
|
63086
|
-
[key: string]: components["schemas"]["UploadThumbnailStatus"];
|
|
63087
|
-
};
|
|
63088
|
-
};
|
|
63089
62568
|
/** @description Represents any registered user of Roblox. */
|
|
63090
62569
|
User: {
|
|
63091
62570
|
/**
|
|
@@ -69417,443 +68896,6 @@ export interface operations {
|
|
|
69417
68896
|
};
|
|
69418
68897
|
};
|
|
69419
68898
|
};
|
|
69420
|
-
HomepageThumbnail_FindThumbnailPersonalizations: {
|
|
69421
|
-
parameters: {
|
|
69422
|
-
query?: {
|
|
69423
|
-
status?: components["schemas"]["PersonalizedConfigStatus"];
|
|
69424
|
-
limit?: number;
|
|
69425
|
-
cursor?: string;
|
|
69426
|
-
};
|
|
69427
|
-
header?: never;
|
|
69428
|
-
path: {
|
|
69429
|
-
universeId: number;
|
|
69430
|
-
};
|
|
69431
|
-
cookie?: never;
|
|
69432
|
-
};
|
|
69433
|
-
requestBody?: never;
|
|
69434
|
-
responses: {
|
|
69435
|
-
/** @description Success */
|
|
69436
|
-
200: {
|
|
69437
|
-
headers: {
|
|
69438
|
-
[name: string]: unknown;
|
|
69439
|
-
};
|
|
69440
|
-
content: {
|
|
69441
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69442
|
-
};
|
|
69443
|
-
};
|
|
69444
|
-
/** @description Bad Request */
|
|
69445
|
-
400: {
|
|
69446
|
-
headers: {
|
|
69447
|
-
[name: string]: unknown;
|
|
69448
|
-
};
|
|
69449
|
-
content: {
|
|
69450
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69451
|
-
};
|
|
69452
|
-
};
|
|
69453
|
-
/** @description Unauthorized */
|
|
69454
|
-
401: {
|
|
69455
|
-
headers: {
|
|
69456
|
-
[name: string]: unknown;
|
|
69457
|
-
};
|
|
69458
|
-
content: {
|
|
69459
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69460
|
-
};
|
|
69461
|
-
};
|
|
69462
|
-
/** @description Forbidden */
|
|
69463
|
-
403: {
|
|
69464
|
-
headers: {
|
|
69465
|
-
[name: string]: unknown;
|
|
69466
|
-
};
|
|
69467
|
-
content: {
|
|
69468
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69469
|
-
};
|
|
69470
|
-
};
|
|
69471
|
-
/** @description Server Error */
|
|
69472
|
-
500: {
|
|
69473
|
-
headers: {
|
|
69474
|
-
[name: string]: unknown;
|
|
69475
|
-
};
|
|
69476
|
-
content: {
|
|
69477
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69478
|
-
};
|
|
69479
|
-
};
|
|
69480
|
-
};
|
|
69481
|
-
};
|
|
69482
|
-
HomepageThumbnail_CreateThumbnailPersonalization: {
|
|
69483
|
-
parameters: {
|
|
69484
|
-
query?: never;
|
|
69485
|
-
header?: never;
|
|
69486
|
-
path: {
|
|
69487
|
-
universeId: number;
|
|
69488
|
-
};
|
|
69489
|
-
cookie?: never;
|
|
69490
|
-
};
|
|
69491
|
-
requestBody?: {
|
|
69492
|
-
content: {
|
|
69493
|
-
"application/json-patch+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69494
|
-
"application/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69495
|
-
"text/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69496
|
-
"application/*+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69497
|
-
};
|
|
69498
|
-
};
|
|
69499
|
-
responses: {
|
|
69500
|
-
/** @description Success */
|
|
69501
|
-
200: {
|
|
69502
|
-
headers: {
|
|
69503
|
-
[name: string]: unknown;
|
|
69504
|
-
};
|
|
69505
|
-
content: {
|
|
69506
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69507
|
-
};
|
|
69508
|
-
};
|
|
69509
|
-
/** @description Bad Request */
|
|
69510
|
-
400: {
|
|
69511
|
-
headers: {
|
|
69512
|
-
[name: string]: unknown;
|
|
69513
|
-
};
|
|
69514
|
-
content: {
|
|
69515
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69516
|
-
};
|
|
69517
|
-
};
|
|
69518
|
-
/** @description Unauthorized */
|
|
69519
|
-
401: {
|
|
69520
|
-
headers: {
|
|
69521
|
-
[name: string]: unknown;
|
|
69522
|
-
};
|
|
69523
|
-
content: {
|
|
69524
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69525
|
-
};
|
|
69526
|
-
};
|
|
69527
|
-
/** @description Forbidden */
|
|
69528
|
-
403: {
|
|
69529
|
-
headers: {
|
|
69530
|
-
[name: string]: unknown;
|
|
69531
|
-
};
|
|
69532
|
-
content: {
|
|
69533
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69534
|
-
};
|
|
69535
|
-
};
|
|
69536
|
-
/** @description Server Error */
|
|
69537
|
-
500: {
|
|
69538
|
-
headers: {
|
|
69539
|
-
[name: string]: unknown;
|
|
69540
|
-
};
|
|
69541
|
-
content: {
|
|
69542
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69543
|
-
};
|
|
69544
|
-
};
|
|
69545
|
-
};
|
|
69546
|
-
};
|
|
69547
|
-
HomepageThumbnail_UpdateThumbnailPersonalization: {
|
|
69548
|
-
parameters: {
|
|
69549
|
-
query?: never;
|
|
69550
|
-
header?: never;
|
|
69551
|
-
path: {
|
|
69552
|
-
universeId: number;
|
|
69553
|
-
};
|
|
69554
|
-
cookie?: never;
|
|
69555
|
-
};
|
|
69556
|
-
requestBody?: {
|
|
69557
|
-
content: {
|
|
69558
|
-
"application/json-patch+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69559
|
-
"application/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69560
|
-
"text/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69561
|
-
"application/*+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69562
|
-
};
|
|
69563
|
-
};
|
|
69564
|
-
responses: {
|
|
69565
|
-
/** @description Success */
|
|
69566
|
-
200: {
|
|
69567
|
-
headers: {
|
|
69568
|
-
[name: string]: unknown;
|
|
69569
|
-
};
|
|
69570
|
-
content: {
|
|
69571
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69572
|
-
};
|
|
69573
|
-
};
|
|
69574
|
-
/** @description Bad Request */
|
|
69575
|
-
400: {
|
|
69576
|
-
headers: {
|
|
69577
|
-
[name: string]: unknown;
|
|
69578
|
-
};
|
|
69579
|
-
content: {
|
|
69580
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69581
|
-
};
|
|
69582
|
-
};
|
|
69583
|
-
/** @description Unauthorized */
|
|
69584
|
-
401: {
|
|
69585
|
-
headers: {
|
|
69586
|
-
[name: string]: unknown;
|
|
69587
|
-
};
|
|
69588
|
-
content: {
|
|
69589
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69590
|
-
};
|
|
69591
|
-
};
|
|
69592
|
-
/** @description Forbidden */
|
|
69593
|
-
403: {
|
|
69594
|
-
headers: {
|
|
69595
|
-
[name: string]: unknown;
|
|
69596
|
-
};
|
|
69597
|
-
content: {
|
|
69598
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69599
|
-
};
|
|
69600
|
-
};
|
|
69601
|
-
/** @description Server Error */
|
|
69602
|
-
500: {
|
|
69603
|
-
headers: {
|
|
69604
|
-
[name: string]: unknown;
|
|
69605
|
-
};
|
|
69606
|
-
content: {
|
|
69607
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69608
|
-
};
|
|
69609
|
-
};
|
|
69610
|
-
};
|
|
69611
|
-
};
|
|
69612
|
-
HomepageThumbnail_GetHomepageThumbnails: {
|
|
69613
|
-
parameters: {
|
|
69614
|
-
query?: {
|
|
69615
|
-
limit?: number;
|
|
69616
|
-
nextCursor?: string;
|
|
69617
|
-
};
|
|
69618
|
-
header?: never;
|
|
69619
|
-
path: {
|
|
69620
|
-
universeId: number;
|
|
69621
|
-
};
|
|
69622
|
-
cookie?: never;
|
|
69623
|
-
};
|
|
69624
|
-
requestBody?: never;
|
|
69625
|
-
responses: {
|
|
69626
|
-
/** @description Success */
|
|
69627
|
-
200: {
|
|
69628
|
-
headers: {
|
|
69629
|
-
[name: string]: unknown;
|
|
69630
|
-
};
|
|
69631
|
-
content: {
|
|
69632
|
-
"application/json": components["schemas"]["FindThumbnailsResponse"];
|
|
69633
|
-
};
|
|
69634
|
-
};
|
|
69635
|
-
/** @description Bad Request */
|
|
69636
|
-
400: {
|
|
69637
|
-
headers: {
|
|
69638
|
-
[name: string]: unknown;
|
|
69639
|
-
};
|
|
69640
|
-
content: {
|
|
69641
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69642
|
-
};
|
|
69643
|
-
};
|
|
69644
|
-
/** @description Unauthorized */
|
|
69645
|
-
401: {
|
|
69646
|
-
headers: {
|
|
69647
|
-
[name: string]: unknown;
|
|
69648
|
-
};
|
|
69649
|
-
content: {
|
|
69650
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69651
|
-
};
|
|
69652
|
-
};
|
|
69653
|
-
/** @description Forbidden */
|
|
69654
|
-
403: {
|
|
69655
|
-
headers: {
|
|
69656
|
-
[name: string]: unknown;
|
|
69657
|
-
};
|
|
69658
|
-
content: {
|
|
69659
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69660
|
-
};
|
|
69661
|
-
};
|
|
69662
|
-
/** @description Server Error */
|
|
69663
|
-
500: {
|
|
69664
|
-
headers: {
|
|
69665
|
-
[name: string]: unknown;
|
|
69666
|
-
};
|
|
69667
|
-
content: {
|
|
69668
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69669
|
-
};
|
|
69670
|
-
};
|
|
69671
|
-
};
|
|
69672
|
-
};
|
|
69673
|
-
HomepageThumbnail_DeleteHomepageThumbnails: {
|
|
69674
|
-
parameters: {
|
|
69675
|
-
query?: {
|
|
69676
|
-
homepageThumbnailIds?: string[];
|
|
69677
|
-
};
|
|
69678
|
-
header?: never;
|
|
69679
|
-
path: {
|
|
69680
|
-
universeId: number;
|
|
69681
|
-
};
|
|
69682
|
-
cookie?: never;
|
|
69683
|
-
};
|
|
69684
|
-
requestBody?: never;
|
|
69685
|
-
responses: {
|
|
69686
|
-
/** @description Success */
|
|
69687
|
-
200: {
|
|
69688
|
-
headers: {
|
|
69689
|
-
[name: string]: unknown;
|
|
69690
|
-
};
|
|
69691
|
-
content: {
|
|
69692
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69693
|
-
};
|
|
69694
|
-
};
|
|
69695
|
-
/** @description Bad Request */
|
|
69696
|
-
400: {
|
|
69697
|
-
headers: {
|
|
69698
|
-
[name: string]: unknown;
|
|
69699
|
-
};
|
|
69700
|
-
content: {
|
|
69701
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69702
|
-
};
|
|
69703
|
-
};
|
|
69704
|
-
/** @description Unauthorized */
|
|
69705
|
-
401: {
|
|
69706
|
-
headers: {
|
|
69707
|
-
[name: string]: unknown;
|
|
69708
|
-
};
|
|
69709
|
-
content: {
|
|
69710
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69711
|
-
};
|
|
69712
|
-
};
|
|
69713
|
-
/** @description Forbidden */
|
|
69714
|
-
403: {
|
|
69715
|
-
headers: {
|
|
69716
|
-
[name: string]: unknown;
|
|
69717
|
-
};
|
|
69718
|
-
content: {
|
|
69719
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69720
|
-
};
|
|
69721
|
-
};
|
|
69722
|
-
/** @description Server Error */
|
|
69723
|
-
500: {
|
|
69724
|
-
headers: {
|
|
69725
|
-
[name: string]: unknown;
|
|
69726
|
-
};
|
|
69727
|
-
content: {
|
|
69728
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69729
|
-
};
|
|
69730
|
-
};
|
|
69731
|
-
};
|
|
69732
|
-
};
|
|
69733
|
-
HomepageThumbnail_UploadHomepageThumbnails: {
|
|
69734
|
-
parameters: {
|
|
69735
|
-
query?: never;
|
|
69736
|
-
header?: never;
|
|
69737
|
-
path: {
|
|
69738
|
-
universeId: number;
|
|
69739
|
-
};
|
|
69740
|
-
cookie?: never;
|
|
69741
|
-
};
|
|
69742
|
-
requestBody?: {
|
|
69743
|
-
content: {
|
|
69744
|
-
"multipart/form-data": {
|
|
69745
|
-
files?: string[];
|
|
69746
|
-
};
|
|
69747
|
-
};
|
|
69748
|
-
};
|
|
69749
|
-
responses: {
|
|
69750
|
-
/** @description Success */
|
|
69751
|
-
200: {
|
|
69752
|
-
headers: {
|
|
69753
|
-
[name: string]: unknown;
|
|
69754
|
-
};
|
|
69755
|
-
content: {
|
|
69756
|
-
"application/json": components["schemas"]["UploadThumbnailsResponse"];
|
|
69757
|
-
};
|
|
69758
|
-
};
|
|
69759
|
-
/** @description Bad Request */
|
|
69760
|
-
400: {
|
|
69761
|
-
headers: {
|
|
69762
|
-
[name: string]: unknown;
|
|
69763
|
-
};
|
|
69764
|
-
content: {
|
|
69765
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69766
|
-
};
|
|
69767
|
-
};
|
|
69768
|
-
/** @description Unauthorized */
|
|
69769
|
-
401: {
|
|
69770
|
-
headers: {
|
|
69771
|
-
[name: string]: unknown;
|
|
69772
|
-
};
|
|
69773
|
-
content: {
|
|
69774
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69775
|
-
};
|
|
69776
|
-
};
|
|
69777
|
-
/** @description Forbidden */
|
|
69778
|
-
403: {
|
|
69779
|
-
headers: {
|
|
69780
|
-
[name: string]: unknown;
|
|
69781
|
-
};
|
|
69782
|
-
content: {
|
|
69783
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69784
|
-
};
|
|
69785
|
-
};
|
|
69786
|
-
/** @description Server Error */
|
|
69787
|
-
500: {
|
|
69788
|
-
headers: {
|
|
69789
|
-
[name: string]: unknown;
|
|
69790
|
-
};
|
|
69791
|
-
content: {
|
|
69792
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69793
|
-
};
|
|
69794
|
-
};
|
|
69795
|
-
};
|
|
69796
|
-
};
|
|
69797
|
-
HomepageThumbnail_GetHomepageThumbnailsStatus: {
|
|
69798
|
-
parameters: {
|
|
69799
|
-
query?: {
|
|
69800
|
-
operationIds?: string[];
|
|
69801
|
-
};
|
|
69802
|
-
header?: never;
|
|
69803
|
-
path: {
|
|
69804
|
-
universeId: number;
|
|
69805
|
-
};
|
|
69806
|
-
cookie?: never;
|
|
69807
|
-
};
|
|
69808
|
-
requestBody?: never;
|
|
69809
|
-
responses: {
|
|
69810
|
-
/** @description Success */
|
|
69811
|
-
200: {
|
|
69812
|
-
headers: {
|
|
69813
|
-
[name: string]: unknown;
|
|
69814
|
-
};
|
|
69815
|
-
content: {
|
|
69816
|
-
"application/json": components["schemas"]["UploadThumbnailsStatusResponse"];
|
|
69817
|
-
};
|
|
69818
|
-
};
|
|
69819
|
-
/** @description Bad Request */
|
|
69820
|
-
400: {
|
|
69821
|
-
headers: {
|
|
69822
|
-
[name: string]: unknown;
|
|
69823
|
-
};
|
|
69824
|
-
content: {
|
|
69825
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69826
|
-
};
|
|
69827
|
-
};
|
|
69828
|
-
/** @description Unauthorized */
|
|
69829
|
-
401: {
|
|
69830
|
-
headers: {
|
|
69831
|
-
[name: string]: unknown;
|
|
69832
|
-
};
|
|
69833
|
-
content: {
|
|
69834
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69835
|
-
};
|
|
69836
|
-
};
|
|
69837
|
-
/** @description Forbidden */
|
|
69838
|
-
403: {
|
|
69839
|
-
headers: {
|
|
69840
|
-
[name: string]: unknown;
|
|
69841
|
-
};
|
|
69842
|
-
content: {
|
|
69843
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69844
|
-
};
|
|
69845
|
-
};
|
|
69846
|
-
/** @description Server Error */
|
|
69847
|
-
500: {
|
|
69848
|
-
headers: {
|
|
69849
|
-
[name: string]: unknown;
|
|
69850
|
-
};
|
|
69851
|
-
content: {
|
|
69852
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69853
|
-
};
|
|
69854
|
-
};
|
|
69855
|
-
};
|
|
69856
|
-
};
|
|
69857
68899
|
Saves_GetSaves: {
|
|
69858
68900
|
parameters: {
|
|
69859
68901
|
query?: {
|