@salesforce/lds-adapters-analytics-app-framework 1.330.0 → 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 +458 -438
- package/dist/es/es2018/types/src/generated/types/StaticResourceReferenceRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/TemplateIconsRepresentation.d.ts +6 -6
- package/dist/es/es2018/types/src/generated/types/TemplatePreviewRepresentation.d.ts +12 -6
- package/package.json +3 -3
- package/sfdc/index.js +462 -442
- package/src/raml/api.raml +43 -7
package/src/raml/api.raml
CHANGED
|
@@ -461,10 +461,10 @@ types:
|
|
|
461
461
|
properties:
|
|
462
462
|
appBadge:
|
|
463
463
|
description: The app badge.
|
|
464
|
-
type:
|
|
464
|
+
type: ImageReferenceRepresentation | nil
|
|
465
465
|
templateBadge:
|
|
466
466
|
description: The template badge.
|
|
467
|
-
type:
|
|
467
|
+
type: ImageReferenceRepresentation | nil
|
|
468
468
|
templatePreviews:
|
|
469
469
|
description: The template previews.
|
|
470
470
|
type: array
|
|
@@ -562,19 +562,28 @@ types:
|
|
|
562
562
|
type: string
|
|
563
563
|
TemplatePreviewRepresentation:
|
|
564
564
|
description: template preview.
|
|
565
|
-
type: object
|
|
565
|
+
type: object # TODO Hand-rolled W-8988532 due to StaticResourceReferenceRepresentation requiring a discriminator but generated raml does not have one issue
|
|
566
|
+
#type: StaticResourceReferenceRepresentation
|
|
567
|
+
# Both ImageReferenceRepresentation and TemplatePreviewRepresentation inherits from StaticResourceReferenceRepresentation but TemplatePreviewRepresentation
|
|
568
|
+
# has more properties. The generated raml cannot distinguish between the two types without a discriminator value so the properties are copied over.
|
|
566
569
|
properties:
|
|
567
570
|
description:
|
|
568
571
|
description: The preview description.
|
|
569
572
|
type: string | nil
|
|
573
|
+
id:
|
|
574
|
+
description: The 18 character ID of the asset.
|
|
575
|
+
type: string | nil
|
|
570
576
|
label:
|
|
571
|
-
description: The
|
|
577
|
+
description: The asset label.
|
|
572
578
|
type: string | nil
|
|
573
579
|
name:
|
|
574
|
-
description: The
|
|
575
|
-
type: string
|
|
580
|
+
description: The asset developer name.
|
|
581
|
+
type: string | nil
|
|
576
582
|
namespace:
|
|
577
|
-
description: The
|
|
583
|
+
description: The namespace that qualifies the asset name
|
|
584
|
+
type: string | nil
|
|
585
|
+
url:
|
|
586
|
+
description: The asset URL.
|
|
578
587
|
type: string | nil
|
|
579
588
|
TemplateReadinessInputRepresentation:
|
|
580
589
|
description: Input representation for performing org readiness check on a template
|
|
@@ -949,6 +958,33 @@ types:
|
|
|
949
958
|
type: string
|
|
950
959
|
ImageReferenceRepresentation:
|
|
951
960
|
description: Image reference representation.
|
|
961
|
+
type: object # TODO Hand-rolled W-8988532 due to StaticResourceReferenceRepresentation requiring a discriminator but generated raml does not have one issue
|
|
962
|
+
#type: StaticResourceReferenceRepresentation
|
|
963
|
+
# Both ImageReferenceRepresentation and TemplatePreviewRepresentation inherits from StaticResourceReferenceRepresentation but TemplatePreviewRepresentation
|
|
964
|
+
# has more properties. The generated raml cannot distinguish between the two types without a discriminator value so the properties are copied over.
|
|
965
|
+
properties:
|
|
966
|
+
id:
|
|
967
|
+
required: false # TODO Hand-rolled W-8253396
|
|
968
|
+
description: The 18 character ID of the asset.
|
|
969
|
+
type: string
|
|
970
|
+
label:
|
|
971
|
+
required: false # TODO Hand-rolled W-8253396
|
|
972
|
+
description: The asset label.
|
|
973
|
+
type: string
|
|
974
|
+
name:
|
|
975
|
+
required: false # TODO Hand-rolled W-8253396
|
|
976
|
+
description: The asset developer name.
|
|
977
|
+
type: string
|
|
978
|
+
namespace:
|
|
979
|
+
required: false # TODO Hand-rolled W-8253396
|
|
980
|
+
description: The namespace that qualifies the asset name
|
|
981
|
+
type: string
|
|
982
|
+
url:
|
|
983
|
+
required: false # TODO Hand-rolled W-8253396
|
|
984
|
+
description: The asset URL.
|
|
985
|
+
type: string
|
|
986
|
+
StaticResourceReferenceRepresentation:
|
|
987
|
+
description: Static Resource reference representation.
|
|
952
988
|
type: object
|
|
953
989
|
properties:
|
|
954
990
|
id:
|