@outseta/api-client 0.3.21 → 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.21",
3
+ "version": "0.3.22",
4
4
  "description": "Generated API client for the Outseta REST API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -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';
@@ -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;