@snowtop/ent 0.1.0-alpha140 → 0.1.0-alpha141

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.1.0-alpha140",
3
+ "version": "0.1.0-alpha141",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -205,6 +205,7 @@ export interface FieldEdge {
205
205
  enforceSchema?: boolean;
206
206
  getLoaderInfoFromSchema?: getLoaderInfoFn;
207
207
  disableBuilderType?: boolean;
208
+ edgeConstName?: string;
208
209
  }
209
210
  interface PrivateOptions {
210
211
  exposeToActions?: boolean;
@@ -244,6 +245,7 @@ export interface PolymorphicOptions {
244
245
  hideFromInverseGraphQL?: boolean;
245
246
  disableBuilderType?: boolean;
246
247
  serverDefault?: any;
248
+ edgeConstName?: string;
247
249
  }
248
250
  export interface Field extends FieldOptions {
249
251
  type: Type;