@salesforce/lds-adapters-analytics-app-framework 1.321.0 → 1.323.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 +1115 -769
- package/dist/es/es2018/types/src/generated/adapters/getTags.d.ts +28 -0
- package/dist/es/es2018/types/src/generated/adapters/setTags.d.ts +18 -0
- package/dist/es/es2018/types/src/generated/artifacts/main.d.ts +2 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/resources/getAppFrameworkTemplatesTagsByTemplateIdOrApiName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/putAppFrameworkTemplatesTagsByTemplateIdOrApiName.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/types/TemplateTagCollectionInputRepresentation.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/TemplateTagCollectionRepresentation.d.ts +45 -0
- package/package.json +3 -3
- package/sfdc/index.js +1143 -742
- package/src/raml/api.raml +51 -0
- package/src/raml/luvio.raml +14 -0
package/src/raml/api.raml
CHANGED
|
@@ -631,6 +631,30 @@ types:
|
|
|
631
631
|
- Thursday
|
|
632
632
|
- Tuesday
|
|
633
633
|
- Wednesday
|
|
634
|
+
TemplateTagCollectionInputRepresentation:
|
|
635
|
+
description: Input representation for creating template tag records.
|
|
636
|
+
type: object
|
|
637
|
+
properties:
|
|
638
|
+
tags:
|
|
639
|
+
description: The Template Tags.
|
|
640
|
+
required: false # TODO Hand-rolled W-15955585
|
|
641
|
+
type: object
|
|
642
|
+
properties:
|
|
643
|
+
//:
|
|
644
|
+
type: any
|
|
645
|
+
TemplateTagCollectionRepresentation:
|
|
646
|
+
description: Representation for template tag records.
|
|
647
|
+
type: object
|
|
648
|
+
properties:
|
|
649
|
+
tags:
|
|
650
|
+
description: The collection of template tag records.
|
|
651
|
+
type: object
|
|
652
|
+
properties:
|
|
653
|
+
//:
|
|
654
|
+
type: any
|
|
655
|
+
templateId:
|
|
656
|
+
description: The id for the tags' template.
|
|
657
|
+
type: string
|
|
634
658
|
/app-framework:
|
|
635
659
|
/apps:
|
|
636
660
|
get:
|
|
@@ -806,3 +830,30 @@ types:
|
|
|
806
830
|
templateIdOrApiName:
|
|
807
831
|
type: string
|
|
808
832
|
required: true
|
|
833
|
+
/templates/{templateIdOrApiName}/tags:
|
|
834
|
+
get:
|
|
835
|
+
displayName: getAppFrameworkTemplateTagCollection
|
|
836
|
+
description: Get a list of template tag records
|
|
837
|
+
responses:
|
|
838
|
+
'200':
|
|
839
|
+
description: Success
|
|
840
|
+
body:
|
|
841
|
+
application/json:
|
|
842
|
+
type: TemplateTagCollectionRepresentation
|
|
843
|
+
put:
|
|
844
|
+
displayName: putAppFrameworkTemplateTagCollection
|
|
845
|
+
description: Upsert template tags.
|
|
846
|
+
responses:
|
|
847
|
+
'200':
|
|
848
|
+
description: Success
|
|
849
|
+
body:
|
|
850
|
+
application/json:
|
|
851
|
+
type: TemplateTagCollectionRepresentation
|
|
852
|
+
body:
|
|
853
|
+
application/json:
|
|
854
|
+
type: TemplateTagCollectionInputRepresentation
|
|
855
|
+
(oas-body-name): templateTagParam
|
|
856
|
+
uriParameters:
|
|
857
|
+
templateIdOrApiName:
|
|
858
|
+
type: string
|
|
859
|
+
required: true
|
package/src/raml/luvio.raml
CHANGED
|
@@ -47,6 +47,10 @@ types:
|
|
|
47
47
|
(luvio.ttl): 5000
|
|
48
48
|
(luvio.key):
|
|
49
49
|
id: id
|
|
50
|
+
TemplateTagCollectionRepresentation:
|
|
51
|
+
(luvio.ttl): 5000
|
|
52
|
+
(luvio.key):
|
|
53
|
+
id: templateId
|
|
50
54
|
|
|
51
55
|
/app-framework:
|
|
52
56
|
/apps:
|
|
@@ -109,3 +113,13 @@ types:
|
|
|
109
113
|
name: getTemplateConfig
|
|
110
114
|
(luvio.key):
|
|
111
115
|
id: urlParams.templateIdOrApiName
|
|
116
|
+
|
|
117
|
+
/templates/{templateIdOrApiName}/tags:
|
|
118
|
+
get:
|
|
119
|
+
(luvio.adapter):
|
|
120
|
+
name: getTags
|
|
121
|
+
(luvio.key):
|
|
122
|
+
id: urlParams.templateIdOrApiName
|
|
123
|
+
put:
|
|
124
|
+
(luvio.adapter):
|
|
125
|
+
name: setTags
|