@graphql-codegen/typescript-oclif 2.3.6 → 3.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/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GraphQLRequestVisitor = 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, "GraphQLRequestVisitor", { enumerable: true, get: function () { return visitor_js_1.GraphQLRequestVisitor; } });
8
- const path_1 = require("path");
9
9
  const plugin = (schema, documents, config, info) => {
10
10
  const allAst = (0, graphql_1.concatAST)(documents.reduce((prev, v) => {
11
11
  return [...prev, v.document];
package/cjs/visitor.js CHANGED
@@ -2,9 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GraphQLRequestVisitor = 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 graphql_1 = require("graphql");
7
+ const visitor_plugin_common_1 = require("@graphql-codegen/visitor-plugin-common");
8
8
  const utils_js_1 = require("./utils.js");
9
9
  class GraphQLRequestVisitor extends visitor_plugin_common_1.ClientSideBaseVisitor {
10
10
  constructor(schema, fragments, rawConfig, info) {
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 { GraphQLRequestVisitor } from './visitor.js';
4
- import { extname } from 'path';
5
5
  export const plugin = (schema, documents, config, info) => {
6
6
  const allAst = concatAST(documents.reduce((prev, v) => {
7
7
  return [...prev, v.document];
package/esm/visitor.js CHANGED
@@ -1,6 +1,6 @@
1
- import { ClientSideBaseVisitor, indentMultiline, } from '@graphql-codegen/visitor-plugin-common';
2
1
  import autoBind from 'auto-bind';
3
2
  import { print } from 'graphql';
3
+ import { ClientSideBaseVisitor, indentMultiline, } from '@graphql-codegen/visitor-plugin-common';
4
4
  import { getFlagConfigForVariableDefinition, omitOclifDirectives } from './utils.js';
5
5
  export class GraphQLRequestVisitor extends ClientSideBaseVisitor {
6
6
  constructor(schema, fragments, rawConfig, info) {
package/package.json CHANGED
@@ -1,24 +1,27 @@
1
1
  {
2
2
  "name": "@graphql-codegen/typescript-oclif",
3
- "version": "2.3.6",
3
+ "version": "3.0.0-alpha-20230524082546-d7e1d0a4a",
4
4
  "description": "GraphQL Code Generator plugin for generating a CLI tool with oclif",
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.7.2",
10
+ "@graphql-codegen/plugin-helpers": "^3.0.0",
11
11
  "@graphql-codegen/visitor-plugin-common": "2.13.1",
12
12
  "auto-bind": "~4.0.0",
13
13
  "tslib": "~2.4.0"
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/dotansimha/graphql-code-generator.git",
17
+ "url": "https://github.com/dotansimha/graphql-code-generator-community.git",
18
18
  "directory": "packages/plugins/typescript/oclif"
19
19
  },
20
20
  "author": "Kalan Snyder <hello@kalan.io>",
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,4 +1,4 @@
1
- import { PluginValidateFn, PluginFunction } from '@graphql-codegen/plugin-helpers';
1
+ import { PluginFunction, PluginValidateFn } from '@graphql-codegen/plugin-helpers';
2
2
  import { RawClientSideBasePluginConfig } from '@graphql-codegen/visitor-plugin-common';
3
3
  import { GraphQLRequestVisitor } from './visitor.cjs';
4
4
  export interface Config extends RawClientSideBasePluginConfig {
@@ -1,4 +1,4 @@
1
- import { PluginValidateFn, PluginFunction } from '@graphql-codegen/plugin-helpers';
1
+ import { PluginFunction, PluginValidateFn } from '@graphql-codegen/plugin-helpers';
2
2
  import { RawClientSideBasePluginConfig } from '@graphql-codegen/visitor-plugin-common';
3
3
  import { GraphQLRequestVisitor } from './visitor.js';
4
4
  export interface Config extends RawClientSideBasePluginConfig {
@@ -1,5 +1,5 @@
1
- import { ClientSideBaseVisitor, ClientSideBasePluginConfig, 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 { Config, Info } from './index.cjs';
4
4
  export declare class GraphQLRequestVisitor extends ClientSideBaseVisitor<Config, ClientSideBasePluginConfig> {
5
5
  private _operationsToInclude;
@@ -1,5 +1,5 @@
1
- import { ClientSideBaseVisitor, ClientSideBasePluginConfig, 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 { Config, Info } from './index.js';
4
4
  export declare class GraphQLRequestVisitor extends ClientSideBaseVisitor<Config, ClientSideBasePluginConfig> {
5
5
  private _operationsToInclude;