@salesforce/lds-adapters-analytics-unifiedanalytics 1.428.0-dev2 → 1.428.0-dev20
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 +1945 -1158
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +4 -2
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetLineageByIdOrApiName.d.ts +27 -0
- package/dist/es/es2018/types/src/generated/adapters/postDataAlertQuery.d.ts +34 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +4 -2
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsLineageByAssetIdOrApiName.d.ts +15 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +4 -2
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlertsQuery.d.ts +22 -0
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +4 -2
- package/dist/es/es2018/types/src/generated/types/DashboardInputRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentInputRepresentation.d.ts +33 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertContentInputRepresentation.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertDeliveryConfigurationInputRepresentation.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertInputRepresentation.d.ts +8 -4
- package/dist/es/es2018/types/src/generated/types/DataAlertMsTeamsRecipientInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertMsTeamsRecipientRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertMsTeamsRecipientsInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertMsTeamsRecipientsRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertPropertyFilterInputRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertPropertyFilterOutputRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertQueryCollectionRepresentation.d.ts +30 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertQueryInputRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertReceiversInputRepresentation.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +10 -3
- package/dist/es/es2018/types/src/generated/types/DataAssetLineageRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestDebugInfo.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +9 -1
- package/dist/es/es2018/types/src/generated/types/PromotionContentAssetRepresentation.d.ts +49 -0
- package/package.json +3 -3
- package/sfdc/index.js +3366 -2557
- package/src/raml/api.raml +302 -0
- package/src/raml/luvio.raml +15 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
2
|
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { DataAlertBriefContentInputRepresentation as types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation } from '../types/DataAlertBriefContentInputRepresentation';
|
|
3
4
|
import { DataAlertMetricContentInputRepresentation as types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation } from '../types/DataAlertMetricContentInputRepresentation';
|
|
4
5
|
import { DataAlertDeliveryConfigurationInputRepresentation as types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation } from '../types/DataAlertDeliveryConfigurationInputRepresentation';
|
|
5
6
|
import { DataAlertDailyScheduleInputRepresentation as types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from '../types/DataAlertDailyScheduleInputRepresentation';
|
|
@@ -13,13 +14,14 @@ export declare const createDataAlert_ConfigPropertyMetadata: $64$luvio_engine_Ad
|
|
|
13
14
|
export declare const createDataAlert_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
14
15
|
export interface CreateDataAlertConfig {
|
|
15
16
|
runNow?: boolean;
|
|
16
|
-
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
17
|
+
content: types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
17
18
|
dataAlertType: string;
|
|
18
19
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
19
20
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
20
|
-
thresholds
|
|
21
|
+
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
21
22
|
utterance: string;
|
|
22
23
|
agent?: string | null;
|
|
24
|
+
isEnabled?: boolean;
|
|
23
25
|
}
|
|
24
26
|
export declare const createResourceParams: (config: CreateDataAlertConfig) => resources_postTableauDataAlerts_ResourceRequestConfig;
|
|
25
27
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDataAlertConfig>): adapter$45$utils_Untrusted<CreateDataAlertConfig>;
|
|
@@ -9,6 +9,7 @@ export interface GetDataAssetDependenciesConfig {
|
|
|
9
9
|
assetId: string;
|
|
10
10
|
includeSynchronizationInfo?: boolean;
|
|
11
11
|
failOnSchemaMismatch?: boolean;
|
|
12
|
+
includeReusedAssets?: boolean;
|
|
12
13
|
}
|
|
13
14
|
export declare const createResourceParams: (config: GetDataAssetDependenciesConfig) => resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig;
|
|
14
15
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): string;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_getTableauDataAssetsLineageByAssetIdOrApiName_ResourceRequestConfig } from '../resources/getTableauDataAssetsLineageByAssetIdOrApiName';
|
|
4
|
+
import { DataAssetLineageRepresentation as types_DataAssetLineageRepresentation_DataAssetLineageRepresentation } from '../types/DataAssetLineageRepresentation';
|
|
5
|
+
export declare const adapterName = "getDataAssetLineageByIdOrApiName";
|
|
6
|
+
export declare const getDataAssetLineageByIdOrApiName_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const getDataAssetLineageByIdOrApiName_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GetDataAssetLineageByIdOrApiNameConfig {
|
|
9
|
+
assetIdOrApiName: string;
|
|
10
|
+
}
|
|
11
|
+
export declare const createResourceParams: (config: GetDataAssetLineageByIdOrApiNameConfig) => resources_getTableauDataAssetsLineageByAssetIdOrApiName_ResourceRequestConfig;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
14
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GetDataAssetLineageByIdOrApiNameConfig>): adapter$45$utils_Untrusted<GetDataAssetLineageByIdOrApiNameConfig>;
|
|
15
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GetDataAssetLineageByIdOrApiNameConfig | null;
|
|
16
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig): $64$luvio_engine_Fragment;
|
|
17
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig): $64$luvio_engine_Snapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, any>;
|
|
18
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig, resourceParams: resources_getTableauDataAssetsLineageByAssetIdOrApiName_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, any>>;
|
|
19
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig, resourceParams: resources_getTableauDataAssetsLineageByAssetIdOrApiName_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
20
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GetDataAssetLineageByIdOrApiNameConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, any>>;
|
|
21
|
+
export type BuildSnapshotContext = {
|
|
22
|
+
luvio: $64$luvio_engine_Luvio;
|
|
23
|
+
config: GetDataAssetLineageByIdOrApiNameConfig;
|
|
24
|
+
};
|
|
25
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, any>>;
|
|
26
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation>): $64$luvio_engine_Snapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, any>;
|
|
27
|
+
export declare const getDataAssetLineageByIdOrApiNameAdapterFactory: $64$luvio_engine_AdapterFactory<GetDataAssetLineageByIdOrApiNameConfig, types_DataAssetLineageRepresentation_DataAssetLineageRepresentation>;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { UnifiedFilterInputRepresentation as types_UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation } from '../types/UnifiedFilterInputRepresentation';
|
|
4
|
+
import { DataAlertPropertyFilterInputRepresentation as types_DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation } from '../types/DataAlertPropertyFilterInputRepresentation';
|
|
5
|
+
import { ResourceRequestConfig as resources_postTableauDataAlertsQuery_ResourceRequestConfig } from '../resources/postTableauDataAlertsQuery';
|
|
6
|
+
import { DataAlertQueryCollectionRepresentation as types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation } from '../types/DataAlertQueryCollectionRepresentation';
|
|
7
|
+
export declare const adapterName = "postDataAlertQuery";
|
|
8
|
+
export declare const postDataAlertQuery_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
9
|
+
export declare const postDataAlertQuery_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
10
|
+
export interface PostDataAlertQueryConfig {
|
|
11
|
+
ownerId: string;
|
|
12
|
+
assetId?: string;
|
|
13
|
+
dataAlertTypes?: Array<string>;
|
|
14
|
+
timeRange?: types_UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation;
|
|
15
|
+
includeProperties?: Array<string>;
|
|
16
|
+
propertyFilters?: Array<types_DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation>;
|
|
17
|
+
}
|
|
18
|
+
export declare const createResourceParams: (config: PostDataAlertQueryConfig) => resources_postTableauDataAlertsQuery_ResourceRequestConfig;
|
|
19
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): string;
|
|
20
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
21
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PostDataAlertQueryConfig>): adapter$45$utils_Untrusted<PostDataAlertQueryConfig>;
|
|
22
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PostDataAlertQueryConfig | null;
|
|
23
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): $64$luvio_engine_Fragment;
|
|
24
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): $64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>;
|
|
25
|
+
export declare function onFetchResponseSuccess(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig, resourceParams: resources_postTableauDataAlertsQuery_ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>): Promise<import("@luvio/engine").FulfilledSnapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>>;
|
|
26
|
+
export declare function onFetchResponseError(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig, resourceParams: resources_postTableauDataAlertsQuery_ResourceRequestConfig, response: $64$luvio_engine_ErrorResponse): Promise<import("@luvio/engine").ErrorSnapshot>;
|
|
27
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>>;
|
|
28
|
+
export type BuildSnapshotContext = {
|
|
29
|
+
luvio: $64$luvio_engine_Luvio;
|
|
30
|
+
config: PostDataAlertQueryConfig;
|
|
31
|
+
};
|
|
32
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>>;
|
|
33
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>): $64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>;
|
|
34
|
+
export declare const postDataAlertQueryAdapterFactory: $64$luvio_engine_AdapterFactory<PostDataAlertQueryConfig, types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AdapterConfigMetadata as $64$luvio_engine_AdapterConfigMetadata, Luvio as $64$luvio_engine_Luvio, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
2
2
|
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { DataAlertBriefContentInputRepresentation as types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation } from '../types/DataAlertBriefContentInputRepresentation';
|
|
3
4
|
import { DataAlertMetricContentInputRepresentation as types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation } from '../types/DataAlertMetricContentInputRepresentation';
|
|
4
5
|
import { DataAlertDeliveryConfigurationInputRepresentation as types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation } from '../types/DataAlertDeliveryConfigurationInputRepresentation';
|
|
5
6
|
import { DataAlertDailyScheduleInputRepresentation as types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from '../types/DataAlertDailyScheduleInputRepresentation';
|
|
@@ -14,13 +15,14 @@ export declare const updateDataAlert_ConfigPropertyNames: adapter$45$utils_Adapt
|
|
|
14
15
|
export interface UpdateDataAlertConfig {
|
|
15
16
|
dataAlertId: string;
|
|
16
17
|
runNow?: boolean;
|
|
17
|
-
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
18
|
+
content: types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
18
19
|
dataAlertType: string;
|
|
19
20
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
20
21
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
21
|
-
thresholds
|
|
22
|
+
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
22
23
|
utterance: string;
|
|
23
24
|
agent?: string | null;
|
|
25
|
+
isEnabled?: boolean;
|
|
24
26
|
}
|
|
25
27
|
export declare const createResourceParams: (config: UpdateDataAlertConfig) => resources_putTableauDataAlertsByDataAlertId_ResourceRequestConfig;
|
|
26
28
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDataAlertConfig>): adapter$45$utils_Untrusted<UpdateDataAlertConfig>;
|
|
@@ -10,6 +10,7 @@ export { getDashboardByNameAdapterFactory } from '../adapters/getDashboardByName
|
|
|
10
10
|
export { updateDashboardAdapterFactory } from '../adapters/updateDashboard';
|
|
11
11
|
export { getDataAlertCollectionAdapterFactory } from '../adapters/getDataAlertCollection';
|
|
12
12
|
export { createDataAlertAdapterFactory } from '../adapters/createDataAlert';
|
|
13
|
+
export { postDataAlertQueryAdapterFactory } from '../adapters/postDataAlertQuery';
|
|
13
14
|
export { getDataAlertAdapterFactory } from '../adapters/getDataAlert';
|
|
14
15
|
export { deleteDataAlertAdapterFactory } from '../adapters/deleteDataAlert';
|
|
15
16
|
export { updateDataAlertAdapterFactory } from '../adapters/updateDataAlert';
|
|
@@ -20,6 +21,7 @@ export { getDataAssetRequestsCountAdapterFactory } from '../adapters/getDataAsse
|
|
|
20
21
|
export { getDataAssetRequestByIdOrApiNameAdapterFactory } from '../adapters/getDataAssetRequestByIdOrApiName';
|
|
21
22
|
export { updateDataAssetRequestAdapterFactory } from '../adapters/updateDataAssetRequest';
|
|
22
23
|
export { getDataAssetDependenciesAdapterFactory } from '../adapters/getDataAssetDependencies';
|
|
24
|
+
export { getDataAssetLineageByIdOrApiNameAdapterFactory } from '../adapters/getDataAssetLineageByIdOrApiName';
|
|
23
25
|
export { followAdapterFactory } from '../adapters/follow';
|
|
24
26
|
export { updateFollowedAssetAdapterFactory } from '../adapters/updateFollowedAsset';
|
|
25
27
|
export { unfollowAdapterFactory } from '../adapters/unfollow';
|
|
@@ -28,6 +28,7 @@ declare let getDataAlert: any;
|
|
|
28
28
|
declare let getDataAlertCollection: any;
|
|
29
29
|
declare let getDataAlertNotifyChange: any;
|
|
30
30
|
declare let getDataAssetDependencies: any;
|
|
31
|
+
declare let getDataAssetLineageByIdOrApiName: any;
|
|
31
32
|
declare let getDataAssetRequestByIdOrApiName: any;
|
|
32
33
|
declare let getDataAssetRequestByIdOrApiNameNotifyChange: any;
|
|
33
34
|
declare let getDataAssetRequests: any;
|
|
@@ -53,6 +54,7 @@ declare let getWorkspaceByIdOrName: any;
|
|
|
53
54
|
declare let getWorkspaceByIdOrNameNotifyChange: any;
|
|
54
55
|
declare let getWorkspaces: any;
|
|
55
56
|
declare let initiateMarketplaceListingInstallation: any;
|
|
57
|
+
declare let postDataAlertQuery: any;
|
|
56
58
|
declare let postDataAlertRun: any;
|
|
57
59
|
declare let publish: any;
|
|
58
60
|
declare let publishToMarketplace: any;
|
|
@@ -74,6 +76,7 @@ declare let getDashboards_imperative: any;
|
|
|
74
76
|
declare let getDataAlert_imperative: any;
|
|
75
77
|
declare let getDataAlertCollection_imperative: any;
|
|
76
78
|
declare let getDataAssetDependencies_imperative: any;
|
|
79
|
+
declare let getDataAssetLineageByIdOrApiName_imperative: any;
|
|
77
80
|
declare let getDataAssetRequestByIdOrApiName_imperative: any;
|
|
78
81
|
declare let getDataAssetRequests_imperative: any;
|
|
79
82
|
declare let getDataAssetRequestsCount_imperative: any;
|
|
@@ -93,6 +96,7 @@ declare let getVisualizations_imperative: any;
|
|
|
93
96
|
declare let getWorkspaceByIdOrName_imperative: any;
|
|
94
97
|
declare let getWorkspaces_imperative: any;
|
|
95
98
|
declare let initiateMarketplaceListingInstallation_imperative: any;
|
|
99
|
+
declare let postDataAlertQuery_imperative: any;
|
|
96
100
|
declare let notifySharesUpdateAvailable: any;
|
|
97
|
-
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, generateSFDrivePresignedCredentials, getAnnotations, getAssetSlackChannels, getDashboardByName, getDashboardByNameNotifyChange, getDashboards, getDataAlert, getDataAlertCollection, getDataAlertNotifyChange, getDataAssetDependencies, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequests, getDataAssetRequestsCount, getFlowByName, getFlows, getFollowedAssets, getFollowers, getMarketplaceListingInstallationProgress, getOrg, getShares, getSlackAppInfo, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationNotifyChange, getVisualizations, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaces, initiateMarketplaceListingInstallation, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace, getAnnotations_imperative, getAssetSlackChannels_imperative, getDashboardByName_imperative, getDashboards_imperative, getDataAlert_imperative, getDataAlertCollection_imperative, getDataAssetDependencies_imperative, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests_imperative, getDataAssetRequestsCount_imperative, getFlowByName_imperative, getFlows_imperative, getFollowedAssets_imperative, getFollowers_imperative, getMarketplaceListingInstallationProgress_imperative, getOrg_imperative, getShares_imperative, getSlackAppInfo_imperative, getSubscriptionDigestConfig_imperative, getUniqueFollowerCount_imperative, getVisualization_imperative, getVisualizationBundle_imperative, getVisualizations_imperative, getWorkspaceByIdOrName_imperative, getWorkspaces_imperative, initiateMarketplaceListingInstallation_imperative, };
|
|
101
|
+
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, generateSFDrivePresignedCredentials, getAnnotations, getAssetSlackChannels, getDashboardByName, getDashboardByNameNotifyChange, getDashboards, getDataAlert, getDataAlertCollection, getDataAlertNotifyChange, getDataAssetDependencies, getDataAssetLineageByIdOrApiName, getDataAssetRequestByIdOrApiName, getDataAssetRequestByIdOrApiNameNotifyChange, getDataAssetRequests, getDataAssetRequestsCount, getFlowByName, getFlows, getFollowedAssets, getFollowers, getMarketplaceListingInstallationProgress, getOrg, getShares, getSlackAppInfo, getSubscriptionDigestConfig, getSubscriptionDigestConfigNotifyChange, getUnifiedAnalyticsLibraryAssets, getUniqueFollowerCount, getVisualization, getVisualizationBundle, getVisualizationBundleNotifyChange, getVisualizationNotifyChange, getVisualizations, getWorkspaceByIdOrName, getWorkspaceByIdOrNameNotifyChange, getWorkspaces, initiateMarketplaceListingInstallation, postDataAlertQuery, postDataAlertRun, publish, publishToMarketplace, queryAssets, queryUsers, unfollow, updateDashboard, updateDataAlert, updateDataAssetRequest, updateFollowedAsset, updateRecordShares, updateSubscriptionDigestConfig, updateVisualization, updateWorkspace, getAnnotations_imperative, getAssetSlackChannels_imperative, getDashboardByName_imperative, getDashboards_imperative, getDataAlert_imperative, getDataAlertCollection_imperative, getDataAssetDependencies_imperative, getDataAssetLineageByIdOrApiName_imperative, getDataAssetRequestByIdOrApiName_imperative, getDataAssetRequests_imperative, getDataAssetRequestsCount_imperative, getFlowByName_imperative, getFlows_imperative, getFollowedAssets_imperative, getFollowers_imperative, getMarketplaceListingInstallationProgress_imperative, getOrg_imperative, getShares_imperative, getSlackAppInfo_imperative, getSubscriptionDigestConfig_imperative, getUniqueFollowerCount_imperative, getVisualization_imperative, getVisualizationBundle_imperative, getVisualizations_imperative, getWorkspaceByIdOrName_imperative, getWorkspaces_imperative, initiateMarketplaceListingInstallation_imperative, postDataAlertQuery_imperative, };
|
|
98
102
|
export { notifySharesUpdateAvailable };
|
package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface ResourceRequestConfig {
|
|
|
7
7
|
queryParams: {
|
|
8
8
|
includeSynchronizationInfo?: boolean;
|
|
9
9
|
failOnSchemaMismatch?: boolean;
|
|
10
|
+
includeReusedAssets?: boolean;
|
|
10
11
|
};
|
|
11
12
|
}
|
|
12
13
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
2
|
+
import { DataAssetLineageRepresentation as types_DataAssetLineageRepresentation_DataAssetLineageRepresentation } from '../types/DataAssetLineageRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
assetIdOrApiName: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
9
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
10
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAssetLineageRepresentation_DataAssetLineageRepresentation): void;
|
|
12
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation, any>;
|
|
13
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAssetLineageRepresentation_DataAssetLineageRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
14
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
15
|
+
export default createResourceRequest;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DataAlertBriefContentInputRepresentation as types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation } from '../types/DataAlertBriefContentInputRepresentation';
|
|
1
2
|
import { DataAlertMetricContentInputRepresentation as types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation } from '../types/DataAlertMetricContentInputRepresentation';
|
|
2
3
|
import { DataAlertDeliveryConfigurationInputRepresentation as types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation } from '../types/DataAlertDeliveryConfigurationInputRepresentation';
|
|
3
4
|
import { DataAlertDailyScheduleInputRepresentation as types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from '../types/DataAlertDailyScheduleInputRepresentation';
|
|
@@ -11,13 +12,14 @@ export interface ResourceRequestConfig {
|
|
|
11
12
|
runNow?: boolean;
|
|
12
13
|
};
|
|
13
14
|
body: {
|
|
14
|
-
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
15
|
+
content: types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
15
16
|
dataAlertType: string;
|
|
16
17
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
17
18
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
18
|
-
thresholds
|
|
19
|
+
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
19
20
|
utterance: string;
|
|
20
21
|
agent?: string | null;
|
|
22
|
+
isEnabled?: boolean;
|
|
21
23
|
};
|
|
22
24
|
}
|
|
23
25
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UnifiedFilterInputRepresentation as types_UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation } from '../types/UnifiedFilterInputRepresentation';
|
|
2
|
+
import { DataAlertPropertyFilterInputRepresentation as types_DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation } from '../types/DataAlertPropertyFilterInputRepresentation';
|
|
3
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, FetchResponse as $64$luvio_engine_FetchResponse, SnapshotRefresh as $64$luvio_engine_SnapshotRefresh, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ErrorResponse as $64$luvio_engine_ErrorResponse, ErrorSnapshot as $64$luvio_engine_ErrorSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
4
|
+
import { DataAlertQueryCollectionRepresentation as types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation } from '../types/DataAlertQueryCollectionRepresentation';
|
|
5
|
+
export interface ResourceRequestConfig {
|
|
6
|
+
body: {
|
|
7
|
+
ownerId: string;
|
|
8
|
+
assetId?: string;
|
|
9
|
+
dataAlertTypes?: Array<string>;
|
|
10
|
+
timeRange?: types_UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation;
|
|
11
|
+
includeProperties?: Array<string>;
|
|
12
|
+
propertyFilters?: Array<types_DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation>;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
16
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
17
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
18
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation): void;
|
|
19
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>;
|
|
20
|
+
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
21
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
22
|
+
export default createResourceRequest;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DataAlertBriefContentInputRepresentation as types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation } from '../types/DataAlertBriefContentInputRepresentation';
|
|
1
2
|
import { DataAlertMetricContentInputRepresentation as types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation } from '../types/DataAlertMetricContentInputRepresentation';
|
|
2
3
|
import { DataAlertDeliveryConfigurationInputRepresentation as types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation } from '../types/DataAlertDeliveryConfigurationInputRepresentation';
|
|
3
4
|
import { DataAlertDailyScheduleInputRepresentation as types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from '../types/DataAlertDailyScheduleInputRepresentation';
|
|
@@ -14,13 +15,14 @@ export interface ResourceRequestConfig {
|
|
|
14
15
|
runNow?: boolean;
|
|
15
16
|
};
|
|
16
17
|
body: {
|
|
17
|
-
content: types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
18
|
+
content: types_DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | types_DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
18
19
|
dataAlertType: string;
|
|
19
20
|
deliveryConfigurations: types_DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
20
21
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
21
|
-
thresholds
|
|
22
|
+
thresholds?: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
22
23
|
utterance: string;
|
|
23
24
|
agent?: string | null;
|
|
25
|
+
isEnabled?: boolean;
|
|
24
26
|
};
|
|
25
27
|
}
|
|
26
28
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
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';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "116ccee9ec39ba653b40516cdb5f068b";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: DashboardInputRepresentation, existing: DashboardInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DashboardInputRepresentationNormalized;
|
|
@@ -28,6 +28,10 @@ export interface DashboardInputRepresentationNormalized {
|
|
|
28
28
|
id?: string;
|
|
29
29
|
/** Master label. */
|
|
30
30
|
label: string;
|
|
31
|
+
/** Last modified by of the asset. */
|
|
32
|
+
lastModifiedBy?: unknown;
|
|
33
|
+
/** Last modified date of the asset. */
|
|
34
|
+
lastModifiedDate?: string;
|
|
31
35
|
/** List of layouts in the dashboard. */
|
|
32
36
|
layouts: Array<unknown>;
|
|
33
37
|
/** Unique developer name. */
|
|
@@ -59,6 +63,8 @@ export interface DashboardInputRepresentation {
|
|
|
59
63
|
description?: string;
|
|
60
64
|
id?: string;
|
|
61
65
|
label: string;
|
|
66
|
+
lastModifiedBy?: unknown;
|
|
67
|
+
lastModifiedDate?: string;
|
|
62
68
|
layouts: Array<unknown>;
|
|
63
69
|
name?: string;
|
|
64
70
|
style?: {
|
package/dist/es/es2018/types/src/generated/types/DataAlertBriefContentInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { DataAlertContentInputRepresentation as DataAlertContentInputRepresentation_DataAlertContentInputRepresentation } from './DataAlertContentInputRepresentation';
|
|
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 = "b821566b07418176dbc333e09bdca052";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
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;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: DataAlertBriefContentInputRepresentationNormalized, incoming: DataAlertBriefContentInputRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAlertBriefContentInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for content based on brief
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
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>;
|
|
20
|
+
/** Skill instruction for the brief content */
|
|
21
|
+
skillInstruction: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Input representation for content based on brief
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface DataAlertBriefContentInputRepresentation extends DataAlertContentInputRepresentation_DataAlertContentInputRepresentation {
|
|
30
|
+
modelApiNameOrIdList?: Array<string>;
|
|
31
|
+
skillInstruction: string;
|
|
32
|
+
type: 'Brief';
|
|
33
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { DataAlertContentRepresentation as DataAlertContentRepresentation_DataAlertContentRepresentation } from './DataAlertContentRepresentation';
|
|
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 = "76e4755a7e9893e795ae6a76025894cc";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
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;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: DataAlertBriefContentRepresentationNormalized, incoming: DataAlertBriefContentRepresentationNormalized): boolean;
|
|
9
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
10
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAlertBriefContentRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Represents the brief content for a data alert
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
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>;
|
|
20
|
+
/** Skill instruction for the brief content */
|
|
21
|
+
skillInstruction: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Represents the brief content for a data alert
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface DataAlertBriefContentRepresentation extends DataAlertContentRepresentation_DataAlertContentRepresentation {
|
|
30
|
+
modelApiNameOrIdList?: Array<string>;
|
|
31
|
+
skillInstruction: string;
|
|
32
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentUnionSelection as $64$luvio_engine_FragmentUnionSelection, 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';
|
|
2
2
|
export declare enum DiscriminatorValues {
|
|
3
|
+
Brief = "Brief",
|
|
3
4
|
Metric = "Metric"
|
|
4
5
|
}
|
|
5
6
|
export declare const VERSION = "b2d6bbf857930f270768de4df3aa1741";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DataAlertReceiversInputRepresentation as DataAlertReceiversInputRepresentation_DataAlertReceiversInputRepresentation } from './DataAlertReceiversInputRepresentation';
|
|
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
|
+
import { DataAlertMsTeamsRecipientsInputRepresentation as DataAlertMsTeamsRecipientsInputRepresentation_DataAlertMsTeamsRecipientsInputRepresentation } from './DataAlertMsTeamsRecipientsInputRepresentation';
|
|
3
4
|
import { DataAlertNotificationRecipientsInputRepresentation as DataAlertNotificationRecipientsInputRepresentation_DataAlertNotificationRecipientsInputRepresentation } from './DataAlertNotificationRecipientsInputRepresentation';
|
|
4
5
|
export declare const VERSION = "e65b9ee95f4d79713e04a15c7f735a75";
|
|
5
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
@@ -26,5 +27,5 @@ export interface DataAlertDeliveryConfigurationInputRepresentationNormalized {
|
|
|
26
27
|
* (none)
|
|
27
28
|
*/
|
|
28
29
|
export interface DataAlertDeliveryConfigurationInputRepresentation {
|
|
29
|
-
receivers: Array<DataAlertNotificationRecipientsInputRepresentation_DataAlertNotificationRecipientsInputRepresentation>;
|
|
30
|
+
receivers: Array<DataAlertMsTeamsRecipientsInputRepresentation_DataAlertMsTeamsRecipientsInputRepresentation | DataAlertNotificationRecipientsInputRepresentation_DataAlertNotificationRecipientsInputRepresentation>;
|
|
30
31
|
}
|
|
@@ -3,11 +3,12 @@ import { DataAlertDeliveryConfigurationInputRepresentation as DataAlertDeliveryC
|
|
|
3
3
|
import { DataAlertScheduleInputRepresentation as DataAlertScheduleInputRepresentation_DataAlertScheduleInputRepresentation } from './DataAlertScheduleInputRepresentation';
|
|
4
4
|
import { DataAlertThresholdsInputRepresentation as DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation } from './DataAlertThresholdsInputRepresentation';
|
|
5
5
|
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';
|
|
6
|
+
import { DataAlertBriefContentInputRepresentation as DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation } from './DataAlertBriefContentInputRepresentation';
|
|
6
7
|
import { DataAlertMetricContentInputRepresentation as DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation } from './DataAlertMetricContentInputRepresentation';
|
|
7
8
|
import { DataAlertDailyScheduleInputRepresentation as DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from './DataAlertDailyScheduleInputRepresentation';
|
|
8
9
|
import { DataAlertWeeklyScheduleInputRepresentation as DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation } from './DataAlertWeeklyScheduleInputRepresentation';
|
|
9
10
|
import { DataAlertEveryNMinutesScheduleInputRepresentation as DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation } from './DataAlertEveryNMinutesScheduleInputRepresentation';
|
|
10
|
-
export declare const VERSION = "
|
|
11
|
+
export declare const VERSION = "8f196c5299c01756d3dca9c7f46d5e18";
|
|
11
12
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
12
13
|
export declare const RepresentationType: string;
|
|
13
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;
|
|
@@ -28,8 +29,10 @@ export interface DataAlertInputRepresentationNormalized {
|
|
|
28
29
|
/** Type of data alert */
|
|
29
30
|
dataAlertType: string;
|
|
30
31
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
32
|
+
/** Whether this data alert is enabled. Set to false to pause alert execution. */
|
|
33
|
+
isEnabled?: boolean;
|
|
31
34
|
schedule: DataAlertScheduleInputRepresentation_DataAlertScheduleInputRepresentation;
|
|
32
|
-
thresholds
|
|
35
|
+
thresholds?: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
33
36
|
/** user entered utterance */
|
|
34
37
|
utterance: string;
|
|
35
38
|
}
|
|
@@ -41,10 +44,11 @@ export interface DataAlertInputRepresentationNormalized {
|
|
|
41
44
|
*/
|
|
42
45
|
export interface DataAlertInputRepresentation {
|
|
43
46
|
agent?: string | null;
|
|
44
|
-
content: DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
47
|
+
content: DataAlertBriefContentInputRepresentation_DataAlertBriefContentInputRepresentation | DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
45
48
|
dataAlertType: string;
|
|
46
49
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
50
|
+
isEnabled?: boolean;
|
|
47
51
|
schedule: DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
48
|
-
thresholds
|
|
52
|
+
thresholds?: DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
49
53
|
utterance: string;
|
|
50
54
|
}
|
package/dist/es/es2018/types/src/generated/types/DataAlertMsTeamsRecipientInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const VERSION = "1c6f4c10408f399fbe640e89d4dac294";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DataAlertMsTeamsRecipientInputRepresentation, existing: DataAlertMsTeamsRecipientInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertMsTeamsRecipientInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DataAlertMsTeamsRecipientInputRepresentationNormalized, incoming: DataAlertMsTeamsRecipientInputRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAlertMsTeamsRecipientInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* A single Microsoft Teams recipient
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DataAlertMsTeamsRecipientInputRepresentationNormalized {
|
|
17
|
+
/** Recipient identifier */
|
|
18
|
+
recipient: string;
|
|
19
|
+
/** Type of recipient */
|
|
20
|
+
recipientType: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A single Microsoft Teams recipient
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAlertMsTeamsRecipientInputRepresentation {
|
|
29
|
+
recipient: string;
|
|
30
|
+
recipientType: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
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';
|
|
2
|
+
export declare const VERSION = "b31219d3035f8eebd4fd62f348e06a36";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DataAlertMsTeamsRecipientRepresentation, existing: DataAlertMsTeamsRecipientRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertMsTeamsRecipientRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DataAlertMsTeamsRecipientRepresentationNormalized, incoming: DataAlertMsTeamsRecipientRepresentationNormalized): boolean;
|
|
8
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
9
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAlertMsTeamsRecipientRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents a single Microsoft Teams recipient
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DataAlertMsTeamsRecipientRepresentationNormalized {
|
|
17
|
+
/** Recipient identifier */
|
|
18
|
+
recipient: string;
|
|
19
|
+
/** Type of recipient */
|
|
20
|
+
recipientType: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Represents a single Microsoft Teams recipient
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAlertMsTeamsRecipientRepresentation {
|
|
29
|
+
recipient: string;
|
|
30
|
+
recipientType: string;
|
|
31
|
+
}
|
package/dist/es/es2018/types/src/generated/types/DataAlertMsTeamsRecipientsInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { DataAlertReceiversInputRepresentation as DataAlertReceiversInputRepresentation_DataAlertReceiversInputRepresentation } from './DataAlertReceiversInputRepresentation';
|
|
2
|
+
import { DataAlertMsTeamsRecipientInputRepresentation as DataAlertMsTeamsRecipientInputRepresentation_DataAlertMsTeamsRecipientInputRepresentation } from './DataAlertMsTeamsRecipientInputRepresentation';
|
|
3
|
+
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';
|
|
4
|
+
export declare const VERSION = "2c3e88e6bc24e649f940cc6366511e12";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAlertMsTeamsRecipientsInputRepresentation, existing: DataAlertMsTeamsRecipientsInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertMsTeamsRecipientsInputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: DataAlertMsTeamsRecipientsInputRepresentationNormalized, incoming: DataAlertMsTeamsRecipientsInputRepresentationNormalized): boolean;
|
|
10
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
11
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: DataAlertMsTeamsRecipientsInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* List of Microsoft Teams recipients for Data alerts.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAlertMsTeamsRecipientsInputRepresentationNormalized extends DataAlertReceiversInputRepresentation_DataAlertReceiversInputRepresentation {
|
|
19
|
+
/** Microsoft Teams recipients */
|
|
20
|
+
recipients: Array<DataAlertMsTeamsRecipientInputRepresentation_DataAlertMsTeamsRecipientInputRepresentation>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* List of Microsoft Teams recipients for Data alerts.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAlertMsTeamsRecipientsInputRepresentation extends DataAlertReceiversInputRepresentation_DataAlertReceiversInputRepresentation {
|
|
29
|
+
recipients: Array<DataAlertMsTeamsRecipientInputRepresentation_DataAlertMsTeamsRecipientInputRepresentation>;
|
|
30
|
+
type: 'MsTeams';
|
|
31
|
+
}
|