@graphql-codegen/typescript-graphql-apollo 1.2.1 → 2.0.0-alpha-20230524082546-d7e1d0a4a

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/cjs/config.js CHANGED
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
package/cjs/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GraphQLApolloVisitor = exports.validate = exports.plugin = void 0;
4
- const plugin_helpers_1 = require("@graphql-codegen/plugin-helpers");
4
+ const path_1 = require("path");
5
5
  const graphql_1 = require("graphql");
6
+ const plugin_helpers_1 = require("@graphql-codegen/plugin-helpers");
6
7
  const visitor_js_1 = require("./visitor.js");
7
8
  Object.defineProperty(exports, "GraphQLApolloVisitor", { enumerable: true, get: function () { return visitor_js_1.GraphQLApolloVisitor; } });
8
- const path_1 = require("path");
9
9
  const plugin = (schema, documents, config) => {
10
10
  const allAst = (0, graphql_1.concatAST)(documents.map(v => v.document));
11
11
  const allFragments = [
package/cjs/visitor.js CHANGED
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GraphQLApolloVisitor = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const visitor_plugin_common_1 = require("@graphql-codegen/visitor-plugin-common");
6
5
  const auto_bind_1 = tslib_1.__importDefault(require("auto-bind"));
7
6
  const change_case_all_1 = require("change-case-all");
8
7
  const graphql_1 = require("graphql");
8
+ const visitor_plugin_common_1 = require("@graphql-codegen/visitor-plugin-common");
9
9
  class GraphQLApolloVisitor extends visitor_plugin_common_1.ClientSideBaseVisitor {
10
10
  constructor(schema, fragments, rawConfig) {
11
11
  super(schema, fragments, rawConfig, {});
package/esm/config.js CHANGED
@@ -1 +0,0 @@
1
- export {};
package/esm/index.js CHANGED
@@ -1,7 +1,7 @@
1
- import { oldVisit } from '@graphql-codegen/plugin-helpers';
1
+ import { extname } from 'path';
2
2
  import { concatAST, Kind } from 'graphql';
3
+ import { oldVisit } from '@graphql-codegen/plugin-helpers';
3
4
  import { GraphQLApolloVisitor } from './visitor.js';
4
- import { extname } from 'path';
5
5
  export const plugin = (schema, documents, config) => {
6
6
  const allAst = concatAST(documents.map(v => v.document));
7
7
  const allFragments = [
package/esm/visitor.js CHANGED
@@ -1,7 +1,7 @@
1
- import { ClientSideBaseVisitor, } from '@graphql-codegen/visitor-plugin-common';
2
1
  import autoBind from 'auto-bind';
3
2
  import { camelCase } from 'change-case-all';
4
3
  import { print } from 'graphql';
4
+ import { ClientSideBaseVisitor, } from '@graphql-codegen/visitor-plugin-common';
5
5
  export class GraphQLApolloVisitor extends ClientSideBaseVisitor {
6
6
  constructor(schema, fragments, rawConfig) {
7
7
  super(schema, fragments, rawConfig, {});
package/package.json CHANGED
@@ -1,24 +1,27 @@
1
1
  {
2
2
  "name": "@graphql-codegen/typescript-graphql-apollo",
3
- "version": "1.2.1",
3
+ "version": "2.0.0-alpha-20230524082546-d7e1d0a4a",
4
4
  "description": "GraphQL Code Generator plugin for generating a ready-to-use SDK based on apollo client and GraphQL operations",
5
5
  "peerDependencies": {
6
6
  "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
7
7
  "graphql-tag": "^2.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-codegen/plugin-helpers": "^2.6.2",
10
+ "@graphql-codegen/plugin-helpers": "^3.0.0",
11
11
  "@graphql-codegen/visitor-plugin-common": "^2.12.1",
12
12
  "auto-bind": "~4.0.0",
13
- "change-case-all": "1.0.14",
13
+ "change-case-all": "1.0.15",
14
14
  "tslib": "~2.4.0"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
18
- "url": "https://github.com/dotansimha/graphql-code-generator.git",
18
+ "url": "https://github.com/dotansimha/graphql-code-generator-community.git",
19
19
  "directory": "packages/plugins/typescript/graphql-apollo"
20
20
  },
21
21
  "license": "MIT",
22
+ "engines": {
23
+ "node": ">= 16.0.0"
24
+ },
22
25
  "main": "cjs/index.js",
23
26
  "module": "esm/index.js",
24
27
  "typings": "typings/index.d.ts",
@@ -1,6 +1,6 @@
1
- import { PluginValidateFn, PluginFunction } from '@graphql-codegen/plugin-helpers';
2
- import { GraphQLApolloVisitor } from './visitor.cjs';
1
+ import { PluginFunction, PluginValidateFn } from '@graphql-codegen/plugin-helpers';
3
2
  import { RawGraphQLApolloPluginConfig } from './config.cjs';
3
+ import { GraphQLApolloVisitor } from './visitor.cjs';
4
4
  export declare const plugin: PluginFunction<RawGraphQLApolloPluginConfig>;
5
5
  export declare const validate: PluginValidateFn<any>;
6
6
  export { GraphQLApolloVisitor };
@@ -1,6 +1,6 @@
1
- import { PluginValidateFn, PluginFunction } from '@graphql-codegen/plugin-helpers';
2
- import { GraphQLApolloVisitor } from './visitor.js';
1
+ import { PluginFunction, PluginValidateFn } from '@graphql-codegen/plugin-helpers';
3
2
  import { RawGraphQLApolloPluginConfig } from './config.js';
3
+ import { GraphQLApolloVisitor } from './visitor.js';
4
4
  export declare const plugin: PluginFunction<RawGraphQLApolloPluginConfig>;
5
5
  export declare const validate: PluginValidateFn<any>;
6
6
  export { GraphQLApolloVisitor };
@@ -1,5 +1,5 @@
1
- import { ClientSideBasePluginConfig, ClientSideBaseVisitor, LoadedFragment } from '@graphql-codegen/visitor-plugin-common';
2
1
  import { GraphQLSchema, OperationDefinitionNode } from 'graphql';
2
+ import { ClientSideBasePluginConfig, ClientSideBaseVisitor, LoadedFragment } from '@graphql-codegen/visitor-plugin-common';
3
3
  import { RawGraphQLApolloPluginConfig } from './config.cjs';
4
4
  export interface GraphQLRequestPluginConfig extends ClientSideBasePluginConfig {
5
5
  rawRequest: boolean;
@@ -1,5 +1,5 @@
1
- import { ClientSideBasePluginConfig, ClientSideBaseVisitor, LoadedFragment } from '@graphql-codegen/visitor-plugin-common';
2
1
  import { GraphQLSchema, OperationDefinitionNode } from 'graphql';
2
+ import { ClientSideBasePluginConfig, ClientSideBaseVisitor, LoadedFragment } from '@graphql-codegen/visitor-plugin-common';
3
3
  import { RawGraphQLApolloPluginConfig } from './config.js';
4
4
  export interface GraphQLRequestPluginConfig extends ClientSideBasePluginConfig {
5
5
  rawRequest: boolean;