@jacobhumston/roblox-openapi-ts 1.0.24 → 1.0.25
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 +312 -5
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -9718,6 +9718,57 @@ export interface paths {
|
|
|
9718
9718
|
patch?: never;
|
|
9719
9719
|
trace?: never;
|
|
9720
9720
|
};
|
|
9721
|
+
"/place-version-history-api/v1/{placeId}/contributors": {
|
|
9722
|
+
parameters: {
|
|
9723
|
+
query?: never;
|
|
9724
|
+
header?: never;
|
|
9725
|
+
path?: never;
|
|
9726
|
+
cookie?: never;
|
|
9727
|
+
};
|
|
9728
|
+
/** Endpoint used to fetch all previous contributors of a place. */
|
|
9729
|
+
get: operations["PlaceVersion_GetPlaceContributors"];
|
|
9730
|
+
put?: never;
|
|
9731
|
+
post?: never;
|
|
9732
|
+
delete?: never;
|
|
9733
|
+
options?: never;
|
|
9734
|
+
head?: never;
|
|
9735
|
+
patch?: never;
|
|
9736
|
+
trace?: never;
|
|
9737
|
+
};
|
|
9738
|
+
"/place-version-history-api/v1/{placeId}/history": {
|
|
9739
|
+
parameters: {
|
|
9740
|
+
query?: never;
|
|
9741
|
+
header?: never;
|
|
9742
|
+
path?: never;
|
|
9743
|
+
cookie?: never;
|
|
9744
|
+
};
|
|
9745
|
+
/** Endpoint used to get place versions, using various filters */
|
|
9746
|
+
get: operations["PlaceVersion_GetPlaceVersionHistory"];
|
|
9747
|
+
put?: never;
|
|
9748
|
+
post?: never;
|
|
9749
|
+
delete?: never;
|
|
9750
|
+
options?: never;
|
|
9751
|
+
head?: never;
|
|
9752
|
+
patch?: never;
|
|
9753
|
+
trace?: never;
|
|
9754
|
+
};
|
|
9755
|
+
"/place-version-history-api/v1/{placeId}/version/{version}/notes": {
|
|
9756
|
+
parameters: {
|
|
9757
|
+
query?: never;
|
|
9758
|
+
header?: never;
|
|
9759
|
+
path?: never;
|
|
9760
|
+
cookie?: never;
|
|
9761
|
+
};
|
|
9762
|
+
get?: never;
|
|
9763
|
+
put?: never;
|
|
9764
|
+
/** Endpoint used to modify the notes of a particular version for a place. */
|
|
9765
|
+
post: operations["PlaceVersion_UpdatePlaceVersionNotes"];
|
|
9766
|
+
delete?: never;
|
|
9767
|
+
options?: never;
|
|
9768
|
+
head?: never;
|
|
9769
|
+
patch?: never;
|
|
9770
|
+
trace?: never;
|
|
9771
|
+
};
|
|
9721
9772
|
"/server-management/v1/universes/{universeId}/places/{placeId}/game-servers:filter-options": {
|
|
9722
9773
|
parameters: {
|
|
9723
9774
|
query?: never;
|
|
@@ -42985,8 +43036,11 @@ export interface components {
|
|
|
42985
43036
|
universeId: number;
|
|
42986
43037
|
/** @description Whether the developer product is currently on sale. */
|
|
42987
43038
|
isForSale: boolean;
|
|
42988
|
-
/**
|
|
42989
|
-
|
|
43039
|
+
/**
|
|
43040
|
+
* @deprecated
|
|
43041
|
+
* @description Whether the developer product is currently available for purchase on the external store page.
|
|
43042
|
+
*/
|
|
43043
|
+
storePageEnabled?: boolean | null;
|
|
42990
43044
|
/** @description The pricing configuration associated with the product. */
|
|
42991
43045
|
priceInformation: components["schemas"]["PriceInformationStruct"] | null;
|
|
42992
43046
|
/** @description Whether the developer product cannot be modified, such as when created as a commerce product. */
|
|
@@ -43402,6 +43456,16 @@ export interface components {
|
|
|
43402
43456
|
TextChat?: number;
|
|
43403
43457
|
} | null;
|
|
43404
43458
|
};
|
|
43459
|
+
GetPlaceContributorsResponse: {
|
|
43460
|
+
nextCursor?: string | null;
|
|
43461
|
+
hasMore?: boolean;
|
|
43462
|
+
contributors?: number[] | null;
|
|
43463
|
+
};
|
|
43464
|
+
GetPlaceVersionHistoryResponse: {
|
|
43465
|
+
nextCursor?: string | null;
|
|
43466
|
+
hasMore?: boolean;
|
|
43467
|
+
placeVersions?: components["schemas"]["PlaceVersion"][] | null;
|
|
43468
|
+
};
|
|
43405
43469
|
GetPrivateServerListResponse: {
|
|
43406
43470
|
data?: components["schemas"]["GameServerResponse"][] | null;
|
|
43407
43471
|
previousPageCursor?: string | null;
|
|
@@ -45506,6 +45570,12 @@ export interface components {
|
|
|
45506
45570
|
*/
|
|
45507
45571
|
response?: components["schemas"]["GoogleProtobufAny"];
|
|
45508
45572
|
};
|
|
45573
|
+
OperationErrorResponse: {
|
|
45574
|
+
/** Format: int32 */
|
|
45575
|
+
readonly code?: number;
|
|
45576
|
+
readonly error?: string | null;
|
|
45577
|
+
message?: string | null;
|
|
45578
|
+
};
|
|
45509
45579
|
/** @description A key-value entry in an ordered data store. */
|
|
45510
45580
|
OrderedDataStoreEntry: {
|
|
45511
45581
|
/**
|
|
@@ -45787,6 +45857,20 @@ export interface components {
|
|
|
45787
45857
|
/** @description The versions of the place that will be closed during the update */
|
|
45788
45858
|
placeVersionsToBeClosed?: number[] | null;
|
|
45789
45859
|
};
|
|
45860
|
+
PlaceVersion: {
|
|
45861
|
+
version?: string | null;
|
|
45862
|
+
title?: string | null;
|
|
45863
|
+
description?: string | null;
|
|
45864
|
+
contributors?: number[] | null;
|
|
45865
|
+
saveType?: components["schemas"]["SaveType"];
|
|
45866
|
+
isPublished?: boolean;
|
|
45867
|
+
publishStatus?: components["schemas"]["PublishStatus"];
|
|
45868
|
+
hasNotes?: boolean;
|
|
45869
|
+
/** Format: date-time */
|
|
45870
|
+
createdTime?: string;
|
|
45871
|
+
/** Format: int64 */
|
|
45872
|
+
createdBy?: number | null;
|
|
45873
|
+
};
|
|
45790
45874
|
/** @description The player categorical signal configuration. */
|
|
45791
45875
|
PlayerCategoricalSignalConfiguration: {
|
|
45792
45876
|
playerAttribute?: components["schemas"]["MatchmakingAttributeReference"];
|
|
@@ -45970,6 +46054,11 @@ export interface components {
|
|
|
45970
46054
|
/** @description The message content that you want to publish to the live server. */
|
|
45971
46055
|
message?: string | null;
|
|
45972
46056
|
};
|
|
46057
|
+
/**
|
|
46058
|
+
* Format: int32
|
|
46059
|
+
* @enum {integer}
|
|
46060
|
+
*/
|
|
46061
|
+
PublishStatus: 0 | 1 | 2;
|
|
45973
46062
|
/** @description Publish a message on the specified topic. */
|
|
45974
46063
|
PublishUniverseMessageRequest: {
|
|
45975
46064
|
/**
|
|
@@ -54458,6 +54547,11 @@ export interface components {
|
|
|
54458
54547
|
endDate?: string | null;
|
|
54459
54548
|
transactionType?: components["schemas"]["TransactionType"];
|
|
54460
54549
|
};
|
|
54550
|
+
/**
|
|
54551
|
+
* Format: int32
|
|
54552
|
+
* @enum {integer}
|
|
54553
|
+
*/
|
|
54554
|
+
SaveType: 0 | 1 | 2;
|
|
54461
54555
|
/**
|
|
54462
54556
|
* @description The category to sort the saves by.
|
|
54463
54557
|
* @enum {string}
|
|
@@ -55600,6 +55694,13 @@ export interface components {
|
|
|
55600
55694
|
UpdateMatchmakingServerAttributeDefinitionResponse: {
|
|
55601
55695
|
playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
|
|
55602
55696
|
};
|
|
55697
|
+
UpdatePlaceVersionNotesRequest: {
|
|
55698
|
+
title?: string | null;
|
|
55699
|
+
description?: string | null;
|
|
55700
|
+
};
|
|
55701
|
+
UpdatePlaceVersionNotesResponse: {
|
|
55702
|
+
placeVersion?: components["schemas"]["PlaceVersion"] | null;
|
|
55703
|
+
};
|
|
55603
55704
|
/** @description Represents any registered user of Roblox. */
|
|
55604
55705
|
User: {
|
|
55605
55706
|
/**
|
|
@@ -60681,6 +60782,7 @@ export interface operations {
|
|
|
60681
60782
|
*/
|
|
60682
60783
|
imageFile?: string | null;
|
|
60683
60784
|
/**
|
|
60785
|
+
* @deprecated
|
|
60684
60786
|
* @description Whether regional pricing should be enabled for the developer product.
|
|
60685
60787
|
* Should not be used when setting isManagedPricingEnabled.
|
|
60686
60788
|
*/
|
|
@@ -60834,11 +60936,15 @@ export interface operations {
|
|
|
60834
60936
|
*/
|
|
60835
60937
|
imageFile?: string | null;
|
|
60836
60938
|
/**
|
|
60939
|
+
* @deprecated
|
|
60837
60940
|
* @description Whether regional pricing should be enabled for the developer product.
|
|
60838
60941
|
* Should not be used when setting isManagedPricingEnabled.
|
|
60839
60942
|
*/
|
|
60840
60943
|
isRegionalPricingEnabled?: boolean | null;
|
|
60841
|
-
/**
|
|
60944
|
+
/**
|
|
60945
|
+
* @deprecated
|
|
60946
|
+
* @description Whether the developer product should be available for purchase on the external store page.
|
|
60947
|
+
*/
|
|
60842
60948
|
storePageEnabled?: boolean | null;
|
|
60843
60949
|
/** @description Whether managed pricing should be enabled for the developer product. */
|
|
60844
60950
|
isManagedPricingEnabled?: boolean | null;
|
|
@@ -60981,7 +61087,10 @@ export interface operations {
|
|
|
60981
61087
|
* @description The default price of the game pass.
|
|
60982
61088
|
*/
|
|
60983
61089
|
price?: number | null;
|
|
60984
|
-
/**
|
|
61090
|
+
/**
|
|
61091
|
+
* @deprecated
|
|
61092
|
+
* @description Whether regional pricing should be enabled for the game pass.
|
|
61093
|
+
*/
|
|
60985
61094
|
isRegionalPricingEnabled?: boolean | null;
|
|
60986
61095
|
/** @description Whether managed pricing should be enabled for the game pass. */
|
|
60987
61096
|
isManagedPricingEnabled?: boolean | null;
|
|
@@ -61136,7 +61245,10 @@ export interface operations {
|
|
|
61136
61245
|
* @description The default price of the game pass.
|
|
61137
61246
|
*/
|
|
61138
61247
|
price?: number | null;
|
|
61139
|
-
/**
|
|
61248
|
+
/**
|
|
61249
|
+
* @deprecated
|
|
61250
|
+
* @description Whether regional pricing should be enabled for the game pass.
|
|
61251
|
+
*/
|
|
61140
61252
|
isRegionalPricingEnabled?: boolean | null;
|
|
61141
61253
|
/** @description Whether managed pricing should be enabled for the game pass. */
|
|
61142
61254
|
isManagedPricingEnabled?: boolean | null;
|
|
@@ -61671,6 +61783,201 @@ export interface operations {
|
|
|
61671
61783
|
};
|
|
61672
61784
|
};
|
|
61673
61785
|
};
|
|
61786
|
+
PlaceVersion_GetPlaceContributors: {
|
|
61787
|
+
parameters: {
|
|
61788
|
+
query?: {
|
|
61789
|
+
cursor?: string;
|
|
61790
|
+
pageSize?: number;
|
|
61791
|
+
};
|
|
61792
|
+
header?: never;
|
|
61793
|
+
path: {
|
|
61794
|
+
placeId: number;
|
|
61795
|
+
};
|
|
61796
|
+
cookie?: never;
|
|
61797
|
+
};
|
|
61798
|
+
requestBody?: never;
|
|
61799
|
+
responses: {
|
|
61800
|
+
/** @description Success */
|
|
61801
|
+
200: {
|
|
61802
|
+
headers: {
|
|
61803
|
+
[name: string]: unknown;
|
|
61804
|
+
};
|
|
61805
|
+
content: {
|
|
61806
|
+
"application/json": components["schemas"]["GetPlaceContributorsResponse"];
|
|
61807
|
+
};
|
|
61808
|
+
};
|
|
61809
|
+
/** @description Bad Request */
|
|
61810
|
+
400: {
|
|
61811
|
+
headers: {
|
|
61812
|
+
[name: string]: unknown;
|
|
61813
|
+
};
|
|
61814
|
+
content: {
|
|
61815
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61816
|
+
};
|
|
61817
|
+
};
|
|
61818
|
+
/** @description Unauthorized */
|
|
61819
|
+
401: {
|
|
61820
|
+
headers: {
|
|
61821
|
+
[name: string]: unknown;
|
|
61822
|
+
};
|
|
61823
|
+
content: {
|
|
61824
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61825
|
+
};
|
|
61826
|
+
};
|
|
61827
|
+
/** @description Forbidden */
|
|
61828
|
+
403: {
|
|
61829
|
+
headers: {
|
|
61830
|
+
[name: string]: unknown;
|
|
61831
|
+
};
|
|
61832
|
+
content: {
|
|
61833
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61834
|
+
};
|
|
61835
|
+
};
|
|
61836
|
+
/** @description Server Error */
|
|
61837
|
+
500: {
|
|
61838
|
+
headers: {
|
|
61839
|
+
[name: string]: unknown;
|
|
61840
|
+
};
|
|
61841
|
+
content: {
|
|
61842
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61843
|
+
};
|
|
61844
|
+
};
|
|
61845
|
+
};
|
|
61846
|
+
};
|
|
61847
|
+
PlaceVersion_GetPlaceVersionHistory: {
|
|
61848
|
+
parameters: {
|
|
61849
|
+
query?: {
|
|
61850
|
+
cursor?: string;
|
|
61851
|
+
isPublished?: boolean;
|
|
61852
|
+
hasNotes?: boolean;
|
|
61853
|
+
saveType?: number;
|
|
61854
|
+
searchTerm?: string;
|
|
61855
|
+
contributor?: number;
|
|
61856
|
+
startTime?: string;
|
|
61857
|
+
endTime?: string;
|
|
61858
|
+
pageSize?: number;
|
|
61859
|
+
};
|
|
61860
|
+
header?: never;
|
|
61861
|
+
path: {
|
|
61862
|
+
placeId: number;
|
|
61863
|
+
};
|
|
61864
|
+
cookie?: never;
|
|
61865
|
+
};
|
|
61866
|
+
requestBody?: never;
|
|
61867
|
+
responses: {
|
|
61868
|
+
/** @description Success */
|
|
61869
|
+
200: {
|
|
61870
|
+
headers: {
|
|
61871
|
+
[name: string]: unknown;
|
|
61872
|
+
};
|
|
61873
|
+
content: {
|
|
61874
|
+
"application/json": components["schemas"]["GetPlaceVersionHistoryResponse"];
|
|
61875
|
+
};
|
|
61876
|
+
};
|
|
61877
|
+
/** @description Bad Request */
|
|
61878
|
+
400: {
|
|
61879
|
+
headers: {
|
|
61880
|
+
[name: string]: unknown;
|
|
61881
|
+
};
|
|
61882
|
+
content: {
|
|
61883
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61884
|
+
};
|
|
61885
|
+
};
|
|
61886
|
+
/** @description Unauthorized */
|
|
61887
|
+
401: {
|
|
61888
|
+
headers: {
|
|
61889
|
+
[name: string]: unknown;
|
|
61890
|
+
};
|
|
61891
|
+
content: {
|
|
61892
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61893
|
+
};
|
|
61894
|
+
};
|
|
61895
|
+
/** @description Forbidden */
|
|
61896
|
+
403: {
|
|
61897
|
+
headers: {
|
|
61898
|
+
[name: string]: unknown;
|
|
61899
|
+
};
|
|
61900
|
+
content: {
|
|
61901
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61902
|
+
};
|
|
61903
|
+
};
|
|
61904
|
+
/** @description Server Error */
|
|
61905
|
+
500: {
|
|
61906
|
+
headers: {
|
|
61907
|
+
[name: string]: unknown;
|
|
61908
|
+
};
|
|
61909
|
+
content: {
|
|
61910
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61911
|
+
};
|
|
61912
|
+
};
|
|
61913
|
+
};
|
|
61914
|
+
};
|
|
61915
|
+
PlaceVersion_UpdatePlaceVersionNotes: {
|
|
61916
|
+
parameters: {
|
|
61917
|
+
query?: never;
|
|
61918
|
+
header?: never;
|
|
61919
|
+
path: {
|
|
61920
|
+
placeId: number;
|
|
61921
|
+
version: string;
|
|
61922
|
+
};
|
|
61923
|
+
cookie?: never;
|
|
61924
|
+
};
|
|
61925
|
+
requestBody?: {
|
|
61926
|
+
content: {
|
|
61927
|
+
"application/json-patch+json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
|
|
61928
|
+
"application/json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
|
|
61929
|
+
"text/json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
|
|
61930
|
+
"application/*+json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
|
|
61931
|
+
};
|
|
61932
|
+
};
|
|
61933
|
+
responses: {
|
|
61934
|
+
/** @description Success */
|
|
61935
|
+
200: {
|
|
61936
|
+
headers: {
|
|
61937
|
+
[name: string]: unknown;
|
|
61938
|
+
};
|
|
61939
|
+
content: {
|
|
61940
|
+
"application/json": components["schemas"]["UpdatePlaceVersionNotesResponse"];
|
|
61941
|
+
};
|
|
61942
|
+
};
|
|
61943
|
+
/** @description Bad Request */
|
|
61944
|
+
400: {
|
|
61945
|
+
headers: {
|
|
61946
|
+
[name: string]: unknown;
|
|
61947
|
+
};
|
|
61948
|
+
content: {
|
|
61949
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61950
|
+
};
|
|
61951
|
+
};
|
|
61952
|
+
/** @description Unauthorized */
|
|
61953
|
+
401: {
|
|
61954
|
+
headers: {
|
|
61955
|
+
[name: string]: unknown;
|
|
61956
|
+
};
|
|
61957
|
+
content: {
|
|
61958
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61959
|
+
};
|
|
61960
|
+
};
|
|
61961
|
+
/** @description Forbidden */
|
|
61962
|
+
403: {
|
|
61963
|
+
headers: {
|
|
61964
|
+
[name: string]: unknown;
|
|
61965
|
+
};
|
|
61966
|
+
content: {
|
|
61967
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61968
|
+
};
|
|
61969
|
+
};
|
|
61970
|
+
/** @description Server Error */
|
|
61971
|
+
500: {
|
|
61972
|
+
headers: {
|
|
61973
|
+
[name: string]: unknown;
|
|
61974
|
+
};
|
|
61975
|
+
content: {
|
|
61976
|
+
"application/json": components["schemas"]["OperationErrorResponse"];
|
|
61977
|
+
};
|
|
61978
|
+
};
|
|
61979
|
+
};
|
|
61980
|
+
};
|
|
61674
61981
|
GameServers_GetFilterOptions: {
|
|
61675
61982
|
parameters: {
|
|
61676
61983
|
query?: {
|