@outseta/api-client 0.3.20 → 0.3.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outseta/api-client",
3
- "version": "0.3.20",
3
+ "version": "0.3.22",
4
4
  "description": "Generated API client for the Outseta REST API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -154,6 +154,8 @@ export type AccountAllOf = {
154
154
  /** @nullable */
155
155
  StripePrice?: string[] | null;
156
156
  /** @nullable */
157
+ StripePriceIds?: string | null;
158
+ /** @nullable */
157
159
  StripePromotionCode?: string | null;
158
160
  /** @nullable */
159
161
  TaxId?: string | null;
@@ -172,6 +172,8 @@ export interface AccountWebhookEntity {
172
172
  /** @nullable */
173
173
  StripePrice?: string[] | null;
174
174
  /** @nullable */
175
+ StripePriceIds?: string | null;
176
+ /** @nullable */
175
177
  StripePromotionCode?: string | null;
176
178
  /** @nullable */
177
179
  TaxId?: string | null;
@@ -130,6 +130,8 @@ export type DealWebhookEntityAccount = {
130
130
  /** @nullable */
131
131
  StripePrice?: string[] | null;
132
132
  /** @nullable */
133
+ StripePriceIds?: string | null;
134
+ /** @nullable */
133
135
  StripePromotionCode?: string | null;
134
136
  /** @nullable */
135
137
  TaxId?: string | null;
@@ -620,6 +620,8 @@ export * from './stripeSubscriptionAllOfCurrentStripeSubscriptionSchedule';
620
620
  export * from './stripeSubscriptionAllOfStripeSubscriptionCancellation';
621
621
  export * from './stripeSubscriptionCancellation';
622
622
  export * from './stripeSubscriptionCancellationAllOf';
623
+ export * from './stripeSubscriptionCancellationAllOfAccount';
624
+ export * from './stripeSubscriptionCancellationAllOfLastProduct';
623
625
  export * from './stripeSubscriptionItem';
624
626
  export * from './stripeSubscriptionItemAllOf';
625
627
  export * from './stripeSubscriptionItemAllOfStripePrice';
@@ -130,6 +130,8 @@ export type PersonWebhookEntityAccount = {
130
130
  /** @nullable */
131
131
  StripePrice?: string[] | null;
132
132
  /** @nullable */
133
+ StripePriceIds?: string | null;
134
+ /** @nullable */
133
135
  StripePromotionCode?: string | null;
134
136
  /** @nullable */
135
137
  TaxId?: string | null;
@@ -1,4 +1,6 @@
1
1
  // @ts-nocheck
2
+ import type { StripeSubscriptionCancellationAllOfAccount } from './stripeSubscriptionCancellationAllOfAccount';
3
+ import type { StripeSubscriptionCancellationAllOfLastProduct } from './stripeSubscriptionCancellationAllOfLastProduct';
2
4
 
3
5
  export type StripeSubscriptionCancellationAllOf = {
4
6
  /**
@@ -16,4 +18,12 @@ export type StripeSubscriptionCancellationAllOf = {
16
18
  * @nullable
17
19
  */
18
20
  Reason?: string | null;
21
+ /** @nullable */
22
+ Account?: StripeSubscriptionCancellationAllOfAccount;
23
+ /** @nullable */
24
+ CancelationReason?: string | null;
25
+ /** @nullable */
26
+ LastProduct?: StripeSubscriptionCancellationAllOfLastProduct;
27
+ SubmittedDateTime?: string;
28
+ SubscribingStartDate?: string;
19
29
  };
@@ -0,0 +1,7 @@
1
+ // @ts-nocheck
2
+ import type { Account } from './account';
3
+
4
+ /**
5
+ * @nullable
6
+ */
7
+ export type StripeSubscriptionCancellationAllOfAccount = Account | null;
@@ -0,0 +1,7 @@
1
+ // @ts-nocheck
2
+ import type { StripeProduct } from './stripeProduct';
3
+
4
+ /**
5
+ * @nullable
6
+ */
7
+ export type StripeSubscriptionCancellationAllOfLastProduct = StripeProduct | null;