@wix/auto_sdk_ecom_subscription-contracts 1.0.50 → 1.0.52
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 +3 -3
- package/build/cjs/index.js +10 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -2
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +10 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -2
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +10 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -2
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +10 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -2
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -32,10 +32,10 @@ declare const onSubscriptionContractUpdated$1: EventDefinition<SubscriptionContr
|
|
|
32
32
|
declare const getSubscriptionContract: MaybeContext<BuildRESTFunction<typeof getSubscriptionContract$1> & typeof getSubscriptionContract$1>;
|
|
33
33
|
declare const querySubscriptionContracts: MaybeContext<BuildRESTFunction<typeof querySubscriptionContracts$1> & typeof querySubscriptionContracts$1>;
|
|
34
34
|
/** */
|
|
35
|
-
declare const onSubscriptionContractCreated: BuildEventDefinition<typeof onSubscriptionContractCreated$1
|
|
35
|
+
declare const onSubscriptionContractCreated: BuildEventDefinition<typeof onSubscriptionContractCreated$1> & typeof onSubscriptionContractCreated$1;
|
|
36
36
|
/** */
|
|
37
|
-
declare const onSubscriptionContractDeleted: BuildEventDefinition<typeof onSubscriptionContractDeleted$1
|
|
37
|
+
declare const onSubscriptionContractDeleted: BuildEventDefinition<typeof onSubscriptionContractDeleted$1> & typeof onSubscriptionContractDeleted$1;
|
|
38
38
|
/** */
|
|
39
|
-
declare const onSubscriptionContractUpdated: BuildEventDefinition<typeof onSubscriptionContractUpdated$1
|
|
39
|
+
declare const onSubscriptionContractUpdated: BuildEventDefinition<typeof onSubscriptionContractUpdated$1> & typeof onSubscriptionContractUpdated$1;
|
|
40
40
|
|
|
41
41
|
export { SubscriptionContract, SubscriptionContractCreatedEnvelope, SubscriptionContractDeletedEnvelope, SubscriptionContractUpdatedEnvelope, SubscriptionContractsQueryBuilder, getSubscriptionContract, onSubscriptionContractCreated, onSubscriptionContractDeleted, onSubscriptionContractUpdated, querySubscriptionContracts };
|
package/build/cjs/index.js
CHANGED
|
@@ -353,6 +353,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
353
353
|
ChannelType2["ETSY"] = "ETSY";
|
|
354
354
|
ChannelType2["TIKTOK"] = "TIKTOK";
|
|
355
355
|
ChannelType2["FAIRE_COM"] = "FAIRE_COM";
|
|
356
|
+
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
356
357
|
return ChannelType2;
|
|
357
358
|
})(ChannelType || {});
|
|
358
359
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
@@ -630,9 +631,15 @@ var import_rest_modules3 = require("@wix/sdk-runtime/rest-modules");
|
|
|
630
631
|
var import_event_definition_modules = require("@wix/sdk-runtime/event-definition-modules");
|
|
631
632
|
var getSubscriptionContract4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getSubscriptionContract3);
|
|
632
633
|
var querySubscriptionContracts4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(querySubscriptionContracts3);
|
|
633
|
-
var onSubscriptionContractCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
634
|
-
|
|
635
|
-
|
|
634
|
+
var onSubscriptionContractCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
635
|
+
onSubscriptionContractCreated
|
|
636
|
+
);
|
|
637
|
+
var onSubscriptionContractDeleted2 = (0, import_event_definition_modules.createEventModule)(
|
|
638
|
+
onSubscriptionContractDeleted
|
|
639
|
+
);
|
|
640
|
+
var onSubscriptionContractUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
641
|
+
onSubscriptionContractUpdated
|
|
642
|
+
);
|
|
636
643
|
// Annotate the CommonJS export names for ESM import in node:
|
|
637
644
|
0 && (module.exports = {
|
|
638
645
|
AdjustmentType,
|