@salesforce/lds-adapters-uiapi 1.141.1 → 1.142.1

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.
@@ -5,9 +5,9 @@ import { PartialInterface as graphql_types_Query_PartialInterface } from '../gra
5
5
  export declare const TTL = 900000;
6
6
  export declare const VERSION = "b440235e7e724631f92002fe50e3e096";
7
7
  export declare const RepresentationType: string;
8
- export declare function select(luvio: $64$luvio_engine_Luvio, query: $64$luvio_graphql$45$parser_DocumentNode, variables: $64$luvio_graphql_GraphQLVariables): $64$luvio_engine_ReaderFragment;
9
- export declare const ingest: (query: $64$luvio_graphql$45$parser_DocumentNode, variables: $64$luvio_graphql_GraphQLVariables) => $64$luvio_engine_ResourceIngest;
10
- export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, query: $64$luvio_graphql$45$parser_DocumentNode, variables: $64$luvio_graphql_GraphQLVariables, data: GraphQLRepresentation): $64$luvio_engine_DurableStoreKeyMetadataMap;
8
+ export declare function select(luvio: $64$luvio_engine_Luvio, document: $64$luvio_graphql$45$parser_DocumentNode, variables: $64$luvio_graphql_GraphQLVariables, operationName?: string): $64$luvio_engine_ReaderFragment;
9
+ export declare const ingest: (document: $64$luvio_graphql$45$parser_DocumentNode, variables: $64$luvio_graphql_GraphQLVariables, operationName?: string) => $64$luvio_engine_ResourceIngest;
10
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, document: $64$luvio_graphql$45$parser_DocumentNode, variables: $64$luvio_graphql_GraphQLVariables, data: GraphQLRepresentation, operationName?: string): $64$luvio_engine_DurableStoreKeyMetadataMap;
11
11
  export type GraphQLRepresentation = GraphQLRepresentationData | GraphQLRepresentationErrors;
