@keystrokehq/signpath 0.1.0 → 0.1.2

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 (47) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/get-health-check.cjs.map +1 -1
  4. package/dist/actions/get-health-check.d.cts +5 -3
  5. package/dist/actions/get-health-check.d.cts.map +1 -1
  6. package/dist/actions/get-health-check.d.mts +5 -3
  7. package/dist/actions/get-health-check.d.mts.map +1 -1
  8. package/dist/actions/get-health-check.mjs.map +1 -1
  9. package/dist/actions/list-certificates.cjs +2 -2
  10. package/dist/actions/list-certificates.cjs.map +1 -1
  11. package/dist/actions/list-certificates.d.cts +8 -3
  12. package/dist/actions/list-certificates.d.cts.map +1 -1
  13. package/dist/actions/list-certificates.d.mts +8 -3
  14. package/dist/actions/list-certificates.d.mts.map +1 -1
  15. package/dist/actions/list-certificates.mjs +2 -2
  16. package/dist/actions/list-certificates.mjs.map +1 -1
  17. package/dist/actions/list-projects.cjs +4 -4
  18. package/dist/actions/list-projects.cjs.map +1 -1
  19. package/dist/actions/list-projects.d.cts +17 -3
  20. package/dist/actions/list-projects.d.cts.map +1 -1
  21. package/dist/actions/list-projects.d.mts +17 -3
  22. package/dist/actions/list-projects.d.mts.map +1 -1
  23. package/dist/actions/list-projects.mjs +4 -4
  24. package/dist/actions/list-projects.mjs.map +1 -1
  25. package/dist/actions/retrieve-signing-policy-details.cjs +1 -1
  26. package/dist/actions/retrieve-signing-policy-details.cjs.map +1 -1
  27. package/dist/actions/retrieve-signing-policy-details.d.cts +23 -3
  28. package/dist/actions/retrieve-signing-policy-details.d.cts.map +1 -1
  29. package/dist/actions/retrieve-signing-policy-details.d.mts +23 -3
  30. package/dist/actions/retrieve-signing-policy-details.d.mts.map +1 -1
  31. package/dist/actions/retrieve-signing-policy-details.mjs +1 -1
  32. package/dist/actions/retrieve-signing-policy-details.mjs.map +1 -1
  33. package/dist/actions/retrieve-system-info.cjs +2 -2
  34. package/dist/actions/retrieve-system-info.cjs.map +1 -1
  35. package/dist/actions/retrieve-system-info.d.cts +6 -3
  36. package/dist/actions/retrieve-system-info.d.cts.map +1 -1
  37. package/dist/actions/retrieve-system-info.d.mts +6 -3
  38. package/dist/actions/retrieve-system-info.d.mts.map +1 -1
  39. package/dist/actions/retrieve-system-info.mjs +2 -2
  40. package/dist/actions/retrieve-system-info.mjs.map +1 -1
  41. package/dist/catalog.cjs +13 -1
  42. package/dist/catalog.cjs.map +1 -1
  43. package/dist/catalog.d.cts +12 -0
  44. package/dist/catalog.d.mts +12 -0
  45. package/dist/catalog.mjs +13 -1
  46. package/dist/catalog.mjs.map +1 -1
  47. package/package.json +2 -2
@@ -1 +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"}
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<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\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 as z.ZodTypeAny,\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"}
@@ -1 +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"}
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<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\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 as z.ZodTypeAny,\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"}
@@ -1 +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"}
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.object({}).describe(\"Request model for health check. No parameters are required.\");\nexport const SignpathGetHealthCheckOutput = 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,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAC9H,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,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"}
@@ -1,9 +1,11 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathGetHealthCheckInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const SignpathGetHealthCheckOutput: z.ZodObject<{
6
+ status: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
7
+ }, z.core.$strip>;
8
+ declare const signpathGetHealthCheck: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
9
  //#endregion
8
10
  export { signpathGetHealthCheck };
