@ampsec/platform-client 55.4.0 → 55.5.0
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.
|
@@ -13,6 +13,8 @@ export type SlackMeta = {
|
|
|
13
13
|
teamId: string;
|
|
14
14
|
};
|
|
15
15
|
export type ChannelMessageDto = Notifiable & {
|
|
16
|
+
/** QA Channel Id to send a copy of the message to */
|
|
17
|
+
qaChannelId?: string;
|
|
16
18
|
/** Slack user IDs to which the notification is being sent */
|
|
17
19
|
users: string[] | number[];
|
|
18
20
|
/** Message content to be sent in the Slack message */
|
package/package.json
CHANGED
|
@@ -16,6 +16,8 @@ export type SlackMeta = {
|
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
export type ChannelMessageDto = Notifiable & {
|
|
19
|
+
/** QA Channel Id to send a copy of the message to */
|
|
20
|
+
qaChannelId?: string;
|
|
19
21
|
/** Slack user IDs to which the notification is being sent */
|
|
20
22
|
users: string[] | number[];
|
|
21
23
|
/** Message content to be sent in the Slack message */
|