@wix/auto_sdk_ecom_subscription-contracts 1.0.50 → 1.0.51
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 +9 -3
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +9 -3
- package/build/es/index.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js +9 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs +9 -3
- package/build/internal/es/index.mjs.map +1 -1
- 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
|
@@ -630,9 +630,15 @@ var import_rest_modules3 = require("@wix/sdk-runtime/rest-modules");
|
|
|
630
630
|
var import_event_definition_modules = require("@wix/sdk-runtime/event-definition-modules");
|
|
631
631
|
var getSubscriptionContract4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getSubscriptionContract3);
|
|
632
632
|
var querySubscriptionContracts4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(querySubscriptionContracts3);
|
|
633
|
-
var onSubscriptionContractCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
634
|
-
|
|
635
|
-
|
|
633
|
+
var onSubscriptionContractCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
634
|
+
onSubscriptionContractCreated
|
|
635
|
+
);
|
|
636
|
+
var onSubscriptionContractDeleted2 = (0, import_event_definition_modules.createEventModule)(
|
|
637
|
+
onSubscriptionContractDeleted
|
|
638
|
+
);
|
|
639
|
+
var onSubscriptionContractUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
640
|
+
onSubscriptionContractUpdated
|
|
641
|
+
);
|
|
636
642
|
// Annotate the CommonJS export names for ESM import in node:
|
|
637
643
|
0 && (module.exports = {
|
|
638
644
|
AdjustmentType,
|