@keystrokehq/sendlane 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.
Files changed (43) hide show
  1. package/dist/actions/get-campaigns.cjs +4 -4
  2. package/dist/actions/get-campaigns.cjs.map +1 -1
  3. package/dist/actions/get-campaigns.d.cts +4 -4
  4. package/dist/actions/get-campaigns.d.mts +4 -4
  5. package/dist/actions/get-campaigns.mjs +4 -4
  6. package/dist/actions/get-campaigns.mjs.map +1 -1
  7. package/dist/actions/get-custom-fields.cjs +2 -2
  8. package/dist/actions/get-custom-fields.cjs.map +1 -1
  9. package/dist/actions/get-custom-fields.d.cts +2 -2
  10. package/dist/actions/get-custom-fields.d.mts +2 -2
  11. package/dist/actions/get-custom-fields.mjs +2 -2
  12. package/dist/actions/get-custom-fields.mjs.map +1 -1
  13. package/dist/actions/get-lists.cjs +4 -4
  14. package/dist/actions/get-lists.cjs.map +1 -1
  15. package/dist/actions/get-lists.d.cts +4 -4
  16. package/dist/actions/get-lists.d.mts +4 -4
  17. package/dist/actions/get-lists.mjs +4 -4
  18. package/dist/actions/get-lists.mjs.map +1 -1
  19. package/dist/actions/list-delete.cjs +1 -1
  20. package/dist/actions/list-delete.cjs.map +1 -1
  21. package/dist/actions/list-delete.d.cts +1 -1
  22. package/dist/actions/list-delete.d.mts +1 -1
  23. package/dist/actions/list-delete.mjs +1 -1
  24. package/dist/actions/list-delete.mjs.map +1 -1
  25. package/dist/actions/post-list.cjs +2 -2
  26. package/dist/actions/post-list.cjs.map +1 -1
  27. package/dist/actions/post-list.d.cts +2 -2
  28. package/dist/actions/post-list.d.mts +2 -2
  29. package/dist/actions/post-list.mjs +2 -2
  30. package/dist/actions/post-list.mjs.map +1 -1
  31. package/dist/actions/tag-create.cjs +2 -2
  32. package/dist/actions/tag-create.cjs.map +1 -1
  33. package/dist/actions/tag-create.d.cts +2 -2
  34. package/dist/actions/tag-create.d.mts +2 -2
  35. package/dist/actions/tag-create.mjs +2 -2
  36. package/dist/actions/tag-create.mjs.map +1 -1
  37. package/dist/catalog.cjs +1 -1
  38. package/dist/catalog.cjs.map +1 -1
  39. package/dist/catalog.d.cts +1 -1
  40. package/dist/catalog.d.mts +1 -1
  41. package/dist/catalog.mjs +1 -1
  42. package/dist/catalog.mjs.map +1 -1
  43. package/package.json +1 -1
@@ -14,7 +14,7 @@ const SendlaneGetCampaigns_CampaignSchema = zod.z.object({
14
14
  created_at: zod.z.string().describe("Timestamp when the campaign was created").nullable(),
15
15
  updated_at: zod.z.string().describe("Timestamp when the campaign was last updated").nullable(),
16
16
  scheduled_at: zod.z.string().describe("Scheduled send time").nullable().optional()
17
- }).describe("Represents an email campaign in Sendlane.");
17
+ }).passthrough().describe("Represents an email campaign in Sendlane.");
18
18
  const SendlaneGetCampaigns_PaginationMetaSchema = zod.z.object({
19
19
  to: zod.z.number().int().describe("Ending index of results on this page").nullable().optional(),
20
20
  from: zod.z.number().int().describe("Starting index of results on this page").nullable().optional(),
@@ -23,18 +23,18 @@ const SendlaneGetCampaigns_PaginationMetaSchema = zod.z.object({
23
23
  per_page: zod.z.number().int().describe("Number of items per page").nullable(),
24
24
  last_page: zod.z.number().int().describe("Total number of pages available").nullable(),
25
25
  current_page: zod.z.number().int().describe("Current page number").nullable()
26
- }).describe("Metadata about pagination state and totals.");
26
+ }).passthrough().describe("Metadata about pagination state and totals.");
27
27
  const SendlaneGetCampaigns_PaginationLinksSchema = zod.z.object({
28
28
  last: zod.z.string().describe("URL to the last page").nullable().optional(),
29
29
  next: zod.z.string().describe("URL to the next page").nullable().optional(),
30
30
  prev: zod.z.string().describe("URL to the previous page").nullable().optional(),
31
31
  first: zod.z.string().describe("URL to the first page").nullable().optional()
32
- }).describe("Pagination links for navigating through campaign pages.");
32
+ }).passthrough().describe("Pagination links for navigating through campaign pages.");
33
33
  const SendlaneGetCampaignsOutput = zod.z.object({
34
34
  data: zod.z.array(SendlaneGetCampaigns_CampaignSchema).describe("Array of campaign objects"),
35
35
  meta: SendlaneGetCampaigns_PaginationMetaSchema.nullable(),
36
36
  links: SendlaneGetCampaigns_PaginationLinksSchema.nullable()
37
- }).describe("Response model for retrieving campaigns list with pagination metadata.");
37
+ }).passthrough().describe("Response model for retrieving campaigns list with pagination metadata.");
38
38
  const sendlaneGetCampaigns = require_action.action("SENDLANE_GET_CAMPAIGNS", {
39
39
  slug: "sendlane-get-campaigns",
40
40
  name: "Get Campaigns",
@@ -1 +1 @@
1
- {"version":3,"file":"get-campaigns.cjs","names":["z","action"],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCampaignsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of campaigns per page (default is 100)\").optional(),\n}).describe(\"Request model for retrieving email campaigns with optional pagination.\");\nconst SendlaneGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique campaign identifier\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Status of the campaign (e.g., 'Draft', 'Sent')\").nullable().optional(),\n sent_at: z.string().describe(\"Actual send time\").nullable().optional(),\n automation: z.string().describe(\"Associated automation\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the campaign was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the campaign was last updated\").nullable(),\n scheduled_at: z.string().describe(\"Scheduled send time\").nullable().optional(),\n}).describe(\"Represents an email campaign in Sendlane.\");\nconst SendlaneGetCampaigns_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Ending index of results on this page\").nullable().optional(),\n from: z.number().int().describe(\"Starting index of results on this page\").nullable().optional(),\n path: z.string().describe(\"Base path for pagination URLs\").nullable(),\n total: z.number().int().describe(\"Total number of campaigns available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Total number of pages available\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).describe(\"Metadata about pagination state and totals.\");\nconst SendlaneGetCampaigns_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL to the last page\").nullable().optional(),\n next: z.string().describe(\"URL to the next page\").nullable().optional(),\n prev: z.string().describe(\"URL to the previous page\").nullable().optional(),\n first: z.string().describe(\"URL to the first page\").nullable().optional(),\n}).describe(\"Pagination links for navigating through campaign pages.\");\nexport const SendlaneGetCampaignsOutput = z.object({\n data: z.array(SendlaneGetCampaigns_CampaignSchema).describe(\"Array of campaign objects\"),\n meta: SendlaneGetCampaigns_PaginationMetaSchema.nullable(),\n links: SendlaneGetCampaigns_PaginationLinksSchema.nullable(),\n}).describe(\"Response model for retrieving campaigns list with pagination metadata.\");\n\nexport const sendlaneGetCampaigns = action(\"SENDLANE_GET_CAMPAIGNS\", {\n slug: \"sendlane-get-campaigns\",\n name: \"Get Campaigns\",\n description: \"Tool to retrieve a list of email campaigns. Use when you need to fetch all campaigns with optional pagination.\",\n input: SendlaneGetCampaignsInput,\n output: SendlaneGetCampaignsOutput,\n});\n"],"mappings":"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"}
1
+ {"version":3,"file":"get-campaigns.cjs","names":["z","action"],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCampaignsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of campaigns per page (default is 100)\").optional(),\n}).describe(\"Request model for retrieving email campaigns with optional pagination.\");\nconst SendlaneGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique campaign identifier\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Status of the campaign (e.g., 'Draft', 'Sent')\").nullable().optional(),\n sent_at: z.string().describe(\"Actual send time\").nullable().optional(),\n automation: z.string().describe(\"Associated automation\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the campaign was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the campaign was last updated\").nullable(),\n scheduled_at: z.string().describe(\"Scheduled send time\").nullable().optional(),\n}).passthrough().describe(\"Represents an email campaign in Sendlane.\");\nconst SendlaneGetCampaigns_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Ending index of results on this page\").nullable().optional(),\n from: z.number().int().describe(\"Starting index of results on this page\").nullable().optional(),\n path: z.string().describe(\"Base path for pagination URLs\").nullable(),\n total: z.number().int().describe(\"Total number of campaigns available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Total number of pages available\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).passthrough().describe(\"Metadata about pagination state and totals.\");\nconst SendlaneGetCampaigns_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL to the last page\").nullable().optional(),\n next: z.string().describe(\"URL to the next page\").nullable().optional(),\n prev: z.string().describe(\"URL to the previous page\").nullable().optional(),\n first: z.string().describe(\"URL to the first page\").nullable().optional(),\n}).passthrough().describe(\"Pagination links for navigating through campaign pages.\");\nexport const SendlaneGetCampaignsOutput = z.object({\n data: z.array(SendlaneGetCampaigns_CampaignSchema).describe(\"Array of campaign objects\"),\n meta: SendlaneGetCampaigns_PaginationMetaSchema.nullable(),\n links: SendlaneGetCampaigns_PaginationLinksSchema.nullable(),\n}).passthrough().describe(\"Response model for retrieving campaigns list with pagination metadata.\");\n\nexport const sendlaneGetCampaigns = action(\"SENDLANE_GET_CAMPAIGNS\", {\n slug: \"sendlane-get-campaigns\",\n name: \"Get Campaigns\",\n description: \"Tool to retrieve a list of email campaigns. Use when you need to fetch all campaigns with optional pagination.\",\n input: SendlaneGetCampaignsInput,\n output: SendlaneGetCampaignsOutput,\n});\n"],"mappings":"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"}
@@ -15,7 +15,7 @@ declare const SendlaneGetCampaignsOutput: z.ZodObject<{
15
15
  created_at: z.ZodNullable<z.ZodString>;
16
16
  updated_at: z.ZodNullable<z.ZodString>;
17
17
  scheduled_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
- }, z.core.$strip>>;
18
+ }, z.core.$loose>>;
19
19
  meta: z.ZodNullable<z.ZodObject<{
20
20
  to: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
21
21
  from: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -24,14 +24,14 @@ declare const SendlaneGetCampaignsOutput: z.ZodObject<{
24
24
  per_page: z.ZodNullable<z.ZodNumber>;
25
25
  last_page: z.ZodNullable<z.ZodNumber>;
26
26
  current_page: z.ZodNullable<z.ZodNumber>;
27
- }, z.core.$strip>>;
27
+ }, z.core.$loose>>;
28
28
  links: z.ZodNullable<z.ZodObject<{
29
29
  last: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
30
  next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31
31
  prev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
32
  first: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
- }, z.core.$strip>>;
34
- }, z.core.$strip>;
33
+ }, z.core.$loose>>;
34
+ }, z.core.$loose>;
35
35
  declare const sendlaneGetCampaigns: import("@keystrokehq/action").WorkflowActionDefinition<{
36
36
  page?: number | undefined;
37
37
  per_page?: number | undefined;
@@ -15,7 +15,7 @@ declare const SendlaneGetCampaignsOutput: z.ZodObject<{
15
15
  created_at: z.ZodNullable<z.ZodString>;
16
16
  updated_at: z.ZodNullable<z.ZodString>;
17
17
  scheduled_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
- }, z.core.$strip>>;
18
+ }, z.core.$loose>>;
19
19
  meta: z.ZodNullable<z.ZodObject<{
20
20
  to: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
21
21
  from: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -24,14 +24,14 @@ declare const SendlaneGetCampaignsOutput: z.ZodObject<{
24
24
  per_page: z.ZodNullable<z.ZodNumber>;
25
25
  last_page: z.ZodNullable<z.ZodNumber>;
26
26
  current_page: z.ZodNullable<z.ZodNumber>;
27
- }, z.core.$strip>>;
27
+ }, z.core.$loose>>;
28
28
  links: z.ZodNullable<z.ZodObject<{
29
29
  last: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
30
  next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31
31
  prev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
32
  first: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
- }, z.core.$strip>>;
34
- }, z.core.$strip>;
33
+ }, z.core.$loose>>;
34
+ }, z.core.$loose>;
35
35
  declare const sendlaneGetCampaigns: import("@keystrokehq/action").WorkflowActionDefinition<{
36
36
  page?: number | undefined;
37
37
  per_page?: number | undefined;
@@ -14,7 +14,7 @@ const SendlaneGetCampaigns_CampaignSchema = z.object({
14
14
  created_at: z.string().describe("Timestamp when the campaign was created").nullable(),
15
15
  updated_at: z.string().describe("Timestamp when the campaign was last updated").nullable(),
16
16
  scheduled_at: z.string().describe("Scheduled send time").nullable().optional()
17
- }).describe("Represents an email campaign in Sendlane.");
17
+ }).passthrough().describe("Represents an email campaign in Sendlane.");
18
18
  const SendlaneGetCampaigns_PaginationMetaSchema = z.object({
19
19
  to: z.number().int().describe("Ending index of results on this page").nullable().optional(),
20
20
  from: z.number().int().describe("Starting index of results on this page").nullable().optional(),
@@ -23,13 +23,13 @@ const SendlaneGetCampaigns_PaginationMetaSchema = z.object({
23
23
  per_page: z.number().int().describe("Number of items per page").nullable(),
24
24
  last_page: z.number().int().describe("Total number of pages available").nullable(),
25
25
  current_page: z.number().int().describe("Current page number").nullable()
26
- }).describe("Metadata about pagination state and totals.");
26
+ }).passthrough().describe("Metadata about pagination state and totals.");
27
27
  const SendlaneGetCampaigns_PaginationLinksSchema = z.object({
28
28
  last: z.string().describe("URL to the last page").nullable().optional(),
29
29
  next: z.string().describe("URL to the next page").nullable().optional(),
30
30
  prev: z.string().describe("URL to the previous page").nullable().optional(),
31
31
  first: z.string().describe("URL to the first page").nullable().optional()
32
- }).describe("Pagination links for navigating through campaign pages.");
32
+ }).passthrough().describe("Pagination links for navigating through campaign pages.");
33
33
  const sendlaneGetCampaigns = action("SENDLANE_GET_CAMPAIGNS", {
34
34
  slug: "sendlane-get-campaigns",
35
35
  name: "Get Campaigns",
@@ -39,7 +39,7 @@ const sendlaneGetCampaigns = action("SENDLANE_GET_CAMPAIGNS", {
39
39
  data: z.array(SendlaneGetCampaigns_CampaignSchema).describe("Array of campaign objects"),
40
40
  meta: SendlaneGetCampaigns_PaginationMetaSchema.nullable(),
41
41
  links: SendlaneGetCampaigns_PaginationLinksSchema.nullable()
42
- }).describe("Response model for retrieving campaigns list with pagination metadata.")
42
+ }).passthrough().describe("Response model for retrieving campaigns list with pagination metadata.")
43
43
  });
