@wix/auto_sdk_automations_automations-v-2 1.0.24 → 1.0.25
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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +4 -7
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -7
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -7
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -7
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -7
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -7
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -7
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -7
- package/package.json +2 -2
|
@@ -1944,11 +1944,6 @@ type TriggerValidationErrorValidationErrorTypeWithLiterals = TriggerValidationEr
|
|
|
1944
1944
|
interface TriggerConfigurationError {
|
|
1945
1945
|
/** Trigger error type. */
|
|
1946
1946
|
errorType?: TriggerErrorTypeWithLiterals;
|
|
1947
|
-
/**
|
|
1948
|
-
* Related filter field key.
|
|
1949
|
-
* @maxLength 110
|
|
1950
|
-
*/
|
|
1951
|
-
filterFieldKey?: string | null;
|
|
1952
1947
|
}
|
|
1953
1948
|
declare enum TriggerErrorType {
|
|
1954
1949
|
UNKNOWN_TRIGGER_ERROR_TYPE = "UNKNOWN_TRIGGER_ERROR_TYPE",
|
|
@@ -1965,10 +1960,12 @@ declare enum TriggerErrorType {
|
|
|
1965
1960
|
/** Invalid filter field key. */
|
|
1966
1961
|
INVALID_FILTER_FIELD_KEY = "INVALID_FILTER_FIELD_KEY",
|
|
1967
1962
|
/** Invalid filter expression. */
|
|
1968
|
-
INVALID_FILTER_EXPRESSION = "INVALID_FILTER_EXPRESSION"
|
|
1963
|
+
INVALID_FILTER_EXPRESSION = "INVALID_FILTER_EXPRESSION",
|
|
1964
|
+
/** Missing configuration for a required trigger filter */
|
|
1965
|
+
MISSING_REQUIRED_FILTER = "MISSING_REQUIRED_FILTER"
|
|
1969
1966
|
}
|
|
1970
1967
|
/** @enumType */
|
|
1971
|
-
type TriggerErrorTypeWithLiterals = TriggerErrorType | 'UNKNOWN_TRIGGER_ERROR_TYPE' | 'NOT_FOUND' | 'APP_NOT_INSTALLED' | 'MODERATION_MISMATCH' | 'DEPRECATED' | 'INVALID_TRIGGER_KEY' | 'INVALID_FILTER_FIELD_KEY' | 'INVALID_FILTER_EXPRESSION';
|
|
1968
|
+
type TriggerErrorTypeWithLiterals = TriggerErrorType | 'UNKNOWN_TRIGGER_ERROR_TYPE' | 'NOT_FOUND' | 'APP_NOT_INSTALLED' | 'MODERATION_MISMATCH' | 'DEPRECATED' | 'INVALID_TRIGGER_KEY' | 'INVALID_FILTER_FIELD_KEY' | 'INVALID_FILTER_EXPRESSION' | 'MISSING_REQUIRED_FILTER';
|
|
1972
1969
|
interface ProviderConfigurationError {
|
|
1973
1970
|
/** Key corresponding to the field in the schema. */
|
|
1974
1971
|
fieldKey?: string | null;
|
|
@@ -792,6 +792,7 @@ var TriggerErrorType = /* @__PURE__ */ ((TriggerErrorType2) => {
|
|
|
792
792
|
TriggerErrorType2["INVALID_TRIGGER_KEY"] = "INVALID_TRIGGER_KEY";
|
|
793
793
|
TriggerErrorType2["INVALID_FILTER_FIELD_KEY"] = "INVALID_FILTER_FIELD_KEY";
|
|
794
794
|
TriggerErrorType2["INVALID_FILTER_EXPRESSION"] = "INVALID_FILTER_EXPRESSION";
|
|
795
|
+
TriggerErrorType2["MISSING_REQUIRED_FILTER"] = "MISSING_REQUIRED_FILTER";
|
|
795
796
|
return TriggerErrorType2;
|
|
796
797
|
})(TriggerErrorType || {});
|
|
797
798
|
var ValidationErrorSeverity = /* @__PURE__ */ ((ValidationErrorSeverity2) => {
|