@gooddata/sdk-model 10.16.0-alpha.9 → 10.17.0-alpha.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.
- package/esm/base/typeUtils.d.ts +9 -0
- package/esm/base/typeUtils.d.ts.map +1 -0
- package/esm/base/typeUtils.js +12 -0
- package/esm/base/typeUtils.js.map +1 -0
- package/esm/dataSources/index.d.ts +1 -1
- package/esm/dataSources/index.d.ts.map +1 -1
- package/esm/genAI/chat.d.ts +10 -2
- package/esm/genAI/chat.d.ts.map +1 -1
- package/esm/index.d.ts +5 -3
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +3 -1
- package/esm/index.js.map +1 -1
- package/esm/ldm/metadata/index.d.ts +2 -0
- package/esm/ldm/metadata/index.d.ts.map +1 -1
- package/esm/ldm/metadata/index.js +1 -0
- package/esm/ldm/metadata/index.js.map +1 -1
- package/esm/ldm/metadata/next.d.ts +68 -0
- package/esm/ldm/metadata/next.d.ts.map +1 -0
- package/esm/ldm/metadata/next.js +28 -0
- package/esm/ldm/metadata/next.js.map +1 -0
- package/esm/notificationChannels/index.d.ts +131 -89
- package/esm/notificationChannels/index.d.ts.map +1 -1
- package/esm/notificationChannels/index.js +19 -2
- package/esm/notificationChannels/index.js.map +1 -1
- package/esm/objRef/index.d.ts +1 -1
- package/esm/objRef/index.d.ts.map +1 -1
- package/esm/objRef/index.js.map +1 -1
- package/esm/sdk-model.d.ts +244 -99
- package/esm/settings/index.d.ts +8 -0
- package/esm/settings/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1,73 +1,68 @@
|
|
1
|
+
import { IMdObject, ToMdObjectDefinition } from "../ldm/metadata/next.js";
|
1
2
|
/**
|
2
|
-
*
|
3
|
+
* Type of the destination of the notification channel, where the notifications are to be sent.
|
4
|
+
*
|
5
|
+
* @beta
|
3
6
|
*/
|
4
|
-
export
|
5
|
-
/**
|
6
|
-
* Optional identifier of the notification channel.
|
7
|
-
*/
|
8
|
-
id: string;
|
9
|
-
}
|
7
|
+
export type NotificationChannelDestinationType = "webhook" | "smtp" | "inPlatform";
|
10
8
|
/**
|
11
|
-
*
|
9
|
+
* Allowed recipients of notifications from this channel.
|
10
|
+
*
|
11
|
+
* Creator - only the creator of the report.
|
12
|
+
* Internal - all users within the organization.
|
13
|
+
* @beta
|
14
|
+
*/
|
15
|
+
export type NotificationChannelAllowedRecipients = "creator" | "internal";
|
16
|
+
/**
|
17
|
+
* Shared base interface for all notification channel metadata objects.
|
18
|
+
*
|
19
|
+
* @beta
|
12
20
|
*/
|
13
21
|
export interface INotificationChannelMetadataObjectBase {
|
22
|
+
type: "notificationChannel";
|
14
23
|
/**
|
15
|
-
* Type of the notification channel.
|
24
|
+
* Type of the destination of the notification channel.
|
16
25
|
*/
|
17
|
-
|
26
|
+
destinationType: NotificationChannelDestinationType;
|
18
27
|
/**
|
19
|
-
*
|
28
|
+
* Allowed recipients of notifications from this channel.
|
29
|
+
*
|
30
|
+
* If creator is specified, the notification will be sent to the creator of the report only.
|
31
|
+
* If internal is specified, the notification will be sent to all internal users.
|
20
32
|
*/
|
21
|
-
|
33
|
+
allowedRecipients?: NotificationChannelAllowedRecipients;
|
22
34
|
/**
|
23
|
-
*
|
35
|
+
* Custom dashboard url that is going to be used in the notification.
|
36
|
+
* If not specified it is going to be deduced based on the context. Allowed placeholders are \{workspaceId\}, \{dashboardId\}.
|
24
37
|
*/
|
25
|
-
|
26
|
-
}
|
27
|
-
/**
|
28
|
-
* @alpha
|
29
|
-
*/
|
30
|
-
export type NotificationChannelAllowedRecipient = "CREATOR" | "INTERNAL";
|
31
|
-
/**
|
32
|
-
* @alpha
|
33
|
-
*/
|
34
|
-
export interface INotificationChannelDefinitionObject extends INotificationChannelMetadataObject {
|
38
|
+
customDashboardUrl?: string;
|
35
39
|
}
|
36
40
|
/**
|
37
|
-
*
|
41
|
+
* Metadata object for webhook notification channel.
|
42
|
+
*
|
43
|
+
* @beta
|
38
44
|
*/
|
39
|
-
export interface
|
45
|
+
export interface IWebhookNotificationChannelMetadataObject extends INotificationChannelMetadataObjectBase, IMdObject {
|
46
|
+
type: "notificationChannel";
|
47
|
+
destinationType: "webhook";
|
40
48
|
/**
|
41
|
-
*
|
42
|
-
* URL of the dashboard.
|
49
|
+
* Configuration of the webhook, where the notifications are to be sent.
|
43
50
|
*/
|
44
|
-
|
51
|
+
destinationConfig?: IWebhookDestinationConfiguration;
|
45
52
|
}
|
46
53
|
/**
|
47
|
-
*
|
54
|
+
* Metadata object definition for webhook notification channel.
|
55
|
+
* @beta
|
48
56
|
*/
|
49
|
-
export
|
50
|
-
}
|
51
|
-
/**
|
52
|
-
* @alpha
|
53
|
-
*/
|
54
|
-
export interface IWebhookDefinition extends INotificationChannelMetadataObjectBase {
|
55
|
-
type: "webhook";
|
56
|
-
destination: IWebhookDestination;
|
57
|
-
configuration: INotificationChannelConfiguration;
|
58
|
-
}
|
57
|
+
export type IWebhookNotificationChannelMetadataObjectDefinition = ToMdObjectDefinition<IWebhookNotificationChannelMetadataObject>;
|
59
58
|
/**
|
60
|
-
* @
|
59
|
+
* @beta
|
61
60
|
*/
|
62
|
-
export interface
|
63
|
-
/**
|
64
|
-
* Name of the webhook.
|
65
|
-
*/
|
66
|
-
name: string;
|
61
|
+
export interface IWebhookDestinationConfiguration {
|
67
62
|
/**
|
68
63
|
* URL of the webhook endpoint.
|
69
64
|
*/
|
70
|
-
endpoint
|
65
|
+
endpoint?: string;
|
71
66
|
/**
|
72
67
|
* Optional token to be used for authentication as bearer token.
|
73
68
|
*/
|
@@ -78,82 +73,129 @@ export interface IWebhookDestination {
|
|
78
73
|
hasToken?: boolean;
|
79
74
|
}
|
80
75
|
/**
|
81
|
-
* @
|
76
|
+
* @beta
|
82
77
|
*/
|
83
|
-
export interface
|
78
|
+
export interface ISmtpNotificationChannelMetadataObject extends INotificationChannelMetadataObjectBase, IMdObject {
|
79
|
+
type: "notificationChannel";
|
80
|
+
destinationType: "smtp";
|
81
|
+
/**
|
82
|
+
* Configuration of the SMTP, where the notifications are to be sent.
|
83
|
+
*/
|
84
|
+
destinationConfig?: ISmtpDestinationConfiguration;
|
84
85
|
}
|
85
86
|
/**
|
86
|
-
*
|
87
|
+
* Metadata object definition for SMTP notification channel.
|
88
|
+
* @beta
|
87
89
|
*/
|
88
|
-
export
|
89
|
-
type: "smtp";
|
90
|
-
destination: ISmtpDestination;
|
91
|
-
configuration: INotificationChannelConfiguration;
|
92
|
-
}
|
90
|
+
export type ISmtpNotificationChannelMetadataObjectDefinition = ToMdObjectDefinition<ISmtpNotificationChannelMetadataObject>;
|
93
91
|
/**
|
94
|
-
*
|
92
|
+
* Configuration of the SMTP, where the notifications are to be sent.
|
93
|
+
* Custom SMTP - custom SMTP server.
|
94
|
+
* Default SMTP - default SMTP server (users in organization).
|
95
|
+
* @beta
|
95
96
|
*/
|
96
|
-
export type
|
97
|
+
export type ISmtpDestinationConfiguration = ICustomSmtpDestinationConfiguration | IDefaultSmtpDestinationConfiguration;
|
97
98
|
/**
|
98
|
-
* @
|
99
|
+
* @beta
|
99
100
|
*/
|
100
|
-
export type
|
101
|
-
/**
|
102
|
-
* Type of the SMTP.
|
103
|
-
*/
|
104
|
-
type: "custom";
|
101
|
+
export type ICustomSmtpDestinationConfiguration = {
|
105
102
|
/**
|
106
|
-
*
|
103
|
+
* Custom SMTP server.
|
107
104
|
*/
|
108
|
-
|
105
|
+
type: "customSmtp";
|
109
106
|
/**
|
110
|
-
*
|
107
|
+
* The email address that will appear as the sender of notifications.
|
111
108
|
*/
|
112
|
-
|
109
|
+
senderEmail?: string;
|
113
110
|
/**
|
114
|
-
*
|
111
|
+
* The display name that will appear as the sender name in notifications.
|
115
112
|
*/
|
116
|
-
|
113
|
+
senderDisplayName?: string;
|
117
114
|
/**
|
118
|
-
*
|
115
|
+
* The SMTP server address.
|
119
116
|
*/
|
120
|
-
|
117
|
+
host?: string;
|
121
118
|
/**
|
122
|
-
*
|
119
|
+
* The SMTP server port.
|
123
120
|
*/
|
124
|
-
port
|
121
|
+
port?: 25 | 465 | 587 | 2525;
|
125
122
|
/**
|
126
|
-
*
|
123
|
+
* The SMTP server username.
|
127
124
|
*/
|
128
|
-
|
125
|
+
username?: string;
|
129
126
|
/**
|
130
|
-
*
|
127
|
+
* The SMTP server password.
|
131
128
|
*/
|
132
129
|
password?: string;
|
133
|
-
/**
|
134
|
-
* Flag indicating whether the SMTP server has a password.
|
135
|
-
*/
|
136
|
-
hasPassword?: boolean;
|
137
130
|
};
|
138
131
|
/**
|
139
|
-
* @
|
132
|
+
* @beta
|
140
133
|
*/
|
141
|
-
export type
|
134
|
+
export type IDefaultSmtpDestinationConfiguration = {
|
142
135
|
/**
|
143
136
|
* Type of the SMTP.
|
144
137
|
*/
|
145
|
-
type: "
|
138
|
+
type: "defaultSmtp";
|
139
|
+
/**
|
140
|
+
* The email address that will appear as the sender of notifications.
|
141
|
+
* Note: This setting is currently not used. All notifications are sent from no-reply\@gooddata.com
|
142
|
+
*/
|
143
|
+
senderEmail?: string;
|
146
144
|
/**
|
147
|
-
*
|
145
|
+
* The display name that will appear as the sender name in notifications.
|
146
|
+
* Note: This setting is currently not used. All notifications show "GoodData" as the sender name.
|
148
147
|
*/
|
149
|
-
|
148
|
+
senderDisplayName?: string;
|
149
|
+
};
|
150
|
+
/**
|
151
|
+
* @beta
|
152
|
+
*/
|
153
|
+
export interface IInPlatformNotificationChannelMetadataObject extends INotificationChannelMetadataObjectBase, IMdObject {
|
154
|
+
type: "notificationChannel";
|
155
|
+
destinationType: "inPlatform";
|
156
|
+
}
|
157
|
+
/**
|
158
|
+
* Metadata object definition for SMTP notification channel.
|
159
|
+
* @beta
|
160
|
+
*/
|
161
|
+
export type IInPlatformNotificationChannelMetadataObjectDefinition = ToMdObjectDefinition<IInPlatformNotificationChannelMetadataObject>;
|
162
|
+
/**
|
163
|
+
* @beta
|
164
|
+
*/
|
165
|
+
export type INotificationChannelMetadataObject = IWebhookNotificationChannelMetadataObject | ISmtpNotificationChannelMetadataObject | IInPlatformNotificationChannelMetadataObject;
|
166
|
+
/**
|
167
|
+
* Type guard checking whether input is an instance of {@link INotificationChannelMetadataObject}.
|
168
|
+
*
|
169
|
+
* @beta
|
170
|
+
*/
|
171
|
+
export declare function isNotificationChannelMetadataObject(obj: unknown): obj is INotificationChannelMetadataObject;
|
172
|
+
/**
|
173
|
+
* @beta
|
174
|
+
*/
|
175
|
+
export type INotificationChannelMetadataObjectDefinition = IWebhookNotificationChannelMetadataObjectDefinition | ISmtpNotificationChannelMetadataObjectDefinition | IInPlatformNotificationChannelMetadataObjectDefinition;
|
176
|
+
/**
|
177
|
+
* Type guard checking whether input is an instance of {@link INotificationChannelMetadataObjectDefinition}.
|
178
|
+
*
|
179
|
+
* @beta
|
180
|
+
*/
|
181
|
+
export declare function isNotificationChannelMetadataObjectDefinition(obj: unknown): obj is INotificationChannelMetadataObjectDefinition;
|
182
|
+
/**
|
183
|
+
* Utility type to transform {@link INotificationChannelMetadataObjectDefinition} to relevant {@link INotificationChannelMetadataObject}.
|
184
|
+
*
|
185
|
+
* @beta
|
186
|
+
*/
|
187
|
+
export type ToNotificationChannelMetadataObject<T extends INotificationChannelMetadataObjectDefinition> = T extends IWebhookNotificationChannelMetadataObjectDefinition ? IWebhookNotificationChannelMetadataObject : T extends ISmtpNotificationChannelMetadataObjectDefinition ? ISmtpNotificationChannelMetadataObject : T extends IInPlatformNotificationChannelMetadataObjectDefinition ? IInPlatformNotificationChannelMetadataObject : never;
|
188
|
+
/**
|
189
|
+
* @beta
|
190
|
+
*/
|
191
|
+
export interface INotificationChannelTestResponse {
|
150
192
|
/**
|
151
|
-
*
|
193
|
+
* Flag indicating whether the test was successful.
|
152
194
|
*/
|
153
|
-
|
195
|
+
successful: boolean;
|
154
196
|
/**
|
155
|
-
*
|
197
|
+
* Optional error message in case the test was not successful.
|
156
198
|
*/
|
157
|
-
|
158
|
-
}
|
199
|
+
error?: string;
|
200
|
+
}
|
159
201
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/notificationChannels/index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/notificationChannels/index.ts"],"names":[],"mappings":"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"}
|
@@ -1,3 +1,20 @@
|
|
1
|
-
// (C)
|
2
|
-
|
1
|
+
// (C) 2024 GoodData Corporation
|
2
|
+
import { isMdObject, isMdObjectDefinition } from "../ldm/metadata/next.js";
|
3
|
+
/**
|
4
|
+
* Type guard checking whether input is an instance of {@link INotificationChannelMetadataObject}.
|
5
|
+
*
|
6
|
+
* @beta
|
7
|
+
*/
|
8
|
+
export function isNotificationChannelMetadataObject(obj) {
|
9
|
+
return isMdObject(obj) && obj.type === "notificationChannel";
|
10
|
+
}
|
11
|
+
/**
|
12
|
+
* Type guard checking whether input is an instance of {@link INotificationChannelMetadataObjectDefinition}.
|
13
|
+
*
|
14
|
+
* @beta
|
15
|
+
*/
|
16
|
+
export function isNotificationChannelMetadataObjectDefinition(obj) {
|
17
|
+
return (isMdObjectDefinition(obj) &&
|
18
|
+
obj.type === "notificationChannel");
|
19
|
+
}
|
3
20
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/notificationChannels/index.ts"],"names":[],"mappings":"AAAA,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/notificationChannels/index.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,OAAO,EAAa,UAAU,EAAE,oBAAoB,EAAwB,MAAM,yBAAyB,CAAC;AAiN5G;;;;GAIG;AACH,MAAM,UAAU,mCAAmC,CAAC,GAAY;IAC5D,OAAO,UAAU,CAAC,GAAG,CAAC,IAAK,GAA0C,CAAC,IAAI,KAAK,qBAAqB,CAAC;AACzG,CAAC;AAUD;;;;GAIG;AACH,MAAM,UAAU,6CAA6C,CACzD,GAAY;IAEZ,OAAO,CACH,oBAAoB,CAAC,GAAG,CAAC;QACxB,GAAoD,CAAC,IAAI,KAAK,qBAAqB,CACvF,CAAC;AACN,CAAC"}
|
package/esm/objRef/index.d.ts
CHANGED
@@ -27,7 +27,7 @@ export type UriRef = {
|
|
27
27
|
*
|
28
28
|
* @public
|
29
29
|
*/
|
30
|
-
export type ObjectType = "measure" | "fact" | "attribute" | "displayForm" | "dataSet" | "tag" | "insight" | "variable" | "analyticalDashboard" | "theme" | "colorPalette" | "filterContext" | "dashboardPlugin" | "attributeHierarchy" | "user" | "userGroup" | "dateHierarchyTemplate" | "dateAttributeHierarchy" | "exportDefinition" | "automation" | "filterView" | "workspaceDataFilter" | "workspaceDataFilterSetting";
|
30
|
+
export type ObjectType = "measure" | "fact" | "attribute" | "displayForm" | "dataSet" | "tag" | "insight" | "variable" | "analyticalDashboard" | "theme" | "colorPalette" | "filterContext" | "dashboardPlugin" | "attributeHierarchy" | "user" | "userGroup" | "dateHierarchyTemplate" | "dateAttributeHierarchy" | "exportDefinition" | "automation" | "filterView" | "workspaceDataFilter" | "workspaceDataFilterSetting" | "notificationChannel";
|
31
31
|
/**
|
32
32
|
* Model object reference using object's unique identifier.
|
33
33
|
*
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/objRef/index.ts"],"names":[],"mappings":"AAMA;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC;;;;GAIG;AACH,MAAM,MAAM,GAAG,GAAG,MAAM,CAAC;AAEzB;;;;;;;;GAQG;AACH,MAAM,MAAM,MAAM,GAAG;IACjB,GAAG,EAAE,GAAG,CAAC;CACZ,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAChB,SAAS,GACT,MAAM,GACN,WAAW,GACX,aAAa,GACb,SAAS,GACT,KAAK,GACL,SAAS,GACT,UAAU,GACV,qBAAqB,GACrB,OAAO,GACP,cAAc,GACd,eAAe,GACf,iBAAiB,GACjB,oBAAoB,GACpB,MAAM,GACN,WAAW,GACX,uBAAuB,GACvB,wBAAwB,GACxB,kBAAkB,GAClB,YAAY,GACZ,YAAY,GACZ,qBAAqB,GACrB,4BAA4B,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/objRef/index.ts"],"names":[],"mappings":"AAMA;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC;;;;GAIG;AACH,MAAM,MAAM,GAAG,GAAG,MAAM,CAAC;AAEzB;;;;;;;;GAQG;AACH,MAAM,MAAM,MAAM,GAAG;IACjB,GAAG,EAAE,GAAG,CAAC;CACZ,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAChB,SAAS,GACT,MAAM,GACN,WAAW,GACX,aAAa,GACb,SAAS,GACT,KAAK,GACL,SAAS,GACT,UAAU,GACV,qBAAqB,GACrB,OAAO,GACP,cAAc,GACd,eAAe,GACf,iBAAiB,GACjB,oBAAoB,GACpB,MAAM,GACN,WAAW,GACX,uBAAuB,GACvB,wBAAwB,GACxB,kBAAkB,GAClB,YAAY,GACZ,YAAY,GACZ,qBAAqB,GACrB,4BAA4B,GAC5B,qBAAqB,CAAC;AAE5B;;;;;;GAMG;AACH,MAAM,MAAM,aAAa,GAAG;IACxB;;;;;;;;;;;;OAYG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAElB;;OAEG;IACH,UAAU,EAAE,UAAU,CAAC;CAC1B,CAAC;AAEF;;;;;;;GAOG;AACH,MAAM,MAAM,UAAU,GAAG;IACrB,eAAe,EAAE,UAAU,CAAC;CAC/B,CAAC;AAEF;;;;;;;;;;GAUG;AACH,MAAM,MAAM,MAAM,GAAG,MAAM,GAAG,aAAa,CAAC;AAE5C;;;;;GAKG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,GAAG,UAAU,CAAC;AAMhD;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,MAAM,CAEpD;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,aAAa,CAElE;AAED;;;;GAIG;AACH,wBAAgB,QAAQ,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,MAAM,CAEpD;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,UAAU,CAE5D;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAUrE;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,aAAa,GAAG,MAAM,CAItE;AAED;;;;;;;;;GASG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,aAAa,CASrE;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,eAAe,CAAC,CAAC,SAAS,aAAa,GAAG,IAAI,GAAG,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,OAAO,CAkB/F"}
|
package/esm/objRef/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/objRef/index.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAErC,OAAO,OAAO,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,SAAS,MAAM,uBAAuB,CAAC;
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/objRef/index.ts"],"names":[],"mappings":"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"}
|