@salesforce/lds-adapters-analytics-unifiedanalytics 1.404.0-dev1 → 1.404.0-dev4
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 +425 -117
- 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/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/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/package.json +3 -3
- package/sfdc/index.js +410 -102
- package/src/raml/api.raml +117 -0
|
@@ -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;
|
|
@@ -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/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-dev4",
|
|
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-dev4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.404.0-
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.404.0-dev4"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|