@salesforce/lds-adapters-analytics-app-framework 1.329.1 → 1.331.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-app-framework.js +2756 -1431
- package/dist/es/es2018/types/src/generated/adapters/readinessCheck.d.ts +19 -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/postAppFrameworkTemplatesReadinessByTemplateIdOrApiName.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/types/ChainDefinitionRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/NamespacedReferenceRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/ReleaseInfoRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/RuleInfoRepresentation.d.ts +31 -0
- package/dist/es/es2018/types/src/generated/types/StaticResourceReferenceRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/TemplateIconsRepresentation.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/types/TemplatePreviewRepresentation.d.ts +43 -0
- package/dist/es/es2018/types/src/generated/types/TemplateReadinessInputRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/TemplateReadinessItemRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/TemplateReadinessRepresentation.d.ts +58 -0
- package/dist/es/es2018/types/src/generated/types/TemplateRepresentation.d.ts +38 -1
- package/package.json +3 -3
- package/sfdc/index.js +2835 -1507
- package/src/raml/api.raml +241 -0
- package/src/raml/luvio.raml +11 -1
|
@@ -0,0 +1,19 @@
|
|
|
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_postAppFrameworkTemplatesReadinessByTemplateIdOrApiName_ResourceRequestConfig } from '../resources/postAppFrameworkTemplatesReadinessByTemplateIdOrApiName';
|
|
4
|
+
import { TemplateReadinessRepresentation as types_TemplateReadinessRepresentation_TemplateReadinessRepresentation } from '../types/TemplateReadinessRepresentation';
|
|
5
|
+
export declare const adapterName = "readinessCheck";
|
|
6
|
+
export declare const readinessCheck_ConfigPropertyMetadata: $64$luvio_engine_AdapterConfigMetadata[];
|
|
7
|
+
export declare const readinessCheck_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
8
|
+
export interface ReadinessCheckConfig {
|
|
9
|
+
templateIdOrApiName: string;
|
|
10
|
+
logLevel?: string;
|
|
11
|
+
templateValues?: {
|
|
12
|
+
[key: string]: unknown;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare const createResourceParams: (config: ReadinessCheckConfig) => resources_postAppFrameworkTemplatesReadinessByTemplateIdOrApiName_ResourceRequestConfig;
|
|
16
|
+
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<ReadinessCheckConfig>): adapter$45$utils_Untrusted<ReadinessCheckConfig>;
|
|
17
|
+
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): ReadinessCheckConfig | null;
|
|
18
|
+
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: ReadinessCheckConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation, any>>;
|
|
19
|
+
export declare const readinessCheckAdapterFactory: $64$luvio_engine_AdapterFactory<ReadinessCheckConfig, types_TemplateReadinessRepresentation_TemplateReadinessRepresentation>;
|
|
@@ -12,5 +12,6 @@ export { getTemplateAdapterFactory } from '../adapters/getTemplate';
|
|
|
12
12
|
export { updateTemplateAdapterFactory } from '../adapters/updateTemplate';
|
|
13
13
|
export { deleteTemplateAdapterFactory } from '../adapters/deleteTemplate';
|
|
14
14
|
export { getTemplateConfigAdapterFactory } from '../adapters/getTemplateConfig';
|
|
15
|
+
export { readinessCheckAdapterFactory } from '../adapters/readinessCheck';
|
|
15
16
|
export { getTagsAdapterFactory } from '../adapters/getTags';
|
|
16
17
|
export { setTagsAdapterFactory } from '../adapters/setTags';
|
|
@@ -19,6 +19,7 @@ declare let getTemplateConfig: any;
|
|
|
19
19
|
declare let getTemplateConfigNotifyChange: any;
|
|
20
20
|
declare let getTemplateNotifyChange: any;
|
|
21
21
|
declare let getTemplates: any;
|
|
22
|
+
declare let readinessCheck: any;
|
|
22
23
|
declare let setTags: any;
|
|
23
24
|
declare let updateTemplate: any;
|
|
24
25
|
declare let getApp_imperative: any;
|
|
@@ -31,4 +32,4 @@ declare let getTags_imperative: any;
|
|
|
31
32
|
declare let getTemplate_imperative: any;
|
|
32
33
|
declare let getTemplateConfig_imperative: any;
|
|
33
34
|
declare let getTemplates_imperative: any;
|
|
34
|
-
export { createApp, createTemplate, deleteApp, deleteTemplate, getApp, getAppActivities, getAppActivitiesNotifyChange, getAppActivity, getAppActivityNotifyChange, getAppAssets, getAppAssetsNotifyChange, getAppNotifyChange, getApps, getInstalledAssets, getTags, getTagsNotifyChange, getTemplate, getTemplateConfig, getTemplateConfigNotifyChange, getTemplateNotifyChange, getTemplates, setTags, updateTemplate, getApp_imperative, getAppActivities_imperative, getAppActivity_imperative, getAppAssets_imperative, getApps_imperative, getInstalledAssets_imperative, getTags_imperative, getTemplate_imperative, getTemplateConfig_imperative, getTemplates_imperative, };
|
|
35
|
+
export { createApp, createTemplate, deleteApp, deleteTemplate, getApp, getAppActivities, getAppActivitiesNotifyChange, getAppActivity, getAppActivityNotifyChange, getAppAssets, getAppAssetsNotifyChange, getAppNotifyChange, getApps, getInstalledAssets, getTags, getTagsNotifyChange, getTemplate, getTemplateConfig, getTemplateConfigNotifyChange, getTemplateNotifyChange, getTemplates, readinessCheck, setTags, updateTemplate, getApp_imperative, getAppActivities_imperative, getAppActivity_imperative, getAppAssets_imperative, getApps_imperative, getInstalledAssets_imperative, getTags_imperative, getTemplate_imperative, getTemplateConfig_imperative, getTemplates_imperative, };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
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';
|
|
2
|
+
import { TemplateReadinessRepresentation as types_TemplateReadinessRepresentation_TemplateReadinessRepresentation } from '../types/TemplateReadinessRepresentation';
|
|
3
|
+
export interface ResourceRequestConfig {
|
|
4
|
+
urlParams: {
|
|
5
|
+
templateIdOrApiName: string;
|
|
6
|
+
};
|
|
7
|
+
body: {
|
|
8
|
+
logLevel?: string;
|
|
9
|
+
templateValues?: {
|
|
10
|
+
[key: string]: unknown;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
export declare function select(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig): $64$luvio_engine_Fragment;
|
|
15
|
+
export declare function getResponseCacheKeys(storeKeyMap: any, luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: types_TemplateReadinessRepresentation_TemplateReadinessRepresentation): void;
|
|
16
|
+
export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourceParams: ResourceRequestConfig, response: $64$luvio_engine_FetchResponse<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation>): $64$luvio_engine_FulfilledSnapshot<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation, {}> | $64$luvio_engine_StaleSnapshot<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation, {}> | $64$luvio_engine_PendingSnapshot<types_TemplateReadinessRepresentation_TemplateReadinessRepresentation, any>;
|
|
17
|
+
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
18
|
+
export default createResourceRequest;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "37cd2df78831b62dfcd672b30f4ca0eb";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ChainDefinitionRepresentation, existing: ChainDefinitionRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ChainDefinitionRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ChainDefinitionRepresentationNormalized, incoming: ChainDefinitionRepresentationNormalized): 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: ChainDefinitionRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* chain definition.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ChainDefinitionRepresentationNormalized {
|
|
17
|
+
/** The domino chain id. */
|
|
18
|
+
dominoChainId: string | null;
|
|
19
|
+
/** The file. */
|
|
20
|
+
file: string;
|
|
21
|
+
/** The name. */
|
|
22
|
+
name: string | null;
|
|
23
|
+
/** The chain type. */
|
|
24
|
+
type: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* chain definition.
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface ChainDefinitionRepresentation {
|
|
33
|
+
dominoChainId: string | null;
|
|
34
|
+
file: string;
|
|
35
|
+
name: string | null;
|
|
36
|
+
type: string;
|
|
37
|
+
}
|
|
@@ -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 = "0bb1e6797b798f81a827301addfce4a7";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: NamespacedReferenceRepresentation, existing: NamespacedReferenceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): NamespacedReferenceRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: NamespacedReferenceRepresentationNormalized, incoming: NamespacedReferenceRepresentationNormalized): 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: NamespacedReferenceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* namespaced reference.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface NamespacedReferenceRepresentationNormalized {
|
|
17
|
+
/** The namespaced reference name. */
|
|
18
|
+
name: string;
|
|
19
|
+
/** The namespaced reference namespace. */
|
|
20
|
+
namespace: string | null;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* namespaced reference.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface NamespacedReferenceRepresentation {
|
|
29
|
+
name: string;
|
|
30
|
+
namespace: string | null;
|
|
31
|
+
}
|
|
@@ -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 = "3fc4320afdc399fc752a2e482573a828";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: ReleaseInfoRepresentation, existing: ReleaseInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ReleaseInfoRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: ReleaseInfoRepresentationNormalized, incoming: ReleaseInfoRepresentationNormalized): 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: ReleaseInfoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* release info.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface ReleaseInfoRepresentationNormalized {
|
|
17
|
+
/** The notes file of this template. */
|
|
18
|
+
notesFile: string | null;
|
|
19
|
+
/** The template version of this template. */
|
|
20
|
+
templateVersion: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* release info.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface ReleaseInfoRepresentation {
|
|
29
|
+
notesFile: string | null;
|
|
30
|
+
templateVersion: string;
|
|
31
|
+
}
|
|
@@ -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 = "11e304d2f006486e36c7ceadcc930fca";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: RuleInfoRepresentation, existing: RuleInfoRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): RuleInfoRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: RuleInfoRepresentationNormalized, incoming: RuleInfoRepresentationNormalized): 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: RuleInfoRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* output representation for rules.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface RuleInfoRepresentationNormalized {
|
|
17
|
+
/** The file. */
|
|
18
|
+
file: string;
|
|
19
|
+
/** The rule type. */
|
|
20
|
+
type: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* output representation for rules.
|
|
24
|
+
*
|
|
25
|
+
* Keys:
|
|
26
|
+
* (none)
|
|
27
|
+
*/
|
|
28
|
+
export interface RuleInfoRepresentation {
|
|
29
|
+
file: string;
|
|
30
|
+
type: string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 = "bb4d09952a56bda54a748540e67434bf";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: StaticResourceReferenceRepresentation, existing: StaticResourceReferenceRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): StaticResourceReferenceRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: StaticResourceReferenceRepresentationNormalized, incoming: StaticResourceReferenceRepresentationNormalized): 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: StaticResourceReferenceRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Static Resource reference representation.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface StaticResourceReferenceRepresentationNormalized {
|
|
17
|
+
/** The 18 character ID of the asset. */
|
|
18
|
+
id?: string;
|
|
19
|
+
/** The asset label. */
|
|
20
|
+
label?: string;
|
|
21
|
+
/** The asset developer name. */
|
|
22
|
+
name?: string;
|
|
23
|
+
/** The namespace that qualifies the asset name */
|
|
24
|
+
namespace?: string;
|
|
25
|
+
/** The asset URL. */
|
|
26
|
+
url?: string;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Static Resource reference representation.
|
|
30
|
+
*
|
|
31
|
+
* Keys:
|
|
32
|
+
* (none)
|
|
33
|
+
*/
|
|
34
|
+
export interface StaticResourceReferenceRepresentation {
|
|
35
|
+
id?: string;
|
|
36
|
+
label?: string;
|
|
37
|
+
name?: string;
|
|
38
|
+
namespace?: string;
|
|
39
|
+
url?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ImageReferenceRepresentation as ImageReferenceRepresentation_ImageReferenceRepresentation } from './ImageReferenceRepresentation';
|
|
2
|
+
import { TemplatePreviewRepresentation as TemplatePreviewRepresentation_TemplatePreviewRepresentation } from './TemplatePreviewRepresentation';
|
|
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 = "60cbf330de3d87a0dfeedb031eb8751c";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export declare function normalize(input: TemplateIconsRepresentation, existing: TemplateIconsRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateIconsRepresentationNormalized;
|
|
8
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
9
|
+
export declare function equals(existing: TemplateIconsRepresentationNormalized, incoming: TemplateIconsRepresentationNormalized): 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: TemplateIconsRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
12
|
+
/**
|
|
13
|
+
* template icons.
|
|
14
|
+
*
|
|
15
|
+
* Keys:
|
|
16
|
+
* (none)
|
|
17
|
+
*/
|
|
18
|
+
export interface TemplateIconsRepresentationNormalized {
|
|
19
|
+
/** The app badge. */
|
|
20
|
+
appBadge: ImageReferenceRepresentation_ImageReferenceRepresentation | null;
|
|
21
|
+
/** The template badge. */
|
|
22
|
+
templateBadge: ImageReferenceRepresentation_ImageReferenceRepresentation | null;
|
|
23
|
+
/** The template previews. */
|
|
24
|
+
templatePreviews: Array<TemplatePreviewRepresentation_TemplatePreviewRepresentation>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* template icons.
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface TemplateIconsRepresentation {
|
|
33
|
+
appBadge: ImageReferenceRepresentation_ImageReferenceRepresentation | null;
|
|
34
|
+
templateBadge: ImageReferenceRepresentation_ImageReferenceRepresentation | null;
|
|
35
|
+
templatePreviews: Array<TemplatePreviewRepresentation_TemplatePreviewRepresentation>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
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 = "03654b29de6009c4d1dd92d0cd14994f";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: TemplatePreviewRepresentation, existing: TemplatePreviewRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplatePreviewRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: TemplatePreviewRepresentationNormalized, incoming: TemplatePreviewRepresentationNormalized): 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: TemplatePreviewRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* template preview.
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface TemplatePreviewRepresentationNormalized {
|
|
17
|
+
/** The preview description. */
|
|
18
|
+
description: string | null;
|
|
19
|
+
/** The 18 character ID of the asset. */
|
|
20
|
+
id: string | null;
|
|
21
|
+
/** The asset label. */
|
|
22
|
+
label: string | null;
|
|
23
|
+
/** The asset developer name. */
|
|
24
|
+
name: string | null;
|
|
25
|
+
/** The namespace that qualifies the asset name */
|
|
26
|
+
namespace: string | null;
|
|
27
|
+
/** The asset URL. */
|
|
28
|
+
url: string | null;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* template preview.
|
|
32
|
+
*
|
|
33
|
+
* Keys:
|
|
34
|
+
* (none)
|
|
35
|
+
*/
|
|
36
|
+
export interface TemplatePreviewRepresentation {
|
|
37
|
+
description: string | null;
|
|
38
|
+
id: string | null;
|
|
39
|
+
label: string | null;
|
|
40
|
+
name: string | null;
|
|
41
|
+
namespace: string | null;
|
|
42
|
+
url: string | null;
|
|
43
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 = "e81dd9240e39c7b25cef734691b4b4d3";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: TemplateReadinessInputRepresentation, existing: TemplateReadinessInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateReadinessInputRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: TemplateReadinessInputRepresentationNormalized, incoming: TemplateReadinessInputRepresentationNormalized): 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: TemplateReadinessInputRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Input representation for performing org readiness check on a template
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface TemplateReadinessInputRepresentationNormalized {
|
|
17
|
+
/** Specifies the runtime logging level for debug. */
|
|
18
|
+
logLevel?: string;
|
|
19
|
+
/** The runtime template values user to control conditions in the chain. */
|
|
20
|
+
templateValues?: {
|
|
21
|
+
[key: string]: unknown;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Input representation for performing org readiness check on a template
|
|
26
|
+
*
|
|
27
|
+
* Keys:
|
|
28
|
+
* (none)
|
|
29
|
+
*/
|
|
30
|
+
export interface TemplateReadinessInputRepresentation {
|
|
31
|
+
logLevel?: string;
|
|
32
|
+
templateValues?: {
|
|
33
|
+
[key: string]: unknown;
|
|
34
|
+
};
|
|
35
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
+
export declare const VERSION = "72a8bf88556dc266e0366b35fb280616";
|
|
3
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
|
+
export declare const RepresentationType: string;
|
|
5
|
+
export declare function normalize(input: TemplateReadinessItemRepresentation, existing: TemplateReadinessItemRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateReadinessItemRepresentationNormalized;
|
|
6
|
+
export declare const select: () => $64$luvio_engine_FragmentSelection;
|
|
7
|
+
export declare function equals(existing: TemplateReadinessItemRepresentationNormalized, incoming: TemplateReadinessItemRepresentationNormalized): 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: TemplateReadinessItemRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
10
|
+
/**
|
|
11
|
+
* Results for individual validation task
|
|
12
|
+
*
|
|
13
|
+
* Keys:
|
|
14
|
+
* (none)
|
|
15
|
+
*/
|
|
16
|
+
export interface TemplateReadinessItemRepresentationNormalized {
|
|
17
|
+
/** The task specific message. */
|
|
18
|
+
message: string | null;
|
|
19
|
+
/** The status for the readiness task */
|
|
20
|
+
readinessStatus: string | null;
|
|
21
|
+
/** The collection of tags describing the purpose of the validation. */
|
|
22
|
+
tags: Array<string>;
|
|
23
|
+
/** The task specific type, associated with readiness check type. */
|
|
24
|
+
type: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Results for individual validation task
|
|
28
|
+
*
|
|
29
|
+
* Keys:
|
|
30
|
+
* (none)
|
|
31
|
+
*/
|
|
32
|
+
export interface TemplateReadinessItemRepresentation {
|
|
33
|
+
message: string | null;
|
|
34
|
+
readinessStatus: string | null;
|
|
35
|
+
tags: Array<string>;
|
|
36
|
+
type: string;
|
|
37
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { TemplateReadinessItemRepresentation as TemplateReadinessItemRepresentation_TemplateReadinessItemRepresentation } from './TemplateReadinessItemRepresentation';
|
|
2
|
+
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
|
+
export declare const TTL = 1000;
|
|
4
|
+
export declare const VERSION = "1299d26238a3bbb05c6cf31992975f3c";
|
|
5
|
+
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
|
+
export declare const RepresentationType: string;
|
|
7
|
+
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
+
id: string;
|
|
9
|
+
}
|
|
10
|
+
export type TemplateReadinessRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
|
+
export type PartialTemplateReadinessRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
12
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: KeyParams): string;
|
|
13
|
+
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: KeyParams): TemplateReadinessRepresentationNormalizedKeyMetadata;
|
|
14
|
+
export declare function keyBuilderFromType(luvio: $64$luvio_engine_Luvio, object: TemplateReadinessRepresentation): string;
|
|
15
|
+
export declare function keyBuilderFromType_StructuredKey(luvio: $64$luvio_engine_Luvio, object: TemplateReadinessRepresentation): $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function normalize(input: TemplateReadinessRepresentation, existing: TemplateReadinessRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateReadinessRepresentationNormalized;
|
|
17
|
+
export declare const select: () => $64$luvio_engine_BaseFragment;
|
|
18
|
+
export declare function equals(existing: TemplateReadinessRepresentationNormalized, incoming: TemplateReadinessRepresentationNormalized): boolean;
|
|
19
|
+
export declare const ingest: $64$luvio_engine_ResourceIngest;
|
|
20
|
+
export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableStoreKeyMetadataMap, luvio: $64$luvio_engine_Luvio, input: TemplateReadinessRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): void;
|
|
21
|
+
/**
|
|
22
|
+
* Representation for app template readiness check.
|
|
23
|
+
*
|
|
24
|
+
* Keys:
|
|
25
|
+
* id (string): id
|
|
26
|
+
*/
|
|
27
|
+
export interface TemplateReadinessRepresentationNormalized {
|
|
28
|
+
/** The Template Id this readiness check was performed on */
|
|
29
|
+
id: string;
|
|
30
|
+
/** The Domino Runtime Request. */
|
|
31
|
+
runtimeRequestId: string | null;
|
|
32
|
+
/** The State information */
|
|
33
|
+
state: {
|
|
34
|
+
[key: string]: unknown;
|
|
35
|
+
};
|
|
36
|
+
/** The Status */
|
|
37
|
+
status: string;
|
|
38
|
+
/** Results from each requirement task. */
|
|
39
|
+
tasks: Array<TemplateReadinessItemRepresentation_TemplateReadinessItemRepresentation>;
|
|
40
|
+
/** Warning message (readiness chain not found). */
|
|
41
|
+
warningMessage: string | null;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Representation for app template readiness check.
|
|
45
|
+
*
|
|
46
|
+
* Keys:
|
|
47
|
+
* id (string): id
|
|
48
|
+
*/
|
|
49
|
+
export interface TemplateReadinessRepresentation {
|
|
50
|
+
id: string;
|
|
51
|
+
runtimeRequestId: string | null;
|
|
52
|
+
state: {
|
|
53
|
+
[key: string]: unknown;
|
|
54
|
+
};
|
|
55
|
+
status: string;
|
|
56
|
+
tasks: Array<TemplateReadinessItemRepresentation_TemplateReadinessItemRepresentation>;
|
|
57
|
+
warningMessage: string | null;
|
|
58
|
+
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import { ChainDefinitionRepresentation as ChainDefinitionRepresentation_ChainDefinitionRepresentation } from './ChainDefinitionRepresentation';
|
|
2
|
+
import { TemplateIconsRepresentation as TemplateIconsRepresentation_TemplateIconsRepresentation } from './TemplateIconsRepresentation';
|
|
3
|
+
import { ReleaseInfoRepresentation as ReleaseInfoRepresentation_ReleaseInfoRepresentation } from './ReleaseInfoRepresentation';
|
|
4
|
+
import { RuleInfoRepresentation as RuleInfoRepresentation_RuleInfoRepresentation } from './RuleInfoRepresentation';
|
|
1
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, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
6
|
export declare const TTL = 5000;
|
|
3
|
-
export declare const VERSION = "
|
|
7
|
+
export declare const VERSION = "b5a9a51561570638a21672e936a3d399";
|
|
4
8
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
5
9
|
export declare const RepresentationType: string;
|
|
6
10
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
@@ -24,20 +28,40 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
24
28
|
* id (string): id
|
|
25
29
|
*/
|
|
26
30
|
export interface TemplateRepresentationNormalized {
|
|
31
|
+
/** The ID of the application source for this template. */
|
|
32
|
+
applicationSourceId: string | null;
|
|
33
|
+
/** The asset version of the application template. */
|
|
34
|
+
assetVersion: number | null;
|
|
35
|
+
/** The chain definitions. */
|
|
36
|
+
chainDefinitions: Array<ChainDefinitionRepresentation_ChainDefinitionRepresentation>;
|
|
27
37
|
/** Url for configuration information */
|
|
28
38
|
configurationUrl: string;
|
|
29
39
|
/** The created date of the application Template. */
|
|
30
40
|
createdDate: string | null;
|
|
31
41
|
/** The description of the application template. */
|
|
32
42
|
description: string | null;
|
|
43
|
+
/** The icons of the application template. */
|
|
44
|
+
icons: TemplateIconsRepresentation_TemplateIconsRepresentation | null;
|
|
33
45
|
/** The ID or fully qualified API name of this template. */
|
|
34
46
|
id: string;
|
|
35
47
|
/** The localized name of the application template. */
|
|
36
48
|
label: string;
|
|
37
49
|
/** The last modified date of the application Template. */
|
|
38
50
|
lastModifiedDate: string | null;
|
|
51
|
+
/** The layout definition of the application template. */
|
|
52
|
+
layoutDefinition: string | null;
|
|
53
|
+
/** The max app count of the application template. */
|
|
54
|
+
maxAppCount: number | null;
|
|
39
55
|
/** The local API name of the application template. */
|
|
40
56
|
name: string;
|
|
57
|
+
/** The local namespace of the application template. */
|
|
58
|
+
namespace: string | null;
|
|
59
|
+
/** Url for performing org readiness check */
|
|
60
|
+
readinessUrl: string;
|
|
61
|
+
/** The release info of the application template. */
|
|
62
|
+
releaseInfo: ReleaseInfoRepresentation_ReleaseInfoRepresentation | null;
|
|
63
|
+
/** The rules. */
|
|
64
|
+
rules: Array<RuleInfoRepresentation_RuleInfoRepresentation>;
|
|
41
65
|
/** The Template Tags. */
|
|
42
66
|
tags: {
|
|
43
67
|
[key: string]: unknown;
|
|
@@ -46,6 +70,8 @@ export interface TemplateRepresentationNormalized {
|
|
|
46
70
|
templateType: string;
|
|
47
71
|
/** The this url. */
|
|
48
72
|
url: string;
|
|
73
|
+
/** The variable definition of the application template. */
|
|
74
|
+
variableDefinition: string | null;
|
|
49
75
|
}
|
|
50
76
|
/**
|
|
51
77
|
* Representation for a single template.
|
|
@@ -54,16 +80,27 @@ export interface TemplateRepresentationNormalized {
|
|
|
54
80
|
* id (string): id
|
|
55
81
|
*/
|
|
56
82
|
export interface TemplateRepresentation {
|
|
83
|
+
applicationSourceId: string | null;
|
|
84
|
+
assetVersion: number | null;
|
|
85
|
+
chainDefinitions: Array<ChainDefinitionRepresentation_ChainDefinitionRepresentation>;
|
|
57
86
|
configurationUrl: string;
|
|
58
87
|
createdDate: string | null;
|
|
59
88
|
description: string | null;
|
|
89
|
+
icons: TemplateIconsRepresentation_TemplateIconsRepresentation | null;
|
|
60
90
|
id: string;
|
|
61
91
|
label: string;
|
|
62
92
|
lastModifiedDate: string | null;
|
|
93
|
+
layoutDefinition: string | null;
|
|
94
|
+
maxAppCount: number | null;
|
|
63
95
|
name: string;
|
|
96
|
+
namespace: string | null;
|
|
97
|
+
readinessUrl: string;
|
|
98
|
+
releaseInfo: ReleaseInfoRepresentation_ReleaseInfoRepresentation | null;
|
|
99
|
+
rules: Array<RuleInfoRepresentation_RuleInfoRepresentation>;
|
|
64
100
|
tags: {
|
|
65
101
|
[key: string]: unknown;
|
|
66
102
|
};
|
|
67
103
|
templateType: string;
|
|
68
104
|
url: string;
|
|
105
|
+
variableDefinition: string | null;
|
|
69
106
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-analytics-app-framework",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.331.0",
|
|
4
4
|
"description": "APIs for the app-framework",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/analytics-app-framework.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.331.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.331.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|