@jacobhumston/roblox-openapi-ts 1.0.8 → 1.0.10

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 +28 -13
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -47272,7 +47272,7 @@ export interface paths {
47272
47272
  * 24: Invalid scale value
47273
47273
  * 28: OptIn/Out Regions Not Supported.
47274
47274
  * 41: You cannot change the private server price again so soon after the previous change. Please try again later.
47275
- * 42: This experience must be Public before its audience can include anything other than Editors. Call /activate first.
47275
+ * 44: The provided audience configuration is invalid. Ensure the audience list contains only supported audience values.
47276
47276
  */
47277
47277
  400: {
47278
47278
  headers: {
@@ -47293,6 +47293,7 @@ export interface paths {
47293
47293
  * 14: You are not authorized to sell games.
47294
47294
  * 29: Luobu app terms of service user agreement is missing.
47295
47295
  * 30: Unknown error while updating Opt in out region.
47296
+ * 45: The creator of this experience is not eligible to set this audience.
47296
47297
  */
47297
47298
  403: {
47298
47299
  headers: {
@@ -52172,6 +52173,8 @@ export interface components {
52172
52173
  previousPageCursor?: string | null;
52173
52174
  data?: components["schemas"]["MyPrivateServersData"][] | null;
52174
52175
  };
52176
+ /** @enum {string} */
52177
+ O18EligibilityTag: "None" | "O18Eligible" | "O18EligibleAndPlus";
52175
52178
  /** @description This resource represents a long-running operation that is the result of a network API call. */
52176
52179
  "OCV1.Assets.Operation": {
52177
52180
  /** @description The server-assigned resource path. The default format is `operations/{operation_id}`. */
@@ -54675,6 +54678,11 @@ export interface components {
54675
54678
  * @description The updated System.DateTime
54676
54679
  */
54677
54680
  updated?: string;
54681
+ /**
54682
+ * @description The audiences this universe is visible to (e.g. Editors, PlayTesters, Friends, Public).
54683
+ * Always non-null; may be empty when audience visibility has not been configured.
54684
+ */
54685
+ audiences?: (0 | 1 | 2 | 3 | 4)[];
54678
54686
  };
54679
54687
  /** @description Represents a universe moderation policy status */
54680
54688
  "Roblox.Api.Develop.Models.UniverseModerationPolicyStatus": {
@@ -54857,9 +54865,8 @@ export interface components {
54857
54865
  */
54858
54866
  fiatProductChangeType?: 0 | 1 | 2 | 3;
54859
54867
  /**
54860
- * @description Audiences allowed to view this universe, written directly to the new UniversePublicitySettings
54861
- * entity in universe-settings-service. When provided, persists exactly the supplied audience set
54862
- * and skips the IsFriendsOnly-derived USS dual-write that runs under non-Off treatments.
54868
+ * @description The audiences this universe should be visible to (e.g. Editors, PlayTesters, Friends, Public).
54869
+ * When provided, replaces the universe's existing audience set with the supplied values.
54863
54870
  */
54864
54871
  audiences?: (0 | 1 | 2 | 3 | 4)[];
54865
54872
  };
@@ -54953,10 +54960,8 @@ export interface components {
54953
54960
  */
54954
54961
  fiatModerationStatus?: 0 | 1 | 2 | 3 | 4;
54955
54962
  /**
54956
- * @description Audiences allowed to view this universe, sourced from the new UniversePublicitySettings entity
54957
- * in universe-settings-service. Populated from USS only when UniversePublicitySettingsTreatment
54958
- * is ReverseShadow or Authority (USS is the source of truth in those modes); an empty list is
54959
- * returned for Off and Shadow so clients always see a stable shape, never null.
54963
+ * @description The audiences this universe is visible to (e.g. Editors, PlayTesters, Friends, Public).
54964
+ * Always non-null; may be empty when audience visibility has not been configured.
54960
54965
  */
54961
54966
  audiences?: (0 | 1 | 2 | 3 | 4)[];
54962
54967
  };
@@ -55052,10 +55057,8 @@ export interface components {
55052
55057
  /** @description Whether the game is elegible for text chat service auto migration. */
55053
55058
  eligibleForTextChatMigration?: boolean;
55054
55059
  /**
55055
- * @description Audiences allowed to view this universe, sourced from the new UniversePublicitySettings entity
55056
- * in universe-settings-service. Populated from USS only when UniversePublicitySettingsTreatment
55057
- * is ReverseShadow or Authority (USS is the source of truth in those modes); an empty list is
55058
- * returned for Off and Shadow so clients always see a stable shape, never null.
55060
+ * @description The audiences this universe is visible to (e.g. Editors, PlayTesters, Friends, Public).
55061
+ * Always non-null; may be empty when audience visibility has not been configured.
55059
55062
  */
55060
55063
  audiences?: (0 | 1 | 2 | 3 | 4)[];
55061
55064
  };
@@ -61924,6 +61927,12 @@ export interface components {
61924
61927
  "Roblox.Web.WebAPI.Models.ApiSuccessResponse": {
61925
61928
  success?: boolean;
61926
61929
  };
61930
+ RobuxRateBreakdown: {
61931
+ /** Format: double */
61932
+ o18?: number | null;
61933
+ /** Format: double */
61934
+ standard?: number | null;
61935
+ };
61927
61936
  /** @description RPN operand: attribute reference or literal value (same concepts as the proto `RpnOperand` oneof). */
61928
61937
  RpnOperandDto: {
61929
61938
  attributeReference?: string | null;
@@ -62619,6 +62628,8 @@ export interface components {
62619
62628
  currency?: components["schemas"]["GenericCurrencyResponse"] | null;
62620
62629
  purchaseToken?: string | null;
62621
62630
  transactionSubtype?: string | null;
62631
+ o18EligibilityTag?: components["schemas"]["O18EligibilityTag"] | null;
62632
+ robuxRateBreakdown?: components["schemas"]["RobuxRateBreakdown"] | null;
62622
62633
  };
62623
62634
  TransactionRecordResponseApiPageResponse: {
62624
62635
  previousPageCursor?: string | null;
@@ -62642,6 +62653,7 @@ export interface components {
62642
62653
  details?: components["schemas"]["TransactionDetailsResponse"] | null;
62643
62654
  currency?: components["schemas"]["GenericCurrencyResponse"] | null;
62644
62655
  purchaseToken?: string | null;
62656
+ o18EligibilityTag?: components["schemas"]["O18EligibilityTag"] | null;
62645
62657
  };
62646
62658
  TransactionResponseApiPageResponse: {
62647
62659
  previousPageCursor?: string | null;
@@ -62703,9 +62715,11 @@ export interface components {
62703
62715
  licensingPaymentTotal?: number;
62704
62716
  /** Format: int64 */
62705
62717
  licensingPaymentClawbackOutgoingTotal?: number;
62718
+ /** Format: int64 */
62719
+ robloxSelectOutgoingTotal?: number;
62706
62720
  };
62707
62721
  /** @enum {string} */
62708
- 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";
62722
+ 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";
62709
62723
  TransactionUsedTypesResponse: {
62710
62724
  HasPurchase?: boolean;
62711
62725
  HasSale?: boolean;
@@ -62729,6 +62743,7 @@ export interface components {
62729
62743
  HasPublishingAdvanceRebates?: boolean;
62730
62744
  HasLicensingPayment?: boolean;
62731
62745
  HasTransfer?: boolean;
62746
+ HasRobloxSelectTransfer?: boolean;
62732
62747
  };
62733
62748
  /**
62734
62749
  * @description Contains the text to be translated, the source language (optional), and a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jacobhumston/roblox-openapi-ts",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "An automatically updated Roblox API client based on their OpenAPI documentation.",
5
5
  "keywords": [
6
6
  "roblox",