@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 +1 -1
- package/src/generated/models/accountAllOf.ts +2 -0
- package/src/generated/models/accountWebhookEntity.ts +2 -0
- package/src/generated/models/dealWebhookEntityAccount.ts +2 -0
- package/src/generated/models/index.ts +2 -0
- package/src/generated/models/personWebhookEntityAccount.ts +2 -0
- package/src/generated/models/stripeSubscriptionCancellationAllOf.ts +10 -0
- package/src/generated/models/stripeSubscriptionCancellationAllOfAccount.ts +7 -0
- package/src/generated/models/stripeSubscriptionCancellationAllOfLastProduct.ts +7 -0
package/package.json
CHANGED
|
@@ -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
|
};
|