@keystrokehq/process_street 0.1.4 → 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/complete-workflow-run.cjs +1 -0
- package/dist/actions/complete-workflow-run.cjs.map +1 -1
- package/dist/actions/complete-workflow-run.d.cts +3 -3
- package/dist/actions/complete-workflow-run.d.cts.map +1 -1
- package/dist/actions/complete-workflow-run.d.mts +3 -3
- package/dist/actions/complete-workflow-run.d.mts.map +1 -1
- package/dist/actions/complete-workflow-run.mjs +1 -0
- package/dist/actions/complete-workflow-run.mjs.map +1 -1
- package/dist/actions/create-workflow-run.cjs +1 -0
- package/dist/actions/create-workflow-run.cjs.map +1 -1
- package/dist/actions/create-workflow-run.d.cts +3 -6
- package/dist/actions/create-workflow-run.d.cts.map +1 -1
- package/dist/actions/create-workflow-run.d.mts +3 -6
- package/dist/actions/create-workflow-run.d.mts.map +1 -1
- package/dist/actions/create-workflow-run.mjs +1 -0
- package/dist/actions/create-workflow-run.mjs.map +1 -1
- package/dist/actions/find-data-set-rows.cjs +1 -0
- package/dist/actions/find-data-set-rows.cjs.map +1 -1
- package/dist/actions/find-data-set-rows.d.cts +3 -6
- package/dist/actions/find-data-set-rows.d.cts.map +1 -1
- package/dist/actions/find-data-set-rows.d.mts +3 -6
- package/dist/actions/find-data-set-rows.d.mts.map +1 -1
- package/dist/actions/find-data-set-rows.mjs +1 -0
- package/dist/actions/find-data-set-rows.mjs.map +1 -1
- package/dist/actions/list-workflows.cjs +1 -0
- package/dist/actions/list-workflows.cjs.map +1 -1
- package/dist/actions/list-workflows.d.cts +3 -4
- package/dist/actions/list-workflows.d.cts.map +1 -1
- package/dist/actions/list-workflows.d.mts +3 -4
- package/dist/actions/list-workflows.d.mts.map +1 -1
- package/dist/actions/list-workflows.mjs +1 -0
- package/dist/actions/list-workflows.mjs.map +1 -1
- package/dist/actions/undelete-workflow-run.cjs +1 -0
- package/dist/actions/undelete-workflow-run.cjs.map +1 -1
- package/dist/actions/undelete-workflow-run.d.cts +3 -3
- package/dist/actions/undelete-workflow-run.d.cts.map +1 -1
- package/dist/actions/undelete-workflow-run.d.mts +3 -3
- package/dist/actions/undelete-workflow-run.d.mts.map +1 -1
- package/dist/actions/undelete-workflow-run.mjs +1 -0
- package/dist/actions/undelete-workflow-run.mjs.map +1 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +7 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +7 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -2
- 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":["processStreet","executeProcessStreetTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { processStreet } from \"./app\";\nimport { executeProcessStreetTool } 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":["processStreet","executeProcessStreetTool"],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { processStreet } from \"./app\";\nimport { executeProcessStreetTool } 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 processStreet.credential> {\n return processStreet.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 executeProcessStreetTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAO6D;CAC7D,OAAOA,YAAAA,cAAc,OAAO;EAC1B,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,yBAAyB,MAAM,KAAgC,CAAC;EAChG;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 { processStreet } from \"./app\";\nimport { executeProcessStreetTool } 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 { processStreet } from \"./app\";\nimport { executeProcessStreetTool } 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 processStreet.credential> {\n return processStreet.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 executeProcessStreetTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAO6D;CAC7D,OAAO,cAAc,OAAO;EAC1B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,yBAAyB,MAAM,KAAgC,CAAC;EAChG;CACF,CAAC;AACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"complete-workflow-run.cjs","names":["z","action"],"sources":["../../src/actions/complete-workflow-run.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetCompleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The ID of the workflow run to complete. This is a unique identifier for the workflow run instance, typically a 22-character alphanumeric string (e.g., 'jBAbMsR7BGBdDOLqDUFBmg').\"),\n}).describe(\"Request model for completing a workflow run.\");\nexport const ProcessStreetCompleteWorkflowRunOutput = z.object({\n success: z.boolean().describe(\"Whether the workflow run was completed successfully.\").nullable(),\n new_status: z.string().describe(\"The new status of the workflow run after completion ('Completed').\").nullable(),\n previous_status: z.string().describe(\"The status of the workflow run before the update.\").nullable(),\n workflow_run_id: z.string().describe(\"The ID of the workflow run that was completed.\").nullable(),\n}).passthrough().describe(\"Response model for completing a workflow run.\");\n\nexport const processStreetCompleteWorkflowRun = action(\"PROCESS_STREET_COMPLETE_WORKFLOW_RUN\", {\n slug: \"process_street-complete-workflow-run\",\n name: \"Complete a workflow run\",\n description: \"This tool marks an entire workflow run as completed in Process Street. It first retrieves the current workflow run details, then updates the status to 'Completed' while preserving other fields like name and shared status. This distinguishes it from PROCESS_STREET_COMPLETE_TASK which completes individual tasks within a workflow run.\",\n input: ProcessStreetCompleteWorkflowRunInput,\n output: ProcessStreetCompleteWorkflowRunOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"complete-workflow-run.cjs","names":["z","action"],"sources":["../../src/actions/complete-workflow-run.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetCompleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The ID of the workflow run to complete. This is a unique identifier for the workflow run instance, typically a 22-character alphanumeric string (e.g., 'jBAbMsR7BGBdDOLqDUFBmg').\"),\n}).describe(\"Request model for completing a workflow run.\");\nexport const ProcessStreetCompleteWorkflowRunOutput = z.object({\n success: z.boolean().describe(\"Whether the workflow run was completed successfully.\").nullable(),\n new_status: z.string().describe(\"The new status of the workflow run after completion ('Completed').\").nullable(),\n previous_status: z.string().describe(\"The status of the workflow run before the update.\").nullable(),\n workflow_run_id: z.string().describe(\"The ID of the workflow run that was completed.\").nullable(),\n}).passthrough().describe(\"Response model for completing a workflow run.\");\n\nexport const processStreetCompleteWorkflowRun: AppAction<\n typeof ProcessStreetCompleteWorkflowRunInput,\n typeof ProcessStreetCompleteWorkflowRunOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_COMPLETE_WORKFLOW_RUN\", {\n slug: \"process_street-complete-workflow-run\",\n name: \"Complete a workflow run\",\n description: \"This tool marks an entire workflow run as completed in Process Street. It first retrieves the current workflow run details, then updates the status to 'Completed' while preserving other fields like name and shared status. This distinguishes it from PROCESS_STREET_COMPLETE_TASK which completes individual tasks within a workflow run.\",\n input: ProcessStreetCompleteWorkflowRunInput,\n output: ProcessStreetCompleteWorkflowRunOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,EAC5D,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mLAAmL,EAC1N,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAC1D,MAAa,yCAAyCA,IAAAA,EAAE,OAAO;CAC7D,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC/F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;CAC/G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACnG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAA+C;AAEzE,MAAa,mCAITC,eAAAA,OAAO,wCAAwC;CACjD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/complete-workflow-run.d.ts
|
|
@@ -10,9 +12,7 @@ declare const ProcessStreetCompleteWorkflowRunOutput: z.ZodObject<{
|
|
|
10
12
|
previous_status: z.ZodNullable<z.ZodString>;
|
|
11
13
|
workflow_run_id: z.ZodNullable<z.ZodString>;
|
|
12
14
|
}, z.core.$loose>;
|
|
13
|
-
declare const processStreetCompleteWorkflowRun:
|
|
14
|
-
workflow_run_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
15
|
+
declare const processStreetCompleteWorkflowRun: AppAction<typeof ProcessStreetCompleteWorkflowRunInput, typeof ProcessStreetCompleteWorkflowRunOutput, typeof processStreet.credential>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { processStreetCompleteWorkflowRun };
|
|
18
18
|
//# sourceMappingURL=complete-workflow-run.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"complete-workflow-run.d.cts","names":[],"sources":["../../src/actions/complete-workflow-run.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"complete-workflow-run.d.cts","names":[],"sources":["../../src/actions/complete-workflow-run.ts"],"mappings":";;;;;cAMa,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;cAGrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;cAOtC,gCAAA,EAAkC,SAAA,QACtC,qCAAA,SACA,sCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/complete-workflow-run.d.ts
|
|
@@ -10,9 +12,7 @@ declare const ProcessStreetCompleteWorkflowRunOutput: z.ZodObject<{
|
|
|
10
12
|
previous_status: z.ZodNullable<z.ZodString>;
|
|
11
13
|
workflow_run_id: z.ZodNullable<z.ZodString>;
|
|
12
14
|
}, z.core.$loose>;
|
|
13
|
-
declare const processStreetCompleteWorkflowRun:
|
|
14
|
-
workflow_run_id: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
15
|
+
declare const processStreetCompleteWorkflowRun: AppAction<typeof ProcessStreetCompleteWorkflowRunInput, typeof ProcessStreetCompleteWorkflowRunOutput, typeof processStreet.credential>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { processStreetCompleteWorkflowRun };
|
|
18
18
|
//# sourceMappingURL=complete-workflow-run.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"complete-workflow-run.d.mts","names":[],"sources":["../../src/actions/complete-workflow-run.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"complete-workflow-run.d.mts","names":[],"sources":["../../src/actions/complete-workflow-run.ts"],"mappings":";;;;;cAMa,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;cAGrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;;;cAOtC,gCAAA,EAAkC,SAAA,QACtC,qCAAA,SACA,sCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"complete-workflow-run.mjs","names":[],"sources":["../../src/actions/complete-workflow-run.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetCompleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The ID of the workflow run to complete. This is a unique identifier for the workflow run instance, typically a 22-character alphanumeric string (e.g., 'jBAbMsR7BGBdDOLqDUFBmg').\"),\n}).describe(\"Request model for completing a workflow run.\");\nexport const ProcessStreetCompleteWorkflowRunOutput = z.object({\n success: z.boolean().describe(\"Whether the workflow run was completed successfully.\").nullable(),\n new_status: z.string().describe(\"The new status of the workflow run after completion ('Completed').\").nullable(),\n previous_status: z.string().describe(\"The status of the workflow run before the update.\").nullable(),\n workflow_run_id: z.string().describe(\"The ID of the workflow run that was completed.\").nullable(),\n}).passthrough().describe(\"Response model for completing a workflow run.\");\n\nexport const processStreetCompleteWorkflowRun = action(\"PROCESS_STREET_COMPLETE_WORKFLOW_RUN\", {\n slug: \"process_street-complete-workflow-run\",\n name: \"Complete a workflow run\",\n description: \"This tool marks an entire workflow run as completed in Process Street. It first retrieves the current workflow run details, then updates the status to 'Completed' while preserving other fields like name and shared status. This distinguishes it from PROCESS_STREET_COMPLETE_TASK which completes individual tasks within a workflow run.\",\n input: ProcessStreetCompleteWorkflowRunInput,\n output: ProcessStreetCompleteWorkflowRunOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"complete-workflow-run.mjs","names":[],"sources":["../../src/actions/complete-workflow-run.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetCompleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The ID of the workflow run to complete. This is a unique identifier for the workflow run instance, typically a 22-character alphanumeric string (e.g., 'jBAbMsR7BGBdDOLqDUFBmg').\"),\n}).describe(\"Request model for completing a workflow run.\");\nexport const ProcessStreetCompleteWorkflowRunOutput = z.object({\n success: z.boolean().describe(\"Whether the workflow run was completed successfully.\").nullable(),\n new_status: z.string().describe(\"The new status of the workflow run after completion ('Completed').\").nullable(),\n previous_status: z.string().describe(\"The status of the workflow run before the update.\").nullable(),\n workflow_run_id: z.string().describe(\"The ID of the workflow run that was completed.\").nullable(),\n}).passthrough().describe(\"Response model for completing a workflow run.\");\n\nexport const processStreetCompleteWorkflowRun: AppAction<\n typeof ProcessStreetCompleteWorkflowRunInput,\n typeof ProcessStreetCompleteWorkflowRunOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_COMPLETE_WORKFLOW_RUN\", {\n slug: \"process_street-complete-workflow-run\",\n name: \"Complete a workflow run\",\n description: \"This tool marks an entire workflow run as completed in Process Street. It first retrieves the current workflow run details, then updates the status to 'Completed' while preserving other fields like name and shared status. This distinguishes it from PROCESS_STREET_COMPLETE_TASK which completes individual tasks within a workflow run.\",\n input: ProcessStreetCompleteWorkflowRunInput,\n output: ProcessStreetCompleteWorkflowRunOutput,\n});\n"],"mappings":";;;AAgBA,MAAa,mCAIT,OAAO,wCAAwC;CACjD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBmD,EAAE,OAAO,EAC5D,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,mLAAmL,EAC1N,CAAC,CAAC,CAAC,SAAS,8CAgBH;CACP,QAhBoD,EAAE,OAAO;EAC7D,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EAC/F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;EAC/G,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;EACnG,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-workflow-run.cjs","names":["z","action"],"sources":["../../src/actions/create-workflow-run.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetCreateWorkflowRunInput = z.object({\n name: z.string().describe(\"Custom name for the workflow run\").optional(),\n shared: z.boolean().describe(\"Whether to enable a share link for the workflow run\").optional(),\n due_date: z.string().describe(\"Due date for the workflow run in ISO 8601 format\").optional(),\n workflow_template_id: z.string().describe(\"The ID of the workflow template to create a run from. This is a 22-character Base64URL-encoded string that identifies the workflow template (e.g., 'jBAbMsR7BGBdDOLqDUFBmg'). You can obtain this ID by using the List Workflows action or from the Process Street UI.\"),\n});\nexport const ProcessStreetCreateWorkflowRunOutput = z.object({\n name: z.string().describe(\"Name of the workflow run\").nullable(),\n status: z.string().describe(\"Current status of the workflow run\").nullable(),\n due_date: z.string().describe(\"Due date of the workflow run (if set)\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the workflow run was created\").nullable(),\n share_link: z.string().describe(\"Share link URL (if enabled)\").nullable().optional(),\n workflow_run_id: z.string().describe(\"The ID of the created workflow run\").nullable(),\n}).passthrough();\n\nexport const processStreetCreateWorkflowRun = action(\"PROCESS_STREET_CREATE_WORKFLOW_RUN\", {\n slug: \"process_street-create-workflow-run\",\n name: \"Create Workflow Run\",\n description: \"This tool creates a new workflow run from a specified workflow template. It is one of the most fundamental operations in Process Street, allowing users to initiate a new instance of a workflow. The tool requires a workflow_template_id and optionally allows setting a custom name, due date, and whether to enable a share link.\",\n input: ProcessStreetCreateWorkflowRunInput,\n output: ProcessStreetCreateWorkflowRunOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-workflow-run.cjs","names":["z","action"],"sources":["../../src/actions/create-workflow-run.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetCreateWorkflowRunInput = z.object({\n name: z.string().describe(\"Custom name for the workflow run\").optional(),\n shared: z.boolean().describe(\"Whether to enable a share link for the workflow run\").optional(),\n due_date: z.string().describe(\"Due date for the workflow run in ISO 8601 format\").optional(),\n workflow_template_id: z.string().describe(\"The ID of the workflow template to create a run from. This is a 22-character Base64URL-encoded string that identifies the workflow template (e.g., 'jBAbMsR7BGBdDOLqDUFBmg'). You can obtain this ID by using the List Workflows action or from the Process Street UI.\"),\n});\nexport const ProcessStreetCreateWorkflowRunOutput = z.object({\n name: z.string().describe(\"Name of the workflow run\").nullable(),\n status: z.string().describe(\"Current status of the workflow run\").nullable(),\n due_date: z.string().describe(\"Due date of the workflow run (if set)\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the workflow run was created\").nullable(),\n share_link: z.string().describe(\"Share link URL (if enabled)\").nullable().optional(),\n workflow_run_id: z.string().describe(\"The ID of the created workflow run\").nullable(),\n}).passthrough();\n\nexport const processStreetCreateWorkflowRun: AppAction<\n typeof ProcessStreetCreateWorkflowRunInput,\n typeof ProcessStreetCreateWorkflowRunOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_CREATE_WORKFLOW_RUN\", {\n slug: \"process_street-create-workflow-run\",\n name: \"Create Workflow Run\",\n description: \"This tool creates a new workflow run from a specified workflow template. It is one of the most fundamental operations in Process Street, allowing users to initiate a new instance of a workflow. The tool requires a workflow_template_id and optionally allows setting a custom name, due date, and whether to enable a share link.\",\n input: ProcessStreetCreateWorkflowRunInput,\n output: ProcessStreetCreateWorkflowRunOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,sCAAsCA,IAAAA,EAAE,OAAO;CAC1D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACvE,QAAQA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAC7F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC3F,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wQAAwQ;AACpT,CAAC;AACD,MAAa,uCAAuCA,IAAAA,EAAE,OAAO;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC3E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CACxF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,iCAITC,eAAAA,OAAO,sCAAsC;CAC/C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/create-workflow-run.d.ts
|
|
@@ -15,12 +17,7 @@ declare const ProcessStreetCreateWorkflowRunOutput: z.ZodObject<{
|
|
|
15
17
|
share_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
18
|
workflow_run_id: z.ZodNullable<z.ZodString>;
|
|
17
19
|
}, z.core.$loose>;
|
|
18
|
-
declare const processStreetCreateWorkflowRun:
|
|
19
|
-
workflow_template_id: string;
|
|
20
|
-
name?: string | undefined;
|
|
21
|
-
shared?: boolean | undefined;
|
|
22
|
-
due_date?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
20
|
+
declare const processStreetCreateWorkflowRun: AppAction<typeof ProcessStreetCreateWorkflowRunInput, typeof ProcessStreetCreateWorkflowRunOutput, typeof processStreet.credential>;
|
|
24
21
|
//#endregion
|
|
25
22
|
export { processStreetCreateWorkflowRun };
|
|
26
23
|
//# sourceMappingURL=create-workflow-run.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-workflow-run.d.cts","names":[],"sources":["../../src/actions/create-workflow-run.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-workflow-run.d.cts","names":[],"sources":["../../src/actions/create-workflow-run.ts"],"mappings":";;;;;cAMa,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;cAMnC,oCAAA,EAAoC,CAAA,CAAA,SAAA;;;;;;;;cASpC,8BAAA,EAAgC,SAAA,QACpC,mCAAA,SACA,oCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/create-workflow-run.d.ts
|
|
@@ -15,12 +17,7 @@ declare const ProcessStreetCreateWorkflowRunOutput: z.ZodObject<{
|
|
|
15
17
|
share_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
18
|
workflow_run_id: z.ZodNullable<z.ZodString>;
|
|
17
19
|
}, z.core.$loose>;
|
|
18
|
-
declare const processStreetCreateWorkflowRun:
|
|
19
|
-
workflow_template_id: string;
|
|
20
|
-
name?: string | undefined;
|
|
21
|
-
shared?: boolean | undefined;
|
|
22
|
-
due_date?: string | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
20
|
+
declare const processStreetCreateWorkflowRun: AppAction<typeof ProcessStreetCreateWorkflowRunInput, typeof ProcessStreetCreateWorkflowRunOutput, typeof processStreet.credential>;
|
|
24
21
|
//#endregion
|
|
25
22
|
export { processStreetCreateWorkflowRun };
|
|
26
23
|
//# sourceMappingURL=create-workflow-run.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-workflow-run.d.mts","names":[],"sources":["../../src/actions/create-workflow-run.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-workflow-run.d.mts","names":[],"sources":["../../src/actions/create-workflow-run.ts"],"mappings":";;;;;cAMa,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;;;cAMnC,oCAAA,EAAoC,CAAA,CAAA,SAAA;;;;;;;;cASpC,8BAAA,EAAgC,SAAA,QACpC,mCAAA,SACA,oCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-workflow-run.mjs","names":[],"sources":["../../src/actions/create-workflow-run.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetCreateWorkflowRunInput = z.object({\n name: z.string().describe(\"Custom name for the workflow run\").optional(),\n shared: z.boolean().describe(\"Whether to enable a share link for the workflow run\").optional(),\n due_date: z.string().describe(\"Due date for the workflow run in ISO 8601 format\").optional(),\n workflow_template_id: z.string().describe(\"The ID of the workflow template to create a run from. This is a 22-character Base64URL-encoded string that identifies the workflow template (e.g., 'jBAbMsR7BGBdDOLqDUFBmg'). You can obtain this ID by using the List Workflows action or from the Process Street UI.\"),\n});\nexport const ProcessStreetCreateWorkflowRunOutput = z.object({\n name: z.string().describe(\"Name of the workflow run\").nullable(),\n status: z.string().describe(\"Current status of the workflow run\").nullable(),\n due_date: z.string().describe(\"Due date of the workflow run (if set)\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the workflow run was created\").nullable(),\n share_link: z.string().describe(\"Share link URL (if enabled)\").nullable().optional(),\n workflow_run_id: z.string().describe(\"The ID of the created workflow run\").nullable(),\n}).passthrough();\n\nexport const processStreetCreateWorkflowRun = action(\"PROCESS_STREET_CREATE_WORKFLOW_RUN\", {\n slug: \"process_street-create-workflow-run\",\n name: \"Create Workflow Run\",\n description: \"This tool creates a new workflow run from a specified workflow template. It is one of the most fundamental operations in Process Street, allowing users to initiate a new instance of a workflow. The tool requires a workflow_template_id and optionally allows setting a custom name, due date, and whether to enable a share link.\",\n input: ProcessStreetCreateWorkflowRunInput,\n output: ProcessStreetCreateWorkflowRunOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"create-workflow-run.mjs","names":[],"sources":["../../src/actions/create-workflow-run.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetCreateWorkflowRunInput = z.object({\n name: z.string().describe(\"Custom name for the workflow run\").optional(),\n shared: z.boolean().describe(\"Whether to enable a share link for the workflow run\").optional(),\n due_date: z.string().describe(\"Due date for the workflow run in ISO 8601 format\").optional(),\n workflow_template_id: z.string().describe(\"The ID of the workflow template to create a run from. This is a 22-character Base64URL-encoded string that identifies the workflow template (e.g., 'jBAbMsR7BGBdDOLqDUFBmg'). You can obtain this ID by using the List Workflows action or from the Process Street UI.\"),\n});\nexport const ProcessStreetCreateWorkflowRunOutput = z.object({\n name: z.string().describe(\"Name of the workflow run\").nullable(),\n status: z.string().describe(\"Current status of the workflow run\").nullable(),\n due_date: z.string().describe(\"Due date of the workflow run (if set)\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the workflow run was created\").nullable(),\n share_link: z.string().describe(\"Share link URL (if enabled)\").nullable().optional(),\n workflow_run_id: z.string().describe(\"The ID of the created workflow run\").nullable(),\n}).passthrough();\n\nexport const processStreetCreateWorkflowRun: AppAction<\n typeof ProcessStreetCreateWorkflowRunInput,\n typeof ProcessStreetCreateWorkflowRunOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_CREATE_WORKFLOW_RUN\", {\n slug: \"process_street-create-workflow-run\",\n name: \"Create Workflow Run\",\n description: \"This tool creates a new workflow run from a specified workflow template. It is one of the most fundamental operations in Process Street, allowing users to initiate a new instance of a workflow. The tool requires a workflow_template_id and optionally allows setting a custom name, due date, and whether to enable a share link.\",\n input: ProcessStreetCreateWorkflowRunInput,\n output: ProcessStreetCreateWorkflowRunOutput,\n});\n"],"mappings":";;;AAqBA,MAAa,iCAIT,OAAO,sCAAsC;CAC/C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAvBiD,EAAE,OAAO;EAC1D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EACvE,QAAQ,EAAE,QAAQ,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;EAC7F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;EAC3F,sBAAsB,EAAE,OAAO,CAAC,CAAC,SAAS,wQAAwQ;CACpT,CAkBS;CACP,QAlBkD,EAAE,OAAO;EAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;EAC3E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;EACxF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACtF,CAAC,CAAC,CAAC,YAWO;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-data-set-rows.cjs","names":["z","action"],"sources":["../../src/actions/find-data-set-rows.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetFindDataSetRowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of records to return per page. Valid range is 1-100.\").optional(),\n query: z.string().describe(\"Search query to filter records by column values. Use the format 'columnName:value' to filter records where the specified column matches the value. Leave empty to retrieve all records.\").optional(),\n data_set_id: z.string().describe(\"The unique identifier of the data set to search in. You can find this ID in the Process Street UI when viewing a data set, or via the data sets list endpoint.\"),\n});\nconst ProcessStreetFindDataSetRows_DataSetRecordSchema = z.object({\n id: z.string().describe(\"The unique identifier of the record\").nullable(),\n data: z.record(z.string(), z.unknown()).describe(\"The record data containing field values\"),\n created_at: z.string().describe(\"The timestamp when the record was created\").nullable(),\n updated_at: z.string().describe(\"The timestamp when the record was last updated\").nullable(),\n}).passthrough();\nexport const ProcessStreetFindDataSetRowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of records per page\").nullable(),\n total: z.number().int().describe(\"Total number of records matching the search criteria\").nullable(),\n records: z.array(ProcessStreetFindDataSetRows_DataSetRecordSchema).describe(\"List of records matching the search criteria\"),\n}).passthrough();\n\nexport const processStreetFindDataSetRows = action(\"PROCESS_STREET_FIND_DATA_SET_ROWS\", {\n slug: \"process_street-find-data-set-rows\",\n name: \"Find Data Set Rows\",\n description: \"Retrieves records from a Process Street data set with optional filtering by column values. Use this tool to search for specific records within a data set or to paginate through all records. Data sets are tables that store structured data which can be used across workflows.\",\n input: ProcessStreetFindDataSetRowsInput,\n output: ProcessStreetFindDataSetRowsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"find-data-set-rows.cjs","names":["z","action"],"sources":["../../src/actions/find-data-set-rows.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetFindDataSetRowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of records to return per page. Valid range is 1-100.\").optional(),\n query: z.string().describe(\"Search query to filter records by column values. Use the format 'columnName:value' to filter records where the specified column matches the value. Leave empty to retrieve all records.\").optional(),\n data_set_id: z.string().describe(\"The unique identifier of the data set to search in. You can find this ID in the Process Street UI when viewing a data set, or via the data sets list endpoint.\"),\n});\nconst ProcessStreetFindDataSetRows_DataSetRecordSchema = z.object({\n id: z.string().describe(\"The unique identifier of the record\").nullable(),\n data: z.record(z.string(), z.unknown()).describe(\"The record data containing field values\"),\n created_at: z.string().describe(\"The timestamp when the record was created\").nullable(),\n updated_at: z.string().describe(\"The timestamp when the record was last updated\").nullable(),\n}).passthrough();\nexport const ProcessStreetFindDataSetRowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of records per page\").nullable(),\n total: z.number().int().describe(\"Total number of records matching the search criteria\").nullable(),\n records: z.array(ProcessStreetFindDataSetRows_DataSetRecordSchema).describe(\"List of records matching the search criteria\"),\n}).passthrough();\n\nexport const processStreetFindDataSetRows: AppAction<\n typeof ProcessStreetFindDataSetRowsInput,\n typeof ProcessStreetFindDataSetRowsOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_FIND_DATA_SET_ROWS\", {\n slug: \"process_street-find-data-set-rows\",\n name: \"Find Data Set Rows\",\n description: \"Retrieves records from a Process Street data set with optional filtering by column values. Use this tool to search for specific records within a data set or to paginate through all records. Data sets are tables that store structured data which can be used across workflows.\",\n input: ProcessStreetFindDataSetRowsInput,\n output: ProcessStreetFindDataSetRowsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CAC5J,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,qEAAqE,CAAC,CAAC,SAAS;CAC7H,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yLAAyL,CAAC,CAAC,SAAS;CAC/N,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gKAAgK;AACnM,CAAC;AACD,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACxE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,yCAAyC;CAC1F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACtF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACxE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAClG,SAASA,IAAAA,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,8CAA8C;AAC5H,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,+BAITC,eAAAA,OAAO,qCAAqC;CAC9C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/find-data-set-rows.d.ts
|
|
@@ -18,12 +20,7 @@ declare const ProcessStreetFindDataSetRowsOutput: z.ZodObject<{
|
|
|
18
20
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
19
21
|
}, z.core.$loose>>;
|
|
20
22
|
}, z.core.$loose>;
|
|
21
|
-
declare const processStreetFindDataSetRows:
|
|
22
|
-
data_set_id: string;
|
|
23
|
-
page?: number | undefined;
|
|
24
|
-
limit?: number | undefined;
|
|
25
|
-
query?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
23
|
+
declare const processStreetFindDataSetRows: AppAction<typeof ProcessStreetFindDataSetRowsInput, typeof ProcessStreetFindDataSetRowsOutput, typeof processStreet.credential>;
|
|
27
24
|
//#endregion
|
|
28
25
|
export { processStreetFindDataSetRows };
|
|
29
26
|
//# sourceMappingURL=find-data-set-rows.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-data-set-rows.d.cts","names":[],"sources":["../../src/actions/find-data-set-rows.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"find-data-set-rows.d.cts","names":[],"sources":["../../src/actions/find-data-set-rows.ts"],"mappings":";;;;;cAMa,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAYjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;cAOlC,4BAAA,EAA8B,SAAA,QAClC,iCAAA,SACA,kCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/find-data-set-rows.d.ts
|
|
@@ -18,12 +20,7 @@ declare const ProcessStreetFindDataSetRowsOutput: z.ZodObject<{
|
|
|
18
20
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
19
21
|
}, z.core.$loose>>;
|
|
20
22
|
}, z.core.$loose>;
|
|
21
|
-
declare const processStreetFindDataSetRows:
|
|
22
|
-
data_set_id: string;
|
|
23
|
-
page?: number | undefined;
|
|
24
|
-
limit?: number | undefined;
|
|
25
|
-
query?: string | undefined;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
23
|
+
declare const processStreetFindDataSetRows: AppAction<typeof ProcessStreetFindDataSetRowsInput, typeof ProcessStreetFindDataSetRowsOutput, typeof processStreet.credential>;
|
|
27
24
|
//#endregion
|
|
28
25
|
export { processStreetFindDataSetRows };
|
|
29
26
|
//# sourceMappingURL=find-data-set-rows.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-data-set-rows.d.mts","names":[],"sources":["../../src/actions/find-data-set-rows.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"find-data-set-rows.d.mts","names":[],"sources":["../../src/actions/find-data-set-rows.ts"],"mappings":";;;;;cAMa,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAYjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;;;;;cAOlC,4BAAA,EAA8B,SAAA,QAClC,iCAAA,SACA,kCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"find-data-set-rows.mjs","names":[],"sources":["../../src/actions/find-data-set-rows.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetFindDataSetRowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of records to return per page. Valid range is 1-100.\").optional(),\n query: z.string().describe(\"Search query to filter records by column values. Use the format 'columnName:value' to filter records where the specified column matches the value. Leave empty to retrieve all records.\").optional(),\n data_set_id: z.string().describe(\"The unique identifier of the data set to search in. You can find this ID in the Process Street UI when viewing a data set, or via the data sets list endpoint.\"),\n});\nconst ProcessStreetFindDataSetRows_DataSetRecordSchema = z.object({\n id: z.string().describe(\"The unique identifier of the record\").nullable(),\n data: z.record(z.string(), z.unknown()).describe(\"The record data containing field values\"),\n created_at: z.string().describe(\"The timestamp when the record was created\").nullable(),\n updated_at: z.string().describe(\"The timestamp when the record was last updated\").nullable(),\n}).passthrough();\nexport const ProcessStreetFindDataSetRowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of records per page\").nullable(),\n total: z.number().int().describe(\"Total number of records matching the search criteria\").nullable(),\n records: z.array(ProcessStreetFindDataSetRows_DataSetRecordSchema).describe(\"List of records matching the search criteria\"),\n}).passthrough();\n\nexport const processStreetFindDataSetRows = action(\"PROCESS_STREET_FIND_DATA_SET_ROWS\", {\n slug: \"process_street-find-data-set-rows\",\n name: \"Find Data Set Rows\",\n description: \"Retrieves records from a Process Street data set with optional filtering by column values. Use this tool to search for specific records within a data set or to paginate through all records. Data sets are tables that store structured data which can be used across workflows.\",\n input: ProcessStreetFindDataSetRowsInput,\n output: ProcessStreetFindDataSetRowsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"find-data-set-rows.mjs","names":[],"sources":["../../src/actions/find-data-set-rows.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetFindDataSetRowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of records to return per page. Valid range is 1-100.\").optional(),\n query: z.string().describe(\"Search query to filter records by column values. Use the format 'columnName:value' to filter records where the specified column matches the value. Leave empty to retrieve all records.\").optional(),\n data_set_id: z.string().describe(\"The unique identifier of the data set to search in. You can find this ID in the Process Street UI when viewing a data set, or via the data sets list endpoint.\"),\n});\nconst ProcessStreetFindDataSetRows_DataSetRecordSchema = z.object({\n id: z.string().describe(\"The unique identifier of the record\").nullable(),\n data: z.record(z.string(), z.unknown()).describe(\"The record data containing field values\"),\n created_at: z.string().describe(\"The timestamp when the record was created\").nullable(),\n updated_at: z.string().describe(\"The timestamp when the record was last updated\").nullable(),\n}).passthrough();\nexport const ProcessStreetFindDataSetRowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of records per page\").nullable(),\n total: z.number().int().describe(\"Total number of records matching the search criteria\").nullable(),\n records: z.array(ProcessStreetFindDataSetRows_DataSetRecordSchema).describe(\"List of records matching the search criteria\"),\n}).passthrough();\n\nexport const processStreetFindDataSetRows: AppAction<\n typeof ProcessStreetFindDataSetRowsInput,\n typeof ProcessStreetFindDataSetRowsOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_FIND_DATA_SET_ROWS\", {\n slug: \"process_street-find-data-set-rows\",\n name: \"Find Data Set Rows\",\n description: \"Retrieves records from a Process Street data set with optional filtering by column values. Use this tool to search for specific records within a data set or to paginate through all records. Data sets are tables that store structured data which can be used across workflows.\",\n input: ProcessStreetFindDataSetRowsInput,\n output: ProcessStreetFindDataSetRowsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,oCAAoC,EAAE,OAAO;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CAC5J,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,qEAAqE,CAAC,CAAC,SAAS;CAC7H,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yLAAyL,CAAC,CAAC,SAAS;CAC/N,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,gKAAgK;AACnM,CAAC;AACD,MAAM,mDAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACxE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,yCAAyC;CAC1F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACtF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,YAAY;AAQf,MAAa,+BAIT,OAAO,qCAAqC;CAC9C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAhBgD,EAAE,OAAO;EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;EAChE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACxE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EAClG,SAAS,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,8CAA8C;CAC5H,CAAC,CAAC,CAAC,YAWO;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-workflows.cjs","names":["z","action"],"sources":["../../src/actions/list-workflows.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetListWorkflowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of workflows to return per page. Valid range is 1-100.\").optional(),\n}).describe(\"Request model for listing workflows with pagination support\");\nconst ProcessStreetListWorkflows_WorkflowItemSchema = z.object({\n id: z.string().describe(\"The unique identifier of the workflow\").nullable(),\n name: z.string().describe(\"The name of the workflow\").nullable(),\n active: z.boolean().describe(\"Whether the workflow is active or archived\").nullable(),\n created_at: z.string().describe(\"Timestamp when the workflow was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the workflow was last updated\").nullable(),\n}).passthrough().describe(\"Model representing a single workflow item in the response\");\nexport const ProcessStreetListWorkflowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of workflows per page\").nullable(),\n workflows: z.array(ProcessStreetListWorkflows_WorkflowItemSchema).describe(\"List of workflows in the Process Street account\"),\n total_count: z.number().int().describe(\"Total number of workflows\").nullable(),\n}).passthrough().describe(\"Response model containing the list of workflows with pagination metadata\");\n\nexport const processStreetListWorkflows = action(\"PROCESS_STREET_LIST_WORKFLOWS\", {\n slug: \"process_street-list-workflows\",\n name: \"List Workflows\",\n description: \"This tool retrieves a list of all workflows available in the Process Street account. It is a fundamental action that allows users to view and access all their workflows, which is essential for other operations that require workflow IDs. This action is important because it provides the foundation for other actions that require workflow IDs as input parameters, such as creating workflow runs or managing workflow-specific tasks, thereby enabling better workflow management and automation.\",\n input: ProcessStreetListWorkflowsInput,\n output: ProcessStreetListWorkflowsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-workflows.cjs","names":["z","action"],"sources":["../../src/actions/list-workflows.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetListWorkflowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of workflows to return per page. Valid range is 1-100.\").optional(),\n}).describe(\"Request model for listing workflows with pagination support\");\nconst ProcessStreetListWorkflows_WorkflowItemSchema = z.object({\n id: z.string().describe(\"The unique identifier of the workflow\").nullable(),\n name: z.string().describe(\"The name of the workflow\").nullable(),\n active: z.boolean().describe(\"Whether the workflow is active or archived\").nullable(),\n created_at: z.string().describe(\"Timestamp when the workflow was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the workflow was last updated\").nullable(),\n}).passthrough().describe(\"Model representing a single workflow item in the response\");\nexport const ProcessStreetListWorkflowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of workflows per page\").nullable(),\n workflows: z.array(ProcessStreetListWorkflows_WorkflowItemSchema).describe(\"List of workflows in the Process Street account\"),\n total_count: z.number().int().describe(\"Total number of workflows\").nullable(),\n}).passthrough().describe(\"Response model containing the list of workflows with pagination metadata\");\n\nexport const processStreetListWorkflows: AppAction<\n typeof ProcessStreetListWorkflowsInput,\n typeof ProcessStreetListWorkflowsOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_LIST_WORKFLOWS\", {\n slug: \"process_street-list-workflows\",\n name: \"List Workflows\",\n description: \"This tool retrieves a list of all workflows available in the Process Street account. It is a fundamental action that allows users to view and access all their workflows, which is essential for other operations that require workflow IDs. This action is important because it provides the foundation for other actions that require workflow IDs as input parameters, such as creating workflow runs or managing workflow-specific tasks, thereby enabling better workflow management and automation.\",\n input: ProcessStreetListWorkflowsInput,\n output: ProcessStreetListWorkflowsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CAC5J,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;AACjI,CAAC,CAAC,CAAC,SAAS,6DAA6D;AACzE,MAAM,gDAAgDA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC1E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACpF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACpF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AACrF,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CAC1E,WAAWA,IAAAA,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,iDAAiD;CAC5H,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0EAA0E;AAEpG,MAAa,6BAITC,eAAAA,OAAO,iCAAiC;CAC1C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/list-workflows.d.ts
|
|
@@ -17,10 +19,7 @@ declare const ProcessStreetListWorkflowsOutput: z.ZodObject<{
|
|
|
17
19
|
}, z.core.$loose>>;
|
|
18
20
|
total_count: z.ZodNullable<z.ZodNumber>;
|
|
19
21
|
}, z.core.$loose>;
|
|
20
|
-
declare const processStreetListWorkflows:
|
|
21
|
-
page?: number | undefined;
|
|
22
|
-
limit?: number | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
22
|
+
declare const processStreetListWorkflows: AppAction<typeof ProcessStreetListWorkflowsInput, typeof ProcessStreetListWorkflowsOutput, typeof processStreet.credential>;
|
|
24
23
|
//#endregion
|
|
25
24
|
export { processStreetListWorkflows };
|
|
26
25
|
//# sourceMappingURL=list-workflows.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-workflows.d.cts","names":[],"sources":["../../src/actions/list-workflows.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-workflows.d.cts","names":[],"sources":["../../src/actions/list-workflows.ts"],"mappings":";;;;;cAMa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;cAW/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;cAOhC,0BAAA,EAA4B,SAAA,QAChC,+BAAA,SACA,gCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/list-workflows.d.ts
|
|
@@ -17,10 +19,7 @@ declare const ProcessStreetListWorkflowsOutput: z.ZodObject<{
|
|
|
17
19
|
}, z.core.$loose>>;
|
|
18
20
|
total_count: z.ZodNullable<z.ZodNumber>;
|
|
19
21
|
}, z.core.$loose>;
|
|
20
|
-
declare const processStreetListWorkflows:
|
|
21
|
-
page?: number | undefined;
|
|
22
|
-
limit?: number | undefined;
|
|
23
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
22
|
+
declare const processStreetListWorkflows: AppAction<typeof ProcessStreetListWorkflowsInput, typeof ProcessStreetListWorkflowsOutput, typeof processStreet.credential>;
|
|
24
23
|
//#endregion
|
|
25
24
|
export { processStreetListWorkflows };
|
|
26
25
|
//# sourceMappingURL=list-workflows.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-workflows.d.mts","names":[],"sources":["../../src/actions/list-workflows.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-workflows.d.mts","names":[],"sources":["../../src/actions/list-workflows.ts"],"mappings":";;;;;cAMa,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;cAW/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;;;;;;;;;cAOhC,0BAAA,EAA4B,SAAA,QAChC,+BAAA,SACA,gCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-workflows.mjs","names":[],"sources":["../../src/actions/list-workflows.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetListWorkflowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of workflows to return per page. Valid range is 1-100.\").optional(),\n}).describe(\"Request model for listing workflows with pagination support\");\nconst ProcessStreetListWorkflows_WorkflowItemSchema = z.object({\n id: z.string().describe(\"The unique identifier of the workflow\").nullable(),\n name: z.string().describe(\"The name of the workflow\").nullable(),\n active: z.boolean().describe(\"Whether the workflow is active or archived\").nullable(),\n created_at: z.string().describe(\"Timestamp when the workflow was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the workflow was last updated\").nullable(),\n}).passthrough().describe(\"Model representing a single workflow item in the response\");\nexport const ProcessStreetListWorkflowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of workflows per page\").nullable(),\n workflows: z.array(ProcessStreetListWorkflows_WorkflowItemSchema).describe(\"List of workflows in the Process Street account\"),\n total_count: z.number().int().describe(\"Total number of workflows\").nullable(),\n}).passthrough().describe(\"Response model containing the list of workflows with pagination metadata\");\n\nexport const processStreetListWorkflows = action(\"PROCESS_STREET_LIST_WORKFLOWS\", {\n slug: \"process_street-list-workflows\",\n name: \"List Workflows\",\n description: \"This tool retrieves a list of all workflows available in the Process Street account. It is a fundamental action that allows users to view and access all their workflows, which is essential for other operations that require workflow IDs. This action is important because it provides the foundation for other actions that require workflow IDs as input parameters, such as creating workflow runs or managing workflow-specific tasks, thereby enabling better workflow management and automation.\",\n input: ProcessStreetListWorkflowsInput,\n output: ProcessStreetListWorkflowsOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"list-workflows.mjs","names":[],"sources":["../../src/actions/list-workflows.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetListWorkflowsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (1-indexed). Use this with 'limit' to paginate through large result sets.\").optional(),\n limit: z.number().int().default(20).describe(\"Maximum number of workflows to return per page. Valid range is 1-100.\").optional(),\n}).describe(\"Request model for listing workflows with pagination support\");\nconst ProcessStreetListWorkflows_WorkflowItemSchema = z.object({\n id: z.string().describe(\"The unique identifier of the workflow\").nullable(),\n name: z.string().describe(\"The name of the workflow\").nullable(),\n active: z.boolean().describe(\"Whether the workflow is active or archived\").nullable(),\n created_at: z.string().describe(\"Timestamp when the workflow was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the workflow was last updated\").nullable(),\n}).passthrough().describe(\"Model representing a single workflow item in the response\");\nexport const ProcessStreetListWorkflowsOutput = z.object({\n page: z.number().int().describe(\"Current page number\").nullable(),\n limit: z.number().int().describe(\"Number of workflows per page\").nullable(),\n workflows: z.array(ProcessStreetListWorkflows_WorkflowItemSchema).describe(\"List of workflows in the Process Street account\"),\n total_count: z.number().int().describe(\"Total number of workflows\").nullable(),\n}).passthrough().describe(\"Response model containing the list of workflows with pagination metadata\");\n\nexport const processStreetListWorkflows: AppAction<\n typeof ProcessStreetListWorkflowsInput,\n typeof ProcessStreetListWorkflowsOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_LIST_WORKFLOWS\", {\n slug: \"process_street-list-workflows\",\n name: \"List Workflows\",\n description: \"This tool retrieves a list of all workflows available in the Process Street account. It is a fundamental action that allows users to view and access all their workflows, which is essential for other operations that require workflow IDs. This action is important because it provides the foundation for other actions that require workflow IDs as input parameters, such as creating workflow runs or managing workflow-specific tasks, thereby enabling better workflow management and automation.\",\n input: ProcessStreetListWorkflowsInput,\n output: ProcessStreetListWorkflowsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,kCAAkC,EAAE,OAAO;CACtD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CAC5J,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;AACjI,CAAC,CAAC,CAAC,SAAS,6DAA6D;AACzE,MAAM,gDAAgD,EAAE,OAAO;CAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAC1E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,QAAQ,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACpF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACpF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AAQrF,MAAa,6BAIT,OAAO,iCAAiC;CAC1C,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAhB8C,EAAE,OAAO;EACvD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;EAChE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;EAC1E,WAAW,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,iDAAiD;EAC5H,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CAC/E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,0EAWhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"undelete-workflow-run.cjs","names":["z","action"],"sources":["../../src/actions/undelete-workflow-run.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetUndeleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The unique identifier of the workflow run to restore. This is a 22-character Base64URL-encoded string that you can obtain from the workflow run creation response or by listing workflow runs.\"),\n});\nexport const ProcessStreetUndeleteWorkflowRunOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates if the workflow run was successfully restored.\").nullable().optional(),\n}).passthrough();\n\nexport const processStreetUndeleteWorkflowRun = action(\"PROCESS_STREET_UNDELETE_WORKFLOW_RUN\", {\n slug: \"process_street-undelete-workflow-run\",\n name: \"Undelete Workflow Run\",\n description: \"Restores a previously deleted workflow run in Process Street. Uses the POST /workflow-runs/{workflowRunId}/undelete endpoint to recover a workflow run within the valid recovery period (typically up to 30 days). Only workflow runs that have been deleted (not permanently removed) can be restored.\",\n input: ProcessStreetUndeleteWorkflowRunInput,\n output: ProcessStreetUndeleteWorkflowRunOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"undelete-workflow-run.cjs","names":["z","action"],"sources":["../../src/actions/undelete-workflow-run.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetUndeleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The unique identifier of the workflow run to restore. This is a 22-character Base64URL-encoded string that you can obtain from the workflow run creation response or by listing workflow runs.\"),\n});\nexport const ProcessStreetUndeleteWorkflowRunOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates if the workflow run was successfully restored.\").nullable().optional(),\n}).passthrough();\n\nexport const processStreetUndeleteWorkflowRun: AppAction<\n typeof ProcessStreetUndeleteWorkflowRunInput,\n typeof ProcessStreetUndeleteWorkflowRunOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_UNDELETE_WORKFLOW_RUN\", {\n slug: \"process_street-undelete-workflow-run\",\n name: \"Undelete Workflow Run\",\n description: \"Restores a previously deleted workflow run in Process Street. Uses the POST /workflow-runs/{workflowRunId}/undelete endpoint to recover a workflow run within the valid recovery period (typically up to 30 days). Only workflow runs that have been deleted (not permanently removed) can be restored.\",\n input: ProcessStreetUndeleteWorkflowRunInput,\n output: ProcessStreetUndeleteWorkflowRunOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,EAC5D,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gMAAgM,EACvO,CAAC;AACD,MAAa,yCAAyCA,IAAAA,EAAE,OAAO,EAC7D,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC9H,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,mCAITC,eAAAA,OAAO,wCAAwC;CACjD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/undelete-workflow-run.d.ts
|
|
@@ -7,9 +9,7 @@ declare const ProcessStreetUndeleteWorkflowRunInput: z.ZodObject<{
|
|
|
7
9
|
declare const ProcessStreetUndeleteWorkflowRunOutput: z.ZodObject<{
|
|
8
10
|
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const processStreetUndeleteWorkflowRun:
|
|
11
|
-
workflow_run_id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
12
|
+
declare const processStreetUndeleteWorkflowRun: AppAction<typeof ProcessStreetUndeleteWorkflowRunInput, typeof ProcessStreetUndeleteWorkflowRunOutput, typeof processStreet.credential>;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { processStreetUndeleteWorkflowRun };
|
|
15
15
|
//# sourceMappingURL=undelete-workflow-run.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"undelete-workflow-run.d.cts","names":[],"sources":["../../src/actions/undelete-workflow-run.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"undelete-workflow-run.d.cts","names":[],"sources":["../../src/actions/undelete-workflow-run.ts"],"mappings":";;;;;cAMa,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;cAGrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;cAItC,gCAAA,EAAkC,SAAA,QACtC,qCAAA,SACA,sCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { processStreet } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/undelete-workflow-run.d.ts
|
|
@@ -7,9 +9,7 @@ declare const ProcessStreetUndeleteWorkflowRunInput: z.ZodObject<{
|
|
|
7
9
|
declare const ProcessStreetUndeleteWorkflowRunOutput: z.ZodObject<{
|
|
8
10
|
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
9
11
|
}, z.core.$loose>;
|
|
10
|
-
declare const processStreetUndeleteWorkflowRun:
|
|
11
|
-
workflow_run_id: string;
|
|
12
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
12
|
+
declare const processStreetUndeleteWorkflowRun: AppAction<typeof ProcessStreetUndeleteWorkflowRunInput, typeof ProcessStreetUndeleteWorkflowRunOutput, typeof processStreet.credential>;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { processStreetUndeleteWorkflowRun };
|
|
15
15
|
//# sourceMappingURL=undelete-workflow-run.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"undelete-workflow-run.d.mts","names":[],"sources":["../../src/actions/undelete-workflow-run.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"undelete-workflow-run.d.mts","names":[],"sources":["../../src/actions/undelete-workflow-run.ts"],"mappings":";;;;;cAMa,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;cAGrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;cAItC,gCAAA,EAAkC,SAAA,QACtC,qCAAA,SACA,sCAAA,SACA,aAAA,CAAc,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"undelete-workflow-run.mjs","names":[],"sources":["../../src/actions/undelete-workflow-run.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProcessStreetUndeleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The unique identifier of the workflow run to restore. This is a 22-character Base64URL-encoded string that you can obtain from the workflow run creation response or by listing workflow runs.\"),\n});\nexport const ProcessStreetUndeleteWorkflowRunOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates if the workflow run was successfully restored.\").nullable().optional(),\n}).passthrough();\n\nexport const processStreetUndeleteWorkflowRun = action(\"PROCESS_STREET_UNDELETE_WORKFLOW_RUN\", {\n slug: \"process_street-undelete-workflow-run\",\n name: \"Undelete Workflow Run\",\n description: \"Restores a previously deleted workflow run in Process Street. Uses the POST /workflow-runs/{workflowRunId}/undelete endpoint to recover a workflow run within the valid recovery period (typically up to 30 days). Only workflow runs that have been deleted (not permanently removed) can be restored.\",\n input: ProcessStreetUndeleteWorkflowRunInput,\n output: ProcessStreetUndeleteWorkflowRunOutput,\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"undelete-workflow-run.mjs","names":[],"sources":["../../src/actions/undelete-workflow-run.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { processStreet } from \"../app\";\n\nexport const ProcessStreetUndeleteWorkflowRunInput = z.object({\n workflow_run_id: z.string().describe(\"The unique identifier of the workflow run to restore. This is a 22-character Base64URL-encoded string that you can obtain from the workflow run creation response or by listing workflow runs.\"),\n});\nexport const ProcessStreetUndeleteWorkflowRunOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates if the workflow run was successfully restored.\").nullable().optional(),\n}).passthrough();\n\nexport const processStreetUndeleteWorkflowRun: AppAction<\n typeof ProcessStreetUndeleteWorkflowRunInput,\n typeof ProcessStreetUndeleteWorkflowRunOutput,\n typeof processStreet.credential\n> = action(\"PROCESS_STREET_UNDELETE_WORKFLOW_RUN\", {\n slug: \"process_street-undelete-workflow-run\",\n name: \"Undelete Workflow Run\",\n description: \"Restores a previously deleted workflow run in Process Street. Uses the POST /workflow-runs/{workflowRunId}/undelete endpoint to recover a workflow run within the valid recovery period (typically up to 30 days). Only workflow runs that have been deleted (not permanently removed) can be restored.\",\n input: ProcessStreetUndeleteWorkflowRunInput,\n output: ProcessStreetUndeleteWorkflowRunOutput,\n});\n"],"mappings":";;;AAaA,MAAa,mCAIT,OAAO,wCAAwC;CACjD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfmD,EAAE,OAAO,EAC5D,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,gMAAgM,EACvO,CAaS;CACP,QAboD,EAAE,OAAO,EAC7D,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC9H,CAAC,CAAC,CAAC,YAWO;AACV,CAAC"}
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
1
2
|
//#region src/app.ts
|
|
2
|
-
const
|
|
3
|
+
const credential = { generic_api_key: require("zod").z.string() };
|
|
4
|
+
const processStreet = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "process_street",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.processStreet = processStreet;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const processStreet = defineApp({\n slug: \"process_street\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,iBAAA,
|
|
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 processStreet: KeystrokeApp<\"process_street\", typeof credential> = defineApp({\n slug: \"process_street\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAGA,MAAM,aAAa,EACjB,8BAAiBA,CAAAA,CAAAA,EAAE,OAAO,EAC5B;AAEA,MAAa,iBAAA,GAAA,2BAAA,UAAA,CAA6E;CACxF,MAAM;CACN,MAAM;CACN;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
1
4
|
//#region src/app.d.ts
|
|
2
|
-
declare const
|
|
5
|
+
declare const credential: {
|
|
6
|
+
generic_api_key: z.ZodString;
|
|
7
|
+
};
|
|
8
|
+
declare const processStreet: KeystrokeApp<"process_street", typeof credential>;
|
|
3
9
|
//#endregion
|
|
4
10
|
export { processStreet };
|
|
5
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,aAAA,EAAe,YAAY,0BAA0B,UAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
1
4
|
//#region src/app.d.ts
|
|
2
|
-
declare const
|
|
5
|
+
declare const credential: {
|
|
6
|
+
generic_api_key: z.ZodString;
|
|
7
|
+
};
|
|
8
|
+
declare const processStreet: KeystrokeApp<"process_street", typeof credential>;
|
|
3
9
|
//#endregion
|
|
4
10
|
export { processStreet };
|
|
5
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,aAAA,EAAe,YAAY,0BAA0B,UAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
-
|
|
2
|
+
import { z } from "zod";
|
|
3
3
|
const processStreet = defineApp({
|
|
4
4
|
slug: "process_street",
|
|
5
|
-
auth: "keystroke"
|
|
5
|
+
auth: "keystroke",
|
|
6
|
+
credential: { generic_api_key: z.string() }
|
|
6
7
|
});
|
|
7
8
|
//#endregion
|
|
8
9
|
export { processStreet };
|
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\";\n\nexport const processStreet = defineApp({\n slug: \"process_street\",\n auth: \"keystroke\",\n});\n"],"mappings":";;
|
|
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 processStreet: KeystrokeApp<\"process_street\", typeof credential> = defineApp({\n slug: \"process_street\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAOA,MAAa,gBAAmE,UAAU;CACxF,MAAM;CACN,MAAM;CACN,cANA,iBAAiB,EAAE,OAAO,EAM1B;AACF,CAAC"}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { processStreet } from "./app.cjs";
|
|
1
2
|
import { processStreetCompleteWorkflowRun } from "./actions/complete-workflow-run.cjs";
|
|
2
3
|
import { processStreetCreateWorkflowRun } from "./actions/create-workflow-run.cjs";
|
|
3
4
|
import { processStreetFindDataSetRows } from "./actions/find-data-set-rows.cjs";
|
|
4
5
|
import { processStreetListWorkflows } from "./actions/list-workflows.cjs";
|
|
5
6
|
import { processStreetUndeleteWorkflowRun } from "./actions/undelete-workflow-run.cjs";
|
|
6
|
-
import { processStreet } from "./app.cjs";
|
|
7
7
|
import { processStreetCatalog } from "./catalog.cjs";
|
|
8
8
|
export { processStreet, processStreetCatalog, processStreetCompleteWorkflowRun, processStreetCreateWorkflowRun, processStreetFindDataSetRows, processStreetListWorkflows, processStreetUndeleteWorkflowRun };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { processStreet } from "./app.mjs";
|
|
1
2
|
import { processStreetCompleteWorkflowRun } from "./actions/complete-workflow-run.mjs";
|
|
2
3
|
import { processStreetCreateWorkflowRun } from "./actions/create-workflow-run.mjs";
|
|
3
4
|
import { processStreetFindDataSetRows } from "./actions/find-data-set-rows.mjs";
|
|
4
5
|
import { processStreetListWorkflows } from "./actions/list-workflows.mjs";
|
|
5
6
|
import { processStreetUndeleteWorkflowRun } from "./actions/undelete-workflow-run.mjs";
|
|
6
|
-
import { processStreet } from "./app.mjs";
|
|
7
7
|
import { processStreetCatalog } from "./catalog.mjs";
|
|
8
8
|
export { processStreet, processStreetCatalog, processStreetCompleteWorkflowRun, processStreetCreateWorkflowRun, processStreetFindDataSetRows, processStreetListWorkflows, processStreetUndeleteWorkflowRun };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/process_street",
|
|
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": {
|