@wix/auto_sdk_subscription_subscriptions 1.0.43 → 1.0.45
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.js +24 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -4
- package/build/cjs/index.typings.js +24 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -4
- package/build/cjs/meta.js +24 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +24 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -4
- package/build/es/index.typings.mjs +24 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -4
- package/build/es/meta.mjs +24 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +24 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +11 -4
- package/build/internal/cjs/index.typings.js +24 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -4
- package/build/internal/cjs/meta.js +24 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +24 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +11 -4
- package/build/internal/es/index.typings.mjs +24 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -4
- package/build/internal/es/meta.mjs +24 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
package/build/cjs/meta.d.ts
CHANGED
|
@@ -3193,12 +3193,11 @@ interface AllowedActionsRequest {
|
|
|
3193
3193
|
fields?: RequestedFieldsWithLiterals[];
|
|
3194
3194
|
}
|
|
3195
3195
|
declare enum RequestedFields {
|
|
3196
|
-
UNKNOWN_REQUESTED_FIELD = "UNKNOWN_REQUESTED_FIELD",
|
|
3197
3196
|
/** Include unsupported action list, including the reasons for the lack of support */
|
|
3198
3197
|
UNSUPPORTED_ACTION = "UNSUPPORTED_ACTION"
|
|
3199
3198
|
}
|
|
3200
3199
|
/** @enumType */
|
|
3201
|
-
type RequestedFieldsWithLiterals = RequestedFields | '
|
|
3200
|
+
type RequestedFieldsWithLiterals = RequestedFields | 'UNSUPPORTED_ACTION';
|
|
3202
3201
|
interface AllowedActionsResponse {
|
|
3203
3202
|
/** List of actions that are allowed. */
|
|
3204
3203
|
actions?: Action[];
|
|
@@ -3746,7 +3745,6 @@ interface Refund {
|
|
|
3746
3745
|
description?: string | null;
|
|
3747
3746
|
}
|
|
3748
3747
|
declare enum RefundReason {
|
|
3749
|
-
UNKNOWN_REFUND_REASON = "UNKNOWN_REFUND_REASON",
|
|
3750
3748
|
DUPLICATE_CHARGE = "DUPLICATE_CHARGE",
|
|
3751
3749
|
FRAUDULENT = "FRAUDULENT",
|
|
3752
3750
|
CUSTOMER_REQUEST = "CUSTOMER_REQUEST",
|
|
@@ -3754,7 +3752,7 @@ declare enum RefundReason {
|
|
|
3754
3752
|
OTHER = "OTHER"
|
|
3755
3753
|
}
|
|
3756
3754
|
/** @enumType */
|
|
3757
|
-
type RefundReasonWithLiterals = RefundReason | '
|
|
3755
|
+
type RefundReasonWithLiterals = RefundReason | 'DUPLICATE_CHARGE' | 'FRAUDULENT' | 'CUSTOMER_REQUEST' | 'PROVISION_FAILED' | 'OTHER';
|
|
3758
3756
|
interface ChangeSubscriptionRequest {
|
|
3759
3757
|
/**
|
|
3760
3758
|
* ID of the subscription to change
|
package/build/cjs/meta.js
CHANGED
|
@@ -140,6 +140,12 @@ function resolveComWixpressBillingSubscriptionsApiV1SubscriptionHistoryServiceUr
|
|
|
140
140
|
srcPath: "/_api/billing-subscriptions",
|
|
141
141
|
destPath: ""
|
|
142
142
|
}
|
|
143
|
+
],
|
|
144
|
+
"payments.base44.com": [
|
|
145
|
+
{
|
|
146
|
+
srcPath: "/_api/billing-subscriptions",
|
|
147
|
+
destPath: ""
|
|
148
|
+
}
|
|
143
149
|
]
|
|
144
150
|
};
|
|
145
151
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
@@ -175,6 +181,12 @@ function resolveComWixpressBillingSubscriptionsApiV1SubscriptionsServiceUrl(opts
|
|
|
175
181
|
srcPath: "/_api/billing-subscriptions",
|
|
176
182
|
destPath: ""
|
|
177
183
|
}
|
|
184
|
+
],
|
|
185
|
+
"payments.base44.com": [
|
|
186
|
+
{
|
|
187
|
+
srcPath: "/_api/billing-subscriptions",
|
|
188
|
+
destPath: ""
|
|
189
|
+
}
|
|
178
190
|
]
|
|
179
191
|
};
|
|
180
192
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
@@ -210,6 +222,12 @@ function resolveComWixpressBillingSubscriptionsApiV1SubscriptionsBackOfficeServi
|
|
|
210
222
|
srcPath: "/_api/billing-subscriptions",
|
|
211
223
|
destPath: ""
|
|
212
224
|
}
|
|
225
|
+
],
|
|
226
|
+
"payments.base44.com": [
|
|
227
|
+
{
|
|
228
|
+
srcPath: "/_api/billing-subscriptions",
|
|
229
|
+
destPath: ""
|
|
230
|
+
}
|
|
213
231
|
]
|
|
214
232
|
};
|
|
215
233
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
@@ -245,6 +263,12 @@ function resolveComWixpressBillingSubscriptionsApiV1CustomerSubscriptionsService
|
|
|
245
263
|
srcPath: "/_api/billing-subscriptions",
|
|
246
264
|
destPath: ""
|
|
247
265
|
}
|
|
266
|
+
],
|
|
267
|
+
"payments.base44.com": [
|
|
268
|
+
{
|
|
269
|
+
srcPath: "/_api/billing-subscriptions",
|
|
270
|
+
destPath: ""
|
|
271
|
+
}
|
|
248
272
|
]
|
|
249
273
|
};
|
|
250
274
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|
|
@@ -3744,7 +3768,6 @@ var UpdateAction = /* @__PURE__ */ ((UpdateAction2) => {
|
|
|
3744
3768
|
return UpdateAction2;
|
|
3745
3769
|
})(UpdateAction || {});
|
|
3746
3770
|
var RequestedFields = /* @__PURE__ */ ((RequestedFields2) => {
|
|
3747
|
-
RequestedFields2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
|
|
3748
3771
|
RequestedFields2["UNSUPPORTED_ACTION"] = "UNSUPPORTED_ACTION";
|
|
3749
3772
|
return RequestedFields2;
|
|
3750
3773
|
})(RequestedFields || {});
|
|
@@ -3795,7 +3818,6 @@ var PriceAdjustmentReason = /* @__PURE__ */ ((PriceAdjustmentReason2) => {
|
|
|
3795
3818
|
return PriceAdjustmentReason2;
|
|
3796
3819
|
})(PriceAdjustmentReason || {});
|
|
3797
3820
|
var RefundReason = /* @__PURE__ */ ((RefundReason2) => {
|
|
3798
|
-
RefundReason2["UNKNOWN_REFUND_REASON"] = "UNKNOWN_REFUND_REASON";
|
|
3799
3821
|
RefundReason2["DUPLICATE_CHARGE"] = "DUPLICATE_CHARGE";
|
|
3800
3822
|
RefundReason2["FRAUDULENT"] = "FRAUDULENT";
|
|
3801
3823
|
RefundReason2["CUSTOMER_REQUEST"] = "CUSTOMER_REQUEST";
|