@wix/auto_sdk_stores_customizations-v-3 1.0.80 → 1.0.81
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 +36 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +55 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +166 -1
- package/build/cjs/schemas.js +314 -25
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +36 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +55 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +166 -1
- package/build/es/schemas.mjs +310 -25
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +0 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +3 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +166 -1
- package/build/internal/cjs/schemas.js +314 -25
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +0 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +3 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +166 -1
- package/build/internal/es/schemas.mjs +310 -25
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -101,7 +101,6 @@ interface RemoveCustomizationChoicesSignature {
|
|
|
101
101
|
__validationErrorsType?: RemoveCustomizationChoicesValidationErrors;
|
|
102
102
|
}>;
|
|
103
103
|
}
|
|
104
|
-
/** @internal */
|
|
105
104
|
declare function updateCustomizationChoices$1(httpClient: HttpClient): UpdateCustomizationChoicesSignature;
|
|
106
105
|
interface UpdateCustomizationChoicesSignature {
|
|
107
106
|
/**
|
|
@@ -119,7 +118,6 @@ interface UpdateCustomizationChoicesSignature {
|
|
|
119
118
|
__validationErrorsType?: UpdateCustomizationChoicesValidationErrors;
|
|
120
119
|
}>;
|
|
121
120
|
}
|
|
122
|
-
/** @internal */
|
|
123
121
|
declare function reorderCustomizationChoices$1(httpClient: HttpClient): ReorderCustomizationChoicesSignature;
|
|
124
122
|
interface ReorderCustomizationChoicesSignature {
|
|
125
123
|
/**
|
|
@@ -173,9 +171,7 @@ declare const bulkCreateCustomizations: MaybeContext<BuildRESTFunction<typeof bu
|
|
|
173
171
|
declare const addCustomizationChoices: MaybeContext<BuildRESTFunction<typeof addCustomizationChoices$1> & typeof addCustomizationChoices$1>;
|
|
174
172
|
declare const setCustomizationChoices: MaybeContext<BuildRESTFunction<typeof setCustomizationChoices$1> & typeof setCustomizationChoices$1>;
|
|
175
173
|
declare const removeCustomizationChoices: MaybeContext<BuildRESTFunction<typeof removeCustomizationChoices$1> & typeof removeCustomizationChoices$1>;
|
|
176
|
-
/** @internal */
|
|
177
174
|
declare const updateCustomizationChoices: MaybeContext<BuildRESTFunction<typeof updateCustomizationChoices$1> & typeof updateCustomizationChoices$1>;
|
|
178
|
-
/** @internal */
|
|
179
175
|
declare const reorderCustomizationChoices: MaybeContext<BuildRESTFunction<typeof reorderCustomizationChoices$1> & typeof reorderCustomizationChoices$1>;
|
|
180
176
|
declare const bulkAddCustomizationChoices: MaybeContext<BuildRESTFunction<typeof bulkAddCustomizationChoices$1> & typeof bulkAddCustomizationChoices$1>;
|
|
181
177
|
declare const bulkUpdateCustomizations: MaybeContext<BuildRESTFunction<typeof bulkUpdateCustomizations$1> & typeof bulkUpdateCustomizations$1>;
|