@keystrokehq/roboflow 0.1.5 → 0.1.6
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.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/describe-workflow-interface.cjs +1 -0
- package/dist/actions/describe-workflow-interface.cjs.map +1 -1
- package/dist/actions/describe-workflow-interface.d.cts +3 -16
- package/dist/actions/describe-workflow-interface.d.cts.map +1 -1
- package/dist/actions/describe-workflow-interface.d.mts +3 -16
- package/dist/actions/describe-workflow-interface.d.mts.map +1 -1
- package/dist/actions/describe-workflow-interface.mjs +1 -0
- package/dist/actions/describe-workflow-interface.mjs.map +1 -1
- package/dist/actions/get-execution-engine-versions.cjs +1 -0
- package/dist/actions/get-execution-engine-versions.cjs.map +1 -1
- package/dist/actions/get-execution-engine-versions.d.cts +3 -13
- package/dist/actions/get-execution-engine-versions.d.cts.map +1 -1
- package/dist/actions/get-execution-engine-versions.d.mts +3 -13
- package/dist/actions/get-execution-engine-versions.d.mts.map +1 -1
- package/dist/actions/get-execution-engine-versions.mjs +1 -0
- package/dist/actions/get-execution-engine-versions.mjs.map +1 -1
- package/dist/actions/get-server-info.cjs +1 -0
- package/dist/actions/get-server-info.cjs.map +1 -1
- package/dist/actions/get-server-info.d.cts +3 -13
- package/dist/actions/get-server-info.d.cts.map +1 -1
- package/dist/actions/get-server-info.d.mts +3 -13
- package/dist/actions/get-server-info.d.mts.map +1 -1
- package/dist/actions/get-server-info.mjs +1 -0
- package/dist/actions/get-server-info.mjs.map +1 -1
- package/dist/actions/get-server-metrics.cjs +1 -0
- package/dist/actions/get-server-metrics.cjs.map +1 -1
- package/dist/actions/get-server-metrics.d.cts +3 -13
- package/dist/actions/get-server-metrics.d.cts.map +1 -1
- package/dist/actions/get-server-metrics.d.mts +3 -13
- package/dist/actions/get-server-metrics.d.mts.map +1 -1
- package/dist/actions/get-server-metrics.mjs +1 -0
- package/dist/actions/get-server-metrics.mjs.map +1 -1
- package/dist/actions/get-workflow-schema.cjs +1 -0
- package/dist/actions/get-workflow-schema.cjs.map +1 -1
- package/dist/actions/get-workflow-schema.d.cts +3 -13
- package/dist/actions/get-workflow-schema.d.cts.map +1 -1
- package/dist/actions/get-workflow-schema.d.mts +3 -13
- package/dist/actions/get-workflow-schema.d.mts.map +1 -1
- package/dist/actions/get-workflow-schema.mjs +1 -0
- package/dist/actions/get-workflow-schema.mjs.map +1 -1
- package/dist/actions/run-workflow.cjs +1 -0
- package/dist/actions/run-workflow.cjs.map +1 -1
- package/dist/actions/run-workflow.d.cts +3 -21
- package/dist/actions/run-workflow.d.cts.map +1 -1
- package/dist/actions/run-workflow.d.mts +3 -21
- package/dist/actions/run-workflow.d.mts.map +1 -1
- package/dist/actions/run-workflow.mjs +1 -0
- package/dist/actions/run-workflow.mjs.map +1 -1
- package/dist/actions/validate-workflow.cjs +1 -0
- package/dist/actions/validate-workflow.cjs.map +1 -1
- package/dist/actions/validate-workflow.d.cts +3 -34
- package/dist/actions/validate-workflow.d.cts.map +1 -1
- package/dist/actions/validate-workflow.d.mts +3 -34
- package/dist/actions/validate-workflow.d.mts.map +1 -1
- package/dist/actions/validate-workflow.mjs +1 -0
- package/dist/actions/validate-workflow.mjs.map +1 -1
- package/dist/app.cjs +2 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +4 -6
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +4 -6
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +0 -1
- package/dist/app.mjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["roboflow","executeRoboflowTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { roboflow } from \"./app\";\nimport { executeRoboflowTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["roboflow","executeRoboflowTool"],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { roboflow } from \"./app\";\nimport { executeRoboflowTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof roboflow.credential> {\n return roboflow.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeRoboflowTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAOwD;CACxD,OAAOA,YAAAA,SAAS,OAAO;EACrB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,oBAAoB,MAAM,KAAgC,CAAC;EAC3F;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { roboflow } from \"./app\";\nimport { executeRoboflowTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { roboflow } from \"./app\";\nimport { executeRoboflowTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof roboflow.credential> {\n return roboflow.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeRoboflowTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAOwD;CACxD,OAAO,SAAS,OAAO;EACrB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,oBAAoB,MAAM,KAAgC,CAAC;EAC3F;CACF,CAAC;AACH"}
|
|
@@ -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.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":"
|
|
1
|
+
{"version":3,"file":"describe-workflow-interface.cjs","names":["z","action"],"sources":["../../src/actions/describe-workflow-interface.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowDescribeWorkflowInterfaceInput,\n typeof RoboflowDescribeWorkflowInterfaceOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,oCAITC,eAAAA,OAAO,wCAAwC;CACjD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/describe-workflow-interface.d.ts
|
|
@@ -11,22 +13,7 @@ declare const RoboflowDescribeWorkflowInterfaceOutput: z.ZodObject<{
|
|
|
11
13
|
typing_hints: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12
14
|
kinds_schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13
15
|
}, z.core.$loose>;
|
|
14
|
-
declare const roboflowDescribeWorkflowInterface:
|
|
15
|
-
api_key: string;
|
|
16
|
-
specification: Record<string, unknown>;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
18
|
-
connectionId: z.ZodString;
|
|
19
|
-
entityId: z.ZodString;
|
|
20
|
-
instanceId: z.ZodString;
|
|
21
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
-
generic_api_key: z.ZodString;
|
|
23
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
24
|
-
connectionId: z.ZodString;
|
|
25
|
-
entityId: z.ZodString;
|
|
26
|
-
instanceId: z.ZodString;
|
|
27
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
-
generic_api_key: z.ZodString;
|
|
29
|
-
}, z.core.$strip>>]>;
|
|
16
|
+
declare const roboflowDescribeWorkflowInterface: AppAction<typeof RoboflowDescribeWorkflowInterfaceInput, typeof RoboflowDescribeWorkflowInterfaceOutput, typeof roboflow.credential>;
|
|
30
17
|
//#endregion
|
|
31
18
|
export { roboflowDescribeWorkflowInterface };
|
|
32
19
|
//# sourceMappingURL=describe-workflow-interface.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"describe-workflow-interface.d.cts","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"describe-workflow-interface.d.cts","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"mappings":";;;;;cAMa,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;cAItC,uCAAA,EAAuC,CAAA,CAAA,SAAA;;;;;;cAOvC,iCAAA,EAAmC,SAAA,QACvC,sCAAA,SACA,uCAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/describe-workflow-interface.d.ts
|
|
@@ -11,22 +13,7 @@ declare const RoboflowDescribeWorkflowInterfaceOutput: z.ZodObject<{
|
|
|
11
13
|
typing_hints: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
12
14
|
kinds_schemas: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13
15
|
}, z.core.$loose>;
|
|
14
|
-
declare const roboflowDescribeWorkflowInterface:
|
|
15
|
-
api_key: string;
|
|
16
|
-
specification: Record<string, unknown>;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
18
|
-
connectionId: z.ZodString;
|
|
19
|
-
entityId: z.ZodString;
|
|
20
|
-
instanceId: z.ZodString;
|
|
21
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
-
generic_api_key: z.ZodString;
|
|
23
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
24
|
-
connectionId: z.ZodString;
|
|
25
|
-
entityId: z.ZodString;
|
|
26
|
-
instanceId: z.ZodString;
|
|
27
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
-
generic_api_key: z.ZodString;
|
|
29
|
-
}, z.core.$strip>>]>;
|
|
16
|
+
declare const roboflowDescribeWorkflowInterface: AppAction<typeof RoboflowDescribeWorkflowInterfaceInput, typeof RoboflowDescribeWorkflowInterfaceOutput, typeof roboflow.credential>;
|
|
30
17
|
//#endregion
|
|
31
18
|
export { roboflowDescribeWorkflowInterface };
|
|
32
19
|
//# sourceMappingURL=describe-workflow-interface.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"describe-workflow-interface.d.mts","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"describe-workflow-interface.d.mts","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"mappings":";;;;;cAMa,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;cAItC,uCAAA,EAAuC,CAAA,CAAA,SAAA;;;;;;cAOvC,iCAAA,EAAmC,SAAA,QACvC,sCAAA,SACA,uCAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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.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":"
|
|
1
|
+
{"version":3,"file":"describe-workflow-interface.mjs","names":[],"sources":["../../src/actions/describe-workflow-interface.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowDescribeWorkflowInterfaceInput,\n typeof RoboflowDescribeWorkflowInterfaceOutput,\n typeof roboflow.credential\n> = 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":";;;AAiBA,MAAa,oCAIT,OAAO,wCAAwC;CACjD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnBoD,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,2DAgBH;CACP,QAhBqD,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,oEAWhB;AACV,CAAC"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"get-execution-engine-versions.cjs","names":["z","action"],"sources":["../../src/actions/get-execution-engine-versions.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetExecutionEngineVersionsInput,\n typeof RoboflowGetExecutionEngineVersionsOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,qCAITC,eAAAA,OAAO,0CAA0C;CACnD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-execution-engine-versions.d.ts
|
|
@@ -5,19 +7,7 @@ declare const RoboflowGetExecutionEngineVersionsInput: z.ZodObject<{}, z.core.$s
|
|
|
5
7
|
declare const RoboflowGetExecutionEngineVersionsOutput: z.ZodObject<{
|
|
6
8
|
versions: z.ZodArray<z.ZodString>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const roboflowGetExecutionEngineVersions:
|
|
9
|
-
connectionId: z.ZodString;
|
|
10
|
-
entityId: z.ZodString;
|
|
11
|
-
instanceId: z.ZodString;
|
|
12
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13
|
-
generic_api_key: z.ZodString;
|
|
14
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
15
|
-
connectionId: z.ZodString;
|
|
16
|
-
entityId: z.ZodString;
|
|
17
|
-
instanceId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
-
generic_api_key: z.ZodString;
|
|
20
|
-
}, z.core.$strip>>]>;
|
|
10
|
+
declare const roboflowGetExecutionEngineVersions: AppAction<typeof RoboflowGetExecutionEngineVersionsInput, typeof RoboflowGetExecutionEngineVersionsOutput, typeof roboflow.credential>;
|
|
21
11
|
//#endregion
|
|
22
12
|
export { roboflowGetExecutionEngineVersions };
|
|
23
13
|
//# sourceMappingURL=get-execution-engine-versions.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-execution-engine-versions.d.cts","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-execution-engine-versions.d.cts","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"mappings":";;;;;cAMa,uCAAA,EAAuC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACvC,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;cAIxC,kCAAA,EAAoC,SAAA,QACxC,uCAAA,SACA,wCAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-execution-engine-versions.d.ts
|
|
@@ -5,19 +7,7 @@ declare const RoboflowGetExecutionEngineVersionsInput: z.ZodObject<{}, z.core.$s
|
|
|
5
7
|
declare const RoboflowGetExecutionEngineVersionsOutput: z.ZodObject<{
|
|
6
8
|
versions: z.ZodArray<z.ZodString>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const roboflowGetExecutionEngineVersions:
|
|
9
|
-
connectionId: z.ZodString;
|
|
10
|
-
entityId: z.ZodString;
|
|
11
|
-
instanceId: z.ZodString;
|
|
12
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13
|
-
generic_api_key: z.ZodString;
|
|
14
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
15
|
-
connectionId: z.ZodString;
|
|
16
|
-
entityId: z.ZodString;
|
|
17
|
-
instanceId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
-
generic_api_key: z.ZodString;
|
|
20
|
-
}, z.core.$strip>>]>;
|
|
10
|
+
declare const roboflowGetExecutionEngineVersions: AppAction<typeof RoboflowGetExecutionEngineVersionsInput, typeof RoboflowGetExecutionEngineVersionsOutput, typeof roboflow.credential>;
|
|
21
11
|
//#endregion
|
|
22
12
|
export { roboflowGetExecutionEngineVersions };
|
|
23
13
|
//# sourceMappingURL=get-execution-engine-versions.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-execution-engine-versions.d.mts","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-execution-engine-versions.d.mts","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"mappings":";;;;;cAMa,uCAAA,EAAuC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACvC,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;cAIxC,kCAAA,EAAoC,SAAA,QACxC,uCAAA,SACA,wCAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"get-execution-engine-versions.mjs","names":[],"sources":["../../src/actions/get-execution-engine-versions.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetExecutionEngineVersionsInput,\n typeof RoboflowGetExecutionEngineVersionsOutput,\n typeof roboflow.credential\n> = 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":";;;AAWA,MAAa,qCAIT,OAAO,0CAA0C;CACnD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAbqD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GAapE;CACP,QAbsD,EAAE,OAAO,EAC/D,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4EAWhB;AACV,CAAC"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"get-server-info.cjs","names":["z","action"],"sources":["../../src/actions/get-server-info.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetServerInfoInput,\n typeof RoboflowGetServerInfoOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,wBAITC,eAAAA,OAAO,4BAA4B;CACrC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-server-info.d.ts
|
|
@@ -7,19 +9,7 @@ declare const RoboflowGetServerInfoOutput: z.ZodObject<{
|
|
|
7
9
|
uuid: z.ZodNullable<z.ZodString>;
|
|
8
10
|
version: z.ZodNullable<z.ZodString>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const roboflowGetServerInfo:
|
|
11
|
-
connectionId: z.ZodString;
|
|
12
|
-
entityId: z.ZodString;
|
|
13
|
-
instanceId: z.ZodString;
|
|
14
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
-
generic_api_key: z.ZodString;
|
|
16
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
17
|
-
connectionId: z.ZodString;
|
|
18
|
-
entityId: z.ZodString;
|
|
19
|
-
instanceId: z.ZodString;
|
|
20
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
-
generic_api_key: z.ZodString;
|
|
22
|
-
}, z.core.$strip>>]>;
|
|
12
|
+
declare const roboflowGetServerInfo: AppAction<typeof RoboflowGetServerInfoInput, typeof RoboflowGetServerInfoOutput, typeof roboflow.credential>;
|
|
23
13
|
//#endregion
|
|
24
14
|
export { roboflowGetServerInfo };
|
|
25
15
|
//# sourceMappingURL=get-server-info.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-server-info.d.cts","names":[],"sources":["../../src/actions/get-server-info.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-server-info.d.cts","names":[],"sources":["../../src/actions/get-server-info.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;cAM3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-server-info.d.ts
|
|
@@ -7,19 +9,7 @@ declare const RoboflowGetServerInfoOutput: z.ZodObject<{
|
|
|
7
9
|
uuid: z.ZodNullable<z.ZodString>;
|
|
8
10
|
version: z.ZodNullable<z.ZodString>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const roboflowGetServerInfo:
|
|
11
|
-
connectionId: z.ZodString;
|
|
12
|
-
entityId: z.ZodString;
|
|
13
|
-
instanceId: z.ZodString;
|
|
14
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
-
generic_api_key: z.ZodString;
|
|
16
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
17
|
-
connectionId: z.ZodString;
|
|
18
|
-
entityId: z.ZodString;
|
|
19
|
-
instanceId: z.ZodString;
|
|
20
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
-
generic_api_key: z.ZodString;
|
|
22
|
-
}, z.core.$strip>>]>;
|
|
12
|
+
declare const roboflowGetServerInfo: AppAction<typeof RoboflowGetServerInfoInput, typeof RoboflowGetServerInfoOutput, typeof roboflow.credential>;
|
|
23
13
|
//#endregion
|
|
24
14
|
export { roboflowGetServerInfo };
|
|
25
15
|
//# sourceMappingURL=get-server-info.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-server-info.d.mts","names":[],"sources":["../../src/actions/get-server-info.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-server-info.d.mts","names":[],"sources":["../../src/actions/get-server-info.ts"],"mappings":";;;;;cAMa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;cAM3B,qBAAA,EAAuB,SAAA,QAC3B,0BAAA,SACA,2BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"get-server-info.mjs","names":[],"sources":["../../src/actions/get-server-info.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetServerInfoInput,\n typeof RoboflowGetServerInfoOutput,\n typeof roboflow.credential\n> = 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":";;;AAaA,MAAa,wBAIT,OAAO,4BAA4B;CACrC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kEAevD;CACP,QAfyC,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,0EAWhB;AACV,CAAC"}
|
|
@@ -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.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":"
|
|
1
|
+
{"version":3,"file":"get-server-metrics.cjs","names":["z","action"],"sources":["../../src/actions/get-server-metrics.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetServerMetricsInput,\n typeof RoboflowGetServerMetricsOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,2BAITC,eAAAA,OAAO,+BAA+B;CACxC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-server-metrics.d.ts
|
|
@@ -5,19 +7,7 @@ declare const RoboflowGetServerMetricsInput: z.ZodObject<{}, z.core.$strip>;
|
|
|
5
7
|
declare const RoboflowGetServerMetricsOutput: z.ZodObject<{
|
|
6
8
|
metrics: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const roboflowGetServerMetrics:
|
|
9
|
-
connectionId: z.ZodString;
|
|
10
|
-
entityId: z.ZodString;
|
|
11
|
-
instanceId: z.ZodString;
|
|
12
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13
|
-
generic_api_key: z.ZodString;
|
|
14
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
15
|
-
connectionId: z.ZodString;
|
|
16
|
-
entityId: z.ZodString;
|
|
17
|
-
instanceId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
-
generic_api_key: z.ZodString;
|
|
20
|
-
}, z.core.$strip>>]>;
|
|
10
|
+
declare const roboflowGetServerMetrics: AppAction<typeof RoboflowGetServerMetricsInput, typeof RoboflowGetServerMetricsOutput, typeof roboflow.credential>;
|
|
21
11
|
//#endregion
|
|
22
12
|
export { roboflowGetServerMetrics };
|
|
23
13
|
//# sourceMappingURL=get-server-metrics.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-server-metrics.d.cts","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-server-metrics.d.cts","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"mappings":";;;;;cAMa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAI9B,wBAAA,EAA0B,SAAA,QAC9B,6BAAA,SACA,8BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-server-metrics.d.ts
|
|
@@ -5,19 +7,7 @@ declare const RoboflowGetServerMetricsInput: z.ZodObject<{}, z.core.$strip>;
|
|
|
5
7
|
declare const RoboflowGetServerMetricsOutput: z.ZodObject<{
|
|
6
8
|
metrics: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const roboflowGetServerMetrics:
|
|
9
|
-
connectionId: z.ZodString;
|
|
10
|
-
entityId: z.ZodString;
|
|
11
|
-
instanceId: z.ZodString;
|
|
12
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13
|
-
generic_api_key: z.ZodString;
|
|
14
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
15
|
-
connectionId: z.ZodString;
|
|
16
|
-
entityId: z.ZodString;
|
|
17
|
-
instanceId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
-
generic_api_key: z.ZodString;
|
|
20
|
-
}, z.core.$strip>>]>;
|
|
10
|
+
declare const roboflowGetServerMetrics: AppAction<typeof RoboflowGetServerMetricsInput, typeof RoboflowGetServerMetricsOutput, typeof roboflow.credential>;
|
|
21
11
|
//#endregion
|
|
22
12
|
export { roboflowGetServerMetrics };
|
|
23
13
|
//# sourceMappingURL=get-server-metrics.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-server-metrics.d.mts","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-server-metrics.d.mts","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"mappings":";;;;;cAMa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAI9B,wBAAA,EAA0B,SAAA,QAC9B,6BAAA,SACA,8BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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.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":"
|
|
1
|
+
{"version":3,"file":"get-server-metrics.mjs","names":[],"sources":["../../src/actions/get-server-metrics.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetServerMetricsInput,\n typeof RoboflowGetServerMetricsOutput,\n typeof roboflow.credential\n> = 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":";;;AAWA,MAAa,2BAIT,OAAO,+BAA+B;CACxC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAb2C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oEAa1D;CACP,QAb4C,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,0KAWhB;AACV,CAAC"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"get-workflow-schema.cjs","names":["z","action"],"sources":["../../src/actions/get-workflow-schema.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetWorkflowSchemaInput,\n typeof RoboflowGetWorkflowSchemaOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,4BAITC,eAAAA,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-workflow-schema.d.ts
|
|
@@ -5,19 +7,7 @@ declare const RoboflowGetWorkflowSchemaInput: z.ZodObject<{}, z.core.$strip>;
|
|
|
5
7
|
declare const RoboflowGetWorkflowSchemaOutput: z.ZodObject<{
|
|
6
8
|
schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const roboflowGetWorkflowSchema:
|
|
9
|
-
connectionId: z.ZodString;
|
|
10
|
-
entityId: z.ZodString;
|
|
11
|
-
instanceId: z.ZodString;
|
|
12
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13
|
-
generic_api_key: z.ZodString;
|
|
14
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
15
|
-
connectionId: z.ZodString;
|
|
16
|
-
entityId: z.ZodString;
|
|
17
|
-
instanceId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
-
generic_api_key: z.ZodString;
|
|
20
|
-
}, z.core.$strip>>]>;
|
|
10
|
+
declare const roboflowGetWorkflowSchema: AppAction<typeof RoboflowGetWorkflowSchemaInput, typeof RoboflowGetWorkflowSchemaOutput, typeof roboflow.credential>;
|
|
21
11
|
//#endregion
|
|
22
12
|
export { roboflowGetWorkflowSchema };
|
|
23
13
|
//# sourceMappingURL=get-workflow-schema.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-workflow-schema.d.cts","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-workflow-schema.d.cts","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;cAI/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-workflow-schema.d.ts
|
|
@@ -5,19 +7,7 @@ declare const RoboflowGetWorkflowSchemaInput: z.ZodObject<{}, z.core.$strip>;
|
|
|
5
7
|
declare const RoboflowGetWorkflowSchemaOutput: z.ZodObject<{
|
|
6
8
|
schema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
7
9
|
}, z.core.$loose>;
|
|
8
|
-
declare const roboflowGetWorkflowSchema:
|
|
9
|
-
connectionId: z.ZodString;
|
|
10
|
-
entityId: z.ZodString;
|
|
11
|
-
instanceId: z.ZodString;
|
|
12
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
13
|
-
generic_api_key: z.ZodString;
|
|
14
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
15
|
-
connectionId: z.ZodString;
|
|
16
|
-
entityId: z.ZodString;
|
|
17
|
-
instanceId: z.ZodString;
|
|
18
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
-
generic_api_key: z.ZodString;
|
|
20
|
-
}, z.core.$strip>>]>;
|
|
10
|
+
declare const roboflowGetWorkflowSchema: AppAction<typeof RoboflowGetWorkflowSchemaInput, typeof RoboflowGetWorkflowSchemaOutput, typeof roboflow.credential>;
|
|
21
11
|
//#endregion
|
|
22
12
|
export { roboflowGetWorkflowSchema };
|
|
23
13
|
//# sourceMappingURL=get-workflow-schema.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-workflow-schema.d.mts","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-workflow-schema.d.mts","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;cAI/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"get-workflow-schema.mjs","names":[],"sources":["../../src/actions/get-workflow-schema.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowGetWorkflowSchemaInput,\n typeof RoboflowGetWorkflowSchemaOutput,\n typeof roboflow.credential\n> = 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":";;;AAWA,MAAa,4BAIT,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAb4C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oGAa3D;CACP,QAb6C,EAAE,OAAO,EACtD,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wJAAwJ,EAC7M,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAWhB;AACV,CAAC"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"run-workflow.cjs","names":["z","action"],"sources":["../../src/actions/run-workflow.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowRunWorkflowInput,\n typeof RoboflowRunWorkflowOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,sBAITC,eAAAA,OAAO,yBAAyB;CAClC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/run-workflow.d.ts
|
|
@@ -14,27 +16,7 @@ declare const RoboflowRunWorkflowOutput: z.ZodObject<{
|
|
|
14
16
|
outputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15
17
|
profiler_trace: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
16
18
|
}, z.core.$loose>;
|
|
17
|
-
declare const roboflowRunWorkflow:
|
|
18
|
-
inputs: Record<string, unknown>;
|
|
19
|
-
specification: Record<string, unknown>;
|
|
20
|
-
api_key?: string | undefined;
|
|
21
|
-
is_preview?: boolean | undefined;
|
|
22
|
-
workflow_id?: string | undefined;
|
|
23
|
-
excluded_fields?: string[] | undefined;
|
|
24
|
-
enable_profiling?: boolean | undefined;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
26
|
-
connectionId: z.ZodString;
|
|
27
|
-
entityId: z.ZodString;
|
|
28
|
-
instanceId: z.ZodString;
|
|
29
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
-
generic_api_key: z.ZodString;
|
|
31
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
32
|
-
connectionId: z.ZodString;
|
|
33
|
-
entityId: z.ZodString;
|
|
34
|
-
instanceId: z.ZodString;
|
|
35
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
-
generic_api_key: z.ZodString;
|
|
37
|
-
}, z.core.$strip>>]>;
|
|
19
|
+
declare const roboflowRunWorkflow: AppAction<typeof RoboflowRunWorkflowInput, typeof RoboflowRunWorkflowOutput, typeof roboflow.credential>;
|
|
38
20
|
//#endregion
|
|
39
21
|
export { roboflowRunWorkflow };
|
|
40
22
|
//# sourceMappingURL=run-workflow.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run-workflow.d.cts","names":[],"sources":["../../src/actions/run-workflow.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"run-workflow.d.cts","names":[],"sources":["../../src/actions/run-workflow.ts"],"mappings":";;;;;cAMa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;cASxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;cAKzB,mBAAA,EAAqB,SAAA,QACzB,wBAAA,SACA,yBAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/run-workflow.d.ts
|
|
@@ -14,27 +16,7 @@ declare const RoboflowRunWorkflowOutput: z.ZodObject<{
|
|
|
14
16
|
outputs: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15
17
|
profiler_trace: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
|
|
16
18
|
}, z.core.$loose>;
|
|
17
|
-
declare const roboflowRunWorkflow:
|
|
18
|
-
inputs: Record<string, unknown>;
|
|
19
|
-
specification: Record<string, unknown>;
|
|
20
|
-
api_key?: string | undefined;
|
|
21
|
-
is_preview?: boolean | undefined;
|
|
22
|
-
workflow_id?: string | undefined;
|
|
23
|
-
excluded_fields?: string[] | undefined;
|
|
24
|
-
enable_profiling?: boolean | undefined;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
26
|
-
connectionId: z.ZodString;
|
|
27
|
-
entityId: z.ZodString;
|
|
28
|
-
instanceId: z.ZodString;
|
|
29
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
-
generic_api_key: z.ZodString;
|
|
31
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
32
|
-
connectionId: z.ZodString;
|
|
33
|
-
entityId: z.ZodString;
|
|
34
|
-
instanceId: z.ZodString;
|
|
35
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
-
generic_api_key: z.ZodString;
|
|
37
|
-
}, z.core.$strip>>]>;
|
|
19
|
+
declare const roboflowRunWorkflow: AppAction<typeof RoboflowRunWorkflowInput, typeof RoboflowRunWorkflowOutput, typeof roboflow.credential>;
|
|
38
20
|
//#endregion
|
|
39
21
|
export { roboflowRunWorkflow };
|
|
40
22
|
//# sourceMappingURL=run-workflow.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run-workflow.d.mts","names":[],"sources":["../../src/actions/run-workflow.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"run-workflow.d.mts","names":[],"sources":["../../src/actions/run-workflow.ts"],"mappings":";;;;;cAMa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;cASxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;cAKzB,mBAAA,EAAqB,SAAA,QACzB,wBAAA,SACA,yBAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"run-workflow.mjs","names":[],"sources":["../../src/actions/run-workflow.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowRunWorkflowInput,\n typeof RoboflowRunWorkflowOutput,\n typeof roboflow.credential\n> = 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":";;;AAoBA,MAAa,sBAIT,OAAO,yBAAyB;CAClC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAtBsC,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,qDAcH;CACP,QAduC,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,mDAWhB;AACV,CAAC"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"validate-workflow.cjs","names":["z","action"],"sources":["../../src/actions/validate-workflow.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowValidateWorkflowInput,\n typeof RoboflowValidateWorkflowOutput,\n typeof roboflow.credential\n> = 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":";;;;AAMA,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,2BAITC,eAAAA,OAAO,8BAA8B;CACvC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/validate-workflow.d.ts
|
|
@@ -23,40 +25,7 @@ declare const RoboflowValidateWorkflowInput: z.ZodObject<{
|
|
|
23
25
|
declare const RoboflowValidateWorkflowOutput: z.ZodObject<{
|
|
24
26
|
status: z.ZodNullable<z.ZodString>;
|
|
25
27
|
}, z.core.$loose>;
|
|
26
|
-
declare const roboflowValidateWorkflow:
|
|
27
|
-
steps: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
name: string;
|
|
30
|
-
type: string;
|
|
31
|
-
images?: string | undefined;
|
|
32
|
-
model_id?: string | undefined;
|
|
33
|
-
}[];
|
|
34
|
-
inputs: {
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
name: string;
|
|
37
|
-
type: string;
|
|
38
|
-
}[];
|
|
39
|
-
outputs: {
|
|
40
|
-
[x: string]: unknown;
|
|
41
|
-
name: string;
|
|
42
|
-
type: string;
|
|
43
|
-
selector: string;
|
|
44
|
-
}[];
|
|
45
|
-
version: string;
|
|
46
|
-
api_key?: string | undefined;
|
|
47
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
48
|
-
connectionId: z.ZodString;
|
|
49
|
-
entityId: z.ZodString;
|
|
50
|
-
instanceId: z.ZodString;
|
|
51
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
52
|
-
generic_api_key: z.ZodString;
|
|
53
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
54
|
-
connectionId: z.ZodString;
|
|
55
|
-
entityId: z.ZodString;
|
|
56
|
-
instanceId: z.ZodString;
|
|
57
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
-
generic_api_key: z.ZodString;
|
|
59
|
-
}, z.core.$strip>>]>;
|
|
28
|
+
declare const roboflowValidateWorkflow: AppAction<typeof RoboflowValidateWorkflowInput, typeof RoboflowValidateWorkflowOutput, typeof roboflow.credential>;
|
|
60
29
|
//#endregion
|
|
61
30
|
export { roboflowValidateWorkflow };
|
|
62
31
|
//# sourceMappingURL=validate-workflow.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-workflow.d.cts","names":[],"sources":["../../src/actions/validate-workflow.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"validate-workflow.d.cts","names":[],"sources":["../../src/actions/validate-workflow.ts"],"mappings":";;;;;cAMa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAmB7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAI9B,wBAAA,EAA0B,SAAA,QAC9B,6BAAA,SACA,8BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { roboflow } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/validate-workflow.d.ts
|
|
@@ -23,40 +25,7 @@ declare const RoboflowValidateWorkflowInput: z.ZodObject<{
|
|
|
23
25
|
declare const RoboflowValidateWorkflowOutput: z.ZodObject<{
|
|
24
26
|
status: z.ZodNullable<z.ZodString>;
|
|
25
27
|
}, z.core.$loose>;
|
|
26
|
-
declare const roboflowValidateWorkflow:
|
|
27
|
-
steps: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
name: string;
|
|
30
|
-
type: string;
|
|
31
|
-
images?: string | undefined;
|
|
32
|
-
model_id?: string | undefined;
|
|
33
|
-
}[];
|
|
34
|
-
inputs: {
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
name: string;
|
|
37
|
-
type: string;
|
|
38
|
-
}[];
|
|
39
|
-
outputs: {
|
|
40
|
-
[x: string]: unknown;
|
|
41
|
-
name: string;
|
|
42
|
-
type: string;
|
|
43
|
-
selector: string;
|
|
44
|
-
}[];
|
|
45
|
-
version: string;
|
|
46
|
-
api_key?: string | undefined;
|
|
47
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
48
|
-
connectionId: z.ZodString;
|
|
49
|
-
entityId: z.ZodString;
|
|
50
|
-
instanceId: z.ZodString;
|
|
51
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
52
|
-
generic_api_key: z.ZodString;
|
|
53
|
-
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"roboflow", z.ZodObject<{
|
|
54
|
-
connectionId: z.ZodString;
|
|
55
|
-
entityId: z.ZodString;
|
|
56
|
-
instanceId: z.ZodString;
|
|
57
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
-
generic_api_key: z.ZodString;
|
|
59
|
-
}, z.core.$strip>>]>;
|
|
28
|
+
declare const roboflowValidateWorkflow: AppAction<typeof RoboflowValidateWorkflowInput, typeof RoboflowValidateWorkflowOutput, typeof roboflow.credential>;
|
|
60
29
|
//#endregion
|
|
61
30
|
export { roboflowValidateWorkflow };
|
|
62
31
|
//# sourceMappingURL=validate-workflow.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-workflow.d.mts","names":[],"sources":["../../src/actions/validate-workflow.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"validate-workflow.d.mts","names":[],"sources":["../../src/actions/validate-workflow.ts"],"mappings":";;;;;cAMa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAmB7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAI9B,wBAAA,EAA0B,SAAA,QAC9B,6BAAA,SACA,8BAAA,SACA,QAAA,CAAS,UAAA"}
|
|
@@ -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}).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":"
|
|
1
|
+
{"version":3,"file":"validate-workflow.mjs","names":[],"sources":["../../src/actions/validate-workflow.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { roboflow } from \"../app\";\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: AppAction<\n typeof RoboflowValidateWorkflowInput,\n typeof RoboflowValidateWorkflowOutput,\n typeof roboflow.credential\n> = 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":";;;AA6BA,MAAa,2BAIT,OAAO,8BAA8B;CACvC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA/B2C,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,iEAaH;CACP,QAb4C,EAAE,OAAO,EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,CAAC,CAAC,SAAS,EACpI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sDAWhB;AACV,CAAC"}
|
package/dist/app.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
-
let zod = require("zod");
|
|
3
2
|
//#region src/app.ts
|
|
3
|
+
const credential = { generic_api_key: require("zod").z.string() };
|
|
4
4
|
const roboflow = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
5
5
|
slug: "roboflow",
|
|
6
6
|
auth: "keystroke",
|
|
7
|
-
credential
|
|
7
|
+
credential
|
|
8
8
|
});
|
|
9
9
|
//#endregion
|
|
10
10
|
exports.roboflow = roboflow;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const roboflow = defineApp({\n slug: \"roboflow\",\n auth: \"keystroke\",\n credential
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const roboflow: KeystrokeApp<\"roboflow\", typeof credential> = defineApp({\n slug: \"roboflow\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAGA,MAAM,aAAa,EACjB,8BAAiBA,CAAAA,CAAAA,EAAE,OAAO,EAC5B;AAEA,MAAa,YAAA,GAAA,2BAAA,UAAA,CAAkE;CAC7E,MAAM;CACN,MAAM;CACN;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
1
2
|
import { z } from "zod";
|
|
2
3
|
|
|
3
4
|
//#region src/app.d.ts
|
|
4
|
-
declare const
|
|
5
|
-
connectionId: z.ZodString;
|
|
6
|
-
entityId: z.ZodString;
|
|
7
|
-
instanceId: z.ZodString;
|
|
8
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5
|
+
declare const credential: {
|
|
9
6
|
generic_api_key: z.ZodString;
|
|
10
|
-
}
|
|
7
|
+
};
|
|
8
|
+
declare const roboflow: KeystrokeApp<"roboflow", typeof credential>;
|
|
11
9
|
//#endregion
|
|
12
10
|
export { roboflow };
|
|
13
11
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,QAAA,EAAU,YAAY,oBAAoB,UAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,13 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
1
2
|
import { z } from "zod";
|
|
2
3
|
|
|
3
4
|
//#region src/app.d.ts
|
|
4
|
-
declare const
|
|
5
|
-
connectionId: z.ZodString;
|
|
6
|
-
entityId: z.ZodString;
|
|
7
|
-
instanceId: z.ZodString;
|
|
8
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5
|
+
declare const credential: {
|
|
9
6
|
generic_api_key: z.ZodString;
|
|
10
|
-
}
|
|
7
|
+
};
|
|
8
|
+
declare const roboflow: KeystrokeApp<"roboflow", typeof credential>;
|
|
11
9
|
//#endregion
|
|
12
10
|
export { roboflow };
|
|
13
11
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,QAAA,EAAU,YAAY,oBAAoB,UAAA"}
|
package/dist/app.mjs
CHANGED
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const roboflow = defineApp({\n slug: \"roboflow\",\n auth: \"keystroke\",\n credential
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const roboflow: KeystrokeApp<\"roboflow\", typeof credential> = defineApp({\n slug: \"roboflow\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAOA,MAAa,WAAwD,UAAU;CAC7E,MAAM;CACN,MAAM;CACN,cANA,iBAAiB,EAAE,OAAO,EAM1B;AACF,CAAC"}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { roboflow } from "./app.cjs";
|
|
1
2
|
import { roboflowDescribeWorkflowInterface } from "./actions/describe-workflow-interface.cjs";
|
|
2
3
|
import { roboflowGetExecutionEngineVersions } from "./actions/get-execution-engine-versions.cjs";
|
|
3
4
|
import { roboflowGetServerInfo } from "./actions/get-server-info.cjs";
|
|
@@ -5,6 +6,5 @@ import { roboflowGetServerMetrics } from "./actions/get-server-metrics.cjs";
|
|
|
5
6
|
import { roboflowGetWorkflowSchema } from "./actions/get-workflow-schema.cjs";
|
|
6
7
|
import { roboflowRunWorkflow } from "./actions/run-workflow.cjs";
|
|
7
8
|
import { roboflowValidateWorkflow } from "./actions/validate-workflow.cjs";
|
|
8
|
-
import { roboflow } from "./app.cjs";
|
|
9
9
|
import { roboflowCatalog } from "./catalog.cjs";
|
|
10
10
|
export { roboflow, roboflowCatalog, roboflowDescribeWorkflowInterface, roboflowGetExecutionEngineVersions, roboflowGetServerInfo, roboflowGetServerMetrics, roboflowGetWorkflowSchema, roboflowRunWorkflow, roboflowValidateWorkflow };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { roboflow } from "./app.mjs";
|
|
1
2
|
import { roboflowDescribeWorkflowInterface } from "./actions/describe-workflow-interface.mjs";
|
|
2
3
|
import { roboflowGetExecutionEngineVersions } from "./actions/get-execution-engine-versions.mjs";
|
|
3
4
|
import { roboflowGetServerInfo } from "./actions/get-server-info.mjs";
|
|
@@ -5,6 +6,5 @@ import { roboflowGetServerMetrics } from "./actions/get-server-metrics.mjs";
|
|
|
5
6
|
import { roboflowGetWorkflowSchema } from "./actions/get-workflow-schema.mjs";
|
|
6
7
|
import { roboflowRunWorkflow } from "./actions/run-workflow.mjs";
|
|
7
8
|
import { roboflowValidateWorkflow } from "./actions/validate-workflow.mjs";
|
|
8
|
-
import { roboflow } from "./app.mjs";
|
|
9
9
|
import { roboflowCatalog } from "./catalog.mjs";
|
|
10
10
|
export { roboflow, roboflowCatalog, roboflowDescribeWorkflowInterface, roboflowGetExecutionEngineVersions, roboflowGetServerInfo, roboflowGetServerMetrics, roboflowGetWorkflowSchema, roboflowRunWorkflow, roboflowValidateWorkflow };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/roboflow",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": ">=0.1.
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.104",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|