@jacobhumston/roblox-openapi-ts 1.0.10 → 1.0.12
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 +234 -1221
- 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;
|
|
@@ -14822,54 +14370,6 @@ export interface paths {
|
|
|
14822
14370
|
patch?: never;
|
|
14823
14371
|
trace?: never;
|
|
14824
14372
|
};
|
|
14825
|
-
"/v1/contacts/metadata": {
|
|
14826
|
-
parameters: {
|
|
14827
|
-
query?: never;
|
|
14828
|
-
header?: never;
|
|
14829
|
-
path?: never;
|
|
14830
|
-
cookie?: never;
|
|
14831
|
-
};
|
|
14832
|
-
/**
|
|
14833
|
-
* Gets contextual information for contacts and usertags
|
|
14834
|
-
* @deprecated
|
|
14835
|
-
* @description Endpoint is Deprecated
|
|
14836
|
-
*/
|
|
14837
|
-
get: {
|
|
14838
|
-
parameters: {
|
|
14839
|
-
query?: never;
|
|
14840
|
-
header?: never;
|
|
14841
|
-
path?: never;
|
|
14842
|
-
cookie?: never;
|
|
14843
|
-
};
|
|
14844
|
-
requestBody?: never;
|
|
14845
|
-
responses: {
|
|
14846
|
-
/** @description OK */
|
|
14847
|
-
200: {
|
|
14848
|
-
headers: {
|
|
14849
|
-
[name: string]: unknown;
|
|
14850
|
-
};
|
|
14851
|
-
content: {
|
|
14852
|
-
"application/json": components["schemas"]["Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel"];
|
|
14853
|
-
"text/json": components["schemas"]["Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel"];
|
|
14854
|
-
};
|
|
14855
|
-
};
|
|
14856
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
14857
|
-
401: {
|
|
14858
|
-
headers: {
|
|
14859
|
-
[name: string]: unknown;
|
|
14860
|
-
};
|
|
14861
|
-
content?: never;
|
|
14862
|
-
};
|
|
14863
|
-
};
|
|
14864
|
-
};
|
|
14865
|
-
put?: never;
|
|
14866
|
-
post?: never;
|
|
14867
|
-
delete?: never;
|
|
14868
|
-
options?: never;
|
|
14869
|
-
head?: never;
|
|
14870
|
-
patch?: never;
|
|
14871
|
-
trace?: never;
|
|
14872
|
-
};
|
|
14873
14373
|
"/v1/contacts/{targetContactId}/request-friendship": {
|
|
14874
14374
|
parameters: {
|
|
14875
14375
|
query?: never;
|
|
@@ -27403,196 +26903,24 @@ export interface paths {
|
|
|
27403
26903
|
patch?: never;
|
|
27404
26904
|
trace?: never;
|
|
27405
26905
|
};
|
|
27406
|
-
"/v1/messages/mark-read": {
|
|
27407
|
-
parameters: {
|
|
27408
|
-
query?: never;
|
|
27409
|
-
header?: never;
|
|
27410
|
-
path?: never;
|
|
27411
|
-
cookie?: never;
|
|
27412
|
-
};
|
|
27413
|
-
get?: never;
|
|
27414
|
-
put?: never;
|
|
27415
|
-
/** Marks a batch of messages as read. */
|
|
27416
|
-
post: {
|
|
27417
|
-
parameters: {
|
|
27418
|
-
query?: never;
|
|
27419
|
-
header?: never;
|
|
27420
|
-
path?: never;
|
|
27421
|
-
cookie?: never;
|
|
27422
|
-
};
|
|
27423
|
-
requestBody: components["requestBodies"]["Roblox.PrivateMessages.Api.Models.BatchMessagesRequest"];
|
|
27424
|
-
responses: {
|
|
27425
|
-
/** @description OK */
|
|
27426
|
-
200: {
|
|
27427
|
-
headers: {
|
|
27428
|
-
[name: string]: unknown;
|
|
27429
|
-
};
|
|
27430
|
-
content: {
|
|
27431
|
-
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27432
|
-
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27433
|
-
};
|
|
27434
|
-
};
|
|
27435
|
-
/** @description 5: Too many ids in a batch request. */
|
|
27436
|
-
400: {
|
|
27437
|
-
headers: {
|
|
27438
|
-
[name: string]: unknown;
|
|
27439
|
-
};
|
|
27440
|
-
content?: never;
|
|
27441
|
-
};
|
|
27442
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
27443
|
-
401: {
|
|
27444
|
-
headers: {
|
|
27445
|
-
[name: string]: unknown;
|
|
27446
|
-
};
|
|
27447
|
-
content?: never;
|
|
27448
|
-
};
|
|
27449
|
-
/** @description 0: Token Validation Failed */
|
|
27450
|
-
403: {
|
|
27451
|
-
headers: {
|
|
27452
|
-
[name: string]: unknown;
|
|
27453
|
-
};
|
|
27454
|
-
content?: never;
|
|
27455
|
-
};
|
|
27456
|
-
};
|
|
27457
|
-
};
|
|
27458
|
-
delete?: never;
|
|
27459
|
-
options?: never;
|
|
27460
|
-
head?: never;
|
|
27461
|
-
patch?: never;
|
|
27462
|
-
trace?: never;
|
|
27463
|
-
};
|
|
27464
|
-
"/v1/messages/mark-unread": {
|
|
27465
|
-
parameters: {
|
|
27466
|
-
query?: never;
|
|
27467
|
-
header?: never;
|
|
27468
|
-
path?: never;
|
|
27469
|
-
cookie?: never;
|
|
27470
|
-
};
|
|
27471
|
-
get?: never;
|
|
27472
|
-
put?: never;
|
|
27473
|
-
/** Marks a batch of messages as unread. */
|
|
27474
|
-
post: {
|
|
27475
|
-
parameters: {
|
|
27476
|
-
query?: never;
|
|
27477
|
-
header?: never;
|
|
27478
|
-
path?: never;
|
|
27479
|
-
cookie?: never;
|
|
27480
|
-
};
|
|
27481
|
-
requestBody: components["requestBodies"]["Roblox.PrivateMessages.Api.Models.BatchMessagesRequest"];
|
|
27482
|
-
responses: {
|
|
27483
|
-
/** @description OK */
|
|
27484
|
-
200: {
|
|
27485
|
-
headers: {
|
|
27486
|
-
[name: string]: unknown;
|
|
27487
|
-
};
|
|
27488
|
-
content: {
|
|
27489
|
-
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27490
|
-
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27491
|
-
};
|
|
27492
|
-
};
|
|
27493
|
-
/** @description 5: Too many ids in a batch request. */
|
|
27494
|
-
400: {
|
|
27495
|
-
headers: {
|
|
27496
|
-
[name: string]: unknown;
|
|
27497
|
-
};
|
|
27498
|
-
content?: never;
|
|
27499
|
-
};
|
|
27500
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
27501
|
-
401: {
|
|
27502
|
-
headers: {
|
|
27503
|
-
[name: string]: unknown;
|
|
27504
|
-
};
|
|
27505
|
-
content?: never;
|
|
27506
|
-
};
|
|
27507
|
-
/** @description 0: Token Validation Failed */
|
|
27508
|
-
403: {
|
|
27509
|
-
headers: {
|
|
27510
|
-
[name: string]: unknown;
|
|
27511
|
-
};
|
|
27512
|
-
content?: never;
|
|
27513
|
-
};
|
|
27514
|
-
};
|
|
27515
|
-
};
|
|
27516
|
-
delete?: never;
|
|
27517
|
-
options?: never;
|
|
27518
|
-
head?: never;
|
|
27519
|
-
patch?: never;
|
|
27520
|
-
trace?: never;
|
|
27521
|
-
};
|
|
27522
|
-
"/v1/messages/unarchive": {
|
|
27523
|
-
parameters: {
|
|
27524
|
-
query?: never;
|
|
27525
|
-
header?: never;
|
|
27526
|
-
path?: never;
|
|
27527
|
-
cookie?: never;
|
|
27528
|
-
};
|
|
27529
|
-
get?: never;
|
|
27530
|
-
put?: never;
|
|
27531
|
-
/** Unarchives a batch of messages. */
|
|
27532
|
-
post: {
|
|
27533
|
-
parameters: {
|
|
27534
|
-
query?: never;
|
|
27535
|
-
header?: never;
|
|
27536
|
-
path?: never;
|
|
27537
|
-
cookie?: never;
|
|
27538
|
-
};
|
|
27539
|
-
requestBody: components["requestBodies"]["Roblox.PrivateMessages.Api.Models.BatchMessagesRequest"];
|
|
27540
|
-
responses: {
|
|
27541
|
-
/** @description OK */
|
|
27542
|
-
200: {
|
|
27543
|
-
headers: {
|
|
27544
|
-
[name: string]: unknown;
|
|
27545
|
-
};
|
|
27546
|
-
content: {
|
|
27547
|
-
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27548
|
-
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27549
|
-
};
|
|
27550
|
-
};
|
|
27551
|
-
/** @description 5: Too many ids in a batch request. */
|
|
27552
|
-
400: {
|
|
27553
|
-
headers: {
|
|
27554
|
-
[name: string]: unknown;
|
|
27555
|
-
};
|
|
27556
|
-
content?: never;
|
|
27557
|
-
};
|
|
27558
|
-
/** @description 0: Authorization has been denied for this request. */
|
|
27559
|
-
401: {
|
|
27560
|
-
headers: {
|
|
27561
|
-
[name: string]: unknown;
|
|
27562
|
-
};
|
|
27563
|
-
content?: never;
|
|
27564
|
-
};
|
|
27565
|
-
/** @description 0: Token Validation Failed */
|
|
27566
|
-
403: {
|
|
27567
|
-
headers: {
|
|
27568
|
-
[name: string]: unknown;
|
|
27569
|
-
};
|
|
27570
|
-
content?: never;
|
|
27571
|
-
};
|
|
27572
|
-
};
|
|
27573
|
-
};
|
|
27574
|
-
delete?: never;
|
|
27575
|
-
options?: never;
|
|
27576
|
-
head?: never;
|
|
27577
|
-
patch?: never;
|
|
27578
|
-
trace?: never;
|
|
27579
|
-
};
|
|
27580
|
-
"/v1/messages/unread/count": {
|
|
26906
|
+
"/v1/messages/mark-read": {
|
|
27581
26907
|
parameters: {
|
|
27582
26908
|
query?: never;
|
|
27583
26909
|
header?: never;
|
|
27584
26910
|
path?: never;
|
|
27585
26911
|
cookie?: never;
|
|
27586
26912
|
};
|
|
27587
|
-
|
|
27588
|
-
|
|
26913
|
+
get?: never;
|
|
26914
|
+
put?: never;
|
|
26915
|
+
/** Marks a batch of messages as read. */
|
|
26916
|
+
post: {
|
|
27589
26917
|
parameters: {
|
|
27590
26918
|
query?: never;
|
|
27591
26919
|
header?: never;
|
|
27592
26920
|
path?: never;
|
|
27593
26921
|
cookie?: never;
|
|
27594
26922
|
};
|
|
27595
|
-
requestBody
|
|
26923
|
+
requestBody: components["requestBodies"]["Roblox.PrivateMessages.Api.Models.BatchMessagesRequest"];
|
|
27596
26924
|
responses: {
|
|
27597
26925
|
/** @description OK */
|
|
27598
26926
|
200: {
|
|
@@ -27600,10 +26928,17 @@ export interface paths {
|
|
|
27600
26928
|
[name: string]: unknown;
|
|
27601
26929
|
};
|
|
27602
26930
|
content: {
|
|
27603
|
-
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.
|
|
27604
|
-
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.
|
|
26931
|
+
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
26932
|
+
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27605
26933
|
};
|
|
27606
26934
|
};
|
|
26935
|
+
/** @description 5: Too many ids in a batch request. */
|
|
26936
|
+
400: {
|
|
26937
|
+
headers: {
|
|
26938
|
+
[name: string]: unknown;
|
|
26939
|
+
};
|
|
26940
|
+
content?: never;
|
|
26941
|
+
};
|
|
27607
26942
|
/** @description 0: Authorization has been denied for this request. */
|
|
27608
26943
|
401: {
|
|
27609
26944
|
headers: {
|
|
@@ -27611,34 +26946,97 @@ export interface paths {
|
|
|
27611
26946
|
};
|
|
27612
26947
|
content?: never;
|
|
27613
26948
|
};
|
|
26949
|
+
/** @description 0: Token Validation Failed */
|
|
26950
|
+
403: {
|
|
26951
|
+
headers: {
|
|
26952
|
+
[name: string]: unknown;
|
|
26953
|
+
};
|
|
26954
|
+
content?: never;
|
|
26955
|
+
};
|
|
27614
26956
|
};
|
|
27615
26957
|
};
|
|
27616
|
-
put?: never;
|
|
27617
|
-
post?: never;
|
|
27618
26958
|
delete?: never;
|
|
27619
26959
|
options?: never;
|
|
27620
26960
|
head?: never;
|
|
27621
26961
|
patch?: never;
|
|
27622
26962
|
trace?: never;
|
|
27623
26963
|
};
|
|
27624
|
-
"/v1/messages/
|
|
26964
|
+
"/v1/messages/mark-unread": {
|
|
27625
26965
|
parameters: {
|
|
27626
26966
|
query?: never;
|
|
27627
26967
|
header?: never;
|
|
27628
26968
|
path?: never;
|
|
27629
26969
|
cookie?: never;
|
|
27630
26970
|
};
|
|
27631
|
-
|
|
27632
|
-
|
|
26971
|
+
get?: never;
|
|
26972
|
+
put?: never;
|
|
26973
|
+
/** Marks a batch of messages as unread. */
|
|
26974
|
+
post: {
|
|
27633
26975
|
parameters: {
|
|
27634
26976
|
query?: never;
|
|
27635
26977
|
header?: never;
|
|
27636
|
-
path
|
|
27637
|
-
|
|
26978
|
+
path?: never;
|
|
26979
|
+
cookie?: never;
|
|
26980
|
+
};
|
|
26981
|
+
requestBody: components["requestBodies"]["Roblox.PrivateMessages.Api.Models.BatchMessagesRequest"];
|
|
26982
|
+
responses: {
|
|
26983
|
+
/** @description OK */
|
|
26984
|
+
200: {
|
|
26985
|
+
headers: {
|
|
26986
|
+
[name: string]: unknown;
|
|
26987
|
+
};
|
|
26988
|
+
content: {
|
|
26989
|
+
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
26990
|
+
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
26991
|
+
};
|
|
26992
|
+
};
|
|
26993
|
+
/** @description 5: Too many ids in a batch request. */
|
|
26994
|
+
400: {
|
|
26995
|
+
headers: {
|
|
26996
|
+
[name: string]: unknown;
|
|
26997
|
+
};
|
|
26998
|
+
content?: never;
|
|
27638
26999
|
};
|
|
27000
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
27001
|
+
401: {
|
|
27002
|
+
headers: {
|
|
27003
|
+
[name: string]: unknown;
|
|
27004
|
+
};
|
|
27005
|
+
content?: never;
|
|
27006
|
+
};
|
|
27007
|
+
/** @description 0: Token Validation Failed */
|
|
27008
|
+
403: {
|
|
27009
|
+
headers: {
|
|
27010
|
+
[name: string]: unknown;
|
|
27011
|
+
};
|
|
27012
|
+
content?: never;
|
|
27013
|
+
};
|
|
27014
|
+
};
|
|
27015
|
+
};
|
|
27016
|
+
delete?: never;
|
|
27017
|
+
options?: never;
|
|
27018
|
+
head?: never;
|
|
27019
|
+
patch?: never;
|
|
27020
|
+
trace?: never;
|
|
27021
|
+
};
|
|
27022
|
+
"/v1/messages/unarchive": {
|
|
27023
|
+
parameters: {
|
|
27024
|
+
query?: never;
|
|
27025
|
+
header?: never;
|
|
27026
|
+
path?: never;
|
|
27027
|
+
cookie?: never;
|
|
27028
|
+
};
|
|
27029
|
+
get?: never;
|
|
27030
|
+
put?: never;
|
|
27031
|
+
/** Unarchives a batch of messages. */
|
|
27032
|
+
post: {
|
|
27033
|
+
parameters: {
|
|
27034
|
+
query?: never;
|
|
27035
|
+
header?: never;
|
|
27036
|
+
path?: never;
|
|
27639
27037
|
cookie?: never;
|
|
27640
27038
|
};
|
|
27641
|
-
requestBody
|
|
27039
|
+
requestBody: components["requestBodies"]["Roblox.PrivateMessages.Api.Models.BatchMessagesRequest"];
|
|
27642
27040
|
responses: {
|
|
27643
27041
|
/** @description OK */
|
|
27644
27042
|
200: {
|
|
@@ -27646,11 +27044,11 @@ export interface paths {
|
|
|
27646
27044
|
[name: string]: unknown;
|
|
27647
27045
|
};
|
|
27648
27046
|
content: {
|
|
27649
|
-
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.
|
|
27650
|
-
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.
|
|
27047
|
+
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27048
|
+
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.BatchMessagesResponse"];
|
|
27651
27049
|
};
|
|
27652
27050
|
};
|
|
27653
|
-
/** @description
|
|
27051
|
+
/** @description 5: Too many ids in a batch request. */
|
|
27654
27052
|
400: {
|
|
27655
27053
|
headers: {
|
|
27656
27054
|
[name: string]: unknown;
|
|
@@ -27664,6 +27062,55 @@ export interface paths {
|
|
|
27664
27062
|
};
|
|
27665
27063
|
content?: never;
|
|
27666
27064
|
};
|
|
27065
|
+
/** @description 0: Token Validation Failed */
|
|
27066
|
+
403: {
|
|
27067
|
+
headers: {
|
|
27068
|
+
[name: string]: unknown;
|
|
27069
|
+
};
|
|
27070
|
+
content?: never;
|
|
27071
|
+
};
|
|
27072
|
+
};
|
|
27073
|
+
};
|
|
27074
|
+
delete?: never;
|
|
27075
|
+
options?: never;
|
|
27076
|
+
head?: never;
|
|
27077
|
+
patch?: never;
|
|
27078
|
+
trace?: never;
|
|
27079
|
+
};
|
|
27080
|
+
"/v1/messages/unread/count": {
|
|
27081
|
+
parameters: {
|
|
27082
|
+
query?: never;
|
|
27083
|
+
header?: never;
|
|
27084
|
+
path?: never;
|
|
27085
|
+
cookie?: never;
|
|
27086
|
+
};
|
|
27087
|
+
/** Gets unread messages for the authenticated user. */
|
|
27088
|
+
get: {
|
|
27089
|
+
parameters: {
|
|
27090
|
+
query?: never;
|
|
27091
|
+
header?: never;
|
|
27092
|
+
path?: never;
|
|
27093
|
+
cookie?: never;
|
|
27094
|
+
};
|
|
27095
|
+
requestBody?: never;
|
|
27096
|
+
responses: {
|
|
27097
|
+
/** @description OK */
|
|
27098
|
+
200: {
|
|
27099
|
+
headers: {
|
|
27100
|
+
[name: string]: unknown;
|
|
27101
|
+
};
|
|
27102
|
+
content: {
|
|
27103
|
+
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.UnreadMessagesCountResponse"];
|
|
27104
|
+
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.UnreadMessagesCountResponse"];
|
|
27105
|
+
};
|
|
27106
|
+
};
|
|
27107
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
27108
|
+
401: {
|
|
27109
|
+
headers: {
|
|
27110
|
+
[name: string]: unknown;
|
|
27111
|
+
};
|
|
27112
|
+
content?: never;
|
|
27113
|
+
};
|
|
27667
27114
|
};
|
|
27668
27115
|
};
|
|
27669
27116
|
put?: never;
|
|
@@ -27674,19 +27121,21 @@ export interface paths {
|
|
|
27674
27121
|
patch?: never;
|
|
27675
27122
|
trace?: never;
|
|
27676
27123
|
};
|
|
27677
|
-
"/v1/
|
|
27124
|
+
"/v1/messages/{messageId}": {
|
|
27678
27125
|
parameters: {
|
|
27679
27126
|
query?: never;
|
|
27680
27127
|
header?: never;
|
|
27681
27128
|
path?: never;
|
|
27682
27129
|
cookie?: never;
|
|
27683
27130
|
};
|
|
27684
|
-
/**
|
|
27131
|
+
/** Gets a message's details. */
|
|
27685
27132
|
get: {
|
|
27686
27133
|
parameters: {
|
|
27687
27134
|
query?: never;
|
|
27688
27135
|
header?: never;
|
|
27689
|
-
path
|
|
27136
|
+
path: {
|
|
27137
|
+
messageId: number;
|
|
27138
|
+
};
|
|
27690
27139
|
cookie?: never;
|
|
27691
27140
|
};
|
|
27692
27141
|
requestBody?: never;
|
|
@@ -27697,9 +27146,23 @@ export interface paths {
|
|
|
27697
27146
|
[name: string]: unknown;
|
|
27698
27147
|
};
|
|
27699
27148
|
content: {
|
|
27700
|
-
"application/json": components["schemas"]["Roblox.
|
|
27701
|
-
"text/json": components["schemas"]["Roblox.
|
|
27149
|
+
"application/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.MessageDetailsResponse"];
|
|
27150
|
+
"text/json": components["schemas"]["Roblox.PrivateMessages.Api.Models.MessageDetailsResponse"];
|
|
27151
|
+
};
|
|
27152
|
+
};
|
|
27153
|
+
/** @description 2: Message does not exist or the current user is not authorized to view it. */
|
|
27154
|
+
400: {
|
|
27155
|
+
headers: {
|
|
27156
|
+
[name: string]: unknown;
|
|
27157
|
+
};
|
|
27158
|
+
content?: never;
|
|
27159
|
+
};
|
|
27160
|
+
/** @description 0: Authorization has been denied for this request. */
|
|
27161
|
+
401: {
|
|
27162
|
+
headers: {
|
|
27163
|
+
[name: string]: unknown;
|
|
27702
27164
|
};
|
|
27165
|
+
content?: never;
|
|
27703
27166
|
};
|
|
27704
27167
|
};
|
|
27705
27168
|
};
|
|
@@ -27711,7 +27174,7 @@ export interface paths {
|
|
|
27711
27174
|
patch?: never;
|
|
27712
27175
|
trace?: never;
|
|
27713
27176
|
};
|
|
27714
|
-
"/v1/metadata
|
|
27177
|
+
"/v1/metadata": {
|
|
27715
27178
|
parameters: {
|
|
27716
27179
|
query?: never;
|
|
27717
27180
|
header?: never;
|
|
@@ -27734,8 +27197,8 @@ export interface paths {
|
|
|
27734
27197
|
[name: string]: unknown;
|
|
27735
27198
|
};
|
|
27736
27199
|
content: {
|
|
27737
|
-
"application/json": components["schemas"]["Roblox.
|
|
27738
|
-
"text/json": components["schemas"]["Roblox.
|
|
27200
|
+
"application/json": components["schemas"]["Roblox.AccountInformation.Api.Models.MetadataResponse"];
|
|
27201
|
+
"text/json": components["schemas"]["Roblox.AccountInformation.Api.Models.MetadataResponse"];
|
|
27739
27202
|
};
|
|
27740
27203
|
};
|
|
27741
27204
|
};
|
|
@@ -27748,18 +27211,17 @@ export interface paths {
|
|
|
27748
27211
|
patch?: never;
|
|
27749
27212
|
trace?: never;
|
|
27750
27213
|
};
|
|
27751
|
-
"/v1/metadata#
|
|
27214
|
+
"/v1/metadata#AuthenticationApi": {
|
|
27752
27215
|
parameters: {
|
|
27753
27216
|
query?: never;
|
|
27754
27217
|
header?: never;
|
|
27755
27218
|
path?: never;
|
|
27756
27219
|
cookie?: never;
|
|
27757
27220
|
};
|
|
27221
|
+
/** Get the metadata */
|
|
27758
27222
|
get: {
|
|
27759
27223
|
parameters: {
|
|
27760
|
-
query?:
|
|
27761
|
-
targetUserId?: number;
|
|
27762
|
-
};
|
|
27224
|
+
query?: never;
|
|
27763
27225
|
header?: never;
|
|
27764
27226
|
path?: never;
|
|
27765
27227
|
cookie?: never;
|
|
@@ -27772,8 +27234,8 @@ export interface paths {
|
|
|
27772
27234
|
[name: string]: unknown;
|
|
27773
27235
|
};
|
|
27774
27236
|
content: {
|
|
27775
|
-
"application/json": components["schemas"]["Roblox.
|
|
27776
|
-
"text/json": components["schemas"]["Roblox.
|
|
27237
|
+
"application/json": components["schemas"]["Roblox.Authentication.Api.Models.MetadataResponse"];
|
|
27238
|
+
"text/json": components["schemas"]["Roblox.Authentication.Api.Models.MetadataResponse"];
|
|
27777
27239
|
};
|
|
27778
27240
|
};
|
|
27779
27241
|
};
|
|
@@ -27786,17 +27248,18 @@ export interface paths {
|
|
|
27786
27248
|
patch?: never;
|
|
27787
27249
|
trace?: never;
|
|
27788
27250
|
};
|
|
27789
|
-
"/v1/metadata#
|
|
27251
|
+
"/v1/metadata#FriendsApi": {
|
|
27790
27252
|
parameters: {
|
|
27791
27253
|
query?: never;
|
|
27792
27254
|
header?: never;
|
|
27793
27255
|
path?: never;
|
|
27794
27256
|
cookie?: never;
|
|
27795
27257
|
};
|
|
27796
|
-
/** Return list of thumbnail meta data. */
|
|
27797
27258
|
get: {
|
|
27798
27259
|
parameters: {
|
|
27799
|
-
query?:
|
|
27260
|
+
query?: {
|
|
27261
|
+
targetUserId?: number;
|
|
27262
|
+
};
|
|
27800
27263
|
header?: never;
|
|
27801
27264
|
path?: never;
|
|
27802
27265
|
cookie?: never;
|
|
@@ -27809,8 +27272,8 @@ export interface paths {
|
|
|
27809
27272
|
[name: string]: unknown;
|
|
27810
27273
|
};
|
|
27811
27274
|
content: {
|
|
27812
|
-
"application/json": components["schemas"]["Roblox.
|
|
27813
|
-
"text/json": components["schemas"]["Roblox.
|
|
27275
|
+
"application/json": components["schemas"]["Roblox.Friends.Api.Models.Response.FriendsPageMetadataResponse"];
|
|
27276
|
+
"text/json": components["schemas"]["Roblox.Friends.Api.Models.Response.FriendsPageMetadataResponse"];
|
|
27814
27277
|
};
|
|
27815
27278
|
};
|
|
27816
27279
|
};
|
|
@@ -33734,6 +33197,13 @@ export interface paths {
|
|
|
33734
33197
|
"text/json": components["schemas"]["Roblox.Web.WebAPI.Models.ApiPageResponse_Roblox.Badges.Api.BadgeResponse_"];
|
|
33735
33198
|
};
|
|
33736
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
|
+
};
|
|
33737
33207
|
/** @description 3: The game is invalid or does not exist. */
|
|
33738
33208
|
404: {
|
|
33739
33209
|
headers: {
|
|
@@ -37454,7 +36924,7 @@ export interface paths {
|
|
|
37454
36924
|
parameters: {
|
|
37455
36925
|
query?: {
|
|
37456
36926
|
/** @description The asset type for the collectibles you're trying to get. */
|
|
37457
|
-
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;
|
|
37458
36928
|
/** @description The number of results per request. */
|
|
37459
36929
|
limit?: 10 | 25 | 50 | 100;
|
|
37460
36930
|
/** @description The paging cursor for the previous or next page. */
|
|
@@ -48049,7 +47519,7 @@ export interface paths {
|
|
|
48049
47519
|
parameters: {
|
|
48050
47520
|
query: {
|
|
48051
47521
|
/** @description The asset types to query. */
|
|
48052
|
-
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)[];
|
|
48053
47523
|
/** @description Filters moderated assets when enabled. */
|
|
48054
47524
|
filterDisapprovedAssets?: boolean;
|
|
48055
47525
|
/** @description Filters moderated assets and assets pending review when enabled. */
|
|
@@ -49372,9 +48842,6 @@ export interface components {
|
|
|
49372
48842
|
*/
|
|
49373
48843
|
collectionName?: string | null;
|
|
49374
48844
|
} | null;
|
|
49375
|
-
CreateThumbnailPersonalizationRequest: {
|
|
49376
|
-
homepageThumbnailIds: string[];
|
|
49377
|
-
};
|
|
49378
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). */
|
|
49379
48846
|
CreationContext: {
|
|
49380
48847
|
/** @description Desired privacy setting for the asset on creation. Only applies to asset types that support privacy override. */
|
|
@@ -49940,10 +49407,6 @@ export interface components {
|
|
|
49940
49407
|
* @enum {string}
|
|
49941
49408
|
*/
|
|
49942
49409
|
FilterType: "String" | "Number";
|
|
49943
|
-
FindThumbnailsResponse: {
|
|
49944
|
-
homepageThumbnails: components["schemas"]["HomepageThumbnail"][];
|
|
49945
|
-
nextCursor?: string | null;
|
|
49946
|
-
};
|
|
49947
49410
|
/**
|
|
49948
49411
|
* @description Represents metadata about the long-running operation corresponding to a
|
|
49949
49412
|
* FlushMemoryStore request.
|
|
@@ -50744,16 +50207,6 @@ export interface components {
|
|
|
50744
50207
|
*/
|
|
50745
50208
|
bypassSlowMode?: boolean;
|
|
50746
50209
|
};
|
|
50747
|
-
HomepageThumbnail: {
|
|
50748
|
-
homepageThumbnailId: string;
|
|
50749
|
-
/** Format: int64 */
|
|
50750
|
-
assetId: number;
|
|
50751
|
-
moderationStatus: components["schemas"]["ThumbnailPersonalizationApi.ModerationStatus"];
|
|
50752
|
-
personalizedConfigStatus: components["schemas"]["PersonalizedConfigStatus"];
|
|
50753
|
-
homepageThumbnailStatus: components["schemas"]["HomepageThumbnailStatus"];
|
|
50754
|
-
};
|
|
50755
|
-
/** @enum {string} */
|
|
50756
|
-
HomepageThumbnailStatus: "Active" | "Spammy";
|
|
50757
50210
|
HttpContent: {
|
|
50758
50211
|
readonly headers?: components["schemas"]["StringStringIEnumerableKeyValuePair"][] | null;
|
|
50759
50212
|
};
|
|
@@ -52318,8 +51771,6 @@ export interface components {
|
|
|
52318
51771
|
/** @description The name of the entry. */
|
|
52319
51772
|
readonly id?: string;
|
|
52320
51773
|
};
|
|
52321
|
-
/** @enum {string} */
|
|
52322
|
-
PersonalizedConfigStatus: "Active" | "Inactive";
|
|
52323
51774
|
/** @description Represents a Roblox place. */
|
|
52324
51775
|
Place: {
|
|
52325
51776
|
/**
|
|
@@ -52815,9 +52266,11 @@ export interface components {
|
|
|
52815
52266
|
* ExtendedServicesConfig
|
|
52816
52267
|
*
|
|
52817
52268
|
* LeaderboardsConfig
|
|
52269
|
+
*
|
|
52270
|
+
* ExperienceUserConfig
|
|
52818
52271
|
* @enum {string}
|
|
52819
52272
|
*/
|
|
52820
|
-
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig";
|
|
52273
|
+
Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig" | "ExperienceUserConfig";
|
|
52821
52274
|
/**
|
|
52822
52275
|
* @description The current state of a place restart.
|
|
52823
52276
|
* @enum {string}
|
|
@@ -56519,6 +55972,7 @@ export interface components {
|
|
|
56519
55972
|
id?: number;
|
|
56520
55973
|
};
|
|
56521
55974
|
"Roblox.Catalog.Api.MultigetItemDetailsRequestModel": {
|
|
55975
|
+
/** @description The items to retrieve details for. Each endpoint has an item count limit per request. */
|
|
56522
55976
|
items?: components["schemas"]["Roblox.Catalog.Api.MultigetItemDetailsRequestItem"][];
|
|
56523
55977
|
};
|
|
56524
55978
|
/** @description A model to represent owned bundles. */
|
|
@@ -56723,12 +56177,6 @@ export interface components {
|
|
|
56723
56177
|
*/
|
|
56724
56178
|
isFlagOnly?: boolean;
|
|
56725
56179
|
};
|
|
56726
|
-
"Roblox.Contacts.Api.Models.Response.ContactsMetadataResponseModel": {
|
|
56727
|
-
/** Format: int32 */
|
|
56728
|
-
multiGetContactsMaxSize?: number;
|
|
56729
|
-
/** Format: int32 */
|
|
56730
|
-
multiGetContactsCacheTTLinMS?: number;
|
|
56731
|
-
};
|
|
56732
56180
|
"Roblox.Contacts.Api.Request.GetUserTagsRequestModel": {
|
|
56733
56181
|
targetUserIds?: number[];
|
|
56734
56182
|
};
|
|
@@ -59017,6 +58465,8 @@ export interface components {
|
|
|
59017
58465
|
Recipients?: components["schemas"]["Roblox.Groups.Api.PayoutRecipientRequest"][];
|
|
59018
58466
|
/** @description The idempotency key of the payout request. */
|
|
59019
58467
|
IdempotencyKey?: string;
|
|
58468
|
+
/** @description Optional watermark contributions for DevEx attribution tracking. */
|
|
58469
|
+
WatermarkContributions?: components["schemas"]["Roblox.Groups.Api.WatermarkContributionRequest"][];
|
|
59020
58470
|
};
|
|
59021
58471
|
/** @description A request model for setting the authenticated user's primary group. */
|
|
59022
58472
|
"Roblox.Groups.Api.PostGroupStatusRequest": {
|
|
@@ -59273,6 +58723,15 @@ export interface components {
|
|
|
59273
58723
|
user?: components["schemas"]["Roblox.Groups.Api.Models.Response.UserModel"];
|
|
59274
58724
|
role?: components["schemas"]["Roblox.Groups.Api.GroupRoleResponse"];
|
|
59275
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
|
+
};
|
|
59276
58735
|
"Roblox.Groups.Client.BlockedKeywordModel": {
|
|
59277
58736
|
id?: string;
|
|
59278
58737
|
keyword?: string;
|
|
@@ -59393,10 +58852,10 @@ export interface components {
|
|
|
59393
58852
|
name?: string;
|
|
59394
58853
|
/**
|
|
59395
58854
|
* Format: int32
|
|
59396
|
-
* @description ['User' = 1, 'Group' = 2]
|
|
58855
|
+
* @description ['User' = 1, 'Group' = 2, 'Experience' = 3]
|
|
59397
58856
|
* @enum {integer}
|
|
59398
58857
|
*/
|
|
59399
|
-
type?: 1 | 2;
|
|
58858
|
+
type?: 1 | 2 | 3;
|
|
59400
58859
|
};
|
|
59401
58860
|
/** @description Model representing an inventory item */
|
|
59402
58861
|
"Roblox.Inventory.Api.Models.IItemModel": {
|
|
@@ -59514,10 +58973,10 @@ export interface components {
|
|
|
59514
58973
|
name?: string;
|
|
59515
58974
|
/**
|
|
59516
58975
|
* Format: int32
|
|
59517
|
-
* @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]
|
|
59518
58977
|
* @enum {integer}
|
|
59519
58978
|
*/
|
|
59520
|
-
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;
|
|
59521
58980
|
/**
|
|
59522
58981
|
* Format: date-time
|
|
59523
58982
|
* @description The created date time of the user asset.
|
|
@@ -60335,16 +59794,6 @@ export interface components {
|
|
|
60335
59794
|
canAfford?: boolean;
|
|
60336
59795
|
};
|
|
60337
59796
|
/** @description A response model for thumbnails which belong to a specific universe ID */
|
|
60338
|
-
"Roblox.Thumbnails.Api.Models.ThumbnailMetaDataResponse": {
|
|
60339
|
-
/** @description webapp use cache */
|
|
60340
|
-
isWebappUseCacheEnabled?: boolean;
|
|
60341
|
-
/**
|
|
60342
|
-
* Format: date-span
|
|
60343
|
-
* @description webapp caching expiration in ms
|
|
60344
|
-
*/
|
|
60345
|
-
webappCacheExpirationTimspan?: string;
|
|
60346
|
-
};
|
|
60347
|
-
/** @description A response model for thumbnails which belong to a specific universe ID */
|
|
60348
59797
|
"Roblox.Thumbnails.Api.Models.UniverseThumbnailsResponse": {
|
|
60349
59798
|
/**
|
|
60350
59799
|
* Format: int64
|
|
@@ -62032,6 +61481,13 @@ export interface components {
|
|
|
62032
61481
|
tags?: string[] | null;
|
|
62033
61482
|
/** @description The category path to filter by. */
|
|
62034
61483
|
categoryPath?: string | null;
|
|
61484
|
+
/**
|
|
61485
|
+
* @description Optional swimlane identifier (e.g. "trending", "essential", "priced").
|
|
61486
|
+
* Resolves through Toolbox.Service.Interfaces.Swimlanes.ISwimlaneRegistry to a provider whose
|
|
61487
|
+
* default sort intent and search-builder configuration are applied to the
|
|
61488
|
+
* query. Unknown, disabled, or category-ineligible values yield 400.
|
|
61489
|
+
*/
|
|
61490
|
+
swimlane?: string | null;
|
|
62035
61491
|
/** @description Indicates which fields will be populated in the response. */
|
|
62036
61492
|
searchView?: components["schemas"]["SearchView"];
|
|
62037
61493
|
/** @description Audio-specific search filters. */
|
|
@@ -62543,8 +61999,6 @@ export interface components {
|
|
|
62543
61999
|
*/
|
|
62544
62000
|
reason?: "EXPIRATION_REASON_UNSPECIFIED" | "PRODUCT_INACTIVE" | "PRODUCT_DELETED" | "SUBSCRIBER_CANCELLED" | "SUBSCRIBER_REFUNDED" | "LAPSED";
|
|
62545
62001
|
};
|
|
62546
|
-
/** @enum {string} */
|
|
62547
|
-
"ThumbnailPersonalizationApi.ModerationStatus": "Reviewing" | "Rejected" | "Approved" | "Unspecified";
|
|
62548
62002
|
"ThumbnailsApi.Roblox.Web.Responses.Thumbnails.ThumbnailResponse": {
|
|
62549
62003
|
/** Format: int64 */
|
|
62550
62004
|
targetId?: number;
|
|
@@ -62716,6 +62170,10 @@ export interface components {
|
|
|
62716
62170
|
/** Format: int64 */
|
|
62717
62171
|
licensingPaymentClawbackOutgoingTotal?: number;
|
|
62718
62172
|
/** Format: int64 */
|
|
62173
|
+
incomingRobuxTransferTotal?: number;
|
|
62174
|
+
/** Format: int64 */
|
|
62175
|
+
outgoingRobuxTransferTotal?: number;
|
|
62176
|
+
/** Format: int64 */
|
|
62719
62177
|
robloxSelectOutgoingTotal?: number;
|
|
62720
62178
|
};
|
|
62721
62179
|
/** @enum {string} */
|
|
@@ -63105,32 +62563,6 @@ export interface components {
|
|
|
63105
62563
|
UpdateMatchmakingServerAttributeDefinitionResponse: {
|
|
63106
62564
|
playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
|
|
63107
62565
|
};
|
|
63108
|
-
UpdateThumbnailPersonalizationRequest: {
|
|
63109
|
-
homepageThumbnailIds: string[];
|
|
63110
|
-
id: string;
|
|
63111
|
-
};
|
|
63112
|
-
/**
|
|
63113
|
-
* Format: int32
|
|
63114
|
-
* @enum {integer}
|
|
63115
|
-
*/
|
|
63116
|
-
UploadStatus: 1 | 2;
|
|
63117
|
-
UploadThumbnailStatus: {
|
|
63118
|
-
homepageThumbnailId?: string | null;
|
|
63119
|
-
/** Format: int64 */
|
|
63120
|
-
assetId?: number;
|
|
63121
|
-
moderationStatus?: components["schemas"]["ThumbnailPersonalizationApi.ModerationStatus"];
|
|
63122
|
-
};
|
|
63123
|
-
UploadThumbnailsResponse: {
|
|
63124
|
-
fileToOperationIdDict: {
|
|
63125
|
-
[key: string]: string | null;
|
|
63126
|
-
};
|
|
63127
|
-
};
|
|
63128
|
-
UploadThumbnailsStatusResponse: {
|
|
63129
|
-
uploadStatus: components["schemas"]["UploadStatus"];
|
|
63130
|
-
uploadThumbnailStatusDict: {
|
|
63131
|
-
[key: string]: components["schemas"]["UploadThumbnailStatus"];
|
|
63132
|
-
};
|
|
63133
|
-
};
|
|
63134
62566
|
/** @description Represents any registered user of Roblox. */
|
|
63135
62567
|
User: {
|
|
63136
62568
|
/**
|
|
@@ -67212,6 +66644,8 @@ export interface operations {
|
|
|
67212
66644
|
* ExtendedServicesConfig
|
|
67213
66645
|
*
|
|
67214
66646
|
* LeaderboardsConfig
|
|
66647
|
+
*
|
|
66648
|
+
* ExperienceUserConfig
|
|
67215
66649
|
*/
|
|
67216
66650
|
repository: components["schemas"]["Repository"];
|
|
67217
66651
|
};
|
|
@@ -67273,6 +66707,8 @@ export interface operations {
|
|
|
67273
66707
|
* ExtendedServicesConfig
|
|
67274
66708
|
*
|
|
67275
66709
|
* LeaderboardsConfig
|
|
66710
|
+
*
|
|
66711
|
+
* ExperienceUserConfig
|
|
67276
66712
|
*/
|
|
67277
66713
|
repository: components["schemas"]["Repository"];
|
|
67278
66714
|
};
|
|
@@ -67334,6 +66770,8 @@ export interface operations {
|
|
|
67334
66770
|
* ExtendedServicesConfig
|
|
67335
66771
|
*
|
|
67336
66772
|
* LeaderboardsConfig
|
|
66773
|
+
*
|
|
66774
|
+
* ExperienceUserConfig
|
|
67337
66775
|
*/
|
|
67338
66776
|
repository: components["schemas"]["Repository"];
|
|
67339
66777
|
};
|
|
@@ -67402,6 +66840,8 @@ export interface operations {
|
|
|
67402
66840
|
* ExtendedServicesConfig
|
|
67403
66841
|
*
|
|
67404
66842
|
* LeaderboardsConfig
|
|
66843
|
+
*
|
|
66844
|
+
* ExperienceUserConfig
|
|
67405
66845
|
*/
|
|
67406
66846
|
repository: components["schemas"]["Repository"];
|
|
67407
66847
|
};
|
|
@@ -67470,6 +66910,8 @@ export interface operations {
|
|
|
67470
66910
|
* ExtendedServicesConfig
|
|
67471
66911
|
*
|
|
67472
66912
|
* LeaderboardsConfig
|
|
66913
|
+
*
|
|
66914
|
+
* ExperienceUserConfig
|
|
67473
66915
|
*/
|
|
67474
66916
|
repository: components["schemas"]["Repository"];
|
|
67475
66917
|
};
|
|
@@ -67538,6 +66980,8 @@ export interface operations {
|
|
|
67538
66980
|
* ExtendedServicesConfig
|
|
67539
66981
|
*
|
|
67540
66982
|
* LeaderboardsConfig
|
|
66983
|
+
*
|
|
66984
|
+
* ExperienceUserConfig
|
|
67541
66985
|
*/
|
|
67542
66986
|
repository: components["schemas"]["Repository"];
|
|
67543
66987
|
};
|
|
@@ -67599,6 +67043,8 @@ export interface operations {
|
|
|
67599
67043
|
* ExtendedServicesConfig
|
|
67600
67044
|
*
|
|
67601
67045
|
* LeaderboardsConfig
|
|
67046
|
+
*
|
|
67047
|
+
* ExperienceUserConfig
|
|
67602
67048
|
*/
|
|
67603
67049
|
repository: components["schemas"]["Repository"];
|
|
67604
67050
|
};
|
|
@@ -67682,6 +67128,8 @@ export interface operations {
|
|
|
67682
67128
|
* ExtendedServicesConfig
|
|
67683
67129
|
*
|
|
67684
67130
|
* LeaderboardsConfig
|
|
67131
|
+
*
|
|
67132
|
+
* ExperienceUserConfig
|
|
67685
67133
|
*/
|
|
67686
67134
|
repository: components["schemas"]["Repository"];
|
|
67687
67135
|
};
|
|
@@ -67743,6 +67191,8 @@ export interface operations {
|
|
|
67743
67191
|
* ExtendedServicesConfig
|
|
67744
67192
|
*
|
|
67745
67193
|
* LeaderboardsConfig
|
|
67194
|
+
*
|
|
67195
|
+
* ExperienceUserConfig
|
|
67746
67196
|
*/
|
|
67747
67197
|
repository: components["schemas"]["Repository"];
|
|
67748
67198
|
revisionId: string;
|
|
@@ -69444,443 +68894,6 @@ export interface operations {
|
|
|
69444
68894
|
};
|
|
69445
68895
|
};
|
|
69446
68896
|
};
|
|
69447
|
-
HomepageThumbnail_FindThumbnailPersonalizations: {
|
|
69448
|
-
parameters: {
|
|
69449
|
-
query?: {
|
|
69450
|
-
status?: components["schemas"]["PersonalizedConfigStatus"];
|
|
69451
|
-
limit?: number;
|
|
69452
|
-
cursor?: string;
|
|
69453
|
-
};
|
|
69454
|
-
header?: never;
|
|
69455
|
-
path: {
|
|
69456
|
-
universeId: number;
|
|
69457
|
-
};
|
|
69458
|
-
cookie?: never;
|
|
69459
|
-
};
|
|
69460
|
-
requestBody?: never;
|
|
69461
|
-
responses: {
|
|
69462
|
-
/** @description Success */
|
|
69463
|
-
200: {
|
|
69464
|
-
headers: {
|
|
69465
|
-
[name: string]: unknown;
|
|
69466
|
-
};
|
|
69467
|
-
content: {
|
|
69468
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69469
|
-
};
|
|
69470
|
-
};
|
|
69471
|
-
/** @description Bad Request */
|
|
69472
|
-
400: {
|
|
69473
|
-
headers: {
|
|
69474
|
-
[name: string]: unknown;
|
|
69475
|
-
};
|
|
69476
|
-
content: {
|
|
69477
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69478
|
-
};
|
|
69479
|
-
};
|
|
69480
|
-
/** @description Unauthorized */
|
|
69481
|
-
401: {
|
|
69482
|
-
headers: {
|
|
69483
|
-
[name: string]: unknown;
|
|
69484
|
-
};
|
|
69485
|
-
content: {
|
|
69486
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69487
|
-
};
|
|
69488
|
-
};
|
|
69489
|
-
/** @description Forbidden */
|
|
69490
|
-
403: {
|
|
69491
|
-
headers: {
|
|
69492
|
-
[name: string]: unknown;
|
|
69493
|
-
};
|
|
69494
|
-
content: {
|
|
69495
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69496
|
-
};
|
|
69497
|
-
};
|
|
69498
|
-
/** @description Server Error */
|
|
69499
|
-
500: {
|
|
69500
|
-
headers: {
|
|
69501
|
-
[name: string]: unknown;
|
|
69502
|
-
};
|
|
69503
|
-
content: {
|
|
69504
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69505
|
-
};
|
|
69506
|
-
};
|
|
69507
|
-
};
|
|
69508
|
-
};
|
|
69509
|
-
HomepageThumbnail_CreateThumbnailPersonalization: {
|
|
69510
|
-
parameters: {
|
|
69511
|
-
query?: never;
|
|
69512
|
-
header?: never;
|
|
69513
|
-
path: {
|
|
69514
|
-
universeId: number;
|
|
69515
|
-
};
|
|
69516
|
-
cookie?: never;
|
|
69517
|
-
};
|
|
69518
|
-
requestBody?: {
|
|
69519
|
-
content: {
|
|
69520
|
-
"application/json-patch+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69521
|
-
"application/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69522
|
-
"text/json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69523
|
-
"application/*+json": components["schemas"]["CreateThumbnailPersonalizationRequest"];
|
|
69524
|
-
};
|
|
69525
|
-
};
|
|
69526
|
-
responses: {
|
|
69527
|
-
/** @description Success */
|
|
69528
|
-
200: {
|
|
69529
|
-
headers: {
|
|
69530
|
-
[name: string]: unknown;
|
|
69531
|
-
};
|
|
69532
|
-
content: {
|
|
69533
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69534
|
-
};
|
|
69535
|
-
};
|
|
69536
|
-
/** @description Bad Request */
|
|
69537
|
-
400: {
|
|
69538
|
-
headers: {
|
|
69539
|
-
[name: string]: unknown;
|
|
69540
|
-
};
|
|
69541
|
-
content: {
|
|
69542
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69543
|
-
};
|
|
69544
|
-
};
|
|
69545
|
-
/** @description Unauthorized */
|
|
69546
|
-
401: {
|
|
69547
|
-
headers: {
|
|
69548
|
-
[name: string]: unknown;
|
|
69549
|
-
};
|
|
69550
|
-
content: {
|
|
69551
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69552
|
-
};
|
|
69553
|
-
};
|
|
69554
|
-
/** @description Forbidden */
|
|
69555
|
-
403: {
|
|
69556
|
-
headers: {
|
|
69557
|
-
[name: string]: unknown;
|
|
69558
|
-
};
|
|
69559
|
-
content: {
|
|
69560
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69561
|
-
};
|
|
69562
|
-
};
|
|
69563
|
-
/** @description Server Error */
|
|
69564
|
-
500: {
|
|
69565
|
-
headers: {
|
|
69566
|
-
[name: string]: unknown;
|
|
69567
|
-
};
|
|
69568
|
-
content: {
|
|
69569
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69570
|
-
};
|
|
69571
|
-
};
|
|
69572
|
-
};
|
|
69573
|
-
};
|
|
69574
|
-
HomepageThumbnail_UpdateThumbnailPersonalization: {
|
|
69575
|
-
parameters: {
|
|
69576
|
-
query?: never;
|
|
69577
|
-
header?: never;
|
|
69578
|
-
path: {
|
|
69579
|
-
universeId: number;
|
|
69580
|
-
};
|
|
69581
|
-
cookie?: never;
|
|
69582
|
-
};
|
|
69583
|
-
requestBody?: {
|
|
69584
|
-
content: {
|
|
69585
|
-
"application/json-patch+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69586
|
-
"application/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69587
|
-
"text/json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69588
|
-
"application/*+json": components["schemas"]["UpdateThumbnailPersonalizationRequest"];
|
|
69589
|
-
};
|
|
69590
|
-
};
|
|
69591
|
-
responses: {
|
|
69592
|
-
/** @description Success */
|
|
69593
|
-
200: {
|
|
69594
|
-
headers: {
|
|
69595
|
-
[name: string]: unknown;
|
|
69596
|
-
};
|
|
69597
|
-
content: {
|
|
69598
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69599
|
-
};
|
|
69600
|
-
};
|
|
69601
|
-
/** @description Bad Request */
|
|
69602
|
-
400: {
|
|
69603
|
-
headers: {
|
|
69604
|
-
[name: string]: unknown;
|
|
69605
|
-
};
|
|
69606
|
-
content: {
|
|
69607
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69608
|
-
};
|
|
69609
|
-
};
|
|
69610
|
-
/** @description Unauthorized */
|
|
69611
|
-
401: {
|
|
69612
|
-
headers: {
|
|
69613
|
-
[name: string]: unknown;
|
|
69614
|
-
};
|
|
69615
|
-
content: {
|
|
69616
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69617
|
-
};
|
|
69618
|
-
};
|
|
69619
|
-
/** @description Forbidden */
|
|
69620
|
-
403: {
|
|
69621
|
-
headers: {
|
|
69622
|
-
[name: string]: unknown;
|
|
69623
|
-
};
|
|
69624
|
-
content: {
|
|
69625
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69626
|
-
};
|
|
69627
|
-
};
|
|
69628
|
-
/** @description Server Error */
|
|
69629
|
-
500: {
|
|
69630
|
-
headers: {
|
|
69631
|
-
[name: string]: unknown;
|
|
69632
|
-
};
|
|
69633
|
-
content: {
|
|
69634
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69635
|
-
};
|
|
69636
|
-
};
|
|
69637
|
-
};
|
|
69638
|
-
};
|
|
69639
|
-
HomepageThumbnail_GetHomepageThumbnails: {
|
|
69640
|
-
parameters: {
|
|
69641
|
-
query?: {
|
|
69642
|
-
limit?: number;
|
|
69643
|
-
nextCursor?: string;
|
|
69644
|
-
};
|
|
69645
|
-
header?: never;
|
|
69646
|
-
path: {
|
|
69647
|
-
universeId: number;
|
|
69648
|
-
};
|
|
69649
|
-
cookie?: never;
|
|
69650
|
-
};
|
|
69651
|
-
requestBody?: never;
|
|
69652
|
-
responses: {
|
|
69653
|
-
/** @description Success */
|
|
69654
|
-
200: {
|
|
69655
|
-
headers: {
|
|
69656
|
-
[name: string]: unknown;
|
|
69657
|
-
};
|
|
69658
|
-
content: {
|
|
69659
|
-
"application/json": components["schemas"]["FindThumbnailsResponse"];
|
|
69660
|
-
};
|
|
69661
|
-
};
|
|
69662
|
-
/** @description Bad Request */
|
|
69663
|
-
400: {
|
|
69664
|
-
headers: {
|
|
69665
|
-
[name: string]: unknown;
|
|
69666
|
-
};
|
|
69667
|
-
content: {
|
|
69668
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69669
|
-
};
|
|
69670
|
-
};
|
|
69671
|
-
/** @description Unauthorized */
|
|
69672
|
-
401: {
|
|
69673
|
-
headers: {
|
|
69674
|
-
[name: string]: unknown;
|
|
69675
|
-
};
|
|
69676
|
-
content: {
|
|
69677
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69678
|
-
};
|
|
69679
|
-
};
|
|
69680
|
-
/** @description Forbidden */
|
|
69681
|
-
403: {
|
|
69682
|
-
headers: {
|
|
69683
|
-
[name: string]: unknown;
|
|
69684
|
-
};
|
|
69685
|
-
content: {
|
|
69686
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69687
|
-
};
|
|
69688
|
-
};
|
|
69689
|
-
/** @description Server Error */
|
|
69690
|
-
500: {
|
|
69691
|
-
headers: {
|
|
69692
|
-
[name: string]: unknown;
|
|
69693
|
-
};
|
|
69694
|
-
content: {
|
|
69695
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69696
|
-
};
|
|
69697
|
-
};
|
|
69698
|
-
};
|
|
69699
|
-
};
|
|
69700
|
-
HomepageThumbnail_DeleteHomepageThumbnails: {
|
|
69701
|
-
parameters: {
|
|
69702
|
-
query?: {
|
|
69703
|
-
homepageThumbnailIds?: string[];
|
|
69704
|
-
};
|
|
69705
|
-
header?: never;
|
|
69706
|
-
path: {
|
|
69707
|
-
universeId: number;
|
|
69708
|
-
};
|
|
69709
|
-
cookie?: never;
|
|
69710
|
-
};
|
|
69711
|
-
requestBody?: never;
|
|
69712
|
-
responses: {
|
|
69713
|
-
/** @description Success */
|
|
69714
|
-
200: {
|
|
69715
|
-
headers: {
|
|
69716
|
-
[name: string]: unknown;
|
|
69717
|
-
};
|
|
69718
|
-
content: {
|
|
69719
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69720
|
-
};
|
|
69721
|
-
};
|
|
69722
|
-
/** @description Bad Request */
|
|
69723
|
-
400: {
|
|
69724
|
-
headers: {
|
|
69725
|
-
[name: string]: unknown;
|
|
69726
|
-
};
|
|
69727
|
-
content: {
|
|
69728
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69729
|
-
};
|
|
69730
|
-
};
|
|
69731
|
-
/** @description Unauthorized */
|
|
69732
|
-
401: {
|
|
69733
|
-
headers: {
|
|
69734
|
-
[name: string]: unknown;
|
|
69735
|
-
};
|
|
69736
|
-
content: {
|
|
69737
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69738
|
-
};
|
|
69739
|
-
};
|
|
69740
|
-
/** @description Forbidden */
|
|
69741
|
-
403: {
|
|
69742
|
-
headers: {
|
|
69743
|
-
[name: string]: unknown;
|
|
69744
|
-
};
|
|
69745
|
-
content: {
|
|
69746
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69747
|
-
};
|
|
69748
|
-
};
|
|
69749
|
-
/** @description Server Error */
|
|
69750
|
-
500: {
|
|
69751
|
-
headers: {
|
|
69752
|
-
[name: string]: unknown;
|
|
69753
|
-
};
|
|
69754
|
-
content: {
|
|
69755
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69756
|
-
};
|
|
69757
|
-
};
|
|
69758
|
-
};
|
|
69759
|
-
};
|
|
69760
|
-
HomepageThumbnail_UploadHomepageThumbnails: {
|
|
69761
|
-
parameters: {
|
|
69762
|
-
query?: never;
|
|
69763
|
-
header?: never;
|
|
69764
|
-
path: {
|
|
69765
|
-
universeId: number;
|
|
69766
|
-
};
|
|
69767
|
-
cookie?: never;
|
|
69768
|
-
};
|
|
69769
|
-
requestBody?: {
|
|
69770
|
-
content: {
|
|
69771
|
-
"multipart/form-data": {
|
|
69772
|
-
files?: string[];
|
|
69773
|
-
};
|
|
69774
|
-
};
|
|
69775
|
-
};
|
|
69776
|
-
responses: {
|
|
69777
|
-
/** @description Success */
|
|
69778
|
-
200: {
|
|
69779
|
-
headers: {
|
|
69780
|
-
[name: string]: unknown;
|
|
69781
|
-
};
|
|
69782
|
-
content: {
|
|
69783
|
-
"application/json": components["schemas"]["UploadThumbnailsResponse"];
|
|
69784
|
-
};
|
|
69785
|
-
};
|
|
69786
|
-
/** @description Bad Request */
|
|
69787
|
-
400: {
|
|
69788
|
-
headers: {
|
|
69789
|
-
[name: string]: unknown;
|
|
69790
|
-
};
|
|
69791
|
-
content: {
|
|
69792
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69793
|
-
};
|
|
69794
|
-
};
|
|
69795
|
-
/** @description Unauthorized */
|
|
69796
|
-
401: {
|
|
69797
|
-
headers: {
|
|
69798
|
-
[name: string]: unknown;
|
|
69799
|
-
};
|
|
69800
|
-
content: {
|
|
69801
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69802
|
-
};
|
|
69803
|
-
};
|
|
69804
|
-
/** @description Forbidden */
|
|
69805
|
-
403: {
|
|
69806
|
-
headers: {
|
|
69807
|
-
[name: string]: unknown;
|
|
69808
|
-
};
|
|
69809
|
-
content: {
|
|
69810
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69811
|
-
};
|
|
69812
|
-
};
|
|
69813
|
-
/** @description Server Error */
|
|
69814
|
-
500: {
|
|
69815
|
-
headers: {
|
|
69816
|
-
[name: string]: unknown;
|
|
69817
|
-
};
|
|
69818
|
-
content: {
|
|
69819
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69820
|
-
};
|
|
69821
|
-
};
|
|
69822
|
-
};
|
|
69823
|
-
};
|
|
69824
|
-
HomepageThumbnail_GetHomepageThumbnailsStatus: {
|
|
69825
|
-
parameters: {
|
|
69826
|
-
query?: {
|
|
69827
|
-
operationIds?: string[];
|
|
69828
|
-
};
|
|
69829
|
-
header?: never;
|
|
69830
|
-
path: {
|
|
69831
|
-
universeId: number;
|
|
69832
|
-
};
|
|
69833
|
-
cookie?: never;
|
|
69834
|
-
};
|
|
69835
|
-
requestBody?: never;
|
|
69836
|
-
responses: {
|
|
69837
|
-
/** @description Success */
|
|
69838
|
-
200: {
|
|
69839
|
-
headers: {
|
|
69840
|
-
[name: string]: unknown;
|
|
69841
|
-
};
|
|
69842
|
-
content: {
|
|
69843
|
-
"application/json": components["schemas"]["UploadThumbnailsStatusResponse"];
|
|
69844
|
-
};
|
|
69845
|
-
};
|
|
69846
|
-
/** @description Bad Request */
|
|
69847
|
-
400: {
|
|
69848
|
-
headers: {
|
|
69849
|
-
[name: string]: unknown;
|
|
69850
|
-
};
|
|
69851
|
-
content: {
|
|
69852
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69853
|
-
};
|
|
69854
|
-
};
|
|
69855
|
-
/** @description Unauthorized */
|
|
69856
|
-
401: {
|
|
69857
|
-
headers: {
|
|
69858
|
-
[name: string]: unknown;
|
|
69859
|
-
};
|
|
69860
|
-
content: {
|
|
69861
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69862
|
-
};
|
|
69863
|
-
};
|
|
69864
|
-
/** @description Forbidden */
|
|
69865
|
-
403: {
|
|
69866
|
-
headers: {
|
|
69867
|
-
[name: string]: unknown;
|
|
69868
|
-
};
|
|
69869
|
-
content: {
|
|
69870
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69871
|
-
};
|
|
69872
|
-
};
|
|
69873
|
-
/** @description Server Error */
|
|
69874
|
-
500: {
|
|
69875
|
-
headers: {
|
|
69876
|
-
[name: string]: unknown;
|
|
69877
|
-
};
|
|
69878
|
-
content: {
|
|
69879
|
-
"application/json": components["schemas"]["ActionResult"];
|
|
69880
|
-
};
|
|
69881
|
-
};
|
|
69882
|
-
};
|
|
69883
|
-
};
|
|
69884
68897
|
Saves_GetSaves: {
|
|
69885
68898
|
parameters: {
|
|
69886
68899
|
query?: {
|