@wix/auto_sdk_stores_customizations-v-3 1.0.32 → 1.0.34
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/cjs/index.typings.d.ts +8 -0
- package/build/cjs/index.typings.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/es/index.typings.d.mts +8 -0
- package/build/es/index.typings.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/cjs/index.typings.d.ts +8 -0
- package/build/internal/cjs/index.typings.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/build/internal/es/index.typings.d.mts +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -161,14 +161,14 @@ declare const bulkUpdateCustomizations: MaybeContext<BuildRESTFunction<typeof bu
|
|
|
161
161
|
/**
|
|
162
162
|
* Triggered when a customization is created.
|
|
163
163
|
*/
|
|
164
|
-
declare const onCustomizationCreated: BuildEventDefinition<typeof onCustomizationCreated$1
|
|
164
|
+
declare const onCustomizationCreated: BuildEventDefinition<typeof onCustomizationCreated$1> & typeof onCustomizationCreated$1;
|
|
165
165
|
/**
|
|
166
166
|
* Triggered when a customization is deleted.
|
|
167
167
|
*/
|
|
168
|
-
declare const onCustomizationDeleted: BuildEventDefinition<typeof onCustomizationDeleted$1
|
|
168
|
+
declare const onCustomizationDeleted: BuildEventDefinition<typeof onCustomizationDeleted$1> & typeof onCustomizationDeleted$1;
|
|
169
169
|
/**
|
|
170
170
|
* Triggered when a customization is updated.
|
|
171
171
|
*/
|
|
172
|
-
declare const onCustomizationUpdated: BuildEventDefinition<typeof onCustomizationUpdated$1
|
|
172
|
+
declare const onCustomizationUpdated: BuildEventDefinition<typeof onCustomizationUpdated$1> & typeof onCustomizationUpdated$1;
|
|
173
173
|
|
|
174
174
|
export { AddCustomizationChoicesApplicationErrors, AddCustomizationChoicesOptions, AddCustomizationChoicesResponse, AddCustomizationChoicesValidationErrors, BulkAddCustomizationChoicesApplicationErrors, BulkAddCustomizationChoicesOptions, BulkAddCustomizationChoicesResponse, BulkAddCustomizationChoicesValidationErrors, BulkCreateCustomizationsApplicationErrors, BulkCreateCustomizationsOptions, BulkCreateCustomizationsResponse, BulkCreateCustomizationsValidationErrors, BulkUpdateCustomizationsOptions, BulkUpdateCustomizationsResponse, Choice, CreateCustomizationApplicationErrors, CreateCustomizationValidationErrors, Customization, CustomizationChoices, CustomizationCreatedEnvelope, CustomizationDeletedEnvelope, CustomizationUpdatedEnvelope, CustomizationsQueryBuilder, DeleteCustomizationValidationErrors, GetCustomizationOptions, MaskedCustomization, QueryCustomizationsOptions, RemoveCustomizationChoicesApplicationErrors, RemoveCustomizationChoicesOptions, RemoveCustomizationChoicesResponse, RemoveCustomizationChoicesValidationErrors, SetCustomizationChoicesApplicationErrors, SetCustomizationChoicesOptions, SetCustomizationChoicesResponse, SetCustomizationChoicesValidationErrors, UpdateCustomization, UpdateCustomizationOptions, addCustomizationChoices, bulkAddCustomizationChoices, bulkCreateCustomizations, bulkUpdateCustomizations, createCustomization, deleteCustomization, getCustomization, onCustomizationCreated, onCustomizationDeleted, onCustomizationUpdated, queryCustomizations, removeCustomizationChoices, setCustomizationChoices, updateCustomization };
|
package/build/cjs/index.js
CHANGED
|
@@ -1372,9 +1372,15 @@ var setCustomizationChoices4 = /* @__PURE__ */ (0, import_rest_modules3.createRE
|
|
|
1372
1372
|
var removeCustomizationChoices4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(removeCustomizationChoices3);
|
|
1373
1373
|
var bulkAddCustomizationChoices4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkAddCustomizationChoices3);
|
|
1374
1374
|
var bulkUpdateCustomizations4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(bulkUpdateCustomizations3);
|
|
1375
|
-
var onCustomizationCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1376
|
-
|
|
1377
|
-
|
|
1375
|
+
var onCustomizationCreated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1376
|
+
onCustomizationCreated
|
|
1377
|
+
);
|
|
1378
|
+
var onCustomizationDeleted2 = (0, import_event_definition_modules.createEventModule)(
|
|
1379
|
+
onCustomizationDeleted
|
|
1380
|
+
);
|
|
1381
|
+
var onCustomizationUpdated2 = (0, import_event_definition_modules.createEventModule)(
|
|
1382
|
+
onCustomizationUpdated
|
|
1383
|
+
);
|
|
1378
1384
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1379
1385
|
0 && (module.exports = {
|
|
1380
1386
|
ChoiceType,
|