@wix/auto_sdk_subscription_subscriptions 1.0.8 → 1.0.9
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +54 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +7 -1
- package/build/cjs/index.typings.js +54 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -0
- package/build/cjs/meta.js +48 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +54 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +7 -1
- package/build/es/index.typings.mjs +54 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -0
- package/build/es/meta.mjs +48 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +54 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -1
- package/build/internal/cjs/index.typings.js +54 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -0
- package/build/internal/cjs/meta.js +48 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +54 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -1
- package/build/internal/es/index.typings.mjs +54 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -0
- package/build/internal/es/meta.mjs +48 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -2159,6 +2159,7 @@ interface SubscriptionEvent extends SubscriptionEventPayloadOneOf {
|
|
|
2159
2159
|
freeTrailEnded?: FreeTrailEnded;
|
|
2160
2160
|
billingCyclePaid?: SubscriptionBillingCyclePaid;
|
|
2161
2161
|
initiatePaymentMethodSetup?: InitiatedPaymentMethodSetup;
|
|
2162
|
+
futurePriceUpdatesRequested?: FuturePriceUpdatesRequested;
|
|
2162
2163
|
subscriptionBoAction?: SubscriptionBackOfficeAction;
|
|
2163
2164
|
unknown?: UnknownSubscriptionEvent;
|
|
2164
2165
|
}
|
|
@@ -2196,6 +2197,7 @@ interface SubscriptionEventPayloadOneOf {
|
|
|
2196
2197
|
freeTrailEnded?: FreeTrailEnded;
|
|
2197
2198
|
billingCyclePaid?: SubscriptionBillingCyclePaid;
|
|
2198
2199
|
initiatePaymentMethodSetup?: InitiatedPaymentMethodSetup;
|
|
2200
|
+
futurePriceUpdatesRequested?: FuturePriceUpdatesRequested;
|
|
2199
2201
|
subscriptionBoAction?: SubscriptionBackOfficeAction;
|
|
2200
2202
|
unknown?: UnknownSubscriptionEvent;
|
|
2201
2203
|
}
|
|
@@ -2265,6 +2267,10 @@ interface FreeTrailEnded {
|
|
|
2265
2267
|
interface InitiatedPaymentMethodSetup {
|
|
2266
2268
|
subscription?: Subscription;
|
|
2267
2269
|
}
|
|
2270
|
+
interface FuturePriceUpdatesRequested {
|
|
2271
|
+
subscription?: Subscription;
|
|
2272
|
+
requestedUpdateData?: SubscriptionUpdateData;
|
|
2273
|
+
}
|
|
2268
2274
|
interface SubscriptionBackOfficeAction {
|
|
2269
2275
|
subscription?: Subscription;
|
|
2270
2276
|
/** The backoffice method name */
|
package/build/es/meta.mjs
CHANGED
|
@@ -2878,6 +2878,54 @@ function listSubscriptionHistory(payload) {
|
|
|
2878
2878
|
{
|
|
2879
2879
|
path: "historyEntries.event.initiatePaymentMethodSetup.subscription.specificDatePendingUpdateData.executionDate"
|
|
2880
2880
|
},
|
|
2881
|
+
{
|
|
2882
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.createdDate"
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.updatedDate"
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.startDate"
|
|
2889
|
+
},
|
|
2890
|
+
{
|
|
2891
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.endDate"
|
|
2892
|
+
},
|
|
2893
|
+
{
|
|
2894
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.nextBillingDate"
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.previousBillingDate"
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.latestPaymentData.initialFailedPaymentDate"
|
|
2901
|
+
},
|
|
2902
|
+
{
|
|
2903
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.freeTrialData.startDate"
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.freeTrialData.endDate"
|
|
2907
|
+
},
|
|
2908
|
+
{
|
|
2909
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.updateBillingDateData.paidUntil"
|
|
2910
|
+
},
|
|
2911
|
+
{
|
|
2912
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.gracePeriodData.startDate"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.gracePeriodData.endDate"
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.pauseInfo.startDate"
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
2921
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.pauseInfo.resumeDate"
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.cancellationInfo.cancellationDate"
|
|
2925
|
+
},
|
|
2926
|
+
{
|
|
2927
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.specificDatePendingUpdateData.executionDate"
|
|
2928
|
+
},
|
|
2881
2929
|
{
|
|
2882
2930
|
path: "historyEntries.event.subscriptionBoAction.subscription.createdDate"
|
|
2883
2931
|
},
|