9
11
  //# sourceMappingURL=get-health-check.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"get-health-check.d.cts","names":[],"sources":["../../src/actions/get-health-check.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAI5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1,9 +1,11 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathGetHealthCheckInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const SignpathGetHealthCheckOutput: z.ZodObject<{
6
+ status: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>;
7
+ }, z.core.$strip>;
8
+ declare const signpathGetHealthCheck: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
9
  //#endregion
8
10
  export { signpathGetHealthCheck };
9
11
  //# sourceMappingURL=get-health-check.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"get-health-check.d.mts","names":[],"sources":["../../src/actions/get-health-check.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAI5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1 +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"}
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.object({}).describe(\"Request model for health check. No parameters are required.\");\nexport const SignpathGetHealthCheckOutput = 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,OATyC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DASxD;CACP,QAT0C,EAAE,OAAO,EACnD,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"}
@@ -3,8 +3,8 @@ let zod = require("zod");
3
3
  //#region src/actions/list-certificates.ts
4
4
  const SignpathListCertificatesInput = zod.z.object({}).describe("Request model for listing all certificates in an organization.");
5
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.")
6
+ id: zod.z.string().describe("Unique identifier (UUID) of the certificate.").nullable(),
7
+ name: zod.z.string().describe("Display name of the certificate.").nullable()
8
8
  }).passthrough().describe("Model for a certificate entry returned by the SignPath API.");
9
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
10
  const signpathListCertificates = require_action.action("SIGNPATH_LIST_CERTIFICATES", {
@@ -1 +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"}
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.object({}).describe(\"Request model for listing all certificates in an organization.\");\nconst SignpathListCertificates_CertificateSchema = z.object({\n id: z.string().describe(\"Unique identifier (UUID) of the certificate.\").nullable(),\n name: z.string().describe(\"Display name of the certificate.\").nullable(),\n}).passthrough().describe(\"Model for a certificate entry returned by the SignPath API.\");\nexport const SignpathListCertificatesOutput = 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,gCAAgCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gEAAgE;AACnI,MAAM,6CAA6CA,IAAAA,EAAE,OAAO;CAC1D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CACjF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;AACzE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AACvF,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,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"}
@@ -1,9 +1,14 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathListCertificatesInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const SignpathListCertificatesOutput: z.ZodObject<{
6
+ certificates: z.ZodArray<z.ZodObject<{
7
+ id: z.ZodNullable<z.ZodString>;
8
+ name: z.ZodNullable<z.ZodString>;
9
+ }, z.core.$loose>>;
10
+ }, z.core.$strip>;
11
+ declare const signpathListCertificates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
12
  //#endregion
8
13
  export { signpathListCertificates };
9
14
  //# sourceMappingURL=list-certificates.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"list-certificates.d.cts","names":[],"sources":["../../src/actions/list-certificates.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAK7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;cAI9B,wBAAA,gCAAwB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1,9 +1,14 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathListCertificatesInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const SignpathListCertificatesOutput: z.ZodObject<{
6
+ certificates: z.ZodArray<z.ZodObject<{
7
+ id: z.ZodNullable<z.ZodString>;
8
+ name: z.ZodNullable<z.ZodString>;
9
+ }, z.core.$loose>>;
10
+ }, z.core.$strip>;
11
+ declare const signpathListCertificates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
12
  //#endregion
8
13
  export { signpathListCertificates };
9
14
  //# sourceMappingURL=list-certificates.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"list-certificates.d.mts","names":[],"sources":["../../src/actions/list-certificates.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAK7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;cAI9B,wBAAA,gCAAwB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -3,8 +3,8 @@ import { z } from "zod";
3
3
  //#region src/actions/list-certificates.ts
4
4
  const SignpathListCertificatesInput = z.object({}).describe("Request model for listing all certificates in an organization.");
5
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.")
6
+ id: z.string().describe("Unique identifier (UUID) of the certificate.").nullable(),
7
+ name: z.string().describe("Display name of the certificate.").nullable()
8
8
  }).passthrough().describe("Model for a certificate entry returned by the SignPath API.");
