@salesforce/lds-adapters-uiapi 1.266.0-dev3 → 1.266.0-dev5
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/AppliedSearchFilterOutputRepresentation.d.ts +37 -0
- package/dist/es/es2018/types/src/generated/types/SearchAnswersResultRepresentation.d.ts +5 -1
- package/dist/es/es2018/types/src/generated/types/SearchFilterOutputRepresentation.d.ts +1 -4
- package/dist/es/es2018/uiapi-records-service.js +299 -253
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +1 -1
- package/sfdc/index.js +300 -254
- package/src/raml/api.raml +23 -3
package/src/raml/api.raml
CHANGED
|
@@ -340,6 +340,24 @@ types:
|
|
|
340
340
|
type: array
|
|
341
341
|
items:
|
|
342
342
|
type: NavItemRepresentation
|
|
343
|
+
AppliedSearchFilterOutputRepresentation:
|
|
344
|
+
description: Applied filter output response.
|
|
345
|
+
type: object
|
|
346
|
+
properties:
|
|
347
|
+
fieldPath:
|
|
348
|
+
description: Field path where we should apply the filter
|
|
349
|
+
type: string
|
|
350
|
+
label:
|
|
351
|
+
description: Label for the applied filter
|
|
352
|
+
type: string
|
|
353
|
+
operator:
|
|
354
|
+
description: Operator for the filter
|
|
355
|
+
type: string
|
|
356
|
+
values:
|
|
357
|
+
description: Values applied for the filter
|
|
358
|
+
type: array
|
|
359
|
+
items:
|
|
360
|
+
type: string
|
|
343
361
|
AppsRepresentation:
|
|
344
362
|
description: A list of apps accessible for current user.
|
|
345
363
|
type: object
|
|
@@ -4067,6 +4085,11 @@ types:
|
|
|
4067
4085
|
answerType:
|
|
4068
4086
|
description: The type of search answer
|
|
4069
4087
|
type: string
|
|
4088
|
+
appliedFilters:
|
|
4089
|
+
description: The list of applied filters.
|
|
4090
|
+
type: array
|
|
4091
|
+
items:
|
|
4092
|
+
type: AppliedSearchFilterOutputRepresentation
|
|
4070
4093
|
passage:
|
|
4071
4094
|
description: The record’s snippet which includes the answer
|
|
4072
4095
|
type: string
|
|
@@ -4289,9 +4312,6 @@ types:
|
|
|
4289
4312
|
description: Search filter output response.
|
|
4290
4313
|
type: object
|
|
4291
4314
|
properties:
|
|
4292
|
-
label:
|
|
4293
|
-
description: Label for the filter
|
|
4294
|
-
type: string
|
|
4295
4315
|
fieldPath:
|
|
4296
4316
|
description: Field path where we should apply the filter
|
|
4297
4317
|
type: string
|