@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev2 → 1.404.0-dev5
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 +2875 -2393
- package/dist/es/es2018/types/src/generated/adapters/generateSFDrivePresignedCredentials.d.ts +16 -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/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/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/postSsotSfDriveActionsGeneratePresignedCredential.d.ts +11 -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/DataAssetRequestAdditionalInfoRepresentation.d.ts +41 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +11 -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 +1554 -1069
- package/src/raml/api.raml +157 -0
- package/src/raml/luvio.raml +10 -0
|
@@ -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>;
|
|
@@ -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;
|
|
@@ -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 };
|
|
@@ -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;
|
|
@@ -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
|
+
}
|
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
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { AnalyticsUserRepresentation as AnalyticsUserRepresentation_AnalyticsUserRepresentation } from './AnalyticsUserRepresentation';
|
|
2
|
+
import { DataAssetRequestAdditionalInfoRepresentation as DataAssetRequestAdditionalInfoRepresentation_DataAssetRequestAdditionalInfoRepresentation } from './DataAssetRequestAdditionalInfoRepresentation';
|
|
2
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';
|
|
3
4
|
export declare const TTL = 500;
|
|
4
|
-
export declare const VERSION = "
|
|
5
|
+
export declare const VERSION = "33098ff1e82d01bbb10d8595b4c0d4cb";
|
|
5
6
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
7
|
export declare const RepresentationType: string;
|
|
7
8
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -29,6 +30,8 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
29
30
|
acknowledgedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
30
31
|
/** Acknowledged date */
|
|
31
32
|
acknowledgedDate: string | null;
|
|
33
|
+
/** Additional Info */
|
|
34
|
+
additionalInfo?: DataAssetRequestAdditionalInfoRepresentation_DataAssetRequestAdditionalInfoRepresentation | null;
|
|
32
35
|
/** assetId associated with the request */
|
|
33
36
|
assetId: string;
|
|
34
37
|
/** Asset Label */
|
|
@@ -41,6 +44,8 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
41
44
|
completedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
42
45
|
/** Completed date */
|
|
43
46
|
completedDate: string | null;
|
|
47
|
+
/** Error Code */
|
|
48
|
+
errorCode?: string | null;
|
|
44
49
|
/** Failed date */
|
|
45
50
|
failedDate: string | null;
|
|
46
51
|
/** Data Asset Request Id */
|
|
@@ -87,6 +92,8 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
87
92
|
status: string;
|
|
88
93
|
/** Data Asset Request Target Id */
|
|
89
94
|
targetRequestId: string | null;
|
|
95
|
+
/** Overall progress status of a task */
|
|
96
|
+
taskProgressStatus?: string | null;
|
|
90
97
|
/** workspaceAssetId in the workspace */
|
|
91
98
|
workspaceAssetId: string;
|
|
92
99
|
}
|
|
@@ -99,12 +106,14 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
99
106
|
export interface DataAssetRequestRepresentation {
|
|
100
107
|
acknowledgedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
101
108
|
acknowledgedDate: string | null;
|
|
109
|
+
additionalInfo?: DataAssetRequestAdditionalInfoRepresentation_DataAssetRequestAdditionalInfoRepresentation | null;
|
|
102
110
|
assetId: string;
|
|
103
111
|
assetLabel: string | null;
|
|
104
112
|
cancelledBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
105
113
|
cancelledDate: string | null;
|
|
106
114
|
completedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
107
115
|
completedDate: string | null;
|
|
116
|
+
errorCode?: string | null;
|
|
108
117
|
failedDate: string | null;
|
|
109
118
|
id: string;
|
|
110
119
|
installedDate: string | null;
|
|
@@ -128,5 +137,6 @@ export interface DataAssetRequestRepresentation {
|
|
|
128
137
|
sourceRequestId: string | null;
|
|
129
138
|
status: string;
|
|
130
139
|
targetRequestId: string | null;
|
|
140
|
+
taskProgressStatus?: string | null;
|
|
131
141
|
workspaceAssetId: string;
|
|
132
142
|
}
|
|
@@ -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 = "3b7f7084ddad1307b62f28a6e2eefcac";
|
|
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: DataSpaceInfoRepresentation, existing: DataSpaceInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): DataSpaceInfoRepresentationNormalized;
|
|
@@ -19,7 +19,7 @@ export interface DataSpaceInfoRepresentationNormalized {
|
|
|
19
19
|
/** DataSpace label. */
|
|
20
20
|
dataSpaceLabel: string;
|
|
21
21
|
/** DataSpace prefix. */
|
|
22
|
-
dataSpacePrefix
|
|
22
|
+
dataSpacePrefix?: string;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* DataSpace Info Representation
|
|
@@ -30,5 +30,5 @@ export interface DataSpaceInfoRepresentationNormalized {
|
|
|
30
30
|
export interface DataSpaceInfoRepresentation {
|
|
31
31
|
dataSpaceDeveloperName: string;
|
|
32
32
|
dataSpaceLabel: string;
|
|
33
|
-
dataSpacePrefix
|
|
33
|
+
dataSpacePrefix?: string;
|
|
34
34
|
}
|
package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialInputRepresentation.d.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CdpAssetBaseInputRepresentation as CdpAssetBaseInputRepresentation_CdpAssetBaseInputRepresentation } from './CdpAssetBaseInputRepresentation';
|
|
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 = "ba036f95ede65fe2957f8dc8c358ce95";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export declare function normalize(input: SFDrivePresignedCredentialInputRepresentation, existing: SFDrivePresignedCredentialInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SFDrivePresignedCredentialInputRepresentationNormalized;
|
|
7
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
8
|
+
export declare function equals(existing: SFDrivePresignedCredentialInputRepresentationNormalized, incoming: SFDrivePresignedCredentialInputRepresentationNormalized): 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: SFDrivePresignedCredentialInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
11
|
+
/**
|
|
12
|
+
* Input representation for sf drive Presigned credentials
|
|
13
|
+
*
|
|
14
|
+
* Keys:
|
|
15
|
+
* (none)
|
|
16
|
+
*/
|
|
17
|
+
export interface SFDrivePresignedCredentialInputRepresentationNormalized extends CdpAssetBaseInputRepresentation_CdpAssetBaseInputRepresentation {
|
|
18
|
+
/** The driveDirectory in sfdrive for which presigned url required */
|
|
19
|
+
driveDirectory: string;
|
|
20
|
+
/** The fileName in sfdrive for which presigned url required */
|
|
21
|
+
fileName: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Input representation for sf drive Presigned credentials
|
|
25
|
+
*
|
|
26
|
+
* Keys:
|
|
27
|
+
* (none)
|
|
28
|
+
*/
|
|
29
|
+
export interface SFDrivePresignedCredentialInputRepresentation extends CdpAssetBaseInputRepresentation_CdpAssetBaseInputRepresentation {
|
|
30
|
+
driveDirectory: string;
|
|
31
|
+
fileName: string;
|
|
32
|
+
}
|
package/dist/es/es2018/types/src/generated/types/SFDrivePresignedCredentialRepresentation.d.ts
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
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 TTL = 1000;
|
|
3
|
+
export declare const VERSION = "804d1ddce3929339c425c61f43ff2f18";
|
|
4
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
|
+
export declare const RepresentationType: string;
|
|
6
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
7
|
+
presignedUrl: string;
|
|
8
|
+
}
|
|
9
|
+
export type SFDrivePresignedCredentialRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
10
|
+
export type PartialSFDrivePresignedCredentialRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
12
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): SFDrivePresignedCredentialRepresentationNormalizedKeyMetadata;
|
|
13
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: SFDrivePresignedCredentialRepresentation): string;
|
|
14
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: SFDrivePresignedCredentialRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function normalize(input: SFDrivePresignedCredentialRepresentation, existing: SFDrivePresignedCredentialRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): SFDrivePresignedCredentialRepresentationNormalized;
|
|
16
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
17
|
+
export declare function equals(existing: SFDrivePresignedCredentialRepresentationNormalized, incoming: SFDrivePresignedCredentialRepresentationNormalized): boolean;
|
|
18
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
19
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: SFDrivePresignedCredentialRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
20
|
+
/**
|
|
21
|
+
* Response representation for SFDrive Presigned Credentials Request
|
|
22
|
+
*
|
|
23
|
+
* Keys:
|
|
24
|
+
* presignedUrl (string): presignedUrl
|
|
25
|
+
*/
|
|
26
|
+
export interface SFDrivePresignedCredentialRepresentationNormalized {
|
|
27
|
+
/** presignedUrl expiry timestamp */
|
|
28
|
+
expiryTime: string;
|
|
29
|
+
/** kms key details for byok enabled org */
|
|
30
|
+
headers: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
/** presignedUrl of given directory and filename */
|
|
34
|
+
presignedUrl: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Response representation for SFDrive Presigned Credentials Request
|
|
38
|
+
*
|
|
39
|
+
* Keys:
|
|
40
|
+
* presignedUrl (string): presignedUrl
|
|
41
|
+
*/
|
|
42
|
+
export interface SFDrivePresignedCredentialRepresentation {
|
|
43
|
+
expiryTime: string;
|
|
44
|
+
headers: {
|
|
45
|
+
[key: string]: string;
|
|
46
|
+
};
|
|
47
|
+
presignedUrl: string;
|
|
48
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.404.0-
|
|
3
|
+
"version": "1.404.0-dev5",
|
|
4
4
|
"description": "Tableau Unified Analytics Platform",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/analytics-unifiedanalytics.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.404.0-
|
|
43
|
+
"@salesforce/lds-bindings": "^1.404.0-dev5"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.404.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.404.0-dev5"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|