@prismatic-io/spectral 7.8.3 → 7.8.4

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.
@@ -63,6 +63,7 @@ export interface ActionContext {
63
63
  user: User;
64
64
  integration: Integration;
65
65
  flow: Flow;
66
+ startedAt: string;
66
67
  }
67
68
  declare type TriggerOptionChoice = "invalid" | "valid" | "required";
68
69
  export interface TriggerPayload {
package/dist/testing.js CHANGED
@@ -77,6 +77,7 @@ const baseActionContext = {
77
77
  id: "flowId",
78
78
  name: "Flow 1",
79
79
  },
80
+ startedAt: new Date().toISOString(),
80
81
  };
81
82
  /**
82
83
  * Invokes specified ActionDefinition perform function using supplied params
@@ -33,4 +33,6 @@ export interface ActionContext {
33
33
  integration: Integration;
34
34
  /** Contains attributes of the Flow that is being executed. */
35
35
  flow: Flow;
36
+ /** The time in UTC that execution started. */
37
+ startedAt: string;
36
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "7.8.3",
3
+ "version": "7.8.4",
4
4
  "description": "Utility library for building Prismatic components",
5
5
  "keywords": [
6
6
  "prismatic"