9
9
  const signpathListCertificates = action("SIGNPATH_LIST_CERTIFICATES", {
10
10
  slug: "signpath-list-certificates",
@@ -1 +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"}
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.object({}).describe(\"Request model for listing all certificates in an organization.\");\nconst SignpathListCertificates_CertificateSchema = z.object({\n id: z.string().describe(\"Unique identifier (UUID) of the certificate.\").nullable(),\n name: z.string().describe(\"Display name of the certificate.\").nullable(),\n}).passthrough().describe(\"Model for a certificate entry returned by the SignPath API.\");\nexport const SignpathListCertificatesOutput = 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,gCAAgC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,gEAAgE;AACnI,MAAM,6CAA6C,EAAE,OAAO;CAC1D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CACjF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;AACzE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AAKvF,MAAa,2BAA2B,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT4C,EAAE,OAAO,EACrD,cAAc,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,8GAA8G,EAC3L,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
@@ -6,13 +6,13 @@ const SignpathListProjectsInput = zod.z.object({
6
6
  take: zod.z.number().int().describe("Number of items to return (max 100).").optional()
7
7
  }).describe("Request model for listing all projects in an organization.");
8
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"),
9
+ id: zod.z.string().describe("Project identifier.").nullable(),
10
+ name: zod.z.string().describe("Project name.").nullable(),
11
+ isActive: zod.z.boolean().describe("Whether the project is currently active").nullable(),
12
12
  description: zod.z.string().describe("Project description.").nullable().optional()
13
13
  }).describe("Model for a single project entry.");
14
14
  const SignpathListProjectsOutput = zod.z.object({
15
- count: zod.z.number().int().describe("Total number of projects matching the criteria"),
15
+ count: zod.z.number().int().describe("Total number of projects matching the criteria").nullable(),
16
16
  value: zod.z.array(SignpathListProjects_ProjectSchema).describe("Array of project objects")
17
17
  }).describe("Response model for listing projects.");
18
18
  const signpathListProjects = require_action.action("SIGNPATH_LIST_PROJECTS", {
@@ -1 +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"}
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.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.object({\n id: z.string().describe(\"Project identifier.\").nullable(),\n name: z.string().describe(\"Project name.\").nullable(),\n isActive: z.boolean().describe(\"Whether the project is currently active\").nullable(),\n description: z.string().describe(\"Project description.\").nullable().optional(),\n}).describe(\"Model for a single project entry.\");\nexport const SignpathListProjectsOutput = z.object({\n count: z.number().int().describe(\"Total number of projects matching the criteria\").nullable(),\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,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,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,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS;CACpD,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACnF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CAC5F,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"}
@@ -1,9 +1,23 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathListProjectsInput: z.ZodObject<{
5
+ skip: z.ZodOptional<z.ZodNumber>;
6
+ take: z.ZodOptional<z.ZodNumber>;
7
+ }, z.core.$strip>;
8
+ declare const SignpathListProjectsOutput: z.ZodObject<{
9
+ count: z.ZodNullable<z.ZodNumber>;
10
+ value: z.ZodArray<z.ZodObject<{
11
+ id: z.ZodNullable<z.ZodString>;
12
+ name: z.ZodNullable<z.ZodString>;
13
+ isActive: z.ZodNullable<z.ZodBoolean>;
14
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ }, z.core.$strip>>;
16
+ }, z.core.$strip>;
17
+ declare const signpathListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
18
+ skip?: number | undefined;
19
+ take?: number | undefined;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
21
  //#endregion
8
22
  export { signpathListProjects };
9
23
  //# sourceMappingURL=list-projects.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"list-projects.d.cts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;cAUzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA"}
@@ -1,9 +1,23 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathListProjectsInput: z.ZodObject<{
5
+ skip: z.ZodOptional<z.ZodNumber>;
6
+ take: z.ZodOptional<z.ZodNumber>;
7
+ }, z.core.$strip>;
8
+ declare const SignpathListProjectsOutput: z.ZodObject<{
9
+ count: z.ZodNullable<z.ZodNumber>;
10
+ value: z.ZodArray<z.ZodObject<{
11
+ id: z.ZodNullable<z.ZodString>;
12
+ name: z.ZodNullable<z.ZodString>;
13
+ isActive: z.ZodNullable<z.ZodBoolean>;
14
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ }, z.core.$strip>>;
16
+ }, z.core.$strip>;
17
+ declare const signpathListProjects: import("@keystrokehq/action").WorkflowActionDefinition<{
18
+ skip?: number | undefined;
19
+ take?: number | undefined;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
21
  //#endregion
8
22
  export { signpathListProjects };
9
23
  //# sourceMappingURL=list-projects.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"list-projects.d.mts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;cAUzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA"}
@@ -6,9 +6,9 @@ const SignpathListProjectsInput = z.object({
6
6
  take: z.number().int().describe("Number of items to return (max 100).").optional()
7
7
  }).describe("Request model for listing all projects in an organization.");
8
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"),
9
+ id: z.string().describe("Project identifier.").nullable(),
10
+ name: z.string().describe("Project name.").nullable(),
11
+ isActive: z.boolean().describe("Whether the project is currently active").nullable(),
12
12
  description: z.string().describe("Project description.").nullable().optional()
13
13
  }).describe("Model for a single project entry.");
14
14
  const signpathListProjects = action("SIGNPATH_LIST_PROJECTS", {
@@ -17,7 +17,7 @@ const signpathListProjects = action("SIGNPATH_LIST_PROJECTS", {
17
17
  description: "Tool to list all projects for an organization. Use after confirming the organization ID to retrieve and paginate project records.",
18
18
  input: SignpathListProjectsInput,
19
19
  output: z.object({
20
- count: z.number().int().describe("Total number of projects matching the criteria"),
20
+ count: z.number().int().describe("Total number of projects matching the criteria").nullable(),
21
21
  value: z.array(SignpathListProjects_ProjectSchema).describe("Array of project objects")
22
22
  }).describe("Response model for listing projects.")
23
23
  });
@@ -1 +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"}
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.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.object({\n id: z.string().describe(\"Project identifier.\").nullable(),\n name: z.string().describe(\"Project name.\").nullable(),\n isActive: z.boolean().describe(\"Whether the project is currently active\").nullable(),\n description: z.string().describe(\"Project description.\").nullable().optional(),\n}).describe(\"Model for a single project entry.\");\nexport const SignpathListProjectsOutput = z.object({\n count: z.number().int().describe(\"Total number of projects matching the criteria\").nullable(),\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,4BAA4B,EAAE,OAAO;CAChD,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,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS;CACpD,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACnF,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,QAVwC,EAAE,OAAO;EACjD,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;EAC5F,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,0BAA0B;CACxF,CAAC,CAAC,CAAC,SAAS,sCAOF;AACV,CAAC"}
@@ -15,7 +15,7 @@ const SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema = zod.z.obj
15
15
  keySizeInBits: zod.z.number().int().describe("The size of the signing key in bits.").nullable().optional(),
16
16
  rsaParameters: SignpathRetrieveSigningPolicyDetails_RsaParametersSchema.nullable().optional(),
17
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."),
18
+ signingPolicyId: zod.z.string().describe("Unique identifier (UUID) of the signing policy.").nullable(),
19
19
  certificateBytes: zod.z.string().describe("The X.509 certificate in base64-encoded format.").nullable().optional(),
20
20
  signingPolicySlug: zod.z.string().describe("The slug identifier of the signing policy.").nullable().optional()
21
21
  }).describe("Details of a signing policy including certificate and key information.");
@@ -1 +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"}
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.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.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.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.\").nullable(),\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.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,4CAA4CA,IAAAA,EAAE,OAAO;CAChE,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,2DAA2DA,IAAAA,EAAE,OAAO;CACxE,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,iEAAiEA,IAAAA,EAAE,OAAO;CAC9E,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,CAAC,CAAC,SAAS;CACjG,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,6CAA6CA,IAAAA,EAAE,OAAO,EACjE,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"}
@@ -1,9 +1,29 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathRetrieveSigningPolicyDetailsInput: z.ZodObject<{
5
+ project_slug: z.ZodOptional<z.ZodString>;
6
+ signing_policy_slug: z.ZodOptional<z.ZodString>;
7
+ }, z.core.$strip>;
8
+ declare const SignpathRetrieveSigningPolicyDetailsOutput: z.ZodObject<{
9
+ signingPolicies: z.ZodArray<z.ZodObject<{
10
+ keyType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ projectSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ keySizeInBits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13
+ rsaParameters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
14
+ modulus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ publicExponent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ }, z.core.$strip>>>;
17
+ publicKeyBytes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ signingPolicyId: z.ZodNullable<z.ZodString>;
19
+ certificateBytes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ signingPolicySlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
+ }, z.core.$strip>>;
22
+ }, z.core.$strip>;
23
+ declare const signpathRetrieveSigningPolicyDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
24
+ project_slug?: string | undefined;
25
+ signing_policy_slug?: string | undefined;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
27
  //#endregion
8
28
  export { signpathRetrieveSigningPolicyDetails };
9
29
  //# sourceMappingURL=retrieve-signing-policy-details.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"retrieve-signing-policy-details.d.cts","names":[],"sources":["../../src/actions/retrieve-signing-policy-details.ts"],"mappings":";;;cAIa,yCAAA,EAAyC,CAAA,CAAA,SAAA;;;;cAkBzC,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI1C,oCAAA,gCAAoC,wBAAA"}
@@ -1,9 +1,29 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathRetrieveSigningPolicyDetailsInput: z.ZodObject<{
5
+ project_slug: z.ZodOptional<z.ZodString>;
6
+ signing_policy_slug: z.ZodOptional<z.ZodString>;
7
+ }, z.core.$strip>;
8
+ declare const SignpathRetrieveSigningPolicyDetailsOutput: z.ZodObject<{
9
+ signingPolicies: z.ZodArray<z.ZodObject<{
10
+ keyType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ projectSlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ keySizeInBits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13
+ rsaParameters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
14
+ modulus: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ publicExponent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ }, z.core.$strip>>>;
17
+ publicKeyBytes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ signingPolicyId: z.ZodNullable<z.ZodString>;
19
+ certificateBytes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ signingPolicySlug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
+ }, z.core.$strip>>;
22
+ }, z.core.$strip>;
23
+ declare const signpathRetrieveSigningPolicyDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
24
+ project_slug?: string | undefined;
25
+ signing_policy_slug?: string | undefined;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
27
  //#endregion
8
28
  export { signpathRetrieveSigningPolicyDetails };
9
29
  //# sourceMappingURL=retrieve-signing-policy-details.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"retrieve-signing-policy-details.d.mts","names":[],"sources":["../../src/actions/retrieve-signing-policy-details.ts"],"mappings":";;;cAIa,yCAAA,EAAyC,CAAA,CAAA,SAAA;;;;cAkBzC,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cAI1C,oCAAA,gCAAoC,wBAAA"}
@@ -15,7 +15,7 @@ const SignpathRetrieveSigningPolicyDetails_SigningPolicyDetailSchema = z.object(
15
15
  keySizeInBits: z.number().int().describe("The size of the signing key in bits.").nullable().optional(),
16
16
  rsaParameters: SignpathRetrieveSigningPolicyDetails_RsaParametersSchema.nullable().optional(),
17
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."),
18
+ signingPolicyId: z.string().describe("Unique identifier (UUID) of the signing policy.").nullable(),
19
19
  certificateBytes: z.string().describe("The X.509 certificate in base64-encoded format.").nullable().optional(),
20
20
  signingPolicySlug: z.string().describe("The slug identifier of the signing policy.").nullable().optional()
21
21
  }).describe("Details of a signing policy including certificate and key information.");
@@ -1 +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"}
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.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.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.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.\").nullable(),\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.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,4CAA4C,EAAE,OAAO;CAChE,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,2DAA2D,EAAE,OAAO;CACxE,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,iEAAiE,EAAE,OAAO;CAC9E,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,CAAC,CAAC,SAAS;CACjG,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,QATwD,EAAE,OAAO,EACjE,iBAAiB,EAAE,MAAM,8DAA8D,CAAC,CAAC,SAAS,yDAAyD,EAC7J,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
@@ -3,8 +3,8 @@ let zod = require("zod");
3
3
  //#region src/actions/retrieve-system-info.ts
4
4
  const SignpathRetrieveSystemInfoInput = zod.z.object({}).describe("Request model for retrieving system information. No parameters are required.");
5
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")
6
+ webBaseUrl: zod.z.string().describe("Base URL for the SignPath web UI").nullable(),
7
+ applicationVersion: zod.z.string().describe("The current version of the SignPath application").nullable()
8
8
  }).describe("Response model containing SignPath system information.");
