@keystrokehq/sidetracker 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 (58) 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/generate-qrcode.cjs +21 -0
  7. package/dist/actions/generate-qrcode.cjs.map +1 -0
  8. package/dist/actions/generate-qrcode.d.cts +9 -0
  9. package/dist/actions/generate-qrcode.d.cts.map +1 -0
  10. package/dist/actions/generate-qrcode.d.mts +9 -0
  11. package/dist/actions/generate-qrcode.d.mts.map +1 -0
  12. package/dist/actions/generate-qrcode.mjs +18 -0
  13. package/dist/actions/generate-qrcode.mjs.map +1 -0
  14. package/dist/actions/get-list-details.cjs +33 -0
  15. package/dist/actions/get-list-details.cjs.map +1 -0
  16. package/dist/actions/get-list-details.d.cts +9 -0
  17. package/dist/actions/get-list-details.d.cts.map +1 -0
  18. package/dist/actions/get-list-details.d.mts +9 -0
  19. package/dist/actions/get-list-details.d.mts.map +1 -0
  20. package/dist/actions/get-list-details.mjs +32 -0
  21. package/dist/actions/get-list-details.mjs.map +1 -0
  22. package/dist/actions/get-lists.cjs +25 -0
  23. package/dist/actions/get-lists.cjs.map +1 -0
  24. package/dist/actions/get-lists.d.cts +9 -0
  25. package/dist/actions/get-lists.d.cts.map +1 -0
  26. package/dist/actions/get-lists.d.mts +9 -0
  27. package/dist/actions/get-lists.d.mts.map +1 -0
  28. package/dist/actions/get-lists.mjs +24 -0
  29. package/dist/actions/get-lists.mjs.map +1 -0
  30. package/dist/actions/index.cjs +7 -0
  31. package/dist/actions/index.d.cts +4 -0
  32. package/dist/actions/index.d.mts +4 -0
  33. package/dist/actions/index.mjs +4 -0
  34. package/dist/app.cjs +9 -0
  35. package/dist/app.cjs.map +1 -0
  36. package/dist/app.d.cts +5 -0
  37. package/dist/app.d.cts.map +1 -0
  38. package/dist/app.d.mts +5 -0
  39. package/dist/app.d.mts.map +1 -0
  40. package/dist/app.mjs +10 -0
  41. package/dist/app.mjs.map +1 -0
  42. package/dist/catalog.cjs +15 -0
  43. package/dist/catalog.cjs.map +1 -0
  44. package/dist/catalog.d.cts +14 -0
  45. package/dist/catalog.d.cts.map +1 -0
  46. package/dist/catalog.d.mts +14 -0
  47. package/dist/catalog.d.mts.map +1 -0
  48. package/dist/catalog.mjs +15 -0
  49. package/dist/catalog.mjs.map +1 -0
  50. package/dist/execute.cjs +18 -0
  51. package/dist/execute.cjs.map +1 -0
  52. package/dist/execute.mjs +18 -0
  53. package/dist/execute.mjs.map +1 -0
  54. package/dist/index.cjs +12 -0
  55. package/dist/index.d.cts +6 -0
  56. package/dist/index.d.mts +6 -0
  57. package/dist/index.mjs +7 -0
  58. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @keystrokehq/sidetracker
