@keystrokehq/roboflow 0.1.2 → 0.1.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.
Files changed (49) hide show
  1. package/dist/actions/describe-workflow-interface.cjs +6 -6
  2. package/dist/actions/describe-workflow-interface.cjs.map +1 -1
  3. package/dist/actions/describe-workflow-interface.d.cts +7 -7
  4. package/dist/actions/describe-workflow-interface.d.mts +7 -7
  5. package/dist/actions/describe-workflow-interface.mjs +6 -6
  6. package/dist/actions/describe-workflow-interface.mjs.map +1 -1
  7. package/dist/actions/get-execution-engine-versions.cjs +1 -1
  8. package/dist/actions/get-execution-engine-versions.cjs.map +1 -1
  9. package/dist/actions/get-execution-engine-versions.d.cts +1 -1
  10. package/dist/actions/get-execution-engine-versions.d.mts +1 -1
  11. package/dist/actions/get-execution-engine-versions.mjs +1 -1
  12. package/dist/actions/get-execution-engine-versions.mjs.map +1 -1
  13. package/dist/actions/get-server-info.cjs +1 -1
  14. package/dist/actions/get-server-info.cjs.map +1 -1
  15. package/dist/actions/get-server-info.d.cts +1 -1
  16. package/dist/actions/get-server-info.d.mts +1 -1
  17. package/dist/actions/get-server-info.mjs +1 -1
  18. package/dist/actions/get-server-info.mjs.map +1 -1
  19. package/dist/actions/get-server-metrics.cjs +1 -1
  20. package/dist/actions/get-server-metrics.cjs.map +1 -1
  21. package/dist/actions/get-server-metrics.d.cts +2 -2
  22. package/dist/actions/get-server-metrics.d.mts +2 -2
  23. package/dist/actions/get-server-metrics.mjs +1 -1
  24. package/dist/actions/get-server-metrics.mjs.map +1 -1
  25. package/dist/actions/get-workflow-schema.cjs +1 -1
  26. package/dist/actions/get-workflow-schema.cjs.map +1 -1
  27. package/dist/actions/get-workflow-schema.d.cts +1 -1
  28. package/dist/actions/get-workflow-schema.d.mts +1 -1
  29. package/dist/actions/get-workflow-schema.mjs +1 -1
  30. package/dist/actions/get-workflow-schema.mjs.map +1 -1
  31. package/dist/actions/run-workflow.cjs +1 -1
  32. package/dist/actions/run-workflow.cjs.map +1 -1
  33. package/dist/actions/run-workflow.d.cts +1 -1
  34. package/dist/actions/run-workflow.d.mts +1 -1
  35. package/dist/actions/run-workflow.mjs +1 -1
  36. package/dist/actions/run-workflow.mjs.map +1 -1
  37. package/dist/actions/validate-workflow.cjs +4 -4
  38. package/dist/actions/validate-workflow.cjs.map +1 -1
  39. package/dist/actions/validate-workflow.d.cts +7 -4
  40. package/dist/actions/validate-workflow.d.mts +7 -4
  41. package/dist/actions/validate-workflow.mjs +4 -4
  42. package/dist/actions/validate-workflow.mjs.map +1 -1
  43. package/dist/catalog.cjs +1 -1
  44. package/dist/catalog.cjs.map +1 -1
  45. package/dist/catalog.d.cts +1 -1
  46. package/dist/catalog.d.mts +1 -1
  47. package/dist/catalog.mjs +1 -1
  48. package/dist/catalog.mjs.map +1 -1
  49. package/package.json +1 -1
@@ -3,14 +3,14 @@ let zod = require("zod");
3
3
  //#region src/actions/describe-workflow-interface.ts
4
4
  const RoboflowDescribeWorkflowInterfaceInput = zod.z.object({
5
5
  api_key: zod.z.string().describe("Roboflow API Key that will be passed to the model during initialization for artifact retrieval"),
6
- specification: zod.z.object({}).describe("Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).")
6
+ specification: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).")
7
7
  }).describe("Request model for describing the interface of a workflow.");
