@prismatic-io/spectral 10.9.0 → 10.11.0

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.
@@ -129,5 +129,7 @@ export type ActionContext<TConfigVars extends ConfigVarResultCollection = Config
129
129
  debug: DebugContext;
130
130
  /** JSON schemas to enable using flows for AI function calls. */
131
131
  flowSchemas: FlowSchemas;
132
+ /** Whether the execution is being run with simulated data. */
133
+ isSimulatedTestExecution?: boolean;
132
134
  };
133
135
  export {};
@@ -99,6 +99,8 @@ export interface Flow<TTriggerPayload extends TriggerPayload = TriggerPayload> {
99
99
  preprocessFlowConfig?: PreprocessFlowConfig;
100
100
  /** Value that specifies whether this flow is synchronous. @default `false` */
101
101
  isSynchronous?: boolean;
102
+ /** Value that specifies whether this flow is an AI agent flow on the integrations MCP server. @default `false` */
103
+ isAgentFlow?: boolean;
102
104
  /** Retry Configuration for this flow. */
103
105
  retryConfig?: RetryConfig;
104
106
  /** Queue Configuration for this flow. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prismatic-io/spectral",
3
- "version": "10.9.0",
3
+ "version": "10.11.0",
4
4
  "description": "Utility library for building Prismatic connectors and code-native integrations",
5
5
  "keywords": ["prismatic"],
6
6
  "main": "dist/index.js",