graphile-schema 1.7.1 → 1.8.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.
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +3 -1
- package/package.json +3 -3
package/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { buildSchemaSDL } from './build-schema';
|
|
2
2
|
export type { BuildSchemaOptions } from './build-schema';
|
|
3
|
+
export { _cachedTablesMeta } from 'graphile-settings';
|
|
3
4
|
export { fetchEndpointSchemaSDL } from './fetch-endpoint-schema';
|
|
4
5
|
export type { FetchEndpointSchemaOptions } from './fetch-endpoint-schema';
|
package/esm/index.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { buildSchemaSDL } from './build-schema';
|
|
2
2
|
export type { BuildSchemaOptions } from './build-schema';
|
|
3
|
+
export { _cachedTablesMeta } from 'graphile-settings';
|
|
3
4
|
export { fetchEndpointSchemaSDL } from './fetch-endpoint-schema';
|
|
4
5
|
export type { FetchEndpointSchemaOptions } from './fetch-endpoint-schema';
|
package/index.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.fetchEndpointSchemaSDL = exports.buildSchemaSDL = void 0;
|
|
3
|
+
exports.fetchEndpointSchemaSDL = exports._cachedTablesMeta = exports.buildSchemaSDL = void 0;
|
|
4
4
|
var build_schema_1 = require("./build-schema");
|
|
5
5
|
Object.defineProperty(exports, "buildSchemaSDL", { enumerable: true, get: function () { return build_schema_1.buildSchemaSDL; } });
|
|
6
|
+
var graphile_settings_1 = require("graphile-settings");
|
|
7
|
+
Object.defineProperty(exports, "_cachedTablesMeta", { enumerable: true, get: function () { return graphile_settings_1._cachedTablesMeta; } });
|
|
6
8
|
var fetch_endpoint_schema_1 = require("./fetch-endpoint-schema");
|
|
7
9
|
Object.defineProperty(exports, "fetchEndpointSchemaSDL", { enumerable: true, get: function () { return fetch_endpoint_schema_1.fetchEndpointSchemaSDL; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-schema",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Build GraphQL SDL from PostgreSQL databases using PostGraphile v5",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"deepmerge": "^4.3.1",
|
|
33
33
|
"graphile-build": "5.0.0-rc.6",
|
|
34
34
|
"graphile-config": "1.0.0-rc.6",
|
|
35
|
-
"graphile-settings": "^4.
|
|
35
|
+
"graphile-settings": "^4.12.1",
|
|
36
36
|
"graphql": "16.13.0",
|
|
37
37
|
"pg-cache": "^3.3.4",
|
|
38
38
|
"pg-env": "^1.7.3"
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"introspection",
|
|
51
51
|
"constructive"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "b0ff4ed0025af0e5df91d8e3535c347e4cde6438"
|
|
54
54
|
}
|