@jacobhumston/roblox-openapi-ts 1.0.24 → 1.0.26

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +340 -9
  2. 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;
@@ -41583,7 +41634,7 @@ export interface paths {
41583
41634
  path?: never;
41584
41635
  cookie?: never;
41585
41636
  };
41586
- get: operations["TransactionRecords_GetUserTransactions"];
41637
+ get: operations["TransactionRecordsApi.TransactionRecords_GetUserTransactions"];
41587
41638
  put?: never;
41588
41639
  post?: never;
41589
41640
  delete?: 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
- /** @description Whether the developer product is currently available for purchase on the external store page. */
42989
- storePageEnabled: boolean;
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
  /**
@@ -46023,9 +46112,11 @@ export interface components {
46023
46112
  * LeaderboardsConfig
46024
46113
  *
46025
46114
  * ExperienceUserConfig
46115
+ *
46116
+ * JourneysConfig
46026
46117
  * @enum {string}
46027
46118
  */
46028
- Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig" | "ExperienceUserConfig";
46119
+ Repository: "InExperienceConfig" | "RecommendationServicesConfig" | "DataStoresConfig" | "ExtendedServicesConfig" | "LeaderboardsConfig" | "ExperienceUserConfig" | "JourneysConfig";
46029
46120
  /**
46030
46121
  * @description The current state of a place restart.
46031
46122
  * @enum {string}
@@ -53949,6 +54040,7 @@ export interface components {
53949
54040
  * we will keep existing behavior where we display offsale for games priced in fiat currency.
53950
54041
  */
53951
54042
  price?: number;
54043
+ contentMetadata?: components["schemas"]["Roblox.Games.Api.Models.Response.GameContentMetadataResponseModel"];
53952
54044
  /**
53953
54045
  * Format: int64
53954
54046
  * @description The game (universe) Id.
@@ -54458,6 +54550,11 @@ export interface components {
54458
54550
  endDate?: string | null;
54459
54551
  transactionType?: components["schemas"]["TransactionType"];
54460
54552
  };
54553
+ /**
54554
+ * Format: int32
54555
+ * @enum {integer}
54556
+ */
54557
+ SaveType: 0 | 1 | 2;
54461
54558
  /**
54462
54559
  * @description The category to sort the saves by.
54463
54560
  * @enum {string}
@@ -55212,9 +55309,11 @@ export interface components {
55212
55309
  robloxSelectIncomingTotal?: number;
55213
55310
  /** Format: int64 */
55214
55311
  robloxSelectOutgoingTotal?: number;
55312
+ /** Format: int64 */
55313
+ privateServerEngagementPayoutsTotal?: number;
55215
55314
  };
55216
55315
  /** @enum {string} */
