@snowtop/ent 0.0.29 → 0.0.30-alpha

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.29",
3
+ "version": "0.0.30-alpha",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -168,6 +168,10 @@ export interface Action {
168
168
  graphQLName?: string;
169
169
  hideFromGraphQL?: boolean;
170
170
  actionOnlyFields?: ActionField[];
171
+ excludedFields?: string[];
172
+ optionalFields?: string[];
173
+ requiredFields?: string[];
174
+ noFields?: boolean;
171
175
  }
172
176
  export declare const NoFields = "__NO_FIELDS__";
173
177
  export declare function requiredField(field: string): string;