@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/cjs/meta.d.ts
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/cjs/meta.js
CHANGED
|
@@ -2935,6 +2935,54 @@ function listSubscriptionHistory(payload) {
|
|
|
2935
2935
|
{
|
|
2936
2936
|
path: "historyEntries.event.initiatePaymentMethodSetup.subscription.specificDatePendingUpdateData.executionDate"
|
|
2937
2937
|
},
|
|
2938
|
+
{
|
|
2939
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.createdDate"
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.updatedDate"
|
|
2943
|
+
},
|
|
2944
|
+
{
|
|
2945
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.startDate"
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.endDate"
|
|
2949
|
+
},
|
|
2950
|
+
{
|
|
2951
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.nextBillingDate"
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.previousBillingDate"
|
|
2955
|
+
},
|
|
2956
|
+
{
|
|
2957
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.latestPaymentData.initialFailedPaymentDate"
|
|
2958
|
+
},
|
|
2959
|
+
{
|
|
2960
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.freeTrialData.startDate"
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.freeTrialData.endDate"
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.updateBillingDateData.paidUntil"
|
|
2967
|
+
},
|
|
2968
|
+
{
|
|
2969
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.gracePeriodData.startDate"
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.billingStatus.gracePeriodData.endDate"
|
|
2973
|
+
},
|
|
2974
|
+
{
|
|
2975
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.pauseInfo.startDate"
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.pauseInfo.resumeDate"
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.cancellationInfo.cancellationDate"
|
|
2982
|
+
},
|
|
2983
|
+
{
|
|
2984
|
+
path: "historyEntries.event.futurePriceUpdatesRequested.subscription.specificDatePendingUpdateData.executionDate"
|
|
2985
|
+
},
|
|
2938
2986
|
{
|
|
2939
2987
|
path: "historyEntries.event.subscriptionBoAction.subscription.createdDate"
|
|
2940
2988
|
},
|