@keystrokehq/signpath 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/get-health-check.cjs +16 -0
  7. package/dist/actions/get-health-check.cjs.map +1 -0
  8. package/dist/actions/get-health-check.d.cts +9 -0
  9. package/dist/actions/get-health-check.d.cts.map +1 -0
  10. package/dist/actions/get-health-check.d.mts +9 -0
  11. package/dist/actions/get-health-check.d.mts.map +1 -0
  12. package/dist/actions/get-health-check.mjs +13 -0
  13. package/dist/actions/get-health-check.mjs.map +1 -0
  14. package/dist/actions/index.cjs +11 -0
  15. package/dist/actions/index.d.cts +6 -0
  16. package/dist/actions/index.d.mts +6 -0
  17. package/dist/actions/index.mjs +6 -0
  18. package/dist/actions/list-certificates.cjs +20 -0
  19. package/dist/actions/list-certificates.cjs.map +1 -0
  20. package/dist/actions/list-certificates.d.cts +9 -0
  21. package/dist/actions/list-certificates.d.cts.map +1 -0
  22. package/dist/actions/list-certificates.d.mts +9 -0
  23. package/dist/actions/list-certificates.d.mts.map +1 -0
  24. package/dist/actions/list-certificates.mjs +19 -0
  25. package/dist/actions/list-certificates.mjs.map +1 -0
  26. package/dist/actions/list-projects.cjs +28 -0
  27. package/dist/actions/list-projects.cjs.map +1 -0
  28. package/dist/actions/list-projects.d.cts +9 -0
  29. package/dist/actions/list-projects.d.cts.map +1 -0
  30. package/dist/actions/list-projects.d.mts +9 -0
  31. package/dist/actions/list-projects.d.mts.map +1 -0
  32. package/dist/actions/list-projects.mjs +27 -0
  33. package/dist/actions/list-projects.mjs.map +1 -0
  34. package/dist/actions/retrieve-signing-policy-details.cjs +33 -0
  35. package/dist/actions/retrieve-signing-policy-details.cjs.map +1 -0
  36. package/dist/actions/retrieve-signing-policy-details.d.cts +9 -0
  37. package/dist/actions/retrieve-signing-policy-details.d.cts.map +1 -0
  38. package/dist/actions/retrieve-signing-policy-details.d.mts +9 -0
  39. package/dist/actions/retrieve-signing-policy-details.d.mts.map +1 -0
  40. package/dist/actions/retrieve-signing-policy-details.mjs +32 -0
  41. package/dist/actions/retrieve-signing-policy-details.mjs.map +1 -0
  42. package/dist/actions/retrieve-system-info.cjs +19 -0
  43. package/dist/actions/retrieve-system-info.cjs.map +1 -0
  44. package/dist/actions/retrieve-system-info.d.cts +9 -0
  45. package/dist/actions/retrieve-system-info.d.cts.map +1 -0
  46. package/dist/actions/retrieve-system-info.d.mts +9 -0
  47. package/dist/actions/retrieve-system-info.d.mts.map +1 -0
  48. package/dist/actions/retrieve-system-info.mjs +16 -0
  49. package/dist/actions/retrieve-system-info.mjs.map +1 -0
  50. package/dist/app.cjs +9 -0
  51. package/dist/app.cjs.map +1 -0
  52. package/dist/app.d.cts +5 -0
  53. package/dist/app.d.cts.map +1 -0
  54. package/dist/app.d.mts +5 -0
  55. package/dist/app.d.mts.map +1 -0
  56. package/dist/app.mjs +10 -0
  57. package/dist/app.mjs.map +1 -0
  58. package/dist/catalog.cjs +15 -0
  59. package/dist/catalog.cjs.map +1 -0
  60. package/dist/catalog.d.cts +14 -0
  61. package/dist/catalog.d.cts.map +1 -0
  62. package/dist/catalog.d.mts +14 -0
  63. package/dist/catalog.d.mts.map +1 -0
  64. package/dist/catalog.mjs +15 -0
  65. package/dist/catalog.mjs.map +1 -0
  66. package/dist/execute.cjs +18 -0
  67. package/dist/execute.cjs.map +1 -0
  68. package/dist/execute.mjs +18 -0
  69. package/dist/execute.mjs.map +1 -0
  70. package/dist/index.cjs +16 -0
  71. package/dist/index.d.cts +8 -0
  72. package/dist/index.d.mts +8 -0
  73. package/dist/index.mjs +9 -0
  74. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @keystrokehq/signpath
