@salesforce/lds-adapters-uiapi 1.309.0-dev13 → 1.309.0-dev15
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/fields/types/NLSResultsRepresentation.d.ts +12 -0
- package/dist/es/es2018/types/src/generated/types/NLSResultsRepresentation.d.ts +40 -0
- package/dist/es/es2018/types/src/generated/types/SearchResultsSummaryRepresentation.d.ts +5 -1
- package/dist/es/es2018/uiapi-records-service.js +337 -268
- package/package.json +7 -7
- package/sfdc/graphqlAdapters.js +1 -1
- package/sfdc/index.js +338 -269
- package/src/raml/api.raml +14 -0
package/src/raml/api.raml
CHANGED
|
@@ -2444,6 +2444,16 @@ types:
|
|
|
2444
2444
|
type: array
|
|
2445
2445
|
items:
|
|
2446
2446
|
type: string
|
|
2447
|
+
NLSResultsRepresentation:
|
|
2448
|
+
description: Natural Language Search Results Response
|
|
2449
|
+
type: object
|
|
2450
|
+
properties:
|
|
2451
|
+
hasNoResult:
|
|
2452
|
+
description: Indicates that no results were found
|
|
2453
|
+
type: boolean | nil
|
|
2454
|
+
results:
|
|
2455
|
+
description: List of search result collections, one for each object
|
|
2456
|
+
type: SearchResultCollectionRepresentation
|
|
2447
2457
|
NavItemInputRepresentation:
|
|
2448
2458
|
description: A navigation item.
|
|
2449
2459
|
type: object
|
|
@@ -4735,6 +4745,7 @@ types:
|
|
|
4735
4745
|
enum:
|
|
4736
4746
|
- DirectAnswerResult
|
|
4737
4747
|
- KeywordSearchResults
|
|
4748
|
+
- NlsResults
|
|
4738
4749
|
- QnAResult
|
|
4739
4750
|
required: false #TODO: handrolled for W-10327520
|
|
4740
4751
|
configurationName:
|
|
@@ -4822,6 +4833,9 @@ types:
|
|
|
4822
4833
|
keywordSearchResults:
|
|
4823
4834
|
description: Keyword Search Results Response
|
|
4824
4835
|
type: KeywordSearchResultsRepresentation | nil
|
|
4836
|
+
nlsResults:
|
|
4837
|
+
description: Natural Language Search Results Response
|
|
4838
|
+
type: NLSResultsRepresentation | nil
|
|
4825
4839
|
qnaResult:
|
|
4826
4840
|
description: Search Answers Response
|
|
4827
4841
|
type: SearchAnswersResultRepresentation | nil
|