@prismatic-io/spectral 7.8.2 → 7.8.3

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.
@@ -86,6 +86,7 @@ export interface TriggerPayload {
86
86
  user: User;
87
87
  integration: Integration;
88
88
  flow: Flow;
89
+ startedAt: string;
89
90
  }
90
91
  interface HttpResponse {
91
92
  statusCode: number;
package/dist/testing.js CHANGED
@@ -142,6 +142,7 @@ const defaultTriggerPayload = () => {
142
142
  id: "flowId",
143
143
  name: "Flow 1",
144
144
  },
145
+ startedAt: new Date().toISOString(),
145
146
  };
146
147
  };
147
148
  exports.defaultTriggerPayload = defaultTriggerPayload;
@@ -38,4 +38,6 @@ export interface TriggerPayload {
38
38
  integration: Integration;
39
39
  /** Contains attributes of the Flow that is being executed. */
40
40
  flow: Flow;
41
+ /** The time in UTC that execution started. */
42
+ startedAt: string;
41
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "7.8.2",
3
+ "version": "7.8.3",
4
4
  "description": "Utility library for building Prismatic components",
5
5
  "keywords": [
6
6
  "prismatic"