@wix/auto_sdk_stores_customizations-v-3 1.0.33 → 1.0.35
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 +12 -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 +12 -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 +12 -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 +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -886,6 +886,12 @@ 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';
|
|
893
|
+
} | {
|
|
894
|
+
ruleName?: 'ID_NOT_ALLOWED_IN_REQUEST';
|
|
889
895
|
};
|
|
890
896
|
/** @docsIgnore */
|
|
891
897
|
type DeleteCustomizationValidationErrors = {
|
|
@@ -918,6 +924,12 @@ type BulkCreateCustomizationsValidationErrors = {
|
|
|
918
924
|
ruleName?: 'DUPLICATE_CHOICE_NAME';
|
|
919
925
|
} | {
|
|
920
926
|
ruleName?: 'INVALID_CHOICE_VALUE';
|
|
927
|
+
} | {
|
|
928
|
+
ruleName?: 'CUSTOMIZATION_WITH_ONLY_ID_OR_CHOICE_IDS';
|
|
929
|
+
} | {
|
|
930
|
+
ruleName?: 'MIXED_CHOICE_IDS_CONSISTENCY';
|
|
931
|
+
} | {
|
|
932
|
+
ruleName?: 'ID_NOT_ALLOWED_IN_REQUEST';
|
|
921
933
|
};
|
|
922
934
|
/** @docsIgnore */
|
|
923
935
|
type AddCustomizationChoicesApplicationErrors = {
|