@keystrokehq/sidetracker 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.
@@ -1 +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"}
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<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 sidetracker.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 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"}
@@ -1 +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"}
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<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 sidetracker.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 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"}
@@ -1 +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"}
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.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.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,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC7D,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,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"}
@@ -1,9 +1,18 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SidetrackerGenerateQrcodeInput: z.ZodObject<{
5
+ url: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SidetrackerGenerateQrcodeOutput: z.ZodObject<{
8
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
+ success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
10
+ qrcode_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ qrcode_data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ }, z.core.$strip>;
13
+ declare const sidetrackerGenerateQrcode: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ url: string;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
16
  //#endregion
8
17
  export { sidetrackerGenerateQrcode };
9
18
  //# sourceMappingURL=generate-qrcode.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"generate-qrcode.d.cts","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,gCAAyB,wBAAA"}
@@ -1,9 +1,18 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SidetrackerGenerateQrcodeInput: z.ZodObject<{
5
+ url: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SidetrackerGenerateQrcodeOutput: z.ZodObject<{
8
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
+ success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
10
+ qrcode_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ qrcode_data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ }, z.core.$strip>;
13
+ declare const sidetrackerGenerateQrcode: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ url: string;
15
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
16
  //#endregion
8
17
  export { sidetrackerGenerateQrcode };
9
18
  //# sourceMappingURL=generate-qrcode.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"generate-qrcode.d.mts","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,gCAAyB,wBAAA"}
@@ -1 +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"}
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.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.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,OAd4C,EAAE,OAAO,EACrD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC7D,CAAC,CAAC,CAAC,SAAS,yCAYH;CACP,QAZ6C,EAAE,OAAO;EACtD,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"}
@@ -3,21 +3,21 @@ let zod = require("zod");
3
3
  //#region src/actions/get-list-details.ts
4
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
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)")
6
+ name: zod.z.string().describe("Name of the column").nullable(),
7
+ data_type: zod.z.string().describe("Data type of the column").nullable(),
8
+ unique_id: zod.z.string().describe("Unique identifier of the column").nullable(),
9
+ created_at: zod.z.string().describe("Timestamp when the column was created (ISO 8601 format)").nullable(),
10
+ sort_order: zod.z.number().int().describe("Sort order of the column").nullable(),
11
+ updated_at: zod.z.string().describe("Timestamp when the column was last updated (ISO 8601 format)").nullable()
12
12
  }).describe("A column definition within a list.");
13
13
  const SidetrackerGetListDetailsOutput = zod.z.object({
14
14
  id: zod.z.union([zod.z.number().int(), zod.z.string()]),
15
- name: zod.z.string().describe("Name of the list"),
15
+ name: zod.z.string().describe("Name of the list").nullable(),
16
16
  preset: zod.z.string().describe("Preset type of the list (e.g., 'tracking')").nullable().optional(),
17
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)"),
18
+ unique_id: zod.z.string().describe("Unique string identifier of the list").nullable(),
19
+ created_at: zod.z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
20
+ updated_at: zod.z.string().describe("Timestamp when the list was last updated (ISO 8601 format)").nullable(),
21
21
  description: zod.z.string().describe("Description of the list").nullable().optional()
22
22
  }).describe("Response model containing detailed information about a list.");
