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