@salesforce/lds-adapters-analytics-unifiedanalytics 1.447.0 → 1.448.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/dist/es/es2018/analytics-unifiedanalytics.js +10 -1
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +11 -2
- package/src/raml/api.raml +20 -0
|
@@ -3904,7 +3904,7 @@ function validate$14(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
3904
3904
|
}
|
|
3905
3905
|
|
|
3906
3906
|
const TTL$p = 500;
|
|
3907
|
-
const VERSION$B = "
|
|
3907
|
+
const VERSION$B = "eca891667fbed2132d5c2a32709976c2";
|
|
3908
3908
|
function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
3909
3909
|
const v_error = (() => {
|
|
3910
3910
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -3974,6 +3974,13 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
3974
3974
|
if (typeof obj_id !== 'string') {
|
|
3975
3975
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
3976
3976
|
}
|
|
3977
|
+
if (obj.isEnabled !== undefined) {
|
|
3978
|
+
const obj_isEnabled = obj.isEnabled;
|
|
3979
|
+
const path_isEnabled = path + '.isEnabled';
|
|
3980
|
+
if (typeof obj_isEnabled !== 'boolean') {
|
|
3981
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3977
3984
|
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
3978
3985
|
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
3979
3986
|
if (typeof obj_lastModifiedDate !== 'string') {
|
|
@@ -4567,6 +4574,7 @@ const createDataAlert_ConfigPropertyMetadata = [
|
|
|
4567
4574
|
generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
|
|
4568
4575
|
generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
|
|
4569
4576
|
generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
|
|
4577
|
+
generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
|
|
4570
4578
|
];
|
|
4571
4579
|
const createDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$Q, createDataAlert_ConfigPropertyMetadata);
|
|
4572
4580
|
const createResourceParams$Q = /*#__PURE__*/ createResourceParams$10(createDataAlert_ConfigPropertyMetadata);
|
|
@@ -5168,6 +5176,7 @@ const updateDataAlert_ConfigPropertyMetadata = [
|
|
|
5168
5176
|
generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
|
|
5169
5177
|
generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
|
|
5170
5178
|
generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
|
|
5179
|
+
generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
|
|
5171
5180
|
];
|
|
5172
5181
|
const updateDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$M, updateDataAlert_ConfigPropertyMetadata);
|
|
5173
5182
|
const createResourceParams$M = /*#__PURE__*/ createResourceParams$10(updateDataAlert_ConfigPropertyMetadata);
|
|
@@ -21,6 +21,7 @@ export interface CreateDataAlertConfig {
|
|
|
21
21
|
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
22
22
|
utterance: string;
|
|
23
23
|
agent?: string | null;
|
|
24
|
+
isEnabled?: boolean;
|
|
24
25
|
}
|
|
25
26
|
export declare const createResourceParams: (config: CreateDataAlertConfig) => resources_postTableauDataAlerts_ResourceRequestConfig;
|
|
26
27
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDataAlertConfig>): adapter$45$utils_Untrusted<CreateDataAlertConfig>;
|
|
@@ -22,6 +22,7 @@ export interface UpdateDataAlertConfig {
|
|
|
22
22
|
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
23
23
|
utterance: string;
|
|
24
24
|
agent?: string | null;
|
|
25
|
+
isEnabled?: boolean;
|
|
25
26
|
}
|
|
26
27
|
export declare const createResourceParams: (config: UpdateDataAlertConfig) => resources_putTableauDataAlertsByDataAlertId_ResourceRequestConfig;
|
|
27
28
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDataAlertConfig>): adapter$45$utils_Untrusted<UpdateDataAlertConfig>;
|
|
@@ -19,6 +19,7 @@ export interface ResourceRequestConfig {
|
|
|
19
19
|
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
20
20
|
utterance: string;
|
|
21
21
|
agent?: string | null;
|
|
22
|
+
isEnabled?: boolean;
|
|
22
23
|
};
|
|
23
24
|
}
|
|
24
25
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -22,6 +22,7 @@ export interface ResourceRequestConfig {
|
|
|
22
22
|
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
23
23
|
utterance: string;
|
|
24
24
|
agent?: string | null;
|
|
25
|
+
isEnabled?: boolean;
|
|
25
26
|
};
|
|
26
27
|
}
|
|
27
28
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentInputRepresentation.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DataAlertContentInputRepresentation as DataAlertContentInputRepresentation_DataAlertContentInputRepresentation } from './DataAlertContentInputRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "b821566b07418176dbc333e09bdca052";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: DataAlertBriefContentInputRepresentation, existing: DataAlertBriefContentInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertBriefContentInputRepresentationNormalized;
|
|
@@ -15,6 +15,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
15
|
* (none)
|
|
16
16
|
*/
|
|
17
17
|
export interface DataAlertBriefContentInputRepresentationNormalized extends DataAlertContentInputRepresentation_DataAlertContentInputRepresentation {
|
|
18
|
+
/** Ids or API names of the semantic data models used to generate the brief */
|
|
19
|
+
modelApiNameOrIdList?: Array<string>;
|
|
18
20
|
/** Skill instruction for the brief content */
|
|
19
21
|
skillInstruction: string;
|
|
20
22
|
}
|
|
@@ -25,6 +27,7 @@ export interface DataAlertBriefContentInputRepresentationNormalized extends Data
|
|
|
25
27
|
* (none)
|
|
26
28
|
*/
|
|
27
29
|
export interface DataAlertBriefContentInputRepresentation extends DataAlertContentInputRepresentation_DataAlertContentInputRepresentation {
|
|
30
|
+
modelApiNameOrIdList?: Array<string>;
|
|
28
31
|
skillInstruction: string;
|
|
29
32
|
type: 'Brief';
|
|
30
33
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DataAlertContentRepresentation as DataAlertContentRepresentation_DataAlertContentRepresentation } from './DataAlertContentRepresentation';
|
|
2
2
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
-
export declare const VERSION = "
|
|
3
|
+
export declare const VERSION = "76e4755a7e9893e795ae6a76025894cc";
|
|
4
4
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
5
|
export declare const RepresentationType: string;
|
|
6
6
|
export declare function normalize(input: DataAlertBriefContentRepresentation, existing: DataAlertBriefContentRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertBriefContentRepresentationNormalized;
|
|
@@ -15,6 +15,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
15
15
|
* (none)
|
|
16
16
|
*/
|
|
17
17
|
export interface DataAlertBriefContentRepresentationNormalized extends DataAlertContentRepresentation_DataAlertContentRepresentation {
|
|
18
|
+
/** Ids or API names of the semantic data models used to generate the brief */
|
|
19
|
+
modelApiNameOrIdList?: Array<string>;
|
|
18
20
|
/** Skill instruction for the brief content */
|
|
19
21
|
skillInstruction: string;
|
|
20
22
|
}
|
|
@@ -25,5 +27,6 @@ export interface DataAlertBriefContentRepresentationNormalized extends DataAlert
|
|
|
25
27
|
* (none)
|
|
26
28
|
*/
|
|
27
29
|
export interface DataAlertBriefContentRepresentation extends DataAlertContentRepresentation_DataAlertContentRepresentation {
|
|
30
|
+
modelApiNameOrIdList?: Array<string>;
|
|
28
31
|
skillInstruction: string;
|
|
29
32
|
}
|
|
@@ -8,7 +8,7 @@ import { DataAlertMetricContentInputRepresentation as DataAlertMetricContentInpu
|
|
|
8
8
|
import { DataAlertDailyScheduleInputRepresentation as DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from './DataAlertDailyScheduleInputRepresentation';
|
|
9
9
|
import { DataAlertWeeklyScheduleInputRepresentation as DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation } from './DataAlertWeeklyScheduleInputRepresentation';
|
|
10
10
|
import { DataAlertEveryNMinutesScheduleInputRepresentation as DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation } from './DataAlertEveryNMinutesScheduleInputRepresentation';
|
|
11
|
-
export declare const VERSION = "
|
|
11
|
+
export declare const VERSION = "8f196c5299c01756d3dca9c7f46d5e18";
|
|
12
12
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
13
13
|
export declare const RepresentationType: string;
|
|
14
14
|
export declare function normalize(input: DataAlertInputRepresentation, existing: DataAlertInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertInputRepresentationNormalized;
|
|
@@ -29,6 +29,8 @@ export interface DataAlertInputRepresentationNormalized {
|
|
|
29
29
|
/** Type of data alert */
|
|
30
30
|
dataAlertType: string;
|
|
31
31
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
32
|
+
/** Whether this data alert is enabled. Set to false to pause alert execution. */
|
|
33
|
+
isEnabled?: boolean;
|
|
32
34
|
schedule: DataAlertScheduleInputRepresentation_DataAlertScheduleInputRepresentation;
|
|
33
35
|
thresholds?: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
34
36
|
/** user entered utterance */
|
|
@@ -45,6 +47,7 @@ export interface DataAlertInputRepresentation {
|
|
|
45
47
|
content: DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
46
48
|
dataAlertType: string;
|
|
47
49
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
50
|
+
isEnabled?: boolean;
|
|
48
51
|
schedule: DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
49
52
|
thresholds?: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
50
53
|
utterance: string;
|
|
@@ -5,7 +5,7 @@ import { DataAlertScheduleRepresentation as DataAlertScheduleRepresentation_Data
|
|
|
5
5
|
import { DataAlertThresholdsRepresentation as DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation } from './DataAlertThresholdsRepresentation';
|
|
6
6
|
import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
7
7
|
export declare const TTL = 500;
|
|
8
|
-
export declare const VERSION = "
|
|
8
|
+
export declare const VERSION = "eca891667fbed2132d5c2a32709976c2";
|
|
9
9
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
10
10
|
export declare const RepresentationType: string;
|
|
11
11
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -43,6 +43,8 @@ export interface DataAlertRepresentationNormalized {
|
|
|
43
43
|
deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
|
|
44
44
|
/** ID of the Data Alert */
|
|
45
45
|
id: string;
|
|
46
|
+
/** Whether this data alert is enabled. False indicates the alert is paused. */
|
|
47
|
+
isEnabled?: boolean;
|
|
46
48
|
/** Last modified date of the data alert */
|
|
47
49
|
lastModifiedDate: string;
|
|
48
50
|
/** Additional properties for the data alert used when sending the query response. */
|
|
@@ -64,6 +66,7 @@ export interface DataAlertRepresentation {
|
|
|
64
66
|
dataAlertType: string;
|
|
65
67
|
deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
|
|
66
68
|
id: string;
|
|
69
|
+
isEnabled?: boolean;
|
|
67
70
|
lastModifiedDate: string;
|
|
68
71
|
properties?: DataAlertPropertyFilterOutputRepresentation_DataAlertPropertyFilterOutputRepresentation;
|
|
69
72
|
schedule: DataAlertScheduleRepresentation_DataAlertScheduleRepresentation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.448.0",
|
|
4
4
|
"description": "Tableau Unified Analytics Platform",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/analytics-unifiedanalytics.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.448.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.448.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2646,7 +2646,7 @@ function validate$14(obj, path = 'DataAlertThresholdsRepresentation') {
|
|
|
2646
2646
|
}
|
|
2647
2647
|
|
|
2648
2648
|
const TTL$s = 500;
|
|
2649
|
-
const VERSION$F = "
|
|
2649
|
+
const VERSION$F = "eca891667fbed2132d5c2a32709976c2";
|
|
2650
2650
|
function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
2651
2651
|
const v_error = (() => {
|
|
2652
2652
|
if (typeof obj !== 'object' || ArrayIsArray(obj) || obj === null) {
|
|
@@ -2716,6 +2716,13 @@ function validate$13(obj, path = 'DataAlertRepresentation') {
|
|
|
2716
2716
|
if (typeof obj_id !== 'string') {
|
|
2717
2717
|
return new TypeError('Expected "string" but received "' + typeof obj_id + '" (at "' + path_id + '")');
|
|
2718
2718
|
}
|
|
2719
|
+
if (obj.isEnabled !== undefined) {
|
|
2720
|
+
const obj_isEnabled = obj.isEnabled;
|
|
2721
|
+
const path_isEnabled = path + '.isEnabled';
|
|
2722
|
+
if (typeof obj_isEnabled !== 'boolean') {
|
|
2723
|
+
return new TypeError('Expected "boolean" but received "' + typeof obj_isEnabled + '" (at "' + path_isEnabled + '")');
|
|
2724
|
+
}
|
|
2725
|
+
}
|
|
2719
2726
|
const obj_lastModifiedDate = obj.lastModifiedDate;
|
|
2720
2727
|
const path_lastModifiedDate = path + '.lastModifiedDate';
|
|
2721
2728
|
if (typeof obj_lastModifiedDate !== 'string') {
|
|
@@ -2901,6 +2908,7 @@ const createDataAlert_ConfigPropertyMetadata = [
|
|
|
2901
2908
|
generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
|
|
2902
2909
|
generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
|
|
2903
2910
|
generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
|
|
2911
|
+
generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
|
|
2904
2912
|
];
|
|
2905
2913
|
const createDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$Y, createDataAlert_ConfigPropertyMetadata);
|
|
2906
2914
|
const createResourceParams$Y = /*#__PURE__*/ createResourceParams$10(createDataAlert_ConfigPropertyMetadata);
|
|
@@ -15439,6 +15447,7 @@ const updateDataAlert_ConfigPropertyMetadata = [
|
|
|
15439
15447
|
generateParamConfigMetadata('thresholds', false, 2 /* Body */, 4 /* Unsupported */),
|
|
15440
15448
|
generateParamConfigMetadata('utterance', true, 2 /* Body */, 0 /* String */),
|
|
15441
15449
|
generateParamConfigMetadata('agent', false, 2 /* Body */, 4 /* Unsupported */),
|
|
15450
|
+
generateParamConfigMetadata('isEnabled', false, 2 /* Body */, 1 /* Boolean */),
|
|
15442
15451
|
];
|
|
15443
15452
|
const updateDataAlert_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$6, updateDataAlert_ConfigPropertyMetadata);
|
|
15444
15453
|
const createResourceParams$6 = /*#__PURE__*/ createResourceParams$10(updateDataAlert_ConfigPropertyMetadata);
|
|
@@ -16702,4 +16711,4 @@ withDefaultLuvio((luvio) => {
|
|
|
16702
16711
|
});
|
|
16703
16712
|
|
|
16704
16713
|
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, generateSFDrivePresignedCredentials, getAnnotations, getAnnotations_imperative, getAssetSlackChannels, getAssetSlackChannels_imperative, getDashboardByName, getDashboardByNameNotifyChange, getDashboardByName_imperative, getDashboards, getDashboards_imperative, getDataAlert, getDataAlertCollection, getDataAlertCollection_imperative, getDataAlertNotifyChange, getDataAlert_imperative, getDataAssetDependencies, getDataAssetDependencies_imperative, getDataAssetLineageByIdOrApiName, getDataAssetLineageByIdOrApiName_imperative, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests, getDataAssetRequestsCount, getDataAssetRequestsCount_imperative, getDataAssetRequests_imperative, getFlowByName, getFlowByName_imperative, getFlows, getFlows_imperative, getFollowedAssets, getFollowedAssets_imperative, getFollowers, getFollowers_imperative, getMarketplaceListingInstallationProgress, getMarketplaceListingInstallationProgress_imperative, getOrg, getOrg_imperative, getShares, getShares_imperative, getSlackAppInfo, getSlackAppInfo_imperative, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getSubscriptionDigestConfig_imperative, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getUniqueFollowerCount_imperative, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationBundle_imperative, getVisualizationNotifyChange, getVisualization_imperative, getVisualizations, getVisualizations_imperative, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaceByIdOrName_imperative, getWorkspaces, getWorkspaces_imperative, initiateMarketplaceListingInstallation, initiateMarketplaceListingInstallation_imperative, notifySharesUpdateAvailable, postDataAlertQuery, postDataAlertQuery_imperative, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace };
|
|
16705
|
-
// version: 1.
|
|
16714
|
+
// version: 1.448.0-8bacde725a
|
package/src/raml/api.raml
CHANGED
|
@@ -1506,6 +1506,12 @@ types:
|
|
|
1506
1506
|
skillInstruction:
|
|
1507
1507
|
description: Skill instruction for the brief content
|
|
1508
1508
|
type: string
|
|
1509
|
+
modelApiNameOrIdList:
|
|
1510
|
+
description: Ids or API names of the semantic data models used to generate the brief
|
|
1511
|
+
type: array
|
|
1512
|
+
items:
|
|
1513
|
+
type: string
|
|
1514
|
+
required: false
|
|
1509
1515
|
DataAlertDailyScheduleInputRepresentation:
|
|
1510
1516
|
description: Input representation for daily alert schedule
|
|
1511
1517
|
type: DataAlertScheduleInputRepresentation
|
|
@@ -1557,6 +1563,10 @@ types:
|
|
|
1557
1563
|
description: ID of the associated BotDefinition agent.
|
|
1558
1564
|
type: string | nil
|
|
1559
1565
|
required: false
|
|
1566
|
+
isEnabled:
|
|
1567
|
+
description: Whether this data alert is enabled. Set to false to pause alert execution.
|
|
1568
|
+
type: boolean
|
|
1569
|
+
required: false
|
|
1560
1570
|
DataAlertNotificationRecipientsInputRepresentation:
|
|
1561
1571
|
description: 'List of UNS recipients for Data alerts. May contain user or group
|
|
1562
1572
|
Ids. '
|
|
@@ -1685,6 +1695,12 @@ types:
|
|
|
1685
1695
|
skillInstruction:
|
|
1686
1696
|
description: Skill instruction for the brief content
|
|
1687
1697
|
type: string
|
|
1698
|
+
modelApiNameOrIdList:
|
|
1699
|
+
description: Ids or API names of the semantic data models used to generate the brief
|
|
1700
|
+
type: array
|
|
1701
|
+
items:
|
|
1702
|
+
type: string
|
|
1703
|
+
required: false
|
|
1688
1704
|
DataAlertCronScheduleRepresentation:
|
|
1689
1705
|
description: Represents the cron schedule for a data alert
|
|
1690
1706
|
type: DataAlertScheduleRepresentation
|
|
@@ -1864,6 +1880,10 @@ types:
|
|
|
1864
1880
|
properties?: #Field may be absent
|
|
1865
1881
|
description: Additional properties for the data alert used when sending the query response.
|
|
1866
1882
|
type: DataAlertPropertyFilterOutputRepresentation
|
|
1883
|
+
isEnabled:
|
|
1884
|
+
description: Whether this data alert is enabled. False indicates the alert is paused.
|
|
1885
|
+
type: boolean
|
|
1886
|
+
required: false
|
|
1867
1887
|
DataAlertScheduleRepresentation:
|
|
1868
1888
|
description: Represents the schedule for a data alert
|
|
1869
1889
|
type: object
|