@salesforce/lds-adapters-uiapi 1.157.2 → 1.158.1
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/types/src/generated/graphql/types/type-util.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/types/SearchAnswersRecordRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/SearchAnswersResultRepresentation.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/types/SearchResultsSummaryRepresentation.d.ts +4 -4
- package/dist/es/es2018/uiapi-records-service.js +411 -1540
- package/package.json +1 -1
- package/sfdc/graphqlAdapters.js +175 -1333
- package/sfdc/index.js +242 -213
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +34 -3
package/src/raml/api.raml
CHANGED
|
@@ -3538,6 +3538,37 @@ types:
|
|
|
3538
3538
|
name:
|
|
3539
3539
|
description: Name.
|
|
3540
3540
|
type: string
|
|
3541
|
+
SearchAnswersRecordRepresentation:
|
|
3542
|
+
description: Record for search QnA answer
|
|
3543
|
+
type: object
|
|
3544
|
+
properties:
|
|
3545
|
+
objectApiLabel:
|
|
3546
|
+
description: The record’s object API label
|
|
3547
|
+
type: string
|
|
3548
|
+
objectApiName:
|
|
3549
|
+
description: The record’s object API name
|
|
3550
|
+
type: string
|
|
3551
|
+
recordId:
|
|
3552
|
+
description: The ID of the record
|
|
3553
|
+
type: string
|
|
3554
|
+
title:
|
|
3555
|
+
description: The record’s title
|
|
3556
|
+
type: string
|
|
3557
|
+
SearchAnswersResultRepresentation:
|
|
3558
|
+
description: Search Answers Response
|
|
3559
|
+
type: object
|
|
3560
|
+
properties:
|
|
3561
|
+
answerType:
|
|
3562
|
+
description: The type of search answer
|
|
3563
|
+
type: string
|
|
3564
|
+
passage:
|
|
3565
|
+
description: The record’s snippet which includes the answer
|
|
3566
|
+
type: string
|
|
3567
|
+
records:
|
|
3568
|
+
description: The list of records for QnA Answer
|
|
3569
|
+
type: array
|
|
3570
|
+
items:
|
|
3571
|
+
type: SearchAnswersRecordRepresentation
|
|
3541
3572
|
SearchFilterAttributesRepresentation:
|
|
3542
3573
|
description: Attributes of the different filters.
|
|
3543
3574
|
discriminator: affordance
|
|
@@ -3775,15 +3806,15 @@ types:
|
|
|
3775
3806
|
keywordSearchResults:
|
|
3776
3807
|
description: Keyword Search Results Response
|
|
3777
3808
|
type: KeywordSearchResultsRepresentation | nil
|
|
3778
|
-
qnaResult:
|
|
3779
|
-
description: Question and Answer Response
|
|
3780
|
-
type: QnASearchResultRepresentation | nil
|
|
3781
3809
|
query:
|
|
3782
3810
|
description: Search query that yielded the search results
|
|
3783
3811
|
type: string
|
|
3784
3812
|
queryId:
|
|
3785
3813
|
description: Search’s request ID
|
|
3786
3814
|
type: string
|
|
3815
|
+
qnaResult:
|
|
3816
|
+
description: Question and Answer Response
|
|
3817
|
+
type: SearchAnswersResultRepresentation | nil
|
|
3787
3818
|
SimplifiedBatchRepresentation:
|
|
3788
3819
|
description: Result of an entire batch request operation. Results are ordered
|
|
3789
3820
|
in the same order in which the requests were given. Results may either be a
|