@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 +1 -1
- package/schema/schema.d.ts +2 -0
package/package.json
CHANGED
package/schema/schema.d.ts
CHANGED
|
@@ -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 {
|