@wix/auto_sdk_stores_customizations-v-3 1.0.33 → 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.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.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.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.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
|
@@ -886,6 +886,10 @@ type CreateCustomizationValidationErrors = {
|
|
|
886
886
|
ruleName?: 'ONLY_SPACES_STRING_ERROR';
|
|
887
887
|
} | {
|
|
888
888
|
ruleName?: 'DUPLICATE_CHOICE_NAME';
|
|
889
|
+
} | {
|
|
890
|
+
ruleName?: 'CUSTOMIZATION_WITH_ONLY_ID_OR_CHOICE_IDS';
|
|
891
|
+
} | {
|
|
892
|
+
ruleName?: 'MIXED_CHOICE_IDS_CONSISTENCY';
|
|
889
893
|
};
|
|
890
894
|
/** @docsIgnore */
|
|
891
895
|
type DeleteCustomizationValidationErrors = {
|
|
@@ -918,6 +922,10 @@ type BulkCreateCustomizationsValidationErrors = {
|
|
|
918
922
|
ruleName?: 'DUPLICATE_CHOICE_NAME';
|
|
919
923
|
} | {
|
|
920
924
|
ruleName?: 'INVALID_CHOICE_VALUE';
|
|
925
|
+
} | {
|
|
926
|
+
ruleName?: 'CUSTOMIZATION_WITH_ONLY_ID_OR_CHOICE_IDS';
|
|
927
|
+
} | {
|
|
928
|
+
ruleName?: 'MIXED_CHOICE_IDS_CONSISTENCY';
|
|
921
929
|
};
|
|
922
930
|
/** @docsIgnore */
|
|
923
931
|
type AddCustomizationChoicesApplicationErrors = {
|