@wix/auto_sdk_data-extension-schema_schemas 1.0.156 → 1.0.157

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.
@@ -13123,6 +13123,8 @@ interface PluginConfig {
13123
13123
  importanceLevel?: ImportanceLevelWithLiterals;
13124
13124
  /** @maxSize 100 */
13125
13125
  constraints?: Constraint[];
13126
+ /** enables plugin to use Slack escalation */
13127
+ toggleSlackMessageEnabled?: boolean;
13126
13128
  }
13127
13129
  interface Consequence {
13128
13130
  escalation?: EscalationWithLiterals;
@@ -13135,10 +13137,12 @@ declare enum Escalation {
13135
13137
  BLOCK_FUTURE_ROLLOUT = "BLOCK_FUTURE_ROLLOUT",
13136
13138
  OPEN_BUG_SLA = "OPEN_BUG_SLA",
13137
13139
  /** only shows violation in papi-dashboard */
13138
- VISIBILITY = "VISIBILITY"
13140
+ VISIBILITY = "VISIBILITY",
13141
+ /** sends Slack notification */
13142
+ SEND_SLACK_MESSAGE = "SEND_SLACK_MESSAGE"
13139
13143
  }
13140
13144
  /** @enumType */
13141
- type EscalationWithLiterals = Escalation | 'BREAK_BUILD' | 'BLOCK_ROLLOUT' | 'BLOCK_FUTURE_ROLLOUT' | 'OPEN_BUG_SLA' | 'VISIBILITY';
13145
+ type EscalationWithLiterals = Escalation | 'BREAK_BUILD' | 'BLOCK_ROLLOUT' | 'BLOCK_FUTURE_ROLLOUT' | 'OPEN_BUG_SLA' | 'VISIBILITY' | 'SEND_SLACK_MESSAGE';
13142
13146
  declare enum ImportanceLevel {
13143
13147
  LOW = "LOW",
13144
13148
  MEDIUM = "MEDIUM",
@@ -2122,6 +2122,7 @@ var Escalation = /* @__PURE__ */ ((Escalation2) => {
2122
2122
  Escalation2["BLOCK_FUTURE_ROLLOUT"] = "BLOCK_FUTURE_ROLLOUT";
2123
2123
  Escalation2["OPEN_BUG_SLA"] = "OPEN_BUG_SLA";
2124
2124
  Escalation2["VISIBILITY"] = "VISIBILITY";
2125
+ Escalation2["SEND_SLACK_MESSAGE"] = "SEND_SLACK_MESSAGE";
2125
2126
  return Escalation2;
2126
2127
  })(Escalation || {});
2127
2128
  var ImportanceLevel = /* @__PURE__ */ ((ImportanceLevel2) => {