@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -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",
|
package/build/cjs/meta.js
CHANGED
|
@@ -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) => {
|