@salesforce/lds-adapters-uiapi 1.266.0-dev5 → 1.266.0-dev7
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/graphql/types/type-util.d.ts +1 -0
- package/dist/es/es2018/types/src/generated/types/AppliedSearchFilterOutputRepresentation.d.ts +3 -3
- package/dist/es/es2018/uiapi-records-service.js +241 -145
- package/package.json +6 -6
- package/sfdc/graphqlAdapters.js +199 -133
- package/sfdc/index.js +44 -14
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +1 -1
|
@@ -58,6 +58,7 @@ interface IngestBaseParams<AstNodeType, StateType> {
|
|
|
58
58
|
namespace: string;
|
|
59
59
|
representationName: string;
|
|
60
60
|
version: string;
|
|
61
|
+
ingestionTimestamp: number;
|
|
61
62
|
};
|
|
62
63
|
}
|
|
63
64
|
interface CursorBasedIngestParams<AstNodeType, StateType> extends IngestBaseParams<AstNodeType, StateType> {
|
package/dist/es/es2018/types/src/generated/types/AppliedSearchFilterOutputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "421c9d8ff4fa644d2a6ba55333c30189";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: AppliedSearchFilterOutputRepresentation, existing: AppliedSearchFilterOutputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): AppliedSearchFilterOutputRepresentationNormalized;
|
|
@@ -17,7 +17,7 @@ export interface AppliedSearchFilterOutputRepresentationNormalized {
|
|
|
17
17
|
/** Field path where we should apply the filter */
|
|
18
18
|
fieldPath: string;
|
|
19
19
|
/** Label for the applied filter */
|
|
20
|
-
label: string;
|
|
20
|
+
label: string | null;
|
|
21
21
|
/** Operator for the filter */
|
|
22
22
|
operator: string;
|
|
23
23
|
/** Values applied for the filter */
|
|
@@ -31,7 +31,7 @@ export interface AppliedSearchFilterOutputRepresentationNormalized {
|
|
|
31
31
|
*/
|
|
32
32
|
export interface AppliedSearchFilterOutputRepresentation {
|
|
33
33
|
fieldPath: string;
|
|
34
|
-
label: string;
|
|
34
|
+
label: string | null;
|
|
35
35
|
operator: string;
|
|
36
36
|
values: Array<string>;
|
|
37
37
|
}
|