44
44
  //#endregion
45
45
  export { sendlaneGetCampaigns };
@@ -1 +1 @@
1
- {"version":3,"file":"get-campaigns.mjs","names":[],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCampaignsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of campaigns per page (default is 100)\").optional(),\n}).describe(\"Request model for retrieving email campaigns with optional pagination.\");\nconst SendlaneGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique campaign identifier\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Status of the campaign (e.g., 'Draft', 'Sent')\").nullable().optional(),\n sent_at: z.string().describe(\"Actual send time\").nullable().optional(),\n automation: z.string().describe(\"Associated automation\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the campaign was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the campaign was last updated\").nullable(),\n scheduled_at: z.string().describe(\"Scheduled send time\").nullable().optional(),\n}).describe(\"Represents an email campaign in Sendlane.\");\nconst SendlaneGetCampaigns_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Ending index of results on this page\").nullable().optional(),\n from: z.number().int().describe(\"Starting index of results on this page\").nullable().optional(),\n path: z.string().describe(\"Base path for pagination URLs\").nullable(),\n total: z.number().int().describe(\"Total number of campaigns available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Total number of pages available\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).describe(\"Metadata about pagination state and totals.\");\nconst SendlaneGetCampaigns_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL to the last page\").nullable().optional(),\n next: z.string().describe(\"URL to the next page\").nullable().optional(),\n prev: z.string().describe(\"URL to the previous page\").nullable().optional(),\n first: z.string().describe(\"URL to the first page\").nullable().optional(),\n}).describe(\"Pagination links for navigating through campaign pages.\");\nexport const SendlaneGetCampaignsOutput = z.object({\n data: z.array(SendlaneGetCampaigns_CampaignSchema).describe(\"Array of campaign objects\"),\n meta: SendlaneGetCampaigns_PaginationMetaSchema.nullable(),\n links: SendlaneGetCampaigns_PaginationLinksSchema.nullable(),\n}).describe(\"Response model for retrieving campaigns list with pagination metadata.\");\n\nexport const sendlaneGetCampaigns = action(\"SENDLANE_GET_CAMPAIGNS\", {\n slug: \"sendlane-get-campaigns\",\n name: \"Get Campaigns\",\n description: \"Tool to retrieve a list of email campaigns. Use when you need to fetch all campaigns with optional pagination.\",\n input: SendlaneGetCampaignsInput,\n output: SendlaneGetCampaignsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4B,EAAE,OAAO;CAChD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC7F,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;AAChG,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,sCAAsC,EAAE,OAAO;CACnD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACrE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CACpF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CACzF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACvD,MAAM,4CAA4C,EAAE,OAAO;CACzD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACpE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACjF,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACjF,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,6CAA6C,EAAE,OAAO;CAC1D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,SAAS,yDAAyD;AAOrE,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXwC,EAAE,OAAO;EACjD,MAAM,EAAE,MAAM,mCAAmC,CAAC,CAAC,SAAS,2BAA2B;EACvF,MAAM,0CAA0C,SAAS;EACzD,OAAO,2CAA2C,SAAS;CAC7D,CAAC,CAAC,CAAC,SAAS,wEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-campaigns.mjs","names":[],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCampaignsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of campaigns per page (default is 100)\").optional(),\n}).describe(\"Request model for retrieving email campaigns with optional pagination.\");\nconst SendlaneGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique campaign identifier\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Status of the campaign (e.g., 'Draft', 'Sent')\").nullable().optional(),\n sent_at: z.string().describe(\"Actual send time\").nullable().optional(),\n automation: z.string().describe(\"Associated automation\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the campaign was created\").nullable(),\n updated_at: z.string().describe(\"Timestamp when the campaign was last updated\").nullable(),\n scheduled_at: z.string().describe(\"Scheduled send time\").nullable().optional(),\n}).passthrough().describe(\"Represents an email campaign in Sendlane.\");\nconst SendlaneGetCampaigns_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Ending index of results on this page\").nullable().optional(),\n from: z.number().int().describe(\"Starting index of results on this page\").nullable().optional(),\n path: z.string().describe(\"Base path for pagination URLs\").nullable(),\n total: z.number().int().describe(\"Total number of campaigns available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Total number of pages available\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).passthrough().describe(\"Metadata about pagination state and totals.\");\nconst SendlaneGetCampaigns_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL to the last page\").nullable().optional(),\n next: z.string().describe(\"URL to the next page\").nullable().optional(),\n prev: z.string().describe(\"URL to the previous page\").nullable().optional(),\n first: z.string().describe(\"URL to the first page\").nullable().optional(),\n}).passthrough().describe(\"Pagination links for navigating through campaign pages.\");\nexport const SendlaneGetCampaignsOutput = z.object({\n data: z.array(SendlaneGetCampaigns_CampaignSchema).describe(\"Array of campaign objects\"),\n meta: SendlaneGetCampaigns_PaginationMetaSchema.nullable(),\n links: SendlaneGetCampaigns_PaginationLinksSchema.nullable(),\n}).passthrough().describe(\"Response model for retrieving campaigns list with pagination metadata.\");\n\nexport const sendlaneGetCampaigns = action(\"SENDLANE_GET_CAMPAIGNS\", {\n slug: \"sendlane-get-campaigns\",\n name: \"Get Campaigns\",\n description: \"Tool to retrieve a list of email campaigns. Use when you need to fetch all campaigns with optional pagination.\",\n input: SendlaneGetCampaignsInput,\n output: SendlaneGetCampaignsOutput,\n});\n"],"mappings":"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"}
@@ -12,8 +12,8 @@ const SendlaneGetCustomFields_CustomFieldSchema = zod.z.object({
12
12
  created_at: zod.z.string().describe("Creation datetime").nullable(),
13
13
  field_type: zod.z.string().describe("Type of the custom field").nullable(),
14
14
  updated_at: zod.z.string().describe("Last update datetime").nullable()
15
- }).describe("Represents a custom field in Sendlane.");
16
- const SendlaneGetCustomFieldsOutput = zod.z.object({ data: zod.z.array(SendlaneGetCustomFields_CustomFieldSchema).describe("List of custom field objects") }).describe("Response model for retrieving custom fields.");
15
+ }).passthrough().describe("Represents a custom field in Sendlane.");
16
+ const SendlaneGetCustomFieldsOutput = zod.z.object({ data: zod.z.array(SendlaneGetCustomFields_CustomFieldSchema).describe("List of custom field objects") }).passthrough().describe("Response model for retrieving custom fields.");
17
17
  const sendlaneGetCustomFields = require_action.action("SENDLANE_GET_CUSTOM_FIELDS", {
18
18
  slug: "sendlane-get-custom-fields",
19
19
  name: "Get Custom Fields",
@@ -1 +1 @@
1
- {"version":3,"file":"get-custom-fields.cjs","names":["z","action"],"sources":["../../src/actions/get-custom-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCustomFieldsInput = z.object({\n page: z.number().int().describe(\"Page number for pagination. If not specified, defaults to page 1\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. If not specified, the API uses its default limit\").optional(),\n}).describe(\"Request model for retrieving custom fields.\");\nconst SendlaneGetCustomFields_CustomFieldSchema = z.object({\n id: z.number().int().describe(\"Custom field ID\").nullable(),\n tag: z.string().describe(\"Tag used for the custom field\").nullable(),\n name: z.string().describe(\"Name of the custom field\").nullable(),\n created_at: z.string().describe(\"Creation datetime\").nullable(),\n field_type: z.string().describe(\"Type of the custom field\").nullable(),\n updated_at: z.string().describe(\"Last update datetime\").nullable(),\n}).describe(\"Represents a custom field in Sendlane.\");\nexport const SendlaneGetCustomFieldsOutput = z.object({\n data: z.array(SendlaneGetCustomFields_CustomFieldSchema).describe(\"List of custom field objects\"),\n}).describe(\"Response model for retrieving custom fields.\");\n\nexport const sendlaneGetCustomFields = action(\"SENDLANE_GET_CUSTOM_FIELDS\", {\n slug: \"sendlane-get-custom-fields\",\n name: \"Get Custom Fields\",\n description: \"Retrieve a list of all custom fields in your Sendlane account. Custom fields allow you to store additional contact information beyond the standard fields. Use this tool to discover available custom fields, their IDs, names, tags, and types before creating or updating contacts with custom field data. Supports optional pagination via page and per_page parameters.\",\n input: SendlaneGetCustomFieldsInput,\n output: SendlaneGetCustomFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CAC7G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;AAC/H,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CAC1D,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CAC9D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACrE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,wCAAwC;AACpD,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,EACpD,MAAMA,IAAAA,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,8BAA8B,EAClG,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-custom-fields.cjs","names":["z","action"],"sources":["../../src/actions/get-custom-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCustomFieldsInput = z.object({\n page: z.number().int().describe(\"Page number for pagination. If not specified, defaults to page 1\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. If not specified, the API uses its default limit\").optional(),\n}).describe(\"Request model for retrieving custom fields.\");\nconst SendlaneGetCustomFields_CustomFieldSchema = z.object({\n id: z.number().int().describe(\"Custom field ID\").nullable(),\n tag: z.string().describe(\"Tag used for the custom field\").nullable(),\n name: z.string().describe(\"Name of the custom field\").nullable(),\n created_at: z.string().describe(\"Creation datetime\").nullable(),\n field_type: z.string().describe(\"Type of the custom field\").nullable(),\n updated_at: z.string().describe(\"Last update datetime\").nullable(),\n}).passthrough().describe(\"Represents a custom field in Sendlane.\");\nexport const SendlaneGetCustomFieldsOutput = z.object({\n data: z.array(SendlaneGetCustomFields_CustomFieldSchema).describe(\"List of custom field objects\"),\n}).passthrough().describe(\"Response model for retrieving custom fields.\");\n\nexport const sendlaneGetCustomFields = action(\"SENDLANE_GET_CUSTOM_FIELDS\", {\n slug: \"sendlane-get-custom-fields\",\n name: \"Get Custom Fields\",\n description: \"Retrieve a list of all custom fields in your Sendlane account. Custom fields allow you to store additional contact information beyond the standard fields. Use this tool to discover available custom fields, their IDs, names, tags, and types before creating or updating contacts with custom field data. Supports optional pagination via page and per_page parameters.\",\n input: SendlaneGetCustomFieldsInput,\n output: SendlaneGetCustomFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CAC7G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;AAC/H,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,4CAA4CA,IAAAA,EAAE,OAAO;CACzD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CAC1D,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CAC9D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACrE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAClE,MAAa,gCAAgCA,IAAAA,EAAE,OAAO,EACpD,MAAMA,IAAAA,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,8BAA8B,EAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AAExE,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -13,8 +13,8 @@ declare const SendlaneGetCustomFieldsOutput: z.ZodObject<{
13
13
  created_at: z.ZodNullable<z.ZodString>;
14
14
  field_type: z.ZodNullable<z.ZodString>;
15
15
  updated_at: z.ZodNullable<z.ZodString>;
16
- }, z.core.$strip>>;
17
- }, z.core.$strip>;
16
+ }, z.core.$loose>>;
17
+ }, z.core.$loose>;
18
18
  declare const sendlaneGetCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  page?: number | undefined;
20
20
  per_page?: number | undefined;
@@ -13,8 +13,8 @@ declare const SendlaneGetCustomFieldsOutput: z.ZodObject<{
13
13
  created_at: z.ZodNullable<z.ZodString>;
14
14
  field_type: z.ZodNullable<z.ZodString>;
15
15
  updated_at: z.ZodNullable<z.ZodString>;
16
- }, z.core.$strip>>;
17
- }, z.core.$strip>;
16
+ }, z.core.$loose>>;
17
+ }, z.core.$loose>;
18
18
  declare const sendlaneGetCustomFields: import("@keystrokehq/action").WorkflowActionDefinition<{
19
19
  page?: number | undefined;
20
20
  per_page?: number | undefined;
@@ -12,13 +12,13 @@ const SendlaneGetCustomFields_CustomFieldSchema = z.object({
12
12
  created_at: z.string().describe("Creation datetime").nullable(),
13
13
  field_type: z.string().describe("Type of the custom field").nullable(),
14
14
  updated_at: z.string().describe("Last update datetime").nullable()
15
- }).describe("Represents a custom field in Sendlane.");
15
+ }).passthrough().describe("Represents a custom field in Sendlane.");
16
16
  const sendlaneGetCustomFields = action("SENDLANE_GET_CUSTOM_FIELDS", {
17
17
  slug: "sendlane-get-custom-fields",
18
18
  name: "Get Custom Fields",
19
19
  description: "Retrieve a list of all custom fields in your Sendlane account. Custom fields allow you to store additional contact information beyond the standard fields. Use this tool to discover available custom fields, their IDs, names, tags, and types before creating or updating contacts with custom field data. Supports optional pagination via page and per_page parameters.",
20
20
  input: SendlaneGetCustomFieldsInput,
21
- output: z.object({ data: z.array(SendlaneGetCustomFields_CustomFieldSchema).describe("List of custom field objects") }).describe("Response model for retrieving custom fields.")
21
+ output: z.object({ data: z.array(SendlaneGetCustomFields_CustomFieldSchema).describe("List of custom field objects") }).passthrough().describe("Response model for retrieving custom fields.")
22
22
  });
