@salesforce/lds-adapters-uiapi 1.136.7 → 1.137.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/adapters/getAppDetails.d.ts +1 -3
- package/dist/es/es2018/types/src/generated/graphql/types/DateFunctionAggregation.d.ts +1 -2
- package/dist/es/es2018/types/src/generated/graphql/types/DateLiteral.d.ts +16 -16
- package/dist/es/es2018/types/src/generated/graphql/types/DateOnlyAggregation.d.ts +1 -2
- package/dist/es/es2018/types/src/generated/graphql/types/GroupByFunction.d.ts +16 -0
- package/dist/es/es2018/types/src/generated/graphql/types/GroupByType.d.ts +6 -0
- package/dist/es/es2018/types/src/generated/graphql/types/NullOrder.d.ts +2 -2
- package/dist/es/es2018/types/src/generated/graphql/types/RecordAggregate.d.ts +68 -0
- package/dist/es/es2018/types/src/generated/graphql/types/RecordAggregateConnection.d.ts +39 -0
- package/dist/es/es2018/types/src/generated/graphql/types/RecordAggregateEdge.d.ts +36 -0
- package/dist/es/es2018/types/src/generated/graphql/types/RecordQueryAggregate.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/graphql/types/RecordResult.d.ts +35 -0
- package/dist/es/es2018/types/src/generated/graphql/types/UIAPI.d.ts +3 -1
- package/dist/es/es2018/types/src/generated/graphql/types/Unit.d.ts +5 -0
- package/dist/es/es2018/types/src/generated/resources/getUiApiAppsByAppId.d.ts +0 -1
- package/dist/es/es2018/types/src/generated/types/AppRepresentation.d.ts +6 -6
- package/dist/es/es2018/types/src/graphql-artifacts/types/RecordAggregate/getFieldType.d.ts +5 -0
- package/dist/es/es2018/types/src/graphql-artifacts/types/RecordQueryAggregate/getFieldType.d.ts +5 -0
- package/dist/es/es2018/uiapi-records-service.js +10665 -4274
- package/package.json +4 -4
- package/sfdc/graphqlAdapters.js +10527 -4157
- package/sfdc/index.js +31 -10
- package/src/raml/api.raml +2 -3
- package/src/raml/uiapi.graphql +133 -22
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AdapterValidationConfig as adapter$45$utils_AdapterValidationConfig, UncoercedConfiguration as adapter$45$utils_UncoercedConfiguration, Untrusted as adapter$45$utils_Untrusted } from './adapter-utils';
|
|
2
2
|
import { ResourceRequestConfig as resources_getUiApiAppsByAppId_ResourceRequestConfig } from '../resources/getUiApiAppsByAppId';
|
|
3
|
-
import { KeyParams as types_AppRepresentation_KeyParams, AppRepresentation as types_AppRepresentation_AppRepresentation } from '../types/AppRepresentation';
|
|
4
3
|
import { Luvio as $64$luvio_engine_Luvio, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Fragment as $64$luvio_engine_Fragment, Snapshot as $64$luvio_engine_Snapshot, FetchResponse as $64$luvio_engine_FetchResponse, ErrorResponse as $64$luvio_engine_ErrorResponse, DispatchResourceRequestContext as $64$luvio_engine_DispatchResourceRequestContext, CoercedAdapterRequestContext as $64$luvio_engine_CoercedAdapterRequestContext, StoreLookup as $64$luvio_engine_StoreLookup, AdapterFactory as $64$luvio_engine_AdapterFactory } from '@luvio/engine';
|
|
4
|
+
import { AppRepresentation as types_AppRepresentation_AppRepresentation } from '../types/AppRepresentation';
|
|
5
5
|
export declare const adapterName = "getAppDetails";
|
|
6
6
|
export declare const getAppDetails_ConfigPropertyNames: adapter$45$utils_AdapterValidationConfig;
|
|
7
7
|
export interface GetAppDetailsConfig {
|
|
@@ -10,7 +10,6 @@ export interface GetAppDetailsConfig {
|
|
|
10
10
|
userCustomizations?: boolean;
|
|
11
11
|
}
|
|
12
12
|
export declare function createResourceParams(config: GetAppDetailsConfig): resources_getUiApiAppsByAppId_ResourceRequestConfig;
|
|
13
|
-
export declare function coerceKeyParam(config: adapter$45$utils_UncoercedConfiguration<types_AppRepresentation_KeyParams, any>): types_AppRepresentation_KeyParams;
|
|
14
13
|
export declare function coerceConfig(config: adapter$45$utils_UncoercedConfiguration<GetAppDetailsConfig, any>): adapter$45$utils_Untrusted<GetAppDetailsConfig>;
|
|
15
14
|
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, config: GetAppDetailsConfig): string;
|
|
16
15
|
export declare function keyBuilder_StructuredKey(luvio: $64$luvio_engine_Luvio, config: GetAppDetailsConfig): $64$luvio_engine_NormalizedKeyMetadata;
|
|
@@ -28,4 +27,3 @@ export type BuildSnapshotContext = {
|
|
|
28
27
|
export declare function buildNetworkSnapshotCachePolicy(context: BuildSnapshotContext, coercedAdapterRequestContext: $64$luvio_engine_CoercedAdapterRequestContext): Promise<$64$luvio_engine_Snapshot<types_AppRepresentation_AppRepresentation, any>>;
|
|
29
28
|
export declare function buildCachedSnapshotCachePolicy(context: BuildSnapshotContext, storeLookup: $64$luvio_engine_StoreLookup<types_AppRepresentation_AppRepresentation>): $64$luvio_engine_Snapshot<types_AppRepresentation_AppRepresentation, any>;
|
|
30
29
|
export declare const getAppDetailsAdapterFactory: $64$luvio_engine_AdapterFactory<GetAppDetailsConfig, types_AppRepresentation_AppRepresentation>;
|
|
31
|
-
export declare const notifyChangeFactory: (luvio: $64$luvio_engine_Luvio, options?: $64$luvio_engine_DispatchResourceRequestContext) => (configs: adapter$45$utils_UncoercedConfiguration<types_AppRepresentation_KeyParams, any>[]) => void;
|
|
@@ -3,11 +3,10 @@ import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState
|
|
|
3
3
|
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
4
4
|
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
5
5
|
export declare const name = "DateFunctionAggregation";
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "2c6f28f604b988d12fd3fc208129d978";
|
|
7
7
|
export interface Interface {
|
|
8
8
|
value: unknown | undefined;
|
|
9
9
|
format: string | undefined;
|
|
10
|
-
convertTimezone: unknown | undefined;
|
|
11
10
|
}
|
|
12
11
|
export interface MinimumInterface {
|
|
13
12
|
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
export declare const name = "DateLiteral";
|
|
2
2
|
export declare enum Interface {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
THIS_WEEK = "THIS_WEEK",
|
|
4
|
+
THIS_FISCAL_QUARTER = "THIS_FISCAL_QUARTER",
|
|
5
|
+
NEXT_YEAR = "NEXT_YEAR",
|
|
6
|
+
TODAY = "TODAY",
|
|
7
|
+
LAST_WEEK = "LAST_WEEK",
|
|
8
|
+
LAST_YEAR = "LAST_YEAR",
|
|
9
|
+
YESTERDAY = "YESTERDAY",
|
|
10
|
+
NEXT_MONTH = "NEXT_MONTH",
|
|
5
11
|
NEXT_FISCAL_YEAR = "NEXT_FISCAL_YEAR",
|
|
6
|
-
|
|
12
|
+
NEXT_WEEK = "NEXT_WEEK",
|
|
7
13
|
NEXT_90_DAYS = "NEXT_90_DAYS",
|
|
8
|
-
|
|
14
|
+
LAST_FISCAL_QUARTER = "LAST_FISCAL_QUARTER",
|
|
15
|
+
LAST_FISCAL_YEAR = "LAST_FISCAL_YEAR",
|
|
9
16
|
THIS_YEAR = "THIS_YEAR",
|
|
17
|
+
THIS_MONTH = "THIS_MONTH",
|
|
10
18
|
THIS_QUARTER = "THIS_QUARTER",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
LAST_YEAR = "LAST_YEAR",
|
|
19
|
+
LAST_90_DAYS = "LAST_90_DAYS",
|
|
20
|
+
NEXT_FISCAL_QUARTER = "NEXT_FISCAL_QUARTER",
|
|
14
21
|
THIS_FISCAL_YEAR = "THIS_FISCAL_YEAR",
|
|
15
22
|
TOMORROW = "TOMORROW",
|
|
16
|
-
LAST_MONTH = "LAST_MONTH",
|
|
17
|
-
THIS_FISCAL_QUARTER = "THIS_FISCAL_QUARTER",
|
|
18
|
-
NEXT_YEAR = "NEXT_YEAR",
|
|
19
23
|
NEXT_QUARTER = "NEXT_QUARTER",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
NEXT_MONTH = "NEXT_MONTH",
|
|
23
|
-
TODAY = "TODAY",
|
|
24
|
-
LAST_WEEK = "LAST_WEEK",
|
|
25
|
-
LAST_FISCAL_QUARTER = "LAST_FISCAL_QUARTER"
|
|
24
|
+
LAST_MONTH = "LAST_MONTH",
|
|
25
|
+
LAST_QUARTER = "LAST_QUARTER"
|
|
26
26
|
}
|
|
@@ -3,11 +3,10 @@ import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState
|
|
|
3
3
|
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
4
4
|
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
5
5
|
export declare const name = "DateOnlyAggregation";
|
|
6
|
-
export declare const VERSION = "
|
|
6
|
+
export declare const VERSION = "2c6f28f604b988d12fd3fc208129d978";
|
|
7
7
|
export interface Interface {
|
|
8
8
|
value: unknown | undefined;
|
|
9
9
|
format: string | undefined;
|
|
10
|
-
convertTimezone: unknown | undefined;
|
|
11
10
|
}
|
|
12
11
|
export interface MinimumInterface {
|
|
13
12
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const name = "GroupByFunction";
|
|
2
|
+
export declare enum Interface {
|
|
3
|
+
DAY_IN_WEEK = "DAY_IN_WEEK",
|
|
4
|
+
DAY_IN_MONTH = "DAY_IN_MONTH",
|
|
5
|
+
DAY_IN_YEAR = "DAY_IN_YEAR",
|
|
6
|
+
WEEK_IN_MONTH = "WEEK_IN_MONTH",
|
|
7
|
+
WEEK_IN_YEAR = "WEEK_IN_YEAR",
|
|
8
|
+
CALENDAR_MONTH = "CALENDAR_MONTH",
|
|
9
|
+
CALENDAR_QUARTER = "CALENDAR_QUARTER",
|
|
10
|
+
CALENDAR_YEAR = "CALENDAR_YEAR",
|
|
11
|
+
FISCAL_MONTH = "FISCAL_MONTH",
|
|
12
|
+
FISCAL_QUARTER = "FISCAL_QUARTER",
|
|
13
|
+
FISCAL_YEAR = "FISCAL_YEAR",
|
|
14
|
+
DAY_ONLY = "DAY_ONLY",
|
|
15
|
+
HOUR_IN_DAY = "HOUR_IN_DAY"
|
|
16
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { Interface as BooleanAggregate_Interface } from './BooleanAggregate';
|
|
2
|
+
import { Interface as CurrencyAggregate_Interface } from './CurrencyAggregate';
|
|
3
|
+
import { Interface as DateAggregate_Interface } from './DateAggregate';
|
|
4
|
+
import { Interface as DoubleAggregate_Interface } from './DoubleAggregate';
|
|
5
|
+
import { Interface as EmailAggregate_Interface } from './EmailAggregate';
|
|
6
|
+
import { Interface as IDAggregate_Interface } from './IDAggregate';
|
|
7
|
+
import { Interface as IntAggregate_Interface } from './IntAggregate';
|
|
8
|
+
import { Interface as LatitudeAggregate_Interface } from './LatitudeAggregate';
|
|
9
|
+
import { Interface as LongitudeAggregate_Interface } from './LongitudeAggregate';
|
|
10
|
+
import { Interface as LongAggregate_Interface } from './LongAggregate';
|
|
11
|
+
import { Interface as PercentAggregate_Interface } from './PercentAggregate';
|
|
12
|
+
import { Interface as PhoneNumberAggregate_Interface } from './PhoneNumberAggregate';
|
|
13
|
+
import { Interface as PicklistAggregate_Interface } from './PicklistAggregate';
|
|
14
|
+
import { Interface as StringAggregate_Interface } from './StringAggregate';
|
|
15
|
+
import { Interface as TextAreaAggregate_Interface } from './TextAreaAggregate';
|
|
16
|
+
import { Interface as TimeAggregate_Interface } from './TimeAggregate';
|
|
17
|
+
import { Interface as UrlAggregate_Interface } from './UrlAggregate';
|
|
18
|
+
import { Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Reader as $64$luvio_engine_Reader, SelectionPropertyKey as $64$luvio_engine_SelectionPropertyKey, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
19
|
+
import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState as type$45$util_GraphQLIngestState, GraphQLFragmentMap as type$45$util_GraphQLFragmentMap, GraphQLLuvioState as type$45$util_GraphQLLuvioState } from './type-util';
|
|
20
|
+
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
21
|
+
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
22
|
+
export declare const name = "RecordAggregate";
|
|
23
|
+
export declare const VERSION = "708cab338ed7ebbaa86aab15bce73272";
|
|
24
|
+
export interface Interface {
|
|
25
|
+
ApiName: string;
|
|
26
|
+
BooleanAggregate: BooleanAggregate_Interface | undefined;
|
|
27
|
+
CurrencyAggregate: CurrencyAggregate_Interface | undefined;
|
|
28
|
+
DateAggregate: DateAggregate_Interface | undefined;
|
|
29
|
+
DoubleAggregate: DoubleAggregate_Interface | undefined;
|
|
30
|
+
EmailAggregate: EmailAggregate_Interface | undefined;
|
|
31
|
+
IDAggregate: IDAggregate_Interface | undefined;
|
|
32
|
+
IntAggregate: IntAggregate_Interface | undefined;
|
|
33
|
+
LatitudeAggregate: LatitudeAggregate_Interface | undefined;
|
|
34
|
+
LongitudeAggregate: LongitudeAggregate_Interface | undefined;
|
|
35
|
+
LongAggregate: LongAggregate_Interface | undefined;
|
|
36
|
+
PercentAggregate: PercentAggregate_Interface | undefined;
|
|
37
|
+
PhoneNumberAggregate: PhoneNumberAggregate_Interface | undefined;
|
|
38
|
+
PicklistAggregate: PicklistAggregate_Interface | undefined;
|
|
39
|
+
StringAggregate: StringAggregate_Interface | undefined;
|
|
40
|
+
TextAreaAggregate: TextAreaAggregate_Interface | undefined;
|
|
41
|
+
TimeAggregate: TimeAggregate_Interface | undefined;
|
|
42
|
+
UrlAggregate: UrlAggregate_Interface | undefined;
|
|
43
|
+
}
|
|
44
|
+
export interface MinimumInterface {
|
|
45
|
+
}
|
|
46
|
+
export type PartialInterface = Record<string, any> & MinimumInterface;
|
|
47
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string | $64$luvio_engine_NormalizedKeyMetadata;
|
|
48
|
+
export declare function mergeData(existingData: type$45$util_NormalizedGraphQL, newData: type$45$util_NormalizedGraphQL): {
|
|
49
|
+
data: Record<string, any>;
|
|
50
|
+
};
|
|
51
|
+
export declare function ingest(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLIngestState<PartialInterface>): {
|
|
52
|
+
__ref: string;
|
|
53
|
+
};
|
|
54
|
+
export declare function getFieldData(source: type$45$util_NormalizedGraphQL, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables): any;
|
|
55
|
+
export declare function selectType(typename: string, sel: $64$luvio_graphql$45$parser_FieldNode, fieldData: any, reader: $64$luvio_engine_Reader<any>, key: $64$luvio_engine_SelectionPropertyKey, sink: any, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): any;
|
|
56
|
+
export declare function buildSelectionForField(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
57
|
+
export declare function buildSelectionForNode(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentNode: $64$luvio_graphql$45$parser_FieldNode | $64$luvio_graphql$45$parser_OperationDefinitionNode, selectionNode: $64$luvio_graphql$45$parser_SelectionNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
58
|
+
export declare function select(field: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap): (source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentRecordId: string) => PartialInterface | undefined;
|
|
59
|
+
export declare function getMinimumSelections(): $64$luvio_graphql$45$parser_SelectionNode[];
|
|
60
|
+
export declare function getTypeCacheKeys(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLLuvioState<PartialInterface>): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
61
|
+
export declare function getFieldType(field: $64$luvio_graphql$45$parser_FieldNode): {
|
|
62
|
+
isArray: boolean;
|
|
63
|
+
typename: string;
|
|
64
|
+
} | undefined;
|
|
65
|
+
export declare function ingestFieldByType(typename: string, parentKey: string | $64$luvio_engine_NormalizedKeyMetadata, requestedField: $64$luvio_graphql$45$parser_FieldNode, sink: Record<string, any>, fieldKey: $64$luvio_engine_SelectionPropertyKey, fieldData: any, state: type$45$util_GraphQLIngestState<PartialInterface>): void;
|
|
66
|
+
export declare function isMappedField(field: $64$luvio_graphql$45$parser_FieldNode): boolean;
|
|
67
|
+
export declare function isFragmentApplicable(fragmentNode: $64$luvio_graphql$45$parser_FragmentDefinitionNode | $64$luvio_graphql$45$parser_InlineFragmentNode, typename?: string): boolean;
|
|
68
|
+
export declare function getInContextFragmentType(fragment: $64$luvio_graphql$45$parser_FragmentSpreadNode | $64$luvio_graphql$45$parser_InlineFragmentNode, fragmentMap: type$45$util_GraphQLFragmentMap): string | undefined;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Interface as RecordAggregateEdge_Interface } from './RecordAggregateEdge';
|
|
2
|
+
import { Interface as PageInfo_Interface } from './PageInfo';
|
|
3
|
+
import { Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Reader as $64$luvio_engine_Reader, SelectionPropertyKey as $64$luvio_engine_SelectionPropertyKey, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
4
|
+
import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState as type$45$util_GraphQLIngestState, GraphQLFragmentMap as type$45$util_GraphQLFragmentMap, GraphQLLuvioState as type$45$util_GraphQLLuvioState } from './type-util';
|
|
5
|
+
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
6
|
+
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
7
|
+
export declare const name = "RecordAggregateConnection";
|
|
8
|
+
export declare const VERSION = "75a36f5de3df006f439ccc8e04bdca0f";
|
|
9
|
+
export interface Interface {
|
|
10
|
+
edges: RecordAggregateEdge_Interface[] | undefined;
|
|
11
|
+
pageInfo: PageInfo_Interface;
|
|
12
|
+
totalCount: number;
|
|
13
|
+
}
|
|
14
|
+
export interface MinimumInterface {
|
|
15
|
+
}
|
|
16
|
+
export type PartialInterface = Record<string, any> & MinimumInterface;
|
|
17
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string | $64$luvio_engine_NormalizedKeyMetadata;
|
|
18
|
+
export declare function mergeData(existingData: type$45$util_NormalizedGraphQL, newData: type$45$util_NormalizedGraphQL): {
|
|
19
|
+
data: Record<string, any>;
|
|
20
|
+
};
|
|
21
|
+
export declare function ingestPaginationMetadata(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLIngestState<PartialInterface>, key: string | $64$luvio_engine_NormalizedKeyMetadata, sink: PartialInterface, existingData: PartialInterface): void;
|
|
22
|
+
export declare function ingest(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLIngestState<PartialInterface>): {
|
|
23
|
+
__ref: string;
|
|
24
|
+
};
|
|
25
|
+
export declare function getFieldData(source: type$45$util_NormalizedGraphQL, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables): any;
|
|
26
|
+
export declare function selectType(typename: string, sel: $64$luvio_graphql$45$parser_FieldNode, fieldData: any, reader: $64$luvio_engine_Reader<any>, key: $64$luvio_engine_SelectionPropertyKey, sink: any, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): any;
|
|
27
|
+
export declare function buildSelectionForField(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
28
|
+
export declare function buildSelectionForNode(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentNode: $64$luvio_graphql$45$parser_FieldNode | $64$luvio_graphql$45$parser_OperationDefinitionNode, selectionNode: $64$luvio_graphql$45$parser_SelectionNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
29
|
+
export declare function select(field: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap): (source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentRecordId: string) => PartialInterface | undefined;
|
|
30
|
+
export declare function getMinimumSelections(): $64$luvio_graphql$45$parser_SelectionNode[];
|
|
31
|
+
export declare function getTypeCacheKeys(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLLuvioState<PartialInterface>): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
32
|
+
export declare function getFieldType(field: $64$luvio_graphql$45$parser_FieldNode): {
|
|
33
|
+
isArray: boolean;
|
|
34
|
+
typename: string;
|
|
35
|
+
} | undefined;
|
|
36
|
+
export declare function ingestFieldByType(typename: string, parentKey: string | $64$luvio_engine_NormalizedKeyMetadata, fullPathKey: string | $64$luvio_engine_NormalizedKeyMetadata, requestedField: $64$luvio_graphql$45$parser_FieldNode, sink: Record<string, any>, fieldKey: $64$luvio_engine_SelectionPropertyKey, fieldData: any, state: type$45$util_GraphQLIngestState<PartialInterface>): void;
|
|
37
|
+
export declare function isMappedField(field: $64$luvio_graphql$45$parser_FieldNode): boolean;
|
|
38
|
+
export declare function isFragmentApplicable(fragmentNode: $64$luvio_graphql$45$parser_FragmentDefinitionNode | $64$luvio_graphql$45$parser_InlineFragmentNode, typename?: string): boolean;
|
|
39
|
+
export declare function getInContextFragmentType(fragment: $64$luvio_graphql$45$parser_FragmentSpreadNode | $64$luvio_graphql$45$parser_InlineFragmentNode, fragmentMap: type$45$util_GraphQLFragmentMap): string | undefined;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Interface as RecordResult_Interface } from './RecordResult';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Reader as $64$luvio_engine_Reader, SelectionPropertyKey as $64$luvio_engine_SelectionPropertyKey, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState as type$45$util_GraphQLIngestState, GraphQLFragmentMap as type$45$util_GraphQLFragmentMap, GraphQLLuvioState as type$45$util_GraphQLLuvioState } from './type-util';
|
|
4
|
+
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
5
|
+
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
6
|
+
export declare const name = "RecordAggregateEdge";
|
|
7
|
+
export declare const VERSION = "109073e1a791313cf074cd8b4d78a64d";
|
|
8
|
+
export interface Interface {
|
|
9
|
+
node: RecordResult_Interface | undefined;
|
|
10
|
+
cursor: string;
|
|
11
|
+
}
|
|
12
|
+
export interface MinimumInterface {
|
|
13
|
+
}
|
|
14
|
+
export type PartialInterface = Record<string, any> & MinimumInterface;
|
|
15
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string | $64$luvio_engine_NormalizedKeyMetadata;
|
|
16
|
+
export declare function mergeData(existingData: type$45$util_NormalizedGraphQL, newData: type$45$util_NormalizedGraphQL): {
|
|
17
|
+
data: Record<string, any>;
|
|
18
|
+
};
|
|
19
|
+
export declare function ingest(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLIngestState<PartialInterface>): {
|
|
20
|
+
__ref: string;
|
|
21
|
+
};
|
|
22
|
+
export declare function getFieldData(source: type$45$util_NormalizedGraphQL, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables): any;
|
|
23
|
+
export declare function selectType(typename: string, sel: $64$luvio_graphql$45$parser_FieldNode, fieldData: any, reader: $64$luvio_engine_Reader<any>, key: $64$luvio_engine_SelectionPropertyKey, sink: any, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): any;
|
|
24
|
+
export declare function buildSelectionForField(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
25
|
+
export declare function buildSelectionForNode(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentNode: $64$luvio_graphql$45$parser_FieldNode | $64$luvio_graphql$45$parser_OperationDefinitionNode, selectionNode: $64$luvio_graphql$45$parser_SelectionNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
26
|
+
export declare function select(field: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap): (source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentRecordId: string) => PartialInterface | undefined;
|
|
27
|
+
export declare function getMinimumSelections(): $64$luvio_graphql$45$parser_SelectionNode[];
|
|
28
|
+
export declare function getTypeCacheKeys(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLLuvioState<PartialInterface>): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
29
|
+
export declare function getFieldType(field: $64$luvio_graphql$45$parser_FieldNode): {
|
|
30
|
+
isArray: boolean;
|
|
31
|
+
typename: string;
|
|
32
|
+
} | undefined;
|
|
33
|
+
export declare function ingestFieldByType(typename: string, parentKey: string | $64$luvio_engine_NormalizedKeyMetadata, requestedField: $64$luvio_graphql$45$parser_FieldNode, sink: Record<string, any>, fieldKey: $64$luvio_engine_SelectionPropertyKey, fieldData: any, state: type$45$util_GraphQLIngestState<PartialInterface>): void;
|
|
34
|
+
export declare function isMappedField(field: $64$luvio_graphql$45$parser_FieldNode): boolean;
|
|
35
|
+
export declare function isFragmentApplicable(fragmentNode: $64$luvio_graphql$45$parser_FragmentDefinitionNode | $64$luvio_graphql$45$parser_InlineFragmentNode, typename?: string): boolean;
|
|
36
|
+
export declare function getInContextFragmentType(fragment: $64$luvio_graphql$45$parser_FragmentSpreadNode | $64$luvio_graphql$45$parser_InlineFragmentNode, fragmentMap: type$45$util_GraphQLFragmentMap): string | undefined;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Interface as RecordAggregateConnection_Interface } from './RecordAggregateConnection';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Reader as $64$luvio_engine_Reader, SelectionPropertyKey as $64$luvio_engine_SelectionPropertyKey, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState as type$45$util_GraphQLIngestState, GraphQLFragmentMap as type$45$util_GraphQLFragmentMap, GraphQLLuvioState as type$45$util_GraphQLLuvioState } from './type-util';
|
|
4
|
+
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
5
|
+
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
6
|
+
export declare const name = "RecordQueryAggregate";
|
|
7
|
+
export declare const VERSION = "d872f40fe358effab12441976e95ca71";
|
|
8
|
+
export interface Interface {
|
|
9
|
+
recordQueryAggregate: RecordAggregateConnection_Interface | undefined;
|
|
10
|
+
}
|
|
11
|
+
export interface MinimumInterface {
|
|
12
|
+
}
|
|
13
|
+
export type PartialInterface = Record<string, any> & MinimumInterface;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string | $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function mergeData(existingData: type$45$util_NormalizedGraphQL, newData: type$45$util_NormalizedGraphQL): {
|
|
16
|
+
data: Record<string, any>;
|
|
17
|
+
};
|
|
18
|
+
export declare function ingest(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLIngestState<PartialInterface>): {
|
|
19
|
+
__ref: string;
|
|
20
|
+
};
|
|
21
|
+
export declare function getFieldData(source: type$45$util_NormalizedGraphQL, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables): any;
|
|
22
|
+
export declare function selectType(typename: string, sel: $64$luvio_graphql$45$parser_FieldNode, fieldData: any, reader: $64$luvio_engine_Reader<any>, key: $64$luvio_engine_SelectionPropertyKey, sink: any, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): any;
|
|
23
|
+
export declare function buildSelectionForField(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
24
|
+
export declare function buildSelectionForNode(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentNode: $64$luvio_graphql$45$parser_FieldNode | $64$luvio_graphql$45$parser_OperationDefinitionNode, selectionNode: $64$luvio_graphql$45$parser_SelectionNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
25
|
+
export declare function select(field: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap): (source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentRecordId: string) => PartialInterface | undefined;
|
|
26
|
+
export declare function getMinimumSelections(): $64$luvio_graphql$45$parser_SelectionNode[];
|
|
27
|
+
export declare function getTypeCacheKeys(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLLuvioState<PartialInterface>): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
28
|
+
export declare function getFieldType(field: $64$luvio_graphql$45$parser_FieldNode): {
|
|
29
|
+
isArray: boolean;
|
|
30
|
+
typename: string;
|
|
31
|
+
} | undefined;
|
|
32
|
+
export declare function ingestFieldByType(typename: string, parentKey: string | $64$luvio_engine_NormalizedKeyMetadata, requestedField: $64$luvio_graphql$45$parser_FieldNode, sink: Record<string, any>, fieldKey: $64$luvio_engine_SelectionPropertyKey, fieldData: any, state: type$45$util_GraphQLIngestState<PartialInterface>): void;
|
|
33
|
+
export declare function isMappedField(field: $64$luvio_graphql$45$parser_FieldNode): boolean;
|
|
34
|
+
export declare function isFragmentApplicable(fragmentNode: $64$luvio_graphql$45$parser_FragmentDefinitionNode | $64$luvio_graphql$45$parser_InlineFragmentNode, typename?: string): boolean;
|
|
35
|
+
export declare function getInContextFragmentType(fragment: $64$luvio_graphql$45$parser_FragmentSpreadNode | $64$luvio_graphql$45$parser_InlineFragmentNode, fragmentMap: type$45$util_GraphQLFragmentMap): string | undefined;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Interface as RecordAggregate_Interface } from './RecordAggregate';
|
|
2
|
+
import { Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Reader as $64$luvio_engine_Reader, SelectionPropertyKey as $64$luvio_engine_SelectionPropertyKey, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
3
|
+
import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState as type$45$util_GraphQLIngestState, GraphQLFragmentMap as type$45$util_GraphQLFragmentMap, GraphQLLuvioState as type$45$util_GraphQLLuvioState } from './type-util';
|
|
4
|
+
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
5
|
+
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
6
|
+
export declare const name = "RecordResult";
|
|
7
|
+
export declare const VERSION = "ac087a39402cb113c9336a78e228b27a";
|
|
8
|
+
export interface Interface {
|
|
9
|
+
aggregate: RecordAggregate_Interface | undefined;
|
|
10
|
+
}
|
|
11
|
+
export interface MinimumInterface {
|
|
12
|
+
}
|
|
13
|
+
export type PartialInterface = Record<string, any> & MinimumInterface;
|
|
14
|
+
export declare function keyBuilder(luvio: $64$luvio_engine_Luvio, path: $64$luvio_engine_IngestPath, data: PartialInterface): string | $64$luvio_engine_NormalizedKeyMetadata;
|
|
15
|
+
export declare function mergeData(existingData: type$45$util_NormalizedGraphQL, newData: type$45$util_NormalizedGraphQL): {
|
|
16
|
+
data: Record<string, any>;
|
|
17
|
+
};
|
|
18
|
+
export declare function ingest(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLIngestState<PartialInterface>): {
|
|
19
|
+
__ref: string;
|
|
20
|
+
};
|
|
21
|
+
export declare function getFieldData(source: type$45$util_NormalizedGraphQL, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables): any;
|
|
22
|
+
export declare function selectType(typename: string, sel: $64$luvio_graphql$45$parser_FieldNode, fieldData: any, reader: $64$luvio_engine_Reader<any>, key: $64$luvio_engine_SelectionPropertyKey, sink: any, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): any;
|
|
23
|
+
export declare function buildSelectionForField(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, sel: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
24
|
+
export declare function buildSelectionForNode(source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentNode: $64$luvio_graphql$45$parser_FieldNode | $64$luvio_graphql$45$parser_OperationDefinitionNode, selectionNode: $64$luvio_graphql$45$parser_SelectionNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap, parentRecordId: string): Record<string, any> | undefined;
|
|
25
|
+
export declare function select(field: $64$luvio_graphql$45$parser_FieldNode, variables: $64$luvio_graphql_GraphQLVariables, fragments: type$45$util_GraphQLFragmentMap): (source: type$45$util_NormalizedGraphQL, reader: $64$luvio_engine_Reader<any>, parentRecordId: string) => PartialInterface | undefined;
|
|
26
|
+
export declare function getMinimumSelections(): $64$luvio_graphql$45$parser_SelectionNode[];
|
|
27
|
+
export declare function getTypeCacheKeys(astNode: $64$luvio_graphql$45$parser_FieldNode, state: type$45$util_GraphQLLuvioState<PartialInterface>): $64$luvio_engine_DurableStoreKeyMetadataMap;
|
|
28
|
+
export declare function getFieldType(field: $64$luvio_graphql$45$parser_FieldNode): {
|
|
29
|
+
isArray: boolean;
|
|
30
|
+
typename: string;
|
|
31
|
+
} | undefined;
|
|
32
|
+
export declare function ingestFieldByType(typename: string, parentKey: string | $64$luvio_engine_NormalizedKeyMetadata, requestedField: $64$luvio_graphql$45$parser_FieldNode, sink: Record<string, any>, fieldKey: $64$luvio_engine_SelectionPropertyKey, fieldData: any, state: type$45$util_GraphQLIngestState<PartialInterface>): void;
|
|
33
|
+
export declare function isMappedField(field: $64$luvio_graphql$45$parser_FieldNode): boolean;
|
|
34
|
+
export declare function isFragmentApplicable(fragmentNode: $64$luvio_graphql$45$parser_FragmentDefinitionNode | $64$luvio_graphql$45$parser_InlineFragmentNode, typename?: string): boolean;
|
|
35
|
+
export declare function getInContextFragmentType(fragment: $64$luvio_graphql$45$parser_FragmentSpreadNode | $64$luvio_graphql$45$parser_InlineFragmentNode, fragmentMap: type$45$util_GraphQLFragmentMap): string | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Interface as RecordQuery_Interface } from './RecordQuery';
|
|
2
|
+
import { Interface as RecordQueryAggregate_Interface } from './RecordQueryAggregate';
|
|
2
3
|
import { Interface as ObjectInfo_Interface } from './ObjectInfo';
|
|
3
4
|
import { Interface as RelatedListInfo_Interface } from './RelatedListInfo';
|
|
4
5
|
import { Luvio as $64$luvio_engine_Luvio, IngestPath as $64$luvio_engine_IngestPath, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata, Reader as $64$luvio_engine_Reader, SelectionPropertyKey as $64$luvio_engine_SelectionPropertyKey, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
@@ -6,9 +7,10 @@ import { NormalizedGraphQL as type$45$util_NormalizedGraphQL, GraphQLIngestState
|
|
|
6
7
|
import { FieldNode as $64$luvio_graphql$45$parser_FieldNode, OperationDefinitionNode as $64$luvio_graphql$45$parser_OperationDefinitionNode, SelectionNode as $64$luvio_graphql$45$parser_SelectionNode, FragmentDefinitionNode as $64$luvio_graphql$45$parser_FragmentDefinitionNode, InlineFragmentNode as $64$luvio_graphql$45$parser_InlineFragmentNode, FragmentSpreadNode as $64$luvio_graphql$45$parser_FragmentSpreadNode } from '@luvio/graphql-parser';
|
|
7
8
|
import { GraphQLVariables as $64$luvio_graphql_GraphQLVariables } from '@luvio/graphql';
|
|
8
9
|
export declare const name = "UIAPI";
|
|
9
|
-
export declare const VERSION = "
|
|
10
|
+
export declare const VERSION = "86b00be929ac510584ee034a4df812ea";
|
|
10
11
|
export interface Interface {
|
|
11
12
|
query: RecordQuery_Interface;
|
|
13
|
+
aggregate: RecordQueryAggregate_Interface;
|
|
12
14
|
objectInfos: ObjectInfo_Interface[] | undefined;
|
|
13
15
|
relatedListByName: RelatedListInfo_Interface | undefined;
|
|
14
16
|
}
|
|
@@ -17,4 +17,3 @@ export declare function ingestSuccess(luvio: $64$luvio_engine_Luvio, resourcePar
|
|
|
17
17
|
export declare function ingestError(luvio: $64$luvio_engine_Luvio, params: ResourceRequestConfig, error: $64$luvio_engine_ErrorResponse, snapshotRefresh?: $64$luvio_engine_SnapshotRefresh<types_AppRepresentation_AppRepresentation>): $64$luvio_engine_ErrorSnapshot;
|
|
18
18
|
export declare function createResourceRequest(config: ResourceRequestConfig): $64$luvio_engine_ResourceRequest;
|
|
19
19
|
export default createResourceRequest;
|
|
20
|
-
export declare function createResourceRequestFromRepresentation(representation: types_AppRepresentation_AppRepresentation): $64$luvio_engine_ResourceRequest;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
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, ResourceIngest as $64$luvio_engine_ResourceIngest, FragmentSelection as $64$luvio_engine_FragmentSelection, LinkSelection as $64$luvio_engine_LinkSelection, StoreLink as $64$luvio_engine_StoreLink, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap } from '@luvio/engine';
|
|
2
2
|
import { NavItemRepresentation as NavItemRepresentation_NavItemRepresentation } from './NavItemRepresentation';
|
|
3
3
|
export declare const TTL = 300000;
|
|
4
|
-
export declare const VERSION = "
|
|
4
|
+
export declare const VERSION = "1781f2d3d4e413cf0c681774d82d02cd";
|
|
5
5
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
6
6
|
export declare const RepresentationType: string;
|
|
7
7
|
export interface KeyParams extends $64$luvio_engine_KeyMetadata {
|
|
8
|
-
appId: string;
|
|
8
|
+
appId: string | null;
|
|
9
9
|
}
|
|
10
10
|
export type AppRepresentationNormalizedKeyMetadata = KeyParams & $64$luvio_engine_NormalizedKeyMetadata;
|
|
11
11
|
export type PartialAppRepresentationNormalizedKeyMetadata = Partial<KeyParams> & $64$luvio_engine_NormalizedKeyMetadata;
|
|
@@ -33,11 +33,11 @@ export declare function dynamicIngest(ingestParams: DynamicIngestParams): $64$lu
|
|
|
33
33
|
* Metadata for an app
|
|
34
34
|
*
|
|
35
35
|
* Keys:
|
|
36
|
-
* appId (string): appId
|
|
36
|
+
* appId (string | null): appId
|
|
37
37
|
*/
|
|
38
38
|
export interface AppRepresentationNormalized {
|
|
39
39
|
/** Reference to App Definition */
|
|
40
|
-
appId: string;
|
|
40
|
+
appId: string | null;
|
|
41
41
|
/** Description for the app */
|
|
42
42
|
description: string | null;
|
|
43
43
|
/** Unique developer name of the app */
|
|
@@ -77,10 +77,10 @@ export interface AppRepresentationNormalized {
|
|
|
77
77
|
* Metadata for an app
|
|
78
78
|
*
|
|
79
79
|
* Keys:
|
|
80
|
-
* appId (string): appId
|
|
80
|
+
* appId (string | null): appId
|
|
81
81
|
*/
|
|
82
82
|
export interface AppRepresentation {
|
|
83
|
-
appId: string;
|
|
83
|
+
appId: string | null;
|
|
84
84
|
description: string | null;
|
|
85
85
|
developerName: string;
|
|
86
86
|
eTag: string;
|