@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.
@@ -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;
@@ -854,6 +854,7 @@ var TriggerErrorType = /* @__PURE__ */ ((TriggerErrorType2) => {
854
854
  TriggerErrorType2["INVALID_TRIGGER_KEY"] = "INVALID_TRIGGER_KEY";
855
855
  TriggerErrorType2["INVALID_FILTER_FIELD_KEY"] = "INVALID_FILTER_FIELD_KEY";
856
856
  TriggerErrorType2["INVALID_FILTER_EXPRESSION"] = "INVALID_FILTER_EXPRESSION";
857
+ TriggerErrorType2["MISSING_REQUIRED_FILTER"] = "MISSING_REQUIRED_FILTER";
857
858
  return TriggerErrorType2;
858
859
  })(TriggerErrorType || {});
859
860
  var ValidationErrorSeverity = /* @__PURE__ */ ((ValidationErrorSeverity2) => {