2
+
3
+ Keystroke-managed integration.
4
+
5
+ **App:** `sidetracker`
6
+ **Version:** `20260615_00`
7
+ **Actions:** 3
8
+
9
+ ```ts
10
+ import { defineAgent } from "@keystrokehq/keystroke/agent";
11
+ import { sidetrackerGenerateQrcode } from "@keystrokehq/sidetracker/actions";
12
+
13
+ export default defineAgent({
14
+ key: "sidetracker-agent",
15
+ tools: [sidetrackerGenerateQrcode],
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.sidetracker.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.executeSidetrackerTool(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":["sidetracker","executeSidetrackerTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { sidetracker } from \"./app\";\nimport { executeSidetrackerTool } 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 sidetracker.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 executeSidetrackerTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,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,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
@@ -0,0 +1,21 @@
1
+ import { sidetracker } from "./app.mjs";
2
+ import { executeSidetrackerTool } 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 sidetracker.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 executeSidetrackerTool(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 { sidetracker } from \"./app\";\nimport { executeSidetrackerTool } 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 sidetracker.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 executeSidetrackerTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
@@ -0,0 +1,21 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/generate-qrcode.ts
4
+ const SidetrackerGenerateQrcodeInput = zod.z.object({ url: zod.z.string().describe("The URL to encode in the QR code") }).describe("Request model for generating a QR code.");
5
+ const SidetrackerGenerateQrcodeOutput = zod.z.object({
6
+ message: zod.z.string().describe("Additional message or status information").nullable().optional(),
7
+ success: zod.z.boolean().default(true).describe("Indicates if the QR code generation was successful").nullable().optional(),
8
+ qrcode_url: zod.z.string().describe("URL to access the generated QR code image").nullable().optional(),
9
+ qrcode_data: zod.z.string().describe("Base64-encoded QR code image data").nullable().optional()
10
+ }).describe("Response model for QR code generation.");
11
+ const sidetrackerGenerateQrcode = require_action.action("SIDETRACKER_GENERATE_QRCODE", {
12
+ slug: "sidetracker-generate-qrcode",
13
+ name: "Generate QR Code",
14
+ description: "Tool to generate a QR code for a given URL. Use when you need to create trackable QR codes.",
15
+ input: SidetrackerGenerateQrcodeInput,
16
+ output: SidetrackerGenerateQrcodeOutput
17
+ });
18
+ //#endregion
19
+ exports.sidetrackerGenerateQrcode = sidetrackerGenerateQrcode;
20
+
21
+ //# sourceMappingURL=generate-qrcode.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-qrcode.cjs","names":["z","action"],"sources":["../../src/actions/generate-qrcode.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SidetrackerGenerateQrcodeInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"The URL to encode in the QR code\"),\n}).describe(\"Request model for generating a QR code.\");\nexport const SidetrackerGenerateQrcodeOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Additional message or status information\").nullable().optional(),\n success: z.boolean().default(true).describe(\"Indicates if the QR code generation was successful\").nullable().optional(),\n qrcode_url: z.string().describe(\"URL to access the generated QR code image\").nullable().optional(),\n qrcode_data: z.string().describe(\"Base64-encoded QR code image data\").nullable().optional(),\n}).describe(\"Response model for QR code generation.\");\n\nexport const sidetrackerGenerateQrcode = action(\"SIDETRACKER_GENERATE_QRCODE\", {\n slug: \"sidetracker-generate-qrcode\",\n name: \"Generate QR Code\",\n description: \"Tool to generate a QR code for a given URL. Use when you need to create trackable QR codes.\",\n input: SidetrackerGenerateQrcodeInput,\n output: SidetrackerGenerateQrcodeOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO,EACnE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC7D,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAa,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,SAAS,wCAAwC;AAEpD,MAAa,4BAA4BC,eAAAA,OAAO,+BAA+B;CAC7E,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/generate-qrcode.d.ts
4
+ declare const SidetrackerGenerateQrcodeInput: z.ZodTypeAny;
5
+ declare const SidetrackerGenerateQrcodeOutput: z.ZodTypeAny;
6
+ declare const sidetrackerGenerateQrcode: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { sidetrackerGenerateQrcode };
9
+ //# sourceMappingURL=generate-qrcode.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-qrcode.d.cts","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAEO;AAAA,cACzC,+BAAA,EAAiC,CAAA,CAAE,UAKK;AAAA,cAExC,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/generate-qrcode.d.ts
4
+ declare const SidetrackerGenerateQrcodeInput: z.ZodTypeAny;
5
+ declare const SidetrackerGenerateQrcodeOutput: z.ZodTypeAny;
6
+ declare const sidetrackerGenerateQrcode: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { sidetrackerGenerateQrcode };
9
+ //# sourceMappingURL=generate-qrcode.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-qrcode.d.mts","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAEO;AAAA,cACzC,+BAAA,EAAiC,CAAA,CAAE,UAKK;AAAA,cAExC,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,18 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const sidetrackerGenerateQrcode = action("SIDETRACKER_GENERATE_QRCODE", {
4
+ slug: "sidetracker-generate-qrcode",
5
+ name: "Generate QR Code",
6
+ description: "Tool to generate a QR code for a given URL. Use when you need to create trackable QR codes.",
7
+ input: z.object({ url: z.string().describe("The URL to encode in the QR code") }).describe("Request model for generating a QR code."),
8
+ output: z.object({
9
+ message: z.string().describe("Additional message or status information").nullable().optional(),
10
+ success: z.boolean().default(true).describe("Indicates if the QR code generation was successful").nullable().optional(),
11
+ qrcode_url: z.string().describe("URL to access the generated QR code image").nullable().optional(),
12
+ qrcode_data: z.string().describe("Base64-encoded QR code image data").nullable().optional()
13
+ }).describe("Response model for QR code generation.")
14
+ });
15
+ //#endregion
16
+ export { sidetrackerGenerateQrcode };
17
+
18
+ //# sourceMappingURL=generate-qrcode.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-qrcode.mjs","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SidetrackerGenerateQrcodeInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"The URL to encode in the QR code\"),\n}).describe(\"Request model for generating a QR code.\");\nexport const SidetrackerGenerateQrcodeOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Additional message or status information\").nullable().optional(),\n success: z.boolean().default(true).describe(\"Indicates if the QR code generation was successful\").nullable().optional(),\n qrcode_url: z.string().describe(\"URL to access the generated QR code image\").nullable().optional(),\n qrcode_data: z.string().describe(\"Base64-encoded QR code image data\").nullable().optional(),\n}).describe(\"Response model for QR code generation.\");\n\nexport const sidetrackerGenerateQrcode = action(\"SIDETRACKER_GENERATE_QRCODE\", {\n slug: \"sidetracker-generate-qrcode\",\n name: \"Generate QR Code\",\n description: \"Tool to generate a QR code for a given URL. Use when you need to create trackable QR codes.\",\n input: SidetrackerGenerateQrcodeInput,\n output: SidetrackerGenerateQrcodeOutput,\n});\n"],"mappings":";;AAcA,MAAa,4BAA4B,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd0D,EAAE,OAAO,EACnE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC7D,CAAC,CAAC,CAAC,SAAS,yCAYH;CACP,QAZ2D,EAAE,OAAO;EACpE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,CAAC,CAAC,CAAC,SAAS,wCAOF;AACV,CAAC"}
@@ -0,0 +1,33 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-list-details.ts
4
+ const SidetrackerGetListDetailsInput = zod.z.object({ list_id: zod.z.string().describe("The unique identifier of the list to retrieve") }).describe("Request model for retrieving details of a specific list.");
5
+ const SidetrackerGetListDetails_ListColumnSchema = zod.z.object({
6
+ name: zod.z.string().describe("Name of the column"),
7
+ data_type: zod.z.string().describe("Data type of the column"),
8
+ unique_id: zod.z.string().describe("Unique identifier of the column"),
9
+ created_at: zod.z.string().describe("Timestamp when the column was created (ISO 8601 format)"),
10
+ sort_order: zod.z.number().int().describe("Sort order of the column"),
11
+ updated_at: zod.z.string().describe("Timestamp when the column was last updated (ISO 8601 format)")
12
+ }).describe("A column definition within a list.");
13
+ const SidetrackerGetListDetailsOutput = zod.z.object({
14
+ id: zod.z.union([zod.z.number().int(), zod.z.string()]),
15
+ name: zod.z.string().describe("Name of the list"),
16
+ preset: zod.z.string().describe("Preset type of the list (e.g., 'tracking')").nullable().optional(),
17
+ columns: zod.z.array(SidetrackerGetListDetails_ListColumnSchema).describe("Array of column definitions in the list"),
18
+ unique_id: zod.z.string().describe("Unique string identifier of the list"),
19
+ created_at: zod.z.string().describe("Timestamp when the list was created (ISO 8601 format)"),
20
+ updated_at: zod.z.string().describe("Timestamp when the list was last updated (ISO 8601 format)"),
21
+ description: zod.z.string().describe("Description of the list").nullable().optional()
22
+ }).describe("Response model containing detailed information about a list.");
23
+ const sidetrackerGetListDetails = require_action.action("SIDETRACKER_GET_LIST_DETAILS", {
24
+ slug: "sidetracker-get-list-details",
25
+ name: "Get List Details",
26
+ description: "Tool to retrieve details of a specific list by its ID. Use after confirming the list ID is correct.",
27
+ input: SidetrackerGetListDetailsInput,
28
+ output: SidetrackerGetListDetailsOutput
29
+ });
30
+ //#endregion
31
+ exports.sidetrackerGetListDetails = sidetrackerGetListDetails;
32
+
33
+ //# sourceMappingURL=get-list-details.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-list-details.cjs","names":["z","action"],"sources":["../../src/actions/get-list-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SidetrackerGetListDetailsInput: z.ZodTypeAny = z.object({\n list_id: z.string().describe(\"The unique identifier of the list to retrieve\"),\n}).describe(\"Request model for retrieving details of a specific list.\");\nconst SidetrackerGetListDetails_ListColumnSchema: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the column\"),\n data_type: z.string().describe(\"Data type of the column\"),\n unique_id: z.string().describe(\"Unique identifier of the column\"),\n created_at: z.string().describe(\"Timestamp when the column was created (ISO 8601 format)\"),\n sort_order: z.number().int().describe(\"Sort order of the column\"),\n updated_at: z.string().describe(\"Timestamp when the column was last updated (ISO 8601 format)\"),\n}).describe(\"A column definition within a list.\");\nexport const SidetrackerGetListDetailsOutput: z.ZodTypeAny = z.object({\n id: z.union([z.number().int(), z.string()]),\n name: z.string().describe(\"Name of the list\"),\n preset: z.string().describe(\"Preset type of the list (e.g., 'tracking')\").nullable().optional(),\n columns: z.array(SidetrackerGetListDetails_ListColumnSchema).describe(\"Array of column definitions in the list\"),\n unique_id: z.string().describe(\"Unique string identifier of the list\"),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\"),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\"),\n description: z.string().describe(\"Description of the list\").nullable().optional(),\n}).describe(\"Response model containing detailed information about a list.\");\n\nexport const sidetrackerGetListDetails = action(\"SIDETRACKER_GET_LIST_DETAILS\", {\n slug: \"sidetracker-get-list-details\",\n name: \"Get List Details\",\n description: \"Tool to retrieve details of a specific list by its ID. Use after confirming the list ID is correct.\",\n input: SidetrackerGetListDetailsInput,\n output: SidetrackerGetListDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+CA,IAAAA,EAAE,OAAO,EACnE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,EAC9E,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,6CAA2DA,IAAAA,EAAE,OAAO;CACxE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC9C,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACxD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CAChE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD;CACzF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;CAChE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;AAChG,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAa,kCAAgDA,IAAAA,EAAE,OAAO;CACpE,IAAIA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC;CAC1C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,SAASA,IAAAA,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,yCAAyC;CAC/G,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CACrE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACvF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;CAC5F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClF,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAE1E,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,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-list-details.d.ts
4
+ declare const SidetrackerGetListDetailsInput: z.ZodTypeAny;
5
+ declare const SidetrackerGetListDetailsOutput: z.ZodTypeAny;
6
+ declare const sidetrackerGetListDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { sidetrackerGetListDetails };
9
+ //# sourceMappingURL=get-list-details.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-list-details.d.cts","names":[],"sources":["../../src/actions/get-list-details.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAEwB;AAAA,cAS1D,+BAAA,EAAiC,CAAA,CAAE,UAS2B;AAAA,cAE9D,yBAAA,gCAAyB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-list-details.d.ts
4
+ declare const SidetrackerGetListDetailsInput: z.ZodTypeAny;
5
+ declare const SidetrackerGetListDetailsOutput: z.ZodTypeAny;
6
+ declare const sidetrackerGetListDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { sidetrackerGetListDetails };
9
+ //# sourceMappingURL=get-list-details.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-list-details.d.mts","names":[],"sources":["../../src/actions/get-list-details.ts"],"mappings":";;;cAIa,8BAAA,EAAgC,CAAA,CAAE,UAEwB;AAAA,cAS1D,+BAAA,EAAiC,CAAA,CAAE,UAS2B;AAAA,cAE9D,yBAAA,gCAAyB,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/get-list-details.ts
4
+ const SidetrackerGetListDetailsInput = z.object({ list_id: z.string().describe("The unique identifier of the list to retrieve") }).describe("Request model for retrieving details of a specific list.");
5
+ const SidetrackerGetListDetails_ListColumnSchema = z.object({
6
+ name: z.string().describe("Name of the column"),
7
+ data_type: z.string().describe("Data type of the column"),
8
+ unique_id: z.string().describe("Unique identifier of the column"),
9
+ created_at: z.string().describe("Timestamp when the column was created (ISO 8601 format)"),
10
+ sort_order: z.number().int().describe("Sort order of the column"),
11
+ updated_at: z.string().describe("Timestamp when the column was last updated (ISO 8601 format)")
12
+ }).describe("A column definition within a list.");
13
+ const sidetrackerGetListDetails = action("SIDETRACKER_GET_LIST_DETAILS", {
14
+ slug: "sidetracker-get-list-details",
15
+ name: "Get List Details",
16
+ description: "Tool to retrieve details of a specific list by its ID. Use after confirming the list ID is correct.",
17
+ input: SidetrackerGetListDetailsInput,
18
+ output: z.object({
19
+ id: z.union([z.number().int(), z.string()]),
20
+ name: z.string().describe("Name of the list"),
21
+ preset: z.string().describe("Preset type of the list (e.g., 'tracking')").nullable().optional(),
22
+ columns: z.array(SidetrackerGetListDetails_ListColumnSchema).describe("Array of column definitions in the list"),
23
+ unique_id: z.string().describe("Unique string identifier of the list"),
24
+ created_at: z.string().describe("Timestamp when the list was created (ISO 8601 format)"),
25
+ updated_at: z.string().describe("Timestamp when the list was last updated (ISO 8601 format)"),
26
+ description: z.string().describe("Description of the list").nullable().optional()
27
+ }).describe("Response model containing detailed information about a list.")
28
+ });
29
+ //#endregion
30
+ export { sidetrackerGetListDetails };
31
+
32
+ //# sourceMappingURL=get-list-details.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-list-details.mjs","names":[],"sources":["../../src/actions/get-list-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SidetrackerGetListDetailsInput: z.ZodTypeAny = z.object({\n list_id: z.string().describe(\"The unique identifier of the list to retrieve\"),\n}).describe(\"Request model for retrieving details of a specific list.\");\nconst SidetrackerGetListDetails_ListColumnSchema: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the column\"),\n data_type: z.string().describe(\"Data type of the column\"),\n unique_id: z.string().describe(\"Unique identifier of the column\"),\n created_at: z.string().describe(\"Timestamp when the column was created (ISO 8601 format)\"),\n sort_order: z.number().int().describe(\"Sort order of the column\"),\n updated_at: z.string().describe(\"Timestamp when the column was last updated (ISO 8601 format)\"),\n}).describe(\"A column definition within a list.\");\nexport const SidetrackerGetListDetailsOutput: z.ZodTypeAny = z.object({\n id: z.union([z.number().int(), z.string()]),\n name: z.string().describe(\"Name of the list\"),\n preset: z.string().describe(\"Preset type of the list (e.g., 'tracking')\").nullable().optional(),\n columns: z.array(SidetrackerGetListDetails_ListColumnSchema).describe(\"Array of column definitions in the list\"),\n unique_id: z.string().describe(\"Unique string identifier of the list\"),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\"),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\"),\n description: z.string().describe(\"Description of the list\").nullable().optional(),\n}).describe(\"Response model containing detailed information about a list.\");\n\nexport const sidetrackerGetListDetails = action(\"SIDETRACKER_GET_LIST_DETAILS\", {\n slug: \"sidetracker-get-list-details\",\n name: \"Get List Details\",\n description: \"Tool to retrieve details of a specific list by its ID. Use after confirming the list ID is correct.\",\n input: SidetrackerGetListDetailsInput,\n output: SidetrackerGetListDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAA+C,EAAE,OAAO,EACnE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,EAC9E,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,6CAA2D,EAAE,OAAO;CACxE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC9C,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACxD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD;CACzF,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;CAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;AAChG,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAYhD,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAhB2D,EAAE,OAAO;EACpE,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC;EAC1C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;EAC5C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,SAAS,EAAE,MAAM,0CAA0C,CAAC,CAAC,SAAS,yCAAyC;EAC/G,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;EACrE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;EACvF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;EAC5F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,CAAC,CAAC,CAAC,SAAS,8DAOF;AACV,CAAC"}
@@ -0,0 +1,25 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-lists.ts
4
+ const SidetrackerGetListsInput = zod.z.object({
5
+ page: zod.z.number().int().default(1).describe("Page number for pagination").optional(),
6
+ page_size: zod.z.number().int().default(1).describe("Number of lists to retrieve per page").optional()
7
+ }).describe("Request model for retrieving paginated lists of lists.");
8
+ const SidetrackerGetLists_ListItemSchema = zod.z.object({
9
+ id: zod.z.string().describe("Unique identifier for the list"),
10
+ name: zod.z.string().describe("Name of the list"),
11
+ created_at: zod.z.string().describe("Timestamp when the list was created (ISO 8601 format)"),
12
+ updated_at: zod.z.string().describe("Timestamp when the list was last updated (ISO 8601 format)")
13
+ }).describe("Individual list item in the collection of lists.");
14
+ const SidetrackerGetListsOutput = zod.z.object({ lists: zod.z.array(SidetrackerGetLists_ListItemSchema).describe("Collection of list items retrieved") }).describe("Response model containing a list of lists.");
15
+ const sidetrackerGetLists = require_action.action("SIDETRACKER_GET_LISTS", {
16
+ slug: "sidetracker-get-lists",
17
+ name: "Get Lists",
18
+ description: "Tool to retrieve lists from Sidetracker. Use when you need to paginate through available lists.",
19
+ input: SidetrackerGetListsInput,
20
+ output: SidetrackerGetListsOutput
21
+ });
22
+ //#endregion
23
+ exports.sidetrackerGetLists = sidetrackerGetLists;
24
+
25
+ //# sourceMappingURL=get-lists.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-lists.cjs","names":["z","action"],"sources":["../../src/actions/get-lists.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SidetrackerGetListsInput: z.ZodTypeAny = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination\").optional(),\n page_size: z.number().int().default(1).describe(\"Number of lists to retrieve per page\").optional(),\n}).describe(\"Request model for retrieving paginated lists of lists.\");\nconst SidetrackerGetLists_ListItemSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the list\"),\n name: z.string().describe(\"Name of the list\"),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\"),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\"),\n}).describe(\"Individual list item in the collection of lists.\");\nexport const SidetrackerGetListsOutput: z.ZodTypeAny = z.object({\n lists: z.array(SidetrackerGetLists_ListItemSchema).describe(\"Collection of list items retrieved\"),\n}).describe(\"Response model containing a list of lists.\");\n\nexport const sidetrackerGetLists = action(\"SIDETRACKER_GET_LISTS\", {\n slug: \"sidetracker-get-lists\",\n name: \"Get Lists\",\n description: \"Tool to retrieve lists from Sidetracker. Use when you need to paginate through available lists.\",\n input: SidetrackerGetListsInput,\n output: SidetrackerGetListsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CAClF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,qCAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACvF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;AAC9F,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,4BAA0CA,IAAAA,EAAE,OAAO,EAC9D,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,oCAAoC,EAClG,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAExD,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,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-lists.d.ts
4
+ declare const SidetrackerGetListsInput: z.ZodTypeAny;
5
+ declare const SidetrackerGetListsOutput: z.ZodTypeAny;
6
+ declare const sidetrackerGetLists: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { sidetrackerGetLists };
9
+ //# sourceMappingURL=get-lists.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-lists.d.cts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAG4B;AAAA,cAOxD,yBAAA,EAA2B,CAAA,CAAE,UAEe;AAAA,cAE5C,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-lists.d.ts
4
+ declare const SidetrackerGetListsInput: z.ZodTypeAny;
5
+ declare const SidetrackerGetListsOutput: z.ZodTypeAny;
6
+ declare const sidetrackerGetLists: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { sidetrackerGetLists };
9
+ //# sourceMappingURL=get-lists.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-lists.d.mts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAG4B;AAAA,cAOxD,yBAAA,EAA2B,CAAA,CAAE,UAEe;AAAA,cAE5C,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,24 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-lists.ts
4
+ const SidetrackerGetListsInput = z.object({
5
+ page: z.number().int().default(1).describe("Page number for pagination").optional(),
6
+ page_size: z.number().int().default(1).describe("Number of lists to retrieve per page").optional()
7
+ }).describe("Request model for retrieving paginated lists of lists.");
8
+ const SidetrackerGetLists_ListItemSchema = z.object({
9
+ id: z.string().describe("Unique identifier for the list"),
10
+ name: z.string().describe("Name of the list"),
11
+ created_at: z.string().describe("Timestamp when the list was created (ISO 8601 format)"),
12
+ updated_at: z.string().describe("Timestamp when the list was last updated (ISO 8601 format)")
13
+ }).describe("Individual list item in the collection of lists.");
14
+ const sidetrackerGetLists = action("SIDETRACKER_GET_LISTS", {
15
+ slug: "sidetracker-get-lists",
16
+ name: "Get Lists",
17
+ description: "Tool to retrieve lists from Sidetracker. Use when you need to paginate through available lists.",
18
+ input: SidetrackerGetListsInput,
19
+ output: z.object({ lists: z.array(SidetrackerGetLists_ListItemSchema).describe("Collection of list items retrieved") }).describe("Response model containing a list of lists.")
20
+ });
21
+ //#endregion
22
+ export { sidetrackerGetLists };
23
+
24
+ //# sourceMappingURL=get-lists.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-lists.mjs","names":[],"sources":["../../src/actions/get-lists.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SidetrackerGetListsInput: z.ZodTypeAny = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination\").optional(),\n page_size: z.number().int().default(1).describe(\"Number of lists to retrieve per page\").optional(),\n}).describe(\"Request model for retrieving paginated lists of lists.\");\nconst SidetrackerGetLists_ListItemSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the list\"),\n name: z.string().describe(\"Name of the list\"),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\"),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\"),\n}).describe(\"Individual list item in the collection of lists.\");\nexport const SidetrackerGetListsOutput: z.ZodTypeAny = z.object({\n lists: z.array(SidetrackerGetLists_ListItemSchema).describe(\"Collection of list items retrieved\"),\n}).describe(\"Response model containing a list of lists.\");\n\nexport const sidetrackerGetLists = action(\"SIDETRACKER_GET_LISTS\", {\n slug: \"sidetracker-get-lists\",\n name: \"Get Lists\",\n description: \"Tool to retrieve lists from Sidetracker. Use when you need to paginate through available lists.\",\n input: SidetrackerGetListsInput,\n output: SidetrackerGetListsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyC,EAAE,OAAO;CAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CAClF,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,qCAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC5C,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACvF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;AAC9F,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAK9D,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATqD,EAAE,OAAO,EAC9D,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,oCAAoC,EAClG,CAAC,CAAC,CAAC,SAAS,4CAOF;AACV,CAAC"}
@@ -0,0 +1,7 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_generate_qrcode = require("./generate-qrcode.cjs");
3
+ const require_get_list_details = require("./get-list-details.cjs");
4
+ const require_get_lists = require("./get-lists.cjs");
5
+ exports.sidetrackerGenerateQrcode = require_generate_qrcode.sidetrackerGenerateQrcode;
6
+ exports.sidetrackerGetListDetails = require_get_list_details.sidetrackerGetListDetails;
7
+ exports.sidetrackerGetLists = require_get_lists.sidetrackerGetLists;
@@ -0,0 +1,4 @@
1
+ import { sidetrackerGenerateQrcode } from "./generate-qrcode.cjs";
2
+ import { sidetrackerGetListDetails } from "./get-list-details.cjs";
3
+ import { sidetrackerGetLists } from "./get-lists.cjs";
4
+ export { sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
@@ -0,0 +1,4 @@
1
+ import { sidetrackerGenerateQrcode } from "./generate-qrcode.mjs";
2
+ import { sidetrackerGetListDetails } from "./get-list-details.mjs";
3
+ import { sidetrackerGetLists } from "./get-lists.mjs";
4
+ export { sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
@@ -0,0 +1,4 @@
1
+ import { sidetrackerGenerateQrcode } from "./generate-qrcode.mjs";
2
+ import { sidetrackerGetListDetails } from "./get-list-details.mjs";
3
+ import { sidetrackerGetLists } from "./get-lists.mjs";
4
+ export { sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const sidetracker = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "sidetracker",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.sidetracker = sidetracker;
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 sidetracker = defineApp({\n slug: \"sidetracker\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,eAAA,uCAAA,CAAA,CAAA,UAAA,CAAwB;CACnC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const sidetracker: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { sidetracker };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const sidetracker: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { sidetracker };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,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 sidetracker = defineApp({
4
+ slug: "sidetracker",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { sidetracker };
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 sidetracker = defineApp({\n slug: \"sidetracker\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,cAAc,UAAU;CACnC,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 sidetrackerCatalog = {
4
+ "slug": "sidetracker",
5
+ "name": "Sidetracker",
6
+ "description": "Sidetracker is a cookie-free web analytics platform that tracks website visitors, sales funnels, and customer journeys. It provides real-time session tracking, lead management, conversion tracking, and marketing campaign analytics without relying on cookies.",
7
+ "category": "Analytics",
8
+ "logo": "https://logos.composio.dev/api/sidetracker",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.sidetrackerCatalog = sidetrackerCatalog;
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 sidetrackerCatalog = {\n \"slug\": \"sidetracker\",\n \"name\": \"Sidetracker\",\n \"description\": \"Sidetracker is a cookie-free web analytics platform that tracks website visitors, sales funnels, and customer journeys. It provides real-time session tracking, lead management, conversion tracking, and marketing campaign analytics without relying on cookies.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/sidetracker\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 sidetrackerCatalog: {
4
+ readonly slug: "sidetracker";
5
+ readonly name: "Sidetracker";
6
+ readonly description: "Sidetracker is a cookie-free web analytics platform that tracks website visitors, sales funnels, and customer journeys. It provides real-time session tracking, lead management, conversion tracking, and marketing campaign analytics without relying on cookies.";
7
+ readonly category: "Analytics";
8
+ readonly logo: "https://logos.composio.dev/api/sidetracker";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { sidetrackerCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const sidetrackerCatalog: {
4
+ readonly slug: "sidetracker";
5
+ readonly name: "Sidetracker";
6
+ readonly description: "Sidetracker is a cookie-free web analytics platform that tracks website visitors, sales funnels, and customer journeys. It provides real-time session tracking, lead management, conversion tracking, and marketing campaign analytics without relying on cookies.";
7
+ readonly category: "Analytics";
8
+ readonly logo: "https://logos.composio.dev/api/sidetracker";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { sidetrackerCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const sidetrackerCatalog = {
4
+ "slug": "sidetracker",
5
+ "name": "Sidetracker",
6
+ "description": "Sidetracker is a cookie-free web analytics platform that tracks website visitors, sales funnels, and customer journeys. It provides real-time session tracking, lead management, conversion tracking, and marketing campaign analytics without relying on cookies.",
7
+ "category": "Analytics",
8
+ "logo": "https://logos.composio.dev/api/sidetracker",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { sidetrackerCatalog };
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 sidetrackerCatalog = {\n \"slug\": \"sidetracker\",\n \"name\": \"Sidetracker\",\n \"description\": \"Sidetracker is a cookie-free web analytics platform that tracks website visitors, sales funnels, and customer journeys. It provides real-time session tracking, lead management, conversion tracking, and marketing campaign analytics without relying on cookies.\",\n \"category\": \"Analytics\",\n \"logo\": \"https://logos.composio.dev/api/sidetracker\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 = "sidetracker";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeSidetrackerTool(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.executeSidetrackerTool = executeSidetrackerTool;
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 = \"sidetracker\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSidetrackerTool(\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,uBACpB,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 = "sidetracker";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeSidetrackerTool(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 { executeSidetrackerTool };
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 = \"sidetracker\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSidetrackerTool(\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,uBACpB,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,12 @@
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_generate_qrcode = require("./actions/generate-qrcode.cjs");
5
+ const require_get_list_details = require("./actions/get-list-details.cjs");
6
+ const require_get_lists = require("./actions/get-lists.cjs");
7
+ require("./actions/index.cjs");
8
+ exports.sidetracker = require_app.sidetracker;
9
+ exports.sidetrackerCatalog = require_catalog.sidetrackerCatalog;
10
+ exports.sidetrackerGenerateQrcode = require_generate_qrcode.sidetrackerGenerateQrcode;
11
+ exports.sidetrackerGetListDetails = require_get_list_details.sidetrackerGetListDetails;
12
+ exports.sidetrackerGetLists = require_get_lists.sidetrackerGetLists;
@@ -0,0 +1,6 @@
1
+ import { sidetrackerGenerateQrcode } from "./actions/generate-qrcode.cjs";
2
+ import { sidetrackerGetListDetails } from "./actions/get-list-details.cjs";
3
+ import { sidetrackerGetLists } from "./actions/get-lists.cjs";
4
+ import { sidetracker } from "./app.cjs";
5
+ import { sidetrackerCatalog } from "./catalog.cjs";
6
+ export { sidetracker, sidetrackerCatalog, sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
@@ -0,0 +1,6 @@
1
+ import { sidetrackerGenerateQrcode } from "./actions/generate-qrcode.mjs";
2
+ import { sidetrackerGetListDetails } from "./actions/get-list-details.mjs";
3
+ import { sidetrackerGetLists } from "./actions/get-lists.mjs";
4
+ import { sidetracker } from "./app.mjs";
5
+ import { sidetrackerCatalog } from "./catalog.mjs";
6
+ export { sidetracker, sidetrackerCatalog, sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ import { sidetracker } from "./app.mjs";
2
+ import { sidetrackerCatalog } from "./catalog.mjs";
3
+ import { sidetrackerGenerateQrcode } from "./actions/generate-qrcode.mjs";
4
+ import { sidetrackerGetListDetails } from "./actions/get-list-details.mjs";
5
+ import { sidetrackerGetLists } from "./actions/get-lists.mjs";
6
+ import "./actions/index.mjs";
7
+ export { sidetracker, sidetrackerCatalog, sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@keystrokehq/sidetracker",
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/sidetracker"
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
+ }