@salesforce/lds-adapters-sfap-analytics-insights 1.327.0 → 1.329.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/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 +40 -2
package/src/raml/api.raml
CHANGED
|
@@ -576,6 +576,9 @@ types:
|
|
|
576
576
|
viz:
|
|
577
577
|
type: any
|
|
578
578
|
required: false
|
|
579
|
+
status:
|
|
580
|
+
type: Status
|
|
581
|
+
required: false
|
|
579
582
|
RelativeDateFilterOptions:
|
|
580
583
|
type: object
|
|
581
584
|
GetFilterValuesResponse:
|
|
@@ -775,9 +778,42 @@ types:
|
|
|
775
778
|
generationId:
|
|
776
779
|
description: ID of the Einstein GPT generation request.
|
|
777
780
|
type: string
|
|
781
|
+
required: false
|
|
778
782
|
timestamp:
|
|
779
783
|
description: Timestamp of the summary generation in UTC
|
|
780
784
|
type: string
|
|
785
|
+
Status:
|
|
786
|
+
type: object
|
|
787
|
+
properties:
|
|
788
|
+
qualifier:
|
|
789
|
+
description: Defines how the metric is tracking
|
|
790
|
+
enum:
|
|
791
|
+
- QUALIFIER_UNSPECIFIED
|
|
792
|
+
- QUALIFIER_HIGH
|
|
793
|
+
- QUALIFIER_LOW
|
|
794
|
+
- QUALIFIER_EXPECTED
|
|
795
|
+
- QUALIFIER_IN_PROGRESS
|
|
796
|
+
- QUALIFIER_ON_TRACK
|
|
797
|
+
- QUALIFIER_OFF_TRACK
|
|
798
|
+
- QUALIFIER_ON_TRACK_TO_GOAL
|
|
799
|
+
- QUALIFIER_OFF_TRACK_TO_GOAL
|
|
800
|
+
- QUALIFIER_GOAL_CONDITION
|
|
801
|
+
type: string
|
|
802
|
+
(amf-format): enum
|
|
803
|
+
required: false
|
|
804
|
+
sentiment:
|
|
805
|
+
description: |-
|
|
806
|
+
Represents a sentiment towards metric status.
|
|
807
|
+
Sentiment is determined based on the metric directionality and status qualifier
|
|
808
|
+
enum:
|
|
809
|
+
- SENTIMENT_UNSPECIFIED
|
|
810
|
+
- SENTIMENT_POSITIVE
|
|
811
|
+
- SENTIMENT_NEGATIVE
|
|
812
|
+
- SENTIMENT_NEUTRAL
|
|
813
|
+
- SENTIMENT_CUSTOM
|
|
814
|
+
type: string
|
|
815
|
+
(amf-format): enum
|
|
816
|
+
required: false
|
|
781
817
|
Measure:
|
|
782
818
|
type: object
|
|
783
819
|
properties:
|
|
@@ -839,12 +875,14 @@ version: v1
|
|
|
839
875
|
(amf-tags):
|
|
840
876
|
- InsightsService
|
|
841
877
|
body:
|
|
842
|
-
application/json:
|
|
878
|
+
application/json:
|
|
879
|
+
type: GenerateInsightBundleRequest
|
|
843
880
|
responses:
|
|
844
881
|
'200':
|
|
845
882
|
description: OK
|
|
846
883
|
body:
|
|
847
|
-
application/json:
|
|
884
|
+
application/json:
|
|
885
|
+
type: GenerateInsightBundleResponse
|
|
848
886
|
/basic/generateBundle:
|
|
849
887
|
post:
|
|
850
888
|
displayName: InsightsService_GenerateInsightBundleBase
|