9
9
  const signpathRetrieveSystemInfo = require_action.action("SIGNPATH_RETRIEVE_SYSTEM_INFO", {
10
10
  slug: "signpath-retrieve-system-info",
@@ -1 +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"}
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.object({}).describe(\"Request model for retrieving system information. No parameters are required.\");\nexport const SignpathRetrieveSystemInfoOutput = z.object({\n webBaseUrl: z.string().describe(\"Base URL for the SignPath web UI\").nullable(),\n applicationVersion: z.string().describe(\"The current version of the SignPath application\").nullable(),\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,kCAAkCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8EAA8E;AACnJ,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC7E,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AAEpE,MAAa,6BAA6BC,eAAAA,OAAO,iCAAiC;CAChF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,12 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathRetrieveSystemInfoInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const SignpathRetrieveSystemInfoOutput: z.ZodObject<{
6
+ webBaseUrl: z.ZodNullable<z.ZodString>;
7
+ applicationVersion: z.ZodNullable<z.ZodString>;
8
+ }, z.core.$strip>;
9
+ declare const signpathRetrieveSystemInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
10
  //#endregion
8
11
  export { signpathRetrieveSystemInfo };
9
12
  //# sourceMappingURL=retrieve-system-info.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"retrieve-system-info.d.cts","names":[],"sources":["../../src/actions/retrieve-system-info.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;cAKhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -1,9 +1,12 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SignpathRetrieveSystemInfoInput: z.ZodObject<{}, z.core.$strip>;
5
+ declare const SignpathRetrieveSystemInfoOutput: z.ZodObject<{
6
+ webBaseUrl: z.ZodNullable<z.ZodString>;
7
+ applicationVersion: z.ZodNullable<z.ZodString>;
8
+ }, z.core.$strip>;
9
+ declare const signpathRetrieveSystemInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
10
  //#endregion
8
11
  export { signpathRetrieveSystemInfo };
9
12
  //# sourceMappingURL=retrieve-system-info.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"retrieve-system-info.d.mts","names":[],"sources":["../../src/actions/retrieve-system-info.ts"],"mappings":";;;cAIa,+BAAA,EAA+B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC/B,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;;cAKhC,0BAAA,gCAA0B,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -6,8 +6,8 @@ const signpathRetrieveSystemInfo = action("SIGNPATH_RETRIEVE_SYSTEM_INFO", {
6
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
7
  input: z.object({}).describe("Request model for retrieving system information. No parameters are required."),
8
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")
9
+ webBaseUrl: z.string().describe("Base URL for the SignPath web UI").nullable(),
10
+ applicationVersion: z.string().describe("The current version of the SignPath application").nullable()
11
11
  }).describe("Response model containing SignPath system information.")
