@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.
@@ -13149,6 +13149,8 @@ interface PluginConfig {
13149
13149
  importanceLevel?: ImportanceLevelWithLiterals;
13150
13150
  /** @maxSize 100 */
13151
13151
  constraints?: Constraint[];
13152
+ /** enables plugin to use Slack escalation */
13153
+ toggleSlackMessageEnabled?: boolean;
13152
13154
  }
13153
13155
  interface Consequence {
13154
13156
  escalation?: EscalationWithLiterals;
@@ -13161,10 +13163,12 @@ declare enum Escalation {
13161
13163
  BLOCK_FUTURE_ROLLOUT = "BLOCK_FUTURE_ROLLOUT",
13162
13164
  OPEN_BUG_SLA = "OPEN_BUG_SLA",
13163
13165
  /** only shows violation in papi-dashboard */
13164
- VISIBILITY = "VISIBILITY"
13166
+ VISIBILITY = "VISIBILITY",
13167
+ /** sends Slack notification */
13168
+ SEND_SLACK_MESSAGE = "SEND_SLACK_MESSAGE"
13165
13169
  }
13166
13170
  /** @enumType */
13167
- type EscalationWithLiterals = Escalation | 'BREAK_BUILD' | 'BLOCK_ROLLOUT' | 'BLOCK_FUTURE_ROLLOUT' | 'OPEN_BUG_SLA' | 'VISIBILITY';
13171
+ type EscalationWithLiterals = Escalation | 'BREAK_BUILD' | 'BLOCK_ROLLOUT' | 'BLOCK_FUTURE_ROLLOUT' | 'OPEN_BUG_SLA' | 'VISIBILITY' | 'SEND_SLACK_MESSAGE';
13168
13172
  declare enum ImportanceLevel {
13169
13173
  LOW = "LOW",
13170
13174
  MEDIUM = "MEDIUM",
@@ -2118,6 +2118,7 @@ var Escalation = /* @__PURE__ */ ((Escalation2) => {
2118
2118
  Escalation2["BLOCK_FUTURE_ROLLOUT"] = "BLOCK_FUTURE_ROLLOUT";
2119
2119
  Escalation2["OPEN_BUG_SLA"] = "OPEN_BUG_SLA";
2120
2120
  Escalation2["VISIBILITY"] = "VISIBILITY";
2121
+ Escalation2["SEND_SLACK_MESSAGE"] = "SEND_SLACK_MESSAGE";
2121
2122
  return Escalation2;
2122
2123
  })(Escalation || {});
2123
2124
  var ImportanceLevel = /* @__PURE__ */ ((ImportanceLevel2) => {