@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0 → 1.409.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/es2018/analytics-unifiedanalytics.js +376 -115
- package/dist/es/es2018/types/src/generated/adapters/getFlows.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/getTableauFlows.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/DataAssetRequestAdditionalInfoRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/DataAssetRequestRepresentation.d.ts +8 -1
- package/dist/es/es2018/types/src/generated/types/DataSpaceInfoRepresentation.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +361 -100
- package/src/raml/api.raml +96 -0
|
@@ -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;
|
|
@@ -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,38 @@
|
|
|
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 = "48e00d315979318ad84d451a1c72524a";
|
|
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 Assets In Progress */
|
|
23
|
+
inProgressAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
24
|
+
/** List of Assets Not Started */
|
|
25
|
+
notStartedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* DataAssetRequest Additional Info Representation
|
|
29
|
+
*
|
|
30
|
+
* Keys:
|
|
31
|
+
* (none)
|
|
32
|
+
*/
|
|
33
|
+
export interface DataAssetRequestAdditionalInfoRepresentation {
|
|
34
|
+
dataspaces?: AdditionalInfoDataspacesRepresentation_AdditionalInfoDataspacesRepresentation;
|
|
35
|
+
deployedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
36
|
+
inProgressAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
37
|
+
notStartedAssets?: Array<AdditionalInfoAssetRepresentation_AdditionalInfoAssetRepresentation>;
|
|
38
|
+
}
|
|
@@ -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 = "673784c0bc035b7a7c4a839263c0a84e";
|
|
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 */
|
|
@@ -99,12 +104,14 @@ export interface DataAssetRequestRepresentationNormalized {
|
|
|
99
104
|
export interface DataAssetRequestRepresentation {
|
|
100
105
|
acknowledgedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
101
106
|
acknowledgedDate: string | null;
|
|
107
|
+
additionalInfo?: DataAssetRequestAdditionalInfoRepresentation_DataAssetRequestAdditionalInfoRepresentation | null;
|
|
102
108
|
assetId: string;
|
|
103
109
|
assetLabel: string | null;
|
|
104
110
|
cancelledBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
105
111
|
cancelledDate: string | null;
|
|
106
112
|
completedBy: AnalyticsUserRepresentation_AnalyticsUserRepresentation | null;
|
|
107
113
|
completedDate: string | null;
|
|
114
|
+
errorCode?: string | null;
|
|
108
115
|
failedDate: string | null;
|
|
109
116
|
id: string;
|
|
110
117
|
installedDate: string | null;
|
|
@@ -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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-unifiedanalytics",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.409.0",
|
|
4
4
|
"description": "Tableau Unified Analytics Platform",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/analytics-unifiedanalytics.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.409.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.409.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|