@keystrokehq/sidetracker 0.1.2 → 0.1.4
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/actions/generate-qrcode.cjs +1 -1
- package/dist/actions/generate-qrcode.cjs.map +1 -1
- package/dist/actions/generate-qrcode.d.cts +1 -1
- package/dist/actions/generate-qrcode.d.mts +1 -1
- package/dist/actions/generate-qrcode.mjs +1 -1
- package/dist/actions/generate-qrcode.mjs.map +1 -1
- package/dist/actions/get-list-details.cjs +2 -2
- package/dist/actions/get-list-details.cjs.map +1 -1
- package/dist/actions/get-list-details.d.cts +2 -2
- package/dist/actions/get-list-details.d.mts +2 -2
- package/dist/actions/get-list-details.mjs +2 -2
- package/dist/actions/get-list-details.mjs.map +1 -1
- package/dist/actions/get-lists.cjs +2 -2
- package/dist/actions/get-lists.cjs.map +1 -1
- package/dist/actions/get-lists.d.cts +2 -2
- package/dist/actions/get-lists.d.mts +2 -2
- package/dist/actions/get-lists.mjs +2 -2
- package/dist/actions/get-lists.mjs.map +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ const SidetrackerGenerateQrcodeOutput = zod.z.object({
|
|
|
7
7
|
success: zod.z.boolean().default(true).describe("Indicates if the QR code generation was successful").nullable().optional(),
|
|
8
8
|
qrcode_url: zod.z.string().describe("URL to access the generated QR code image").nullable().optional(),
|
|
9
9
|
qrcode_data: zod.z.string().describe("Base64-encoded QR code image data").nullable().optional()
|
|
10
|
-
}).describe("Response model for QR code generation.");
|
|
10
|
+
}).passthrough().describe("Response model for QR code generation.");
|
|
11
11
|
const sidetrackerGenerateQrcode = require_action.action("SIDETRACKER_GENERATE_QRCODE", {
|
|
12
12
|
slug: "sidetracker-generate-qrcode",
|
|
13
13
|
name: "Generate QR Code",
|
|
@@ -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}).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;
|
|
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":";;;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,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,4BAA4BC,eAAAA,OAAO,+BAA+B;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -9,7 +9,7 @@ declare const SidetrackerGenerateQrcodeOutput: z.ZodObject<{
|
|
|
9
9
|
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
10
10
|
qrcode_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
qrcode_data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const sidetrackerGenerateQrcode: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
url: string;
|
|
15
15
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -9,7 +9,7 @@ declare const SidetrackerGenerateQrcodeOutput: z.ZodObject<{
|
|
|
9
9
|
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
10
10
|
qrcode_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
qrcode_data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const sidetrackerGenerateQrcode: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
14
|
url: string;
|
|
15
15
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -10,7 +10,7 @@ const sidetrackerGenerateQrcode = action("SIDETRACKER_GENERATE_QRCODE", {
|
|
|
10
10
|
success: z.boolean().default(true).describe("Indicates if the QR code generation was successful").nullable().optional(),
|
|
11
11
|
qrcode_url: z.string().describe("URL to access the generated QR code image").nullable().optional(),
|
|
12
12
|
qrcode_data: z.string().describe("Base64-encoded QR code image data").nullable().optional()
|
|
13
|
-
}).describe("Response model for QR code generation.")
|
|
13
|
+
}).passthrough().describe("Response model for QR code generation.")
|
|
14
14
|
});
|
|
15
15
|
//#endregion
|
|
16
16
|
export { sidetrackerGenerateQrcode };
|
|
@@ -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}).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,
|
|
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":";;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,YAAY,CAAC,CAAC,SAAS,wCAOhB;AACV,CAAC"}
|
|
@@ -9,7 +9,7 @@ const SidetrackerGetListDetails_ListColumnSchema = zod.z.object({
|
|
|
9
9
|
created_at: zod.z.string().describe("Timestamp when the column was created (ISO 8601 format)").nullable(),
|
|
10
10
|
sort_order: zod.z.number().int().describe("Sort order of the column").nullable(),
|
|
11
11
|
updated_at: zod.z.string().describe("Timestamp when the column was last updated (ISO 8601 format)").nullable()
|
|
12
|
-
}).describe("A column definition within a list.");
|
|
12
|
+
}).passthrough().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
15
|
name: zod.z.string().describe("Name of the list").nullable(),
|
|
@@ -19,7 +19,7 @@ const SidetrackerGetListDetailsOutput = zod.z.object({
|
|
|
19
19
|
created_at: zod.z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
|
|
20
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
|
-
}).describe("Response model containing detailed information about a list.");
|
|
22
|
+
}).passthrough().describe("Response model containing detailed information about a list.");
|
|
23
23
|
const sidetrackerGetListDetails = require_action.action("SIDETRACKER_GET_LIST_DETAILS", {
|
|
24
24
|
slug: "sidetracker-get-list-details",
|
|
25
25
|
name: "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.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;
|
|
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":";;;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,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,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -15,12 +15,12 @@ declare const SidetrackerGetListDetailsOutput: z.ZodObject<{
|
|
|
15
15
|
created_at: z.ZodNullable<z.ZodString>;
|
|
16
16
|
sort_order: z.ZodNullable<z.ZodNumber>;
|
|
17
17
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
18
|
-
}, z.core.$
|
|
18
|
+
}, z.core.$loose>>;
|
|
19
19
|
unique_id: z.ZodNullable<z.ZodString>;
|
|
20
20
|
created_at: z.ZodNullable<z.ZodString>;
|
|
21
21
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
22
22
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const sidetrackerGetListDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
list_id: string;
|
|
26
26
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -15,12 +15,12 @@ declare const SidetrackerGetListDetailsOutput: z.ZodObject<{
|
|
|
15
15
|
created_at: z.ZodNullable<z.ZodString>;
|
|
16
16
|
sort_order: z.ZodNullable<z.ZodNumber>;
|
|
17
17
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
18
|
-
}, z.core.$
|
|
18
|
+
}, z.core.$loose>>;
|
|
19
19
|
unique_id: z.ZodNullable<z.ZodString>;
|
|
20
20
|
created_at: z.ZodNullable<z.ZodString>;
|
|
21
21
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
22
22
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const sidetrackerGetListDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
list_id: string;
|
|
26
26
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -9,7 +9,7 @@ const SidetrackerGetListDetails_ListColumnSchema = z.object({
|
|
|
9
9
|
created_at: z.string().describe("Timestamp when the column was created (ISO 8601 format)").nullable(),
|
|
10
10
|
sort_order: z.number().int().describe("Sort order of the column").nullable(),
|
|
11
11
|
updated_at: z.string().describe("Timestamp when the column was last updated (ISO 8601 format)").nullable()
|
|
12
|
-
}).describe("A column definition within a list.");
|
|
12
|
+
}).passthrough().describe("A column definition within a list.");
|
|
13
13
|
const sidetrackerGetListDetails = action("SIDETRACKER_GET_LIST_DETAILS", {
|
|
14
14
|
slug: "sidetracker-get-list-details",
|
|
15
15
|
name: "Get List Details",
|
|
@@ -24,7 +24,7 @@ const sidetrackerGetListDetails = action("SIDETRACKER_GET_LIST_DETAILS", {
|
|
|
24
24
|
created_at: z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
|
|
25
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
|
-
}).describe("Response model containing detailed information about a list.")
|
|
27
|
+
}).passthrough().describe("Response model containing detailed information about a list.")
|
|
28
28
|
});
|
|
29
29
|
//#endregion
|
|
30
30
|
export { sidetrackerGetListDetails };
|
|
@@ -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}).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;
|
|
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":";;;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,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAY9D,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,YAAY,CAAC,CAAC,SAAS,8DAOhB;AACV,CAAC"}
|
|
@@ -10,8 +10,8 @@ const SidetrackerGetLists_ListItemSchema = zod.z.object({
|
|
|
10
10
|
name: zod.z.string().describe("Name of the list").nullable(),
|
|
11
11
|
created_at: zod.z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
|
|
12
12
|
updated_at: zod.z.string().describe("Timestamp when the list was last updated (ISO 8601 format)").nullable()
|
|
13
|
-
}).describe("Individual list item in the collection of lists.");
|
|
14
|
-
const SidetrackerGetListsOutput = zod.z.object({ lists: zod.z.array(SidetrackerGetLists_ListItemSchema).describe("Collection of list items retrieved") }).describe("Response model containing a list of lists.");
|
|
13
|
+
}).passthrough().describe("Individual list item in the collection of lists.");
|
|
14
|
+
const SidetrackerGetListsOutput = zod.z.object({ lists: zod.z.array(SidetrackerGetLists_ListItemSchema).describe("Collection of list items retrieved") }).passthrough().describe("Response model containing a list of lists.");
|
|
15
15
|
const sidetrackerGetLists = require_action.action("SIDETRACKER_GET_LISTS", {
|
|
16
16
|
slug: "sidetracker-get-lists",
|
|
17
17
|
name: "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.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;
|
|
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":";;;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,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,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -11,8 +11,8 @@ declare const SidetrackerGetListsOutput: z.ZodObject<{
|
|
|
11
11
|
name: z.ZodNullable<z.ZodString>;
|
|
12
12
|
created_at: z.ZodNullable<z.ZodString>;
|
|
13
13
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
14
|
-
}, z.core.$
|
|
15
|
-
}, z.core.$
|
|
14
|
+
}, z.core.$loose>>;
|
|
15
|
+
}, z.core.$loose>;
|
|
16
16
|
declare const sidetrackerGetLists: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
page?: number | undefined;
|
|
18
18
|
page_size?: number | undefined;
|
|
@@ -11,8 +11,8 @@ declare const SidetrackerGetListsOutput: z.ZodObject<{
|
|
|
11
11
|
name: z.ZodNullable<z.ZodString>;
|
|
12
12
|
created_at: z.ZodNullable<z.ZodString>;
|
|
13
13
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
14
|
-
}, z.core.$
|
|
15
|
-
}, z.core.$
|
|
14
|
+
}, z.core.$loose>>;
|
|
15
|
+
}, z.core.$loose>;
|
|
16
16
|
declare const sidetrackerGetLists: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
page?: number | undefined;
|
|
18
18
|
page_size?: number | undefined;
|
|
@@ -10,13 +10,13 @@ const SidetrackerGetLists_ListItemSchema = z.object({
|
|
|
10
10
|
name: z.string().describe("Name of the list").nullable(),
|
|
11
11
|
created_at: z.string().describe("Timestamp when the list was created (ISO 8601 format)").nullable(),
|
|
12
12
|
updated_at: z.string().describe("Timestamp when the list was last updated (ISO 8601 format)").nullable()
|
|
13
|
-
}).describe("Individual list item in the collection of lists.");
|
|
13
|
+
}).passthrough().describe("Individual list item in the collection of lists.");
|
|
14
14
|
const sidetrackerGetLists = action("SIDETRACKER_GET_LISTS", {
|
|
15
15
|
slug: "sidetracker-get-lists",
|
|
16
16
|
name: "Get Lists",
|
|
17
17
|
description: "Tool to retrieve lists from Sidetracker. Use when you need to paginate through available lists.",
|
|
18
18
|
input: SidetrackerGetListsInput,
|
|
19
|
-
output: z.object({ lists: z.array(SidetrackerGetLists_ListItemSchema).describe("Collection of list items retrieved") }).describe("Response model containing a list of lists.")
|
|
19
|
+
output: z.object({ lists: z.array(SidetrackerGetLists_ListItemSchema).describe("Collection of list items retrieved") }).passthrough().describe("Response model containing a list of lists.")
|
|
20
20
|
});
|
|
21
21
|
//#endregion
|
|
22
22
|
export { sidetrackerGetLists };
|
|
@@ -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}).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;
|
|
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":";;;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,YAAY,CAAC,CAAC,SAAS,kDAAkD;AAK5E,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,YAAY,CAAC,CAAC,SAAS,4CAOhB;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const sidetrackerCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/sidetracker",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "Sidetracker API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your Sidetracker API key used for authentication."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -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 \"credentialFields\": {\n \"
|
|
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 \"generic_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,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const sidetrackerCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "Sidetracker API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your Sidetracker API key used for authentication.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const sidetrackerCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "Sidetracker API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your Sidetracker API key used for authentication.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const sidetrackerCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/sidetracker",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "Sidetracker API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your Sidetracker API key used for authentication."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -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 \"credentialFields\": {\n \"
|
|
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 \"generic_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,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|