12
12
  });
13
13
  //#endregion
@@ -1 +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"}
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.object({}).describe(\"Request model for retrieving system information. No parameters are required.\");\nexport const SignpathRetrieveSystemInfoOutput = z.object({\n webBaseUrl: z.string().describe(\"Base URL for the SignPath web UI\").nullable(),\n applicationVersion: z.string().describe(\"The current version of the SignPath application\").nullable(),\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,OAV6C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8EAU5D;CACP,QAV8C,EAAE,OAAO;EACvD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EAC7E,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACtG,CAAC,CAAC,CAAC,SAAS,wDAOF;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,19 @@ const signpathCatalog = {
7
7
  "category": "Security & Identity Tools",
8
8
  "logo": "https://logos.composio.dev/api/signpath",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": {
12
+ "subdomain": {
13
+ "label": "Organization ID",
14
+ "description": "Your SignPath organization ID. This can be found in the SignPath web application URL or in your signing policy details."
15
+ },
16
+ "api_key": {
17
+ "label": "SignPath API Token",
18
+ "secret": true,
19
+ "description": "The API token used for authenticating requests to SignPath's API. Generate this from your user profile or CI user settings."
20
+ }
21
+ },
22
+ "credentialScheme": "API_KEY"
11
23
  };
12
24
  //#endregion
