@keystrokehq/sidetracker 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/generate-qrcode.cjs +1 -0
- package/dist/actions/generate-qrcode.cjs.map +1 -1
- package/dist/actions/generate-qrcode.d.cts +3 -3
- package/dist/actions/generate-qrcode.d.cts.map +1 -1
- package/dist/actions/generate-qrcode.d.mts +3 -3
- package/dist/actions/generate-qrcode.d.mts.map +1 -1
- package/dist/actions/generate-qrcode.mjs +1 -0
- package/dist/actions/generate-qrcode.mjs.map +1 -1
- package/dist/actions/get-list-details.cjs +1 -0
- package/dist/actions/get-list-details.cjs.map +1 -1
- package/dist/actions/get-list-details.d.cts +3 -3
- package/dist/actions/get-list-details.d.cts.map +1 -1
- package/dist/actions/get-list-details.d.mts +3 -3
- package/dist/actions/get-list-details.d.mts.map +1 -1
- package/dist/actions/get-list-details.mjs +1 -0
- package/dist/actions/get-list-details.mjs.map +1 -1
- package/dist/actions/get-lists.cjs +1 -0
- package/dist/actions/get-lists.cjs.map +1 -1
- package/dist/actions/get-lists.d.cts +3 -4
- package/dist/actions/get-lists.d.cts.map +1 -1
- package/dist/actions/get-lists.d.mts +3 -4
- package/dist/actions/get-lists.d.mts.map +1 -1
- package/dist/actions/get-lists.mjs +1 -0
- package/dist/actions/get-lists.mjs.map +1 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +7 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +7 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -2
- package/dist/app.mjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["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:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["sidetracker","executeSidetrackerTool"],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { 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, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof sidetracker.credential> {\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":";;;;;AAOA,SAAgB,OACd,MACA,KAO2D;CAC3D,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"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { 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:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { 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, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof sidetracker.credential> {\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":";;;;;AAOA,SAAgB,OACd,MACA,KAO2D;CAC3D,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.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}).passthrough().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":"
|
|
1
|
+
{"version":3,"file":"generate-qrcode.cjs","names":["z","action"],"sources":["../../src/actions/generate-qrcode.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { sidetracker } from \"../app\";\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}).passthrough().describe(\"Response model for QR code generation.\");\n\nexport const sidetrackerGenerateQrcode: AppAction<\n typeof SidetrackerGenerateQrcodeInput,\n typeof SidetrackerGenerateQrcodeOutput,\n typeof sidetracker.credential\n> = 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":";;;;AAMA,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,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,4BAITC,eAAAA,OAAO,+BAA+B;CACxC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { sidetracker } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/generate-qrcode.d.ts
|
|
@@ -10,9 +12,7 @@ declare const SidetrackerGenerateQrcodeOutput: z.ZodObject<{
|
|
|
10
12
|
qrcode_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
13
|
qrcode_data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
14
|
}, z.core.$loose>;
|
|
13
|
-
declare const sidetrackerGenerateQrcode:
|
|
14
|
-
url: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
15
|
+
declare const sidetrackerGenerateQrcode: AppAction<typeof SidetrackerGenerateQrcodeInput, typeof SidetrackerGenerateQrcodeOutput, typeof sidetracker.credential>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { sidetrackerGenerateQrcode };
|
|
18
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":"
|
|
1
|
+
{"version":3,"file":"generate-qrcode.d.cts","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { sidetracker } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/generate-qrcode.d.ts
|
|
@@ -10,9 +12,7 @@ declare const SidetrackerGenerateQrcodeOutput: z.ZodObject<{
|
|
|
10
12
|
qrcode_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
13
|
qrcode_data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
14
|
}, z.core.$loose>;
|
|
13
|
-
declare const sidetrackerGenerateQrcode:
|
|
14
|
-
url: string;
|
|
15
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
15
|
+
declare const sidetrackerGenerateQrcode: AppAction<typeof SidetrackerGenerateQrcodeInput, typeof SidetrackerGenerateQrcodeOutput, typeof sidetracker.credential>;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { sidetrackerGenerateQrcode };
|
|
18
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":"
|
|
1
|
+
{"version":3,"file":"generate-qrcode.d.mts","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAG9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;cAO/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -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.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}).passthrough().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":"
|
|
1
|
+
{"version":3,"file":"generate-qrcode.mjs","names":[],"sources":["../../src/actions/generate-qrcode.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { sidetracker } from \"../app\";\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}).passthrough().describe(\"Response model for QR code generation.\");\n\nexport const sidetrackerGenerateQrcode: AppAction<\n typeof SidetrackerGenerateQrcodeInput,\n typeof SidetrackerGenerateQrcodeOutput,\n typeof sidetracker.credential\n> = 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":";;;AAgBA,MAAa,4BAIT,OAAO,+BAA+B;CACxC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlB4C,EAAE,OAAO,EACrD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC7D,CAAC,CAAC,CAAC,SAAS,yCAgBH;CACP,QAhB6C,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,YAAY,CAAC,CAAC,SAAS,wCAWhB;AACV,CAAC"}
|
|
@@ -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.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}).passthrough().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}).passthrough().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":"
|
|
1
|
+
{"version":3,"file":"get-list-details.cjs","names":["z","action"],"sources":["../../src/actions/get-list-details.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { sidetracker } from \"../app\";\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}).passthrough().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}).passthrough().describe(\"Response model containing detailed information about a list.\");\n\nexport const sidetrackerGetListDetails: AppAction<\n typeof SidetrackerGetListDetailsInput,\n typeof SidetrackerGetListDetailsOutput,\n typeof sidetracker.credential\n> = 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":";;;;AAMA,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,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAC9D,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,YAAY,CAAC,CAAC,SAAS,8DAA8D;AAExF,MAAa,4BAITC,eAAAA,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { sidetracker } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-list-details.d.ts
|
|
@@ -21,9 +23,7 @@ declare const SidetrackerGetListDetailsOutput: z.ZodObject<{
|
|
|
21
23
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
22
24
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
25
|
}, z.core.$loose>;
|
|
24
|
-
declare const sidetrackerGetListDetails:
|
|
25
|
-
list_id: string;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
26
|
+
declare const sidetrackerGetListDetails: AppAction<typeof SidetrackerGetListDetailsInput, typeof SidetrackerGetListDetailsOutput, typeof sidetracker.credential>;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { sidetrackerGetListDetails };
|
|
29
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":"
|
|
1
|
+
{"version":3,"file":"get-list-details.d.cts","names":[],"sources":["../../src/actions/get-list-details.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAW9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAW/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { sidetracker } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-list-details.d.ts
|
|
@@ -21,9 +23,7 @@ declare const SidetrackerGetListDetailsOutput: z.ZodObject<{
|
|
|
21
23
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
22
24
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
25
|
}, z.core.$loose>;
|
|
24
|
-
declare const sidetrackerGetListDetails:
|
|
25
|
-
list_id: string;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
26
|
+
declare const sidetrackerGetListDetails: AppAction<typeof SidetrackerGetListDetailsInput, typeof SidetrackerGetListDetailsOutput, typeof sidetracker.credential>;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { sidetrackerGetListDetails };
|
|
29
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":"
|
|
1
|
+
{"version":3,"file":"get-list-details.d.mts","names":[],"sources":["../../src/actions/get-list-details.ts"],"mappings":";;;;;cAMa,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;cAW9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAW/B,yBAAA,EAA2B,SAAA,QAC/B,8BAAA,SACA,+BAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -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.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}).passthrough().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}).passthrough().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":"
|
|
1
|
+
{"version":3,"file":"get-list-details.mjs","names":[],"sources":["../../src/actions/get-list-details.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { sidetracker } from \"../app\";\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}).passthrough().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}).passthrough().describe(\"Response model containing detailed information about a list.\");\n\nexport const sidetrackerGetListDetails: AppAction<\n typeof SidetrackerGetListDetailsInput,\n typeof SidetrackerGetListDetailsOutput,\n typeof sidetracker.credential\n> = 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":";;;;AAMA,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,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAY9D,MAAa,4BAIT,OAAO,gCAAgC;CACzC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QApB6C,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,YAAY,CAAC,CAAC,SAAS,8DAWhB;AACV,CAAC"}
|
|
@@ -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.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}).passthrough().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}).passthrough().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":"
|
|
1
|
+
{"version":3,"file":"get-lists.cjs","names":["z","action"],"sources":["../../src/actions/get-lists.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { sidetracker } from \"../app\";\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}).passthrough().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}).passthrough().describe(\"Response model containing a list of lists.\");\n\nexport const sidetrackerGetLists: AppAction<\n typeof SidetrackerGetListsInput,\n typeof SidetrackerGetListsOutput,\n typeof sidetracker.credential\n> = 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":";;;;AAMA,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,YAAY,CAAC,CAAC,SAAS,kDAAkD;AAC5E,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,oCAAoC,EAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAA4C;AAEtE,MAAa,sBAITC,eAAAA,OAAO,yBAAyB;CAClC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { sidetracker } from "../app.cjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-lists.d.ts
|
|
@@ -13,10 +15,7 @@ declare const SidetrackerGetListsOutput: z.ZodObject<{
|
|
|
13
15
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
14
16
|
}, z.core.$loose>>;
|
|
15
17
|
}, z.core.$loose>;
|
|
16
|
-
declare const sidetrackerGetLists:
|
|
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]>;
|
|
18
|
+
declare const sidetrackerGetLists: AppAction<typeof SidetrackerGetListsInput, typeof SidetrackerGetListsOutput, typeof sidetracker.credential>;
|
|
20
19
|
//#endregion
|
|
21
20
|
export { sidetrackerGetLists };
|
|
22
21
|
//# sourceMappingURL=get-lists.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-lists.d.cts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-lists.d.cts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":";;;;;cAMa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAUxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,EAAqB,SAAA,QACzB,wBAAA,SACA,yBAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { sidetracker } from "../app.mjs";
|
|
2
|
+
import { AppAction } from "@keystrokehq/keystroke/app";
|
|
1
3
|
import { z } from "zod";
|
|
2
4
|
|
|
3
5
|
//#region src/actions/get-lists.d.ts
|
|
@@ -13,10 +15,7 @@ declare const SidetrackerGetListsOutput: z.ZodObject<{
|
|
|
13
15
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
14
16
|
}, z.core.$loose>>;
|
|
15
17
|
}, z.core.$loose>;
|
|
16
|
-
declare const sidetrackerGetLists:
|
|
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]>;
|
|
18
|
+
declare const sidetrackerGetLists: AppAction<typeof SidetrackerGetListsInput, typeof SidetrackerGetListsOutput, typeof sidetracker.credential>;
|
|
20
19
|
//#endregion
|
|
21
20
|
export { sidetrackerGetLists };
|
|
22
21
|
//# sourceMappingURL=get-lists.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-lists.d.mts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"get-lists.d.mts","names":[],"sources":["../../src/actions/get-lists.ts"],"mappings":";;;;;cAMa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAUxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;cAIzB,mBAAA,EAAqB,SAAA,QACzB,wBAAA,SACA,yBAAA,SACA,WAAA,CAAY,UAAA"}
|
|
@@ -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.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}).passthrough().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}).passthrough().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":"
|
|
1
|
+
{"version":3,"file":"get-lists.mjs","names":[],"sources":["../../src/actions/get-lists.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { sidetracker } from \"../app\";\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}).passthrough().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}).passthrough().describe(\"Response model containing a list of lists.\");\n\nexport const sidetrackerGetLists: AppAction<\n typeof SidetrackerGetListsInput,\n typeof SidetrackerGetListsOutput,\n typeof sidetracker.credential\n> = 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":";;;;AAMA,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,YAAY,CAAC,CAAC,SAAS,kDAAkD;AAK5E,MAAa,sBAIT,OAAO,yBAAyB;CAClC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAbuC,EAAE,OAAO,EAChD,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,oCAAoC,EAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAWhB;AACV,CAAC"}
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
1
2
|
//#region src/app.ts
|
|
2
|
-
const
|
|
3
|
+
const credential = { generic_api_key: require("zod").z.string() };
|
|
4
|
+
const sidetracker = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "sidetracker",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.sidetracker = sidetracker;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const sidetracker = defineApp({\n slug: \"sidetracker\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,eAAA,
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const sidetracker: KeystrokeApp<\"sidetracker\", typeof credential> = defineApp({\n slug: \"sidetracker\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAGA,MAAM,aAAa,EACjB,8BAAiBA,CAAAA,CAAAA,EAAE,OAAO,EAC5B;AAEA,MAAa,eAAA,GAAA,2BAAA,UAAA,CAAwE;CACnF,MAAM;CACN,MAAM;CACN;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
1
4
|
//#region src/app.d.ts
|
|
2
|
-
declare const
|
|
5
|
+
declare const credential: {
|
|
6
|
+
generic_api_key: z.ZodString;
|
|
7
|
+
};
|
|
8
|
+
declare const sidetracker: KeystrokeApp<"sidetracker", typeof credential>;
|
|
3
9
|
//#endregion
|
|
4
10
|
export { sidetracker };
|
|
5
11
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,WAAA,EAAa,YAAY,uBAAuB,UAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { KeystrokeApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
1
4
|
//#region src/app.d.ts
|
|
2
|
-
declare const
|
|
5
|
+
declare const credential: {
|
|
6
|
+
generic_api_key: z.ZodString;
|
|
7
|
+
};
|
|
8
|
+
declare const sidetracker: KeystrokeApp<"sidetracker", typeof credential>;
|
|
3
9
|
//#endregion
|
|
4
10
|
export { sidetracker };
|
|
5
11
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,WAAA,EAAa,YAAY,uBAAuB,UAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
-
|
|
2
|
+
import { z } from "zod";
|
|
3
3
|
const sidetracker = defineApp({
|
|
4
4
|
slug: "sidetracker",
|
|
5
|
-
auth: "keystroke"
|
|
5
|
+
auth: "keystroke",
|
|
6
|
+
credential: { generic_api_key: z.string() }
|
|
6
7
|
});
|
|
7
8
|
//#endregion
|
|
8
9
|
export { sidetracker };
|
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const sidetracker = defineApp({\n slug: \"sidetracker\",\n auth: \"keystroke\",\n});\n"],"mappings":";;
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const sidetracker: KeystrokeApp<\"sidetracker\", typeof credential> = defineApp({\n slug: \"sidetracker\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAOA,MAAa,cAA8D,UAAU;CACnF,MAAM;CACN,MAAM;CACN,cANA,iBAAiB,EAAE,OAAO,EAM1B;AACF,CAAC"}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { sidetracker } from "./app.cjs";
|
|
1
2
|
import { sidetrackerGenerateQrcode } from "./actions/generate-qrcode.cjs";
|
|
2
3
|
import { sidetrackerGetListDetails } from "./actions/get-list-details.cjs";
|
|
3
4
|
import { sidetrackerGetLists } from "./actions/get-lists.cjs";
|
|
4
|
-
import { sidetracker } from "./app.cjs";
|
|
5
5
|
import { sidetrackerCatalog } from "./catalog.cjs";
|
|
6
6
|
export { sidetracker, sidetrackerCatalog, sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { sidetracker } from "./app.mjs";
|
|
1
2
|
import { sidetrackerGenerateQrcode } from "./actions/generate-qrcode.mjs";
|
|
2
3
|
import { sidetrackerGetListDetails } from "./actions/get-list-details.mjs";
|
|
3
4
|
import { sidetrackerGetLists } from "./actions/get-lists.mjs";
|
|
4
|
-
import { sidetracker } from "./app.mjs";
|
|
5
5
|
import { sidetrackerCatalog } from "./catalog.mjs";
|
|
6
6
|
export { sidetracker, sidetrackerCatalog, sidetrackerGenerateQrcode, sidetrackerGetListDetails, sidetrackerGetLists };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/sidetracker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": ">=0.1.
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.104",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|