@salesforce/lds-adapters-analytics-app-framework 1.320.0 → 1.322.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 +1468 -748
- package/dist/es/es2018/types/src/generated/adapters/createTemplate.d.ts +35 -0
- 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 +3 -0
- package/dist/es/es2018/types/src/generated/artifacts/sfdc.d.ts +6 -1
- package/dist/es/es2018/types/src/generated/resources/getAppFrameworkTemplatesTagsByTemplateIdOrApiName.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/resources/postAppFrameworkTemplates.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/resources/putAppFrameworkTemplatesTagsByTemplateIdOrApiName.d.ts +17 -0
- package/dist/es/es2018/types/src/generated/types/TemplateInputRepresentation.d.ts +15 -11
- package/dist/es/es2018/types/src/generated/types/TemplateRepresentation.d.ts +14 -1
- 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 +1811 -1033
- package/src/raml/api.raml +84 -4
- package/src/raml/luvio.raml +17 -0
package/src/raml/api.raml
CHANGED
|
@@ -396,10 +396,11 @@ types:
|
|
|
396
396
|
properties:
|
|
397
397
|
assetVersion:
|
|
398
398
|
description: The version of the Template assets.
|
|
399
|
-
|
|
399
|
+
required: false # TODO Hand-rolled W-15955585
|
|
400
400
|
type: number
|
|
401
401
|
chainDefinitions:
|
|
402
402
|
description: The Template chain definitions
|
|
403
|
+
required: false # TODO Hand-rolled W-15955585
|
|
403
404
|
type: array
|
|
404
405
|
items:
|
|
405
406
|
type: ChainDefinitionInputRepresentation
|
|
@@ -413,6 +414,7 @@ types:
|
|
|
413
414
|
type: TemplateIconsInputRepresentation
|
|
414
415
|
id:
|
|
415
416
|
description: The Template Id.
|
|
417
|
+
required: false # TODO Hand-rolled W-15955585
|
|
416
418
|
type: string
|
|
417
419
|
label:
|
|
418
420
|
description: The Template label.
|
|
@@ -434,6 +436,7 @@ types:
|
|
|
434
436
|
type: string
|
|
435
437
|
releaseInfo:
|
|
436
438
|
description: The Template release notes
|
|
439
|
+
required: false # TODO Hand-rolled W-15955585
|
|
437
440
|
type: ReleaseInfoInputRepresentation
|
|
438
441
|
rules:
|
|
439
442
|
description: The Template rules file
|
|
@@ -443,10 +446,11 @@ types:
|
|
|
443
446
|
type: RuleInfoInputRepresentation
|
|
444
447
|
tags:
|
|
445
448
|
description: The Template Tags.
|
|
446
|
-
type: array
|
|
447
449
|
required: false # TODO Hand-rolled W-15955585
|
|
448
|
-
|
|
449
|
-
|
|
450
|
+
type: object
|
|
451
|
+
properties:
|
|
452
|
+
//:
|
|
453
|
+
type: any
|
|
450
454
|
templateType:
|
|
451
455
|
description: The Template Type.
|
|
452
456
|
type: string
|
|
@@ -483,6 +487,9 @@ types:
|
|
|
483
487
|
configurationUrl:
|
|
484
488
|
description: Url for configuration information
|
|
485
489
|
type: string
|
|
490
|
+
createdDate:
|
|
491
|
+
description: The created date of the application Template.
|
|
492
|
+
type: string
|
|
486
493
|
description:
|
|
487
494
|
description: The description of the application template.
|
|
488
495
|
type: string | nil
|
|
@@ -492,9 +499,18 @@ types:
|
|
|
492
499
|
label:
|
|
493
500
|
description: The localized name of the application template.
|
|
494
501
|
type: string
|
|
502
|
+
lastModifiedDate:
|
|
503
|
+
description: The last modified date of the application Template.
|
|
504
|
+
type: string
|
|
495
505
|
name:
|
|
496
506
|
description: The local API name of the application template.
|
|
497
507
|
type: string
|
|
508
|
+
tags:
|
|
509
|
+
description: The Template Tags.
|
|
510
|
+
type: object
|
|
511
|
+
properties:
|
|
512
|
+
//:
|
|
513
|
+
type: any
|
|
498
514
|
templateType:
|
|
499
515
|
description: The template type.
|
|
500
516
|
type: string
|
|
@@ -615,6 +631,30 @@ types:
|
|
|
615
631
|
- Thursday
|
|
616
632
|
- Tuesday
|
|
617
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
|
|
618
658
|
/app-framework:
|
|
619
659
|
/apps:
|
|
620
660
|
get:
|
|
@@ -749,6 +789,19 @@ types:
|
|
|
749
789
|
body:
|
|
750
790
|
application/json:
|
|
751
791
|
type: TemplateCollectionRepresentation
|
|
792
|
+
post:
|
|
793
|
+
displayName: postAppFrameworkTemplateCollection
|
|
794
|
+
description: Create a new application template.
|
|
795
|
+
responses:
|
|
796
|
+
'200':
|
|
797
|
+
description: Success
|
|
798
|
+
body:
|
|
799
|
+
application/json:
|
|
800
|
+
type: TemplateRepresentation
|
|
801
|
+
body:
|
|
802
|
+
application/json:
|
|
803
|
+
type: TemplateInputRepresentation
|
|
804
|
+
(oas-body-name): templateParam
|
|
752
805
|
/templates/{templateIdOrApiName}:
|
|
753
806
|
get:
|
|
754
807
|
displayName: getAppFrameworkTemplate
|
|
@@ -777,3 +830,30 @@ types:
|
|
|
777
830
|
templateIdOrApiName:
|
|
778
831
|
type: string
|
|
779
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:
|
|
@@ -94,6 +98,9 @@ types:
|
|
|
94
98
|
get:
|
|
95
99
|
(luvio.adapter):
|
|
96
100
|
name: getTemplates
|
|
101
|
+
post:
|
|
102
|
+
(luvio.adapter):
|
|
103
|
+
name: createTemplate
|
|
97
104
|
/templates/{templateIdOrApiName}:
|
|
98
105
|
get:
|
|
99
106
|
(luvio.adapter):
|
|
@@ -106,3 +113,13 @@ types:
|
|
|
106
113
|
name: getTemplateConfig
|
|
107
114
|
(luvio.key):
|
|
108
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
|