23
23
  //#endregion
24
24
  export { sendlaneGetCustomFields };
@@ -1 +1 @@
1
- {"version":3,"file":"get-custom-fields.mjs","names":[],"sources":["../../src/actions/get-custom-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCustomFieldsInput = z.object({\n page: z.number().int().describe(\"Page number for pagination. If not specified, defaults to page 1\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. If not specified, the API uses its default limit\").optional(),\n}).describe(\"Request model for retrieving custom fields.\");\nconst SendlaneGetCustomFields_CustomFieldSchema = z.object({\n id: z.number().int().describe(\"Custom field ID\").nullable(),\n tag: z.string().describe(\"Tag used for the custom field\").nullable(),\n name: z.string().describe(\"Name of the custom field\").nullable(),\n created_at: z.string().describe(\"Creation datetime\").nullable(),\n field_type: z.string().describe(\"Type of the custom field\").nullable(),\n updated_at: z.string().describe(\"Last update datetime\").nullable(),\n}).describe(\"Represents a custom field in Sendlane.\");\nexport const SendlaneGetCustomFieldsOutput = z.object({\n data: z.array(SendlaneGetCustomFields_CustomFieldSchema).describe(\"List of custom field objects\"),\n}).describe(\"Response model for retrieving custom fields.\");\n\nexport const sendlaneGetCustomFields = action(\"SENDLANE_GET_CUSTOM_FIELDS\", {\n slug: \"sendlane-get-custom-fields\",\n name: \"Get Custom Fields\",\n description: \"Retrieve a list of all custom fields in your Sendlane account. Custom fields allow you to store additional contact information beyond the standard fields. Use this tool to discover available custom fields, their IDs, names, tags, and types before creating or updating contacts with custom field data. Supports optional pagination via page and per_page parameters.\",\n input: SendlaneGetCustomFieldsInput,\n output: SendlaneGetCustomFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+B,EAAE,OAAO;CACnD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CAC7G,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;AAC/H,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,4CAA4C,EAAE,OAAO;CACzD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CAC1D,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CAC9D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACrE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,wCAAwC;AAKpD,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT2C,EAAE,OAAO,EACpD,MAAM,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,8BAA8B,EAClG,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-custom-fields.mjs","names":[],"sources":["../../src/actions/get-custom-fields.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetCustomFieldsInput = z.object({\n page: z.number().int().describe(\"Page number for pagination. If not specified, defaults to page 1\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. If not specified, the API uses its default limit\").optional(),\n}).describe(\"Request model for retrieving custom fields.\");\nconst SendlaneGetCustomFields_CustomFieldSchema = z.object({\n id: z.number().int().describe(\"Custom field ID\").nullable(),\n tag: z.string().describe(\"Tag used for the custom field\").nullable(),\n name: z.string().describe(\"Name of the custom field\").nullable(),\n created_at: z.string().describe(\"Creation datetime\").nullable(),\n field_type: z.string().describe(\"Type of the custom field\").nullable(),\n updated_at: z.string().describe(\"Last update datetime\").nullable(),\n}).passthrough().describe(\"Represents a custom field in Sendlane.\");\nexport const SendlaneGetCustomFieldsOutput = z.object({\n data: z.array(SendlaneGetCustomFields_CustomFieldSchema).describe(\"List of custom field objects\"),\n}).passthrough().describe(\"Response model for retrieving custom fields.\");\n\nexport const sendlaneGetCustomFields = action(\"SENDLANE_GET_CUSTOM_FIELDS\", {\n slug: \"sendlane-get-custom-fields\",\n name: \"Get Custom Fields\",\n description: \"Retrieve a list of all custom fields in your Sendlane account. Custom fields allow you to store additional contact information beyond the standard fields. Use this tool to discover available custom fields, their IDs, names, tags, and types before creating or updating contacts with custom field data. Supports optional pagination via page and per_page parameters.\",\n input: SendlaneGetCustomFieldsInput,\n output: SendlaneGetCustomFieldsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+B,EAAE,OAAO;CACnD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CAC7G,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;AAC/H,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAM,4CAA4C,EAAE,OAAO;CACzD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CAC1D,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CAC9D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACrE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAKlE,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT2C,EAAE,OAAO,EACpD,MAAM,EAAE,MAAM,yCAAyC,CAAC,CAAC,SAAS,8BAA8B,EAClG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAOhB;AACV,CAAC"}
@@ -12,7 +12,7 @@ const SendlaneGetLists_ListItemSchema = zod.z.object({
12
12
  flagged: zod.z.boolean().describe("Whether the list is flagged").nullable().optional(),
13
13
  created_at: zod.z.string().describe("Timestamp when the list was created").nullable(),
14
14
  description: zod.z.string().describe("List description").nullable().optional()
15
- }).describe("Represents a single mailing list in Sendlane.");
15
+ }).passthrough().describe("Represents a single mailing list in Sendlane.");
16
16
  const SendlaneGetLists_PaginationMetaSchema = zod.z.object({
17
17
  to: zod.z.number().int().describe("Index of last item on current page").nullable().optional(),
18
18
  from: zod.z.number().int().describe("Index of first item on current page").nullable().optional(),
@@ -20,18 +20,18 @@ const SendlaneGetLists_PaginationMetaSchema = zod.z.object({
20
20
  per_page: zod.z.number().int().describe("Number of items per page").nullable(),
21
21
  last_page: zod.z.number().int().describe("Last page number").nullable(),
22
22
  current_page: zod.z.number().int().describe("Current page number").nullable()
23
- }).describe("Pagination metadata for the current result set.");
23
+ }).passthrough().describe("Pagination metadata for the current result set.");
24
24
  const SendlaneGetLists_PaginationLinksSchema = zod.z.object({
25
25
  last: zod.z.string().describe("URL for the last page").nullable().optional(),
26
26
  next: zod.z.string().describe("URL for the next page").nullable().optional(),
27
27
  prev: zod.z.string().describe("URL for the previous page").nullable().optional(),
28
28
  first: zod.z.string().describe("URL for the first page").nullable().optional()
29
- }).describe("Pagination links for navigating through results.");
29
+ }).passthrough().describe("Pagination links for navigating through results.");
30
30
  const SendlaneGetListsOutput = zod.z.object({
31
31
  data: zod.z.array(SendlaneGetLists_ListItemSchema).describe("Array of mailing list objects"),
32
32
  meta: SendlaneGetLists_PaginationMetaSchema.nullable(),
33
33
  links: SendlaneGetLists_PaginationLinksSchema.nullable()
34
- }).describe("Response model for retrieving all mailing lists.");
34
+ }).passthrough().describe("Response model for retrieving all mailing lists.");
35
35
  const sendlaneGetLists = require_action.action("SENDLANE_GET_LISTS", {
36
36
  slug: "sendlane-get-lists",
37
37
  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 SendlaneGetListsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of lists per page (default is 1000)\").optional(),\n}).describe(\"Request model for retrieving all mailing lists. Supports optional pagination.\");\nconst SendlaneGetLists_ListItemSchema = z.object({\n id: z.number().int().describe(\"Unique list identifier\").nullable(),\n name: z.string().describe(\"Name of the contact list\").nullable(),\n status: z.string().describe(\"List status (e.g., Active)\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the list was created\").nullable(),\n description: z.string().describe(\"List description\").nullable().optional(),\n}).describe(\"Represents a single mailing list in Sendlane.\");\nconst SendlaneGetLists_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Index of last item on current page\").nullable().optional(),\n from: z.number().int().describe(\"Index of first item on current page\").nullable().optional(),\n total: z.number().int().describe(\"Total number of lists available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Last page number\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).describe(\"Pagination metadata for the current result set.\");\nconst SendlaneGetLists_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL for the last page\").nullable().optional(),\n next: z.string().describe(\"URL for the next page\").nullable().optional(),\n prev: z.string().describe(\"URL for the previous page\").nullable().optional(),\n first: z.string().describe(\"URL for the first page\").nullable().optional(),\n}).describe(\"Pagination links for navigating through results.\");\nexport const SendlaneGetListsOutput = z.object({\n data: z.array(SendlaneGetLists_ListItemSchema).describe(\"Array of mailing list objects\"),\n meta: SendlaneGetLists_PaginationMetaSchema.nullable(),\n links: SendlaneGetLists_PaginationLinksSchema.nullable(),\n}).describe(\"Response model for retrieving all mailing lists.\");\n\nexport const sendlaneGetLists = action(\"SENDLANE_GET_LISTS\", {\n slug: \"sendlane-get-lists\",\n name: \"Get Lists\",\n description: \"Tool to retrieve all mailing lists. Use when you need to fetch or display all available contact lists with optional pagination.\",\n input: SendlaneGetListsInput,\n output: SendlaneGetListsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwBA,IAAAA,EAAE,OAAO;CAC5C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC7F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,kCAAkCA,IAAAA,EAAE,OAAO;CAC/C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAC3D,MAAM,wCAAwCA,IAAAA,EAAE,OAAO;CACrD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC7E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACzE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAClE,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7D,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAC9D,MAAa,yBAAyBA,IAAAA,EAAE,OAAO;CAC7C,MAAMA,IAAAA,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,+BAA+B;CACvF,MAAM,sCAAsC,SAAS;CACrD,OAAO,uCAAuC,SAAS;AACzD,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAE9D,MAAa,mBAAmBC,eAAAA,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-lists.cjs","names":["z","action"],"sources":["../../src/actions/get-lists.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetListsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of lists per page (default is 1000)\").optional(),\n}).describe(\"Request model for retrieving all mailing lists. Supports optional pagination.\");\nconst SendlaneGetLists_ListItemSchema = z.object({\n id: z.number().int().describe(\"Unique list identifier\").nullable(),\n name: z.string().describe(\"Name of the contact list\").nullable(),\n status: z.string().describe(\"List status (e.g., Active)\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the list was created\").nullable(),\n description: z.string().describe(\"List description\").nullable().optional(),\n}).passthrough().describe(\"Represents a single mailing list in Sendlane.\");\nconst SendlaneGetLists_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Index of last item on current page\").nullable().optional(),\n from: z.number().int().describe(\"Index of first item on current page\").nullable().optional(),\n total: z.number().int().describe(\"Total number of lists available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Last page number\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).passthrough().describe(\"Pagination metadata for the current result set.\");\nconst SendlaneGetLists_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL for the last page\").nullable().optional(),\n next: z.string().describe(\"URL for the next page\").nullable().optional(),\n prev: z.string().describe(\"URL for the previous page\").nullable().optional(),\n first: z.string().describe(\"URL for the first page\").nullable().optional(),\n}).passthrough().describe(\"Pagination links for navigating through results.\");\nexport const SendlaneGetListsOutput = z.object({\n data: z.array(SendlaneGetLists_ListItemSchema).describe(\"Array of mailing list objects\"),\n meta: SendlaneGetLists_PaginationMetaSchema.nullable(),\n links: SendlaneGetLists_PaginationLinksSchema.nullable(),\n}).passthrough().describe(\"Response model for retrieving all mailing lists.\");\n\nexport const sendlaneGetLists = action(\"SENDLANE_GET_LISTS\", {\n slug: \"sendlane-get-lists\",\n name: \"Get Lists\",\n description: \"Tool to retrieve all mailing lists. Use when you need to fetch or display all available contact lists with optional pagination.\",\n input: SendlaneGetListsInput,\n output: SendlaneGetListsOutput,\n});\n"],"mappings":"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"}
@@ -13,7 +13,7 @@ declare const SendlaneGetListsOutput: z.ZodObject<{
13
13
  flagged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
14
14
  created_at: z.ZodNullable<z.ZodString>;
15
15
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
- }, z.core.$strip>>;
16
+ }, z.core.$loose>>;
17
17
  meta: z.ZodNullable<z.ZodObject<{
18
18
  to: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
19
19
  from: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -21,14 +21,14 @@ declare const SendlaneGetListsOutput: z.ZodObject<{
21
21
  per_page: z.ZodNullable<z.ZodNumber>;
22
22
  last_page: z.ZodNullable<z.ZodNumber>;
23
23
  current_page: z.ZodNullable<z.ZodNumber>;
24
- }, z.core.$strip>>;
24
+ }, z.core.$loose>>;
25
25
  links: z.ZodNullable<z.ZodObject<{
26
26
  last: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
27
  next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
28
  prev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
29
  first: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
- }, z.core.$strip>>;
31
- }, z.core.$strip>;
30
+ }, z.core.$loose>>;
31
+ }, z.core.$loose>;
32
32
  declare const sendlaneGetLists: import("@keystrokehq/action").WorkflowActionDefinition<{
33
33
  page?: number | undefined;
34
34
  per_page?: number | undefined;
@@ -13,7 +13,7 @@ declare const SendlaneGetListsOutput: z.ZodObject<{
13
13
  flagged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
14
14
  created_at: z.ZodNullable<z.ZodString>;
15
15
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
- }, z.core.$strip>>;
16
+ }, z.core.$loose>>;
17
17
  meta: z.ZodNullable<z.ZodObject<{
18
18
  to: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
19
19
  from: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -21,14 +21,14 @@ declare const SendlaneGetListsOutput: z.ZodObject<{
21
21
  per_page: z.ZodNullable<z.ZodNumber>;
22
22
  last_page: z.ZodNullable<z.ZodNumber>;
23
23
  current_page: z.ZodNullable<z.ZodNumber>;
24
- }, z.core.$strip>>;
24
+ }, z.core.$loose>>;
25
25
  links: z.ZodNullable<z.ZodObject<{
26
26
  last: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
27
  next: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
28
  prev: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
29
  first: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
- }, z.core.$strip>>;
31
- }, z.core.$strip>;
30
+ }, z.core.$loose>>;
31
+ }, z.core.$loose>;
32
32
  declare const sendlaneGetLists: import("@keystrokehq/action").WorkflowActionDefinition<{
33
33
  page?: number | undefined;
34
34
  per_page?: number | undefined;
@@ -12,7 +12,7 @@ const SendlaneGetLists_ListItemSchema = z.object({
12
12
  flagged: z.boolean().describe("Whether the list is flagged").nullable().optional(),
13
13
  created_at: z.string().describe("Timestamp when the list was created").nullable(),
14
14
  description: z.string().describe("List description").nullable().optional()
15
- }).describe("Represents a single mailing list in Sendlane.");
15
+ }).passthrough().describe("Represents a single mailing list in Sendlane.");
16
16
  const SendlaneGetLists_PaginationMetaSchema = z.object({
17
17
  to: z.number().int().describe("Index of last item on current page").nullable().optional(),
18
18
  from: z.number().int().describe("Index of first item on current page").nullable().optional(),
@@ -20,13 +20,13 @@ const SendlaneGetLists_PaginationMetaSchema = z.object({
20
20
  per_page: z.number().int().describe("Number of items per page").nullable(),
21
21
  last_page: z.number().int().describe("Last page number").nullable(),
22
22
  current_page: z.number().int().describe("Current page number").nullable()
23
- }).describe("Pagination metadata for the current result set.");
23
+ }).passthrough().describe("Pagination metadata for the current result set.");
24
24
  const SendlaneGetLists_PaginationLinksSchema = z.object({
25
25
  last: z.string().describe("URL for the last page").nullable().optional(),
26
26
  next: z.string().describe("URL for the next page").nullable().optional(),
27
27
  prev: z.string().describe("URL for the previous page").nullable().optional(),
28
28
  first: z.string().describe("URL for the first page").nullable().optional()
29
- }).describe("Pagination links for navigating through results.");
29
+ }).passthrough().describe("Pagination links for navigating through results.");
30
30
  const sendlaneGetLists = action("SENDLANE_GET_LISTS", {
31
31
  slug: "sendlane-get-lists",
32
32
  name: "Get Lists",
@@ -36,7 +36,7 @@ const sendlaneGetLists = action("SENDLANE_GET_LISTS", {
36
36
  data: z.array(SendlaneGetLists_ListItemSchema).describe("Array of mailing list objects"),
37
37
  meta: SendlaneGetLists_PaginationMetaSchema.nullable(),
38
38
  links: SendlaneGetLists_PaginationLinksSchema.nullable()
39
- }).describe("Response model for retrieving all mailing lists.")
39
+ }).passthrough().describe("Response model for retrieving all mailing lists.")
40
40
  });