55217
- TransactionType: "Undefined" | "Sale" | "Purchase" | "AffiliateSale" | "DevEx" | "GroupPayout" | "AdImpressionPayout" | "CurrencyPurchase" | "TradeRobux" | "PremiumStipend" | "PendingRobux" | "EngagementPayout" | "GroupEngagementPayout" | "AdSpend" | "Summary" | "IndividualToGroup" | "CSAdjustment" | "AdsRevsharePayout" | "GroupAdsRevsharePayout" | "SubscriptionsRevsharePayout" | "GroupSubscriptionsRevsharePayout" | "SubscriptionsRevshareClawback" | "GroupSubscriptionsRevshareClawback" | "PublishingAdvanceRebates" | "AffiliatePayout" | "LicensingPayment" | "LicensingPaymentClawback" | "CurrencyTransfer" | "RobloxSelectTransfer";
55316
+ TransactionType: "Undefined" | "Sale" | "Purchase" | "AffiliateSale" | "DevEx" | "GroupPayout" | "AdImpressionPayout" | "CurrencyPurchase" | "TradeRobux" | "PremiumStipend" | "PendingRobux" | "EngagementPayout" | "GroupEngagementPayout" | "AdSpend" | "Summary" | "IndividualToGroup" | "CSAdjustment" | "AdsRevsharePayout" | "GroupAdsRevsharePayout" | "SubscriptionsRevsharePayout" | "GroupSubscriptionsRevsharePayout" | "SubscriptionsRevshareClawback" | "GroupSubscriptionsRevshareClawback" | "PublishingAdvanceRebates" | "AffiliatePayout" | "LicensingPayment" | "LicensingPaymentClawback" | "CurrencyTransfer" | "RobloxSelectTransfer" | "PrivateServerEngagementPayout" | "CurrencySubscriptionStipend";
55218
55317
  TransactionUsedTypesResponse: {
55219
55318
  HasPurchase?: boolean;
55220
55319
  HasSale?: boolean;
@@ -55239,6 +55338,7 @@ export interface components {
55239
55338
  HasLicensingPayment?: boolean;
55240
55339
  HasTransfer?: boolean;
55241
55340
  HasRobloxSelectTransfer?: boolean;
55341
+ HasPrivateServerEngagementPayout?: boolean;
55242
55342
  };
55243
55343
  /**
55244
55344
  * @description Contains the text to be translated, the source language (optional), and a
@@ -55600,6 +55700,13 @@ export interface components {
55600
55700
  UpdateMatchmakingServerAttributeDefinitionResponse: {
55601
55701
  playerAttributeDefinition?: components["schemas"]["MatchmakingServerAttributeDefinition"];
55602
55702
  };
55703
+ UpdatePlaceVersionNotesRequest: {
55704
+ title?: string | null;
55705
+ description?: string | null;
55706
+ };
55707
+ UpdatePlaceVersionNotesResponse: {
55708
+ placeVersion?: components["schemas"]["PlaceVersion"] | null;
55709
+ };
55603
55710
  /** @description Represents any registered user of Roblox. */
55604
55711
  User: {
55605
55712
  /**
@@ -59696,6 +59803,8 @@ export interface operations {
59696
59803
  * LeaderboardsConfig
59697
59804
  *
59698
59805
  * ExperienceUserConfig
59806
+ *
59807
+ * JourneysConfig
59699
59808
  */
59700
59809
  repository: components["schemas"]["Repository"];
59701
59810
  };
@@ -59759,6 +59868,8 @@ export interface operations {
59759
59868
  * LeaderboardsConfig
59760
59869
  *
59761
59870
  * ExperienceUserConfig
59871
+ *
59872
+ * JourneysConfig
59762
59873
  */
59763
59874
  repository: components["schemas"]["Repository"];
59764
59875
  };
@@ -59822,6 +59933,8 @@ export interface operations {
59822
59933
  * LeaderboardsConfig
59823
59934
  *
59824
59935
  * ExperienceUserConfig
59936
+ *
59937
+ * JourneysConfig
59825
59938
  */
59826
59939
  repository: components["schemas"]["Repository"];
59827
59940
  };
@@ -59892,6 +60005,8 @@ export interface operations {
59892
60005
  * LeaderboardsConfig
59893
60006
  *
59894
60007
  * ExperienceUserConfig
60008
+ *
60009
+ * JourneysConfig
59895
60010
  */
59896
60011
  repository: components["schemas"]["Repository"];
59897
60012
  };
@@ -59962,6 +60077,8 @@ export interface operations {
59962
60077
  * LeaderboardsConfig
59963
60078
  *
59964
60079
  * ExperienceUserConfig
60080
+ *
60081
+ * JourneysConfig
59965
60082
  */
59966
60083
  repository: components["schemas"]["Repository"];
59967
60084
  };
@@ -60032,6 +60149,8 @@ export interface operations {
60032
60149
  * LeaderboardsConfig
60033
60150
  *
60034
60151
  * ExperienceUserConfig
60152
+ *
60153
+ * JourneysConfig
60035
60154
  */
60036
60155
  repository: components["schemas"]["Repository"];
60037
60156
  };
@@ -60095,6 +60214,8 @@ export interface operations {
60095
60214
  * LeaderboardsConfig
60096
60215
  *
60097
60216
  * ExperienceUserConfig
60217
+ *
60218
+ * JourneysConfig
60098
60219
  */
60099
60220
  repository: components["schemas"]["Repository"];
60100
60221
  };
@@ -60180,6 +60301,8 @@ export interface operations {
60180
60301
  * LeaderboardsConfig
60181
60302
  *
60182
60303
  * ExperienceUserConfig
60304
+ *
60305
+ * JourneysConfig
60183
60306
  */
60184
60307
  repository: components["schemas"]["Repository"];
60185
60308
  };
@@ -60243,6 +60366,8 @@ export interface operations {
60243
60366
  * LeaderboardsConfig
60244
60367
  *
60245
60368
  * ExperienceUserConfig
60369
+ *
60370
+ * JourneysConfig
60246
60371
  */
60247
60372
  repository: components["schemas"]["Repository"];
60248
60373
  revisionId: string;
@@ -60681,6 +60806,7 @@ export interface operations {
60681
60806
  */
60682
60807
  imageFile?: string | null;
60683
60808
  /**
60809
+ * @deprecated
60684
60810
  * @description Whether regional pricing should be enabled for the developer product.
60685
60811
  * Should not be used when setting isManagedPricingEnabled.
60686
60812
  */
@@ -60834,11 +60960,15 @@ export interface operations {
60834
60960
  */
60835
60961
  imageFile?: string | null;
60836
60962
  /**
60963
+ * @deprecated
60837
60964
  * @description Whether regional pricing should be enabled for the developer product.
60838
60965
  * Should not be used when setting isManagedPricingEnabled.
60839
60966
  */
60840
60967
  isRegionalPricingEnabled?: boolean | null;
60841
- /** @description Whether the developer product should be available for purchase on the external store page. */
60968
+ /**
60969
+ * @deprecated
60970
+ * @description Whether the developer product should be available for purchase on the external store page.
60971
+ */
60842
60972
  storePageEnabled?: boolean | null;
60843
60973
  /** @description Whether managed pricing should be enabled for the developer product. */
60844
60974
  isManagedPricingEnabled?: boolean | null;
@@ -60981,7 +61111,10 @@ export interface operations {
60981
61111
  * @description The default price of the game pass.
60982
61112
  */
60983
61113
  price?: number | null;
60984
- /** @description Whether regional pricing should be enabled for the game pass. */
61114
+ /**
61115
+ * @deprecated
61116
+ * @description Whether regional pricing should be enabled for the game pass.
61117
+ */
60985
61118
  isRegionalPricingEnabled?: boolean | null;
60986
61119
  /** @description Whether managed pricing should be enabled for the game pass. */
60987
61120
  isManagedPricingEnabled?: boolean | null;
@@ -61136,7 +61269,10 @@ export interface operations {
61136
61269
  * @description The default price of the game pass.
61137
61270
  */
61138
61271
  price?: number | null;
61139
- /** @description Whether regional pricing should be enabled for the game pass. */
61272
+ /**
61273
+ * @deprecated
61274
+ * @description Whether regional pricing should be enabled for the game pass.
61275
+ */
61140
61276
  isRegionalPricingEnabled?: boolean | null;
61141
61277
  /** @description Whether managed pricing should be enabled for the game pass. */
61142
61278
  isManagedPricingEnabled?: boolean | null;
@@ -61671,6 +61807,201 @@ export interface operations {
61671
61807
  };
61672
61808
  };
61673
61809
  };
61810
+ PlaceVersion_GetPlaceContributors: {
61811
+ parameters: {
61812
+ query?: {
61813
+ cursor?: string;
61814
+ pageSize?: number;
61815
+ };
61816
+ header?: never;
61817
+ path: {
61818
+ placeId: number;
61819
+ };
61820
+ cookie?: never;
61821
+ };
61822
+ requestBody?: never;
61823
+ responses: {
61824
+ /** @description Success */
61825
+ 200: {
61826
+ headers: {
61827
+ [name: string]: unknown;
61828
+ };
61829
+ content: {
61830
+ "application/json": components["schemas"]["GetPlaceContributorsResponse"];
61831
+ };
61832
+ };
61833
+ /** @description Bad Request */
61834
+ 400: {
61835
+ headers: {
61836
+ [name: string]: unknown;
61837
+ };
61838
+ content: {
61839
+ "application/json": components["schemas"]["OperationErrorResponse"];
61840
+ };
61841
+ };
61842
+ /** @description Unauthorized */
61843
+ 401: {
61844
+ headers: {
61845
+ [name: string]: unknown;
61846
+ };
61847
+ content: {
61848
+ "application/json": components["schemas"]["OperationErrorResponse"];
61849
+ };
61850
+ };
61851
+ /** @description Forbidden */
61852
+ 403: {
61853
+ headers: {
61854
+ [name: string]: unknown;
61855
+ };
61856
+ content: {
61857
+ "application/json": components["schemas"]["OperationErrorResponse"];
61858
+ };
61859
+ };
61860
+ /** @description Server Error */
61861
+ 500: {
61862
+ headers: {
61863
+ [name: string]: unknown;
61864
+ };
61865
+ content: {
61866
+ "application/json": components["schemas"]["OperationErrorResponse"];
61867
+ };
61868
+ };
61869
+ };
61870
+ };
61871
+ PlaceVersion_GetPlaceVersionHistory: {
61872
+ parameters: {
61873
+ query?: {
61874
+ cursor?: string;
61875
+ isPublished?: boolean;
61876
+ hasNotes?: boolean;
61877
+ saveType?: number;
61878
+ searchTerm?: string;
61879
+ contributor?: number;
61880
+ startTime?: string;
61881
+ endTime?: string;
61882
+ pageSize?: number;
61883
+ };
61884
+ header?: never;
61885
+ path: {
61886
+ placeId: number;
61887
+ };
61888
+ cookie?: never;
61889
+ };
61890
+ requestBody?: never;
61891
+ responses: {
61892
+ /** @description Success */
61893
+ 200: {
61894
+ headers: {
61895
+ [name: string]: unknown;
61896
+ };
61897
+ content: {
61898
+ "application/json": components["schemas"]["GetPlaceVersionHistoryResponse"];
61899
+ };
61900
+ };
61901
+ /** @description Bad Request */
61902
+ 400: {
61903
+ headers: {
61904
+ [name: string]: unknown;
61905
+ };
61906
+ content: {
61907
+ "application/json": components["schemas"]["OperationErrorResponse"];
61908
+ };
61909
+ };
61910
+ /** @description Unauthorized */
61911
+ 401: {
61912
+ headers: {
61913
+ [name: string]: unknown;
61914
+ };
61915
+ content: {
61916
+ "application/json": components["schemas"]["OperationErrorResponse"];
61917
+ };
61918
+ };
61919
+ /** @description Forbidden */
61920
+ 403: {
61921
+ headers: {
61922
+ [name: string]: unknown;
61923
+ };
61924
+ content: {
61925
+ "application/json": components["schemas"]["OperationErrorResponse"];
61926
+ };
61927
+ };
61928
+ /** @description Server Error */
61929
+ 500: {
61930
+ headers: {
61931
+ [name: string]: unknown;
61932
+ };
61933
+ content: {
61934
+ "application/json": components["schemas"]["OperationErrorResponse"];
61935
+ };
61936
+ };
61937
+ };
61938
+ };
61939
+ PlaceVersion_UpdatePlaceVersionNotes: {
61940
+ parameters: {
61941
+ query?: never;
61942
+ header?: never;
61943
+ path: {
61944
+ placeId: number;
61945
+ version: string;
61946
+ };
61947
+ cookie?: never;
61948
+ };
61949
+ requestBody?: {
61950
+ content: {
61951
+ "application/json-patch+json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
61952
+ "application/json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
61953
+ "text/json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
61954
+ "application/*+json": components["schemas"]["UpdatePlaceVersionNotesRequest"];
61955
+ };
61956
+ };
61957
+ responses: {
61958
+ /** @description Success */
61959
+ 200: {
61960
+ headers: {
61961
+ [name: string]: unknown;
61962
+ };
61963
+ content: {
61964
+ "application/json": components["schemas"]["UpdatePlaceVersionNotesResponse"];
61965
+ };
61966
+ };
61967
+ /** @description Bad Request */
61968
+ 400: {
61969
+ headers: {
61970
+ [name: string]: unknown;
61971
+ };
61972
+ content: {
61973
+ "application/json": components["schemas"]["OperationErrorResponse"];
61974
+ };
61975
+ };
61976
+ /** @description Unauthorized */
61977
+ 401: {
61978
+ headers: {
61979
+ [name: string]: unknown;
61980
+ };
61981
+ content: {
61982
+ "application/json": components["schemas"]["OperationErrorResponse"];
61983
+ };
61984
+ };
61985
+ /** @description Forbidden */
61986
+ 403: {
61987
+ headers: {
61988
+ [name: string]: unknown;
61989
+ };
61990
+ content: {
61991
+ "application/json": components["schemas"]["OperationErrorResponse"];
61992
+ };
61993
+ };
61994
+ /** @description Server Error */
61995
+ 500: {
61996
+ headers: {
61997
+ [name: string]: unknown;
61998
+ };
61999
+ content: {
62000
+ "application/json": components["schemas"]["OperationErrorResponse"];
62001
+ };
62002
+ };
62003
+ };
62004
+ };
61674
62005
  GameServers_GetFilterOptions: {
61675
62006
  parameters: {
61676
62007
  query?: {
@@ -63029,7 +63360,7 @@ export interface operations {
63029
63360
  };
63030
63361
  };
63031
63362
  };
63032
- TransactionRecords_GetUserTransactions: {
63363
+ "TransactionRecordsApi.TransactionRecords_GetUserTransactions": {
63033
63364
  parameters: {
63034
63365
  query?: {
63035
63366
  exclusiveStartCursor?: components["schemas"]["Int64ExclusiveStartKeyCursor"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jacobhumston/roblox-openapi-ts",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "An automatically updated Roblox API client based on their OpenAPI documentation.",
5
5
  "keywords": [
6
6
  "roblox",