@contember/bindx-generator 0.1.10 → 0.1.12

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.
@@ -82,7 +82,7 @@ export interface BindxSchemaEntityNames {
82
82
  readonly scalars: readonly string[]
83
83
  readonly fields: {
84
84
  readonly [fieldName: string]:
85
- | { readonly type: 'column'; readonly enumName?: string }
85
+ | { readonly type: 'column'; readonly columnType?: string; readonly enumName?: string }
86
86
  | { readonly type: 'one'; readonly entity: string }
87
87
  | { readonly type: 'many'; readonly entity: string }
88
88
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contember/bindx-generator",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "Schema generator for @contember/bindx with role-based ACL support",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -107,7 +107,7 @@ export interface BindxSchemaEntityNames {
107
107
  readonly scalars: readonly string[]
108
108
  readonly fields: {
109
109
  readonly [fieldName: string]:
110
- | { readonly type: 'column'; readonly enumName?: string }
110
+ | { readonly type: 'column'; readonly columnType?: string; readonly enumName?: string }
111
111
  | { readonly type: 'one'; readonly entity: string }
112
112
  | { readonly type: 'many'; readonly entity: string }
113
113
  }