12
12
  export interface GraphQLRepresentationData {
13
13
  data: graphql_types_Query_PartialInterface;
@@ -2,10 +2,11 @@ import { ListColumnRepresentation as ListColumnRepresentation_ListColumnRepresen
2
2
  import { ListFilterByInfoRepresentation as ListFilterByInfoRepresentation_ListFilterByInfoRepresentation } from './ListFilterByInfoRepresentation';
3
3
  import { ListReferenceRepresentation as ListReferenceRepresentation_ListReferenceRepresentation } from './ListReferenceRepresentation';
4
4
  import { ListOrderByInfoRepresentation as ListOrderByInfoRepresentation_ListOrderByInfoRepresentation } from './ListOrderByInfoRepresentation';
5
+ import { ListScopeRepresentation as ListScopeRepresentation_ListScopeRepresentation } from './ListScopeRepresentation';
5
6
  import { ListUserPreferenceRepresentation as ListUserPreferenceRepresentation_ListUserPreferenceRepresentation } from './ListUserPreferenceRepresentation';
6
7
  import { KeyMetadata as $64$luvio_engine_KeyMetadata, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
7
8
  export declare const TTL = 900000;
8
- export declare const VERSION = "8f469cbf563d2ed6b2d3a7b2ee422e1f";
9
+ export declare const VERSION = "8b55d621d80c84ec2e331abc4e12fc56";
9
10
  export declare function validate(obj: any, path?: string): TypeError | null;
10
11
  export declare const RepresentationType: string;
11
12
  export interface KeyParams extends $64$luvio_engine_KeyMetadata {
@@ -54,6 +55,8 @@ export interface ListInfoRepresentationNormalized {
54
55
  objectApiNames?: Array<string>;
55
56
  /** Describes how records are ordered in this list view. */
56
57
  orderedByInfo: Array<ListOrderByInfoRepresentation_ListOrderByInfoRepresentation>;
58
+ /** Scope information for this list view. */
59
+ scope?: ListScopeRepresentation_ListScopeRepresentation | null;
57
60
  /** Indicates whether the listview can be updated. */
58
61
  updateable: boolean;
59
62
  userPreferences: ListUserPreferenceRepresentation_ListUserPreferenceRepresentation;
@@ -82,6 +85,7 @@ export interface ListInfoRepresentation {
82
85
  listReference: ListReferenceRepresentation_ListReferenceRepresentation;
83
86
  objectApiNames?: Array<string>;
84
87
  orderedByInfo: Array<ListOrderByInfoRepresentation_ListOrderByInfoRepresentation>;
88
+ scope?: ListScopeRepresentation_ListScopeRepresentation | null;
85
89
  updateable: boolean;
86
90
  userPreferences: ListUserPreferenceRepresentation_ListUserPreferenceRepresentation;
87
91
  visibility: string;
@@ -0,0 +1,31 @@
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "2634258f216db34315c06d759a35676d";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ListScopeEntityRepresentation, existing: ListScopeEntityRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ListScopeEntityRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ListScopeEntityRepresentationNormalized, incoming: ListScopeEntityRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ListScopeEntityRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
10
+ /**
11
+ * ListScopeEntityRepresentation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ListScopeEntityRepresentationNormalized {
17
+ /** Id of the scope entity. */
18
+ id: string;
19
+ /** Label for the scope entity. */
20
+ label: string;
21
+ }
22
+ /**
23
+ * ListScopeEntityRepresentation
24
+ *
25
+ * Keys:
26
+ * (none)
27
+ */
28
+ export interface ListScopeEntityRepresentation {
29
+ id: string;
30
+ label: string;
31
+ }
@@ -0,0 +1,34 @@
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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
2
+ export declare const VERSION = "3b85c5a08d50ce328481b9f8ab56127b";
3
+ export declare function validate(obj: any, path?: string): TypeError | null;
4
+ export declare const RepresentationType: string;
5
+ export declare function normalize(input: ListScopeRelatedEntityRepresentation, existing: ListScopeRelatedEntityRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ListScopeRelatedEntityRepresentationNormalized;
6
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
7
+ export declare function equals(existing: ListScopeRelatedEntityRepresentationNormalized, incoming: ListScopeRelatedEntityRepresentationNormalized): boolean;
8
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
9
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ListScopeRelatedEntityRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
10
+ /**
11
+ * ListScopeRelatedEntityRepresentation
12
+ *
13
+ * Keys:
14
+ * (none)
15
+ */
16
+ export interface ListScopeRelatedEntityRepresentationNormalized {
17
+ /** Id of the scope entity. */
18
+ id: string;
19
+ /** Label for the scope entity. */
20
+ label: string;
21
+ /** Type for the scope entity. */
22
+ type: string;
23
+ }
24
+ /**
25
+ * ListScopeRelatedEntityRepresentation
26
+ *
27
+ * Keys:
28
+ * (none)
29
+ */
30
+ export interface ListScopeRelatedEntityRepresentation {
31
+ id: string;
32
+ label: string;
33
+ type: string;
34
+ }
@@ -0,0 +1,39 @@
1
+ import { ListScopeEntityRepresentation as ListScopeEntityRepresentation_ListScopeEntityRepresentation } from './ListScopeEntityRepresentation';
2
+ import { ListScopeRelatedEntityRepresentation as ListScopeRelatedEntityRepresentation_ListScopeRelatedEntityRepresentation } from './ListScopeRelatedEntityRepresentation';
3
+ 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, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
4
+ export declare const VERSION = "fce88f94b1244707458c795247592939";
5
+ export declare function validate(obj: any, path?: string): TypeError | null;
6
+ export declare const RepresentationType: string;
7
+ export declare function normalize(input: ListScopeRepresentation, existing: ListScopeRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ListScopeRepresentationNormalized;
8
+ export declare const select: () => $64$luvio_engine_FragmentSelection;
9
+ export declare function equals(existing: ListScopeRepresentationNormalized, incoming: ListScopeRepresentationNormalized): boolean;
10
+ export declare const ingest: $64$luvio_engine_ResourceIngest;
11
+ export declare function getTypeCacheKeys(luvio: $64$luvio_engine_Luvio, input: ListScopeRepresentation, fullPathFactory: () => string | $64$luvio_engine_NormalizedKeyMetadata): $64$luvio_engine_DurableStoreKeyMetadataMap;
12
+ /**
13
+ * ListScopeRepresentation
14
+ *
15
+ * Keys:
16
+ * (none)
17
+ */
18
+ export interface ListScopeRepresentationNormalized {
19
+ /** API name for the scope. */
20
+ apiName: string;
21
+ /** Entity for the scope. */
22
+ entity: ListScopeEntityRepresentation_ListScopeEntityRepresentation;
23
+ /** Label for the scope. */
24
+ label: string;
25
+ /** Related entity for the scope. */
26
+ relatedEntity: ListScopeRelatedEntityRepresentation_ListScopeRelatedEntityRepresentation;
27
+ }
28
+ /**
29
+ * ListScopeRepresentation
30
+ *
31
+ * Keys:
32
+ * (none)
33
+ */
34
+ export interface ListScopeRepresentation {
35
+ apiName: string;
36
+ entity: ListScopeEntityRepresentation_ListScopeEntityRepresentation;
37
+ label: string;
38
+ relatedEntity: ListScopeRelatedEntityRepresentation_ListScopeRelatedEntityRepresentation;
39
+ }