41
41
  //#endregion
42
42
  export { sendlaneGetLists };
@@ -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 SendlaneGetListsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of lists per page (default is 1000)\").optional(),\n}).describe(\"Request model for retrieving all mailing lists. Supports optional pagination.\");\nconst SendlaneGetLists_ListItemSchema = z.object({\n id: z.number().int().describe(\"Unique list identifier\").nullable(),\n name: z.string().describe(\"Name of the contact list\").nullable(),\n status: z.string().describe(\"List status (e.g., Active)\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the list was created\").nullable(),\n description: z.string().describe(\"List description\").nullable().optional(),\n}).describe(\"Represents a single mailing list in Sendlane.\");\nconst SendlaneGetLists_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Index of last item on current page\").nullable().optional(),\n from: z.number().int().describe(\"Index of first item on current page\").nullable().optional(),\n total: z.number().int().describe(\"Total number of lists available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Last page number\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).describe(\"Pagination metadata for the current result set.\");\nconst SendlaneGetLists_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL for the last page\").nullable().optional(),\n next: z.string().describe(\"URL for the next page\").nullable().optional(),\n prev: z.string().describe(\"URL for the previous page\").nullable().optional(),\n first: z.string().describe(\"URL for the first page\").nullable().optional(),\n}).describe(\"Pagination links for navigating through results.\");\nexport const SendlaneGetListsOutput = z.object({\n data: z.array(SendlaneGetLists_ListItemSchema).describe(\"Array of mailing list objects\"),\n meta: SendlaneGetLists_PaginationMetaSchema.nullable(),\n links: SendlaneGetLists_PaginationLinksSchema.nullable(),\n}).describe(\"Response model for retrieving all mailing lists.\");\n\nexport const sendlaneGetLists = action(\"SENDLANE_GET_LISTS\", {\n slug: \"sendlane-get-lists\",\n name: \"Get Lists\",\n description: \"Tool to retrieve all mailing lists. Use when you need to fetch or display all available contact lists with optional pagination.\",\n input: SendlaneGetListsInput,\n output: SendlaneGetListsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwB,EAAE,OAAO;CAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC7F,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,kCAAkC,EAAE,OAAO;CAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAC3D,MAAM,wCAAwC,EAAE,OAAO;CACrD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC7E,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAClE,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7D,MAAM,yCAAyC,EAAE,OAAO;CACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,SAAS,kDAAkD;AAO9D,MAAa,mBAAmB,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXoC,EAAE,OAAO;EAC7C,MAAM,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,+BAA+B;EACvF,MAAM,sCAAsC,SAAS;EACrD,OAAO,uCAAuC,SAAS;CACzD,CAAC,CAAC,CAAC,SAAS,kDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-lists.mjs","names":[],"sources":["../../src/actions/get-lists.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneGetListsInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results (default is 1)\").optional(),\n per_page: z.number().int().describe(\"Number of lists per page (default is 1000)\").optional(),\n}).describe(\"Request model for retrieving all mailing lists. Supports optional pagination.\");\nconst SendlaneGetLists_ListItemSchema = z.object({\n id: z.number().int().describe(\"Unique list identifier\").nullable(),\n name: z.string().describe(\"Name of the contact list\").nullable(),\n status: z.string().describe(\"List status (e.g., Active)\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the list was created\").nullable(),\n description: z.string().describe(\"List description\").nullable().optional(),\n}).passthrough().describe(\"Represents a single mailing list in Sendlane.\");\nconst SendlaneGetLists_PaginationMetaSchema = z.object({\n to: z.number().int().describe(\"Index of last item on current page\").nullable().optional(),\n from: z.number().int().describe(\"Index of first item on current page\").nullable().optional(),\n total: z.number().int().describe(\"Total number of lists available\").nullable(),\n per_page: z.number().int().describe(\"Number of items per page\").nullable(),\n last_page: z.number().int().describe(\"Last page number\").nullable(),\n current_page: z.number().int().describe(\"Current page number\").nullable(),\n}).passthrough().describe(\"Pagination metadata for the current result set.\");\nconst SendlaneGetLists_PaginationLinksSchema = z.object({\n last: z.string().describe(\"URL for the last page\").nullable().optional(),\n next: z.string().describe(\"URL for the next page\").nullable().optional(),\n prev: z.string().describe(\"URL for the previous page\").nullable().optional(),\n first: z.string().describe(\"URL for the first page\").nullable().optional(),\n}).passthrough().describe(\"Pagination links for navigating through results.\");\nexport const SendlaneGetListsOutput = z.object({\n data: z.array(SendlaneGetLists_ListItemSchema).describe(\"Array of mailing list objects\"),\n meta: SendlaneGetLists_PaginationMetaSchema.nullable(),\n links: SendlaneGetLists_PaginationLinksSchema.nullable(),\n}).passthrough().describe(\"Response model for retrieving all mailing lists.\");\n\nexport const sendlaneGetLists = action(\"SENDLANE_GET_LISTS\", {\n slug: \"sendlane-get-lists\",\n name: \"Get Lists\",\n description: \"Tool to retrieve all mailing lists. Use when you need to fetch or display all available contact lists with optional pagination.\",\n input: SendlaneGetListsInput,\n output: SendlaneGetListsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwB,EAAE,OAAO;CAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC7F,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,kCAAkC,EAAE,OAAO;CAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAA+C;AACzE,MAAM,wCAAwC,EAAE,OAAO;CACrD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC7E,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAClE,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAAiD;AAC3E,MAAM,yCAAyC,EAAE,OAAO;CACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kDAAkD;AAO5E,MAAa,mBAAmB,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXoC,EAAE,OAAO;EAC7C,MAAM,EAAE,MAAM,+BAA+B,CAAC,CAAC,SAAS,+BAA+B;EACvF,MAAM,sCAAsC,SAAS;EACrD,OAAO,uCAAuC,SAAS;CACzD,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kDAOhB;AACV,CAAC"}
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/list-delete.ts
4
4
  const SendlaneListDeleteInput = zod.z.object({ list_id: zod.z.number().int().describe("ID of the mailing list to delete.") }).describe("Request schema for deleting a list.");
