@salesforce/lds-adapters-analytics-app-framework 1.309.0-dev12 → 1.309.0-dev14
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 +715 -445
- package/dist/es/es2018/types/src/generated/adapters/getInstalledAssets.d.ts +28 -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 +3 -1
- package/dist/es/es2018/types/src/generated/resources/getAppFrameworkInstalledAssets.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/types/AssetRepresentation.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/InstalledAssetCollectionRepresentation.d.ts +39 -0
- package/package.json +3 -3
- package/sfdc/index.js +754 -472
- package/src/raml/api.raml +30 -0
- package/src/raml/luvio.raml +6 -0
package/src/raml/api.raml
CHANGED
|
@@ -286,6 +286,9 @@ types:
|
|
|
286
286
|
templateAssetSourceName:
|
|
287
287
|
description: The template asset name this asset was created from.
|
|
288
288
|
type: string | nil
|
|
289
|
+
templateSourceId:
|
|
290
|
+
description: The template this asset was created from
|
|
291
|
+
type: string | nil
|
|
289
292
|
type:
|
|
290
293
|
description: The asset type.
|
|
291
294
|
type: string | nil
|
|
@@ -308,6 +311,16 @@ types:
|
|
|
308
311
|
- Delete
|
|
309
312
|
- RefreshData
|
|
310
313
|
- Update
|
|
314
|
+
InstalledAssetCollectionRepresentation:
|
|
315
|
+
description: Representation list of assets associated with an app
|
|
316
|
+
type: object
|
|
317
|
+
properties:
|
|
318
|
+
assets:
|
|
319
|
+
description: The collection of assets associated with an app - may or may
|
|
320
|
+
not be created from template
|
|
321
|
+
type: array
|
|
322
|
+
items:
|
|
323
|
+
type: AssetRepresentation
|
|
311
324
|
NamespacedReferenceInputRepresentation:
|
|
312
325
|
description: Namespaced reference to resource.
|
|
313
326
|
type: object
|
|
@@ -709,6 +722,23 @@ types:
|
|
|
709
722
|
appIdOrApiName:
|
|
710
723
|
type: string
|
|
711
724
|
required: true
|
|
725
|
+
/installed-assets:
|
|
726
|
+
get:
|
|
727
|
+
displayName: getAppFrameworkInstalledAssetCollection
|
|
728
|
+
description: Get a list of assets installed by a template
|
|
729
|
+
responses:
|
|
730
|
+
'200':
|
|
731
|
+
description: Success
|
|
732
|
+
body:
|
|
733
|
+
application/json:
|
|
734
|
+
type: InstalledAssetCollectionRepresentation
|
|
735
|
+
queryParameters:
|
|
736
|
+
assetIdOrName:
|
|
737
|
+
type: string
|
|
738
|
+
required: false
|
|
739
|
+
assetType:
|
|
740
|
+
type: string
|
|
741
|
+
required: false
|
|
712
742
|
/templates:
|
|
713
743
|
get:
|
|
714
744
|
displayName: getAppFrameworkTemplateCollection
|
package/src/raml/luvio.raml
CHANGED
|
@@ -35,6 +35,8 @@ types:
|
|
|
35
35
|
(luvio.ttl): 5000
|
|
36
36
|
(luvio.key):
|
|
37
37
|
id: id
|
|
38
|
+
InstalledAssetCollectionRepresentation:
|
|
39
|
+
(luvio.ttl): 5000
|
|
38
40
|
TemplateCollectionRepresentation:
|
|
39
41
|
(luvio.ttl): 5000
|
|
40
42
|
TemplateRepresentation:
|
|
@@ -84,6 +86,10 @@ types:
|
|
|
84
86
|
(luvio.key):
|
|
85
87
|
appId: urlParams.appIdOrApiName
|
|
86
88
|
id: urlParams.id
|
|
89
|
+
/installed-assets:
|
|
90
|
+
get:
|
|
91
|
+
(luvio.adapter):
|
|
92
|
+
name: getInstalledAssets
|
|
87
93
|
/templates:
|
|
88
94
|
get:
|
|
89
95
|
(luvio.adapter):
|