@salesforce/lds-adapters-analytics-app-framework 1.396.0 → 1.398.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 +1 -0
- package/dist/es/es2018/types/src/generated/adapters/createTemplate.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/resources/postAppFrameworkTemplates.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/TemplateInputRepresentation.d.ts +4 -1
- package/package.json +3 -3
- package/sfdc/index.js +2 -1
- package/src/raml/api.raml +6 -0
|
@@ -5418,6 +5418,7 @@ function createResourceRequest$8(config) {
|
|
|
5418
5418
|
const adapterName$8 = 'createTemplate';
|
|
5419
5419
|
const createTemplate_ConfigPropertyMetadata = [
|
|
5420
5420
|
generateParamConfigMetadata('applicationSourceId', false, 2 /* Body */, 0 /* String */),
|
|
5421
|
+
generateParamConfigMetadata('assetIds', false, 2 /* Body */, 0 /* String */, true),
|
|
5421
5422
|
generateParamConfigMetadata('assetVersion', false, 2 /* Body */, 2 /* Number */),
|
|
5422
5423
|
generateParamConfigMetadata('chainDefinitions', false, 2 /* Body */, 4 /* Unsupported */, true),
|
|
5423
5424
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
@@ -11,6 +11,7 @@ export declare const createTemplate_ConfigPropertyMetadata: $64$luvio_engine_Ada
|
|
|
11
11
|
export declare const createTemplate_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
12
12
|
export interface CreateTemplateConfig {
|
|
13
13
|
applicationSourceId?: string;
|
|
14
|
+
assetIds?: Array<string>;
|
|
14
15
|
assetVersion?: number;
|
|
15
16
|
chainDefinitions?: Array<types_ChainDefinitionInputRepresentation_ChainDefinitionInputRepresentation>;
|
|
16
17
|
description?: string;
|
|
@@ -7,6 +7,7 @@ import { TemplateRepresentation as types_TemplateRepresentation_TemplateRepresen
|
|
|
7
7
|
export interface ResourceRequestConfig {
|
|
8
8
|
body: {
|
|
9
9
|
applicationSourceId?: string;
|
|
10
|
+
assetIds?: Array<string>;
|
|
10
11
|
assetVersion?: number;
|
|
11
12
|
chainDefinitions?: Array<types_ChainDefinitionInputRepresentation_ChainDefinitionInputRepresentation>;
|
|
12
13
|
description?: string;
|
|
@@ -3,7 +3,7 @@ import { TemplateIconsInputRepresentation as TemplateIconsInputRepresentation_Te
|
|
|
3
3
|
import { ReleaseInfoInputRepresentation as ReleaseInfoInputRepresentation_ReleaseInfoInputRepresentation } from './ReleaseInfoInputRepresentation';
|
|
4
4
|
import { RuleInfoInputRepresentation as RuleInfoInputRepresentation_RuleInfoInputRepresentation } from './RuleInfoInputRepresentation';
|
|
5
5
|
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';
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "7a71c20dbad8db365236aba5154d621e";
|
|
7
7
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
8
8
|
export declare const RepresentationType: string;
|
|
9
9
|
export declare function normalize(input: TemplateInputRepresentation, existing: TemplateInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): TemplateInputRepresentationNormalized;
|
|
@@ -20,6 +20,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
20
20
|
export interface TemplateInputRepresentationNormalized {
|
|
21
21
|
/** The Template application source */
|
|
22
22
|
applicationSourceId?: string;
|
|
23
|
+
/** The asset IDs to associate with the template as templatized assets. */
|
|
24
|
+
assetIds?: Array<string>;
|
|
23
25
|
/** The version of the Template assets. */
|
|
24
26
|
assetVersion?: number;
|
|
25
27
|
/** The Template chain definitions */
|
|
@@ -63,6 +65,7 @@ export interface TemplateInputRepresentationNormalized {
|
|
|
63
65
|
*/
|
|
64
66
|
export interface TemplateInputRepresentation {
|
|
65
67
|
applicationSourceId?: string;
|
|
68
|
+
assetIds?: Array<string>;
|
|
66
69
|
assetVersion?: number;
|
|
67
70
|
chainDefinitions?: Array<ChainDefinitionInputRepresentation_ChainDefinitionInputRepresentation>;
|
|
68
71
|
description?: string;
|
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.398.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.398.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.398.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -3132,6 +3132,7 @@ function createResourceRequest$l(config) {
|
|
|
3132
3132
|
const adapterName$l = 'createTemplate';
|
|
3133
3133
|
const createTemplate_ConfigPropertyMetadata = [
|
|
3134
3134
|
generateParamConfigMetadata('applicationSourceId', false, 2 /* Body */, 0 /* String */),
|
|
3135
|
+
generateParamConfigMetadata('assetIds', false, 2 /* Body */, 0 /* String */, true),
|
|
3135
3136
|
generateParamConfigMetadata('assetVersion', false, 2 /* Body */, 2 /* Number */),
|
|
3136
3137
|
generateParamConfigMetadata('chainDefinitions', false, 2 /* Body */, 4 /* Unsupported */, true),
|
|
3137
3138
|
generateParamConfigMetadata('description', false, 2 /* Body */, 0 /* String */),
|
|
@@ -8388,4 +8389,4 @@ withDefaultLuvio((luvio) => {
|
|
|
8388
8389
|
});
|
|
8389
8390
|
|
|
8390
8391
|
export { createApp, createAppAsset, createTemplate, deleteApp, deleteAppAsset, deleteTemplate, getApp, getAppActivities, getAppActivitiesNotifyChange, getAppActivities_imperative, getAppActivity, getAppActivityNotifyChange, getAppActivity_imperative, getAppAsset, getAppAsset_imperative, getAppAssets, getAppAssetsNotifyChange, getAppAssets_imperative, getAppNotifyChange, getApp_imperative, getApps, getApps_imperative, getInstalledAssets, getInstalledAssets_imperative, getTags, getTagsNotifyChange, getTags_imperative, getTemplate, getTemplateAssets, getTemplateAssets_imperative, getTemplateConfig, getTemplateConfigNotifyChange, getTemplateConfig_imperative, getTemplateNotifyChange, getTemplate_imperative, getTemplates, getTemplates_imperative, readinessCheck, setTags, updateApp, updateAppAsset, updateBasicApp, updateTemplate };
|
|
8391
|
-
// version: 1.
|
|
8392
|
+
// version: 1.398.0-ada864f72d
|
package/src/raml/api.raml
CHANGED
|
@@ -576,6 +576,12 @@ types:
|
|
|
576
576
|
description: The Template application source
|
|
577
577
|
required: false # TODO Hand-rolled W-15955585
|
|
578
578
|
type: string
|
|
579
|
+
assetIds:
|
|
580
|
+
description: The asset IDs to associate with the template as templatized assets.
|
|
581
|
+
type: array
|
|
582
|
+
required: false
|
|
583
|
+
items:
|
|
584
|
+
type: string
|
|
579
585
|
assetVersion:
|
|
580
586
|
description: The version of the Template assets.
|
|
581
587
|
required: false # TODO Hand-rolled W-15955585
|