From f3df39a90460fd01c474c99565a5fdb0444cdea8 Mon Sep 17 00:00:00 2001 From: Adam Altman Date: Fri, 26 Apr 2024 13:07:29 -0500 Subject: [PATCH] feat: use x-badges feature (#1880) --- .../requestBodies/SubscriptionItemUpdate.yaml | 3 ++- openapi/components/schemas/Subscription.yaml | 3 ++- openapi/paths/balance-transactions.yaml | 3 ++- openapi/paths/balance-transactions@{id}.yaml | 3 ++- .../customers@{customerId}@summary-metrics.yaml | 3 ++- openapi/paths/deposit-custom-property-sets.yaml | 6 ++++-- openapi/paths/deposit-custom-property-sets@{id}.yaml | 9 ++++++--- openapi/paths/deposit-requests.yaml | 6 ++++-- openapi/paths/deposit-requests@{id}.yaml | 3 ++- openapi/paths/deposit-strategies.yaml | 6 ++++-- openapi/paths/deposit-strategies@{id}.yaml | 9 ++++++--- openapi/paths/fees.yaml | 6 ++++-- openapi/paths/fees@{id}.yaml | 12 ++++++++---- .../gateway-accounts@{id}@financial-settings.yaml | 6 ++++-- openapi/paths/histograms@transactions.yaml | 3 ++- openapi/paths/quotes.yaml | 6 ++++-- openapi/paths/quotes@{id}.yaml | 9 ++++++--- openapi/paths/quotes@{id}@accept.yaml | 3 ++- openapi/paths/quotes@{id}@cancel.yaml | 3 ++- openapi/paths/quotes@{id}@issue.yaml | 3 ++- openapi/paths/quotes@{id}@recall.yaml | 3 ++- openapi/paths/quotes@{id}@reject.yaml | 3 ++- openapi/paths/quotes@{id}@timeline.yaml | 6 ++++-- openapi/paths/quotes@{id}@timeline@{messageId}.yaml | 6 ++++-- openapi/paths/reports@api-log-summary.yaml | 3 ++- openapi/paths/reports@cumulative-subscriptions.yaml | 3 ++- openapi/paths/reports@dashboard.yaml | 3 ++- openapi/paths/reports@dcc-markup.yaml | 3 ++- openapi/paths/reports@declined-transactions.yaml | 3 ++- openapi/paths/reports@disputes.yaml | 3 ++- openapi/paths/reports@events-triggered.yaml | 3 ++- .../reports@events-triggered@{eventType}@rules.yaml | 3 ++- openapi/paths/reports@future-renewals.yaml | 3 ++- openapi/paths/reports@journal.yaml | 3 ++- openapi/paths/reports@kyc-acceptance-summary.yaml | 3 ++- openapi/paths/reports@kyc-rejection-summary.yaml | 3 ++- openapi/paths/reports@kyc-request-summary.yaml | 3 ++- openapi/paths/reports@monthly-recurring-revenue.yaml | 3 ++- openapi/paths/reports@renewal-sales.yaml | 3 ++- openapi/paths/reports@retention-percentage.yaml | 3 ++- openapi/paths/reports@retention-value.yaml | 3 ++- openapi/paths/reports@revenue-audit.yaml | 3 ++- openapi/paths/reports@revenue-waterfall.yaml | 3 ++- openapi/paths/reports@subscription-cancellation.yaml | 3 ++- openapi/paths/reports@subscription-renewal.yaml | 3 ++- openapi/paths/reports@tax.yaml | 3 ++- openapi/paths/reports@time-series-transaction.yaml | 3 ++- openapi/paths/reports@transactions-time-dispute.yaml | 3 ++- openapi/paths/reports@transactions.yaml | 3 ++- openapi/paths/storefront/deposit-requests@{id}.yaml | 3 ++- .../paths/storefront/deposit-strategies@{id}.yaml | 3 ++- openapi/paths/storefront/deposit.yaml | 3 ++- openapi/paths/storefront/preview-purchase.yaml | 3 ++- openapi/paths/storefront/quotes@{id}.yaml | 3 ++- openapi/paths/storefront/quotes@{id}@accept.yaml | 3 ++- openapi/paths/storefront/quotes@{id}@reject.yaml | 3 ++- .../paths/storefront/subscription-reactivations.yaml | 3 ++- openapi/paths/storefront/subscriptions.yaml | 3 ++- .../storefront/subscriptions@{id}@change-items.yaml | 3 ++- openapi/paths/subscriptions@{id}@items@{itemId}.yaml | 3 ++- ...bscriptions@{subscriptionId}@summary-metrics.yaml | 3 ++- 61 files changed, 156 insertions(+), 78 deletions(-) diff --git a/openapi/components/requestBodies/SubscriptionItemUpdate.yaml b/openapi/components/requestBodies/SubscriptionItemUpdate.yaml index 61e28ea617..b3da77ed49 100644 --- a/openapi/components/requestBodies/SubscriptionItemUpdate.yaml +++ b/openapi/components/requestBodies/SubscriptionItemUpdate.yaml @@ -3,6 +3,7 @@ required: - quantityFilled properties: quantityFilled: - x-badge: Experimental + x-badges: + - name: Experimental description: Filled quantity of the subscription item (experimental property). type: integer diff --git a/openapi/components/schemas/Subscription.yaml b/openapi/components/schemas/Subscription.yaml index 0353b908db..f468aa9b8a 100644 --- a/openapi/components/schemas/Subscription.yaml +++ b/openapi/components/schemas/Subscription.yaml @@ -455,7 +455,8 @@ properties: - 'string' - 'null' readOnly: true - x-badge: experimental + x-badges: + - name: Experimental customFields: $ref: ./ResourceCustomFields.yaml createdTime: diff --git a/openapi/paths/balance-transactions.yaml b/openapi/paths/balance-transactions.yaml index 58d0f603e9..e7a55e165e 100644 --- a/openapi/paths/balance-transactions.yaml +++ b/openapi/paths/balance-transactions.yaml @@ -1,5 +1,6 @@ get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Users tags: ["Balance transactions"] diff --git a/openapi/paths/balance-transactions@{id}.yaml b/openapi/paths/balance-transactions@{id}.yaml index a011a924a2..e4f98fd49d 100644 --- a/openapi/paths/balance-transactions@{id}.yaml +++ b/openapi/paths/balance-transactions@{id}.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Users tags: ["Balance transactions"] diff --git a/openapi/paths/customers@{customerId}@summary-metrics.yaml b/openapi/paths/customers@{customerId}@summary-metrics.yaml index 72a50ae24d..12e3fbbef4 100644 --- a/openapi/paths/customers@{customerId}@summary-metrics.yaml +++ b/openapi/paths/customers@{customerId}@summary-metrics.yaml @@ -25,7 +25,8 @@ parameters: schema: type: string get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/deposit-custom-property-sets.yaml b/openapi/paths/deposit-custom-property-sets.yaml index 7517e00f0a..1c53be5f91 100644 --- a/openapi/paths/deposit-custom-property-sets.yaml +++ b/openapi/paths/deposit-custom-property-sets.yaml @@ -1,7 +1,8 @@ post: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Create a custom deposit property set @@ -37,7 +38,8 @@ post: get: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Retrieve custom deposit properties sets diff --git a/openapi/paths/deposit-custom-property-sets@{id}.yaml b/openapi/paths/deposit-custom-property-sets@{id}.yaml index 6f49e61b2a..615c82cd8e 100644 --- a/openapi/paths/deposit-custom-property-sets@{id}.yaml +++ b/openapi/paths/deposit-custom-property-sets@{id}.yaml @@ -3,7 +3,8 @@ parameters: get: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Retrieve a custom deposit property set @@ -26,7 +27,8 @@ get: put: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Upsert a custom deposit property set @@ -67,7 +69,8 @@ put: delete: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Delete a custom deposit property set diff --git a/openapi/paths/deposit-requests.yaml b/openapi/paths/deposit-requests.yaml index 170cc3017a..e2204cf7af 100644 --- a/openapi/paths/deposit-requests.yaml +++ b/openapi/paths/deposit-requests.yaml @@ -1,7 +1,8 @@ post: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Create a deposit request @@ -38,7 +39,8 @@ post: get: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Retrieve deposit requests diff --git a/openapi/paths/deposit-requests@{id}.yaml b/openapi/paths/deposit-requests@{id}.yaml index 4bd39f4dd2..b8b0b05cfe 100644 --- a/openapi/paths/deposit-requests@{id}.yaml +++ b/openapi/paths/deposit-requests@{id}.yaml @@ -3,7 +3,8 @@ parameters: get: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Retrieve a deposit request diff --git a/openapi/paths/deposit-strategies.yaml b/openapi/paths/deposit-strategies.yaml index 46b6886873..c8a52c14c6 100644 --- a/openapi/paths/deposit-strategies.yaml +++ b/openapi/paths/deposit-strategies.yaml @@ -1,7 +1,8 @@ post: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Create a deposit strategy @@ -38,7 +39,8 @@ post: get: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Retrieve deposit strategies diff --git a/openapi/paths/deposit-strategies@{id}.yaml b/openapi/paths/deposit-strategies@{id}.yaml index 782411c2b1..bb496b0bcf 100644 --- a/openapi/paths/deposit-strategies@{id}.yaml +++ b/openapi/paths/deposit-strategies@{id}.yaml @@ -3,7 +3,8 @@ parameters: get: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Retrieve a deposit strategy @@ -26,7 +27,8 @@ get: put: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Upsert a deposit strategy @@ -67,7 +69,8 @@ put: delete: x-products: - Core - x-badge: Experimental + x-badges: + - name: Experimental tags: - Deposits summary: Delete a deposit strategy diff --git a/openapi/paths/fees.yaml b/openapi/paths/fees.yaml index 4ec3680eed..f9b8894bc9 100644 --- a/openapi/paths/fees.yaml +++ b/openapi/paths/fees.yaml @@ -1,5 +1,6 @@ get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: [Fees] @@ -36,7 +37,8 @@ get: '403': $ref: ../components/responses/Forbidden.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: [Fees] diff --git a/openapi/paths/fees@{id}.yaml b/openapi/paths/fees@{id}.yaml index 2fdc18592c..d95e2ce1bd 100644 --- a/openapi/paths/fees@{id}.yaml +++ b/openapi/paths/fees@{id}.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: [Fees] @@ -33,7 +34,8 @@ get: '404': $ref: ../components/responses/NotFound.yaml put: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: [Fees] @@ -94,7 +96,8 @@ put: '422': $ref: ../components/responses/ValidationError.yaml patch: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: [Fees] @@ -139,7 +142,8 @@ patch: '422': $ref: ../components/responses/ValidationError.yaml delete: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: [Fees] diff --git a/openapi/paths/gateway-accounts@{id}@financial-settings.yaml b/openapi/paths/gateway-accounts@{id}@financial-settings.yaml index 2b790b13bb..1d4c167cd6 100644 --- a/openapi/paths/gateway-accounts@{id}@financial-settings.yaml +++ b/openapi/paths/gateway-accounts@{id}@financial-settings.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Users tags: @@ -28,7 +29,8 @@ get: $ref: ../components/responses/NotFound.yaml put: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Users tags: diff --git a/openapi/paths/histograms@transactions.yaml b/openapi/paths/histograms@transactions.yaml index 3bde3197e0..73e1472124 100644 --- a/openapi/paths/histograms@transactions.yaml +++ b/openapi/paths/histograms@transactions.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/quotes.yaml b/openapi/paths/quotes.yaml index 588a782464..6246b90810 100644 --- a/openapi/paths/quotes.yaml +++ b/openapi/paths/quotes.yaml @@ -1,5 +1,6 @@ get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: @@ -35,7 +36,8 @@ get: '403': $ref: ../components/responses/Forbidden.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}.yaml b/openapi/paths/quotes@{id}.yaml index 259d477770..fc30fdb6c3 100644 --- a/openapi/paths/quotes@{id}.yaml +++ b/openapi/paths/quotes@{id}.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: @@ -30,7 +31,8 @@ get: '404': $ref: ../components/responses/NotFound.yaml put: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: @@ -73,7 +75,8 @@ put: '422': $ref: ../components/responses/ValidationError.yaml patch: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@accept.yaml b/openapi/paths/quotes@{id}@accept.yaml index 4c3d7349ad..9da5a8d0b5 100644 --- a/openapi/paths/quotes@{id}@accept.yaml +++ b/openapi/paths/quotes@{id}@accept.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@cancel.yaml b/openapi/paths/quotes@{id}@cancel.yaml index 23c158ab0f..00b6ab81b3 100644 --- a/openapi/paths/quotes@{id}@cancel.yaml +++ b/openapi/paths/quotes@{id}@cancel.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@issue.yaml b/openapi/paths/quotes@{id}@issue.yaml index 39da138f05..bc4aa278c5 100644 --- a/openapi/paths/quotes@{id}@issue.yaml +++ b/openapi/paths/quotes@{id}@issue.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@recall.yaml b/openapi/paths/quotes@{id}@recall.yaml index 6b44d4a6b7..606fe9f6eb 100644 --- a/openapi/paths/quotes@{id}@recall.yaml +++ b/openapi/paths/quotes@{id}@recall.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@reject.yaml b/openapi/paths/quotes@{id}@reject.yaml index 99e1753efd..8cf21b4c3c 100644 --- a/openapi/paths/quotes@{id}@reject.yaml +++ b/openapi/paths/quotes@{id}@reject.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@timeline.yaml b/openapi/paths/quotes@{id}@timeline.yaml index 9f39aea8ab..e29b536a3e 100644 --- a/openapi/paths/quotes@{id}@timeline.yaml +++ b/openapi/paths/quotes@{id}@timeline.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../components/parameters/resourceId.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: @@ -38,7 +39,8 @@ get: $ref: ../components/responses/Forbidden.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/quotes@{id}@timeline@{messageId}.yaml b/openapi/paths/quotes@{id}@timeline@{messageId}.yaml index 3c7e7326f1..c7d48d0859 100644 --- a/openapi/paths/quotes@{id}@timeline@{messageId}.yaml +++ b/openapi/paths/quotes@{id}@timeline@{messageId}.yaml @@ -7,7 +7,8 @@ parameters: schema: type: string get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: @@ -30,7 +31,8 @@ get: '404': $ref: ../components/responses/NotFound.yaml delete: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/reports@api-log-summary.yaml b/openapi/paths/reports@api-log-summary.yaml index b88dfe6cf1..039df82337 100644 --- a/openapi/paths/reports@api-log-summary.yaml +++ b/openapi/paths/reports@api-log-summary.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@cumulative-subscriptions.yaml b/openapi/paths/reports@cumulative-subscriptions.yaml index f66d597b05..91cdefba44 100644 --- a/openapi/paths/reports@cumulative-subscriptions.yaml +++ b/openapi/paths/reports@cumulative-subscriptions.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@dashboard.yaml b/openapi/paths/reports@dashboard.yaml index 1fe968e0d9..bdbd429d2b 100644 --- a/openapi/paths/reports@dashboard.yaml +++ b/openapi/paths/reports@dashboard.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@dcc-markup.yaml b/openapi/paths/reports@dcc-markup.yaml index 32d68f7158..c13cfa86c9 100644 --- a/openapi/paths/reports@dcc-markup.yaml +++ b/openapi/paths/reports@dcc-markup.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@declined-transactions.yaml b/openapi/paths/reports@declined-transactions.yaml index 861e14bec6..4695c84530 100644 --- a/openapi/paths/reports@declined-transactions.yaml +++ b/openapi/paths/reports@declined-transactions.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@disputes.yaml b/openapi/paths/reports@disputes.yaml index 62d53c1e33..41aa7e8899 100644 --- a/openapi/paths/reports@disputes.yaml +++ b/openapi/paths/reports@disputes.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@events-triggered.yaml b/openapi/paths/reports@events-triggered.yaml index de57a95e49..d3ec471391 100644 --- a/openapi/paths/reports@events-triggered.yaml +++ b/openapi/paths/reports@events-triggered.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@events-triggered@{eventType}@rules.yaml b/openapi/paths/reports@events-triggered@{eventType}@rules.yaml index e7168258f0..5f982f2e52 100644 --- a/openapi/paths/reports@events-triggered@{eventType}@rules.yaml +++ b/openapi/paths/reports@events-triggered@{eventType}@rules.yaml @@ -25,7 +25,8 @@ parameters: schema: $ref: ../components/schemas/EventType.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@future-renewals.yaml b/openapi/paths/reports@future-renewals.yaml index 1abd32c02a..57b4e0d297 100644 --- a/openapi/paths/reports@future-renewals.yaml +++ b/openapi/paths/reports@future-renewals.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@journal.yaml b/openapi/paths/reports@journal.yaml index 20fac05a05..87be175c05 100644 --- a/openapi/paths/reports@journal.yaml +++ b/openapi/paths/reports@journal.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@kyc-acceptance-summary.yaml b/openapi/paths/reports@kyc-acceptance-summary.yaml index 17cfed1b9e..149d3af03e 100644 --- a/openapi/paths/reports@kyc-acceptance-summary.yaml +++ b/openapi/paths/reports@kyc-acceptance-summary.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@kyc-rejection-summary.yaml b/openapi/paths/reports@kyc-rejection-summary.yaml index 5a8b4ce30e..b6d0fd883d 100644 --- a/openapi/paths/reports@kyc-rejection-summary.yaml +++ b/openapi/paths/reports@kyc-rejection-summary.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@kyc-request-summary.yaml b/openapi/paths/reports@kyc-request-summary.yaml index d64b4b04d1..eb9ddcf50d 100644 --- a/openapi/paths/reports@kyc-request-summary.yaml +++ b/openapi/paths/reports@kyc-request-summary.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@monthly-recurring-revenue.yaml b/openapi/paths/reports@monthly-recurring-revenue.yaml index b32f2c721b..a2cacd2d8e 100644 --- a/openapi/paths/reports@monthly-recurring-revenue.yaml +++ b/openapi/paths/reports@monthly-recurring-revenue.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@renewal-sales.yaml b/openapi/paths/reports@renewal-sales.yaml index 8258a0299f..066beefb63 100644 --- a/openapi/paths/reports@renewal-sales.yaml +++ b/openapi/paths/reports@renewal-sales.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@retention-percentage.yaml b/openapi/paths/reports@retention-percentage.yaml index 07770627a7..3ce4e757c9 100644 --- a/openapi/paths/reports@retention-percentage.yaml +++ b/openapi/paths/reports@retention-percentage.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@retention-value.yaml b/openapi/paths/reports@retention-value.yaml index d04185b45b..e29b209da7 100644 --- a/openapi/paths/reports@retention-value.yaml +++ b/openapi/paths/reports@retention-value.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@revenue-audit.yaml b/openapi/paths/reports@revenue-audit.yaml index b4f612ea8c..d423a4c4a1 100644 --- a/openapi/paths/reports@revenue-audit.yaml +++ b/openapi/paths/reports@revenue-audit.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@revenue-waterfall.yaml b/openapi/paths/reports@revenue-waterfall.yaml index c75433a94d..c1a5ec16f6 100644 --- a/openapi/paths/reports@revenue-waterfall.yaml +++ b/openapi/paths/reports@revenue-waterfall.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@subscription-cancellation.yaml b/openapi/paths/reports@subscription-cancellation.yaml index 2dec853a60..489ba8fc1a 100644 --- a/openapi/paths/reports@subscription-cancellation.yaml +++ b/openapi/paths/reports@subscription-cancellation.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@subscription-renewal.yaml b/openapi/paths/reports@subscription-renewal.yaml index 66a8575313..e8159314e7 100644 --- a/openapi/paths/reports@subscription-renewal.yaml +++ b/openapi/paths/reports@subscription-renewal.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@tax.yaml b/openapi/paths/reports@tax.yaml index 1545011b25..19fe66faa8 100644 --- a/openapi/paths/reports@tax.yaml +++ b/openapi/paths/reports@tax.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@time-series-transaction.yaml b/openapi/paths/reports@time-series-transaction.yaml index b13a025fd8..e845682c53 100644 --- a/openapi/paths/reports@time-series-transaction.yaml +++ b/openapi/paths/reports@time-series-transaction.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@transactions-time-dispute.yaml b/openapi/paths/reports@transactions-time-dispute.yaml index 605cd9e7fa..346dabc5a5 100644 --- a/openapi/paths/reports@transactions-time-dispute.yaml +++ b/openapi/paths/reports@transactions-time-dispute.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/reports@transactions.yaml b/openapi/paths/reports@transactions.yaml index b0449d47b1..5e2d96f302 100644 --- a/openapi/paths/reports@transactions.yaml +++ b/openapi/paths/reports@transactions.yaml @@ -18,7 +18,8 @@ servers: An organization is an entity that represents a company. For more information, see [Obtain an organization ID](https://www.rebilly.com/docs/settings/organizations-and-websites/#obtain-your-organization-id-and-website-id). get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: diff --git a/openapi/paths/storefront/deposit-requests@{id}.yaml b/openapi/paths/storefront/deposit-requests@{id}.yaml index b9c6545338..737be62334 100644 --- a/openapi/paths/storefront/deposit-requests@{id}.yaml +++ b/openapi/paths/storefront/deposit-requests@{id}.yaml @@ -3,7 +3,8 @@ parameters: get: x-products: - Storefront - x-badge: Experimental + x-badges: + - name: Experimental tags: - Storefront deposits summary: Retrieve a deposit request diff --git a/openapi/paths/storefront/deposit-strategies@{id}.yaml b/openapi/paths/storefront/deposit-strategies@{id}.yaml index eb2772b45a..5f8a9aed46 100644 --- a/openapi/paths/storefront/deposit-strategies@{id}.yaml +++ b/openapi/paths/storefront/deposit-strategies@{id}.yaml @@ -3,7 +3,8 @@ parameters: get: x-products: - Storefront - x-badge: Experimental + x-badges: + - name: Experimental tags: - Storefront deposits summary: Retrieve a deposit strategy diff --git a/openapi/paths/storefront/deposit.yaml b/openapi/paths/storefront/deposit.yaml index eb74574da4..450a882384 100644 --- a/openapi/paths/storefront/deposit.yaml +++ b/openapi/paths/storefront/deposit.yaml @@ -1,7 +1,8 @@ post: x-products: - Storefront - x-badge: Experimental + x-badges: + - name: Experimental tags: - Storefront deposits summary: Create a deposit diff --git a/openapi/paths/storefront/preview-purchase.yaml b/openapi/paths/storefront/preview-purchase.yaml index 9d54a7d77f..9fdc7440f3 100644 --- a/openapi/paths/storefront/preview-purchase.yaml +++ b/openapi/paths/storefront/preview-purchase.yaml @@ -1,5 +1,6 @@ post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/storefront/quotes@{id}.yaml b/openapi/paths/storefront/quotes@{id}.yaml index 3a82c58d77..d1ab1d3517 100644 --- a/openapi/paths/storefront/quotes@{id}.yaml +++ b/openapi/paths/storefront/quotes@{id}.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../../components/parameters/resourceId.yaml get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/storefront/quotes@{id}@accept.yaml b/openapi/paths/storefront/quotes@{id}@accept.yaml index 343f700c72..ea8ab9a706 100644 --- a/openapi/paths/storefront/quotes@{id}@accept.yaml +++ b/openapi/paths/storefront/quotes@{id}@accept.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/storefront/quotes@{id}@reject.yaml b/openapi/paths/storefront/quotes@{id}@reject.yaml index 70d0793e0c..c4bfee5ff5 100644 --- a/openapi/paths/storefront/quotes@{id}@reject.yaml +++ b/openapi/paths/storefront/quotes@{id}@reject.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/storefront/subscription-reactivations.yaml b/openapi/paths/storefront/subscription-reactivations.yaml index fd7ec95aab..72194e5db3 100644 --- a/openapi/paths/storefront/subscription-reactivations.yaml +++ b/openapi/paths/storefront/subscription-reactivations.yaml @@ -1,5 +1,6 @@ post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/storefront/subscriptions.yaml b/openapi/paths/storefront/subscriptions.yaml index f73c25119d..ab2bb7cad9 100644 --- a/openapi/paths/storefront/subscriptions.yaml +++ b/openapi/paths/storefront/subscriptions.yaml @@ -1,5 +1,6 @@ post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/storefront/subscriptions@{id}@change-items.yaml b/openapi/paths/storefront/subscriptions@{id}@change-items.yaml index dc5f77dead..0bf32a304c 100644 --- a/openapi/paths/storefront/subscriptions@{id}@change-items.yaml +++ b/openapi/paths/storefront/subscriptions@{id}@change-items.yaml @@ -1,7 +1,8 @@ parameters: - $ref: ../../components/parameters/resourceId.yaml post: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Storefront tags: diff --git a/openapi/paths/subscriptions@{id}@items@{itemId}.yaml b/openapi/paths/subscriptions@{id}@items@{itemId}.yaml index 7535c6673f..a5072c7b46 100644 --- a/openapi/paths/subscriptions@{id}@items@{itemId}.yaml +++ b/openapi/paths/subscriptions@{id}@items@{itemId}.yaml @@ -7,7 +7,8 @@ parameters: schema: type: string patch: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Core tags: diff --git a/openapi/paths/subscriptions@{subscriptionId}@summary-metrics.yaml b/openapi/paths/subscriptions@{subscriptionId}@summary-metrics.yaml index dba8fdb812..a012ae899b 100644 --- a/openapi/paths/subscriptions@{subscriptionId}@summary-metrics.yaml +++ b/openapi/paths/subscriptions@{subscriptionId}@summary-metrics.yaml @@ -25,7 +25,8 @@ parameters: schema: type: string get: - x-badge: Experimental + x-badges: + - name: Experimental x-products: - Reports tags: