@wix/auto_sdk_data-extension-schema_schemas 1.0.155 → 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 +10 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -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 +10 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -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 +10 -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 +8 -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 +10 -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 +8 -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",
|
|
@@ -18809,6 +18813,8 @@ interface MessageEnvelope {
|
|
|
18809
18813
|
identity?: IdentificationData;
|
|
18810
18814
|
/** Stringify payload. */
|
|
18811
18815
|
data?: string;
|
|
18816
|
+
/** Details related to the account */
|
|
18817
|
+
accountInfo?: AccountInfo;
|
|
18812
18818
|
}
|
|
18813
18819
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
18814
18820
|
/**
|
|
@@ -18896,6 +18902,8 @@ interface BaseEventMetadata {
|
|
|
18896
18902
|
eventType?: string;
|
|
18897
18903
|
/** The identification type and identity data. */
|
|
18898
18904
|
identity?: IdentificationData;
|
|
18905
|
+
/** Details related to the account */
|
|
18906
|
+
accountInfo?: AccountInfo;
|
|
18899
18907
|
}
|
|
18900
18908
|
interface EventMetadata extends BaseEventMetadata {
|
|
18901
18909
|
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
@@ -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) => {
|