@constructive-io/graphql-types 2.12.9 → 2.12.11
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/graphile.js +6 -2
- package/graphile.js +6 -2
- package/package.json +5 -5
package/esm/graphile.js
CHANGED
|
@@ -13,7 +13,7 @@ export const graphileDefaults = {
|
|
|
13
13
|
export const graphileFeatureDefaults = {
|
|
14
14
|
simpleInflection: true,
|
|
15
15
|
oppositeBaseNames: true,
|
|
16
|
-
postgis: true
|
|
16
|
+
postgis: true,
|
|
17
17
|
};
|
|
18
18
|
/**
|
|
19
19
|
* Default API configuration values
|
|
@@ -25,5 +25,9 @@ export const apiDefaults = {
|
|
|
25
25
|
roleName: 'administrator',
|
|
26
26
|
defaultDatabaseId: 'hard-coded',
|
|
27
27
|
isPublic: true,
|
|
28
|
-
metaSchemas: [
|
|
28
|
+
metaSchemas: [
|
|
29
|
+
'services_public',
|
|
30
|
+
'metaschema_public',
|
|
31
|
+
'metaschema_modules_public',
|
|
32
|
+
],
|
|
29
33
|
};
|
package/graphile.js
CHANGED
|
@@ -16,7 +16,7 @@ exports.graphileDefaults = {
|
|
|
16
16
|
exports.graphileFeatureDefaults = {
|
|
17
17
|
simpleInflection: true,
|
|
18
18
|
oppositeBaseNames: true,
|
|
19
|
-
postgis: true
|
|
19
|
+
postgis: true,
|
|
20
20
|
};
|
|
21
21
|
/**
|
|
22
22
|
* Default API configuration values
|
|
@@ -28,5 +28,9 @@ exports.apiDefaults = {
|
|
|
28
28
|
roleName: 'administrator',
|
|
29
29
|
defaultDatabaseId: 'hard-coded',
|
|
30
30
|
isPublic: true,
|
|
31
|
-
metaSchemas: [
|
|
31
|
+
metaSchemas: [
|
|
32
|
+
'services_public',
|
|
33
|
+
'metaschema_public',
|
|
34
|
+
'metaschema_modules_public',
|
|
35
|
+
],
|
|
32
36
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-io/graphql-types",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.11",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive GraphQL/Graphile types for PostGraphile integration",
|
|
6
6
|
"main": "index.js",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@pgpmjs/types": "^2.
|
|
32
|
+
"@pgpmjs/types": "^2.14.0",
|
|
33
33
|
"deepmerge": "^4.3.1",
|
|
34
34
|
"graphile-build": "^4.14.1",
|
|
35
|
-
"pg-env": "^1.2.
|
|
35
|
+
"pg-env": "^1.2.5",
|
|
36
36
|
"postgraphile": "^4.14.1"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"graphile"
|
|
45
45
|
],
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"makage": "^0.1.
|
|
47
|
+
"makage": "^0.1.10"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "127c05d5673647cf04111771701a1e4bc7b47ba8"
|
|
50
50
|
}
|