@gooddata/sdk-model 10.18.0-alpha.30 → 10.18.0-alpha.32
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/esm/automations/index.d.ts +1 -1
- package/esm/automations/index.js +1 -1
- package/esm/exports/index.d.ts +2 -2
- package/esm/exports/index.js +1 -1
- package/esm/exports/index.js.map +1 -1
- package/esm/notifications/index.d.ts +24 -24
- package/esm/notifications/index.js +4 -4
- package/esm/sdk-model.d.ts +27 -27
- package/package.json +1 -1
@@ -5,7 +5,7 @@ import { IExecutionDefinition } from "../execution/executionDefinition/index.js"
|
|
5
5
|
import { Identifier } from "../objRef/index.js";
|
6
6
|
import { IMeasure } from "../execution/measure/index.js";
|
7
7
|
/**
|
8
|
-
* @
|
8
|
+
* @public
|
9
9
|
*/
|
10
10
|
export interface IAutomationDetails {
|
11
11
|
/**
|
package/esm/automations/index.js
CHANGED
package/esm/exports/index.d.ts
CHANGED
@@ -140,7 +140,7 @@ export declare function exportDefinitionUpdated(exportDefinition: IExportDefinit
|
|
140
140
|
/**
|
141
141
|
* Export result.
|
142
142
|
*
|
143
|
-
* @
|
143
|
+
* @public
|
144
144
|
*/
|
145
145
|
export interface IExportResult {
|
146
146
|
/**
|
@@ -171,7 +171,7 @@ export interface IExportResult {
|
|
171
171
|
/**
|
172
172
|
* Export result status.
|
173
173
|
*
|
174
|
-
* @
|
174
|
+
* @public
|
175
175
|
*/
|
176
176
|
export type IExportResultStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
|
177
177
|
//# sourceMappingURL=index.d.ts.map
|
package/esm/exports/index.js
CHANGED
package/esm/exports/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exports/index.ts"],"names":[],"mappings":"AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exports/index.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAKzC,OAAO,OAAO,MAAM,mBAAmB,CAAC;AAiExC;;;GAGG;AACH,MAAM,UAAU,yCAAyC,CACrD,GAAY;IAEZ,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAK,GAAgD,CAAC,IAAI,KAAK,WAAW,CAAC;AACnG,CAAC;AAeD;;;GAGG;AACH,MAAM,UAAU,mDAAmD,CAC/D,GAAY;IAEZ,OAAO,CACH,CAAC,OAAO,CAAC,GAAG,CAAC;QACZ,GAA0D,CAAC,IAAI,KAAK,qBAAqB,CAC7F,CAAC;AACN,CAAC;AAyCD;;;;;;GAMG;AACH,MAAM,UAAU,qBAAqB,CAAC,gBAAiD;IACnF,SAAS,CAAC,gBAAgB,EAAE,uDAAuD,CAAC,CAAC;IAErF,OAAO,gBAAgB,CAAC,KAAK,CAAC;AAClC,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,uBAAuB,CACnC,gBAAiD;IAEjD,SAAS,CAAC,gBAAgB,EAAE,qCAAqC,CAAC,CAAC;IAEnE,OAAO,gBAAgB,CAAC,OAAO,CAAC;AACpC,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,uBAAuB,CACnC,gBAAiD;IAEjD,SAAS,CAAC,gBAAgB,EAAE,qCAAqC,CAAC,CAAC;IAEnE,OAAO,gBAAgB,CAAC,OAAO,CAAC;AACpC,CAAC"}
|
@@ -3,13 +3,13 @@ import { IAutomationDetails } from "../automations/index.js";
|
|
3
3
|
/**
|
4
4
|
* Type of the notification.
|
5
5
|
*
|
6
|
-
* @
|
6
|
+
* @public
|
7
7
|
*/
|
8
8
|
export type NotificationType = "alertNotification" | "scheduleNotification" | "testNotification";
|
9
9
|
/**
|
10
10
|
* Notification with details about the automation or test that triggered it.
|
11
11
|
*
|
12
|
-
* @
|
12
|
+
* @public
|
13
13
|
*/
|
14
14
|
export interface INotificationBase {
|
15
15
|
/**
|
@@ -40,7 +40,7 @@ export interface INotificationBase {
|
|
40
40
|
/**
|
41
41
|
* Notification with details about the alert that triggered it.
|
42
42
|
*
|
43
|
-
* @
|
43
|
+
* @public
|
44
44
|
*/
|
45
45
|
export interface IAlertNotification extends INotificationBase {
|
46
46
|
notificationType: "alertNotification";
|
@@ -57,7 +57,7 @@ export interface IAlertNotification extends INotificationBase {
|
|
57
57
|
/**
|
58
58
|
* Notification with details about the schedule that triggered it.
|
59
59
|
*
|
60
|
-
* @
|
60
|
+
* @public
|
61
61
|
*/
|
62
62
|
export interface IScheduleNotification extends INotificationBase {
|
63
63
|
notificationType: "scheduleNotification";
|
@@ -73,7 +73,7 @@ export interface IScheduleNotification extends INotificationBase {
|
|
73
73
|
/**
|
74
74
|
* Notification with details about the test that triggered it.
|
75
75
|
*
|
76
|
-
* @
|
76
|
+
* @public
|
77
77
|
*/
|
78
78
|
export interface ITestNotification extends INotificationBase {
|
79
79
|
notificationType: "testNotification";
|
@@ -85,7 +85,7 @@ export interface ITestNotification extends INotificationBase {
|
|
85
85
|
/**
|
86
86
|
* Notification with details about the automation or test that triggered it.
|
87
87
|
*
|
88
|
-
* @
|
88
|
+
* @public
|
89
89
|
*/
|
90
90
|
export interface ITestNotificationDetails {
|
91
91
|
/**
|
@@ -96,7 +96,7 @@ export interface ITestNotificationDetails {
|
|
96
96
|
/**
|
97
97
|
* Notification with details about the automation or test that triggered it.
|
98
98
|
*
|
99
|
-
* @
|
99
|
+
* @public
|
100
100
|
*/
|
101
101
|
export interface IAutomationNotificationDetailsBase {
|
102
102
|
/**
|
@@ -111,7 +111,7 @@ export interface IAutomationNotificationDetailsBase {
|
|
111
111
|
/**
|
112
112
|
* Details of the alert notification.
|
113
113
|
*
|
114
|
-
* @
|
114
|
+
* @public
|
115
115
|
*/
|
116
116
|
export interface IAlertNotificationDetails extends IAutomationNotificationDetailsBase {
|
117
117
|
/**
|
@@ -122,7 +122,7 @@ export interface IAlertNotificationDetails extends IAutomationNotificationDetail
|
|
122
122
|
/**
|
123
123
|
* Details of the schedule notification.
|
124
124
|
*
|
125
|
-
* @
|
125
|
+
* @public
|
126
126
|
*/
|
127
127
|
export interface IScheduleNotificationDetails extends IAutomationNotificationDetailsBase {
|
128
128
|
/**
|
@@ -133,13 +133,13 @@ export interface IScheduleNotificationDetails extends IAutomationNotificationDet
|
|
133
133
|
/**
|
134
134
|
* Automation notification type.
|
135
135
|
*
|
136
|
-
* @
|
136
|
+
* @public
|
137
137
|
*/
|
138
138
|
export type AutomationNotificationType = "automation-task.completed" | "automation-task.limit-exceeded";
|
139
139
|
/**
|
140
140
|
* Data from the webhook message.
|
141
141
|
*
|
142
|
-
* @
|
142
|
+
* @public
|
143
143
|
*/
|
144
144
|
export interface IWebhookMessageDataBase {
|
145
145
|
/**
|
@@ -170,7 +170,7 @@ export interface IWebhookMessageDataBase {
|
|
170
170
|
/**
|
171
171
|
* Data from the webhook message.
|
172
172
|
*
|
173
|
-
* @
|
173
|
+
* @public
|
174
174
|
*/
|
175
175
|
export interface IWebhookMessageDataAlert extends IWebhookMessageDataBase {
|
176
176
|
/**
|
@@ -181,13 +181,13 @@ export interface IWebhookMessageDataAlert extends IWebhookMessageDataBase {
|
|
181
181
|
/**
|
182
182
|
* Data from the webhook message.
|
183
183
|
*
|
184
|
-
* @
|
184
|
+
* @public
|
185
185
|
*/
|
186
186
|
export type IWebhookMessageDataSchedule = IWebhookMessageDataBase;
|
187
187
|
/**
|
188
188
|
* Automation information.
|
189
189
|
*
|
190
|
-
* @
|
190
|
+
* @public
|
191
191
|
*/
|
192
192
|
export interface IWebhookAutomationInfo {
|
193
193
|
/**
|
@@ -210,7 +210,7 @@ export interface IWebhookAutomationInfo {
|
|
210
210
|
/**
|
211
211
|
* Alert description.
|
212
212
|
*
|
213
|
-
* @
|
213
|
+
* @public
|
214
214
|
*/
|
215
215
|
export interface IAlertDescription {
|
216
216
|
/**
|
@@ -273,7 +273,7 @@ export interface IAlertDescription {
|
|
273
273
|
/**
|
274
274
|
* Alert evaluation row.
|
275
275
|
*
|
276
|
-
* @
|
276
|
+
* @public
|
277
277
|
*/
|
278
278
|
export interface IAlertEvaluationRow {
|
279
279
|
/**
|
@@ -296,7 +296,7 @@ export interface IAlertEvaluationRow {
|
|
296
296
|
/**
|
297
297
|
* Metric value.
|
298
298
|
*
|
299
|
-
* @
|
299
|
+
* @public
|
300
300
|
*/
|
301
301
|
export interface IAlertEvaluationRowMetric {
|
302
302
|
/**
|
@@ -311,7 +311,7 @@ export interface IAlertEvaluationRowMetric {
|
|
311
311
|
/**
|
312
312
|
* Webhook recipient.
|
313
313
|
*
|
314
|
-
* @
|
314
|
+
* @public
|
315
315
|
*/
|
316
316
|
export type WebhookRecipient = {
|
317
317
|
/**
|
@@ -326,37 +326,37 @@ export type WebhookRecipient = {
|
|
326
326
|
/**
|
327
327
|
* Alert description status.
|
328
328
|
*
|
329
|
-
* @
|
329
|
+
* @public
|
330
330
|
*/
|
331
331
|
export type AlertDescriptionStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
|
332
332
|
/**
|
333
333
|
* Notification.
|
334
334
|
*
|
335
|
-
* @
|
335
|
+
* @public
|
336
336
|
*/
|
337
337
|
export type INotification = IAlertNotification | IScheduleNotification | ITestNotification;
|
338
338
|
/**
|
339
339
|
* Type guard to check if the notification is an alert notification.
|
340
340
|
*
|
341
|
-
* @
|
341
|
+
* @public
|
342
342
|
*/
|
343
343
|
export declare function isAlertNotification(notification: unknown): notification is IAlertNotification;
|
344
344
|
/**
|
345
345
|
* Type guard to check if the notification is a schedule notification.
|
346
346
|
*
|
347
|
-
* @
|
347
|
+
* @public
|
348
348
|
*/
|
349
349
|
export declare function isScheduleNotification(notification: unknown): notification is IScheduleNotification;
|
350
350
|
/**
|
351
351
|
* Type guard to check if the notification is a test notification.
|
352
352
|
*
|
353
|
-
* @
|
353
|
+
* @public
|
354
354
|
*/
|
355
355
|
export declare function isTestNotification(notification: unknown): notification is ITestNotification;
|
356
356
|
/**
|
357
357
|
* Type guard to check if the notification is a test notification.
|
358
358
|
*
|
359
|
-
* @
|
359
|
+
* @public
|
360
360
|
*/
|
361
361
|
export declare function isNotification(notification: unknown): notification is INotification;
|
362
362
|
//# sourceMappingURL=index.d.ts.map
|
@@ -2,7 +2,7 @@ import isEmpty from "lodash/isEmpty.js";
|
|
2
2
|
/**
|
3
3
|
* Type guard to check if the notification is an alert notification.
|
4
4
|
*
|
5
|
-
* @
|
5
|
+
* @public
|
6
6
|
*/
|
7
7
|
export function isAlertNotification(notification) {
|
8
8
|
if (isEmpty(notification)) {
|
@@ -13,7 +13,7 @@ export function isAlertNotification(notification) {
|
|
13
13
|
/**
|
14
14
|
* Type guard to check if the notification is a schedule notification.
|
15
15
|
*
|
16
|
-
* @
|
16
|
+
* @public
|
17
17
|
*/
|
18
18
|
export function isScheduleNotification(notification) {
|
19
19
|
if (isEmpty(notification)) {
|
@@ -24,7 +24,7 @@ export function isScheduleNotification(notification) {
|
|
24
24
|
/**
|
25
25
|
* Type guard to check if the notification is a test notification.
|
26
26
|
*
|
27
|
-
* @
|
27
|
+
* @public
|
28
28
|
*/
|
29
29
|
export function isTestNotification(notification) {
|
30
30
|
if (isEmpty(notification)) {
|
@@ -35,7 +35,7 @@ export function isTestNotification(notification) {
|
|
35
35
|
/**
|
36
36
|
* Type guard to check if the notification is a test notification.
|
37
37
|
*
|
38
|
-
* @
|
38
|
+
* @public
|
39
39
|
*/
|
40
40
|
export function isNotification(notification) {
|
41
41
|
return (isAlertNotification(notification) ||
|
package/esm/sdk-model.d.ts
CHANGED
@@ -41,7 +41,7 @@ export declare type AccessGranularPermission = "VIEW" | "EDIT" | "SHARE";
|
|
41
41
|
/**
|
42
42
|
* Alert description status.
|
43
43
|
*
|
44
|
-
* @
|
44
|
+
* @public
|
45
45
|
*/
|
46
46
|
export declare type AlertDescriptionStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
|
47
47
|
|
@@ -496,7 +496,7 @@ export declare function attributeUri(attribute: IAttribute): string | undefined;
|
|
496
496
|
/**
|
497
497
|
* Automation notification type.
|
498
498
|
*
|
499
|
-
* @
|
499
|
+
* @public
|
500
500
|
*/
|
501
501
|
export declare type AutomationNotificationType = "automation-task.completed" | "automation-task.limit-exceeded";
|
502
502
|
|
@@ -1796,7 +1796,7 @@ export declare interface IAlertDefault {
|
|
1796
1796
|
/**
|
1797
1797
|
* Alert description.
|
1798
1798
|
*
|
1799
|
-
* @
|
1799
|
+
* @public
|
1800
1800
|
*/
|
1801
1801
|
export declare interface IAlertDescription {
|
1802
1802
|
/**
|
@@ -1860,7 +1860,7 @@ export declare interface IAlertDescription {
|
|
1860
1860
|
/**
|
1861
1861
|
* Alert evaluation row.
|
1862
1862
|
*
|
1863
|
-
* @
|
1863
|
+
* @public
|
1864
1864
|
*/
|
1865
1865
|
export declare interface IAlertEvaluationRow {
|
1866
1866
|
/**
|
@@ -1884,7 +1884,7 @@ export declare interface IAlertEvaluationRow {
|
|
1884
1884
|
/**
|
1885
1885
|
* Metric value.
|
1886
1886
|
*
|
1887
|
-
* @
|
1887
|
+
* @public
|
1888
1888
|
*/
|
1889
1889
|
export declare interface IAlertEvaluationRowMetric {
|
1890
1890
|
/**
|
@@ -1900,7 +1900,7 @@ export declare interface IAlertEvaluationRowMetric {
|
|
1900
1900
|
/**
|
1901
1901
|
* Notification with details about the alert that triggered it.
|
1902
1902
|
*
|
1903
|
-
* @
|
1903
|
+
* @public
|
1904
1904
|
*/
|
1905
1905
|
export declare interface IAlertNotification extends INotificationBase {
|
1906
1906
|
notificationType: "alertNotification";
|
@@ -1917,7 +1917,7 @@ export declare interface IAlertNotification extends INotificationBase {
|
|
1917
1917
|
/**
|
1918
1918
|
* Details of the alert notification.
|
1919
1919
|
*
|
1920
|
-
* @
|
1920
|
+
* @public
|
1921
1921
|
*/
|
1922
1922
|
export declare interface IAlertNotificationDetails extends IAutomationNotificationDetailsBase {
|
1923
1923
|
/**
|
@@ -2578,7 +2578,7 @@ export declare interface IAutomationAlertTrigger {
|
|
2578
2578
|
}
|
2579
2579
|
|
2580
2580
|
/**
|
2581
|
-
* @
|
2581
|
+
* @public
|
2582
2582
|
*/
|
2583
2583
|
export declare interface IAutomationDetails {
|
2584
2584
|
/**
|
@@ -2652,7 +2652,7 @@ export declare interface IAutomationMetadataObjectDefinition extends Omit<IAutom
|
|
2652
2652
|
/**
|
2653
2653
|
* Notification with details about the automation or test that triggered it.
|
2654
2654
|
*
|
2655
|
-
* @
|
2655
|
+
* @public
|
2656
2656
|
*/
|
2657
2657
|
export declare interface IAutomationNotificationDetailsBase {
|
2658
2658
|
/**
|
@@ -4703,7 +4703,7 @@ export declare interface IExportOptions {
|
|
4703
4703
|
/**
|
4704
4704
|
* Export result.
|
4705
4705
|
*
|
4706
|
-
* @
|
4706
|
+
* @public
|
4707
4707
|
*/
|
4708
4708
|
export declare interface IExportResult {
|
4709
4709
|
/**
|
@@ -4735,7 +4735,7 @@ export declare interface IExportResult {
|
|
4735
4735
|
/**
|
4736
4736
|
* Export result status.
|
4737
4737
|
*
|
4738
|
-
* @
|
4738
|
+
* @public
|
4739
4739
|
*/
|
4740
4740
|
export declare type IExportResultStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
|
4741
4741
|
|
@@ -6025,14 +6025,14 @@ export declare type InlineMeasureBuilderInput = string | IMeasure<IInlineMeasure
|
|
6025
6025
|
/**
|
6026
6026
|
* Notification.
|
6027
6027
|
*
|
6028
|
-
* @
|
6028
|
+
* @public
|
6029
6029
|
*/
|
6030
6030
|
export declare type INotification = IAlertNotification | IScheduleNotification | ITestNotification;
|
6031
6031
|
|
6032
6032
|
/**
|
6033
6033
|
* Notification with details about the automation or test that triggered it.
|
6034
6034
|
*
|
6035
|
-
* @
|
6035
|
+
* @public
|
6036
6036
|
*/
|
6037
6037
|
export declare interface INotificationBase {
|
6038
6038
|
/**
|
@@ -7144,7 +7144,7 @@ export declare function isAdhocMeasure(obj: unknown): obj is IMeasure<IMeasureDe
|
|
7144
7144
|
/**
|
7145
7145
|
* Type guard to check if the notification is an alert notification.
|
7146
7146
|
*
|
7147
|
-
* @
|
7147
|
+
* @public
|
7148
7148
|
*/
|
7149
7149
|
export declare function isAlertNotification(notification: unknown): notification is IAlertNotification;
|
7150
7150
|
|
@@ -7462,7 +7462,7 @@ export declare interface IScheduledMailDefinition extends IScheduledMailBase, Pa
|
|
7462
7462
|
/**
|
7463
7463
|
* Notification with details about the schedule that triggered it.
|
7464
7464
|
*
|
7465
|
-
* @
|
7465
|
+
* @public
|
7466
7466
|
*/
|
7467
7467
|
export declare interface IScheduleNotification extends INotificationBase {
|
7468
7468
|
notificationType: "scheduleNotification";
|
@@ -7479,7 +7479,7 @@ export declare interface IScheduleNotification extends INotificationBase {
|
|
7479
7479
|
/**
|
7480
7480
|
* Details of the schedule notification.
|
7481
7481
|
*
|
7482
|
-
* @
|
7482
|
+
* @public
|
7483
7483
|
*/
|
7484
7484
|
export declare interface IScheduleNotificationDetails extends IAutomationNotificationDetailsBase {
|
7485
7485
|
/**
|
@@ -8633,7 +8633,7 @@ export declare function isNegativeDashboardAttributeFilter(filter: IDashboardAtt
|
|
8633
8633
|
/**
|
8634
8634
|
* Type guard to check if the notification is a test notification.
|
8635
8635
|
*
|
8636
|
-
* @
|
8636
|
+
* @public
|
8637
8637
|
*/
|
8638
8638
|
export declare function isNotification(notification: unknown): notification is INotification;
|
8639
8639
|
|
@@ -8804,7 +8804,7 @@ export declare function isRichTextWidgetDefinition(obj: unknown): obj is IRichTe
|
|
8804
8804
|
/**
|
8805
8805
|
* Type guard to check if the notification is a schedule notification.
|
8806
8806
|
*
|
8807
|
-
* @
|
8807
|
+
* @public
|
8808
8808
|
*/
|
8809
8809
|
export declare function isScheduleNotification(notification: unknown): notification is IScheduleNotification;
|
8810
8810
|
|
@@ -8837,7 +8837,7 @@ export declare function isTempFilterContext(obj: unknown): obj is ITempFilterCon
|
|
8837
8837
|
/**
|
8838
8838
|
* Type guard to check if the notification is a test notification.
|
8839
8839
|
*
|
8840
|
-
* @
|
8840
|
+
* @public
|
8841
8841
|
*/
|
8842
8842
|
export declare function isTestNotification(notification: unknown): notification is ITestNotification;
|
8843
8843
|
|
@@ -9033,7 +9033,7 @@ export declare interface ITempFilterContext {
|
|
9033
9033
|
/**
|
9034
9034
|
* Notification with details about the test that triggered it.
|
9035
9035
|
*
|
9036
|
-
* @
|
9036
|
+
* @public
|
9037
9037
|
*/
|
9038
9038
|
export declare interface ITestNotification extends INotificationBase {
|
9039
9039
|
notificationType: "testNotification";
|
@@ -9046,7 +9046,7 @@ export declare interface ITestNotification extends INotificationBase {
|
|
9046
9046
|
/**
|
9047
9047
|
* Notification with details about the automation or test that triggered it.
|
9048
9048
|
*
|
9049
|
-
* @
|
9049
|
+
* @public
|
9050
9050
|
*/
|
9051
9051
|
export declare interface ITestNotificationDetails {
|
9052
9052
|
/**
|
@@ -10114,7 +10114,7 @@ export declare interface IVisualizationSwitcherWidgetDefinition extends IVisuali
|
|
10114
10114
|
/**
|
10115
10115
|
* Automation information.
|
10116
10116
|
*
|
10117
|
-
* @
|
10117
|
+
* @public
|
10118
10118
|
*/
|
10119
10119
|
export declare interface IWebhookAutomationInfo {
|
10120
10120
|
/**
|
@@ -10156,7 +10156,7 @@ export declare interface IWebhookDestinationConfiguration {
|
|
10156
10156
|
/**
|
10157
10157
|
* Data from the webhook message.
|
10158
10158
|
*
|
10159
|
-
* @
|
10159
|
+
* @public
|
10160
10160
|
*/
|
10161
10161
|
export declare interface IWebhookMessageDataAlert extends IWebhookMessageDataBase {
|
10162
10162
|
/**
|
@@ -10168,7 +10168,7 @@ export declare interface IWebhookMessageDataAlert extends IWebhookMessageDataBas
|
|
10168
10168
|
/**
|
10169
10169
|
* Data from the webhook message.
|
10170
10170
|
*
|
10171
|
-
* @
|
10171
|
+
* @public
|
10172
10172
|
*/
|
10173
10173
|
export declare interface IWebhookMessageDataBase {
|
10174
10174
|
/**
|
@@ -10200,7 +10200,7 @@ export declare interface IWebhookMessageDataBase {
|
|
10200
10200
|
/**
|
10201
10201
|
* Data from the webhook message.
|
10202
10202
|
*
|
10203
|
-
* @
|
10203
|
+
* @public
|
10204
10204
|
*/
|
10205
10205
|
export declare type IWebhookMessageDataSchedule = IWebhookMessageDataBase;
|
10206
10206
|
|
@@ -11619,7 +11619,7 @@ export declare type NotificationChannelDestinationType = "webhook" | "smtp" | "i
|
|
11619
11619
|
/**
|
11620
11620
|
* Type of the notification.
|
11621
11621
|
*
|
11622
|
-
* @
|
11622
|
+
* @public
|
11623
11623
|
*/
|
11624
11624
|
export declare type NotificationType = "alertNotification" | "scheduleNotification" | "testNotification";
|
11625
11625
|
|
@@ -12044,7 +12044,7 @@ export declare type VisualizationProperties = {
|
|
12044
12044
|
/**
|
12045
12045
|
* Webhook recipient.
|
12046
12046
|
*
|
12047
|
-
* @
|
12047
|
+
* @public
|
12048
12048
|
*/
|
12049
12049
|
export declare type WebhookRecipient = {
|
12050
12050
|
/**
|
package/package.json
CHANGED