@gooddata/sdk-model 10.17.0-alpha.2 → 10.17.0-alpha.20
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 +15 -12
- package/esm/automations/index.d.ts.map +1 -1
- package/esm/automations/index.js.map +1 -1
- package/esm/dashboard/layout.d.ts +22 -0
- package/esm/dashboard/layout.d.ts.map +1 -1
- package/esm/dashboard/layout.js.map +1 -1
- package/esm/dataFilter/index.d.ts +1 -0
- package/esm/dataFilter/index.d.ts.map +1 -1
- package/esm/{exportDefinitions → exports}/index.d.ts +37 -0
- package/esm/exports/index.d.ts.map +1 -0
- package/esm/exports/index.js.map +1 -0
- package/esm/genAI/chat.d.ts +4 -0
- package/esm/genAI/chat.d.ts.map +1 -1
- package/esm/index.d.ts +5 -4
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/esm/notifications/index.d.ts +334 -0
- package/esm/notifications/index.d.ts.map +1 -0
- package/esm/notifications/index.js +2 -0
- package/esm/notifications/index.js.map +1 -0
- package/esm/sdk-model.d.ts +434 -11
- package/package.json +1 -1
- package/esm/exportDefinitions/index.d.ts.map +0 -1
- package/esm/exportDefinitions/index.js.map +0 -1
- /package/esm/{exportDefinitions → exports}/index.js +0 -0
package/esm/sdk-model.d.ts
CHANGED
@@ -38,6 +38,13 @@ export declare type AccessGranteeDetail = IUserAccess | IUserGroupAccess | IGran
|
|
38
38
|
*/
|
39
39
|
export declare type AccessGranularPermission = "VIEW" | "EDIT" | "SHARE";
|
40
40
|
|
41
|
+
/**
|
42
|
+
* Alert description status.
|
43
|
+
*
|
44
|
+
* @alpha
|
45
|
+
*/
|
46
|
+
export declare type AlertDescriptionStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
|
47
|
+
|
41
48
|
/**
|
42
49
|
* Special granularity used to indicate there should be no date filtering for the given dimension.
|
43
50
|
*
|
@@ -486,6 +493,13 @@ export declare function attributeShowAllValues(attribute: IAttribute): boolean |
|
|
486
493
|
*/
|
487
494
|
export declare function attributeUri(attribute: IAttribute): string | undefined;
|
488
495
|
|
496
|
+
/**
|
497
|
+
* Automation notification type.
|
498
|
+
*
|
499
|
+
* @alpha
|
500
|
+
*/
|
501
|
+
export declare type AutomationNotificationType = "automation-task.completed" | "automation-task.limit-exceeded";
|
502
|
+
|
489
503
|
/**
|
490
504
|
* Gets first attribute matching the provided predicate from the bucket.
|
491
505
|
*
|
@@ -1779,6 +1793,139 @@ export declare interface IAlertDefault {
|
|
1779
1793
|
defaultTimezone: string;
|
1780
1794
|
}
|
1781
1795
|
|
1796
|
+
/**
|
1797
|
+
* Alert description.
|
1798
|
+
*
|
1799
|
+
* @alpha
|
1800
|
+
*/
|
1801
|
+
export declare interface IAlertDescription {
|
1802
|
+
/**
|
1803
|
+
* Title of the metric.
|
1804
|
+
*/
|
1805
|
+
metric: string;
|
1806
|
+
/**
|
1807
|
+
* Condition of the alert (in human readable form).
|
1808
|
+
*/
|
1809
|
+
condition: string;
|
1810
|
+
/**
|
1811
|
+
* Current values that triggered the alert (if sliced by attribute).
|
1812
|
+
*/
|
1813
|
+
currentValues?: IAlertEvaluationRow[];
|
1814
|
+
/**
|
1815
|
+
* Attribute of the alert (if sliced by attribute).
|
1816
|
+
*/
|
1817
|
+
attribute?: string;
|
1818
|
+
/**
|
1819
|
+
* Filter count of the alert.
|
1820
|
+
*/
|
1821
|
+
filterCount?: number;
|
1822
|
+
/**
|
1823
|
+
* Total values count that can trigger the alert.
|
1824
|
+
*/
|
1825
|
+
totalValueCount?: number;
|
1826
|
+
/**
|
1827
|
+
* Count of values that triggered the alert.
|
1828
|
+
*/
|
1829
|
+
triggeredCount?: number;
|
1830
|
+
/**
|
1831
|
+
* Threshold set to trigger the alert.
|
1832
|
+
*/
|
1833
|
+
threshold?: number;
|
1834
|
+
/**
|
1835
|
+
* Threshold set to trigger the alert - formatted.
|
1836
|
+
*/
|
1837
|
+
formattedThreshold?: string;
|
1838
|
+
/**
|
1839
|
+
* Lower threshold of the alert.
|
1840
|
+
*/
|
1841
|
+
lowerThreshold?: number;
|
1842
|
+
/**
|
1843
|
+
* Upper threshold of the alert.
|
1844
|
+
*/
|
1845
|
+
upperThreshold?: number;
|
1846
|
+
/**
|
1847
|
+
* Result of the execution that evaluated the alert.
|
1848
|
+
*/
|
1849
|
+
status?: AlertDescriptionStatus;
|
1850
|
+
/**
|
1851
|
+
* Error message of the alert.
|
1852
|
+
*/
|
1853
|
+
errorMessage?: string;
|
1854
|
+
/**
|
1855
|
+
* Trace ID of the alert.
|
1856
|
+
*/
|
1857
|
+
traceId?: string;
|
1858
|
+
}
|
1859
|
+
|
1860
|
+
/**
|
1861
|
+
* Alert evaluation row.
|
1862
|
+
*
|
1863
|
+
* @alpha
|
1864
|
+
*/
|
1865
|
+
export declare interface IAlertEvaluationRow {
|
1866
|
+
/**
|
1867
|
+
* Primary metric value.
|
1868
|
+
*/
|
1869
|
+
primaryMetric?: IAlertEvaluationRowMetric;
|
1870
|
+
/**
|
1871
|
+
* Secondary metric value.
|
1872
|
+
*/
|
1873
|
+
secondaryMetric?: IAlertEvaluationRowMetric;
|
1874
|
+
/**
|
1875
|
+
* Computed metric value.
|
1876
|
+
*/
|
1877
|
+
computedMetric?: IAlertEvaluationRowMetric;
|
1878
|
+
/**
|
1879
|
+
* Label element value (if sliced by attribute).
|
1880
|
+
*/
|
1881
|
+
labelValue?: string;
|
1882
|
+
}
|
1883
|
+
|
1884
|
+
/**
|
1885
|
+
* Metric value.
|
1886
|
+
*
|
1887
|
+
* @alpha
|
1888
|
+
*/
|
1889
|
+
export declare interface IAlertEvaluationRowMetric {
|
1890
|
+
/**
|
1891
|
+
* Metric value.
|
1892
|
+
*/
|
1893
|
+
value: number;
|
1894
|
+
/**
|
1895
|
+
* Metric value - formatted.
|
1896
|
+
*/
|
1897
|
+
formattedValue?: string;
|
1898
|
+
}
|
1899
|
+
|
1900
|
+
/**
|
1901
|
+
* Notification with details about the alert that triggered it.
|
1902
|
+
*
|
1903
|
+
* @alpha
|
1904
|
+
*/
|
1905
|
+
export declare interface IAlertNotification extends INotificationBase {
|
1906
|
+
notificationType: "alertNotification";
|
1907
|
+
/**
|
1908
|
+
* Identifier of the automation (alert / schedule) if the notification was created in an automation context.
|
1909
|
+
*/
|
1910
|
+
automationId?: string;
|
1911
|
+
/**
|
1912
|
+
* Details of the automation that triggered the notification.
|
1913
|
+
*/
|
1914
|
+
details: IAlertNotificationDetails;
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
/**
|
1918
|
+
* Details of the alert notification.
|
1919
|
+
*
|
1920
|
+
* @alpha
|
1921
|
+
*/
|
1922
|
+
export declare interface IAlertNotificationDetails extends IAutomationNotificationDetailsBase {
|
1923
|
+
/**
|
1924
|
+
* Data from the webhook message.
|
1925
|
+
*/
|
1926
|
+
data: IWebhookMessageDataAlert;
|
1927
|
+
}
|
1928
|
+
|
1782
1929
|
/**
|
1783
1930
|
* @alpha
|
1784
1931
|
*/
|
@@ -2430,6 +2577,20 @@ export declare interface IAutomationAlertTrigger {
|
|
2430
2577
|
state: IAlertTriggerState;
|
2431
2578
|
}
|
2432
2579
|
|
2580
|
+
/**
|
2581
|
+
* @alpha
|
2582
|
+
*/
|
2583
|
+
export declare interface IAutomationDetails {
|
2584
|
+
/**
|
2585
|
+
* Subject of the email.
|
2586
|
+
*/
|
2587
|
+
subject?: string;
|
2588
|
+
/**
|
2589
|
+
* Message of the email.
|
2590
|
+
*/
|
2591
|
+
message?: string;
|
2592
|
+
}
|
2593
|
+
|
2433
2594
|
/**
|
2434
2595
|
* @alpha
|
2435
2596
|
*/
|
@@ -2461,22 +2622,12 @@ export declare interface IAutomationMetadataObjectBase {
|
|
2461
2622
|
exportDefinitions?: IExportDefinitionMetadataObject[];
|
2462
2623
|
/**
|
2463
2624
|
* Recipients of the automation.
|
2464
|
-
* Array of strings with user ids.
|
2465
2625
|
*/
|
2466
2626
|
recipients?: IAutomationRecipient[];
|
2467
2627
|
/**
|
2468
2628
|
* Details of the automation.
|
2469
2629
|
*/
|
2470
|
-
details?:
|
2471
|
-
/**
|
2472
|
-
* Subject of the email.
|
2473
|
-
*/
|
2474
|
-
subject?: string;
|
2475
|
-
/**
|
2476
|
-
* Message of the email.
|
2477
|
-
*/
|
2478
|
-
message?: string;
|
2479
|
-
};
|
2630
|
+
details?: IAutomationDetails;
|
2480
2631
|
/**
|
2481
2632
|
* Dashboard that automation is related to.
|
2482
2633
|
*/
|
@@ -2498,6 +2649,22 @@ export declare interface IAutomationMetadataObjectDefinition extends Omit<IAutom
|
|
2498
2649
|
exportDefinitions?: (IExportDefinitionMetadataObjectDefinition | IExportDefinitionMetadataObject)[];
|
2499
2650
|
}
|
2500
2651
|
|
2652
|
+
/**
|
2653
|
+
* Notification with details about the automation or test that triggered it.
|
2654
|
+
*
|
2655
|
+
* @alpha
|
2656
|
+
*/
|
2657
|
+
export declare interface IAutomationNotificationDetailsBase {
|
2658
|
+
/**
|
2659
|
+
* Timestamp when the notification was created.
|
2660
|
+
*/
|
2661
|
+
timestamp: string;
|
2662
|
+
/**
|
2663
|
+
* Type of the notification.
|
2664
|
+
*/
|
2665
|
+
webhookMessageType: AutomationNotificationType;
|
2666
|
+
}
|
2667
|
+
|
2501
2668
|
/**
|
2502
2669
|
* @alpha
|
2503
2670
|
*/
|
@@ -3428,6 +3595,21 @@ export declare interface IDashboardLayout<TWidget = IDashboardWidget> {
|
|
3428
3595
|
* Layout size.
|
3429
3596
|
*/
|
3430
3597
|
size?: IDashboardLayoutSize;
|
3598
|
+
/**
|
3599
|
+
* Layout configuration.
|
3600
|
+
*
|
3601
|
+
* @alpha
|
3602
|
+
*/
|
3603
|
+
configuration?: IDashboardLayoutConfiguration;
|
3604
|
+
}
|
3605
|
+
|
3606
|
+
/**
|
3607
|
+
* Layout configuration.
|
3608
|
+
*
|
3609
|
+
* @alpha
|
3610
|
+
*/
|
3611
|
+
export declare interface IDashboardLayoutConfiguration {
|
3612
|
+
sections?: IDashboardLayoutSectionsConfiguration;
|
3431
3613
|
}
|
3432
3614
|
|
3433
3615
|
/**
|
@@ -3486,6 +3668,15 @@ export declare interface IDashboardLayoutSectionHeader {
|
|
3486
3668
|
description?: string;
|
3487
3669
|
}
|
3488
3670
|
|
3671
|
+
/**
|
3672
|
+
* Configuration that affects all sections of the layout.
|
3673
|
+
*
|
3674
|
+
* @alpha
|
3675
|
+
*/
|
3676
|
+
export declare interface IDashboardLayoutSectionsConfiguration {
|
3677
|
+
enableHeader: boolean;
|
3678
|
+
}
|
3679
|
+
|
3489
3680
|
/**
|
3490
3681
|
* Dashboard layout size definition.
|
3491
3682
|
*
|
@@ -4509,6 +4700,45 @@ export declare interface IExportOptions {
|
|
4509
4700
|
mergeHeaders?: boolean;
|
4510
4701
|
}
|
4511
4702
|
|
4703
|
+
/**
|
4704
|
+
* Export result.
|
4705
|
+
*
|
4706
|
+
* @alpha
|
4707
|
+
*/
|
4708
|
+
export declare interface IExportResult {
|
4709
|
+
/**
|
4710
|
+
* File name.
|
4711
|
+
*/
|
4712
|
+
fileName: string;
|
4713
|
+
/**
|
4714
|
+
* Export ID.
|
4715
|
+
*/
|
4716
|
+
exportId: string;
|
4717
|
+
/**
|
4718
|
+
* Export status.
|
4719
|
+
*/
|
4720
|
+
status: IExportResultStatus;
|
4721
|
+
/**
|
4722
|
+
* File URI.
|
4723
|
+
*/
|
4724
|
+
fileUri?: string;
|
4725
|
+
/**
|
4726
|
+
* Error message.
|
4727
|
+
*/
|
4728
|
+
errorMessage?: string;
|
4729
|
+
/**
|
4730
|
+
* Trace ID.
|
4731
|
+
*/
|
4732
|
+
traceId?: string;
|
4733
|
+
}
|
4734
|
+
|
4735
|
+
/**
|
4736
|
+
* Export result status.
|
4737
|
+
*
|
4738
|
+
* @alpha
|
4739
|
+
*/
|
4740
|
+
export declare type IExportResultStatus = "SUCCESS" | "ERROR" | "INTERNAL_ERROR" | "TIMEOUT";
|
4741
|
+
|
4512
4742
|
/**
|
4513
4743
|
* Fact metadata object
|
4514
4744
|
*
|
@@ -4643,6 +4873,10 @@ export declare interface IGenAIChatInteraction {
|
|
4643
4873
|
* User feedback for the assistant reply.
|
4644
4874
|
*/
|
4645
4875
|
userFeedback?: GenAIChatInteractionUserFeedback;
|
4876
|
+
/**
|
4877
|
+
* An error message in case the interaction failed.
|
4878
|
+
*/
|
4879
|
+
errorResponse?: string;
|
4646
4880
|
}
|
4647
4881
|
|
4648
4882
|
/**
|
@@ -5765,6 +5999,45 @@ export declare class InlineMeasureBuilder extends MeasureBuilderBase<IInlineMeas
|
|
5765
5999
|
*/
|
5766
6000
|
export declare type InlineMeasureBuilderInput = string | IMeasure<IInlineMeasureDefinition>;
|
5767
6001
|
|
6002
|
+
/**
|
6003
|
+
* Notification.
|
6004
|
+
*
|
6005
|
+
* @alpha
|
6006
|
+
*/
|
6007
|
+
export declare type INotification = IAlertNotification | IScheduleNotification | ITestNotification;
|
6008
|
+
|
6009
|
+
/**
|
6010
|
+
* Notification with details about the automation or test that triggered it.
|
6011
|
+
*
|
6012
|
+
* @alpha
|
6013
|
+
*/
|
6014
|
+
export declare interface INotificationBase {
|
6015
|
+
/**
|
6016
|
+
* Type of the object for type narrowing.
|
6017
|
+
*/
|
6018
|
+
type: "notification";
|
6019
|
+
/**
|
6020
|
+
* Type of the notification.
|
6021
|
+
*/
|
6022
|
+
notificationType: NotificationType;
|
6023
|
+
/**
|
6024
|
+
* Unique identifier of the notification.
|
6025
|
+
*/
|
6026
|
+
id: string;
|
6027
|
+
/**
|
6028
|
+
* Identifier of the workspace if the notification was created in a workspace context.
|
6029
|
+
*/
|
6030
|
+
workspaceId?: string;
|
6031
|
+
/**
|
6032
|
+
* Indicates whether the notification has been read.
|
6033
|
+
*/
|
6034
|
+
isRead: boolean;
|
6035
|
+
/**
|
6036
|
+
* Timestamp when the notification was created.
|
6037
|
+
*/
|
6038
|
+
createdAt: string;
|
6039
|
+
}
|
6040
|
+
|
5768
6041
|
/**
|
5769
6042
|
* @beta
|
5770
6043
|
*/
|
@@ -7155,6 +7428,36 @@ export declare interface IScheduledMailBase {
|
|
7155
7428
|
export declare interface IScheduledMailDefinition extends IScheduledMailBase, Partial<IDashboardObjectIdentity> {
|
7156
7429
|
}
|
7157
7430
|
|
7431
|
+
/**
|
7432
|
+
/**
|
7433
|
+
* Notification with details about the schedule that triggered it.
|
7434
|
+
*
|
7435
|
+
* @alpha
|
7436
|
+
*/
|
7437
|
+
export declare interface IScheduleNotification extends INotificationBase {
|
7438
|
+
notificationType: "scheduleNotification";
|
7439
|
+
/**
|
7440
|
+
* Identifier of the automation (alert / schedule) if the notification was created in an automation context.
|
7441
|
+
*/
|
7442
|
+
automationId?: string;
|
7443
|
+
/**
|
7444
|
+
* Details of the automation that triggered the notification.
|
7445
|
+
*/
|
7446
|
+
details: IScheduleNotificationDetails;
|
7447
|
+
}
|
7448
|
+
|
7449
|
+
/**
|
7450
|
+
* Details of the schedule notification.
|
7451
|
+
*
|
7452
|
+
* @alpha
|
7453
|
+
*/
|
7454
|
+
export declare interface IScheduleNotificationDetails extends IAutomationNotificationDetailsBase {
|
7455
|
+
/**
|
7456
|
+
* Data from the webhook message.
|
7457
|
+
*/
|
7458
|
+
data: IWebhookMessageDataSchedule;
|
7459
|
+
}
|
7460
|
+
|
7158
7461
|
/**
|
7159
7462
|
* Type-guard testing whether the provided object is an instance of {@link IColorDescriptor}.
|
7160
7463
|
*
|
@@ -8664,6 +8967,31 @@ export declare interface ITempFilterContext {
|
|
8664
8967
|
readonly uri: string;
|
8665
8968
|
}
|
8666
8969
|
|
8970
|
+
/**
|
8971
|
+
* Notification with details about the test that triggered it.
|
8972
|
+
*
|
8973
|
+
* @alpha
|
8974
|
+
*/
|
8975
|
+
export declare interface ITestNotification extends INotificationBase {
|
8976
|
+
notificationType: "testNotification";
|
8977
|
+
/**
|
8978
|
+
* Details of the test that triggered the notification.
|
8979
|
+
*/
|
8980
|
+
details: ITestNotificationDetails;
|
8981
|
+
}
|
8982
|
+
|
8983
|
+
/**
|
8984
|
+
* Notification with details about the automation or test that triggered it.
|
8985
|
+
*
|
8986
|
+
* @alpha
|
8987
|
+
*/
|
8988
|
+
export declare interface ITestNotificationDetails {
|
8989
|
+
/**
|
8990
|
+
* Message of the test notification.
|
8991
|
+
*/
|
8992
|
+
message: string;
|
8993
|
+
}
|
8994
|
+
|
8667
8995
|
/**
|
8668
8996
|
* Theme used to customize selected parts of the UI
|
8669
8997
|
*
|
@@ -9720,6 +10048,26 @@ export declare interface IVisualizationSwitcherWidgetBase extends IAnalyticalWid
|
|
9720
10048
|
export declare interface IVisualizationSwitcherWidgetDefinition extends IVisualizationSwitcherWidgetBase, Partial<IDashboardObjectIdentity> {
|
9721
10049
|
}
|
9722
10050
|
|
10051
|
+
/**
|
10052
|
+
* Automation information.
|
10053
|
+
*
|
10054
|
+
* @alpha
|
10055
|
+
*/
|
10056
|
+
export declare interface IWebhookAutomationInfo {
|
10057
|
+
/**
|
10058
|
+
* Identifier of the automation.
|
10059
|
+
*/
|
10060
|
+
id: string;
|
10061
|
+
/**
|
10062
|
+
* Title of the automation.
|
10063
|
+
*/
|
10064
|
+
title?: string;
|
10065
|
+
/**
|
10066
|
+
* URL of the dashboard, or custom dashboard URL (if configured on automation).
|
10067
|
+
*/
|
10068
|
+
dashboardURL: string;
|
10069
|
+
}
|
10070
|
+
|
9723
10071
|
/**
|
9724
10072
|
* @beta
|
9725
10073
|
*/
|
@@ -9738,6 +10086,57 @@ export declare interface IWebhookDestinationConfiguration {
|
|
9738
10086
|
hasToken?: boolean;
|
9739
10087
|
}
|
9740
10088
|
|
10089
|
+
/**
|
10090
|
+
* Data from the webhook message.
|
10091
|
+
*
|
10092
|
+
* @alpha
|
10093
|
+
*/
|
10094
|
+
export declare interface IWebhookMessageDataAlert extends IWebhookMessageDataBase {
|
10095
|
+
/**
|
10096
|
+
* Alert description.
|
10097
|
+
*/
|
10098
|
+
alert: IAlertDescription;
|
10099
|
+
}
|
10100
|
+
|
10101
|
+
/**
|
10102
|
+
* Data from the webhook message.
|
10103
|
+
*
|
10104
|
+
* @alpha
|
10105
|
+
*/
|
10106
|
+
export declare interface IWebhookMessageDataBase {
|
10107
|
+
/**
|
10108
|
+
* Automation information.
|
10109
|
+
*/
|
10110
|
+
automation: IWebhookAutomationInfo;
|
10111
|
+
/**
|
10112
|
+
* Recipients of the webhook message.
|
10113
|
+
*/
|
10114
|
+
recipients?: WebhookRecipient[];
|
10115
|
+
/**
|
10116
|
+
* Automation details.
|
10117
|
+
*/
|
10118
|
+
details?: IAutomationDetails;
|
10119
|
+
/**
|
10120
|
+
* Remaining export/alert evaluation count
|
10121
|
+
*/
|
10122
|
+
remainingActionCount?: number;
|
10123
|
+
/**
|
10124
|
+
* Tabular export results
|
10125
|
+
*/
|
10126
|
+
tabularExports?: IExportResult[];
|
10127
|
+
/**
|
10128
|
+
* Visual export results
|
10129
|
+
*/
|
10130
|
+
visualExports?: IExportResult[];
|
10131
|
+
}
|
10132
|
+
|
10133
|
+
/**
|
10134
|
+
* Data from the webhook message.
|
10135
|
+
*
|
10136
|
+
* @alpha
|
10137
|
+
*/
|
10138
|
+
export declare type IWebhookMessageDataSchedule = IWebhookMessageDataBase;
|
10139
|
+
|
9741
10140
|
/**
|
9742
10141
|
* Metadata object for webhook notification channel.
|
9743
10142
|
*
|
@@ -9956,6 +10355,7 @@ export declare interface IWorkspaceDataFilterSetting {
|
|
9956
10355
|
ref: ObjRef;
|
9957
10356
|
title?: string;
|
9958
10357
|
filterValues: string[];
|
10358
|
+
isInherited: boolean;
|
9959
10359
|
}
|
9960
10360
|
|
9961
10361
|
/**
|
@@ -11145,6 +11545,13 @@ export declare type NotificationChannelAllowedRecipients = "creator" | "internal
|
|
11145
11545
|
*/
|
11146
11546
|
export declare type NotificationChannelDestinationType = "webhook" | "smtp" | "inPlatform";
|
11147
11547
|
|
11548
|
+
/**
|
11549
|
+
* Type of the notification.
|
11550
|
+
*
|
11551
|
+
* @alpha
|
11552
|
+
*/
|
11553
|
+
export declare type NotificationType = "alertNotification" | "scheduleNotification" | "testNotification";
|
11554
|
+
|
11148
11555
|
/**
|
11149
11556
|
* Metadata object types
|
11150
11557
|
*
|
@@ -11563,6 +11970,22 @@ export declare type VisualizationProperties = {
|
|
11563
11970
|
[key: string]: any;
|
11564
11971
|
};
|
11565
11972
|
|
11973
|
+
/**
|
11974
|
+
* Webhook recipient.
|
11975
|
+
*
|
11976
|
+
* @alpha
|
11977
|
+
*/
|
11978
|
+
export declare type WebhookRecipient = {
|
11979
|
+
/**
|
11980
|
+
* Identifier of the recipient.
|
11981
|
+
*/
|
11982
|
+
id: string;
|
11983
|
+
/**
|
11984
|
+
* Email of the recipient.
|
11985
|
+
*/
|
11986
|
+
email: string;
|
11987
|
+
};
|
11988
|
+
|
11566
11989
|
/**
|
11567
11990
|
* Week start day
|
11568
11991
|
*
|
package/package.json
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/exportDefinitions/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACtF,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAElE;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C,WAAW,EAAE,UAAU,GAAG,WAAW,CAAC;CACzC;AAED;;;;GAIG;AACH,MAAM,WAAW,4CAA4C;IACzD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,UAAU,GAAG,WAAW,CAAC;CAC1C;AAED;;;;GAIG;AACH,MAAM,WAAW,2CAA2C;IACxD,mBAAmB,EAAE,UAAU,CAAC;IAChC;;OAEG;IACH,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,UAAU,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,EAAE,CAAC;CACvB;AAED;;;;;;GAMG;AACH,MAAM,WAAW,iCAAiC;IAC9C,SAAS,EAAE,UAAU,CAAC;IACtB,OAAO,CAAC,EAAE,iBAAiB,EAAE,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,MAAM,wCAAwC,GAAG;IACnD,IAAI,EAAE,WAAW,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,KAAK,CAAC;IACd,QAAQ,CAAC,EAAE,kCAAkC,CAAC;IAC9C,OAAO,EAAE,iCAAiC,CAAC;CAC9C,CAAC;AAEF;;;GAGG;AACH,wBAAgB,yCAAyC,CACrD,GAAG,EAAE,OAAO,GACb,GAAG,IAAI,wCAAwC,CAEjD;AAED;;;;GAIG;AACH,MAAM,MAAM,kDAAkD,GAAG;IAC7D,IAAI,EAAE,qBAAqB,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,KAAK,GAAG,MAAM,GAAG,MAAM,GAAG,KAAK,CAAC;IACxC,QAAQ,CAAC,EAAE,4CAA4C,CAAC;IACxD,OAAO,EAAE,2CAA2C,CAAC;CACxD,CAAC;AAEF;;;GAGG;AACH,wBAAgB,mDAAmD,CAC/D,GAAG,EAAE,OAAO,GACb,GAAG,IAAI,kDAAkD,CAK3D;AAED;;;;GAIG;AACH,MAAM,MAAM,+BAA+B,GACrC,wCAAwC,GACxC,kDAAkD,CAAC;AAEzD;;;;;GAKG;AACH,MAAM,WAAW,qBAAqB;IAClC,cAAc,EAAE,+BAA+B,CAAC;CACnD;AAED;;;;GAIG;AACH,MAAM,WAAW,+BAAgC,SAAQ,qBAAqB,EAAE,eAAe,EAAE,UAAU;IACvG,IAAI,EAAE,kBAAkB,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,WAAW,yCACb,SAAQ,qBAAqB,EACzB,yBAAyB;IAC7B,IAAI,EAAE,kBAAkB,CAAC;CAC5B;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CAAC,gBAAgB,EAAE,+BAA+B,GAAG,MAAM,CAI/F;AAED;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACnC,gBAAgB,EAAE,+BAA+B,GAClD,MAAM,GAAG,SAAS,CAIpB;AAED;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACnC,gBAAgB,EAAE,+BAA+B,GAClD,MAAM,GAAG,SAAS,CAIpB"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/exportDefinitions/index.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAEhC,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"}
|
File without changes
|