@snowtop/ent 0.0.32-alpha.2 → 0.0.32-alpha.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowtop/ent",
3
- "version": "0.0.32-alpha.2",
3
+ "version": "0.0.32-alpha.3",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -100,6 +100,7 @@ export interface ForeignKey {
100
100
  column: string;
101
101
  name?: string;
102
102
  disableIndex?: boolean;
103
+ disableBuilderType?: boolean;
103
104
  }
104
105
  declare type loadRowFn = (type: string) => LoadEntOptions<Ent>;
105
106
  export interface InverseFieldEdge {
@@ -113,6 +114,7 @@ export interface FieldEdge {
113
114
  inverseEdge?: string | InverseFieldEdge;
114
115
  enforceSchema?: boolean;
115
116
  loadRowByType?: loadRowFn;
117
+ disableBuilderType?: boolean;
116
118
  }
117
119
  export interface FieldOptions {
118
120
  name: string;
@@ -139,6 +141,7 @@ export interface FieldOptions {
139
141
  export interface PolymorphicOptions {
140
142
  types?: string[];
141
143
  hideFromInverseGraphQL?: boolean;
144
+ disableBuilderType?: boolean;
142
145
  }
143
146
  export interface Field extends FieldOptions {
144
147
  type: Type;