@pgpmjs/migrate-client 0.14.2 → 0.15.0

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.
@@ -2,7 +2,7 @@ import type { OrmClientConfig } from './client';
2
2
  import { MigrateFileModel } from './models/migrateFile';
3
3
  import { SqlActionModel } from './models/sqlAction';
4
4
  export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
5
- export { GraphQLRequestError } from './client';
5
+ export { GraphQLRequestError, FetchAdapter } from './client';
6
6
  export { QueryBuilder } from './query-builder';
7
7
  export * from './select-types';
8
8
  export * from './models';
@@ -7,7 +7,7 @@ import { OrmClient } from './client';
7
7
  import { MigrateFileModel } from './models/migrateFile';
8
8
  import { SqlActionModel } from './models/sqlAction';
9
9
  import { createMutationOperations } from './mutation';
10
- export { GraphQLRequestError } from './client';
10
+ export { GraphQLRequestError, FetchAdapter } from './client';
11
11
  export { QueryBuilder } from './query-builder';
12
12
  export * from './select-types';
13
13
  export * from './models';
@@ -2,7 +2,7 @@ import type { OrmClientConfig } from './client';
2
2
  import { MigrateFileModel } from './models/migrateFile';
3
3
  import { SqlActionModel } from './models/sqlAction';
4
4
  export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
5
- export { GraphQLRequestError } from './client';
5
+ export { GraphQLRequestError, FetchAdapter } from './client';
6
6
  export { QueryBuilder } from './query-builder';
7
7
  export * from './select-types';
8
8
  export * from './models';
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.createMutationOperations = exports.QueryBuilder = exports.GraphQLRequestError = void 0;
17
+ exports.createMutationOperations = exports.QueryBuilder = exports.FetchAdapter = exports.GraphQLRequestError = void 0;
18
18
  exports.createClient = createClient;
19
19
  /**
20
20
  * ORM Client - createClient factory
@@ -27,6 +27,7 @@ const sqlAction_1 = require("./models/sqlAction");
27
27
  const mutation_1 = require("./mutation");
28
28
  var client_2 = require("./client");
29
29
  Object.defineProperty(exports, "GraphQLRequestError", { enumerable: true, get: function () { return client_2.GraphQLRequestError; } });
30
+ Object.defineProperty(exports, "FetchAdapter", { enumerable: true, get: function () { return client_2.FetchAdapter; } });
30
31
  var query_builder_1 = require("./query-builder");
31
32
  Object.defineProperty(exports, "QueryBuilder", { enumerable: true, get: function () { return query_builder_1.QueryBuilder; } });
32
33
  __exportStar(require("./select-types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pgpmjs/migrate-client",
3
- "version": "0.14.2",
3
+ "version": "0.15.0",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Typed GraphQL ORM client for the Constructive Migrate API (db_migrate schema)",
6
6
  "main": "index.js",
@@ -40,9 +40,9 @@
40
40
  ],
41
41
  "dependencies": {
42
42
  "@0no-co/graphql.web": "^1.1.2",
43
- "@constructive-io/graphql-query": "^3.26.2",
44
- "@constructive-io/graphql-types": "^3.11.0",
45
- "gql-ast": "^3.10.0",
43
+ "@constructive-io/graphql-query": "^3.27.0",
44
+ "@constructive-io/graphql-types": "^3.12.0",
45
+ "gql-ast": "^3.11.0",
46
46
  "graphql": "16.13.0"
47
47
  },
48
48
  "devDependencies": {
@@ -50,5 +50,5 @@
50
50
  "makage": "^0.3.0",
51
51
  "typescript": "^5.9.3"
52
52
  },
53
- "gitHead": "c9317afa5b5c2401ab1a18c927c3fd75b59a0b01"
53
+ "gitHead": "0503916f414a3b8a6f6cbe46e03a59988b2f3cb5"
54
54
  }