@constructive-io/graphql-types 2.12.12 → 2.12.13

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/README.md CHANGED
@@ -28,7 +28,7 @@ const config: ConstructiveOptions = {
28
28
  appendPlugins: [],
29
29
  },
30
30
  api: {
31
- enableMetaApi: true,
31
+ enableServicesApi: true,
32
32
  exposedSchemas: ['public'],
33
33
  },
34
34
  features: {
package/esm/graphile.js CHANGED
@@ -19,7 +19,7 @@ export const graphileFeatureDefaults = {
19
19
  * Default API configuration values
20
20
  */
21
21
  export const apiDefaults = {
22
- enableMetaApi: true,
22
+ enableServicesApi: true,
23
23
  exposedSchemas: [],
24
24
  anonRole: 'administrator',
25
25
  roleName: 'administrator',
package/graphile.d.ts CHANGED
@@ -28,8 +28,8 @@ export interface GraphileFeatureOptions {
28
28
  * Configuration options for the Constructive API
29
29
  */
30
30
  export interface ApiOptions {
31
- /** Whether to enable the meta API endpoints */
32
- enableMetaApi?: boolean;
31
+ /** Whether to enable the services API (domain/subdomain routing via services_public) */
32
+ enableServicesApi?: boolean;
33
33
  /** Database schemas to expose through the API */
34
34
  exposedSchemas?: string[];
35
35
  /** Anonymous role name for unauthenticated requests */
package/graphile.js CHANGED
@@ -22,7 +22,7 @@ exports.graphileFeatureDefaults = {
22
22
  * Default API configuration values
23
23
  */
24
24
  exports.apiDefaults = {
25
- enableMetaApi: true,
25
+ enableServicesApi: true,
26
26
  exposedSchemas: [],
27
27
  anonRole: 'administrator',
28
28
  roleName: 'administrator',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/graphql-types",
3
- "version": "2.12.12",
3
+ "version": "2.12.13",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Constructive GraphQL/Graphile types for PostGraphile integration",
6
6
  "main": "index.js",
@@ -46,5 +46,5 @@
46
46
  "devDependencies": {
47
47
  "makage": "^0.1.10"
48
48
  },
49
- "gitHead": "cb4af2cf6c23dad24cd951c232d3e2006b81aa3d"
49
+ "gitHead": "049ab1b8c49c5711ede9a47c8e8dbb7bbbdf5a1f"
50
50
  }