@prismatic-io/spectral 10.3.11 → 10.3.12

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.
@@ -99,6 +99,7 @@ export interface TriggerPayload {
99
99
  integration: IntegrationAttributes;
100
100
  flow: FlowAttributes;
101
101
  startedAt: string;
102
+ globalDebug: boolean;
102
103
  }
103
104
  interface HttpResponse {
104
105
  statusCode: number;
package/dist/testing.js CHANGED
@@ -208,6 +208,7 @@ const defaultTriggerPayload = () => {
208
208
  name: "Flow 1",
209
209
  },
210
210
  startedAt: new Date().toISOString(),
211
+ globalDebug: false,
211
212
  };
212
213
  };
213
214
  exports.defaultTriggerPayload = defaultTriggerPayload;
@@ -40,4 +40,6 @@ export interface TriggerPayload {
40
40
  flow: FlowAttributes;
41
41
  /** The time in UTC that execution started. */
42
42
  startedAt: string;
43
+ /** Determines whether the execution will run in debug mode. */
44
+ globalDebug: boolean;
43
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "10.3.11",
3
+ "version": "10.3.12",
4
4
  "description": "Utility library for building Prismatic connectors and code-native integrations",
5
5
  "keywords": ["prismatic"],
6
6
  "main": "dist/index.js",