@salesforce/lds-adapters-uiapi 1.130.9 → 1.131.0-dev10
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/types/ListInfoRepresentation.d.ts +1 -4
- package/dist/es/es2018/types/src/generated/types/SearchAnswersRecordRepresentation.d.ts +38 -0
- package/dist/es/es2018/types/src/generated/types/SearchAnswersResultRepresentation.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/types/SearchResultsSummaryRepresentation.d.ts +4 -4
- package/dist/es/es2018/types/src/main.d.ts +1 -0
- package/dist/es/es2018/types/src/sfdc_rest.d.ts +1 -1
- package/dist/es/es2018/uiapi-records-service.js +27690 -27669
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +1 -1
- package/sfdc/index.js +404 -340
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +34 -8
package/src/raml/api.raml
CHANGED
|
@@ -1294,11 +1294,6 @@ types:
|
|
|
1294
1294
|
listReference:
|
|
1295
1295
|
description: An object representing the identity of the list.
|
|
1296
1296
|
type: ListReferenceRepresentation
|
|
1297
|
-
objectApiNames:
|
|
1298
|
-
description: The API name of any objects that are returned by this relatedList.
|
|
1299
|
-
type: array
|
|
1300
|
-
items:
|
|
1301
|
-
type: string
|
|
1302
1297
|
orderedByInfo:
|
|
1303
1298
|
description: Describes how records are ordered in this list view.
|
|
1304
1299
|
type: array
|
|
@@ -3495,6 +3490,37 @@ types:
|
|
|
3495
3490
|
name:
|
|
3496
3491
|
description: Name.
|
|
3497
3492
|
type: string
|
|
3493
|
+
SearchAnswersRecordRepresentation:
|
|
3494
|
+
description: Record for search QnA answer
|
|
3495
|
+
type: object
|
|
3496
|
+
properties:
|
|
3497
|
+
objectApiLabel:
|
|
3498
|
+
description: The record’s object API label
|
|
3499
|
+
type: string
|
|
3500
|
+
objectApiName:
|
|
3501
|
+
description: The record’s object API name
|
|
3502
|
+
type: string
|
|
3503
|
+
recordId:
|
|
3504
|
+
description: The ID of the record
|
|
3505
|
+
type: string
|
|
3506
|
+
title:
|
|
3507
|
+
description: The record’s title
|
|
3508
|
+
type: string
|
|
3509
|
+
SearchAnswersResultRepresentation:
|
|
3510
|
+
description: Search Answers Response
|
|
3511
|
+
type: object
|
|
3512
|
+
properties:
|
|
3513
|
+
answerType:
|
|
3514
|
+
description: The type of search answer
|
|
3515
|
+
type: string
|
|
3516
|
+
passage:
|
|
3517
|
+
description: The record’s snippet which includes the answer
|
|
3518
|
+
type: string
|
|
3519
|
+
records:
|
|
3520
|
+
description: The list of records for QnA Answer
|
|
3521
|
+
type: array
|
|
3522
|
+
items:
|
|
3523
|
+
type: SearchAnswersRecordRepresentation
|
|
3498
3524
|
SearchFilterAttributesRepresentation:
|
|
3499
3525
|
description: Attributes of the different filters.
|
|
3500
3526
|
discriminator: affordance
|
|
@@ -3732,15 +3758,15 @@ types:
|
|
|
3732
3758
|
keywordSearchResults:
|
|
3733
3759
|
description: Keyword Search Results Response
|
|
3734
3760
|
type: KeywordSearchResultsRepresentation | nil
|
|
3735
|
-
qnaResult:
|
|
3736
|
-
description: Question and Answer Response
|
|
3737
|
-
type: QnASearchResultRepresentation | nil
|
|
3738
3761
|
query:
|
|
3739
3762
|
description: Search query that yielded the search results
|
|
3740
3763
|
type: string
|
|
3741
3764
|
queryId:
|
|
3742
3765
|
description: Search’s request ID
|
|
3743
3766
|
type: string
|
|
3767
|
+
qnaResult:
|
|
3768
|
+
description: Question and Answer Response
|
|
3769
|
+
type: SearchAnswersResultRepresentation | nil
|
|
3744
3770
|
SimplifiedBatchRepresentation:
|
|
3745
3771
|
description: Result of an entire batch request operation. Results are ordered
|
|
3746
3772
|
in the same order in which the requests were given. Results may either be a
|