@wix/auto_sdk_subscription_subscriptions 1.0.17 → 1.0.19
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 +21 -21
- package/build/cjs/index.js +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +41 -21
- package/build/cjs/index.typings.js +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +21 -1
- package/build/cjs/meta.js +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +21 -21
- package/build/es/index.mjs +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +41 -21
- package/build/es/index.typings.mjs +7 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +21 -1
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +22 -22
- package/build/internal/cjs/index.js +8 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +42 -22
- package/build/internal/cjs/index.typings.js +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +21 -1
- package/build/internal/cjs/meta.js +8 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +22 -22
- package/build/internal/es/index.mjs +7 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +42 -22
- package/build/internal/es/index.typings.mjs +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +21 -1
- package/build/internal/es/meta.mjs +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -37,6 +37,7 @@ __export(index_typings_exports, {
|
|
|
37
37
|
OrderMethod: () => OrderMethod,
|
|
38
38
|
PauseAt: () => PauseAt,
|
|
39
39
|
PausePolicy: () => PausePolicy,
|
|
40
|
+
PauseType: () => PauseType,
|
|
40
41
|
PaymentAttemptStatus: () => PaymentAttemptStatus,
|
|
41
42
|
PaymentMode: () => PaymentMode,
|
|
42
43
|
PaymentSettlementMethod: () => PaymentSettlementMethod,
|
|
@@ -3248,6 +3249,12 @@ var ResumeAt = /* @__PURE__ */ ((ResumeAt2) => {
|
|
|
3248
3249
|
ResumeAt2["SPECIFIC_DATE"] = "SPECIFIC_DATE";
|
|
3249
3250
|
return ResumeAt2;
|
|
3250
3251
|
})(ResumeAt || {});
|
|
3252
|
+
var PauseType = /* @__PURE__ */ ((PauseType2) => {
|
|
3253
|
+
PauseType2["UNKNOWN_PAUSE_TYPE"] = "UNKNOWN_PAUSE_TYPE";
|
|
3254
|
+
PauseType2["PAUSE"] = "PAUSE";
|
|
3255
|
+
PauseType2["SKIP_CYCLE"] = "SKIP_CYCLE";
|
|
3256
|
+
return PauseType2;
|
|
3257
|
+
})(PauseType || {});
|
|
3251
3258
|
var HistoryActionInitiator = /* @__PURE__ */ ((HistoryActionInitiator2) => {
|
|
3252
3259
|
HistoryActionInitiator2["UNDEFINED"] = "UNDEFINED";
|
|
3253
3260
|
HistoryActionInitiator2["BUSINESS"] = "BUSINESS";
|
|
@@ -4811,6 +4818,7 @@ async function listSubscriptionHistory2(subscriptionId, options) {
|
|
|
4811
4818
|
OrderMethod,
|
|
4812
4819
|
PauseAt,
|
|
4813
4820
|
PausePolicy,
|
|
4821
|
+
PauseType,
|
|
4814
4822
|
PaymentAttemptStatus,
|
|
4815
4823
|
PaymentMode,
|
|
4816
4824
|
PaymentSettlementMethod,
|