@salesforce/lds-adapters-analytics-unifiedanalytics 1.427.0 → 1.428.0-dev10
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 +1824 -1113
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +5 -0
- 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 +33 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +5 -0
- 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 +5 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlertsQuery.d.ts +21 -0
- package/dist/es/es2018/types/src/generated/types/DashboardInputRepresentation.d.ts +14 -1
- package/dist/es/es2018/types/src/generated/types/DashboardRepresentation.d.ts +8 -1
- 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 +40 -0
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetLineageRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/PromotionContentAssetRepresentation.d.ts +46 -0
- package/package.json +3 -3
- package/sfdc/index.js +3292 -2559
- package/src/raml/api.raml +182 -0
- package/src/raml/luvio.raml +15 -0
|
@@ -12,6 +12,8 @@ export interface CreateDashboardConfig {
|
|
|
12
12
|
workspaceIdOrApiName?: string;
|
|
13
13
|
label: string;
|
|
14
14
|
name?: string;
|
|
15
|
+
lastModifiedBy?: unknown;
|
|
16
|
+
lastModifiedDate?: string;
|
|
15
17
|
layouts: Array<unknown>;
|
|
16
18
|
widgets: {
|
|
17
19
|
[key: string]: unknown;
|
|
@@ -22,6 +24,9 @@ export interface CreateDashboardConfig {
|
|
|
22
24
|
backgroundSource?: {
|
|
23
25
|
[key: string]: unknown;
|
|
24
26
|
};
|
|
27
|
+
customConfig?: {
|
|
28
|
+
[key: string]: unknown;
|
|
29
|
+
};
|
|
25
30
|
}
|
|
26
31
|
export declare const createResourceParams: (config: CreateDashboardConfig) => resources_postTableauDashboards_ResourceRequestConfig;
|
|
27
32
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDashboardConfig>): adapter$45$utils_Untrusted<CreateDashboardConfig>;
|
|
@@ -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,33 @@
|
|
|
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
|
+
timeRange?: types_UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation;
|
|
14
|
+
includeProperties?: Array<string>;
|
|
15
|
+
propertyFilters?: Array<types_DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation>;
|
|
16
|
+
}
|
|
17
|
+
export declare const createResourceParams: (config: PostDataAlertQueryConfig) => resources_postTableauDataAlertsQuery_ResourceRequestConfig;
|
|
18
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): string;
|
|
19
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
20
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PostDataAlertQueryConfig>): adapter$45$utils_Untrusted<PostDataAlertQueryConfig>;
|
|
21
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PostDataAlertQueryConfig | null;
|
|
22
|
+
export declare function adapterFragment(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): $64$luvio_engine_Fragment;
|
|
23
|
+
export declare function buildCachedSnapshot(luvio: $64$luvio_engine_Luvio, config: PostDataAlertQueryConfig): $64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>;
|
|
24
|
+
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>>;
|
|
25
|
+
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>;
|
|
26
|
+
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>>;
|
|
27
|
+
export type BuildSnapshotContext = {
|
|
28
|
+
luvio: $64$luvio_engine_Luvio;
|
|
29
|
+
config: PostDataAlertQueryConfig;
|
|
30
|
+
};
|
|
31
|
+
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>>;
|
|
32
|
+
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>): $64$luvio_engine_Snapshot<types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation, any>;
|
|
33
|
+
export declare const postDataAlertQueryAdapterFactory: $64$luvio_engine_AdapterFactory<PostDataAlertQueryConfig, types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation>;
|
|
@@ -13,6 +13,8 @@ export interface UpdateDashboardConfig {
|
|
|
13
13
|
workspaceIdOrApiName?: string;
|
|
14
14
|
label: string;
|
|
15
15
|
name?: string;
|
|
16
|
+
lastModifiedBy?: unknown;
|
|
17
|
+
lastModifiedDate?: string;
|
|
16
18
|
layouts: Array<unknown>;
|
|
17
19
|
widgets: {
|
|
18
20
|
[key: string]: unknown;
|
|
@@ -23,6 +25,9 @@ export interface UpdateDashboardConfig {
|
|
|
23
25
|
backgroundSource?: {
|
|
24
26
|
[key: string]: unknown;
|
|
25
27
|
};
|
|
28
|
+
customConfig?: {
|
|
29
|
+
[key: string]: unknown;
|
|
30
|
+
};
|
|
26
31
|
}
|
|
27
32
|
export declare const createResourceParams: (config: UpdateDashboardConfig) => resources_patchTableauDashboardsByDashboardIdOrApiName_ResourceRequestConfig;
|
|
28
33
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDashboardConfig>): adapter$45$utils_Untrusted<UpdateDashboardConfig>;
|
|
@@ -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;
|
|
@@ -13,6 +13,8 @@ export interface ResourceRequestConfig {
|
|
|
13
13
|
workspaceIdOrApiName?: string;
|
|
14
14
|
label: string;
|
|
15
15
|
name?: string;
|
|
16
|
+
lastModifiedBy?: unknown;
|
|
17
|
+
lastModifiedDate?: string;
|
|
16
18
|
layouts: Array<unknown>;
|
|
17
19
|
widgets: {
|
|
18
20
|
[key: string]: unknown;
|
|
@@ -23,6 +25,9 @@ export interface ResourceRequestConfig {
|
|
|
23
25
|
backgroundSource?: {
|
|
24
26
|
[key: string]: unknown;
|
|
25
27
|
};
|
|
28
|
+
customConfig?: {
|
|
29
|
+
[key: string]: unknown;
|
|
30
|
+
};
|
|
26
31
|
};
|
|
27
32
|
}
|
|
28
33
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -10,6 +10,8 @@ export interface ResourceRequestConfig {
|
|
|
10
10
|
workspaceIdOrApiName?: string;
|
|
11
11
|
label: string;
|
|
12
12
|
name?: string;
|
|
13
|
+
lastModifiedBy?: unknown;
|
|
14
|
+
lastModifiedDate?: string;
|
|
13
15
|
layouts: Array<unknown>;
|
|
14
16
|
widgets: {
|
|
15
17
|
[key: string]: unknown;
|
|
@@ -20,6 +22,9 @@ export interface ResourceRequestConfig {
|
|
|
20
22
|
backgroundSource?: {
|
|
21
23
|
[key: string]: unknown;
|
|
22
24
|
};
|
|
25
|
+
customConfig?: {
|
|
26
|
+
[key: string]: unknown;
|
|
27
|
+
};
|
|
23
28
|
};
|
|
24
29
|
}
|
|
25
30
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
timeRange?: types_UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation;
|
|
10
|
+
includeProperties?: Array<string>;
|
|
11
|
+
propertyFilters?: Array<types_DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation>;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): string;
|
|
16
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
17
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_DataAlertQueryCollectionRepresentation_DataAlertQueryCollectionRepresentation): void;
|
|
18
|
+
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>;
|
|
19
|
+
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;
|
|
20
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
21
|
+
export default createResourceRequest;
|
|
@@ -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;
|
|
@@ -18,12 +18,20 @@ export interface DashboardInputRepresentationNormalized {
|
|
|
18
18
|
backgroundSource?: {
|
|
19
19
|
[key: string]: unknown;
|
|
20
20
|
};
|
|
21
|
+
/** Dashboard level custom configuration */
|
|
22
|
+
customConfig?: {
|
|
23
|
+
[key: string]: unknown;
|
|
24
|
+
};
|
|
21
25
|
/** Description. */
|
|
22
26
|
description?: string;
|
|
23
27
|
/** Database id. */
|
|
24
28
|
id?: string;
|
|
25
29
|
/** Master label. */
|
|
26
30
|
label: string;
|
|
31
|
+
/** Last modified by of the asset. */
|
|
32
|
+
lastModifiedBy?: unknown;
|
|
33
|
+
/** Last modified date of the asset. */
|
|
34
|
+
lastModifiedDate?: string;
|
|
27
35
|
/** List of layouts in the dashboard. */
|
|
28
36
|
layouts: Array<unknown>;
|
|
29
37
|
/** Unique developer name. */
|
|
@@ -49,9 +57,14 @@ export interface DashboardInputRepresentation {
|
|
|
49
57
|
backgroundSource?: {
|
|
50
58
|
[key: string]: unknown;
|
|
51
59
|
};
|
|
60
|
+
customConfig?: {
|
|
61
|
+
[key: string]: unknown;
|
|
62
|
+
};
|
|
52
63
|
description?: string;
|
|
53
64
|
id?: string;
|
|
54
65
|
label: string;
|
|
66
|
+
lastModifiedBy?: unknown;
|
|
67
|
+
lastModifiedDate?: string;
|
|
55
68
|
layouts: Array<unknown>;
|
|
56
69
|
name?: string;
|
|
57
70
|
style?: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
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';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "581903d233184a85957cb2aa527b0d33";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -31,6 +31,10 @@ export interface DashboardRepresentationNormalized {
|
|
|
31
31
|
createdBy: unknown;
|
|
32
32
|
/** Created date of the asset */
|
|
33
33
|
createdDate: string;
|
|
34
|
+
/** Dashboard level custom configuration */
|
|
35
|
+
customConfig?: {
|
|
36
|
+
[key: string]: unknown;
|
|
37
|
+
};
|
|
34
38
|
/** Description of the asset. */
|
|
35
39
|
description?: string;
|
|
36
40
|
/** Database record id of the asset. */
|
|
@@ -70,6 +74,9 @@ export interface DashboardRepresentation {
|
|
|
70
74
|
};
|
|
71
75
|
createdBy: unknown;
|
|
72
76
|
createdDate: string;
|
|
77
|
+
customConfig?: {
|
|
78
|
+
[key: string]: unknown;
|
|
79
|
+
};
|
|
73
80
|
description?: string;
|
|
74
81
|
id: string;
|
|
75
82
|
label: string;
|
package/dist/es/es2018/types/src/generated/types/DataAlertPropertyFilterInputRepresentation.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 = "160d1be3fd0103e832ef13a1d5f292c2";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DataAlertPropertyFilterInputRepresentation, existing: DataAlertPropertyFilterInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertPropertyFilterInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DataAlertPropertyFilterInputRepresentationNormalized, incoming: DataAlertPropertyFilterInputRepresentationNormalized): 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: DataAlertPropertyFilterInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Filter by computed property values. Automatically computes filtered properties (no need to specify in includeProperties)
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DataAlertPropertyFilterInputRepresentationNormalized {
|
|
17
|
+
/** Property description */
|
|
18
|
+
property: string;
|
|
19
|
+
/** Values matching the property */
|
|
20
|
+
values: Array<string>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Filter by computed property values. Automatically computes filtered properties (no need to specify in includeProperties)
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAlertPropertyFilterInputRepresentation {
|
|
29
|
+
property: string;
|
|
30
|
+
values: Array<string>;
|
|
31
|
+
}
|
package/dist/es/es2018/types/src/generated/types/DataAlertPropertyFilterOutputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
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 = "4e0c00bf681c42fee894905aa9762b5e";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DataAlertPropertyFilterOutputRepresentation, existing: DataAlertPropertyFilterOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertPropertyFilterOutputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DataAlertPropertyFilterOutputRepresentationNormalized, incoming: DataAlertPropertyFilterOutputRepresentationNormalized): 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: DataAlertPropertyFilterOutputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Property Filter Output Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DataAlertPropertyFilterOutputRepresentationNormalized {
|
|
17
|
+
/** Computed Properties to Include */
|
|
18
|
+
conditionCategory: string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Property Filter Output Representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface DataAlertPropertyFilterOutputRepresentation {
|
|
27
|
+
conditionCategory: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { DataAlertRepresentation as DataAlertRepresentation_DataAlertRepresentation } from './DataAlertRepresentation';
|
|
2
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, BaseFragment as $64$luvio_engine_BaseFragment, ResourceIngest as $64$luvio_engine_ResourceIngest, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
3
|
+
export declare const TTL = 500;
|
|
4
|
+
export declare const VERSION = "8ee49a59b88eeef0e19aa1298280a0a7";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAlertQueryCollectionRepresentation, existing: DataAlertQueryCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertQueryCollectionRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
9
|
+
export declare function equals(existing: DataAlertQueryCollectionRepresentationNormalized, incoming: DataAlertQueryCollectionRepresentationNormalized): 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: DataAlertQueryCollectionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* A collection of unified analytics data alerts that match the query.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAlertQueryCollectionRepresentationNormalized {
|
|
19
|
+
/** List of data alerts being returned. */
|
|
20
|
+
dataAlerts: Array<$64$luvio_engine_StoreLink>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A collection of unified analytics data alerts that match the query.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface DataAlertQueryCollectionRepresentation {
|
|
29
|
+
dataAlerts: Array<DataAlertRepresentation_DataAlertRepresentation>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { DataAlertPropertyFilterInputRepresentation as DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation } from './DataAlertPropertyFilterInputRepresentation';
|
|
2
|
+
import { UnifiedFilterInputRepresentation as UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation } from './UnifiedFilterInputRepresentation';
|
|
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 = "4e4946f75d645c7cae9bf03c43a56fbf";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAlertQueryInputRepresentation, existing: DataAlertQueryInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAlertQueryInputRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: DataAlertQueryInputRepresentationNormalized, incoming: DataAlertQueryInputRepresentationNormalized): 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: DataAlertQueryInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* Abstract input representation for complex queries with computed properties and filtering
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAlertQueryInputRepresentationNormalized {
|
|
19
|
+
/** Filter by metric/asset ID */
|
|
20
|
+
assetId?: string;
|
|
21
|
+
includeProperties?: Array<string>;
|
|
22
|
+
/** User ID to filter alerts */
|
|
23
|
+
ownerId: string;
|
|
24
|
+
/** Structured filter for computed properties */
|
|
25
|
+
propertyFilters?: Array<DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation>;
|
|
26
|
+
timeRange?: UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Abstract input representation for complex queries with computed properties and filtering
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface DataAlertQueryInputRepresentation {
|
|
35
|
+
assetId?: string;
|
|
36
|
+
includeProperties?: Array<string>;
|
|
37
|
+
ownerId: string;
|
|
38
|
+
propertyFilters?: Array<DataAlertPropertyFilterInputRepresentation_DataAlertPropertyFilterInputRepresentation>;
|
|
39
|
+
timeRange?: UnifiedFilterInputRepresentation_UnifiedFilterInputRepresentation;
|
|
40
|
+
}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { DataAlertContentRepresentation as DataAlertContentRepresentation_DataAlertContentRepresentation } from './DataAlertContentRepresentation';
|
|
2
2
|
import { DataAlertDeliveryConfigurationRepresentation as DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation } from './DataAlertDeliveryConfigurationRepresentation';
|
|
3
|
+
import { DataAlertPropertyFilterOutputRepresentation as DataAlertPropertyFilterOutputRepresentation_DataAlertPropertyFilterOutputRepresentation } from './DataAlertPropertyFilterOutputRepresentation';
|
|
3
4
|
import { DataAlertScheduleRepresentation as DataAlertScheduleRepresentation_DataAlertScheduleRepresentation } from './DataAlertScheduleRepresentation';
|
|
4
5
|
import { DataAlertThresholdsRepresentation as DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation } from './DataAlertThresholdsRepresentation';
|
|
5
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';
|
|
6
7
|
export declare const TTL = 500;
|
|
7
|
-
export declare const VERSION = "
|
|
8
|
+
export declare const VERSION = "c2b3a7269126a29557fb07e4baa3abf9";
|
|
8
9
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
9
10
|
export declare const RepresentationType: string;
|
|
10
11
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -44,6 +45,8 @@ export interface DataAlertRepresentationNormalized {
|
|
|
44
45
|
id: string;
|
|
45
46
|
/** Last modified date of the data alert */
|
|
46
47
|
lastModifiedDate: string;
|
|
48
|
+
/** Additional properties for the data alert used when sending the query response. */
|
|
49
|
+
properties?: DataAlertPropertyFilterOutputRepresentation_DataAlertPropertyFilterOutputRepresentation;
|
|
47
50
|
schedule: DataAlertScheduleRepresentation_DataAlertScheduleRepresentation;
|
|
48
51
|
thresholds: DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation;
|
|
49
52
|
}
|
|
@@ -62,6 +65,7 @@ export interface DataAlertRepresentation {
|
|
|
62
65
|
deliveryConfigurations: DataAlertDeliveryConfigurationRepresentation_DataAlertDeliveryConfigurationRepresentation;
|
|
63
66
|
id: string;
|
|
64
67
|
lastModifiedDate: string;
|
|
68
|
+
properties?: DataAlertPropertyFilterOutputRepresentation_DataAlertPropertyFilterOutputRepresentation;
|
|
65
69
|
schedule: DataAlertScheduleRepresentation_DataAlertScheduleRepresentation;
|
|
66
70
|
thresholds: DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation;
|
|
67
71
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 = "ad588c0fac61bbb68f435f8d14f8bbc8";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: DataAssetLineageRepresentation, existing: DataAssetLineageRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetLineageRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: DataAssetLineageRepresentationNormalized, incoming: DataAssetLineageRepresentationNormalized): 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: DataAssetLineageRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Data Asset Lineage
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface DataAssetLineageRepresentationNormalized {
|
|
17
|
+
/** Source Developer Name */
|
|
18
|
+
sourceDeveloperName: string;
|
|
19
|
+
/** Source Record Id */
|
|
20
|
+
sourceRecordId: string;
|
|
21
|
+
/** Target Developer Name */
|
|
22
|
+
targetDeveloperName: string;
|
|
23
|
+
/** Target Record Id */
|
|
24
|
+
targetRecordId: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Data Asset Lineage
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface DataAssetLineageRepresentation {
|
|
33
|
+
sourceDeveloperName: string;
|
|
34
|
+
sourceRecordId: string;
|
|
35
|
+
targetDeveloperName: string;
|
|
36
|
+
targetRecordId: string;
|
|
37
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { AnalyticsUserRepresentation as AnalyticsUserRepresentation_AnalyticsUserRepresentation } from './AnalyticsUserRepresentation';
|
|
2
2
|
import { DataAssetRequestAdditionalInfoRepresentation as DataAssetRequestAdditionalInfoRepresentation_DataAssetRequestAdditionalInfoRepresentation } from './DataAssetRequestAdditionalInfoRepresentation';
|
|
3
|
+
import { PromotionContentAssetRepresentation as PromotionContentAssetRepresentation_PromotionContentAssetRepresentation } from './PromotionContentAssetRepresentation';
|
|
3
4
|
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';
|
|
4
5
|
export declare const TTL = 500;
|
|
5
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "14c3cbce26bc641b86f45457db9a2331";
|
|
6
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
8
|
export declare const RepresentationType: string;
|
|
8
9
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -80,6 +81,8 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
80
81
|
productionOrgWorkspaceId: string | null;
|
|
81
82
|
/** Promotion Approval Flow of the request */
|
|
82
83
|
promotionApprovalFlow: string | null;
|
|
84
|
+
/** List of content assets from promotion additional info */
|
|
85
|
+
promotionContentAssets?: Array<PromotionContentAssetRepresentation_PromotionContentAssetRepresentation>;
|
|
83
86
|
/** Rejection Comment */
|
|
84
87
|
rejectionComment: string | null;
|
|
85
88
|
/** Type of the request */
|
|
@@ -135,6 +138,7 @@ export interface DataAssetRequestRepresentation {
|
|
|
135
138
|
productionOrgId: string | null;
|
|
136
139
|
productionOrgWorkspaceId: string | null;
|
|
137
140
|
promotionApprovalFlow: string | null;
|
|
141
|
+
promotionContentAssets?: Array<PromotionContentAssetRepresentation_PromotionContentAssetRepresentation>;
|
|
138
142
|
rejectionComment: string | null;
|
|
139
143
|
requestType: string;
|
|
140
144
|
requestedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
|
|
@@ -0,0 +1,46 @@
|
|
|
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 = "f94bc511578c19437ffa5d1f0e042360";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: PromotionContentAssetRepresentation, existing: PromotionContentAssetRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): PromotionContentAssetRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: PromotionContentAssetRepresentationNormalized, incoming: PromotionContentAssetRepresentationNormalized): 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: PromotionContentAssetRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Represents a content asset in a promotion request
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface PromotionContentAssetRepresentationNormalized {
|
|
17
|
+
/** The type of the asset */
|
|
18
|
+
assetType: string;
|
|
19
|
+
/** Indicates whether the asset is a first-level reuse */
|
|
20
|
+
isFirstLevelReuse: boolean;
|
|
21
|
+
/** Indicates whether the asset is reused from another promotion */
|
|
22
|
+
isReused: boolean;
|
|
23
|
+
/** The source developer name of the asset */
|
|
24
|
+
sourceDevName: string;
|
|
25
|
+
/** The source ID of the asset */
|
|
26
|
+
sourceId: string;
|
|
27
|
+
/** The target developer name of the asset */
|
|
28
|
+
targetDevName?: string | null;
|
|
29
|
+
/** The target ID of the asset */
|
|
30
|
+
targetId?: string | null;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Represents a content asset in a promotion request
|
|
34
|
+
*
|
|
35
|
+
* Keys:
|
|
36
|
+
* (none)
|
|
37
|
+
*/
|
|
38
|
+
export interface PromotionContentAssetRepresentation {
|
|
39
|
+
assetType: string;
|
|
40
|
+
isFirstLevelReuse: boolean;
|
|
41
|
+
isReused: boolean;
|
|
42
|
+
sourceDevName: string;
|
|
43
|
+
sourceId: string;
|
|
44
|
+
targetDevName?: string | null;
|
|
45
|
+
targetId?: string | null;
|
|
46
|
+
}
|