@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +6 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +6 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +6 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +6 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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) => {
|