@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.
@@ -1014,11 +1014,6 @@ type TriggerValidationErrorValidationErrorTypeWithLiterals = TriggerValidationEr
1014
1014
  interface TriggerConfigurationError {
1015
1015
  /** Trigger error type. */
1016
1016
  errorType?: TriggerErrorTypeWithLiterals;
1017
- /**
1018
- * Related filter field key.
1019
- * @maxLength 110
1020
- */
1021
- filterFieldKey?: string | null;
1022
1017
  }
1023
1018
  declare enum TriggerErrorType {
1024
1019
  UNKNOWN_TRIGGER_ERROR_TYPE = "UNKNOWN_TRIGGER_ERROR_TYPE",
@@ -1035,10 +1030,12 @@ declare enum TriggerErrorType {
1035
1030
  /** Invalid filter field key. */
1036
1031
  INVALID_FILTER_FIELD_KEY = "INVALID_FILTER_FIELD_KEY",
1037
1032
  /** Invalid filter expression. */
1038
- INVALID_FILTER_EXPRESSION = "INVALID_FILTER_EXPRESSION"
1033
+ INVALID_FILTER_EXPRESSION = "INVALID_FILTER_EXPRESSION",
1034
+ /** Missing configuration for a required trigger filter */
1035
+ MISSING_REQUIRED_FILTER = "MISSING_REQUIRED_FILTER"
1039
1036
  }
1040
1037
  /** @enumType */
1041
- 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';
1038
+ 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';
1042
1039
  interface ProviderConfigurationError {
1043
1040
  /** Key corresponding to the field in the schema. */
1044
1041
  fieldKey?: string | null;
@@ -798,6 +798,7 @@ var TriggerErrorType = /* @__PURE__ */ ((TriggerErrorType2) => {
798
798
  TriggerErrorType2["INVALID_TRIGGER_KEY"] = "INVALID_TRIGGER_KEY";
799
799
  TriggerErrorType2["INVALID_FILTER_FIELD_KEY"] = "INVALID_FILTER_FIELD_KEY";
800
800
  TriggerErrorType2["INVALID_FILTER_EXPRESSION"] = "INVALID_FILTER_EXPRESSION";
801
+ TriggerErrorType2["MISSING_REQUIRED_FILTER"] = "MISSING_REQUIRED_FILTER";
801
802
  return TriggerErrorType2;
802
803
  })(TriggerErrorType || {});
803
804
  var ValidationErrorSeverity = /* @__PURE__ */ ((ValidationErrorSeverity2) => {