8
8
  const RoboflowDescribeWorkflowInterfaceOutput = zod.z.object({
9
- inputs: zod.z.object({}).describe("Dictionary mapping Workflow inputs to their kinds"),
10
- outputs: zod.z.object({}).describe("Dictionary mapping Workflow outputs to their kinds"),
11
- typing_hints: zod.z.object({}).describe("Dictionary mapping name of the kind with Python typing hint for underlying serialised object"),
12
- kinds_schemas: zod.z.object({}).describe("Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.")
13
- }).describe("Response model containing the described interface of the workflow.");
9
+ inputs: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Dictionary mapping Workflow inputs to their kinds"),
10
+ outputs: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Dictionary mapping Workflow outputs to their kinds"),
11
+ typing_hints: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Dictionary mapping name of the kind with Python typing hint for underlying serialised object"),
12
+ kinds_schemas: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.")
13
+ }).passthrough().describe("Response model containing the described interface of the workflow.");
14
14
  const roboflowDescribeWorkflowInterface = require_action.action("ROBOFLOW_DESCRIBE_WORKFLOW_INTERFACE", {
15
15
  slug: "roboflow-describe-workflow-interface",
16
16
  name: "Describe Workflow Interface",
@@ -1 +1 @@
1
- {"version":3,"file":"describe-workflow-interface.cjs","names":["z","action"],"sources":["../../src/actions/describe-workflow-interface.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowDescribeWorkflowInterfaceInput = z.object({\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval\"),\n specification: z.object({}).describe(\"Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).\"),\n}).describe(\"Request model for describing the interface of a workflow.\");\nexport const RoboflowDescribeWorkflowInterfaceOutput = z.object({\n inputs: z.object({}).describe(\"Dictionary mapping Workflow inputs to their kinds\"),\n outputs: z.object({}).describe(\"Dictionary mapping Workflow outputs to their kinds\"),\n typing_hints: z.object({}).describe(\"Dictionary mapping name of the kind with Python typing hint for underlying serialised object\"),\n kinds_schemas: z.object({}).describe(\"Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.\"),\n}).describe(\"Response model containing the described interface of the workflow.\");\n\nexport const roboflowDescribeWorkflowInterface = action(\"ROBOFLOW_DESCRIBE_WORKFLOW_INTERFACE\", {\n slug: \"roboflow-describe-workflow-interface\",\n name: \"Describe Workflow Interface\",\n description: \"Tool to describe the interface of a workflow specification. Use when you need to understand the inputs, outputs, and types for a Roboflow workflow definition.\",\n input: RoboflowDescribeWorkflowInterfaceInput,\n output: RoboflowDescribeWorkflowInterfaceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yCAAyCA,IAAAA,EAAE,OAAO;CAC7D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gGAAgG;CAC7H,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+NAA+N;AACtQ,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAa,0CAA0CA,IAAAA,EAAE,OAAO;CAC9D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,mDAAmD;CACjF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oDAAoD;CACnF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8FAA8F;CAClI,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uJAAuJ;AAC9L,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAEhF,MAAa,oCAAoCC,eAAAA,OAAO,wCAAwC;CAC9F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"describe-workflow-interface.cjs","names":["z","action"],"sources":["../../src/actions/describe-workflow-interface.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowDescribeWorkflowInterfaceInput = z.object({\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval\"),\n specification: z.record(z.string(), z.unknown()).describe(\"Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).\"),\n}).describe(\"Request model for describing the interface of a workflow.\");\nexport const RoboflowDescribeWorkflowInterfaceOutput = z.object({\n inputs: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Workflow inputs to their kinds\"),\n outputs: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Workflow outputs to their kinds\"),\n typing_hints: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping name of the kind with Python typing hint for underlying serialised object\"),\n kinds_schemas: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.\"),\n}).passthrough().describe(\"Response model containing the described interface of the workflow.\");\n\nexport const roboflowDescribeWorkflowInterface = action(\"ROBOFLOW_DESCRIBE_WORKFLOW_INTERFACE\", {\n slug: \"roboflow-describe-workflow-interface\",\n name: \"Describe Workflow Interface\",\n description: \"Tool to describe the interface of a workflow specification. Use when you need to understand the inputs, outputs, and types for a Roboflow workflow definition.\",\n input: RoboflowDescribeWorkflowInterfaceInput,\n output: RoboflowDescribeWorkflowInterfaceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yCAAyCA,IAAAA,EAAE,OAAO;CAC7D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gGAAgG;CAC7H,eAAeA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,+NAA+N;AAC3R,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAa,0CAA0CA,IAAAA,EAAE,OAAO;CAC9D,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mDAAmD;CACtG,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oDAAoD;CACxG,cAAcA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,8FAA8F;CACvJ,eAAeA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uJAAuJ;AACnN,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oEAAoE;AAE9F,MAAa,oCAAoCC,eAAAA,OAAO,wCAAwC;CAC9F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -3,17 +3,17 @@ import { z } from "zod";
3
3
  //#region src/actions/describe-workflow-interface.d.ts
4
4
  declare const RoboflowDescribeWorkflowInterfaceInput: z.ZodObject<{
5
5
  api_key: z.ZodString;
6
- specification: z.ZodObject<{}, z.core.$strip>;
6
+ specification: z.ZodRecord<z.ZodString, z.ZodUnknown>;
7
7
  }, z.core.$strip>;
8
8
  declare const RoboflowDescribeWorkflowInterfaceOutput: z.ZodObject<{
9
- inputs: z.ZodObject<{}, z.core.$strip>;
10
- outputs: z.ZodObject<{}, z.core.$strip>;
11
- typing_hints: z.ZodObject<{}, z.core.$strip>;
12
- kinds_schemas: z.ZodObject<{}, z.core.$strip>;
13
- }, z.core.$strip>;
9
+ inputs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
10
+ outputs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
11
+ typing_hints: z.ZodRecord<z.ZodString, z.ZodUnknown>;
12
+ kinds_schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
13
+ }, z.core.$loose>;
14
14
  declare const roboflowDescribeWorkflowInterface: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  api_key: string;
16
- specification: Record<string, never>;
16
+ specification: Record<string, unknown>;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
18
  //#endregion
19
19
  export { roboflowDescribeWorkflowInterface };
@@ -3,17 +3,17 @@ import { z } from "zod";
3
3
  //#region src/actions/describe-workflow-interface.d.ts
4
4
  declare const RoboflowDescribeWorkflowInterfaceInput: z.ZodObject<{
5
5
  api_key: z.ZodString;
6
- specification: z.ZodObject<{}, z.core.$strip>;
6
+ specification: z.ZodRecord<z.ZodString, z.ZodUnknown>;
7
7
  }, z.core.$strip>;
8
8
  declare const RoboflowDescribeWorkflowInterfaceOutput: z.ZodObject<{
9
- inputs: z.ZodObject<{}, z.core.$strip>;
10
- outputs: z.ZodObject<{}, z.core.$strip>;
11
- typing_hints: z.ZodObject<{}, z.core.$strip>;
12
- kinds_schemas: z.ZodObject<{}, z.core.$strip>;
13
- }, z.core.$strip>;
9
+ inputs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
10
+ outputs: z.ZodRecord<z.ZodString, z.ZodUnknown>;
11
+ typing_hints: z.ZodRecord<z.ZodString, z.ZodUnknown>;
12
+ kinds_schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
13
+ }, z.core.$loose>;
14
14
  declare const roboflowDescribeWorkflowInterface: import("@keystrokehq/action").WorkflowActionDefinition<{
15
15
  api_key: string;
16
- specification: Record<string, never>;
16
+ specification: Record<string, unknown>;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
18
  //#endregion
19
19
  export { roboflowDescribeWorkflowInterface };
@@ -6,14 +6,14 @@ const roboflowDescribeWorkflowInterface = action("ROBOFLOW_DESCRIBE_WORKFLOW_INT
6
6
  description: "Tool to describe the interface of a workflow specification. Use when you need to understand the inputs, outputs, and types for a Roboflow workflow definition.",
7
7
  input: z.object({
8
8
  api_key: z.string().describe("Roboflow API Key that will be passed to the model during initialization for artifact retrieval"),
9
- specification: z.object({}).describe("Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).")
9
+ specification: z.record(z.string(), z.unknown()).describe("Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).")
10
10
  }).describe("Request model for describing the interface of a workflow."),
11
11
  output: z.object({
12
- inputs: z.object({}).describe("Dictionary mapping Workflow inputs to their kinds"),
13
- outputs: z.object({}).describe("Dictionary mapping Workflow outputs to their kinds"),
14
- typing_hints: z.object({}).describe("Dictionary mapping name of the kind with Python typing hint for underlying serialised object"),
15
- kinds_schemas: z.object({}).describe("Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.")
16
- }).describe("Response model containing the described interface of the workflow.")
12
+ inputs: z.record(z.string(), z.unknown()).describe("Dictionary mapping Workflow inputs to their kinds"),
13
+ outputs: z.record(z.string(), z.unknown()).describe("Dictionary mapping Workflow outputs to their kinds"),
14
+ typing_hints: z.record(z.string(), z.unknown()).describe("Dictionary mapping name of the kind with Python typing hint for underlying serialised object"),
15
+ kinds_schemas: z.record(z.string(), z.unknown()).describe("Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.")
16
+ }).passthrough().describe("Response model containing the described interface of the workflow.")
17
17
  });
18
18
  //#endregion
19
19
  export { roboflowDescribeWorkflowInterface };
@@ -1 +1 @@
1
- {"version":3,"file":"describe-workflow-interface.mjs","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowDescribeWorkflowInterfaceInput = z.object({\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval\"),\n specification: z.object({}).describe(\"Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).\"),\n}).describe(\"Request model for describing the interface of a workflow.\");\nexport const RoboflowDescribeWorkflowInterfaceOutput = z.object({\n inputs: z.object({}).describe(\"Dictionary mapping Workflow inputs to their kinds\"),\n outputs: z.object({}).describe(\"Dictionary mapping Workflow outputs to their kinds\"),\n typing_hints: z.object({}).describe(\"Dictionary mapping name of the kind with Python typing hint for underlying serialised object\"),\n kinds_schemas: z.object({}).describe(\"Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.\"),\n}).describe(\"Response model containing the described interface of the workflow.\");\n\nexport const roboflowDescribeWorkflowInterface = action(\"ROBOFLOW_DESCRIBE_WORKFLOW_INTERFACE\", {\n slug: \"roboflow-describe-workflow-interface\",\n name: \"Describe Workflow Interface\",\n description: \"Tool to describe the interface of a workflow specification. Use when you need to understand the inputs, outputs, and types for a Roboflow workflow definition.\",\n input: RoboflowDescribeWorkflowInterfaceInput,\n output: RoboflowDescribeWorkflowInterfaceOutput,\n});\n"],"mappings":";;AAeA,MAAa,oCAAoC,OAAO,wCAAwC;CAC9F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfoD,EAAE,OAAO;EAC7D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gGAAgG;EAC7H,eAAe,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+NAA+N;CACtQ,CAAC,CAAC,CAAC,SAAS,2DAYH;CACP,QAZqD,EAAE,OAAO;EAC9D,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,mDAAmD;EACjF,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oDAAoD;EACnF,cAAc,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8FAA8F;EAClI,eAAe,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uJAAuJ;CAC9L,CAAC,CAAC,CAAC,SAAS,oEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"describe-workflow-interface.mjs","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowDescribeWorkflowInterfaceInput = z.object({\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval\"),\n specification: z.record(z.string(), z.unknown()).describe(\"Workflow specification object containing version, inputs, steps, and outputs. Must include: version (string), inputs (list of input definitions), steps (list of step definitions), and outputs (list of output definitions).\"),\n}).describe(\"Request model for describing the interface of a workflow.\");\nexport const RoboflowDescribeWorkflowInterfaceOutput = z.object({\n inputs: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Workflow inputs to their kinds\"),\n outputs: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping Workflow outputs to their kinds\"),\n typing_hints: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping name of the kind with Python typing hint for underlying serialised object\"),\n kinds_schemas: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping name of the kind with OpenAPI 3.0 definitions of underlying objects. If list is given, entity should be treated as union of types.\"),\n}).passthrough().describe(\"Response model containing the described interface of the workflow.\");\n\nexport const roboflowDescribeWorkflowInterface = action(\"ROBOFLOW_DESCRIBE_WORKFLOW_INTERFACE\", {\n slug: \"roboflow-describe-workflow-interface\",\n name: \"Describe Workflow Interface\",\n description: \"Tool to describe the interface of a workflow specification. Use when you need to understand the inputs, outputs, and types for a Roboflow workflow definition.\",\n input: RoboflowDescribeWorkflowInterfaceInput,\n output: RoboflowDescribeWorkflowInterfaceOutput,\n});\n"],"mappings":";;AAeA,MAAa,oCAAoC,OAAO,wCAAwC;CAC9F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfoD,EAAE,OAAO;EAC7D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gGAAgG;EAC7H,eAAe,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,+NAA+N;CAC3R,CAAC,CAAC,CAAC,SAAS,2DAYH;CACP,QAZqD,EAAE,OAAO;EAC9D,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mDAAmD;EACtG,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oDAAoD;EACxG,cAAc,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,8FAA8F;EACvJ,eAAe,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uJAAuJ;CACnN,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oEAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/get-execution-engine-versions.ts
4
4
  const RoboflowGetExecutionEngineVersionsInput = zod.z.object({}).describe("Request model for retrieving available Execution Engine versions.\nThis endpoint requires no parameters.");
5
- const RoboflowGetExecutionEngineVersionsOutput = zod.z.object({ versions: zod.z.array(zod.z.string()).describe("List of available Execution Engine versions, sorted from oldest to newest.") }).describe("Response model containing the list of available Execution Engine versions.");
5
+ const RoboflowGetExecutionEngineVersionsOutput = zod.z.object({ versions: zod.z.array(zod.z.string()).describe("List of available Execution Engine versions, sorted from oldest to newest.") }).passthrough().describe("Response model containing the list of available Execution Engine versions.");
6
6
  const roboflowGetExecutionEngineVersions = require_action.action("ROBOFLOW_GET_EXECUTION_ENGINE_VERSIONS", {
7
7
  slug: "roboflow-get-execution-engine-versions",
8
8
  name: "Get Execution Engine Versions",
@@ -1 +1 @@
1
- {"version":3,"file":"get-execution-engine-versions.cjs","names":["z","action"],"sources":["../../src/actions/get-execution-engine-versions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetExecutionEngineVersionsInput = z.object({}).describe(\"Request model for retrieving available Execution Engine versions.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetExecutionEngineVersionsOutput = z.object({\n versions: z.array(z.string()).describe(\"List of available Execution Engine versions, sorted from oldest to newest.\"),\n}).describe(\"Response model containing the list of available Execution Engine versions.\");\n\nexport const roboflowGetExecutionEngineVersions = action(\"ROBOFLOW_GET_EXECUTION_ENGINE_VERSIONS\", {\n slug: \"roboflow-get-execution-engine-versions\",\n name: \"Get Execution Engine Versions\",\n description: \"Tool to retrieve available Execution Engine versions from Roboflow workflows API. Use when you need to check which execution engine versions are supported for workflow processing.\",\n input: RoboflowGetExecutionEngineVersionsInput,\n output: RoboflowGetExecutionEngineVersionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAA0CA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GAA0G;AACvL,MAAa,2CAA2CA,IAAAA,EAAE,OAAO,EAC/D,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,SAAS,4EAA4E;AAExF,MAAa,qCAAqCC,eAAAA,OAAO,0CAA0C;CACjG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-execution-engine-versions.cjs","names":["z","action"],"sources":["../../src/actions/get-execution-engine-versions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetExecutionEngineVersionsInput = z.object({}).describe(\"Request model for retrieving available Execution Engine versions.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetExecutionEngineVersionsOutput = z.object({\n versions: z.array(z.string()).describe(\"List of available Execution Engine versions, sorted from oldest to newest.\"),\n}).passthrough().describe(\"Response model containing the list of available Execution Engine versions.\");\n\nexport const roboflowGetExecutionEngineVersions = action(\"ROBOFLOW_GET_EXECUTION_ENGINE_VERSIONS\", {\n slug: \"roboflow-get-execution-engine-versions\",\n name: \"Get Execution Engine Versions\",\n description: \"Tool to retrieve available Execution Engine versions from Roboflow workflows API. Use when you need to check which execution engine versions are supported for workflow processing.\",\n input: RoboflowGetExecutionEngineVersionsInput,\n output: RoboflowGetExecutionEngineVersionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAA0CA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GAA0G;AACvL,MAAa,2CAA2CA,IAAAA,EAAE,OAAO,EAC/D,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4EAA4E;AAEtG,MAAa,qCAAqCC,eAAAA,OAAO,0CAA0C;CACjG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const RoboflowGetExecutionEngineVersionsInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RoboflowGetExecutionEngineVersionsOutput: z.ZodObject<{
6
6
  versions: z.ZodArray<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const roboflowGetExecutionEngineVersions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { roboflowGetExecutionEngineVersions };
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const RoboflowGetExecutionEngineVersionsInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RoboflowGetExecutionEngineVersionsOutput: z.ZodObject<{
6
6
  versions: z.ZodArray<z.ZodString>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const roboflowGetExecutionEngineVersions: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { roboflowGetExecutionEngineVersions };
@@ -5,7 +5,7 @@ const roboflowGetExecutionEngineVersions = action("ROBOFLOW_GET_EXECUTION_ENGINE
5
5
  name: "Get Execution Engine Versions",
6
6
  description: "Tool to retrieve available Execution Engine versions from Roboflow workflows API. Use when you need to check which execution engine versions are supported for workflow processing.",
7
7
  input: z.object({}).describe("Request model for retrieving available Execution Engine versions.\nThis endpoint requires no parameters."),
8
- output: z.object({ versions: z.array(z.string()).describe("List of available Execution Engine versions, sorted from oldest to newest.") }).describe("Response model containing the list of available Execution Engine versions.")
8
+ output: z.object({ versions: z.array(z.string()).describe("List of available Execution Engine versions, sorted from oldest to newest.") }).passthrough().describe("Response model containing the list of available Execution Engine versions.")
9
9
  });
10
10
  //#endregion
11
11
  export { roboflowGetExecutionEngineVersions };
@@ -1 +1 @@
1
- {"version":3,"file":"get-execution-engine-versions.mjs","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetExecutionEngineVersionsInput = z.object({}).describe(\"Request model for retrieving available Execution Engine versions.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetExecutionEngineVersionsOutput = z.object({\n versions: z.array(z.string()).describe(\"List of available Execution Engine versions, sorted from oldest to newest.\"),\n}).describe(\"Response model containing the list of available Execution Engine versions.\");\n\nexport const roboflowGetExecutionEngineVersions = action(\"ROBOFLOW_GET_EXECUTION_ENGINE_VERSIONS\", {\n slug: \"roboflow-get-execution-engine-versions\",\n name: \"Get Execution Engine Versions\",\n description: \"Tool to retrieve available Execution Engine versions from Roboflow workflows API. Use when you need to check which execution engine versions are supported for workflow processing.\",\n input: RoboflowGetExecutionEngineVersionsInput,\n output: RoboflowGetExecutionEngineVersionsOutput,\n});\n"],"mappings":";;AASA,MAAa,qCAAqC,OAAO,0CAA0C;CACjG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATqD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GASpE;CACP,QATsD,EAAE,OAAO,EAC/D,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,SAAS,4EAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-execution-engine-versions.mjs","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetExecutionEngineVersionsInput = z.object({}).describe(\"Request model for retrieving available Execution Engine versions.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetExecutionEngineVersionsOutput = z.object({\n versions: z.array(z.string()).describe(\"List of available Execution Engine versions, sorted from oldest to newest.\"),\n}).passthrough().describe(\"Response model containing the list of available Execution Engine versions.\");\n\nexport const roboflowGetExecutionEngineVersions = action(\"ROBOFLOW_GET_EXECUTION_ENGINE_VERSIONS\", {\n slug: \"roboflow-get-execution-engine-versions\",\n name: \"Get Execution Engine Versions\",\n description: \"Tool to retrieve available Execution Engine versions from Roboflow workflows API. Use when you need to check which execution engine versions are supported for workflow processing.\",\n input: RoboflowGetExecutionEngineVersionsInput,\n output: RoboflowGetExecutionEngineVersionsOutput,\n});\n"],"mappings":";;AASA,MAAa,qCAAqC,OAAO,0CAA0C;CACjG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATqD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GASpE;CACP,QATsD,EAAE,OAAO,EAC/D,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4EAOhB;AACV,CAAC"}
@@ -6,7 +6,7 @@ const RoboflowGetServerInfoOutput = zod.z.object({
6
6
  name: zod.z.string().describe("Name of the inference server.").nullable(),
7
7
  uuid: zod.z.string().describe("Unique identifier (UUID) of the inference server instance.").nullable(),
8
8
  version: zod.z.string().describe("Version string of the inference server.").nullable()
9
- }).describe("Response model containing Roboflow inference server version information.");
9
+ }).passthrough().describe("Response model containing Roboflow inference server version information.");
10
10
  const roboflowGetServerInfo = require_action.action("ROBOFLOW_GET_SERVER_INFO", {
11
11
  slug: "roboflow-get-server-info",
12
12
  name: "Get Server Info",
@@ -1 +1 @@
1
- {"version":3,"file":"get-server-info.cjs","names":["z","action"],"sources":["../../src/actions/get-server-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerInfoInput = z.object({}).describe(\"Request model for getting Roboflow inference server information.\");\nexport const RoboflowGetServerInfoOutput = z.object({\n name: z.string().describe(\"Name of the inference server.\").nullable(),\n uuid: z.string().describe(\"Unique identifier (UUID) of the inference server instance.\").nullable(),\n version: z.string().describe(\"Version string of the inference server.\").nullable(),\n}).describe(\"Response model containing Roboflow inference server version information.\");\n\nexport const roboflowGetServerInfo = action(\"ROBOFLOW_GET_SERVER_INFO\", {\n slug: \"roboflow-get-server-info\",\n name: \"Get Server Info\",\n description: \"Tool to retrieve information about the Roboflow inference server. Use when you need to check the server version, name, or unique identifier.\",\n input: RoboflowGetServerInfoInput,\n output: RoboflowGetServerInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kEAAkE;AAClI,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,0EAA0E;AAEtF,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-server-info.cjs","names":["z","action"],"sources":["../../src/actions/get-server-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerInfoInput = z.object({}).describe(\"Request model for getting Roboflow inference server information.\");\nexport const RoboflowGetServerInfoOutput = z.object({\n name: z.string().describe(\"Name of the inference server.\").nullable(),\n uuid: z.string().describe(\"Unique identifier (UUID) of the inference server instance.\").nullable(),\n version: z.string().describe(\"Version string of the inference server.\").nullable(),\n}).passthrough().describe(\"Response model containing Roboflow inference server version information.\");\n\nexport const roboflowGetServerInfo = action(\"ROBOFLOW_GET_SERVER_INFO\", {\n slug: \"roboflow-get-server-info\",\n name: \"Get Server Info\",\n description: \"Tool to retrieve information about the Roboflow inference server. Use when you need to check the server version, name, or unique identifier.\",\n input: RoboflowGetServerInfoInput,\n output: RoboflowGetServerInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kEAAkE;AAClI,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0EAA0E;AAEpG,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const RoboflowGetServerInfoOutput: z.ZodObject<{
6
6
  name: z.ZodNullable<z.ZodString>;
7
7
  uuid: z.ZodNullable<z.ZodString>;
8
8
  version: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const roboflowGetServerInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
11
11
  //#endregion
12
12
  export { roboflowGetServerInfo };
@@ -6,7 +6,7 @@ declare const RoboflowGetServerInfoOutput: z.ZodObject<{
6
6
  name: z.ZodNullable<z.ZodString>;
7
7
  uuid: z.ZodNullable<z.ZodString>;
8
8
  version: z.ZodNullable<z.ZodString>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const roboflowGetServerInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
11
11
  //#endregion
12
12
  export { roboflowGetServerInfo };
@@ -9,7 +9,7 @@ const roboflowGetServerInfo = action("ROBOFLOW_GET_SERVER_INFO", {
9
9
  name: z.string().describe("Name of the inference server.").nullable(),
10
10
  uuid: z.string().describe("Unique identifier (UUID) of the inference server instance.").nullable(),
11
11
  version: z.string().describe("Version string of the inference server.").nullable()
12
- }).describe("Response model containing Roboflow inference server version information.")
12
+ }).passthrough().describe("Response model containing Roboflow inference server version information.")
13
13
  });
14
14
  //#endregion
15
15
  export { roboflowGetServerInfo };
@@ -1 +1 @@
1
- {"version":3,"file":"get-server-info.mjs","names":[],"sources":["../../src/actions/get-server-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerInfoInput = z.object({}).describe(\"Request model for getting Roboflow inference server information.\");\nexport const RoboflowGetServerInfoOutput = z.object({\n name: z.string().describe(\"Name of the inference server.\").nullable(),\n uuid: z.string().describe(\"Unique identifier (UUID) of the inference server instance.\").nullable(),\n version: z.string().describe(\"Version string of the inference server.\").nullable(),\n}).describe(\"Response model containing Roboflow inference server version information.\");\n\nexport const roboflowGetServerInfo = action(\"ROBOFLOW_GET_SERVER_INFO\", {\n slug: \"roboflow-get-server-info\",\n name: \"Get Server Info\",\n description: \"Tool to retrieve information about the Roboflow inference server. Use when you need to check the server version, name, or unique identifier.\",\n input: RoboflowGetServerInfoInput,\n output: RoboflowGetServerInfoOutput,\n});\n"],"mappings":";;AAWA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kEAWvD;CACP,QAXyC,EAAE,OAAO;EAClD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;EACjG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACnF,CAAC,CAAC,CAAC,SAAS,0EAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-server-info.mjs","names":[],"sources":["../../src/actions/get-server-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerInfoInput = z.object({}).describe(\"Request model for getting Roboflow inference server information.\");\nexport const RoboflowGetServerInfoOutput = z.object({\n name: z.string().describe(\"Name of the inference server.\").nullable(),\n uuid: z.string().describe(\"Unique identifier (UUID) of the inference server instance.\").nullable(),\n version: z.string().describe(\"Version string of the inference server.\").nullable(),\n}).passthrough().describe(\"Response model containing Roboflow inference server version information.\");\n\nexport const roboflowGetServerInfo = action(\"ROBOFLOW_GET_SERVER_INFO\", {\n slug: \"roboflow-get-server-info\",\n name: \"Get Server Info\",\n description: \"Tool to retrieve information about the Roboflow inference server. Use when you need to check the server version, name, or unique identifier.\",\n input: RoboflowGetServerInfoInput,\n output: RoboflowGetServerInfoOutput,\n});\n"],"mappings":";;AAWA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kEAWvD;CACP,QAXyC,EAAE,OAAO;EAClD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;EACjG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACnF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0EAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/get-server-metrics.ts
4
4
  const RoboflowGetServerMetricsInput = zod.z.object({}).describe("Request model for getting server metrics - no parameters required.");
5
- const RoboflowGetServerMetricsOutput = zod.z.object({ metrics: zod.z.object({}).describe("Dictionary containing Prometheus metrics from the inference server").nullable().optional() }).describe("Response model for server metrics.\n\nReturns Prometheus metrics data as a dictionary. The exact structure\ndepends on the server's configuration and available metrics.");
5
+ const RoboflowGetServerMetricsOutput = zod.z.object({ metrics: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Dictionary containing Prometheus metrics from the inference server").nullable().optional() }).passthrough().describe("Response model for server metrics.\n\nReturns Prometheus metrics data as a dictionary. The exact structure\ndepends on the server's configuration and available metrics.");
6
6
  const roboflowGetServerMetrics = require_action.action("ROBOFLOW_GET_SERVER_METRICS", {
7
7
  slug: "roboflow-get-server-metrics",
8
8
  name: "Get Server Metrics",
@@ -1 +1 @@
1
- {"version":3,"file":"get-server-metrics.cjs","names":["z","action"],"sources":["../../src/actions/get-server-metrics.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerMetricsInput = z.object({}).describe(\"Request model for getting server metrics - no parameters required.\");\nexport const RoboflowGetServerMetricsOutput = z.object({\n metrics: z.object({}).describe(\"Dictionary containing Prometheus metrics from the inference server\").nullable().optional(),\n}).describe(\"Response model for server metrics.\\n\\nReturns Prometheus metrics data as a dictionary. The exact structure\\ndepends on the server's configuration and available metrics.\");\n\nexport const roboflowGetServerMetrics = action(\"ROBOFLOW_GET_SERVER_METRICS\", {\n slug: \"roboflow-get-server-metrics\",\n name: \"Get Server Metrics\",\n description: \"Tool to retrieve Prometheus metrics from the Roboflow inference server. Use when monitoring server performance, tracking inference statistics, or debugging server health issues.\",\n input: RoboflowGetServerMetricsInput,\n output: RoboflowGetServerMetricsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAAoE;AACvI,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC3H,CAAC,CAAC,CAAC,SAAS,0KAA0K;AAEtL,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-server-metrics.cjs","names":["z","action"],"sources":["../../src/actions/get-server-metrics.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerMetricsInput = z.object({}).describe(\"Request model for getting server metrics - no parameters required.\");\nexport const RoboflowGetServerMetricsOutput = z.object({\n metrics: z.record(z.string(), z.unknown()).describe(\"Dictionary containing Prometheus metrics from the inference server\").nullable().optional(),\n}).passthrough().describe(\"Response model for server metrics.\\n\\nReturns Prometheus metrics data as a dictionary. The exact structure\\ndepends on the server's configuration and available metrics.\");\n\nexport const roboflowGetServerMetrics = action(\"ROBOFLOW_GET_SERVER_METRICS\", {\n slug: \"roboflow-get-server-metrics\",\n name: \"Get Server Metrics\",\n description: \"Tool to retrieve Prometheus metrics from the Roboflow inference server. Use when monitoring server performance, tracking inference statistics, or debugging server health issues.\",\n input: RoboflowGetServerMetricsInput,\n output: RoboflowGetServerMetricsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAAoE;AACvI,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAChJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0KAA0K;AAEpM,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -3,8 +3,8 @@ import { z } from "zod";
3
3
  //#region src/actions/get-server-metrics.d.ts
4
4
  declare const RoboflowGetServerMetricsInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RoboflowGetServerMetricsOutput: z.ZodObject<{
6
- metrics: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
7
- }, z.core.$strip>;
6
+ metrics: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
7
+ }, z.core.$loose>;
8
8
  declare const roboflowGetServerMetrics: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { roboflowGetServerMetrics };
@@ -3,8 +3,8 @@ import { z } from "zod";
3
3
  //#region src/actions/get-server-metrics.d.ts
4
4
  declare const RoboflowGetServerMetricsInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RoboflowGetServerMetricsOutput: z.ZodObject<{
6
- metrics: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
7
- }, z.core.$strip>;
6
+ metrics: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
7
+ }, z.core.$loose>;
8
8
  declare const roboflowGetServerMetrics: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { roboflowGetServerMetrics };
@@ -5,7 +5,7 @@ const roboflowGetServerMetrics = action("ROBOFLOW_GET_SERVER_METRICS", {
5
5
  name: "Get Server Metrics",
6
6
  description: "Tool to retrieve Prometheus metrics from the Roboflow inference server. Use when monitoring server performance, tracking inference statistics, or debugging server health issues.",
7
7
  input: z.object({}).describe("Request model for getting server metrics - no parameters required."),
8
- output: z.object({ metrics: z.object({}).describe("Dictionary containing Prometheus metrics from the inference server").nullable().optional() }).describe("Response model for server metrics.\n\nReturns Prometheus metrics data as a dictionary. The exact structure\ndepends on the server's configuration and available metrics.")
8
+ output: z.object({ metrics: z.record(z.string(), z.unknown()).describe("Dictionary containing Prometheus metrics from the inference server").nullable().optional() }).passthrough().describe("Response model for server metrics.\n\nReturns Prometheus metrics data as a dictionary. The exact structure\ndepends on the server's configuration and available metrics.")
9
9
  });
10
10
  //#endregion
11
11
  export { roboflowGetServerMetrics };
@@ -1 +1 @@
1
- {"version":3,"file":"get-server-metrics.mjs","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerMetricsInput = z.object({}).describe(\"Request model for getting server metrics - no parameters required.\");\nexport const RoboflowGetServerMetricsOutput = z.object({\n metrics: z.object({}).describe(\"Dictionary containing Prometheus metrics from the inference server\").nullable().optional(),\n}).describe(\"Response model for server metrics.\\n\\nReturns Prometheus metrics data as a dictionary. The exact structure\\ndepends on the server's configuration and available metrics.\");\n\nexport const roboflowGetServerMetrics = action(\"ROBOFLOW_GET_SERVER_METRICS\", {\n slug: \"roboflow-get-server-metrics\",\n name: \"Get Server Metrics\",\n description: \"Tool to retrieve Prometheus metrics from the Roboflow inference server. Use when monitoring server performance, tracking inference statistics, or debugging server health issues.\",\n input: RoboflowGetServerMetricsInput,\n output: RoboflowGetServerMetricsOutput,\n});\n"],"mappings":";;AASA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT2C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAS1D;CACP,QAT4C,EAAE,OAAO,EACrD,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC3H,CAAC,CAAC,CAAC,SAAS,0KAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-server-metrics.mjs","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetServerMetricsInput = z.object({}).describe(\"Request model for getting server metrics - no parameters required.\");\nexport const RoboflowGetServerMetricsOutput = z.object({\n metrics: z.record(z.string(), z.unknown()).describe(\"Dictionary containing Prometheus metrics from the inference server\").nullable().optional(),\n}).passthrough().describe(\"Response model for server metrics.\\n\\nReturns Prometheus metrics data as a dictionary. The exact structure\\ndepends on the server's configuration and available metrics.\");\n\nexport const roboflowGetServerMetrics = action(\"ROBOFLOW_GET_SERVER_METRICS\", {\n slug: \"roboflow-get-server-metrics\",\n name: \"Get Server Metrics\",\n description: \"Tool to retrieve Prometheus metrics from the Roboflow inference server. Use when monitoring server performance, tracking inference statistics, or debugging server health issues.\",\n input: RoboflowGetServerMetricsInput,\n output: RoboflowGetServerMetricsOutput,\n});\n"],"mappings":";;AASA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT2C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAS1D;CACP,QAT4C,EAAE,OAAO,EACrD,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAChJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0KAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/get-workflow-schema.ts
4
4
  const RoboflowGetWorkflowSchemaInput = zod.z.object({}).describe("Request parameters for fetching the workflows block schema.\nThis endpoint requires no parameters.");
5
- const RoboflowGetWorkflowSchemaOutput = zod.z.object({ schema: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.") }).describe("Response containing the workflow block schema definition.");
5
+ const RoboflowGetWorkflowSchemaOutput = zod.z.object({ schema: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.") }).passthrough().describe("Response containing the workflow block schema definition.");
6
6
  const roboflowGetWorkflowSchema = require_action.action("ROBOFLOW_GET_WORKFLOW_SCHEMA", {
7
7
  slug: "roboflow-get-workflow-schema",
8
8
  name: "Get Workflow Schema",
@@ -1 +1 @@
1
- {"version":3,"file":"get-workflow-schema.cjs","names":["z","action"],"sources":["../../src/actions/get-workflow-schema.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetWorkflowSchemaInput = z.object({}).describe(\"Request parameters for fetching the workflows block schema.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetWorkflowSchemaOutput = z.object({\n schema: z.record(z.string(), z.unknown()).describe(\"Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.\"),\n}).describe(\"Response containing the workflow block schema definition.\");\n\nexport const roboflowGetWorkflowSchema = action(\"ROBOFLOW_GET_WORKFLOW_SCHEMA\", {\n slug: \"roboflow-get-workflow-schema\",\n name: \"Get Workflow Schema\",\n description: \"Tool to fetch the workflows block schema from Roboflow. Use when you need to retrieve the complete schema definition for workflow blocks.\",\n input: RoboflowGetWorkflowSchemaInput,\n output: RoboflowGetWorkflowSchemaOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oGAAoG;AACxK,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC7M,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAEvE,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-workflow-schema.cjs","names":["z","action"],"sources":["../../src/actions/get-workflow-schema.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetWorkflowSchemaInput = z.object({}).describe(\"Request parameters for fetching the workflows block schema.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetWorkflowSchemaOutput = z.object({\n schema: z.record(z.string(), z.unknown()).describe(\"Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.\"),\n}).passthrough().describe(\"Response containing the workflow block schema definition.\");\n\nexport const roboflowGetWorkflowSchema = action(\"ROBOFLOW_GET_WORKFLOW_SCHEMA\", {\n slug: \"roboflow-get-workflow-schema\",\n name: \"Get Workflow Schema\",\n description: \"Tool to fetch the workflows block schema from Roboflow. Use when you need to retrieve the complete schema definition for workflow blocks.\",\n input: RoboflowGetWorkflowSchemaInput,\n output: RoboflowGetWorkflowSchemaOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oGAAoG;AACxK,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC7M,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AAErF,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const RoboflowGetWorkflowSchemaInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RoboflowGetWorkflowSchemaOutput: z.ZodObject<{
6
6
  schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const roboflowGetWorkflowSchema: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { roboflowGetWorkflowSchema };
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const RoboflowGetWorkflowSchemaInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const RoboflowGetWorkflowSchemaOutput: z.ZodObject<{
6
6
  schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
7
- }, z.core.$strip>;
7
+ }, z.core.$loose>;
8
8
  declare const roboflowGetWorkflowSchema: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
9
9
  //#endregion
10
10
  export { roboflowGetWorkflowSchema };
@@ -5,7 +5,7 @@ const roboflowGetWorkflowSchema = action("ROBOFLOW_GET_WORKFLOW_SCHEMA", {
5
5
  name: "Get Workflow Schema",
6
6
  description: "Tool to fetch the workflows block schema from Roboflow. Use when you need to retrieve the complete schema definition for workflow blocks.",
7
7
  input: z.object({}).describe("Request parameters for fetching the workflows block schema.\nThis endpoint requires no parameters."),
8
- output: z.object({ schema: z.record(z.string(), z.unknown()).describe("Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.") }).describe("Response containing the workflow block schema definition.")
8
+ output: z.object({ schema: z.record(z.string(), z.unknown()).describe("Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.") }).passthrough().describe("Response containing the workflow block schema definition.")
9
9
  });
10
10
  //#endregion
11
11
  export { roboflowGetWorkflowSchema };
@@ -1 +1 @@
1
- {"version":3,"file":"get-workflow-schema.mjs","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetWorkflowSchemaInput = z.object({}).describe(\"Request parameters for fetching the workflows block schema.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetWorkflowSchemaOutput = z.object({\n schema: z.record(z.string(), z.unknown()).describe(\"Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.\"),\n}).describe(\"Response containing the workflow block schema definition.\");\n\nexport const roboflowGetWorkflowSchema = action(\"ROBOFLOW_GET_WORKFLOW_SCHEMA\", {\n slug: \"roboflow-get-workflow-schema\",\n name: \"Get Workflow Schema\",\n description: \"Tool to fetch the workflows block schema from Roboflow. Use when you need to retrieve the complete schema definition for workflow blocks.\",\n input: RoboflowGetWorkflowSchemaInput,\n output: RoboflowGetWorkflowSchemaOutput,\n});\n"],"mappings":";;AASA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oGAS3D;CACP,QAT6C,EAAE,OAAO,EACtD,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC7M,CAAC,CAAC,CAAC,SAAS,2DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-workflow-schema.mjs","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowGetWorkflowSchemaInput = z.object({}).describe(\"Request parameters for fetching the workflows block schema.\\nThis endpoint requires no parameters.\");\nexport const RoboflowGetWorkflowSchemaOutput = z.object({\n schema: z.record(z.string(), z.unknown()).describe(\"Schema for validating block definitions in workflows. Contains the complete JSON schema describing all available workflow blocks and their properties.\"),\n}).passthrough().describe(\"Response containing the workflow block schema definition.\");\n\nexport const roboflowGetWorkflowSchema = action(\"ROBOFLOW_GET_WORKFLOW_SCHEMA\", {\n slug: \"roboflow-get-workflow-schema\",\n name: \"Get Workflow Schema\",\n description: \"Tool to fetch the workflows block schema from Roboflow. Use when you need to retrieve the complete schema definition for workflow blocks.\",\n input: RoboflowGetWorkflowSchemaInput,\n output: RoboflowGetWorkflowSchemaOutput,\n});\n"],"mappings":";;AASA,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oGAS3D;CACP,QAT6C,EAAE,OAAO,EACtD,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC7M,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAOhB;AACV,CAAC"}
@@ -13,7 +13,7 @@ const RoboflowRunWorkflowInput = zod.z.object({
13
13
  const RoboflowRunWorkflowOutput = zod.z.object({
14
14
  outputs: zod.z.array(zod.z.record(zod.z.string(), zod.z.unknown())).describe("Array of dictionaries with keys defined in workflow output specification and their serialized values. Each element represents the output for one input processed by the workflow."),
15
15
  profiler_trace: zod.z.array(zod.z.record(zod.z.string(), zod.z.unknown())).describe("Array of profiler events if enable_profiling was set to true and server allows profiling trace export.").nullable().optional()
16
- }).describe("Response model returned after running a workflow.");
16
+ }).passthrough().describe("Response model returned after running a workflow.");
17
17
  const roboflowRunWorkflow = require_action.action("ROBOFLOW_RUN_WORKFLOW", {
18
18
  slug: "roboflow-run-workflow",
19
19
  name: "Run Workflow",
@@ -1 +1 @@
1
- {"version":3,"file":"run-workflow.cjs","names":["z","action"],"sources":["../../src/actions/run-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowRunWorkflowInput = z.object({\n inputs: z.record(z.string(), z.unknown()).describe(\"Dictionary containing runtime values for each parameter defined as an input in the workflow specification. Keys must match the 'name' fields defined in specification.inputs. Values can be of various types depending on the input type (e.g., for InferenceImage input, provide object with 'type' and 'value' keys where type can be 'url', 'base64', or 'numpy').\"),\n api_key: z.string().describe(\"Roboflow API Key passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata headers.\").optional(),\n is_preview: z.boolean().default(false).describe(\"Reserved flag used internally by Roboflow to distinguish between preview and non-preview runs.\").optional(),\n workflow_id: z.string().describe(\"Optional identifier of the workflow. Used when running a saved workflow definition from Roboflow platform.\").optional(),\n specification: z.record(z.string(), z.unknown()).describe(\"Workflow specification object defining version, inputs, steps, and outputs. Must include 'version' (string), 'inputs' (array of input definitions), 'steps' (array of processing steps), and 'outputs' (array of output definitions). Each input must have 'type' and 'name'. Each step must have 'type' and 'name' with additional configuration. Each output must have 'type', 'name', and 'selector'.\"),\n excluded_fields: z.array(z.string()).describe(\"List of field names to exclude from the response among those defined in workflow specification outputs.\").optional(),\n enable_profiling: z.boolean().default(false).describe(\"Flag to request workflow run profiling. Enables workflow profiler only when server settings allow profiling traces to be exported to clients. Only applies for workflow definitions saved on Roboflow platform.\").optional(),\n}).describe(\"Request model for running a workflow specification.\");\nexport const RoboflowRunWorkflowOutput = z.object({\n outputs: z.array(z.record(z.string(), z.unknown())).describe(\"Array of dictionaries with keys defined in workflow output specification and their serialized values. Each element represents the output for one input processed by the workflow.\"),\n profiler_trace: z.array(z.record(z.string(), z.unknown())).describe(\"Array of profiler events if enable_profiling was set to true and server allows profiling trace export.\").nullable().optional(),\n}).describe(\"Response model returned after running a workflow.\");\n\nexport const roboflowRunWorkflow = action(\"ROBOFLOW_RUN_WORKFLOW\", {\n slug: \"roboflow-run-workflow\",\n name: \"Run Workflow\",\n description: \"Tool to run a workflow specification with provided inputs. Use when you need to execute a custom Roboflow workflow pipeline for image processing, model inference, or other computer vision tasks.\",\n input: RoboflowRunWorkflowInput,\n output: RoboflowRunWorkflowOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uWAAuW;CAC1Z,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oJAAoJ,CAAC,CAAC,SAAS;CAC5L,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS;CAC3J,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;CACxJ,eAAeA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0YAA0Y;CACpc,iBAAiBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yGAAyG,CAAC,CAAC,SAAS;CAClK,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,iNAAiN,CAAC,CAAC,SAAS;AACpR,CAAC,CAAC,CAAC,SAAS,qDAAqD;AACjE,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,mLAAmL;CAChP,gBAAgBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpM,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAE/D,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"run-workflow.cjs","names":["z","action"],"sources":["../../src/actions/run-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowRunWorkflowInput = z.object({\n inputs: z.record(z.string(), z.unknown()).describe(\"Dictionary containing runtime values for each parameter defined as an input in the workflow specification. Keys must match the 'name' fields defined in specification.inputs. Values can be of various types depending on the input type (e.g., for InferenceImage input, provide object with 'type' and 'value' keys where type can be 'url', 'base64', or 'numpy').\"),\n api_key: z.string().describe(\"Roboflow API Key passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata headers.\").optional(),\n is_preview: z.boolean().default(false).describe(\"Reserved flag used internally by Roboflow to distinguish between preview and non-preview runs.\").optional(),\n workflow_id: z.string().describe(\"Optional identifier of the workflow. Used when running a saved workflow definition from Roboflow platform.\").optional(),\n specification: z.record(z.string(), z.unknown()).describe(\"Workflow specification object defining version, inputs, steps, and outputs. Must include 'version' (string), 'inputs' (array of input definitions), 'steps' (array of processing steps), and 'outputs' (array of output definitions). Each input must have 'type' and 'name'. Each step must have 'type' and 'name' with additional configuration. Each output must have 'type', 'name', and 'selector'.\"),\n excluded_fields: z.array(z.string()).describe(\"List of field names to exclude from the response among those defined in workflow specification outputs.\").optional(),\n enable_profiling: z.boolean().default(false).describe(\"Flag to request workflow run profiling. Enables workflow profiler only when server settings allow profiling traces to be exported to clients. Only applies for workflow definitions saved on Roboflow platform.\").optional(),\n}).describe(\"Request model for running a workflow specification.\");\nexport const RoboflowRunWorkflowOutput = z.object({\n outputs: z.array(z.record(z.string(), z.unknown())).describe(\"Array of dictionaries with keys defined in workflow output specification and their serialized values. Each element represents the output for one input processed by the workflow.\"),\n profiler_trace: z.array(z.record(z.string(), z.unknown())).describe(\"Array of profiler events if enable_profiling was set to true and server allows profiling trace export.\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after running a workflow.\");\n\nexport const roboflowRunWorkflow = action(\"ROBOFLOW_RUN_WORKFLOW\", {\n slug: \"roboflow-run-workflow\",\n name: \"Run Workflow\",\n description: \"Tool to run a workflow specification with provided inputs. Use when you need to execute a custom Roboflow workflow pipeline for image processing, model inference, or other computer vision tasks.\",\n input: RoboflowRunWorkflowInput,\n output: RoboflowRunWorkflowOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uWAAuW;CAC1Z,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oJAAoJ,CAAC,CAAC,SAAS;CAC5L,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS;CAC3J,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;CACxJ,eAAeA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0YAA0Y;CACpc,iBAAiBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yGAAyG,CAAC,CAAC,SAAS;CAClK,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,iNAAiN,CAAC,CAAC,SAAS;AACpR,CAAC,CAAC,CAAC,SAAS,qDAAqD;AACjE,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,mLAAmL;CAChP,gBAAgBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpM,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mDAAmD;AAE7E,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -13,7 +13,7 @@ declare const RoboflowRunWorkflowInput: z.ZodObject<{
13
13
  declare const RoboflowRunWorkflowOutput: z.ZodObject<{
14
14
  outputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
15
15
  profiler_trace: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
16
- }, z.core.$strip>;
16
+ }, z.core.$loose>;
17
17
  declare const roboflowRunWorkflow: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  inputs: Record<string, unknown>;
19
19
  specification: Record<string, unknown>;
@@ -13,7 +13,7 @@ declare const RoboflowRunWorkflowInput: z.ZodObject<{
13
13
  declare const RoboflowRunWorkflowOutput: z.ZodObject<{
14
14
  outputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
15
15
  profiler_trace: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
16
- }, z.core.$strip>;
16
+ }, z.core.$loose>;
17
17
  declare const roboflowRunWorkflow: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  inputs: Record<string, unknown>;
19
19
  specification: Record<string, unknown>;
@@ -16,7 +16,7 @@ const roboflowRunWorkflow = action("ROBOFLOW_RUN_WORKFLOW", {
16
16
  output: z.object({
17
17
  outputs: z.array(z.record(z.string(), z.unknown())).describe("Array of dictionaries with keys defined in workflow output specification and their serialized values. Each element represents the output for one input processed by the workflow."),
18
18
  profiler_trace: z.array(z.record(z.string(), z.unknown())).describe("Array of profiler events if enable_profiling was set to true and server allows profiling trace export.").nullable().optional()
19
- }).describe("Response model returned after running a workflow.")
19
+ }).passthrough().describe("Response model returned after running a workflow.")
20
20
  });
21
21
  //#endregion
22
22
  export { roboflowRunWorkflow };
@@ -1 +1 @@
1
- {"version":3,"file":"run-workflow.mjs","names":[],"sources":["../../src/actions/run-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowRunWorkflowInput = z.object({\n inputs: z.record(z.string(), z.unknown()).describe(\"Dictionary containing runtime values for each parameter defined as an input in the workflow specification. Keys must match the 'name' fields defined in specification.inputs. Values can be of various types depending on the input type (e.g., for InferenceImage input, provide object with 'type' and 'value' keys where type can be 'url', 'base64', or 'numpy').\"),\n api_key: z.string().describe(\"Roboflow API Key passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata headers.\").optional(),\n is_preview: z.boolean().default(false).describe(\"Reserved flag used internally by Roboflow to distinguish between preview and non-preview runs.\").optional(),\n workflow_id: z.string().describe(\"Optional identifier of the workflow. Used when running a saved workflow definition from Roboflow platform.\").optional(),\n specification: z.record(z.string(), z.unknown()).describe(\"Workflow specification object defining version, inputs, steps, and outputs. Must include 'version' (string), 'inputs' (array of input definitions), 'steps' (array of processing steps), and 'outputs' (array of output definitions). Each input must have 'type' and 'name'. Each step must have 'type' and 'name' with additional configuration. Each output must have 'type', 'name', and 'selector'.\"),\n excluded_fields: z.array(z.string()).describe(\"List of field names to exclude from the response among those defined in workflow specification outputs.\").optional(),\n enable_profiling: z.boolean().default(false).describe(\"Flag to request workflow run profiling. Enables workflow profiler only when server settings allow profiling traces to be exported to clients. Only applies for workflow definitions saved on Roboflow platform.\").optional(),\n}).describe(\"Request model for running a workflow specification.\");\nexport const RoboflowRunWorkflowOutput = z.object({\n outputs: z.array(z.record(z.string(), z.unknown())).describe(\"Array of dictionaries with keys defined in workflow output specification and their serialized values. Each element represents the output for one input processed by the workflow.\"),\n profiler_trace: z.array(z.record(z.string(), z.unknown())).describe(\"Array of profiler events if enable_profiling was set to true and server allows profiling trace export.\").nullable().optional(),\n}).describe(\"Response model returned after running a workflow.\");\n\nexport const roboflowRunWorkflow = action(\"ROBOFLOW_RUN_WORKFLOW\", {\n slug: \"roboflow-run-workflow\",\n name: \"Run Workflow\",\n description: \"Tool to run a workflow specification with provided inputs. Use when you need to execute a custom Roboflow workflow pipeline for image processing, model inference, or other computer vision tasks.\",\n input: RoboflowRunWorkflowInput,\n output: RoboflowRunWorkflowOutput,\n});\n"],"mappings":";;AAkBA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBsC,EAAE,OAAO;EAC/C,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uWAAuW;EAC1Z,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oJAAoJ,CAAC,CAAC,SAAS;EAC5L,YAAY,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS;EAC3J,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;EACxJ,eAAe,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0YAA0Y;EACpc,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yGAAyG,CAAC,CAAC,SAAS;EAClK,kBAAkB,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,iNAAiN,CAAC,CAAC,SAAS;CACpR,CAAC,CAAC,CAAC,SAAS,qDAUH;CACP,QAVuC,EAAE,OAAO;EAChD,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,mLAAmL;EAChP,gBAAgB,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpM,CAAC,CAAC,CAAC,SAAS,mDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"run-workflow.mjs","names":[],"sources":["../../src/actions/run-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowRunWorkflowInput = z.object({\n inputs: z.record(z.string(), z.unknown()).describe(\"Dictionary containing runtime values for each parameter defined as an input in the workflow specification. Keys must match the 'name' fields defined in specification.inputs. Values can be of various types depending on the input type (e.g., for InferenceImage input, provide object with 'type' and 'value' keys where type can be 'url', 'base64', or 'numpy').\"),\n api_key: z.string().describe(\"Roboflow API Key passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata headers.\").optional(),\n is_preview: z.boolean().default(false).describe(\"Reserved flag used internally by Roboflow to distinguish between preview and non-preview runs.\").optional(),\n workflow_id: z.string().describe(\"Optional identifier of the workflow. Used when running a saved workflow definition from Roboflow platform.\").optional(),\n specification: z.record(z.string(), z.unknown()).describe(\"Workflow specification object defining version, inputs, steps, and outputs. Must include 'version' (string), 'inputs' (array of input definitions), 'steps' (array of processing steps), and 'outputs' (array of output definitions). Each input must have 'type' and 'name'. Each step must have 'type' and 'name' with additional configuration. Each output must have 'type', 'name', and 'selector'.\"),\n excluded_fields: z.array(z.string()).describe(\"List of field names to exclude from the response among those defined in workflow specification outputs.\").optional(),\n enable_profiling: z.boolean().default(false).describe(\"Flag to request workflow run profiling. Enables workflow profiler only when server settings allow profiling traces to be exported to clients. Only applies for workflow definitions saved on Roboflow platform.\").optional(),\n}).describe(\"Request model for running a workflow specification.\");\nexport const RoboflowRunWorkflowOutput = z.object({\n outputs: z.array(z.record(z.string(), z.unknown())).describe(\"Array of dictionaries with keys defined in workflow output specification and their serialized values. Each element represents the output for one input processed by the workflow.\"),\n profiler_trace: z.array(z.record(z.string(), z.unknown())).describe(\"Array of profiler events if enable_profiling was set to true and server allows profiling trace export.\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after running a workflow.\");\n\nexport const roboflowRunWorkflow = action(\"ROBOFLOW_RUN_WORKFLOW\", {\n slug: \"roboflow-run-workflow\",\n name: \"Run Workflow\",\n description: \"Tool to run a workflow specification with provided inputs. Use when you need to execute a custom Roboflow workflow pipeline for image processing, model inference, or other computer vision tasks.\",\n input: RoboflowRunWorkflowInput,\n output: RoboflowRunWorkflowOutput,\n});\n"],"mappings":";;AAkBA,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBsC,EAAE,OAAO;EAC/C,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,uWAAuW;EAC1Z,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oJAAoJ,CAAC,CAAC,SAAS;EAC5L,YAAY,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS;EAC3J,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;EACxJ,eAAe,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0YAA0Y;EACpc,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yGAAyG,CAAC,CAAC,SAAS;EAClK,kBAAkB,EAAE,QAAQ,CAAC,CAAC,QAAQ,KAAK,CAAC,CAAC,SAAS,iNAAiN,CAAC,CAAC,SAAS;CACpR,CAAC,CAAC,CAAC,SAAS,qDAUH;CACP,QAVuC,EAAE,OAAO;EAChD,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,mLAAmL;EAChP,gBAAgB,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpM,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mDAOhB;AACV,CAAC"}
@@ -7,20 +7,20 @@ const RoboflowValidateWorkflowInput = zod.z.object({
7
7
  type: zod.z.string().describe("Type of the workflow step (e.g., 'roboflow_core/roboflow_object_detection_model@v1')."),
8
8
  images: zod.z.string().describe("Reference to the input images using workflow selector syntax (e.g., '$inputs.image').").optional(),
9
9
  model_id: zod.z.string().describe("Model ID to use for inference (e.g., 'yolov8n-640').").optional()
10
- }).describe("Defines a step in the workflow.")).describe("List of workflow steps that process the inputs and produce intermediate results."),
10
+ }).passthrough().describe("Defines a step in the workflow.")).describe("List of workflow steps that process the inputs and produce intermediate results."),
11
11
  inputs: zod.z.array(zod.z.object({
12
12
  name: zod.z.string().describe("Name of the input that can be referenced in workflow steps."),
13
13
  type: zod.z.string().describe("Type of the workflow input (e.g., 'WorkflowImage', 'WorkflowParameter').")
14
- }).describe("Defines an input to the workflow.")).describe("List of workflow inputs that define the data flowing into the workflow."),
14
+ }).passthrough().describe("Defines an input to the workflow.")).describe("List of workflow inputs that define the data flowing into the workflow."),
15
15
  api_key: zod.z.string().describe("Roboflow API Key that will be passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata.").optional(),
16
16
  outputs: zod.z.array(zod.z.object({
17
17
  name: zod.z.string().describe("Name of the output field."),
18
18
  type: zod.z.string().describe("Type of the workflow output (e.g., 'JsonField')."),
19
19
  selector: zod.z.string().describe("Selector to extract data from workflow steps (e.g., '$steps.detector.predictions').")
20
- }).describe("Defines an output from the workflow.")).describe("List of workflow outputs that extract final results from the steps."),
20
+ }).passthrough().describe("Defines an output from the workflow.")).describe("List of workflow outputs that extract final results from the steps."),
21
21
  version: zod.z.string().describe("Version of the workflow specification format.")
22
22
  }).describe("Request model for validating a Roboflow workflow specification.");
23
- const RoboflowValidateWorkflowOutput = zod.z.object({ status: zod.z.string().describe("Validation status of the workflow. Indicates whether the workflow specification is valid.").nullable() }).describe("Response model returned after validating a workflow.");
23
+ const RoboflowValidateWorkflowOutput = zod.z.object({ status: zod.z.string().describe("Validation status of the workflow. Indicates whether the workflow specification is valid.").nullable() }).passthrough().describe("Response model returned after validating a workflow.");
24
24
  const roboflowValidateWorkflow = require_action.action("ROBOFLOW_VALIDATE_WORKFLOW", {
25
25
  slug: "roboflow-validate-workflow",
26
26
  name: "Validate Workflow",
@@ -1 +1 @@
1
- {"version":3,"file":"validate-workflow.cjs","names":["z","action"],"sources":["../../src/actions/validate-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowValidateWorkflowInput = z.object({\n steps: z.array(z.object({\n name: z.string().describe(\"Name of the step that can be referenced in outputs or other steps.\"),\n type: z.string().describe(\"Type of the workflow step (e.g., 'roboflow_core/roboflow_object_detection_model@v1').\"),\n images: z.string().describe(\"Reference to the input images using workflow selector syntax (e.g., '$inputs.image').\").optional(),\n model_id: z.string().describe(\"Model ID to use for inference (e.g., 'yolov8n-640').\").optional(),\n}).describe(\"Defines a step in the workflow.\")).describe(\"List of workflow steps that process the inputs and produce intermediate results.\"),\n inputs: z.array(z.object({\n name: z.string().describe(\"Name of the input that can be referenced in workflow steps.\"),\n type: z.string().describe(\"Type of the workflow input (e.g., 'WorkflowImage', 'WorkflowParameter').\"),\n}).describe(\"Defines an input to the workflow.\")).describe(\"List of workflow inputs that define the data flowing into the workflow.\"),\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata.\").optional(),\n outputs: z.array(z.object({\n name: z.string().describe(\"Name of the output field.\"),\n type: z.string().describe(\"Type of the workflow output (e.g., 'JsonField').\"),\n selector: z.string().describe(\"Selector to extract data from workflow steps (e.g., '$steps.detector.predictions').\"),\n}).describe(\"Defines an output from the workflow.\")).describe(\"List of workflow outputs that extract final results from the steps.\"),\n version: z.string().describe(\"Version of the workflow specification format.\"),\n}).describe(\"Request model for validating a Roboflow workflow specification.\");\nexport const RoboflowValidateWorkflowOutput = z.object({\n status: z.string().describe(\"Validation status of the workflow. Indicates whether the workflow specification is valid.\").nullable(),\n}).describe(\"Response model returned after validating a workflow.\");\n\nexport const roboflowValidateWorkflow = action(\"ROBOFLOW_VALIDATE_WORKFLOW\", {\n slug: \"roboflow-validate-workflow\",\n name: \"Validate Workflow\",\n description: \"Tool to validate a Roboflow workflow specification before execution. Use this to check if your workflow definition is syntactically correct and properly structured.\",\n input: RoboflowValidateWorkflowInput,\n output: RoboflowValidateWorkflowOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACxB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;EAC9F,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF;EACjH,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS;EAC9H,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACjG,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,CAAC,SAAS,kFAAkF;CACzI,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACzB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D;EACvF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;CACtG,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,SAAS,yEAAyE;CAClI,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;CACjM,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EAC1B,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;EACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;EAC5E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qFAAqF;CACrH,CAAC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,CAAC,SAAS,qEAAqE;CACjI,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;AAC9E,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS,EACpI,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAElE,MAAa,2BAA2BC,eAAAA,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"validate-workflow.cjs","names":["z","action"],"sources":["../../src/actions/validate-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowValidateWorkflowInput = z.object({\n steps: z.array(z.object({\n name: z.string().describe(\"Name of the step that can be referenced in outputs or other steps.\"),\n type: z.string().describe(\"Type of the workflow step (e.g., 'roboflow_core/roboflow_object_detection_model@v1').\"),\n images: z.string().describe(\"Reference to the input images using workflow selector syntax (e.g., '$inputs.image').\").optional(),\n model_id: z.string().describe(\"Model ID to use for inference (e.g., 'yolov8n-640').\").optional(),\n}).passthrough().describe(\"Defines a step in the workflow.\")).describe(\"List of workflow steps that process the inputs and produce intermediate results.\"),\n inputs: z.array(z.object({\n name: z.string().describe(\"Name of the input that can be referenced in workflow steps.\"),\n type: z.string().describe(\"Type of the workflow input (e.g., 'WorkflowImage', 'WorkflowParameter').\"),\n}).passthrough().describe(\"Defines an input to the workflow.\")).describe(\"List of workflow inputs that define the data flowing into the workflow.\"),\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata.\").optional(),\n outputs: z.array(z.object({\n name: z.string().describe(\"Name of the output field.\"),\n type: z.string().describe(\"Type of the workflow output (e.g., 'JsonField').\"),\n selector: z.string().describe(\"Selector to extract data from workflow steps (e.g., '$steps.detector.predictions').\"),\n}).passthrough().describe(\"Defines an output from the workflow.\")).describe(\"List of workflow outputs that extract final results from the steps.\"),\n version: z.string().describe(\"Version of the workflow specification format.\"),\n}).describe(\"Request model for validating a Roboflow workflow specification.\");\nexport const RoboflowValidateWorkflowOutput = z.object({\n status: z.string().describe(\"Validation status of the workflow. Indicates whether the workflow specification is valid.\").nullable(),\n}).passthrough().describe(\"Response model returned after validating a workflow.\");\n\nexport const roboflowValidateWorkflow = action(\"ROBOFLOW_VALIDATE_WORKFLOW\", {\n slug: \"roboflow-validate-workflow\",\n name: \"Validate Workflow\",\n description: \"Tool to validate a Roboflow workflow specification before execution. Use this to check if your workflow definition is syntactically correct and properly structured.\",\n input: RoboflowValidateWorkflowInput,\n output: RoboflowValidateWorkflowOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACxB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;EAC9F,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF;EACjH,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS;EAC9H,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACjG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,CAAC,SAAS,kFAAkF;CACvJ,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACzB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D;EACvF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;CACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,SAAS,yEAAyE;CAChJ,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;CACjM,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EAC1B,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;EACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;EAC5E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qFAAqF;CACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,CAAC,SAAS,qEAAqE;CAC/I,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;AAC9E,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS,EACpI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sDAAsD;AAEhF,MAAa,2BAA2BC,eAAAA,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -7,34 +7,37 @@ declare const RoboflowValidateWorkflowInput: z.ZodObject<{
7
7
  type: z.ZodString;
8
8
  images: z.ZodOptional<z.ZodString>;
9
9
  model_id: z.ZodOptional<z.ZodString>;
10
- }, z.core.$strip>>;
10
+ }, z.core.$loose>>;
11
11
  inputs: z.ZodArray<z.ZodObject<{
12
12
  name: z.ZodString;
13
13
  type: z.ZodString;
14
- }, z.core.$strip>>;
14
+ }, z.core.$loose>>;
15
15
  api_key: z.ZodOptional<z.ZodString>;
16
16
  outputs: z.ZodArray<z.ZodObject<{
17
17
  name: z.ZodString;
18
18
  type: z.ZodString;
19
19
  selector: z.ZodString;
20
- }, z.core.$strip>>;
20
+ }, z.core.$loose>>;
21
21
  version: z.ZodString;
22
22
  }, z.core.$strip>;
23
23
  declare const RoboflowValidateWorkflowOutput: z.ZodObject<{
24
24
  status: z.ZodNullable<z.ZodString>;
25
- }, z.core.$strip>;
25
+ }, z.core.$loose>;
26
26
  declare const roboflowValidateWorkflow: import("@keystrokehq/action").WorkflowActionDefinition<{
27
27
  steps: {
28
+ [x: string]: unknown;
28
29
  name: string;
29
30
  type: string;
30
31
  images?: string | undefined;
31
32
  model_id?: string | undefined;
32
33
  }[];
33
34
  inputs: {
35
+ [x: string]: unknown;
34
36
  name: string;
35
37
  type: string;
36
38
  }[];
37
39
  outputs: {
40
+ [x: string]: unknown;
38
41
  name: string;
39
42
  type: string;
40
43
  selector: string;
@@ -7,34 +7,37 @@ declare const RoboflowValidateWorkflowInput: z.ZodObject<{
7
7
  type: z.ZodString;
8
8
  images: z.ZodOptional<z.ZodString>;
9
9
  model_id: z.ZodOptional<z.ZodString>;
10
- }, z.core.$strip>>;
10
+ }, z.core.$loose>>;
11
11
  inputs: z.ZodArray<z.ZodObject<{
12
12
  name: z.ZodString;
13
13
  type: z.ZodString;
14
- }, z.core.$strip>>;
14
+ }, z.core.$loose>>;
15
15
  api_key: z.ZodOptional<z.ZodString>;
16
16
  outputs: z.ZodArray<z.ZodObject<{
17
17
  name: z.ZodString;
18
18
  type: z.ZodString;
19
19
  selector: z.ZodString;
20
- }, z.core.$strip>>;
20
+ }, z.core.$loose>>;
21
21
  version: z.ZodString;
22
22
  }, z.core.$strip>;
23
23
  declare const RoboflowValidateWorkflowOutput: z.ZodObject<{
24
24
  status: z.ZodNullable<z.ZodString>;
25
- }, z.core.$strip>;
25
+ }, z.core.$loose>;
26
26
  declare const roboflowValidateWorkflow: import("@keystrokehq/action").WorkflowActionDefinition<{
27
27
  steps: {
28
+ [x: string]: unknown;
28
29
  name: string;
29
30
  type: string;
30
31
  images?: string | undefined;
31
32
  model_id?: string | undefined;
32
33
  }[];
33
34
  inputs: {
35
+ [x: string]: unknown;
34
36
  name: string;
35
37
  type: string;
36
38
  }[];
37
39
  outputs: {
40
+ [x: string]: unknown;
38
41
  name: string;
39
42
  type: string;
40
43
  selector: string;
@@ -10,20 +10,20 @@ const roboflowValidateWorkflow = action("ROBOFLOW_VALIDATE_WORKFLOW", {
10
10
  type: z.string().describe("Type of the workflow step (e.g., 'roboflow_core/roboflow_object_detection_model@v1')."),
11
11
  images: z.string().describe("Reference to the input images using workflow selector syntax (e.g., '$inputs.image').").optional(),
12
12
  model_id: z.string().describe("Model ID to use for inference (e.g., 'yolov8n-640').").optional()
13
- }).describe("Defines a step in the workflow.")).describe("List of workflow steps that process the inputs and produce intermediate results."),
13
+ }).passthrough().describe("Defines a step in the workflow.")).describe("List of workflow steps that process the inputs and produce intermediate results."),
14
14
  inputs: z.array(z.object({
15
15
  name: z.string().describe("Name of the input that can be referenced in workflow steps."),
16
16
  type: z.string().describe("Type of the workflow input (e.g., 'WorkflowImage', 'WorkflowParameter').")
17
- }).describe("Defines an input to the workflow.")).describe("List of workflow inputs that define the data flowing into the workflow."),
17
+ }).passthrough().describe("Defines an input to the workflow.")).describe("List of workflow inputs that define the data flowing into the workflow."),
18
18
  api_key: z.string().describe("Roboflow API Key that will be passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata.").optional(),
19
19
  outputs: z.array(z.object({
20
20
  name: z.string().describe("Name of the output field."),
21
21
  type: z.string().describe("Type of the workflow output (e.g., 'JsonField')."),
22
22
  selector: z.string().describe("Selector to extract data from workflow steps (e.g., '$steps.detector.predictions').")
23
- }).describe("Defines an output from the workflow.")).describe("List of workflow outputs that extract final results from the steps."),
23
+ }).passthrough().describe("Defines an output from the workflow.")).describe("List of workflow outputs that extract final results from the steps."),
24
24
  version: z.string().describe("Version of the workflow specification format.")
25
25
  }).describe("Request model for validating a Roboflow workflow specification."),
26
- output: z.object({ status: z.string().describe("Validation status of the workflow. Indicates whether the workflow specification is valid.").nullable() }).describe("Response model returned after validating a workflow.")
26
+ output: z.object({ status: z.string().describe("Validation status of the workflow. Indicates whether the workflow specification is valid.").nullable() }).passthrough().describe("Response model returned after validating a workflow.")
27
27
  });
