@conduit-client/command-http-graphql-normalized-cache-control 3.16.0 → 3.17.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.
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Declare block for typing the return value of buildCommandClass when the base class is HttpGraphQLNormalizedCacheControlCommand.
|
|
3
3
|
*/
|
|
4
|
-
import type { CacheControlStrategyConfig } from '@conduit-client/service-cache-control/v1';
|
|
5
|
-
import type { FetchService } from '@conduit-client/service-fetch-network/v1';
|
|
4
|
+
import type { NamedCacheControllerService, CacheControlStrategyConfig } from '@conduit-client/service-cache-control/v1';
|
|
5
|
+
import type { FetchService, NamedFetchService } from '@conduit-client/service-fetch-network/v1';
|
|
6
|
+
import type { GraphQLDocumentRootTypeRepository, GraphQLRequestParams } from '@conduit-client/graphql-normalization/v1';
|
|
6
7
|
import type { HttpGraphQLNormalizedCacheControlCommand } from './http-graphql-normalized-cache-control-command';
|
|
7
|
-
export declare class GeneratedHttpGraphQLNormalizedCacheControlCommand<ExtraServices extends object = object> extends HttpGraphQLNormalizedCacheControlCommand<ExtraServices> {
|
|
8
|
+
export declare class GeneratedHttpGraphQLNormalizedCacheControlCommand<ExtraServices extends object = object, ConfigType extends GraphQLRequestParams = GraphQLRequestParams, DocumentRootTypeType extends GraphQLDocumentRootTypeRepository<any, any> = GraphQLDocumentRootTypeRepository<any, any>, ServicesType extends NamedCacheControllerService & NamedFetchService & ExtraServices = NamedCacheControllerService & NamedFetchService & ExtraServices> extends HttpGraphQLNormalizedCacheControlCommand<ExtraServices> {
|
|
9
|
+
readonly config: ConfigType;
|
|
10
|
+
readonly documentRootType: DocumentRootTypeType;
|
|
11
|
+
readonly services: ServicesType;
|
|
8
12
|
get url(): Parameters<FetchService>[0];
|
|
9
13
|
protected get cacheControlStrategyConfig(): CacheControlStrategyConfig;
|
|
10
14
|
readonly exposeSubscribeAndRefresh: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conduit-client/command-http-graphql-normalized-cache-control",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.17.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Luvio Http GraphQL Normalized Cache Control Command",
|
|
6
6
|
"type": "module",
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"watch": "npm run build --watch"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@conduit-client/command-base": "3.
|
|
35
|
-
"@conduit-client/command-cache-control": "3.
|
|
36
|
-
"@conduit-client/command-http-cache-control": "3.
|
|
37
|
-
"@conduit-client/command-http-normalized-cache-control": "3.
|
|
38
|
-
"@conduit-client/graphql-normalization": "3.
|
|
39
|
-
"@conduit-client/onestore-graphql-parser": "3.
|
|
40
|
-
"@conduit-client/service-cache-control": "3.
|
|
41
|
-
"@conduit-client/service-fetch-network": "3.
|
|
42
|
-
"@conduit-client/service-pubsub": "3.
|
|
43
|
-
"@conduit-client/type-normalization": "3.
|
|
44
|
-
"@conduit-client/utils": "3.
|
|
34
|
+
"@conduit-client/command-base": "3.17.1",
|
|
35
|
+
"@conduit-client/command-cache-control": "3.17.1",
|
|
36
|
+
"@conduit-client/command-http-cache-control": "3.17.1",
|
|
37
|
+
"@conduit-client/command-http-normalized-cache-control": "3.17.1",
|
|
38
|
+
"@conduit-client/graphql-normalization": "3.17.1",
|
|
39
|
+
"@conduit-client/onestore-graphql-parser": "3.17.1",
|
|
40
|
+
"@conduit-client/service-cache-control": "3.17.1",
|
|
41
|
+
"@conduit-client/service-fetch-network": "3.17.1",
|
|
42
|
+
"@conduit-client/service-pubsub": "3.17.1",
|
|
43
|
+
"@conduit-client/type-normalization": "3.17.1",
|
|
44
|
+
"@conduit-client/utils": "3.17.1"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
47
|
"extends": "../../../../package.json"
|