@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev2 → 1.404.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 +3052 -2394
- package/dist/es/es2018/types/src/generated/adapters/createDashboard.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/adapters/createDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/generateSFDrivePresignedCredentials.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetDependencies.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequests.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getDataAssetRequestsCount.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/getFlows.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDashboard.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/adapters/updateDataAlert.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +2 -1
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequests.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsRequestsCount.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauFlows.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/patchTableauDashboardsByDashboardIdOrApiName.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postSsotSfDriveActionsGeneratePresignedCredential.d.ts +11 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDashboards.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/postTableauDataAlerts.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/putTableauDataAlertsByDataAlertId.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetWarningsRepresentation.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/types/AdditionalInfoDataspacesRepresentation.d.ts +31 -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/DataAlertInputRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAlertRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetDependentCollectionRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRepresentation.d.ts +7 -1
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestAdditionalInfoRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +17 -1
- package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
- package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialRepresentation.d.ts +48 -0
- package/package.json +3 -3
- package/sfdc/index.js +1716 -1055
- package/src/raml/api.raml +217 -0
- package/src/raml/luvio.raml +10 -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;
|
|
@@ -19,6 +21,9 @@ export interface CreateDashboardConfig {
|
|
|
19
21
|
style?: {
|
|
20
22
|
[key: string]: unknown;
|
|
21
23
|
};
|
|
24
|
+
backgroundSource?: {
|
|
25
|
+
[key: string]: unknown;
|
|
26
|
+
};
|
|
22
27
|
}
|
|
23
28
|
export declare const createResourceParams: (config: CreateDashboardConfig) => resources_postTableauDashboards_ResourceRequestConfig;
|
|
24
29
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDashboardConfig>): adapter$45$utils_Untrusted<CreateDashboardConfig>;
|
|
@@ -19,6 +19,7 @@ export interface CreateDataAlertConfig {
|
|
|
19
19
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
20
20
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
21
21
|
utterance: string;
|
|
22
|
+
agent?: string | null;
|
|
22
23
|
}
|
|
23
24
|
export declare const createResourceParams: (config: CreateDataAlertConfig) => resources_postTableauDataAlerts_ResourceRequestConfig;
|
|
24
25
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<CreateDataAlertConfig>): adapter$45$utils_Untrusted<CreateDataAlertConfig>;
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
import { Untrusted as adapter$45$utils_Untrusted, AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig } from './adapter-utils';
|
|
3
|
+
import { ResourceRequestConfig as resources_postSsotSfDriveActionsGeneratePresignedCredential_ResourceRequestConfig } from '../resources/postSsotSfDriveActionsGeneratePresignedCredential';
|
|
4
|
+
import { SFDrivePresignedCredentialRepresentation as types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation } from '../types/SFDrivePresignedCredentialRepresentation';
|
|
5
|
+
export declare const adapterName = "generateSFDrivePresignedCredentials";
|
|
6
|
+
export declare const generateSFDrivePresignedCredentials_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const generateSFDrivePresignedCredentials_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface GenerateSFDrivePresignedCredentialsConfig {
|
|
9
|
+
driveDirectory: string;
|
|
10
|
+
fileName: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const createResourceParams: (config: GenerateSFDrivePresignedCredentialsConfig) => resources_postSsotSfDriveActionsGeneratePresignedCredential_ResourceRequestConfig;
|
|
13
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<GenerateSFDrivePresignedCredentialsConfig>): adapter$45$utils_Untrusted<GenerateSFDrivePresignedCredentialsConfig>;
|
|
14
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): GenerateSFDrivePresignedCredentialsConfig | null;
|
|
15
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: GenerateSFDrivePresignedCredentialsConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation, any>>;
|
|
16
|
+
export declare const generateSFDrivePresignedCredentialsAdapterFactory: $64$luvio_engine_AdapterFactory<GenerateSFDrivePresignedCredentialsConfig, types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation>;
|
|
@@ -8,6 +8,7 @@ export declare const getDataAssetDependencies_ConfigPropertyNames: adapter$45$ut
|
|
|
8
8
|
export interface GetDataAssetDependenciesConfig {
|
|
9
9
|
assetId: string;
|
|
10
10
|
includeSynchronizationInfo?: boolean;
|
|
11
|
+
failOnSchemaMismatch?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export declare const createResourceParams: (config: GetDataAssetDependenciesConfig) => resources_getTableauDataAssetsDependenciesByAssetId_ResourceRequestConfig;
|
|
13
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetDataAssetDependenciesConfig): string;
|
|
@@ -16,6 +16,7 @@ export interface GetDataAssetRequestsConfig {
|
|
|
16
16
|
searchQueryTerm?: string;
|
|
17
17
|
sortBy?: string;
|
|
18
18
|
status?: string;
|
|
19
|
+
taskProgressStatus?: string;
|
|
19
20
|
workspaceIdOrApiName?: string;
|
|
20
21
|
}
|
|
21
22
|
export declare const createResourceParams: (config: GetDataAssetRequestsConfig) => resources_getTableauDataAssetsRequests_ResourceRequestConfig;
|
|
@@ -8,6 +8,7 @@ export declare const getFlows_ConfigPropertyNames: adapter$45$utils_AdapterValid
|
|
|
8
8
|
export interface GetFlowsConfig {
|
|
9
9
|
limit?: number;
|
|
10
10
|
offset?: number;
|
|
11
|
+
searchTerm?: string;
|
|
11
12
|
}
|
|
12
13
|
export declare const createResourceParams: (config: GetFlowsConfig) => resources_getTableauFlows_ResourceRequestConfig;
|
|
13
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetFlowsConfig): string;
|
|
@@ -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;
|
|
@@ -20,6 +22,9 @@ export interface UpdateDashboardConfig {
|
|
|
20
22
|
style?: {
|
|
21
23
|
[key: string]: unknown;
|
|
22
24
|
};
|
|
25
|
+
backgroundSource?: {
|
|
26
|
+
[key: string]: unknown;
|
|
27
|
+
};
|
|
23
28
|
}
|
|
24
29
|
export declare const createResourceParams: (config: UpdateDashboardConfig) => resources_patchTableauDashboardsByDashboardIdOrApiName_ResourceRequestConfig;
|
|
25
30
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDashboardConfig>): adapter$45$utils_Untrusted<UpdateDashboardConfig>;
|
|
@@ -20,6 +20,7 @@ export interface UpdateDataAlertConfig {
|
|
|
20
20
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
21
21
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
22
22
|
utterance: string;
|
|
23
|
+
agent?: string | null;
|
|
23
24
|
}
|
|
24
25
|
export declare const createResourceParams: (config: UpdateDataAlertConfig) => resources_putTableauDataAlertsByDataAlertId_ResourceRequestConfig;
|
|
25
26
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<UpdateDataAlertConfig>): adapter$45$utils_Untrusted<UpdateDataAlertConfig>;
|
|
@@ -55,6 +55,7 @@ export { getSubscriptionDigestConfigAdapterFactory } from '../adapters/getSubscr
|
|
|
55
55
|
export { updateSubscriptionDigestConfigAdapterFactory } from '../adapters/updateSubscriptionDigestConfig';
|
|
56
56
|
export { getUnifiedAnalyticsLibraryAssetsAdapterFactory } from '../adapters/getUnifiedAnalyticsLibraryAssets';
|
|
57
57
|
export { generateSFDriveCredentialsAdapterFactory } from '../adapters/generateSFDriveCredentials';
|
|
58
|
+
export { generateSFDrivePresignedCredentialsAdapterFactory } from '../adapters/generateSFDrivePresignedCredentials';
|
|
58
59
|
export { initiateMarketplaceListingInstallationAdapterFactory } from '../adapters/initiateMarketplaceListingInstallation';
|
|
59
60
|
export { getMarketplaceListingInstallationProgressAdapterFactory } from '../adapters/getMarketplaceListingInstallationProgress';
|
|
60
61
|
export { createTemplateAdapterFactory } from '../adapters/createTemplate';
|
|
@@ -18,6 +18,7 @@ declare let deleteWorkspace: any;
|
|
|
18
18
|
declare let deleteWorkspaceAsset: any;
|
|
19
19
|
declare let follow: any;
|
|
20
20
|
declare let generateSFDriveCredentials: any;
|
|
21
|
+
declare let generateSFDrivePresignedCredentials: any;
|
|
21
22
|
declare let getAnnotations: any;
|
|
22
23
|
declare let getAssetSlackChannels: any;
|
|
23
24
|
declare let getDashboardByName: any;
|
|
@@ -93,5 +94,5 @@ declare let getWorkspaceByIdOrName_imperative: any;
|
|
|
93
94
|
declare let getWorkspaces_imperative: any;
|
|
94
95
|
declare let initiateMarketplaceListingInstallation_imperative: any;
|
|
95
96
|
declare let notifySharesUpdateAvailable: any;
|
|
96
|
-
export { createAnnotation, createAssetSlackChannel, createDashboard, createDataAlert, createDataAssetRequest, createLoglines, createRecordShares, createTemplate, createVisualization, createWorkspace, createWorkspaceAsset, deleteAllShares, deleteDashboard, deleteDataAlert, deleteRecordShare, deleteVisualization, deleteWorkspace, deleteWorkspaceAsset, follow, generateSFDriveCredentials, 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, };
|
|
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, };
|
|
97
98
|
export { notifySharesUpdateAvailable };
|
package/dist/es/es2018/types/src/generated/resources/getTableauDataAssetsDependenciesByAssetId.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export interface ResourceRequestConfig {
|
|
|
6
6
|
};
|
|
7
7
|
queryParams: {
|
|
8
8
|
includeSynchronizationInfo?: boolean;
|
|
9
|
+
failOnSchemaMismatch?: boolean;
|
|
9
10
|
};
|
|
10
11
|
}
|
|
11
12
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -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;
|
|
@@ -20,6 +22,9 @@ export interface ResourceRequestConfig {
|
|
|
20
22
|
style?: {
|
|
21
23
|
[key: string]: unknown;
|
|
22
24
|
};
|
|
25
|
+
backgroundSource?: {
|
|
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,11 @@
|
|
|
1
|
+
import { CdpAssetBaseInputRepresentation as types_CdpAssetBaseInputRepresentation_CdpAssetBaseInputRepresentation } from '../types/CdpAssetBaseInputRepresentation';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, Fragment as $64$luvio_engine_Fragment, FetchResponse as $64$luvio_engine_FetchResponse, FulfilledSnapshot as $64$luvio_engine_FulfilledSnapshot, StaleSnapshot as $64$luvio_engine_StaleSnapshot, PendingSnapshot as $64$luvio_engine_PendingSnapshot, ResourceRequest as $64$luvio_engine_ResourceRequest } from '@luvio/engine';
|
|
3
|
+
import { SFDrivePresignedCredentialRepresentation as types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation } from '../types/SFDrivePresignedCredentialRepresentation';
|
|
4
|
+
export interface ResourceRequestConfig {
|
|
5
|
+
body: types_CdpAssetBaseInputRepresentation_CdpAssetBaseInputRepresentation;
|
|
6
|
+
}
|
|
7
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
8
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation): void;
|
|
9
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_SFDrivePresignedCredentialRepresentation_SFDrivePresignedCredentialRepresentation, any>;
|
|
10
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
11
|
+
export default createResourceRequest;
|
|
@@ -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;
|
|
@@ -17,6 +19,9 @@ export interface ResourceRequestConfig {
|
|
|
17
19
|
style?: {
|
|
18
20
|
[key: string]: unknown;
|
|
19
21
|
};
|
|
22
|
+
backgroundSource?: {
|
|
23
|
+
[key: string]: unknown;
|
|
24
|
+
};
|
|
20
25
|
};
|
|
21
26
|
}
|
|
22
27
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -17,6 +17,7 @@ export interface ResourceRequestConfig {
|
|
|
17
17
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
18
18
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
19
19
|
utterance: string;
|
|
20
|
+
agent?: string | null;
|
|
20
21
|
};
|
|
21
22
|
}
|
|
22
23
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -20,6 +20,7 @@ export interface ResourceRequestConfig {
|
|
|
20
20
|
schedule: types_DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation | types_DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation | types_DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation;
|
|
21
21
|
thresholds: types_DataAlertThresholdsInputRepresentation_DataAlertThresholdsInputRepresentation;
|
|
22
22
|
utterance: string;
|
|
23
|
+
agent?: string | null;
|
|
23
24
|
};
|
|
24
25
|
}
|
|
25
26
|
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { AdditionalInfoAssetWarningsRepresentation as AdditionalInfoAssetWarningsRepresentation_AdditionalInfoAssetWarningsRepresentation } from './AdditionalInfoAssetWarningsRepresentation';
|
|
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 = "65796d3c33715750c49e7bc96b395683";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: AdditionalInfoAssetRepresentation, existing: AdditionalInfoAssetRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AdditionalInfoAssetRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: AdditionalInfoAssetRepresentationNormalized, incoming: AdditionalInfoAssetRepresentationNormalized): 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: AdditionalInfoAssetRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Additional Info Asset Representation
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface AdditionalInfoAssetRepresentationNormalized {
|
|
18
|
+
isPrimary: boolean;
|
|
19
|
+
/** Label of the asset */
|
|
20
|
+
label: string;
|
|
21
|
+
/** Source developer name of the asset */
|
|
22
|
+
srcName?: string;
|
|
23
|
+
/** Target developer name of the asset */
|
|
24
|
+
tgtName?: string;
|
|
25
|
+
/** Type of the asset */
|
|
26
|
+
type: string;
|
|
27
|
+
/** Warnings */
|
|
28
|
+
warnings?: AdditionalInfoAssetWarningsRepresentation_AdditionalInfoAssetWarningsRepresentation | null;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Additional Info Asset Representation
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface AdditionalInfoAssetRepresentation {
|
|
37
|
+
isPrimary: boolean;
|
|
38
|
+
label: string;
|
|
39
|
+
srcName?: string;
|
|
40
|
+
tgtName?: string;
|
|
41
|
+
type: string;
|
|
42
|
+
warnings?: AdditionalInfoAssetWarningsRepresentation_AdditionalInfoAssetWarningsRepresentation | null;
|
|
43
|
+
}
|
package/dist/es/es2018/types/src/generated/types/AdditionalInfoAssetWarningsRepresentation.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 = "974ee3cc5b2787525d227f60161fcbe0";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AdditionalInfoAssetWarningsRepresentation, existing: AdditionalInfoAssetWarningsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AdditionalInfoAssetWarningsRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AdditionalInfoAssetWarningsRepresentationNormalized, incoming: AdditionalInfoAssetWarningsRepresentationNormalized): 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: AdditionalInfoAssetWarningsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Additional Info Asset Warnings Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AdditionalInfoAssetWarningsRepresentationNormalized {
|
|
17
|
+
/** List of Unmapped Fields */
|
|
18
|
+
unmappedFields?: Array<string>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Additional Info Asset Warnings Representation
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* (none)
|
|
25
|
+
*/
|
|
26
|
+
export interface AdditionalInfoAssetWarningsRepresentation {
|
|
27
|
+
unmappedFields?: Array<string>;
|
|
28
|
+
}
|
|
@@ -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 = "71c0011fc62fe64eacdb0244b5c758c6";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: AdditionalInfoDataspacesRepresentation, existing: AdditionalInfoDataspacesRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AdditionalInfoDataspacesRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: AdditionalInfoDataspacesRepresentationNormalized, incoming: AdditionalInfoDataspacesRepresentationNormalized): 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: AdditionalInfoDataspacesRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Additional Info Dataspaces Representation
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface AdditionalInfoDataspacesRepresentationNormalized {
|
|
17
|
+
/** List of dataspaces created */
|
|
18
|
+
created?: Array<string>;
|
|
19
|
+
/** List of dataspaces to be created */
|
|
20
|
+
toBeCreated?: Array<string>;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Additional Info Dataspaces Representation
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface AdditionalInfoDataspacesRepresentation {
|
|
29
|
+
created?: Array<string>;
|
|
30
|
+
toBeCreated?: Array<string>;
|
|
31
|
+
}
|
|
@@ -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 = "9ab970c1941084d340422fe41e943042";
|
|
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;
|
|
@@ -14,12 +14,20 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
14
|
* (none)
|
|
15
15
|
*/
|
|
16
16
|
export interface DashboardInputRepresentationNormalized {
|
|
17
|
+
/** Dashboard level background image source. */
|
|
18
|
+
backgroundSource?: {
|
|
19
|
+
[key: string]: unknown;
|
|
20
|
+
};
|
|
17
21
|
/** Description. */
|
|
18
22
|
description?: string;
|
|
19
23
|
/** Database id. */
|
|
20
24
|
id?: string;
|
|
21
25
|
/** Master label. */
|
|
22
26
|
label: string;
|
|
27
|
+
/** Last modified by of the asset. */
|
|
28
|
+
lastModifiedBy?: unknown;
|
|
29
|
+
/** Last modified date of the asset. */
|
|
30
|
+
lastModifiedDate?: string;
|
|
23
31
|
/** List of layouts in the dashboard. */
|
|
24
32
|
layouts: Array<unknown>;
|
|
25
33
|
/** Unique developer name. */
|
|
@@ -42,9 +50,14 @@ export interface DashboardInputRepresentationNormalized {
|
|
|
42
50
|
* (none)
|
|
43
51
|
*/
|
|
44
52
|
export interface DashboardInputRepresentation {
|
|
53
|
+
backgroundSource?: {
|
|
54
|
+
[key: string]: unknown;
|
|
55
|
+
};
|
|
45
56
|
description?: string;
|
|
46
57
|
id?: string;
|
|
47
58
|
label: string;
|
|
59
|
+
lastModifiedBy?: unknown;
|
|
60
|
+
lastModifiedDate?: string;
|
|
48
61
|
layouts: Array<unknown>;
|
|
49
62
|
name?: string;
|
|
50
63
|
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 = "48241522a2d9c05d07397ef0fdfbce4e";
|
|
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 {
|
|
@@ -23,6 +23,10 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
23
23
|
* name (string): name
|
|
24
24
|
*/
|
|
25
25
|
export interface DashboardRepresentationNormalized {
|
|
26
|
+
/** Dashboard level background image source. */
|
|
27
|
+
backgroundSource?: {
|
|
28
|
+
[key: string]: unknown;
|
|
29
|
+
};
|
|
26
30
|
/** Created by of the asset. */
|
|
27
31
|
createdBy: unknown;
|
|
28
32
|
/** Created date of the asset */
|
|
@@ -61,6 +65,9 @@ export interface DashboardRepresentationNormalized {
|
|
|
61
65
|
* name (string): name
|
|
62
66
|
*/
|
|
63
67
|
export interface DashboardRepresentation {
|
|
68
|
+
backgroundSource?: {
|
|
69
|
+
[key: string]: unknown;
|
|
70
|
+
};
|
|
64
71
|
createdBy: unknown;
|
|
65
72
|
createdDate: string;
|
|
66
73
|
description?: string;
|
|
@@ -7,7 +7,7 @@ import { DataAlertMetricContentInputRepresentation as DataAlertMetricContentInpu
|
|
|
7
7
|
import { DataAlertDailyScheduleInputRepresentation as DataAlertDailyScheduleInputRepresentation_DataAlertDailyScheduleInputRepresentation } from './DataAlertDailyScheduleInputRepresentation';
|
|
8
8
|
import { DataAlertWeeklyScheduleInputRepresentation as DataAlertWeeklyScheduleInputRepresentation_DataAlertWeeklyScheduleInputRepresentation } from './DataAlertWeeklyScheduleInputRepresentation';
|
|
9
9
|
import { DataAlertEveryNMinutesScheduleInputRepresentation as DataAlertEveryNMinutesScheduleInputRepresentation_DataAlertEveryNMinutesScheduleInputRepresentation } from './DataAlertEveryNMinutesScheduleInputRepresentation';
|
|
10
|
-
export declare const VERSION = "
|
|
10
|
+
export declare const VERSION = "5bbf01be227a6e0c9aa6f938027ceab1";
|
|
11
11
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
12
12
|
export declare const RepresentationType: string;
|
|
13
13
|
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;
|
|
@@ -22,6 +22,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
22
22
|
* (none)
|
|
23
23
|
*/
|
|
24
24
|
export interface DataAlertInputRepresentationNormalized {
|
|
25
|
+
/** ID of the associated BotDefinition agent. */
|
|
26
|
+
agent?: string | null;
|
|
25
27
|
content: DataAlertContentInputRepresentation_DataAlertContentInputRepresentation;
|
|
26
28
|
/** Type of data alert */
|
|
27
29
|
dataAlertType: string;
|
|
@@ -38,6 +40,7 @@ export interface DataAlertInputRepresentationNormalized {
|
|
|
38
40
|
* (none)
|
|
39
41
|
*/
|
|
40
42
|
export interface DataAlertInputRepresentation {
|
|
43
|
+
agent?: string | null;
|
|
41
44
|
content: DataAlertMetricContentInputRepresentation_DataAlertMetricContentInputRepresentation;
|
|
42
45
|
dataAlertType: string;
|
|
43
46
|
deliveryConfigurations: DataAlertDeliveryConfigurationInputRepresentation_DataAlertDeliveryConfigurationInputRepresentation;
|
|
@@ -4,7 +4,7 @@ import { DataAlertScheduleRepresentation as DataAlertScheduleRepresentation_Data
|
|
|
4
4
|
import { DataAlertThresholdsRepresentation as DataAlertThresholdsRepresentation_DataAlertThresholdsRepresentation } from './DataAlertThresholdsRepresentation';
|
|
5
5
|
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
6
|
export declare const TTL = 500;
|
|
7
|
-
export declare const VERSION = "
|
|
7
|
+
export declare const VERSION = "cc2fad25cb7d5a43adddf76b7e121810";
|
|
8
8
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
9
9
|
export declare const RepresentationType: string;
|
|
10
10
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -28,6 +28,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
28
28
|
* dataAlertId (string): id
|
|
29
29
|
*/
|
|
30
30
|
export interface DataAlertRepresentationNormalized {
|
|
31
|
+
/** ID of the associated BotDefinition agent. */
|
|
32
|
+
agent?: string | null;
|
|
31
33
|
/** User entered alert name. */
|
|
32
34
|
alertName: string;
|
|
33
35
|
/** Notification content configuration. Contains the config needed to generate the notification content. */
|
|
@@ -52,6 +54,7 @@ export interface DataAlertRepresentationNormalized {
|
|
|
52
54
|
* dataAlertId (string): id
|
|
53
55
|
*/
|
|
54
56
|
export interface DataAlertRepresentation {
|
|
57
|
+
agent?: string | null;
|
|
55
58
|
alertName: string;
|
|
56
59
|
content: DataAlertContentRepresentation_DataAlertContentRepresentation;
|
|
57
60
|
createdDate: string;
|
package/dist/es/es2018/types/src/generated/types/DataAssetDependentCollectionRepresentation.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DataAssetDependentRepresentation as DataAssetDependentRepresentation_DataAssetDependentRepresentation } from './DataAssetDependentRepresentation';
|
|
2
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
3
|
export declare const TTL = 500;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "a7e542d6800dd912fc3893a5acf78e91";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export declare function normalize(input: DataAssetDependentCollectionRepresentation, existing: DataAssetDependentCollectionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetDependentCollectionRepresentationNormalized;
|
|
@@ -18,6 +18,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
18
18
|
export interface DataAssetDependentCollectionRepresentationNormalized {
|
|
19
19
|
/** Array of Dependent Assets */
|
|
20
20
|
dependentDataAssets: Array<$64$luvio_engine_StoreLink>;
|
|
21
|
+
/** Type of the org from which the request originates */
|
|
22
|
+
sourceOrgType?: string;
|
|
21
23
|
}
|
|
22
24
|
/**
|
|
23
25
|
* Represents a List of dependent assets for a given asset
|
|
@@ -27,4 +29,5 @@ export interface DataAssetDependentCollectionRepresentationNormalized {
|
|
|
27
29
|
*/
|
|
28
30
|
export interface DataAssetDependentCollectionRepresentation {
|
|
29
31
|
dependentDataAssets: Array<DataAssetDependentRepresentation_DataAssetDependentRepresentation>;
|
|
32
|
+
sourceOrgType?: string;
|
|
30
33
|
}
|
|
@@ -2,7 +2,7 @@ import { AnalyticsUserRepresentation as AnalyticsUserRepresentation_AnalyticsUse
|
|
|
2
2
|
import { DataSpaceInfoRepresentation as DataSpaceInfoRepresentation_DataSpaceInfoRepresentation } from './DataSpaceInfoRepresentation';
|
|
3
3
|
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
4
|
export declare const TTL = 500;
|
|
5
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "6abaabb80cff5ac2b0f50879ce3d5b75";
|
|
6
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
7
7
|
export declare const RepresentationType: string;
|
|
8
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -30,6 +30,8 @@ export interface DataAssetRepresentationNormalized {
|
|
|
30
30
|
assetId: string;
|
|
31
31
|
/** Type of the DataAsset */
|
|
32
32
|
assetType: string;
|
|
33
|
+
/** Schema fingerprint of the asset type of the DataAsset */
|
|
34
|
+
assetTypeFingerprint?: string;
|
|
33
35
|
/** Created by of the DataAsset. */
|
|
34
36
|
createdBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
|
|
35
37
|
/** Created date of the DataAsset */
|
|
@@ -42,6 +44,8 @@ export interface DataAssetRepresentationNormalized {
|
|
|
42
44
|
description?: string;
|
|
43
45
|
/** DataAsset id. */
|
|
44
46
|
id?: string;
|
|
47
|
+
/** Whether the DataAsset is the primary asset in a list of data asset dependencies */
|
|
48
|
+
isPrimaryAsset?: boolean;
|
|
45
49
|
/** Label of the DataAsset. */
|
|
46
50
|
label: string;
|
|
47
51
|
/** Last modified by of the DataAsset. */
|
|
@@ -64,12 +68,14 @@ export interface DataAssetRepresentationNormalized {
|
|
|
64
68
|
export interface DataAssetRepresentation {
|
|
65
69
|
assetId: string;
|
|
66
70
|
assetType: string;
|
|
71
|
+
assetTypeFingerprint?: string;
|
|
67
72
|
createdBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
|
|
68
73
|
createdDate?: string;
|
|
69
74
|
createdWorkspace?: string;
|
|
70
75
|
dataSpaceInfo?: Array<DataSpaceInfoRepresentation_DataSpaceInfoRepresentation>;
|
|
71
76
|
description?: string;
|
|
72
77
|
id?: string;
|
|
78
|
+
isPrimaryAsset?: boolean;
|
|
73
79
|
label: string;
|
|
74
80
|
lastModifiedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation;
|
|
75
81
|
lastModifiedDate: string;
|
package/dist/es/es2018/types/src/generated/types/DataAssetRequestAdditionalInfoRepresentation.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { AdditionalInfoDataspacesRepresentation as AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation } from './AdditionalInfoDataspacesRepresentation';
|
|
2
|
+
import { AdditionalInfoAssetRepresentation as AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation } from './AdditionalInfoAssetRepresentation';
|
|
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 = "9cc8058b699974e79651296431aff1db";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: DataAssetRequestAdditionalInfoRepresentation, existing: DataAssetRequestAdditionalInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataAssetRequestAdditionalInfoRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: DataAssetRequestAdditionalInfoRepresentationNormalized, incoming: DataAssetRequestAdditionalInfoRepresentationNormalized): 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: DataAssetRequestAdditionalInfoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* DataAssetRequest Additional Info Representation
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface DataAssetRequestAdditionalInfoRepresentationNormalized {
|
|
19
|
+
dataspaces?: AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation;
|
|
20
|
+
/** List of Assets Deployed */
|
|
21
|
+
deployedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
22
|
+
/** List of Failed Assets */
|
|
23
|
+
failedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
24
|
+
/** List of Assets In Progress */
|
|
25
|
+
inProgressAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
26
|
+
/** List of Assets Not Started */
|
|
27
|
+
notStartedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* DataAssetRequest Additional Info Representation
|
|
31
|
+
*
|
|
32
|
+
* Keys:
|
|
33
|
+
* (none)
|
|
34
|
+
*/
|
|
35
|
+
export interface DataAssetRequestAdditionalInfoRepresentation {
|
|
36
|
+
dataspaces?: AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation;
|
|
37
|
+
deployedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
38
|
+
failedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
39
|
+
inProgressAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
40
|
+
notStartedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
41
|
+
}
|