@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
|
@@ -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",
|
|
@@ -18826,6 +18830,8 @@ interface MessageEnvelope {
|
|
|
18826
18830
|
identity?: IdentificationData;
|
|
18827
18831
|
/** Stringify payload. */
|
|
18828
18832
|
data?: string;
|
|
18833
|
+
/** Details related to the account */
|
|
18834
|
+
accountInfo?: AccountInfo;
|
|
18829
18835
|
}
|
|
18830
18836
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
18831
18837
|
/**
|
|
@@ -18913,6 +18919,8 @@ interface BaseEventMetadata {
|
|
|
18913
18919
|
eventType?: string;
|
|
18914
18920
|
/** The identification type and identity data. */
|
|
18915
18921
|
identity?: IdentificationData;
|
|
18922
|
+
/** Details related to the account */
|
|
18923
|
+
accountInfo?: AccountInfo;
|
|
18916
18924
|
}
|
|
18917
18925
|
interface EventMetadata extends BaseEventMetadata {
|
|
18918
18926
|
/** 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) => {
|