28
28
  //#endregion
29
29
  export { roboflowValidateWorkflow };
@@ -1 +1 @@
1
- {"version":3,"file":"validate-workflow.mjs","names":[],"sources":["../../src/actions/validate-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowValidateWorkflowInput = z.object({\n steps: z.array(z.object({\n name: z.string().describe(\"Name of the step that can be referenced in outputs or other steps.\"),\n type: z.string().describe(\"Type of the workflow step (e.g., 'roboflow_core/roboflow_object_detection_model@v1').\"),\n images: z.string().describe(\"Reference to the input images using workflow selector syntax (e.g., '$inputs.image').\").optional(),\n model_id: z.string().describe(\"Model ID to use for inference (e.g., 'yolov8n-640').\").optional(),\n}).describe(\"Defines a step in the workflow.\")).describe(\"List of workflow steps that process the inputs and produce intermediate results.\"),\n inputs: z.array(z.object({\n name: z.string().describe(\"Name of the input that can be referenced in workflow steps.\"),\n type: z.string().describe(\"Type of the workflow input (e.g., 'WorkflowImage', 'WorkflowParameter').\"),\n}).describe(\"Defines an input to the workflow.\")).describe(\"List of workflow inputs that define the data flowing into the workflow.\"),\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata.\").optional(),\n outputs: z.array(z.object({\n name: z.string().describe(\"Name of the output field.\"),\n type: z.string().describe(\"Type of the workflow output (e.g., 'JsonField').\"),\n selector: z.string().describe(\"Selector to extract data from workflow steps (e.g., '$steps.detector.predictions').\"),\n}).describe(\"Defines an output from the workflow.\")).describe(\"List of workflow outputs that extract final results from the steps.\"),\n version: z.string().describe(\"Version of the workflow specification format.\"),\n}).describe(\"Request model for validating a Roboflow workflow specification.\");\nexport const RoboflowValidateWorkflowOutput = z.object({\n status: z.string().describe(\"Validation status of the workflow. Indicates whether the workflow specification is valid.\").nullable(),\n}).describe(\"Response model returned after validating a workflow.\");\n\nexport const roboflowValidateWorkflow = action(\"ROBOFLOW_VALIDATE_WORKFLOW\", {\n slug: \"roboflow-validate-workflow\",\n name: \"Validate Workflow\",\n description: \"Tool to validate a Roboflow workflow specification before execution. Use this to check if your workflow definition is syntactically correct and properly structured.\",\n input: RoboflowValidateWorkflowInput,\n output: RoboflowValidateWorkflowOutput,\n});\n"],"mappings":";;AA2BA,MAAa,2BAA2B,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA3B2C,EAAE,OAAO;EACpD,OAAO,EAAE,MAAM,EAAE,OAAO;GACxB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;GAC9F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF;GACjH,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS;GAC9H,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EACjG,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,CAAC,SAAS,kFAAkF;EACzI,QAAQ,EAAE,MAAM,EAAE,OAAO;GACzB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D;GACvF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;EACtG,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,SAAS,yEAAyE;EAClI,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;EACjM,SAAS,EAAE,MAAM,EAAE,OAAO;GAC1B,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;GACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;GAC5E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qFAAqF;EACrH,CAAC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,CAAC,SAAS,qEAAqE;EACjI,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CAC9E,CAAC,CAAC,CAAC,SAAS,iEASH;CACP,QAT4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS,EACpI,CAAC,CAAC,CAAC,SAAS,sDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"validate-workflow.mjs","names":[],"sources":["../../src/actions/validate-workflow.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RoboflowValidateWorkflowInput = z.object({\n steps: z.array(z.object({\n name: z.string().describe(\"Name of the step that can be referenced in outputs or other steps.\"),\n type: z.string().describe(\"Type of the workflow step (e.g., 'roboflow_core/roboflow_object_detection_model@v1').\"),\n images: z.string().describe(\"Reference to the input images using workflow selector syntax (e.g., '$inputs.image').\").optional(),\n model_id: z.string().describe(\"Model ID to use for inference (e.g., 'yolov8n-640').\").optional(),\n}).passthrough().describe(\"Defines a step in the workflow.\")).describe(\"List of workflow steps that process the inputs and produce intermediate results.\"),\n inputs: z.array(z.object({\n name: z.string().describe(\"Name of the input that can be referenced in workflow steps.\"),\n type: z.string().describe(\"Type of the workflow input (e.g., 'WorkflowImage', 'WorkflowParameter').\"),\n}).passthrough().describe(\"Defines an input to the workflow.\")).describe(\"List of workflow inputs that define the data flowing into the workflow.\"),\n api_key: z.string().describe(\"Roboflow API Key that will be passed to the model during initialization for artifact retrieval. If not provided, uses the authentication from metadata.\").optional(),\n outputs: z.array(z.object({\n name: z.string().describe(\"Name of the output field.\"),\n type: z.string().describe(\"Type of the workflow output (e.g., 'JsonField').\"),\n selector: z.string().describe(\"Selector to extract data from workflow steps (e.g., '$steps.detector.predictions').\"),\n}).passthrough().describe(\"Defines an output from the workflow.\")).describe(\"List of workflow outputs that extract final results from the steps.\"),\n version: z.string().describe(\"Version of the workflow specification format.\"),\n}).describe(\"Request model for validating a Roboflow workflow specification.\");\nexport const RoboflowValidateWorkflowOutput = z.object({\n status: z.string().describe(\"Validation status of the workflow. Indicates whether the workflow specification is valid.\").nullable(),\n}).passthrough().describe(\"Response model returned after validating a workflow.\");\n\nexport const roboflowValidateWorkflow = action(\"ROBOFLOW_VALIDATE_WORKFLOW\", {\n slug: \"roboflow-validate-workflow\",\n name: \"Validate Workflow\",\n description: \"Tool to validate a Roboflow workflow specification before execution. Use this to check if your workflow definition is syntactically correct and properly structured.\",\n input: RoboflowValidateWorkflowInput,\n output: RoboflowValidateWorkflowOutput,\n});\n"],"mappings":";;AA2BA,MAAa,2BAA2B,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA3B2C,EAAE,OAAO;EACpD,OAAO,EAAE,MAAM,EAAE,OAAO;GACxB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;GAC9F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF;GACjH,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS;GAC9H,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EACjG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,CAAC,SAAS,kFAAkF;EACvJ,QAAQ,EAAE,MAAM,EAAE,OAAO;GACzB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D;GACvF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;EACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,SAAS,yEAAyE;EAChJ,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;EACjM,SAAS,EAAE,MAAM,EAAE,OAAO;GAC1B,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;GACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;GAC5E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qFAAqF;EACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,CAAC,SAAS,qEAAqE;EAC/I,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CAC9E,CAAC,CAAC,CAAC,SAAS,iEASH;CACP,QAT4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS,EACpI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sDAOhB;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const roboflowCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/roboflow",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "API Key",
13
13
  "secret": true,
14
14
  "description": "Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \"Roboflow API\"."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const roboflowCatalog = {\n \"slug\": \"roboflow\",\n \"name\": \"Roboflow\",\n \"description\": \"Build and use computer vision models fast with Roboflow. Train, deploy, and run inference on object detection, classification, and segmentation models.\",\n \"category\": \"Artificial Intelligence\",\n \"logo\": \"https://logos.composio.dev/api/roboflow\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \\\"Roboflow API\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const roboflowCatalog = {\n \"slug\": \"roboflow\",\n \"name\": \"Roboflow\",\n \"description\": \"Build and use computer vision models fast with Roboflow. Train, deploy, and run inference on object detection, classification, and segmentation models.\",\n \"category\": \"Artificial Intelligence\",\n \"logo\": \"https://logos.composio.dev/api/roboflow\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \\\"Roboflow API\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const roboflowCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \"Roboflow API\".";
@@ -9,7 +9,7 @@ declare const roboflowCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \"Roboflow API\".";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const roboflowCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/roboflow",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "API Key",
13
13
  "secret": true,
14
14
  "description": "Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \"Roboflow API\"."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const roboflowCatalog = {\n \"slug\": \"roboflow\",\n \"name\": \"Roboflow\",\n \"description\": \"Build and use computer vision models fast with Roboflow. Train, deploy, and run inference on object detection, classification, and segmentation models.\",\n \"category\": \"Artificial Intelligence\",\n \"logo\": \"https://logos.composio.dev/api/roboflow\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \\\"Roboflow API\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const roboflowCatalog = {\n \"slug\": \"roboflow\",\n \"name\": \"Roboflow\",\n \"description\": \"Build and use computer vision models fast with Roboflow. Train, deploy, and run inference on object detection, classification, and segmentation models.\",\n \"category\": \"Artificial Intelligence\",\n \"logo\": \"https://logos.composio.dev/api/roboflow\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Private API Key from Roboflow Settings > API Keys. Get it by navigating to your workspace, then clicking \\\"Roboflow API\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/roboflow",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"