13
25
  exports.signpathCatalog = signpathCatalog;
@@ -1 +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"}
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 \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Organization ID\",\n \"description\": \"Your SignPath organization ID. This can be found in the SignPath web application URL or in your signing policy details.\"\n },\n \"api_key\": {\n \"label\": \"SignPath API Token\",\n \"secret\": true,\n \"description\": \"The API token used for authenticating requests to SignPath's API. Generate this from your user profile or CI user settings.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,18 @@ declare const signpathCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/signpath";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly subdomain: {
13
+ readonly label: "Organization ID";
14
+ readonly description: "Your SignPath organization ID. This can be found in the SignPath web application URL or in your signing policy details.";
15
+ };
16
+ readonly api_key: {
17
+ readonly label: "SignPath API Token";
18
+ readonly secret: true;
19
+ readonly description: "The API token used for authenticating requests to SignPath's API. Generate this from your user profile or CI user settings.";
20
+ };
21
+ };
22
+ readonly credentialScheme: "API_KEY";
11
23
  };
12
24
  //#endregion
13
25
  export { signpathCatalog };
@@ -8,6 +8,18 @@ declare const signpathCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/signpath";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly subdomain: {
13
+ readonly label: "Organization ID";
14
+ readonly description: "Your SignPath organization ID. This can be found in the SignPath web application URL or in your signing policy details.";
15
+ };
16
+ readonly api_key: {
17
+ readonly label: "SignPath API Token";
18
+ readonly secret: true;
19
+ readonly description: "The API token used for authenticating requests to SignPath's API. Generate this from your user profile or CI user settings.";
20
+ };
21
+ };
22
+ readonly credentialScheme: "API_KEY";
11
23
  };
