@salesforce/lds-adapters-sfap-analytics-insights 1.309.0-dev19 → 1.309.0-dev21
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/sfap-analytics-insights.js +282 -169
- package/dist/es/es2018/types/src/generated/types/Overview.d.ts +4 -1
- package/dist/es/es2018/types/src/generated/types/Status.d.ts +32 -0
- package/dist/es/es2018/types/src/generated/types/Summary.d.ts +3 -3
- package/package.json +3 -3
- package/sfdc/index.js +265 -152
- package/src/raml/api.raml +36 -0
package/src/raml/api.raml
CHANGED
|
@@ -575,6 +575,9 @@ types:
|
|
|
575
575
|
viz:
|
|
576
576
|
type: any
|
|
577
577
|
required: false
|
|
578
|
+
status:
|
|
579
|
+
type: Status
|
|
580
|
+
required: false
|
|
578
581
|
RelativeDateFilterOptions:
|
|
579
582
|
type: object
|
|
580
583
|
GetFilterValuesResponse:
|
|
@@ -774,9 +777,42 @@ types:
|
|
|
774
777
|
generationId:
|
|
775
778
|
description: ID of the Einstein GPT generation request.
|
|
776
779
|
type: string
|
|
780
|
+
required: false
|
|
777
781
|
timestamp:
|
|
778
782
|
description: Timestamp of the summary generation in UTC
|
|
779
783
|
type: string
|
|
784
|
+
Status:
|
|
785
|
+
type: object
|
|
786
|
+
properties:
|
|
787
|
+
qualifier:
|
|
788
|
+
description: Defines how the metric is tracking
|
|
789
|
+
enum:
|
|
790
|
+
- QUALIFIER_UNSPECIFIED
|
|
791
|
+
- QUALIFIER_HIGH
|
|
792
|
+
- QUALIFIER_LOW
|
|
793
|
+
- QUALIFIER_EXPECTED
|
|
794
|
+
- QUALIFIER_IN_PROGRESS
|
|
795
|
+
- QUALIFIER_ON_TRACK
|
|
796
|
+
- QUALIFIER_OFF_TRACK
|
|
797
|
+
- QUALIFIER_ON_TRACK_TO_GOAL
|
|
798
|
+
- QUALIFIER_OFF_TRACK_TO_GOAL
|
|
799
|
+
- QUALIFIER_GOAL_CONDITION
|
|
800
|
+
type: string
|
|
801
|
+
(amf-format): enum
|
|
802
|
+
required: false
|
|
803
|
+
sentiment:
|
|
804
|
+
description: |-
|
|
805
|
+
Represents a sentiment towards metric status.
|
|
806
|
+
Sentiment is determined based on the metric directionality and status qualifier
|
|
807
|
+
enum:
|
|
808
|
+
- SENTIMENT_UNSPECIFIED
|
|
809
|
+
- SENTIMENT_POSITIVE
|
|
810
|
+
- SENTIMENT_NEGATIVE
|
|
811
|
+
- SENTIMENT_NEUTRAL
|
|
812
|
+
- SENTIMENT_CUSTOM
|
|
813
|
+
type: string
|
|
814
|
+
(amf-format): enum
|
|
815
|
+
required: false
|
|
780
816
|
Measure:
|
|
781
817
|
type: object
|
|
782
818
|
properties:
|