@salesforce/lds-adapters-uiapi 1.130.10 → 1.131.0-dev9
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 -9
package/src/raml/api.raml
CHANGED
|
@@ -1294,12 +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
|
-
required: false # TODO: W-12761618 - make this required once LWC OH is ready for GA
|
|
1301
|
-
items:
|
|
1302
|
-
type: string
|
|
1303
1297
|
orderedByInfo:
|
|
1304
1298
|
description: Describes how records are ordered in this list view.
|
|
1305
1299
|
type: array
|
|
@@ -3496,6 +3490,37 @@ types:
|
|
|
3496
3490
|
name:
|
|
3497
3491
|
description: Name.
|
|
3498
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
|
|
3499
3524
|
SearchFilterAttributesRepresentation:
|
|
3500
3525
|
description: Attributes of the different filters.
|
|
3501
3526
|
discriminator: affordance
|
|
@@ -3733,15 +3758,15 @@ types:
|
|
|
3733
3758
|
keywordSearchResults:
|
|
3734
3759
|
description: Keyword Search Results Response
|
|
3735
3760
|
type: KeywordSearchResultsRepresentation | nil
|
|
3736
|
-
qnaResult:
|
|
3737
|
-
description: Question and Answer Response
|
|
3738
|
-
type: QnASearchResultRepresentation | nil
|
|
3739
3761
|
query:
|
|
3740
3762
|
description: Search query that yielded the search results
|
|
3741
3763
|
type: string
|
|
3742
3764
|
queryId:
|
|
3743
3765
|
description: Search’s request ID
|
|
3744
3766
|
type: string
|
|
3767
|
+
qnaResult:
|
|
3768
|
+
description: Question and Answer Response
|
|
3769
|
+
type: SearchAnswersResultRepresentation | nil
|
|
3745
3770
|
SimplifiedBatchRepresentation:
|
|
3746
3771
|
description: Result of an entire batch request operation. Results are ordered
|
|
3747
3772
|
in the same order in which the requests were given. Results may either be a
|