@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.
@@ -13140,6 +13140,8 @@ interface PluginConfig {
13140
13140
  importanceLevel?: ImportanceLevelWithLiterals;
13141
13141
  /** @maxSize 100 */
13142
13142
  constraints?: Constraint[];
13143
+ /** enables plugin to use Slack escalation */
13144
+ toggleSlackMessageEnabled?: boolean;
13143
13145
  }
13144
13146
  interface Consequence {
13145
13147
  escalation?: EscalationWithLiterals;
@@ -13152,10 +13154,12 @@ declare enum Escalation {
13152
13154
  BLOCK_FUTURE_ROLLOUT = "BLOCK_FUTURE_ROLLOUT",
13153
13155
  OPEN_BUG_SLA = "OPEN_BUG_SLA",
13154
13156
  /** only shows violation in papi-dashboard */
13155
- VISIBILITY = "VISIBILITY"
13157
+ VISIBILITY = "VISIBILITY",
13158
+ /** sends Slack notification */
13159
+ SEND_SLACK_MESSAGE = "SEND_SLACK_MESSAGE"
13156
13160
  }
13157
13161
  /** @enumType */
13158
- type EscalationWithLiterals = Escalation | 'BREAK_BUILD' | 'BLOCK_ROLLOUT' | 'BLOCK_FUTURE_ROLLOUT' | 'OPEN_BUG_SLA' | 'VISIBILITY';
13162
+ type EscalationWithLiterals = Escalation | 'BREAK_BUILD' | 'BLOCK_ROLLOUT' | 'BLOCK_FUTURE_ROLLOUT' | 'OPEN_BUG_SLA' | 'VISIBILITY' | 'SEND_SLACK_MESSAGE';
13159
13163
  declare enum ImportanceLevel {
13160
13164
  LOW = "LOW",
13161
13165
  MEDIUM = "MEDIUM",
@@ -1844,6 +1844,7 @@ var Escalation = /* @__PURE__ */ ((Escalation2) => {
1844
1844
  Escalation2["BLOCK_FUTURE_ROLLOUT"] = "BLOCK_FUTURE_ROLLOUT";
1845
1845
  Escalation2["OPEN_BUG_SLA"] = "OPEN_BUG_SLA";
1846
1846
  Escalation2["VISIBILITY"] = "VISIBILITY";
1847
+ Escalation2["SEND_SLACK_MESSAGE"] = "SEND_SLACK_MESSAGE";
1847
1848
  return Escalation2;
1848
1849
  })(Escalation || {});
1849
1850
  var ImportanceLevel = /* @__PURE__ */ ((ImportanceLevel2) => {