@salesforce/lds-adapters-uiapi 1.275.0 → 1.276.0
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/types/src/sfdc_rest.d.ts +2 -0
- package/dist/es/es2018/types/src/storewatch.d.ts +7 -0
- package/dist/es/es2018/types/src/util/lists.d.ts +11 -0
- package/dist/es/es2018/uiapi-records-service.js +2074 -2028
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +1 -1
- package/sfdc/index.js +2189 -2031
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +23 -3
|
@@ -95,7 +95,7 @@ var TypeCheckShapes;
|
|
|
95
95
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
96
96
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
97
97
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
98
|
-
// engine version: 0.154.
|
|
98
|
+
// engine version: 0.154.12-43ac02c6
|
|
99
99
|
|
|
100
100
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
101
101
|
|
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
|
|
@@ -4132,6 +4150,11 @@ types:
|
|
|
4132
4150
|
answerType:
|
|
4133
4151
|
description: The type of search answer
|
|
4134
4152
|
type: string
|
|
4153
|
+
appliedFilters:
|
|
4154
|
+
description: The list of applied filters.
|
|
4155
|
+
type: array
|
|
4156
|
+
items:
|
|
4157
|
+
type: AppliedSearchFilterOutputRepresentation
|
|
4135
4158
|
passage:
|
|
4136
4159
|
description: The record’s snippet which includes the answer
|
|
4137
4160
|
type: string
|
|
@@ -4354,9 +4377,6 @@ types:
|
|
|
4354
4377
|
description: Search filter output response.
|
|
4355
4378
|
type: object
|
|
4356
4379
|
properties:
|
|
4357
|
-
label:
|
|
4358
|
-
description: Label for the filter
|
|
4359
|
-
type: string
|
|
4360
4380
|
fieldPath:
|
|
4361
4381
|
description: Field path where we should apply the filter
|
|
4362
4382
|
type: string
|