@conduit-client/graphql-normalization 3.15.1 → 3.16.0-dev1
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/types/v1/__tests__/test-utils.d.ts +12 -12
- package/package.json +11 -11
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { AuraNormalizedCacheControlCommand } from '@conduit-client/command-aura-normalized-cache-control/v1';
|
|
2
|
-
import { NamedCacheService } from '@conduit-client/service-cache/v1';
|
|
3
|
-
import { Result, SyncOrAsync } from '@conduit-client/utils';
|
|
4
|
-
import { NamedAuraNetworkService } from '@conduit-client/service-aura-network/v1';
|
|
5
|
-
import { CacheControlStrategyConfig, NamedCacheControllerService } from '@conduit-client/service-cache-control/v1';
|
|
6
|
-
import { NamedPubSubService } from '@conduit-client/service-pubsub/v1';
|
|
7
|
-
import { GraphQLData, GraphQLFragmentDefinitions, GraphQLInputExtension, GraphQLResponse, GraphQLVariables } from '../types';
|
|
8
|
-
import { DataOf, WriteInput } from '@conduit-client/type-normalization/v1';
|
|
9
2
|
import { GraphQLDocumentRootTypeRepository, IdentifiableGraphQLTypeRepository } from '../identifiable-object-repository';
|
|
10
|
-
import { SelectionNode } from '@conduit-client/onestore-graphql-parser/v1';
|
|
11
3
|
import { UnidentifiableGraphQLTypeRepository } from '../unidentifiable-object-repository';
|
|
12
|
-
import { CursorConnectionGraphQLTypeRepository
|
|
4
|
+
import { CursorConnectionGraphQLTypeRepository } from '../cursor-connection-graphql-type-repository';
|
|
13
5
|
import { BaseArrayFieldDef, BaseObjectFieldDef, BaseScalarFieldDef } from '../field-defs';
|
|
14
6
|
import { BaseInterfaceRepository, BaseUnionRepository } from '../union-interface-repositories';
|
|
7
|
+
import type { DataOf, WriteInput } from '@conduit-client/type-normalization/v1';
|
|
8
|
+
import type { PaginatedResponse, ConnectionNormalizedData } from '../cursor-connection-graphql-type-repository';
|
|
9
|
+
import type { GraphQLData, GraphQLInputExtension, GraphQLResponse } from '../types';
|
|
10
|
+
import type { NamedPubSubService } from '@conduit-client/service-pubsub/v1';
|
|
11
|
+
import type { CacheControlStrategyConfig, NamedCacheControllerService } from '@conduit-client/service-cache-control/v1';
|
|
12
|
+
import type { NamedAuraNetworkService } from '@conduit-client/service-aura-network/v1';
|
|
13
|
+
import type { Result, SyncOrAsync } from '@conduit-client/utils';
|
|
14
|
+
import type { NamedCacheService } from '@conduit-client/service-cache/v1';
|
|
15
15
|
export declare const namespace = "Test";
|
|
16
16
|
export type User = {
|
|
17
17
|
id: string;
|
|
@@ -370,11 +370,11 @@ export declare class TestAuraNormalizedCacheControlCommand extends AuraNormalize
|
|
|
370
370
|
constructor(services: NamedCacheControllerService & NamedPubSubService & NamedAuraNetworkService);
|
|
371
371
|
buildResultType(): TestGraphQLTypeRootRepository;
|
|
372
372
|
buildQuery(): {
|
|
373
|
-
selections: SelectionNode[];
|
|
373
|
+
selections: import("@conduit-client/onestore-graphql-parser/v1").SelectionNode[];
|
|
374
374
|
request: {
|
|
375
375
|
definitions: {
|
|
376
|
-
variables: GraphQLVariables;
|
|
377
|
-
fragments: GraphQLFragmentDefinitions;
|
|
376
|
+
variables: import("..").GraphQLVariables;
|
|
377
|
+
fragments: import("..").GraphQLFragmentDefinitions;
|
|
378
378
|
};
|
|
379
379
|
};
|
|
380
380
|
parentFieldSelection: import("@conduit-client/onestore-graphql-parser/v1").FieldNode | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conduit-client/graphql-normalization",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.16.0-dev1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Luvio GraphQL Normalization",
|
|
6
6
|
"type": "module",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"watch": "npm run build --watch"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@conduit-client/onestore-graphql-parser": "3.
|
|
36
|
-
"@conduit-client/pagination": "3.
|
|
37
|
-
"@conduit-client/service-cache": "3.
|
|
38
|
-
"@conduit-client/service-pubsub": "3.
|
|
39
|
-
"@conduit-client/type-normalization": "3.
|
|
40
|
-
"@conduit-client/utils": "3.
|
|
35
|
+
"@conduit-client/onestore-graphql-parser": "3.16.0-dev1",
|
|
36
|
+
"@conduit-client/pagination": "3.16.0-dev1",
|
|
37
|
+
"@conduit-client/service-cache": "3.16.0-dev1",
|
|
38
|
+
"@conduit-client/service-pubsub": "3.16.0-dev1",
|
|
39
|
+
"@conduit-client/type-normalization": "3.16.0-dev1",
|
|
40
|
+
"@conduit-client/utils": "3.16.0-dev1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@conduit-client/command-aura-normalized-cache-control": "3.
|
|
44
|
-
"@conduit-client/command-base": "3.
|
|
45
|
-
"@conduit-client/service-cache-control": "3.
|
|
46
|
-
"@conduit-client/service-cache-inclusion-policy": "3.
|
|
43
|
+
"@conduit-client/command-aura-normalized-cache-control": "3.16.0-dev1",
|
|
44
|
+
"@conduit-client/command-base": "3.16.0-dev1",
|
|
45
|
+
"@conduit-client/service-cache-control": "3.16.0-dev1",
|
|
46
|
+
"@conduit-client/service-cache-inclusion-policy": "3.16.0-dev1"
|
|
47
47
|
},
|
|
48
48
|
"volta": {
|
|
49
49
|
"extends": "../../../package.json"
|