@snowtop/ent 0.1.8 → 0.1.9

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.8",
3
+ "version": "0.1.9",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -61,6 +61,7 @@ export interface EdgeAction {
61
61
  graphQLName?: string;
62
62
  actionOnlyFields?: ActionField[];
63
63
  canViewerDo?: boolean | CanViewerDo;
64
+ __canFailBETA?: boolean;
64
65
  }
65
66
  export interface InverseAssocEdge {
66
67
  name: string;
@@ -315,6 +316,7 @@ export interface Action {
315
316
  requiredFields?: string[];
316
317
  noFields?: boolean;
317
318
  canViewerDo?: boolean | CanViewerDo;
319
+ __canFailBETA?: boolean;
318
320
  [x: string]: any;
319
321
  }
320
322
  export interface CanViewerDo {