23
23
  const sidetrackerGetListDetails = require_action.action("SIDETRACKER_GET_LIST_DETAILS", {
@@ -1 +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"}
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.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.object({\n name: z.string().describe(\"Name of the column\").nullable(),\n data_type: z.string().describe(\"Data type of the column\").nullable(),\n unique_id: z.string().describe(\"Unique identifier of the column\").nullable(),\n created_at: z.string().describe(\"Timestamp when the column was created (ISO 8601 format)\").nullable(),\n sort_order: z.number().int().describe(\"Sort order of the column\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the column was last updated (ISO 8601 format)\").nullable(),\n}).describe(\"A column definition within a list.\");\nexport const SidetrackerGetListDetailsOutput = z.object({\n id: z.union([z.number().int(), z.string()]),\n name: z.string().describe(\"Name of the list\").nullable(),\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\").nullable(),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\").nullable(),\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,iCAAiCA,IAAAA,EAAE,OAAO,EACrD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,EAC9E,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,6CAA6CA,IAAAA,EAAE,OAAO;CAC1D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACzD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CACnE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC3E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACpG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC3E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,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,CAAC,CAAC,SAAS;CACvD,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,CAAC,CAAC,SAAS;CAChF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACvG,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"}
@@ -1,9 +1,29 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SidetrackerGetListDetailsInput: z.ZodObject<{
5
+ list_id: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SidetrackerGetListDetailsOutput: z.ZodObject<{
8
+ id: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
9
+ name: z.ZodNullable<z.ZodString>;
10
+ preset: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ columns: z.ZodArray<z.ZodObject<{
12
+ name: z.ZodNullable<z.ZodString>;
13
+ data_type: z.ZodNullable<z.ZodString>;
14
+ unique_id: z.ZodNullable<z.ZodString>;
15
+ created_at: z.ZodNullable<z.ZodString>;
16
+ sort_order: z.ZodNullable<z.ZodNumber>;
17
+ updated_at: z.ZodNullable<z.ZodString>;
18
+ }, z.core.$strip>>;
19
+ unique_id: z.ZodNullable<z.ZodString>;
20
+ created_at: z.ZodNullable<z.ZodString>;
21
+ updated_at: z.ZodNullable<z.ZodString>;
22
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
+ }, z.core.$strip>;
24
+ declare const sidetrackerGetListDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
25
+ list_id: string;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
27
  //#endregion
8
28
  export { sidetrackerGetListDetails };
9
29
  //# sourceMappingURL=get-list-details.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"get-list-details.d.cts","names":[],"sources":["../../src/actions/get-list-details.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAW9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAW/B,yBAAA,gCAAyB,wBAAA"}
@@ -1,9 +1,29 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SidetrackerGetListDetailsInput: z.ZodObject<{
5
+ list_id: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SidetrackerGetListDetailsOutput: z.ZodObject<{
8
+ id: z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>;
9
+ name: z.ZodNullable<z.ZodString>;
10
+ preset: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ columns: z.ZodArray<z.ZodObject<{
12
+ name: z.ZodNullable<z.ZodString>;
13
+ data_type: z.ZodNullable<z.ZodString>;
14
+ unique_id: z.ZodNullable<z.ZodString>;
15
+ created_at: z.ZodNullable<z.ZodString>;
16
+ sort_order: z.ZodNullable<z.ZodNumber>;
17
+ updated_at: z.ZodNullable<z.ZodString>;
18
+ }, z.core.$strip>>;
19
+ unique_id: z.ZodNullable<z.ZodString>;
20
+ created_at: z.ZodNullable<z.ZodString>;
21
+ updated_at: z.ZodNullable<z.ZodString>;
22
+ description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
+ }, z.core.$strip>;
24
+ declare const sidetrackerGetListDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
25
+ list_id: string;
26
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
27
  //#endregion
8
28
  export { sidetrackerGetListDetails };
9
29
  //# sourceMappingURL=get-list-details.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"get-list-details.d.mts","names":[],"sources":["../../src/actions/get-list-details.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAW9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAW/B,yBAAA,gCAAyB,wBAAA"}
@@ -3,12 +3,12 @@ import { z } from "zod";
3
3
  //#region src/actions/get-list-details.ts
4
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
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)")
6
+ name: z.string().describe("Name of the column").nullable(),
7
+ data_type: z.string().describe("Data type of the column").nullable(),
8
+ unique_id: z.string().describe("Unique identifier of the column").nullable(),
9
+ created_at: z.string().describe("Timestamp when the column was created (ISO 8601 format)").nullable(),
10
+ sort_order: z.number().int().describe("Sort order of the column").nullable(),
11
+ updated_at: z.string().describe("Timestamp when the column was last updated (ISO 8601 format)").nullable()
12
12
  }).describe("A column definition within a list.");
13
13
  const sidetrackerGetListDetails = action("SIDETRACKER_GET_LIST_DETAILS", {
14
14
  slug: "sidetracker-get-list-details",
@@ -17,12 +17,12 @@ const sidetrackerGetListDetails = action("SIDETRACKER_GET_LIST_DETAILS", {
17
17
  input: SidetrackerGetListDetailsInput,
18
18
  output: z.object({
19
19
  id: z.union([z.number().int(), z.string()]),
20
- name: z.string().describe("Name of the list"),
20
+ name: z.string().describe("Name of the list").nullable(),
21
21
  preset: z.string().describe("Preset type of the list (e.g., 'tracking')").nullable().optional(),
22
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)"),
23
+ unique_id: z.string().describe("Unique string identifier of the list").nullable(),
24
+ created_at: z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
25
+ updated_at: z.string().describe("Timestamp when the list was last updated (ISO 8601 format)").nullable(),
26
26
  description: z.string().describe("Description of the list").nullable().optional()
27
27
  }).describe("Response model containing detailed information about a list.")
28
28
  });
@@ -1 +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"}
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.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.object({\n name: z.string().describe(\"Name of the column\").nullable(),\n data_type: z.string().describe(\"Data type of the column\").nullable(),\n unique_id: z.string().describe(\"Unique identifier of the column\").nullable(),\n created_at: z.string().describe(\"Timestamp when the column was created (ISO 8601 format)\").nullable(),\n sort_order: z.number().int().describe(\"Sort order of the column\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the column was last updated (ISO 8601 format)\").nullable(),\n}).describe(\"A column definition within a list.\");\nexport const SidetrackerGetListDetailsOutput = z.object({\n id: z.union([z.number().int(), z.string()]),\n name: z.string().describe(\"Name of the list\").nullable(),\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\").nullable(),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\").nullable(),\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,iCAAiC,EAAE,OAAO,EACrD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,EAC9E,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,6CAA6C,EAAE,OAAO;CAC1D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACzD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CACnE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC3E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACpG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC3E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAYhD,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAhB6C,EAAE,OAAO;EACtD,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC;EAC1C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;EACvD,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,CAAC,CAAC,SAAS;EAChF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;EAClG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;EACvG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,CAAC,CAAC,CAAC,SAAS,8DAOF;AACV,CAAC"}
@@ -6,10 +6,10 @@ const SidetrackerGetListsInput = zod.z.object({
6
6
  page_size: zod.z.number().int().default(1).describe("Number of lists to retrieve per page").optional()
7
7
  }).describe("Request model for retrieving paginated lists of lists.");
8
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)")
9
+ id: zod.z.string().describe("Unique identifier for the list").nullable(),
10
+ name: zod.z.string().describe("Name of the list").nullable(),
11
+ created_at: zod.z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
12
+ updated_at: zod.z.string().describe("Timestamp when the list was last updated (ISO 8601 format)").nullable()
13
13
  }).describe("Individual list item in the collection of lists.");
14
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
15
  const sidetrackerGetLists = require_action.action("SIDETRACKER_GET_LISTS", {
@@ -1 +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"}
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.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.object({\n id: z.string().describe(\"Unique identifier for the list\").nullable(),\n name: z.string().describe(\"Name of the list\").nullable(),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\").nullable(),\n}).describe(\"Individual list item in the collection of lists.\");\nexport const SidetrackerGetListsOutput = 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,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,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,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;AACzG,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,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"}
@@ -1,9 +1,22 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SidetrackerGetListsInput: z.ZodObject<{
5
+ page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
6
+ page_size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
7
+ }, z.core.$strip>;
8
+ declare const SidetrackerGetListsOutput: z.ZodObject<{
9
+ lists: z.ZodArray<z.ZodObject<{
10
+ id: z.ZodNullable<z.ZodString>;
11
+ name: z.ZodNullable<z.ZodString>;
12
+ created_at: z.ZodNullable<z.ZodString>;
13
+ updated_at: z.ZodNullable<z.ZodString>;
14
+ }, z.core.$strip>>;
15
+ }, z.core.$strip>;
16
+ declare const sidetrackerGetLists: import("@keystrokehq/action").WorkflowActionDefinition<{
17
+ page?: number | undefined;
18
+ page_size?: number | undefined;
19
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
20
  //#endregion
8
21
  export { sidetrackerGetLists };
9
22
  //# sourceMappingURL=get-lists.d.cts.map
@@ -1 +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"}
1
+ {"version":3,"file":"get-lists.d.cts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAUxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA"}
@@ -1,9 +1,22 @@
1
1
  import { z } from "zod";
2
2
 
3
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]>;
4
+ declare const SidetrackerGetListsInput: z.ZodObject<{
5
+ page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
6
+ page_size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
7
+ }, z.core.$strip>;
8
+ declare const SidetrackerGetListsOutput: z.ZodObject<{
9
+ lists: z.ZodArray<z.ZodObject<{
10
+ id: z.ZodNullable<z.ZodString>;
11
+ name: z.ZodNullable<z.ZodString>;
12
+ created_at: z.ZodNullable<z.ZodString>;
13
+ updated_at: z.ZodNullable<z.ZodString>;
14
+ }, z.core.$strip>>;
15
+ }, z.core.$strip>;
16
+ declare const sidetrackerGetLists: import("@keystrokehq/action").WorkflowActionDefinition<{
17
+ page?: number | undefined;
18
+ page_size?: number | undefined;
19
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
20
  //#endregion
8
21
  export { sidetrackerGetLists };
9
22
  //# sourceMappingURL=get-lists.d.mts.map
@@ -1 +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"}
1
+ {"version":3,"file":"get-lists.d.mts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAUxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA"}
@@ -6,10 +6,10 @@ const SidetrackerGetListsInput = z.object({
6
6
  page_size: z.number().int().default(1).describe("Number of lists to retrieve per page").optional()
7
7
  }).describe("Request model for retrieving paginated lists of lists.");
8
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)")
9
+ id: z.string().describe("Unique identifier for the list").nullable(),
10
+ name: z.string().describe("Name of the list").nullable(),
11
+ created_at: z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
12
+ updated_at: z.string().describe("Timestamp when the list was last updated (ISO 8601 format)").nullable()
13
13
  }).describe("Individual list item in the collection of lists.");
14
14
  const sidetrackerGetLists = action("SIDETRACKER_GET_LISTS", {
15
15
  slug: "sidetracker-get-lists",
@@ -1 +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"}
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.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.object({\n id: z.string().describe(\"Unique identifier for the list\").nullable(),\n name: z.string().describe(\"Name of the list\").nullable(),\n created_at: z.string().describe(\"Timestamp when the list was created (ISO 8601 format)\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the list was last updated (ISO 8601 format)\").nullable(),\n}).describe(\"Individual list item in the collection of lists.\");\nexport const SidetrackerGetListsOutput = 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,2BAA2B,EAAE,OAAO;CAC/C,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,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS;CAClG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;AACzG,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAK9D,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,oCAAoC,EAClG,CAAC,CAAC,CAAC,SAAS,4CAOF;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,13 @@ const sidetrackerCatalog = {
7
7
  "category": "Analytics",
8
8
  "logo": "https://logos.composio.dev/api/sidetracker",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "Sidetracker API Key",
13
+ "secret": true,
14
+ "description": "Your Sidetracker API key used for authentication."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  exports.sidetrackerCatalog = sidetrackerCatalog;
@@ -1 +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"}
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 \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Sidetracker API Key\",\n \"secret\": true,\n \"description\": \"Your Sidetracker API key used for authentication.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,14 @@ declare const sidetrackerCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/sidetracker";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "Sidetracker API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Sidetracker API key used for authentication.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { sidetrackerCatalog };
@@ -8,6 +8,14 @@ declare const sidetrackerCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/sidetracker";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "Sidetracker API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Sidetracker API key used for authentication.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { sidetrackerCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,13 @@ const sidetrackerCatalog = {
7
7
  "category": "Analytics",
8
8
  "logo": "https://logos.composio.dev/api/sidetracker",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "Sidetracker API Key",
13
+ "secret": true,
14
+ "description": "Your Sidetracker API key used for authentication."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  export { sidetrackerCatalog };
@@ -1 +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"}
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 \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Sidetracker API Key\",\n \"secret\": true,\n \"description\": \"Your Sidetracker API key used for authentication.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/sidetracker",
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": {