12
24
  //#endregion
13
25
  export { signpathCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,19 @@ const signpathCatalog = {
7
7
  "category": "Security & Identity Tools",
8
8
  "logo": "https://logos.composio.dev/api/signpath",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": {
12
+ "subdomain": {
13
+ "label": "Organization ID",
14
+ "description": "Your SignPath organization ID. This can be found in the SignPath web application URL or in your signing policy details."
15
+ },
16
+ "api_key": {
17
+ "label": "SignPath API Token",
18
+ "secret": true,
19
+ "description": "The API token used for authenticating requests to SignPath's API. Generate this from your user profile or CI user settings."
20
+ }
21
+ },
22
+ "credentialScheme": "API_KEY"
11
23
  };
12
24
  //#endregion
13
25
  export { signpathCatalog };
@@ -1 +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"}
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 \"credentialFields\": {\n \"subdomain\": {\n \"label\": \"Organization ID\",\n \"description\": \"Your SignPath organization ID. This can be found in the SignPath web application URL or in your signing policy details.\"\n },\n \"api_key\": {\n \"label\": \"SignPath API Token\",\n \"secret\": true,\n \"description\": \"The API token used for authenticating requests to SignPath's API. Generate this from your user profile or CI user settings.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,aAAa;GACX,SAAS;GACT,eAAe;EACjB;EACA,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/signpath",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {