@nordcraft/core 1.0.74 → 1.0.75

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.
@@ -228,7 +228,7 @@ export declare enum HeadTagTypes {
228
228
  }
229
229
  export interface EventModel {
230
230
  trigger: string;
231
- actions: ActionModel[];
231
+ actions?: ActionModel[] | null;
232
232
  }
233
233
  export interface CustomActionArgument {
234
234
  name: string;
package/package.json CHANGED
@@ -11,5 +11,5 @@
11
11
  },
12
12
  "files": ["dist", "src"],
13
13
  "main": "dist/index.js",
14
- "version": "1.0.74"
14
+ "version": "1.0.75"
15
15
  }
@@ -272,7 +272,7 @@ export enum HeadTagTypes {
272
272
 
273
273
  export interface EventModel {
274
274
  trigger: string
275
- actions: ActionModel[]
275
+ actions?: ActionModel[] | null
276
276
  }
277
277
 
278
278
  export interface CustomActionArgument {