5
- const SendlaneListDeleteOutput = zod.z.object({ success: zod.z.boolean().default(true).describe("Indicates the delete operation was successful.").nullable().optional() }).describe("Response schema for delete list operation.");
5
+ const SendlaneListDeleteOutput = zod.z.object({ success: zod.z.boolean().default(true).describe("Indicates the delete operation was successful.").nullable().optional() }).passthrough().describe("Response schema for delete list operation.");
6
6
  const sendlaneListDelete = require_action.action("SENDLANE_LIST_DELETE", {
7
7
  slug: "sendlane-list-delete",
8
8
  name: "Delete List",
@@ -1 +1 @@
1
- {"version":3,"file":"list-delete.cjs","names":["z","action"],"sources":["../../src/actions/list-delete.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneListDeleteInput = z.object({\n list_id: z.number().int().describe(\"ID of the mailing list to delete.\"),\n}).describe(\"Request schema for deleting a list.\");\nexport const SendlaneListDeleteOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates the delete operation was successful.\").nullable().optional(),\n}).describe(\"Response schema for delete list operation.\");\n\nexport const sendlaneListDelete = action(\"SENDLANE_LIST_DELETE\", {\n slug: \"sendlane-list-delete\",\n name: \"Delete List\",\n description: \"Tool to delete a mailing list. Use when you need to remove an unwanted list after confirming its list_id.\",\n input: SendlaneListDeleteInput,\n output: SendlaneListDeleteOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO,EAC9C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,EACxE,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpH,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAExD,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-delete.cjs","names":["z","action"],"sources":["../../src/actions/list-delete.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneListDeleteInput = z.object({\n list_id: z.number().int().describe(\"ID of the mailing list to delete.\"),\n}).describe(\"Request schema for deleting a list.\");\nexport const SendlaneListDeleteOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates the delete operation was successful.\").nullable().optional(),\n}).passthrough().describe(\"Response schema for delete list operation.\");\n\nexport const sendlaneListDelete = action(\"SENDLANE_LIST_DELETE\", {\n slug: \"sendlane-list-delete\",\n name: \"Delete List\",\n description: \"Tool to delete a mailing list. Use when you need to remove an unwanted list after confirming its list_id.\",\n input: SendlaneListDeleteInput,\n output: SendlaneListDeleteOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO,EAC9C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,EACxE,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAA4C;AAEtE,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const SendlaneListDeleteInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const SendlaneListDeleteOutput: z.ZodObject<{
8
8
  success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const sendlaneListDelete: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  list_id: number;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const SendlaneListDeleteInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const SendlaneListDeleteOutput: z.ZodObject<{
8
8
  success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const sendlaneListDelete: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  list_id: number;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const sendlaneListDelete = action("SENDLANE_LIST_DELETE", {
5
5
  name: "Delete List",
6
6
  description: "Tool to delete a mailing list. Use when you need to remove an unwanted list after confirming its list_id.",
7
7
  input: z.object({ list_id: z.number().int().describe("ID of the mailing list to delete.") }).describe("Request schema for deleting a list."),
8
- output: z.object({ success: z.boolean().default(true).describe("Indicates the delete operation was successful.").nullable().optional() }).describe("Response schema for delete list operation.")
8
+ output: z.object({ success: z.boolean().default(true).describe("Indicates the delete operation was successful.").nullable().optional() }).passthrough().describe("Response schema for delete list operation.")
9
9
  });
10
10
  //#endregion
11
11
  export { sendlaneListDelete };
@@ -1 +1 @@
1
- {"version":3,"file":"list-delete.mjs","names":[],"sources":["../../src/actions/list-delete.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneListDeleteInput = z.object({\n list_id: z.number().int().describe(\"ID of the mailing list to delete.\"),\n}).describe(\"Request schema for deleting a list.\");\nexport const SendlaneListDeleteOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates the delete operation was successful.\").nullable().optional(),\n}).describe(\"Response schema for delete list operation.\");\n\nexport const sendlaneListDelete = action(\"SENDLANE_LIST_DELETE\", {\n slug: \"sendlane-list-delete\",\n name: \"Delete List\",\n description: \"Tool to delete a mailing list. Use when you need to remove an unwanted list after confirming its list_id.\",\n input: SendlaneListDeleteInput,\n output: SendlaneListDeleteOutput,\n});\n"],"mappings":";;AAWA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXqC,EAAE,OAAO,EAC9C,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,EACxE,CAAC,CAAC,CAAC,SAAS,qCASH;CACP,QATsC,EAAE,OAAO,EAC/C,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpH,CAAC,CAAC,CAAC,SAAS,4CAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-delete.mjs","names":[],"sources":["../../src/actions/list-delete.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneListDeleteInput = z.object({\n list_id: z.number().int().describe(\"ID of the mailing list to delete.\"),\n}).describe(\"Request schema for deleting a list.\");\nexport const SendlaneListDeleteOutput = z.object({\n success: z.boolean().default(true).describe(\"Indicates the delete operation was successful.\").nullable().optional(),\n}).passthrough().describe(\"Response schema for delete list operation.\");\n\nexport const sendlaneListDelete = action(\"SENDLANE_LIST_DELETE\", {\n slug: \"sendlane-list-delete\",\n name: \"Delete List\",\n description: \"Tool to delete a mailing list. Use when you need to remove an unwanted list after confirming its list_id.\",\n input: SendlaneListDeleteInput,\n output: SendlaneListDeleteOutput,\n});\n"],"mappings":";;AAWA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXqC,EAAE,OAAO,EAC9C,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,EACxE,CAAC,CAAC,CAAC,SAAS,qCASH;CACP,QATsC,EAAE,OAAO,EAC/C,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAOhB;AACV,CAAC"}
@@ -9,8 +9,8 @@ const SendlanePostList_PostListResponseDataSchema = zod.z.object({
9
9
  flagged: zod.z.boolean().describe("Whether the list is flagged.").nullable().optional(),
10
10
  created_at: zod.z.string().describe("Timestamp of creation.").nullable(),
11
11
  description: zod.z.string().describe("List description.").nullable().optional()
12
- }).describe("Details of the created list.");
13
- const SendlanePostListOutput = zod.z.object({ data: SendlanePostList_PostListResponseDataSchema.nullable() }).describe("Response schema for creating a list.");
12
+ }).passthrough().describe("Details of the created list.");
13
+ const SendlanePostListOutput = zod.z.object({ data: SendlanePostList_PostListResponseDataSchema.nullable() }).passthrough().describe("Response schema for creating a list.");
14
14
  const sendlanePostList = require_action.action("SENDLANE_POST_LIST", {
15
15
  slug: "sendlane-post-list",
16
16
  name: "Create List",
@@ -1 +1 @@
1
- {"version":3,"file":"post-list.cjs","names":["z","action"],"sources":["../../src/actions/post-list.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlanePostListInput = z.object({\n name: z.string().describe(\"The name of the list. This should be a descriptive, unique identifier for the mailing list (e.g., 'VIP Customers', 'Weekly Newsletter', 'Product Launch 2026').\"),\n}).describe(\"Request schema for creating a new list.\");\nconst SendlanePostList_PostListResponseDataSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the new list.\").nullable(),\n name: z.string().describe(\"Name of the list.\").nullable(),\n status: z.string().describe(\"List status (e.g., Active).\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged.\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of creation.\").nullable(),\n description: z.string().describe(\"List description.\").nullable().optional(),\n}).describe(\"Details of the created list.\");\nexport const SendlanePostListOutput = z.object({\n data: SendlanePostList_PostListResponseDataSchema.nullable(),\n}).describe(\"Response schema for creating a list.\");\n\nexport const sendlanePostList = action(\"SENDLANE_POST_LIST\", {\n slug: \"sendlane-post-list\",\n name: \"Create List\",\n description: \"Tool to create a new list. Use when you need to add a brand-new mailing list before sending campaigns.\",\n input: SendlanePostListInput,\n output: SendlanePostListOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwBA,IAAAA,EAAE,OAAO,EAC5C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iKAAiK,EAC7L,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,8CAA8CA,IAAAA,EAAE,OAAO;CAC3D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC7E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACnE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,SAAS,8BAA8B;AAC1C,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,MAAM,4CAA4C,SAAS,EAC7D,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAElD,MAAa,mBAAmBC,eAAAA,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"post-list.cjs","names":["z","action"],"sources":["../../src/actions/post-list.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlanePostListInput = z.object({\n name: z.string().describe(\"The name of the list. This should be a descriptive, unique identifier for the mailing list (e.g., 'VIP Customers', 'Weekly Newsletter', 'Product Launch 2026').\"),\n}).describe(\"Request schema for creating a new list.\");\nconst SendlanePostList_PostListResponseDataSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the new list.\").nullable(),\n name: z.string().describe(\"Name of the list.\").nullable(),\n status: z.string().describe(\"List status (e.g., Active).\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged.\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of creation.\").nullable(),\n description: z.string().describe(\"List description.\").nullable().optional(),\n}).passthrough().describe(\"Details of the created list.\");\nexport const SendlanePostListOutput = z.object({\n data: SendlanePostList_PostListResponseDataSchema.nullable(),\n}).passthrough().describe(\"Response schema for creating a list.\");\n\nexport const sendlanePostList = action(\"SENDLANE_POST_LIST\", {\n slug: \"sendlane-post-list\",\n name: \"Create List\",\n description: \"Tool to create a new list. Use when you need to add a brand-new mailing list before sending campaigns.\",\n input: SendlanePostListInput,\n output: SendlanePostListOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwBA,IAAAA,EAAE,OAAO,EAC5C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iKAAiK,EAC7L,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,8CAA8CA,IAAAA,EAAE,OAAO;CAC3D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC7E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACnE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8BAA8B;AACxD,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,MAAM,4CAA4C,SAAS,EAC7D,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAEhE,MAAa,mBAAmBC,eAAAA,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -12,8 +12,8 @@ declare const SendlanePostListOutput: z.ZodObject<{
12
12
  flagged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13
13
  created_at: z.ZodNullable<z.ZodString>;
14
14
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
- }, z.core.$strip>>;
16
- }, z.core.$strip>;
15
+ }, z.core.$loose>>;
16
+ }, z.core.$loose>;
17
17
  declare const sendlanePostList: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  name: string;
19
19
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -12,8 +12,8 @@ declare const SendlanePostListOutput: z.ZodObject<{
12
12
  flagged: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13
13
  created_at: z.ZodNullable<z.ZodString>;
14
14
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
- }, z.core.$strip>>;
16
- }, z.core.$strip>;
15
+ }, z.core.$loose>>;
16
+ }, z.core.$loose>;
17
17
  declare const sendlanePostList: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  name: string;
19
19
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -9,13 +9,13 @@ const SendlanePostList_PostListResponseDataSchema = z.object({
9
9
  flagged: z.boolean().describe("Whether the list is flagged.").nullable().optional(),
10
10
  created_at: z.string().describe("Timestamp of creation.").nullable(),
11
11
  description: z.string().describe("List description.").nullable().optional()
12
- }).describe("Details of the created list.");
12
+ }).passthrough().describe("Details of the created list.");
13
13
  const sendlanePostList = action("SENDLANE_POST_LIST", {
14
14
  slug: "sendlane-post-list",
15
15
  name: "Create List",
16
16
  description: "Tool to create a new list. Use when you need to add a brand-new mailing list before sending campaigns.",
17
17
  input: SendlanePostListInput,
18
- output: z.object({ data: SendlanePostList_PostListResponseDataSchema.nullable() }).describe("Response schema for creating a list.")
18
+ output: z.object({ data: SendlanePostList_PostListResponseDataSchema.nullable() }).passthrough().describe("Response schema for creating a list.")
19
19
  });
20
20
  //#endregion
21
21
  export { sendlanePostList };
@@ -1 +1 @@
1
- {"version":3,"file":"post-list.mjs","names":[],"sources":["../../src/actions/post-list.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlanePostListInput = z.object({\n name: z.string().describe(\"The name of the list. This should be a descriptive, unique identifier for the mailing list (e.g., 'VIP Customers', 'Weekly Newsletter', 'Product Launch 2026').\"),\n}).describe(\"Request schema for creating a new list.\");\nconst SendlanePostList_PostListResponseDataSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the new list.\").nullable(),\n name: z.string().describe(\"Name of the list.\").nullable(),\n status: z.string().describe(\"List status (e.g., Active).\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged.\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of creation.\").nullable(),\n description: z.string().describe(\"List description.\").nullable().optional(),\n}).describe(\"Details of the created list.\");\nexport const SendlanePostListOutput = z.object({\n data: SendlanePostList_PostListResponseDataSchema.nullable(),\n}).describe(\"Response schema for creating a list.\");\n\nexport const sendlanePostList = action(\"SENDLANE_POST_LIST\", {\n slug: \"sendlane-post-list\",\n name: \"Create List\",\n description: \"Tool to create a new list. Use when you need to add a brand-new mailing list before sending campaigns.\",\n input: SendlanePostListInput,\n output: SendlanePostListOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwB,EAAE,OAAO,EAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iKAAiK,EAC7L,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,8CAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC7E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACnE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,SAAS,8BAA8B;AAK1C,MAAa,mBAAmB,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToC,EAAE,OAAO,EAC7C,MAAM,4CAA4C,SAAS,EAC7D,CAAC,CAAC,CAAC,SAAS,sCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"post-list.mjs","names":[],"sources":["../../src/actions/post-list.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlanePostListInput = z.object({\n name: z.string().describe(\"The name of the list. This should be a descriptive, unique identifier for the mailing list (e.g., 'VIP Customers', 'Weekly Newsletter', 'Product Launch 2026').\"),\n}).describe(\"Request schema for creating a new list.\");\nconst SendlanePostList_PostListResponseDataSchema = z.object({\n id: z.number().int().describe(\"Unique identifier of the new list.\").nullable(),\n name: z.string().describe(\"Name of the list.\").nullable(),\n status: z.string().describe(\"List status (e.g., Active).\").nullable().optional(),\n flagged: z.boolean().describe(\"Whether the list is flagged.\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp of creation.\").nullable(),\n description: z.string().describe(\"List description.\").nullable().optional(),\n}).passthrough().describe(\"Details of the created list.\");\nexport const SendlanePostListOutput = z.object({\n data: SendlanePostList_PostListResponseDataSchema.nullable(),\n}).passthrough().describe(\"Response schema for creating a list.\");\n\nexport const sendlanePostList = action(\"SENDLANE_POST_LIST\", {\n slug: \"sendlane-post-list\",\n name: \"Create List\",\n description: \"Tool to create a new list. Use when you need to add a brand-new mailing list before sending campaigns.\",\n input: SendlanePostListInput,\n output: SendlanePostListOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwB,EAAE,OAAO,EAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iKAAiK,EAC7L,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,8CAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC7E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACxD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACnE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8BAA8B;AAKxD,MAAa,mBAAmB,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToC,EAAE,OAAO,EAC7C,MAAM,4CAA4C,SAAS,EAC7D,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAOhB;AACV,CAAC"}
@@ -7,8 +7,8 @@ const SendlaneTagCreate_TagDataSchema = zod.z.object({
7
7
  name: zod.z.string().describe("Name of the tag.").nullable(),
8
8
  created_at: zod.z.string().describe("Timestamp when the tag was created.").nullable(),
9
9
  audience_count: zod.z.number().int().default(0).describe("Number of contacts with this tag.").nullable().optional()
10
- }).describe("Tag object returned after creation.");
11
- const SendlaneTagCreateOutput = zod.z.object({ data: SendlaneTagCreate_TagDataSchema.nullable() }).describe("Response schema for tag creation.");
10
+ }).passthrough().describe("Tag object returned after creation.");
11
+ const SendlaneTagCreateOutput = zod.z.object({ data: SendlaneTagCreate_TagDataSchema.nullable() }).passthrough().describe("Response schema for tag creation.");
12
12
  const sendlaneTagCreate = require_action.action("SENDLANE_TAG_CREATE", {
13
13
  slug: "sendlane-tag-create",
14
14
  name: "Create Tag",
@@ -1 +1 @@
1
- {"version":3,"file":"tag-create.cjs","names":["z","action"],"sources":["../../src/actions/tag-create.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneTagCreateInput = z.object({\n name: z.string().describe(\"Name for the new tag.\"),\n}).describe(\"Request schema for creating a tag.\");\nconst SendlaneTagCreate_TagDataSchema = z.object({\n id: z.number().int().describe(\"Unique tag identifier.\").nullable(),\n name: z.string().describe(\"Name of the tag.\").nullable(),\n created_at: z.string().describe(\"Timestamp when the tag was created.\").nullable(),\n audience_count: z.number().int().default(0).describe(\"Number of contacts with this tag.\").nullable().optional(),\n}).describe(\"Tag object returned after creation.\");\nexport const SendlaneTagCreateOutput = z.object({\n data: SendlaneTagCreate_TagDataSchema.nullable(),\n}).describe(\"Response schema for tag creation.\");\n\nexport const sendlaneTagCreate = action(\"SENDLANE_TAG_CREATE\", {\n slug: \"sendlane-tag-create\",\n name: \"Create Tag\",\n description: \"Tool to create a new tag. Use when you need to segment subscribers using labels.\",\n input: SendlaneTagCreateInput,\n output: SendlaneTagCreateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,EACnD,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAM,kCAAkCA,IAAAA,EAAE,OAAO;CAC/C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChH,CAAC,CAAC,CAAC,SAAS,qCAAqC;AACjD,MAAa,0BAA0BA,IAAAA,EAAE,OAAO,EAC9C,MAAM,gCAAgC,SAAS,EACjD,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAE/C,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"tag-create.cjs","names":["z","action"],"sources":["../../src/actions/tag-create.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneTagCreateInput = z.object({\n name: z.string().describe(\"Name for the new tag.\"),\n}).describe(\"Request schema for creating a tag.\");\nconst SendlaneTagCreate_TagDataSchema = z.object({\n id: z.number().int().describe(\"Unique tag identifier.\").nullable(),\n name: z.string().describe(\"Name of the tag.\").nullable(),\n created_at: z.string().describe(\"Timestamp when the tag was created.\").nullable(),\n audience_count: z.number().int().default(0).describe(\"Number of contacts with this tag.\").nullable().optional(),\n}).passthrough().describe(\"Tag object returned after creation.\");\nexport const SendlaneTagCreateOutput = z.object({\n data: SendlaneTagCreate_TagDataSchema.nullable(),\n}).passthrough().describe(\"Response schema for tag creation.\");\n\nexport const sendlaneTagCreate = action(\"SENDLANE_TAG_CREATE\", {\n slug: \"sendlane-tag-create\",\n name: \"Create Tag\",\n description: \"Tool to create a new tag. Use when you need to segment subscribers using labels.\",\n input: SendlaneTagCreateInput,\n output: SendlaneTagCreateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,EACnD,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAM,kCAAkCA,IAAAA,EAAE,OAAO;CAC/C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,qCAAqC;AAC/D,MAAa,0BAA0BA,IAAAA,EAAE,OAAO,EAC9C,MAAM,gCAAgC,SAAS,EACjD,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC;AAE7D,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -10,8 +10,8 @@ declare const SendlaneTagCreateOutput: z.ZodObject<{
10
10
  name: z.ZodNullable<z.ZodString>;
11
11
  created_at: z.ZodNullable<z.ZodString>;
12
12
  audience_count: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
13
- }, z.core.$strip>>;
14
- }, z.core.$strip>;
13
+ }, z.core.$loose>>;
14
+ }, z.core.$loose>;
15
15
  declare const sendlaneTagCreate: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  name: string;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -10,8 +10,8 @@ declare const SendlaneTagCreateOutput: z.ZodObject<{
10
10
  name: z.ZodNullable<z.ZodString>;
11
11
  created_at: z.ZodNullable<z.ZodString>;
12
12
  audience_count: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
13
- }, z.core.$strip>>;
14
- }, z.core.$strip>;
13
+ }, z.core.$loose>>;
14
+ }, z.core.$loose>;
15
15
  declare const sendlaneTagCreate: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  name: string;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -7,13 +7,13 @@ const SendlaneTagCreate_TagDataSchema = z.object({
7
7
  name: z.string().describe("Name of the tag.").nullable(),
8
8
  created_at: z.string().describe("Timestamp when the tag was created.").nullable(),
9
9
  audience_count: z.number().int().default(0).describe("Number of contacts with this tag.").nullable().optional()
10
- }).describe("Tag object returned after creation.");
10
+ }).passthrough().describe("Tag object returned after creation.");
11
11
  const sendlaneTagCreate = action("SENDLANE_TAG_CREATE", {
12
12
  slug: "sendlane-tag-create",
13
13
  name: "Create Tag",
14
14
  description: "Tool to create a new tag. Use when you need to segment subscribers using labels.",
15
15
  input: SendlaneTagCreateInput,
16
- output: z.object({ data: SendlaneTagCreate_TagDataSchema.nullable() }).describe("Response schema for tag creation.")
16
+ output: z.object({ data: SendlaneTagCreate_TagDataSchema.nullable() }).passthrough().describe("Response schema for tag creation.")
17
17
  });
18
18
  //#endregion
19
19
  export { sendlaneTagCreate };
@@ -1 +1 @@
1
- {"version":3,"file":"tag-create.mjs","names":[],"sources":["../../src/actions/tag-create.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneTagCreateInput = z.object({\n name: z.string().describe(\"Name for the new tag.\"),\n}).describe(\"Request schema for creating a tag.\");\nconst SendlaneTagCreate_TagDataSchema = z.object({\n id: z.number().int().describe(\"Unique tag identifier.\").nullable(),\n name: z.string().describe(\"Name of the tag.\").nullable(),\n created_at: z.string().describe(\"Timestamp when the tag was created.\").nullable(),\n audience_count: z.number().int().default(0).describe(\"Number of contacts with this tag.\").nullable().optional(),\n}).describe(\"Tag object returned after creation.\");\nexport const SendlaneTagCreateOutput = z.object({\n data: SendlaneTagCreate_TagDataSchema.nullable(),\n}).describe(\"Response schema for tag creation.\");\n\nexport const sendlaneTagCreate = action(\"SENDLANE_TAG_CREATE\", {\n slug: \"sendlane-tag-create\",\n name: \"Create Tag\",\n description: \"Tool to create a new tag. Use when you need to segment subscribers using labels.\",\n input: SendlaneTagCreateInput,\n output: SendlaneTagCreateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyB,EAAE,OAAO,EAC7C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,EACnD,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAM,kCAAkC,EAAE,OAAO;CAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,gBAAgB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChH,CAAC,CAAC,CAAC,SAAS,qCAAqC;AAKjD,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATqC,EAAE,OAAO,EAC9C,MAAM,gCAAgC,SAAS,EACjD,CAAC,CAAC,CAAC,SAAS,mCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"tag-create.mjs","names":[],"sources":["../../src/actions/tag-create.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SendlaneTagCreateInput = z.object({\n name: z.string().describe(\"Name for the new tag.\"),\n}).describe(\"Request schema for creating a tag.\");\nconst SendlaneTagCreate_TagDataSchema = z.object({\n id: z.number().int().describe(\"Unique tag identifier.\").nullable(),\n name: z.string().describe(\"Name of the tag.\").nullable(),\n created_at: z.string().describe(\"Timestamp when the tag was created.\").nullable(),\n audience_count: z.number().int().default(0).describe(\"Number of contacts with this tag.\").nullable().optional(),\n}).passthrough().describe(\"Tag object returned after creation.\");\nexport const SendlaneTagCreateOutput = z.object({\n data: SendlaneTagCreate_TagDataSchema.nullable(),\n}).passthrough().describe(\"Response schema for tag creation.\");\n\nexport const sendlaneTagCreate = action(\"SENDLANE_TAG_CREATE\", {\n slug: \"sendlane-tag-create\",\n name: \"Create Tag\",\n description: \"Tool to create a new tag. Use when you need to segment subscribers using labels.\",\n input: SendlaneTagCreateInput,\n output: SendlaneTagCreateOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyB,EAAE,OAAO,EAC7C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,EACnD,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAChD,MAAM,kCAAkC,EAAE,OAAO;CAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAChF,gBAAgB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,qCAAqC;AAK/D,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATqC,EAAE,OAAO,EAC9C,MAAM,gCAAgC,SAAS,EACjD,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAOhB;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const sendlaneCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/sendlane",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Sendlane API Token",
13
13
  "secret": true,
14
14
  "description": "The API access token from your Sendlane dashboard."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendlaneCatalog = {\n \"slug\": \"sendlane\",\n \"name\": \"Sendlane\",\n \"description\": \"Sendlane is a cloud-based marketing automation platform that helps eCommerce businesses engage customers through personalized email and SMS campaigns.\",\n \"category\": \"Marketing Automation\",\n \"logo\": \"https://logos.composio.dev/api/sendlane\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Sendlane API Token\",\n \"secret\": true,\n \"description\": \"The API access token from your Sendlane dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendlaneCatalog = {\n \"slug\": \"sendlane\",\n \"name\": \"Sendlane\",\n \"description\": \"Sendlane is a cloud-based marketing automation platform that helps eCommerce businesses engage customers through personalized email and SMS campaigns.\",\n \"category\": \"Marketing Automation\",\n \"logo\": \"https://logos.composio.dev/api/sendlane\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Sendlane API Token\",\n \"secret\": true,\n \"description\": \"The API access token from your Sendlane dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const sendlaneCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "Sendlane API Token";
14
14
  readonly secret: true;
15
15
  readonly description: "The API access token from your Sendlane dashboard.";
@@ -9,7 +9,7 @@ declare const sendlaneCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "Sendlane API Token";
14
14
  readonly secret: true;
15
15
  readonly description: "The API access token from your Sendlane dashboard.";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const sendlaneCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/sendlane",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "Sendlane API Token",
13
13
  "secret": true,
14
14
  "description": "The API access token from your Sendlane dashboard."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendlaneCatalog = {\n \"slug\": \"sendlane\",\n \"name\": \"Sendlane\",\n \"description\": \"Sendlane is a cloud-based marketing automation platform that helps eCommerce businesses engage customers through personalized email and SMS campaigns.\",\n \"category\": \"Marketing Automation\",\n \"logo\": \"https://logos.composio.dev/api/sendlane\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"Sendlane API Token\",\n \"secret\": true,\n \"description\": \"The API access token from your Sendlane dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sendlaneCatalog = {\n \"slug\": \"sendlane\",\n \"name\": \"Sendlane\",\n \"description\": \"Sendlane is a cloud-based marketing automation platform that helps eCommerce businesses engage customers through personalized email and SMS campaigns.\",\n \"category\": \"Marketing Automation\",\n \"logo\": \"https://logos.composio.dev/api/sendlane\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Sendlane API Token\",\n \"secret\": true,\n \"description\": \"The API access token from your Sendlane dashboard.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/sendlane",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"