2
+
3
+ Keystroke-managed integration.
4
+
5
+ **App:** `signpath`
6
+ **Version:** `20260615_00`
7
+ **Actions:** 5
8
+
9
+ ```ts
10
+ import { defineAgent } from "@keystrokehq/keystroke/agent";
11
+ import { signpathGetHealthCheck } from "@keystrokehq/signpath/actions";
12
+
13
+ export default defineAgent({
14
+ key: "signpath-agent",
15
+ tools: [signpathGetHealthCheck],
16
+ });
17
+ ```
@@ -0,0 +1,21 @@
1
+ const require_app = require("./app.cjs");
2
+ const require_execute = require("./execute.cjs");
3
+ require("zod");
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return require_app.signpath.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await require_execute.executeSignpathTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ exports.action = action;
20
+
21
+ //# sourceMappingURL=action.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.cjs","names":["signpath","executeSignpathTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { signpath } from \"./app\";\nimport { executeSignpathTool } 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(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return signpath.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 executeSignpathTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,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"}
@@ -0,0 +1,21 @@
1
+ import { signpath } from "./app.mjs";
2
+ import { executeSignpathTool } from "./execute.mjs";
3
+ import "zod";
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return signpath.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await executeSignpathTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ export { action };
20
+
21
+ //# sourceMappingURL=action.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { signpath } from \"./app\";\nimport { executeSignpathTool } 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(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return signpath.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 executeSignpathTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,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"}
@@ -0,0 +1,16 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-health-check.ts
4
+ const SignpathGetHealthCheckInput = zod.z.object({}).describe("Request model for health check. No parameters are required.");
5
+ const SignpathGetHealthCheckOutput = zod.z.object({ status: zod.z.string().default("healthy").describe("Health status of the API").nullable().optional() }).describe("Response model for health check. Returns status indicating API health.");
6
+ const signpathGetHealthCheck = require_action.action("SIGNPATH_GET_HEALTH_CHECK", {
7
+ slug: "signpath-get-health-check",
8
+ name: "Get Health Check",
9
+ description: "Tool to check if the SignPath API is healthy and operational. Use this to verify API availability before performing other operations.",
10
+ input: SignpathGetHealthCheckInput,
11
+ output: SignpathGetHealthCheckOutput
12
+ });
13
+ //#endregion
14
+ exports.signpathGetHealthCheck = signpathGetHealthCheck;
15
+
16
+ //# sourceMappingURL=get-health-check.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-health-check.cjs","names":["z","action"],"sources":["../../src/actions/get-health-check.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathGetHealthCheckInput: z.ZodTypeAny = z.object({}).describe(\"Request model for health check. No parameters are required.\");\nexport const SignpathGetHealthCheckOutput: z.ZodTypeAny = z.object({\n status: z.string().default(\"healthy\").describe(\"Health status of the API\").nullable().optional(),\n}).describe(\"Response model for health check. Returns status indicating API health.\");\n\nexport const signpathGetHealthCheck = action(\"SIGNPATH_GET_HEALTH_CHECK\", {\n slug: \"signpath-get-health-check\",\n name: \"Get Health Check\",\n description: \"Tool to check if the SignPath API is healthy and operational. Use this to verify API availability before performing other operations.\",\n input: SignpathGetHealthCheckInput,\n output: SignpathGetHealthCheckOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAC5I,MAAa,+BAA6CA,IAAAA,EAAE,OAAO,EACjE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,QAAQ,SAAS,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACjG,CAAC,CAAC,CAAC,SAAS,wEAAwE;AAEpF,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-health-check.d.ts
4
+ declare const SignpathGetHealthCheckInput: z.ZodTypeAny;
5
+ declare const SignpathGetHealthCheckOutput: z.ZodTypeAny;
6
+ declare const signpathGetHealthCheck: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathGetHealthCheck };
9
+ //# sourceMappingURL=get-health-check.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-health-check.d.cts","names":[],"sources":["../../src/actions/get-health-check.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAAiG;AAAA,cAChI,4BAAA,EAA8B,CAAA,CAAE,UAEwC;AAAA,cAExE,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-health-check.d.ts
4
+ declare const SignpathGetHealthCheckInput: z.ZodTypeAny;
5
+ declare const SignpathGetHealthCheckOutput: z.ZodTypeAny;
6
+ declare const signpathGetHealthCheck: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathGetHealthCheck };
9
+ //# sourceMappingURL=get-health-check.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-health-check.d.mts","names":[],"sources":["../../src/actions/get-health-check.ts"],"mappings":";;;cAIa,2BAAA,EAA6B,CAAA,CAAE,UAAiG;AAAA,cAChI,4BAAA,EAA8B,CAAA,CAAE,UAEwC;AAAA,cAExE,sBAAA,gCAAsB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,13 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const signpathGetHealthCheck = action("SIGNPATH_GET_HEALTH_CHECK", {
4
+ slug: "signpath-get-health-check",
5
+ name: "Get Health Check",
6
+ description: "Tool to check if the SignPath API is healthy and operational. Use this to verify API availability before performing other operations.",
7
+ input: z.object({}).describe("Request model for health check. No parameters are required."),
8
+ output: z.object({ status: z.string().default("healthy").describe("Health status of the API").nullable().optional() }).describe("Response model for health check. Returns status indicating API health.")
9
+ });
10
+ //#endregion
11
+ export { signpathGetHealthCheck };
12
+
13
+ //# sourceMappingURL=get-health-check.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-health-check.mjs","names":[],"sources":["../../src/actions/get-health-check.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathGetHealthCheckInput: z.ZodTypeAny = z.object({}).describe(\"Request model for health check. No parameters are required.\");\nexport const SignpathGetHealthCheckOutput: z.ZodTypeAny = z.object({\n status: z.string().default(\"healthy\").describe(\"Health status of the API\").nullable().optional(),\n}).describe(\"Response model for health check. Returns status indicating API health.\");\n\nexport const signpathGetHealthCheck = action(\"SIGNPATH_GET_HEALTH_CHECK\", {\n slug: \"signpath-get-health-check\",\n name: \"Get Health Check\",\n description: \"Tool to check if the SignPath API is healthy and operational. Use this to verify API availability before performing other operations.\",\n input: SignpathGetHealthCheckInput,\n output: SignpathGetHealthCheckOutput,\n});\n"],"mappings":";;AASA,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OATuD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAStE;CACP,QATwD,EAAE,OAAO,EACjE,QAAQ,EAAE,OAAO,CAAC,CAAC,QAAQ,SAAS,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACjG,CAAC,CAAC,CAAC,SAAS,wEAOF;AACV,CAAC"}
@@ -0,0 +1,11 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_get_health_check = require("./get-health-check.cjs");
3
+ const require_list_certificates = require("./list-certificates.cjs");
4
+ const require_list_projects = require("./list-projects.cjs");
5
+ const require_retrieve_signing_policy_details = require("./retrieve-signing-policy-details.cjs");
6
+ const require_retrieve_system_info = require("./retrieve-system-info.cjs");
7
+ exports.signpathGetHealthCheck = require_get_health_check.signpathGetHealthCheck;
8
+ exports.signpathListCertificates = require_list_certificates.signpathListCertificates;
9
+ exports.signpathListProjects = require_list_projects.signpathListProjects;
10
+ exports.signpathRetrieveSigningPolicyDetails = require_retrieve_signing_policy_details.signpathRetrieveSigningPolicyDetails;
11
+ exports.signpathRetrieveSystemInfo = require_retrieve_system_info.signpathRetrieveSystemInfo;
@@ -0,0 +1,6 @@
1
+ import { signpathGetHealthCheck } from "./get-health-check.cjs";
2
+ import { signpathListCertificates } from "./list-certificates.cjs";
3
+ import { signpathListProjects } from "./list-projects.cjs";
4
+ import { signpathRetrieveSigningPolicyDetails } from "./retrieve-signing-policy-details.cjs";
5
+ import { signpathRetrieveSystemInfo } from "./retrieve-system-info.cjs";
6
+ export { signpathGetHealthCheck, signpathListCertificates, signpathListProjects, signpathRetrieveSigningPolicyDetails, signpathRetrieveSystemInfo };
@@ -0,0 +1,6 @@
1
+ import { signpathGetHealthCheck } from "./get-health-check.mjs";
2
+ import { signpathListCertificates } from "./list-certificates.mjs";
3
+ import { signpathListProjects } from "./list-projects.mjs";
4
+ import { signpathRetrieveSigningPolicyDetails } from "./retrieve-signing-policy-details.mjs";
5
+ import { signpathRetrieveSystemInfo } from "./retrieve-system-info.mjs";
6
+ export { signpathGetHealthCheck, signpathListCertificates, signpathListProjects, signpathRetrieveSigningPolicyDetails, signpathRetrieveSystemInfo };
@@ -0,0 +1,6 @@
1
+ import { signpathGetHealthCheck } from "./get-health-check.mjs";
2
+ import { signpathListCertificates } from "./list-certificates.mjs";
3
+ import { signpathListProjects } from "./list-projects.mjs";
4
+ import { signpathRetrieveSigningPolicyDetails } from "./retrieve-signing-policy-details.mjs";
5
+ import { signpathRetrieveSystemInfo } from "./retrieve-system-info.mjs";
6
+ export { signpathGetHealthCheck, signpathListCertificates, signpathListProjects, signpathRetrieveSigningPolicyDetails, signpathRetrieveSystemInfo };
@@ -0,0 +1,20 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-certificates.ts
4
+ const SignpathListCertificatesInput = zod.z.object({}).describe("Request model for listing all certificates in an organization.");
5
+ const SignpathListCertificates_CertificateSchema = zod.z.object({
6
+ id: zod.z.string().describe("Unique identifier (UUID) of the certificate."),
7
+ name: zod.z.string().describe("Display name of the certificate.")
8
+ }).passthrough().describe("Model for a certificate entry returned by the SignPath API.");
9
+ const SignpathListCertificatesOutput = zod.z.object({ certificates: zod.z.array(SignpathListCertificates_CertificateSchema).describe("List of certificates available in the organization. Returns an empty list if no certificates are configured.") }).describe("Response model for listing certificates.");
10
+ const signpathListCertificates = require_action.action("SIGNPATH_LIST_CERTIFICATES", {
11
+ slug: "signpath-list-certificates",
12
+ name: "List Certificates",
13
+ description: "Retrieve all certificates available in a SignPath organization. Use this to discover certificate IDs needed for signing operations. Requires a valid organization_id which can be obtained from your SignPath account settings.",
14
+ input: SignpathListCertificatesInput,
15
+ output: SignpathListCertificatesOutput
16
+ });
17
+ //#endregion
18
+ exports.signpathListCertificates = signpathListCertificates;
19
+
20
+ //# sourceMappingURL=list-certificates.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-certificates.cjs","names":["z","action"],"sources":["../../src/actions/list-certificates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathListCertificatesInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing all certificates in an organization.\");\nconst SignpathListCertificates_CertificateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier (UUID) of the certificate.\"),\n name: z.string().describe(\"Display name of the certificate.\"),\n}).passthrough().describe(\"Model for a certificate entry returned by the SignPath API.\");\nexport const SignpathListCertificatesOutput: z.ZodTypeAny = z.object({\n certificates: z.array(SignpathListCertificates_CertificateSchema).describe(\"List of certificates available in the organization. Returns an empty list if no certificates are configured.\"),\n}).describe(\"Response model for listing certificates.\");\n\nexport const signpathListCertificates = action(\"SIGNPATH_LIST_CERTIFICATES\", {\n slug: \"signpath-list-certificates\",\n name: \"List Certificates\",\n description: \"Retrieve all certificates available in a SignPath organization. Use this to discover certificate IDs needed for signing operations. Requires a valid organization_id which can be obtained from your SignPath account settings.\",\n input: SignpathListCertificatesInput,\n output: SignpathListCertificatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8CA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gEAAgE;AACjJ,MAAM,6CAA2DA,IAAAA,EAAE,OAAO;CACxE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CACtE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;AAC9D,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AACvF,MAAa,iCAA+CA,IAAAA,EAAE,OAAO,EACnE,cAAcA,IAAAA,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,8GAA8G,EAC3L,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAEtD,MAAa,2BAA2BC,eAAAA,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-certificates.d.ts
4
+ declare const SignpathListCertificatesInput: z.ZodTypeAny;
5
+ declare const SignpathListCertificatesOutput: z.ZodTypeAny;
6
+ declare const signpathListCertificates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathListCertificates };
9
+ //# sourceMappingURL=list-certificates.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-certificates.d.cts","names":[],"sources":["../../src/actions/list-certificates.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAAoG;AAAA,cAKrI,8BAAA,EAAgC,CAAA,CAAE,UAEQ;AAAA,cAE1C,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-certificates.d.ts
4
+ declare const SignpathListCertificatesInput: z.ZodTypeAny;
5
+ declare const SignpathListCertificatesOutput: z.ZodTypeAny;
6
+ declare const signpathListCertificates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathListCertificates };
9
+ //# sourceMappingURL=list-certificates.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-certificates.d.mts","names":[],"sources":["../../src/actions/list-certificates.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAAoG;AAAA,cAKrI,8BAAA,EAAgC,CAAA,CAAE,UAEQ;AAAA,cAE1C,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,19 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-certificates.ts
4
+ const SignpathListCertificatesInput = z.object({}).describe("Request model for listing all certificates in an organization.");
5
+ const SignpathListCertificates_CertificateSchema = z.object({
6
+ id: z.string().describe("Unique identifier (UUID) of the certificate."),
7
+ name: z.string().describe("Display name of the certificate.")
8
+ }).passthrough().describe("Model for a certificate entry returned by the SignPath API.");
9
+ const signpathListCertificates = action("SIGNPATH_LIST_CERTIFICATES", {
10
+ slug: "signpath-list-certificates",
11
+ name: "List Certificates",
12
+ description: "Retrieve all certificates available in a SignPath organization. Use this to discover certificate IDs needed for signing operations. Requires a valid organization_id which can be obtained from your SignPath account settings.",
13
+ input: SignpathListCertificatesInput,
14
+ output: z.object({ certificates: z.array(SignpathListCertificates_CertificateSchema).describe("List of certificates available in the organization. Returns an empty list if no certificates are configured.") }).describe("Response model for listing certificates.")
15
+ });
16
+ //#endregion
17
+ export { signpathListCertificates };
18
+
19
+ //# sourceMappingURL=list-certificates.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-certificates.mjs","names":[],"sources":["../../src/actions/list-certificates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathListCertificatesInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing all certificates in an organization.\");\nconst SignpathListCertificates_CertificateSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier (UUID) of the certificate.\"),\n name: z.string().describe(\"Display name of the certificate.\"),\n}).passthrough().describe(\"Model for a certificate entry returned by the SignPath API.\");\nexport const SignpathListCertificatesOutput: z.ZodTypeAny = z.object({\n certificates: z.array(SignpathListCertificates_CertificateSchema).describe(\"List of certificates available in the organization. Returns an empty list if no certificates are configured.\"),\n}).describe(\"Response model for listing certificates.\");\n\nexport const signpathListCertificates = action(\"SIGNPATH_LIST_CERTIFICATES\", {\n slug: \"signpath-list-certificates\",\n name: \"List Certificates\",\n description: \"Retrieve all certificates available in a SignPath organization. Use this to discover certificate IDs needed for signing operations. Requires a valid organization_id which can be obtained from your SignPath account settings.\",\n input: SignpathListCertificatesInput,\n output: SignpathListCertificatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gEAAgE;AACjJ,MAAM,6CAA2D,EAAE,OAAO;CACxE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CACtE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;AAC9D,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AAKvF,MAAa,2BAA2B,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT0D,EAAE,OAAO,EACnE,cAAc,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,8GAA8G,EAC3L,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
@@ -0,0 +1,28 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-projects.ts
4
+ const SignpathListProjectsInput = zod.z.object({
5
+ skip: zod.z.number().int().describe("Number of items to skip for pagination.").optional(),
6
+ take: zod.z.number().int().describe("Number of items to return (max 100).").optional()
7
+ }).describe("Request model for listing all projects in an organization.");
8
+ const SignpathListProjects_ProjectSchema = zod.z.object({
9
+ id: zod.z.string().describe("Project identifier."),
10
+ name: zod.z.string().describe("Project name."),
11
+ isActive: zod.z.boolean().describe("Whether the project is currently active"),
12
+ description: zod.z.string().describe("Project description.").nullable().optional()
13
+ }).describe("Model for a single project entry.");
14
+ const SignpathListProjectsOutput = zod.z.object({
15
+ count: zod.z.number().int().describe("Total number of projects matching the criteria"),
16
+ value: zod.z.array(SignpathListProjects_ProjectSchema).describe("Array of project objects")
17
+ }).describe("Response model for listing projects.");
18
+ const signpathListProjects = require_action.action("SIGNPATH_LIST_PROJECTS", {
19
+ slug: "signpath-list-projects",
20
+ name: "List Projects",
21
+ description: "Tool to list all projects for an organization. Use after confirming the organization ID to retrieve and paginate project records.",
22
+ input: SignpathListProjectsInput,
23
+ output: SignpathListProjectsOutput
24
+ });
25
+ //#endregion
26
+ exports.signpathListProjects = signpathListProjects;
27
+
28
+ //# sourceMappingURL=list-projects.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.cjs","names":["z","action"],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathListProjectsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of items to skip for pagination.\").optional(),\n take: z.number().int().describe(\"Number of items to return (max 100).\").optional(),\n}).describe(\"Request model for listing all projects in an organization.\");\nconst SignpathListProjects_ProjectSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Project identifier.\"),\n name: z.string().describe(\"Project name.\"),\n isActive: z.boolean().describe(\"Whether the project is currently active\"),\n description: z.string().describe(\"Project description.\").nullable().optional(),\n}).describe(\"Model for a single project entry.\");\nexport const SignpathListProjectsOutput: z.ZodTypeAny = z.object({\n count: z.number().int().describe(\"Total number of projects matching the criteria\"),\n value: z.array(SignpathListProjects_ProjectSchema).describe(\"Array of project objects\"),\n}).describe(\"Response model for listing projects.\");\n\nexport const signpathListProjects = action(\"SIGNPATH_LIST_PROJECTS\", {\n slug: \"signpath-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all projects for an organization. Use after confirming the organization ID to retrieve and paginate project records.\",\n input: SignpathListProjectsInput,\n output: SignpathListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACpF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,qCAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;CAC7C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe;CACzC,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;CACxE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD;CACjF,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,0BAA0B;AACxF,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAElD,MAAa,uBAAuBC,eAAAA,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-projects.d.ts
4
+ declare const SignpathListProjectsInput: z.ZodTypeAny;
5
+ declare const SignpathListProjectsOutput: z.ZodTypeAny;
6
+ declare const signpathListProjects: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathListProjects };
9
+ //# sourceMappingURL=list-projects.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.d.cts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAG+B;AAAA,cAO5D,0BAAA,EAA4B,CAAA,CAAE,UAGQ;AAAA,cAEtC,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-projects.d.ts
4
+ declare const SignpathListProjectsInput: z.ZodTypeAny;
5
+ declare const SignpathListProjectsOutput: z.ZodTypeAny;
6
+ declare const signpathListProjects: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathListProjects };
9
+ //# sourceMappingURL=list-projects.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.d.mts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAG+B;AAAA,cAO5D,0BAAA,EAA4B,CAAA,CAAE,UAGQ;AAAA,cAEtC,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,27 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-projects.ts
4
+ const SignpathListProjectsInput = z.object({
5
+ skip: z.number().int().describe("Number of items to skip for pagination.").optional(),
6
+ take: z.number().int().describe("Number of items to return (max 100).").optional()
7
+ }).describe("Request model for listing all projects in an organization.");
8
+ const SignpathListProjects_ProjectSchema = z.object({
9
+ id: z.string().describe("Project identifier."),
10
+ name: z.string().describe("Project name."),
11
+ isActive: z.boolean().describe("Whether the project is currently active"),
12
+ description: z.string().describe("Project description.").nullable().optional()
13
+ }).describe("Model for a single project entry.");
14
+ const signpathListProjects = action("SIGNPATH_LIST_PROJECTS", {
15
+ slug: "signpath-list-projects",
16
+ name: "List Projects",
17
+ description: "Tool to list all projects for an organization. Use after confirming the organization ID to retrieve and paginate project records.",
18
+ input: SignpathListProjectsInput,
19
+ output: z.object({
20
+ count: z.number().int().describe("Total number of projects matching the criteria"),
21
+ value: z.array(SignpathListProjects_ProjectSchema).describe("Array of project objects")
22
+ }).describe("Response model for listing projects.")
23
+ });
24
+ //#endregion
25
+ export { signpathListProjects };
26
+
27
+ //# sourceMappingURL=list-projects.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.mjs","names":[],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathListProjectsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().describe(\"Number of items to skip for pagination.\").optional(),\n take: z.number().int().describe(\"Number of items to return (max 100).\").optional(),\n}).describe(\"Request model for listing all projects in an organization.\");\nconst SignpathListProjects_ProjectSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Project identifier.\"),\n name: z.string().describe(\"Project name.\"),\n isActive: z.boolean().describe(\"Whether the project is currently active\"),\n description: z.string().describe(\"Project description.\").nullable().optional(),\n}).describe(\"Model for a single project entry.\");\nexport const SignpathListProjectsOutput: z.ZodTypeAny = z.object({\n count: z.number().int().describe(\"Total number of projects matching the criteria\"),\n value: z.array(SignpathListProjects_ProjectSchema).describe(\"Array of project objects\"),\n}).describe(\"Response model for listing projects.\");\n\nexport const signpathListProjects = action(\"SIGNPATH_LIST_PROJECTS\", {\n slug: \"signpath-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all projects for an organization. Use after confirming the organization ID to retrieve and paginate project records.\",\n input: SignpathListProjectsInput,\n output: SignpathListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0C,EAAE,OAAO;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACpF,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,qCAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;CAC7C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe;CACzC,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;CACxE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAM/C,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVsD,EAAE,OAAO;EAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD;EACjF,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,0BAA0B;CACxF,CAAC,CAAC,CAAC,SAAS,sCAOF;AACV,CAAC"}
@@ -0,0 +1,33 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/retrieve-signing-policy-details.ts
4
+ const SignpathRetrieveSigningPolicyDetailsInput = zod.z.object({
5
+ project_slug: zod.z.string().describe("Optional project slug to filter signing policies for a specific project. Required when using signing_policy_slug.").optional(),
6
+ signing_policy_slug: zod.z.string().describe("Optional signing policy slug to get details for a specific policy. Must be used together with project_slug.").optional()
7
+ }).describe("Request model for retrieving signing policy details.");
8
+ const SignpathRetrieveSigningPolicyDetails_RsaParametersSchema = zod.z.object({
9
+ modulus: zod.z.string().describe("The modulus of the RSA key.").nullable().optional(),
10
+ publicExponent: zod.z.string().describe("The public exponent of the RSA key.").nullable().optional()
11
+ }).describe("RSA key parameters for the signing policy.");
12
+ const SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema = zod.z.object({
13
+ keyType: zod.z.string().describe("The type of signing key (e.g., RSA, ECC).").nullable().optional(),
14
+ projectSlug: zod.z.string().describe("The slug identifier of the project.").nullable().optional(),
15
+ keySizeInBits: zod.z.number().int().describe("The size of the signing key in bits.").nullable().optional(),
16
+ rsaParameters: SignpathRetrieveSigningPolicyDetails_RsaParametersSchema.nullable().optional(),
17
+ publicKeyBytes: zod.z.string().describe("The public key in base64-encoded format.").nullable().optional(),
18
+ signingPolicyId: zod.z.string().describe("Unique identifier (UUID) of the signing policy."),
19
+ certificateBytes: zod.z.string().describe("The X.509 certificate in base64-encoded format.").nullable().optional(),
20
+ signingPolicySlug: zod.z.string().describe("The slug identifier of the signing policy.").nullable().optional()
21
+ }).describe("Details of a signing policy including certificate and key information.");
22
+ const SignpathRetrieveSigningPolicyDetailsOutput = zod.z.object({ signingPolicies: zod.z.array(SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema).describe("List of signing policies available to the organization.") }).describe("Response model containing a list of signing policies.");
23
+ const signpathRetrieveSigningPolicyDetails = require_action.action("SIGNPATH_RETRIEVE_SIGNING_POLICY_DETAILS", {
24
+ slug: "signpath-retrieve-signing-policy-details",
25
+ name: "Retrieve Signing Policy Details",
26
+ description: "Retrieve signing policy details for code signing operations. Returns certificate info, RSA key parameters, and policy metadata for the authenticated user's accessible signing policies. Without filters, returns all policies where the user is assigned as Submitter.",
27
+ input: SignpathRetrieveSigningPolicyDetailsInput,
28
+ output: SignpathRetrieveSigningPolicyDetailsOutput
29
+ });
30
+ //#endregion
31
+ exports.signpathRetrieveSigningPolicyDetails = signpathRetrieveSigningPolicyDetails;
32
+
33
+ //# sourceMappingURL=retrieve-signing-policy-details.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-signing-policy-details.cjs","names":["z","action"],"sources":["../../src/actions/retrieve-signing-policy-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathRetrieveSigningPolicyDetailsInput: z.ZodTypeAny = z.object({\n project_slug: z.string().describe(\"Optional project slug to filter signing policies for a specific project. Required when using signing_policy_slug.\").optional(),\n signing_policy_slug: z.string().describe(\"Optional signing policy slug to get details for a specific policy. Must be used together with project_slug.\").optional(),\n}).describe(\"Request model for retrieving signing policy details.\");\nconst SignpathRetrieveSigningPolicyDetails_RsaParametersSchema: z.ZodTypeAny = z.object({\n modulus: z.string().describe(\"The modulus of the RSA key.\").nullable().optional(),\n publicExponent: z.string().describe(\"The public exponent of the RSA key.\").nullable().optional(),\n}).describe(\"RSA key parameters for the signing policy.\");\nconst SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema: z.ZodTypeAny = z.object({\n keyType: z.string().describe(\"The type of signing key (e.g., RSA, ECC).\").nullable().optional(),\n projectSlug: z.string().describe(\"The slug identifier of the project.\").nullable().optional(),\n keySizeInBits: z.number().int().describe(\"The size of the signing key in bits.\").nullable().optional(),\n rsaParameters: SignpathRetrieveSigningPolicyDetails_RsaParametersSchema.nullable().optional(),\n publicKeyBytes: z.string().describe(\"The public key in base64-encoded format.\").nullable().optional(),\n signingPolicyId: z.string().describe(\"Unique identifier (UUID) of the signing policy.\"),\n certificateBytes: z.string().describe(\"The X.509 certificate in base64-encoded format.\").nullable().optional(),\n signingPolicySlug: z.string().describe(\"The slug identifier of the signing policy.\").nullable().optional(),\n}).describe(\"Details of a signing policy including certificate and key information.\");\nexport const SignpathRetrieveSigningPolicyDetailsOutput: z.ZodTypeAny = z.object({\n signingPolicies: z.array(SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema).describe(\"List of signing policies available to the organization.\"),\n}).describe(\"Response model containing a list of signing policies.\");\n\nexport const signpathRetrieveSigningPolicyDetails = action(\"SIGNPATH_RETRIEVE_SIGNING_POLICY_DETAILS\", {\n slug: \"signpath-retrieve-signing-policy-details\",\n name: \"Retrieve Signing Policy Details\",\n description: \"Retrieve signing policy details for code signing operations. Returns certificate info, RSA key parameters, and policy metadata for the authenticated user's accessible signing policies. Without filters, returns all policies where the user is assigned as Submitter.\",\n input: SignpathRetrieveSigningPolicyDetailsInput,\n output: SignpathRetrieveSigningPolicyDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4CAA0DA,IAAAA,EAAE,OAAO;CAC9E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mHAAmH,CAAC,CAAC,SAAS;CAChK,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;AACnK,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,2DAAyEA,IAAAA,EAAE,OAAO;CACtF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjG,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAM,iEAA+EA,IAAAA,EAAE,OAAO;CAC5F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,eAAe,yDAAyD,SAAS,CAAC,CAAC,SAAS;CAC5F,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CACtF,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAa,6CAA2DA,IAAAA,EAAE,OAAO,EAC/E,iBAAiBA,IAAAA,EAAE,MAAM,8DAA8D,CAAC,CAAC,SAAS,yDAAyD,EAC7J,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,uCAAuCC,eAAAA,OAAO,4CAA4C;CACrG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/retrieve-signing-policy-details.d.ts
4
+ declare const SignpathRetrieveSigningPolicyDetailsInput: z.ZodTypeAny;
5
+ declare const SignpathRetrieveSigningPolicyDetailsOutput: z.ZodTypeAny;
6
+ declare const signpathRetrieveSigningPolicyDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathRetrieveSigningPolicyDetails };
9
+ //# sourceMappingURL=retrieve-signing-policy-details.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-signing-policy-details.d.cts","names":[],"sources":["../../src/actions/retrieve-signing-policy-details.ts"],"mappings":";;;cAIa,yCAAA,EAA2C,CAAA,CAAE,UAGS;AAAA,cAetD,0CAAA,EAA4C,CAAA,CAAE,UAES;AAAA,cAEvD,oCAAA,gCAAoC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/retrieve-signing-policy-details.d.ts
4
+ declare const SignpathRetrieveSigningPolicyDetailsInput: z.ZodTypeAny;
5
+ declare const SignpathRetrieveSigningPolicyDetailsOutput: z.ZodTypeAny;
6
+ declare const signpathRetrieveSigningPolicyDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathRetrieveSigningPolicyDetails };
9
+ //# sourceMappingURL=retrieve-signing-policy-details.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-signing-policy-details.d.mts","names":[],"sources":["../../src/actions/retrieve-signing-policy-details.ts"],"mappings":";;;cAIa,yCAAA,EAA2C,CAAA,CAAE,UAGS;AAAA,cAetD,0CAAA,EAA4C,CAAA,CAAE,UAES;AAAA,cAEvD,oCAAA,gCAAoC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,32 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/retrieve-signing-policy-details.ts
4
+ const SignpathRetrieveSigningPolicyDetailsInput = z.object({
5
+ project_slug: z.string().describe("Optional project slug to filter signing policies for a specific project. Required when using signing_policy_slug.").optional(),
6
+ signing_policy_slug: z.string().describe("Optional signing policy slug to get details for a specific policy. Must be used together with project_slug.").optional()
7
+ }).describe("Request model for retrieving signing policy details.");
8
+ const SignpathRetrieveSigningPolicyDetails_RsaParametersSchema = z.object({
9
+ modulus: z.string().describe("The modulus of the RSA key.").nullable().optional(),
10
+ publicExponent: z.string().describe("The public exponent of the RSA key.").nullable().optional()
11
+ }).describe("RSA key parameters for the signing policy.");
12
+ const SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema = z.object({
13
+ keyType: z.string().describe("The type of signing key (e.g., RSA, ECC).").nullable().optional(),
14
+ projectSlug: z.string().describe("The slug identifier of the project.").nullable().optional(),
15
+ keySizeInBits: z.number().int().describe("The size of the signing key in bits.").nullable().optional(),
16
+ rsaParameters: SignpathRetrieveSigningPolicyDetails_RsaParametersSchema.nullable().optional(),
17
+ publicKeyBytes: z.string().describe("The public key in base64-encoded format.").nullable().optional(),
18
+ signingPolicyId: z.string().describe("Unique identifier (UUID) of the signing policy."),
19
+ certificateBytes: z.string().describe("The X.509 certificate in base64-encoded format.").nullable().optional(),
20
+ signingPolicySlug: z.string().describe("The slug identifier of the signing policy.").nullable().optional()
21
+ }).describe("Details of a signing policy including certificate and key information.");
22
+ const signpathRetrieveSigningPolicyDetails = action("SIGNPATH_RETRIEVE_SIGNING_POLICY_DETAILS", {
23
+ slug: "signpath-retrieve-signing-policy-details",
24
+ name: "Retrieve Signing Policy Details",
25
+ description: "Retrieve signing policy details for code signing operations. Returns certificate info, RSA key parameters, and policy metadata for the authenticated user's accessible signing policies. Without filters, returns all policies where the user is assigned as Submitter.",
26
+ input: SignpathRetrieveSigningPolicyDetailsInput,
27
+ output: z.object({ signingPolicies: z.array(SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema).describe("List of signing policies available to the organization.") }).describe("Response model containing a list of signing policies.")
28
+ });
29
+ //#endregion
30
+ export { signpathRetrieveSigningPolicyDetails };
31
+
32
+ //# sourceMappingURL=retrieve-signing-policy-details.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-signing-policy-details.mjs","names":[],"sources":["../../src/actions/retrieve-signing-policy-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathRetrieveSigningPolicyDetailsInput: z.ZodTypeAny = z.object({\n project_slug: z.string().describe(\"Optional project slug to filter signing policies for a specific project. Required when using signing_policy_slug.\").optional(),\n signing_policy_slug: z.string().describe(\"Optional signing policy slug to get details for a specific policy. Must be used together with project_slug.\").optional(),\n}).describe(\"Request model for retrieving signing policy details.\");\nconst SignpathRetrieveSigningPolicyDetails_RsaParametersSchema: z.ZodTypeAny = z.object({\n modulus: z.string().describe(\"The modulus of the RSA key.\").nullable().optional(),\n publicExponent: z.string().describe(\"The public exponent of the RSA key.\").nullable().optional(),\n}).describe(\"RSA key parameters for the signing policy.\");\nconst SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema: z.ZodTypeAny = z.object({\n keyType: z.string().describe(\"The type of signing key (e.g., RSA, ECC).\").nullable().optional(),\n projectSlug: z.string().describe(\"The slug identifier of the project.\").nullable().optional(),\n keySizeInBits: z.number().int().describe(\"The size of the signing key in bits.\").nullable().optional(),\n rsaParameters: SignpathRetrieveSigningPolicyDetails_RsaParametersSchema.nullable().optional(),\n publicKeyBytes: z.string().describe(\"The public key in base64-encoded format.\").nullable().optional(),\n signingPolicyId: z.string().describe(\"Unique identifier (UUID) of the signing policy.\"),\n certificateBytes: z.string().describe(\"The X.509 certificate in base64-encoded format.\").nullable().optional(),\n signingPolicySlug: z.string().describe(\"The slug identifier of the signing policy.\").nullable().optional(),\n}).describe(\"Details of a signing policy including certificate and key information.\");\nexport const SignpathRetrieveSigningPolicyDetailsOutput: z.ZodTypeAny = z.object({\n signingPolicies: z.array(SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema).describe(\"List of signing policies available to the organization.\"),\n}).describe(\"Response model containing a list of signing policies.\");\n\nexport const signpathRetrieveSigningPolicyDetails = action(\"SIGNPATH_RETRIEVE_SIGNING_POLICY_DETAILS\", {\n slug: \"signpath-retrieve-signing-policy-details\",\n name: \"Retrieve Signing Policy Details\",\n description: \"Retrieve signing policy details for code signing operations. Returns certificate info, RSA key parameters, and policy metadata for the authenticated user's accessible signing policies. Without filters, returns all policies where the user is assigned as Submitter.\",\n input: SignpathRetrieveSigningPolicyDetailsInput,\n output: SignpathRetrieveSigningPolicyDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4CAA0D,EAAE,OAAO;CAC9E,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mHAAmH,CAAC,CAAC,SAAS;CAChK,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;AACnK,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAM,2DAAyE,EAAE,OAAO;CACtF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjG,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAM,iEAA+E,EAAE,OAAO;CAC5F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,eAAe,yDAAyD,SAAS,CAAC,CAAC,SAAS;CAC5F,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CACtF,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,wEAAwE;AAKpF,MAAa,uCAAuC,OAAO,4CAA4C;CACrG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATsE,EAAE,OAAO,EAC/E,iBAAiB,EAAE,MAAM,8DAA8D,CAAC,CAAC,SAAS,yDAAyD,EAC7J,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
@@ -0,0 +1,19 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/retrieve-system-info.ts
4
+ const SignpathRetrieveSystemInfoInput = zod.z.object({}).describe("Request model for retrieving system information. No parameters are required.");
5
+ const SignpathRetrieveSystemInfoOutput = zod.z.object({
6
+ webBaseUrl: zod.z.string().describe("Base URL for the SignPath web UI"),
7
+ applicationVersion: zod.z.string().describe("The current version of the SignPath application")
8
+ }).describe("Response model containing SignPath system information.");
9
+ const signpathRetrieveSystemInfo = require_action.action("SIGNPATH_RETRIEVE_SYSTEM_INFO", {
10
+ slug: "signpath-retrieve-system-info",
11
+ name: "Retrieve System Info",
12
+ description: "Retrieves SignPath system information including the application version and the web UI base URL. Use this tool to verify the SignPath installation version or to obtain the web interface URL.",
13
+ input: SignpathRetrieveSystemInfoInput,
14
+ output: SignpathRetrieveSystemInfoOutput
15
+ });
16
+ //#endregion
17
+ exports.signpathRetrieveSystemInfo = signpathRetrieveSystemInfo;
18
+
19
+ //# sourceMappingURL=retrieve-system-info.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-system-info.cjs","names":["z","action"],"sources":["../../src/actions/retrieve-system-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathRetrieveSystemInfoInput: z.ZodTypeAny = z.object({}).describe(\"Request model for retrieving system information. No parameters are required.\");\nexport const SignpathRetrieveSystemInfoOutput: z.ZodTypeAny = z.object({\n webBaseUrl: z.string().describe(\"Base URL for the SignPath web UI\"),\n applicationVersion: z.string().describe(\"The current version of the SignPath application\"),\n}).describe(\"Response model containing SignPath system information.\");\n\nexport const signpathRetrieveSystemInfo = action(\"SIGNPATH_RETRIEVE_SYSTEM_INFO\", {\n slug: \"signpath-retrieve-system-info\",\n name: \"Retrieve System Info\",\n description: \"Retrieves SignPath system information including the application version and the web UI base URL. Use this tool to verify the SignPath installation version or to obtain the web interface URL.\",\n input: SignpathRetrieveSystemInfoInput,\n output: SignpathRetrieveSystemInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAgDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8EAA8E;AACjK,MAAa,mCAAiDA,IAAAA,EAAE,OAAO;CACrE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAClE,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;AAC3F,CAAC,CAAC,CAAC,SAAS,wDAAwD;AAEpE,MAAa,6BAA6BC,eAAAA,OAAO,iCAAiC;CAChF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/retrieve-system-info.d.ts
4
+ declare const SignpathRetrieveSystemInfoInput: z.ZodTypeAny;
5
+ declare const SignpathRetrieveSystemInfoOutput: z.ZodTypeAny;
6
+ declare const signpathRetrieveSystemInfo: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathRetrieveSystemInfo };
9
+ //# sourceMappingURL=retrieve-system-info.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-system-info.d.cts","names":[],"sources":["../../src/actions/retrieve-system-info.ts"],"mappings":";;;cAIa,+BAAA,EAAiC,CAAA,CAAE,UAAkH;AAAA,cACrJ,gCAAA,EAAkC,CAAA,CAAE,UAGoB;AAAA,cAExD,0BAAA,gCAA0B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/retrieve-system-info.d.ts
4
+ declare const SignpathRetrieveSystemInfoInput: z.ZodTypeAny;
5
+ declare const SignpathRetrieveSystemInfoOutput: z.ZodTypeAny;
6
+ declare const signpathRetrieveSystemInfo: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { signpathRetrieveSystemInfo };
9
+ //# sourceMappingURL=retrieve-system-info.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-system-info.d.mts","names":[],"sources":["../../src/actions/retrieve-system-info.ts"],"mappings":";;;cAIa,+BAAA,EAAiC,CAAA,CAAE,UAAkH;AAAA,cACrJ,gCAAA,EAAkC,CAAA,CAAE,UAGoB;AAAA,cAExD,0BAAA,gCAA0B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,16 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const signpathRetrieveSystemInfo = action("SIGNPATH_RETRIEVE_SYSTEM_INFO", {
4
+ slug: "signpath-retrieve-system-info",
5
+ name: "Retrieve System Info",
6
+ description: "Retrieves SignPath system information including the application version and the web UI base URL. Use this tool to verify the SignPath installation version or to obtain the web interface URL.",
7
+ input: z.object({}).describe("Request model for retrieving system information. No parameters are required."),
8
+ output: z.object({
9
+ webBaseUrl: z.string().describe("Base URL for the SignPath web UI"),
10
+ applicationVersion: z.string().describe("The current version of the SignPath application")
11
+ }).describe("Response model containing SignPath system information.")
12
+ });
13
+ //#endregion
14
+ export { signpathRetrieveSystemInfo };
15
+
16
+ //# sourceMappingURL=retrieve-system-info.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"retrieve-system-info.mjs","names":[],"sources":["../../src/actions/retrieve-system-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignpathRetrieveSystemInfoInput: z.ZodTypeAny = z.object({}).describe(\"Request model for retrieving system information. No parameters are required.\");\nexport const SignpathRetrieveSystemInfoOutput: z.ZodTypeAny = z.object({\n webBaseUrl: z.string().describe(\"Base URL for the SignPath web UI\"),\n applicationVersion: z.string().describe(\"The current version of the SignPath application\"),\n}).describe(\"Response model containing SignPath system information.\");\n\nexport const signpathRetrieveSystemInfo = action(\"SIGNPATH_RETRIEVE_SYSTEM_INFO\", {\n slug: \"signpath-retrieve-system-info\",\n name: \"Retrieve System Info\",\n description: \"Retrieves SignPath system information including the application version and the web UI base URL. Use this tool to verify the SignPath installation version or to obtain the web interface URL.\",\n input: SignpathRetrieveSystemInfoInput,\n output: SignpathRetrieveSystemInfoOutput,\n});\n"],"mappings":";;AAUA,MAAa,6BAA6B,OAAO,iCAAiC;CAChF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAV2D,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8EAU1E;CACP,QAV4D,EAAE,OAAO;EACrE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;EAClE,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC3F,CAAC,CAAC,CAAC,SAAS,wDAOF;AACV,CAAC"}
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const signpath = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "signpath",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.signpath = signpath;
8
+
9
+ //# sourceMappingURL=app.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const signpath = defineApp({\n slug: \"signpath\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,YAAA,uCAAA,CAAA,CAAA,UAAA,CAAqB;CAChC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const signpath: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { signpath };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,QAAA,6BAAQ,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const signpath: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { signpath };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,QAAA,6BAAQ,GAAA,+BAAA,UAAA"}
package/dist/app.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { defineApp } from "@keystrokehq/keystroke/app";
2
+ //#region src/app.ts
3
+ const signpath = defineApp({
4
+ slug: "signpath",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { signpath };
9
+
10
+ //# sourceMappingURL=app.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const signpath = defineApp({\n slug: \"signpath\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,WAAW,UAAU;CAChC,MAAM;CACN,MAAM;AACR,CAAC"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const signpathCatalog = {
4
+ "slug": "signpath",
5
+ "name": "Signpath",
6
+ "description": "SignPath is a code signing service that integrates with your build system to automate the signing of your software artifacts, ensuring their authenticity and integrity.",
7
+ "category": "Security & Identity Tools",
8
+ "logo": "https://logos.composio.dev/api/signpath",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.signpathCatalog = signpathCatalog;
14
+
15
+ //# sourceMappingURL=catalog.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const signpathCatalog = {\n \"slug\": \"signpath\",\n \"name\": \"Signpath\",\n \"description\": \"SignPath is a code signing service that integrates with your build system to automate the signing of your software artifacts, ensuring their authenticity and integrity.\",\n \"category\": \"Security & Identity Tools\",\n \"logo\": \"https://logos.composio.dev/api/signpath\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const signpathCatalog: {
4
+ readonly slug: "signpath";
5
+ readonly name: "Signpath";
6
+ readonly description: "SignPath is a code signing service that integrates with your build system to automate the signing of your software artifacts, ensuring their authenticity and integrity.";
7
+ readonly category: "Security & Identity Tools";
8
+ readonly logo: "https://logos.composio.dev/api/signpath";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { signpathCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,eAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const signpathCatalog: {
4
+ readonly slug: "signpath";
5
+ readonly name: "Signpath";
6
+ readonly description: "SignPath is a code signing service that integrates with your build system to automate the signing of your software artifacts, ensuring their authenticity and integrity.";
7
+ readonly category: "Security & Identity Tools";
8
+ readonly logo: "https://logos.composio.dev/api/signpath";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { signpathCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,eAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const signpathCatalog = {
4
+ "slug": "signpath",
5
+ "name": "Signpath",
6
+ "description": "SignPath is a code signing service that integrates with your build system to automate the signing of your software artifacts, ensuring their authenticity and integrity.",
7
+ "category": "Security & Identity Tools",
8
+ "logo": "https://logos.composio.dev/api/signpath",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { signpathCatalog };
14
+
15
+ //# sourceMappingURL=catalog.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const signpathCatalog = {\n \"slug\": \"signpath\",\n \"name\": \"Signpath\",\n \"description\": \"SignPath is a code signing service that integrates with your build system to automate the signing of your software artifacts, ensuring their authenticity and integrity.\",\n \"category\": \"Security & Identity Tools\",\n \"logo\": \"https://logos.composio.dev/api/signpath\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,18 @@
1
+ let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "signpath";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeSignpathTool(tool, args) {
7
+ const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ exports.executeSignpathTool = executeSignpathTool;
17
+
18
+ //# sourceMappingURL=execute.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"signpath\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSignpathTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,oBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
@@ -0,0 +1,18 @@
1
+ import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "signpath";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeSignpathTool(tool, args) {
7
+ const { result } = await createKeystrokeClient().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ export { executeSignpathTool };
17
+
18
+ //# sourceMappingURL=execute.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"signpath\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSignpathTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,oBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
package/dist/index.cjs ADDED
@@ -0,0 +1,16 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_app = require("./app.cjs");
3
+ const require_catalog = require("./catalog.cjs");
4
+ const require_get_health_check = require("./actions/get-health-check.cjs");
5
+ const require_list_certificates = require("./actions/list-certificates.cjs");
6
+ const require_list_projects = require("./actions/list-projects.cjs");
7
+ const require_retrieve_signing_policy_details = require("./actions/retrieve-signing-policy-details.cjs");
8
+ const require_retrieve_system_info = require("./actions/retrieve-system-info.cjs");
9
+ require("./actions/index.cjs");
10
+ exports.signpath = require_app.signpath;
11
+ exports.signpathCatalog = require_catalog.signpathCatalog;
12
+ exports.signpathGetHealthCheck = require_get_health_check.signpathGetHealthCheck;
13
+ exports.signpathListCertificates = require_list_certificates.signpathListCertificates;
14
+ exports.signpathListProjects = require_list_projects.signpathListProjects;
15
+ exports.signpathRetrieveSigningPolicyDetails = require_retrieve_signing_policy_details.signpathRetrieveSigningPolicyDetails;
16
+ exports.signpathRetrieveSystemInfo = require_retrieve_system_info.signpathRetrieveSystemInfo;
@@ -0,0 +1,8 @@
1
+ import { signpathGetHealthCheck } from "./actions/get-health-check.cjs";
2
+ import { signpathListCertificates } from "./actions/list-certificates.cjs";
3
+ import { signpathListProjects } from "./actions/list-projects.cjs";
4
+ import { signpathRetrieveSigningPolicyDetails } from "./actions/retrieve-signing-policy-details.cjs";
5
+ import { signpathRetrieveSystemInfo } from "./actions/retrieve-system-info.cjs";
6
+ import { signpath } from "./app.cjs";
7
+ import { signpathCatalog } from "./catalog.cjs";
8
+ export { signpath, signpathCatalog, signpathGetHealthCheck, signpathListCertificates, signpathListProjects, signpathRetrieveSigningPolicyDetails, signpathRetrieveSystemInfo };
@@ -0,0 +1,8 @@
1
+ import { signpathGetHealthCheck } from "./actions/get-health-check.mjs";
2
+ import { signpathListCertificates } from "./actions/list-certificates.mjs";
3
+ import { signpathListProjects } from "./actions/list-projects.mjs";
4
+ import { signpathRetrieveSigningPolicyDetails } from "./actions/retrieve-signing-policy-details.mjs";
5
+ import { signpathRetrieveSystemInfo } from "./actions/retrieve-system-info.mjs";
6
+ import { signpath } from "./app.mjs";
7
+ import { signpathCatalog } from "./catalog.mjs";
8
+ export { signpath, signpathCatalog, signpathGetHealthCheck, signpathListCertificates, signpathListProjects, signpathRetrieveSigningPolicyDetails, signpathRetrieveSystemInfo };
package/dist/index.mjs ADDED
@@ -0,0 +1,9 @@
1
+ import { signpath } from "./app.mjs";
2
+ import { signpathCatalog } from "./catalog.mjs";
3
+ import { signpathGetHealthCheck } from "./actions/get-health-check.mjs";
4
+ import { signpathListCertificates } from "./actions/list-certificates.mjs";
5
+ import { signpathListProjects } from "./actions/list-projects.mjs";
6
+ import { signpathRetrieveSigningPolicyDetails } from "./actions/retrieve-signing-policy-details.mjs";
7
+ import { signpathRetrieveSystemInfo } from "./actions/retrieve-system-info.mjs";
8
+ import "./actions/index.mjs";
9
+ export { signpath, signpathCatalog, signpathGetHealthCheck, signpathListCertificates, signpathListProjects, signpathRetrieveSigningPolicyDetails, signpathRetrieveSystemInfo };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@keystrokehq/signpath",
3
+ "version": "0.1.0",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/keystrokehq/keystroke.git",
11
+ "directory": "packages/integrations/signpath"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.mts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.mts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.cjs"
26
+ },
27
+ "./actions": {
28
+ "types": "./dist/actions/index.d.mts",
29
+ "import": "./dist/actions/index.mjs",
30
+ "require": "./dist/actions/index.cjs"
31
+ }
32
+ },
33
+ "peerDependencies": {
34
+ "@keystrokehq/keystroke": "^0.1.4",
35
+ "zod": "^4.4.3"
36
+ },
37
+ "devDependencies": {
38
+ "@keystrokehq/keystroke": "link:../../keystroke",
39
+ "@types/node": "^25.9.1",
40
+ "tsdown": "^0.22.0",
41
+ "typescript": "^6.0.3",
42
+ "zod": "^4.4.3"
43
+ },
44
+ "scripts": {
45
+ "build": "tsdown",
46
+ "dev": "tsdown --watch --no-clean",
47
+ "typecheck": "tsc --noEmit"
48
+ }
49
+ }