@keystrokehq/remarkety 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/get-campaigns.cjs +29 -0
  7. package/dist/actions/get-campaigns.cjs.map +1 -0
  8. package/dist/actions/get-campaigns.d.cts +9 -0
  9. package/dist/actions/get-campaigns.d.cts.map +1 -0
  10. package/dist/actions/get-campaigns.d.mts +9 -0
  11. package/dist/actions/get-campaigns.d.mts.map +1 -0
  12. package/dist/actions/get-campaigns.mjs +28 -0
  13. package/dist/actions/get-campaigns.mjs.map +1 -0
  14. package/dist/actions/get-customers.cjs +38 -0
  15. package/dist/actions/get-customers.cjs.map +1 -0
  16. package/dist/actions/get-customers.d.cts +9 -0
  17. package/dist/actions/get-customers.d.cts.map +1 -0
  18. package/dist/actions/get-customers.d.mts +9 -0
  19. package/dist/actions/get-customers.d.mts.map +1 -0
  20. package/dist/actions/get-customers.mjs +37 -0
  21. package/dist/actions/get-customers.mjs.map +1 -0
  22. package/dist/actions/get-products.cjs +39 -0
  23. package/dist/actions/get-products.cjs.map +1 -0
  24. package/dist/actions/get-products.d.cts +9 -0
  25. package/dist/actions/get-products.d.cts.map +1 -0
  26. package/dist/actions/get-products.d.mts +9 -0
  27. package/dist/actions/get-products.d.mts.map +1 -0
  28. package/dist/actions/get-products.mjs +38 -0
  29. package/dist/actions/get-products.mjs.map +1 -0
  30. package/dist/actions/index.cjs +11 -0
  31. package/dist/actions/index.d.cts +6 -0
  32. package/dist/actions/index.d.mts +6 -0
  33. package/dist/actions/index.mjs +6 -0
  34. package/dist/actions/track-cart.cjs +33 -0
  35. package/dist/actions/track-cart.cjs.map +1 -0
  36. package/dist/actions/track-cart.d.cts +9 -0
  37. package/dist/actions/track-cart.d.cts.map +1 -0
  38. package/dist/actions/track-cart.d.mts +9 -0
  39. package/dist/actions/track-cart.d.mts.map +1 -0
  40. package/dist/actions/track-cart.mjs +30 -0
  41. package/dist/actions/track-cart.mjs.map +1 -0
  42. package/dist/actions/upload-contacts-batch.cjs +36 -0
  43. package/dist/actions/upload-contacts-batch.cjs.map +1 -0
  44. package/dist/actions/upload-contacts-batch.d.cts +9 -0
  45. package/dist/actions/upload-contacts-batch.d.cts.map +1 -0
  46. package/dist/actions/upload-contacts-batch.d.mts +9 -0
  47. package/dist/actions/upload-contacts-batch.d.mts.map +1 -0
  48. package/dist/actions/upload-contacts-batch.mjs +35 -0
  49. package/dist/actions/upload-contacts-batch.mjs.map +1 -0
  50. package/dist/app.cjs +9 -0
  51. package/dist/app.cjs.map +1 -0
  52. package/dist/app.d.cts +5 -0
  53. package/dist/app.d.cts.map +1 -0
  54. package/dist/app.d.mts +5 -0
  55. package/dist/app.d.mts.map +1 -0
  56. package/dist/app.mjs +10 -0
  57. package/dist/app.mjs.map +1 -0
  58. package/dist/catalog.cjs +15 -0
  59. package/dist/catalog.cjs.map +1 -0
  60. package/dist/catalog.d.cts +14 -0
  61. package/dist/catalog.d.cts.map +1 -0
  62. package/dist/catalog.d.mts +14 -0
  63. package/dist/catalog.d.mts.map +1 -0
  64. package/dist/catalog.mjs +15 -0
  65. package/dist/catalog.mjs.map +1 -0
  66. package/dist/execute.cjs +18 -0
  67. package/dist/execute.cjs.map +1 -0
  68. package/dist/execute.mjs +18 -0
  69. package/dist/execute.mjs.map +1 -0
  70. package/dist/index.cjs +16 -0
  71. package/dist/index.d.cts +8 -0
  72. package/dist/index.d.mts +8 -0
  73. package/dist/index.mjs +9 -0
  74. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @keystrokehq/remarkety
2
+
3
+ Keystroke-managed integration.
4
+
5
+ **App:** `remarkety`
6
+ **Version:** `20260615_00`
7
+ **Actions:** 5
8
+
9
+ ```ts
10
+ import { defineAgent } from "@keystrokehq/keystroke/agent";
11
+ import { remarketyGetCampaigns } from "@keystrokehq/remarkety/actions";
12
+
13
+ export default defineAgent({
14
+ key: "remarkety-agent",
15
+ tools: [remarketyGetCampaigns],
16
+ });
17
+ ```
@@ -0,0 +1,21 @@
1
+ const require_app = require("./app.cjs");
2
+ const require_execute = require("./execute.cjs");
3
+ require("zod");
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return require_app.remarkety.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await require_execute.executeRemarketyTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ exports.action = action;
20
+
21
+ //# sourceMappingURL=action.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.cjs","names":["remarkety","executeRemarketyTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { remarkety } from \"./app\";\nimport { executeRemarketyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return remarkety.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeRemarketyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
@@ -0,0 +1,21 @@
1
+ import { remarkety } from "./app.mjs";
2
+ import { executeRemarketyTool } from "./execute.mjs";
3
+ import "zod";
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return remarkety.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await executeRemarketyTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ export { action };
20
+
21
+ //# sourceMappingURL=action.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { remarkety } from \"./app\";\nimport { executeRemarketyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return remarkety.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeRemarketyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
@@ -0,0 +1,29 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-campaigns.ts
4
+ const RemarketyGetCampaignsInput = zod.z.object({
5
+ skip: zod.z.number().int().default(0).describe("Number of campaigns to skip").optional(),
6
+ limit: zod.z.number().int().default(100).describe("Number of campaigns to return per request (1-1000)").optional()
7
+ }).describe("Request model for retrieving marketing campaigns.\nUse when you need to fetch campaigns with optional pagination parameters.");
8
+ const RemarketyGetCampaigns_CampaignSchema = zod.z.object({
9
+ id: zod.z.string().describe("Unique campaign ID"),
10
+ name: zod.z.string().describe("Campaign name"),
11
+ type: zod.z.string().describe("Type of campaign (e.g., email, SMS)"),
12
+ state: zod.z.string().describe("Status of the campaign (e.g., active, paused)"),
13
+ created: zod.z.string().describe("Creation timestamp (ISO 8601)"),
14
+ updated: zod.z.string().describe("Last updated timestamp (ISO 8601)"),
15
+ sentDate: zod.z.string().describe("Date/time campaign was last sent (ISO 8601)").nullable().optional(),
16
+ recipients: zod.z.number().int().describe("Number of recipients")
17
+ }).describe("Represents a marketing campaign in Remarkety.");
18
+ const RemarketyGetCampaignsOutput = zod.z.object({ campaigns: zod.z.array(RemarketyGetCampaigns_CampaignSchema).describe("List of campaigns retrieved") }).describe("Response model containing a list of marketing campaigns.");
19
+ const remarketyGetCampaigns = require_action.action("REMARKETY_GET_CAMPAIGNS", {
20
+ slug: "remarkety-get-campaigns",
21
+ name: "Get Remarkety Campaigns",
22
+ description: "Tool to retrieve a list of marketing campaigns. Use when you need to page through campaigns with optional limit and skip.",
23
+ input: RemarketyGetCampaignsInput,
24
+ output: RemarketyGetCampaignsOutput
25
+ });
26
+ //#endregion
27
+ exports.remarketyGetCampaigns = remarketyGetCampaigns;
28
+
29
+ //# sourceMappingURL=get-campaigns.cjs.map
@@ -0,0 +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 RemarketyGetCampaignsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().default(0).describe(\"Number of campaigns to skip\").optional(),\n limit: z.number().int().default(100).describe(\"Number of campaigns to return per request (1-1000)\").optional(),\n}).describe(\"Request model for retrieving marketing campaigns.\\nUse when you need to fetch campaigns with optional pagination parameters.\");\nconst RemarketyGetCampaigns_CampaignSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique campaign ID\"),\n name: z.string().describe(\"Campaign name\"),\n type: z.string().describe(\"Type of campaign (e.g., email, SMS)\"),\n state: z.string().describe(\"Status of the campaign (e.g., active, paused)\"),\n created: z.string().describe(\"Creation timestamp (ISO 8601)\"),\n updated: z.string().describe(\"Last updated timestamp (ISO 8601)\"),\n sentDate: z.string().describe(\"Date/time campaign was last sent (ISO 8601)\").nullable().optional(),\n recipients: z.number().int().describe(\"Number of recipients\"),\n}).describe(\"Represents a marketing campaign in Remarkety.\");\nexport const RemarketyGetCampaignsOutput: z.ZodTypeAny = z.object({\n campaigns: z.array(RemarketyGetCampaigns_CampaignSchema).describe(\"List of campaigns retrieved\"),\n}).describe(\"Response model containing a list of marketing campaigns.\");\n\nexport const remarketyGetCampaigns = action(\"REMARKETY_GET_CAMPAIGNS\", {\n slug: \"remarkety-get-campaigns\",\n name: \"Get Remarkety Campaigns\",\n description: \"Tool to retrieve a list of marketing campaigns. Use when you need to page through campaigns with optional limit and skip.\",\n input: RemarketyGetCampaignsInput,\n output: RemarketyGetCampaignsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACnF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;AAC/G,CAAC,CAAC,CAAC,SAAS,8HAA8H;AAC1I,MAAM,uCAAqDA,IAAAA,EAAE,OAAO;CAClE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC5C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe;CACzC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CAC1E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CAC5D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAChE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sBAAsB;AAC9D,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAC3D,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,WAAWA,IAAAA,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,6BAA6B,EACjG,CAAC,CAAC,CAAC,SAAS,0DAA0D;AAEtE,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-campaigns.d.ts
4
+ declare const RemarketyGetCampaignsInput: z.ZodTypeAny;
5
+ declare const RemarketyGetCampaignsOutput: z.ZodTypeAny;
6
+ declare const remarketyGetCampaigns: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyGetCampaigns };
9
+ //# sourceMappingURL=get-campaigns.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-campaigns.d.cts","names":[],"sources":["../../src/actions/get-campaigns.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAGgG;AAAA,cAW9H,2BAAA,EAA6B,CAAA,CAAE,UAE2B;AAAA,cAE1D,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-campaigns.d.ts
4
+ declare const RemarketyGetCampaignsInput: z.ZodTypeAny;
5
+ declare const RemarketyGetCampaignsOutput: z.ZodTypeAny;
6
+ declare const remarketyGetCampaigns: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyGetCampaigns };
9
+ //# sourceMappingURL=get-campaigns.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-campaigns.d.mts","names":[],"sources":["../../src/actions/get-campaigns.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAGgG;AAAA,cAW9H,2BAAA,EAA6B,CAAA,CAAE,UAE2B;AAAA,cAE1D,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,28 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-campaigns.ts
4
+ const RemarketyGetCampaignsInput = z.object({
5
+ skip: z.number().int().default(0).describe("Number of campaigns to skip").optional(),
6
+ limit: z.number().int().default(100).describe("Number of campaigns to return per request (1-1000)").optional()
7
+ }).describe("Request model for retrieving marketing campaigns.\nUse when you need to fetch campaigns with optional pagination parameters.");
8
+ const RemarketyGetCampaigns_CampaignSchema = z.object({
9
+ id: z.string().describe("Unique campaign ID"),
10
+ name: z.string().describe("Campaign name"),
11
+ type: z.string().describe("Type of campaign (e.g., email, SMS)"),
12
+ state: z.string().describe("Status of the campaign (e.g., active, paused)"),
13
+ created: z.string().describe("Creation timestamp (ISO 8601)"),
14
+ updated: z.string().describe("Last updated timestamp (ISO 8601)"),
15
+ sentDate: z.string().describe("Date/time campaign was last sent (ISO 8601)").nullable().optional(),
16
+ recipients: z.number().int().describe("Number of recipients")
17
+ }).describe("Represents a marketing campaign in Remarkety.");
18
+ const remarketyGetCampaigns = action("REMARKETY_GET_CAMPAIGNS", {
19
+ slug: "remarkety-get-campaigns",
20
+ name: "Get Remarkety Campaigns",
21
+ description: "Tool to retrieve a list of marketing campaigns. Use when you need to page through campaigns with optional limit and skip.",
22
+ input: RemarketyGetCampaignsInput,
23
+ output: z.object({ campaigns: z.array(RemarketyGetCampaigns_CampaignSchema).describe("List of campaigns retrieved") }).describe("Response model containing a list of marketing campaigns.")
24
+ });
25
+ //#endregion
26
+ export { remarketyGetCampaigns };
27
+
28
+ //# sourceMappingURL=get-campaigns.mjs.map
@@ -0,0 +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 RemarketyGetCampaignsInput: z.ZodTypeAny = z.object({\n skip: z.number().int().default(0).describe(\"Number of campaigns to skip\").optional(),\n limit: z.number().int().default(100).describe(\"Number of campaigns to return per request (1-1000)\").optional(),\n}).describe(\"Request model for retrieving marketing campaigns.\\nUse when you need to fetch campaigns with optional pagination parameters.\");\nconst RemarketyGetCampaigns_CampaignSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique campaign ID\"),\n name: z.string().describe(\"Campaign name\"),\n type: z.string().describe(\"Type of campaign (e.g., email, SMS)\"),\n state: z.string().describe(\"Status of the campaign (e.g., active, paused)\"),\n created: z.string().describe(\"Creation timestamp (ISO 8601)\"),\n updated: z.string().describe(\"Last updated timestamp (ISO 8601)\"),\n sentDate: z.string().describe(\"Date/time campaign was last sent (ISO 8601)\").nullable().optional(),\n recipients: z.number().int().describe(\"Number of recipients\"),\n}).describe(\"Represents a marketing campaign in Remarkety.\");\nexport const RemarketyGetCampaignsOutput: z.ZodTypeAny = z.object({\n campaigns: z.array(RemarketyGetCampaigns_CampaignSchema).describe(\"List of campaigns retrieved\"),\n}).describe(\"Response model containing a list of marketing campaigns.\");\n\nexport const remarketyGetCampaigns = action(\"REMARKETY_GET_CAMPAIGNS\", {\n slug: \"remarkety-get-campaigns\",\n name: \"Get Remarkety Campaigns\",\n description: \"Tool to retrieve a list of marketing campaigns. Use when you need to page through campaigns with optional limit and skip.\",\n input: RemarketyGetCampaignsInput,\n output: RemarketyGetCampaignsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2C,EAAE,OAAO;CAC/D,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACnF,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;AAC/G,CAAC,CAAC,CAAC,SAAS,8HAA8H;AAC1I,MAAM,uCAAqD,EAAE,OAAO;CAClE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC5C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe;CACzC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CAC1E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CAC5D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAChE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sBAAsB;AAC9D,CAAC,CAAC,CAAC,SAAS,+CAA+C;AAK3D,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuD,EAAE,OAAO,EAChE,WAAW,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,6BAA6B,EACjG,CAAC,CAAC,CAAC,SAAS,0DAOF;AACV,CAAC"}
@@ -0,0 +1,38 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-customers.ts
4
+ const RemarketyGetCustomersInput = zod.z.object({
5
+ limit: zod.z.number().int().describe("Number of results to return (optional)").optional(),
6
+ offset: zod.z.number().int().describe("Number of results to skip (optional)").optional(),
7
+ updatedAtMax: zod.z.string().describe("Return customers updated before this date (ISO8601)").optional(),
8
+ updatedAtMin: zod.z.string().describe("Return customers updated after this date (ISO8601)").optional()
9
+ }).describe("Request model for retrieving a list of customers from a Remarkety store.");
10
+ const RemarketyGetCustomers_CustomerSchema = zod.z.object({
11
+ id: zod.z.string().describe("Customer identifier (may be null)").nullable().optional(),
12
+ hash: zod.z.string().describe("Customer unique hash identifier"),
13
+ tags: zod.z.array(zod.z.string()).describe("List of customer tags").nullable().optional(),
14
+ email: zod.z.string().describe("Customer email address"),
15
+ guest: zod.z.boolean().describe("Whether customer is a guest").nullable().optional(),
16
+ source: zod.z.string().describe("Customer source").nullable().optional(),
17
+ added_at: zod.z.string().describe("When customer was added").nullable().optional(),
18
+ channels: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Communication channels").nullable().optional(),
19
+ last_name: zod.z.string().describe("Customer last name").nullable().optional(),
20
+ created_at: zod.z.string().describe("Account creation timestamp (ISO8601)"),
21
+ first_name: zod.z.string().describe("Customer first name").nullable().optional(),
22
+ is_deleted: zod.z.boolean().describe("Whether customer is deleted").nullable().optional(),
23
+ updated_at: zod.z.string().describe("Last update timestamp (ISO8601)"),
24
+ is_suppressed: zod.z.boolean().describe("Whether customer is suppressed").nullable().optional(),
25
+ is_marketing_allowed: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Marketing permission status").nullable().optional()
26
+ }).passthrough();
27
+ const RemarketyGetCustomersOutput = zod.z.object({ customers: zod.z.array(RemarketyGetCustomers_CustomerSchema).describe("Array of customer objects") }).describe("Response model for a list of customers from a Remarkety store.");
28
+ const remarketyGetCustomers = require_action.action("REMARKETY_GET_CUSTOMERS", {
29
+ slug: "remarkety-get-customers",
30
+ name: "Get Remarkety Customers",
31
+ description: "Tool to retrieve customers. Use when you need to fetch a paginated list of customers from a Remarkety store.",
32
+ input: RemarketyGetCustomersInput,
33
+ output: RemarketyGetCustomersOutput
34
+ });
35
+ //#endregion
36
+ exports.remarketyGetCustomers = remarketyGetCustomers;
37
+
38
+ //# sourceMappingURL=get-customers.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-customers.cjs","names":["z","action"],"sources":["../../src/actions/get-customers.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyGetCustomersInput: z.ZodTypeAny = z.object({\n limit: z.number().int().describe(\"Number of results to return (optional)\").optional(),\n offset: z.number().int().describe(\"Number of results to skip (optional)\").optional(),\n updatedAtMax: z.string().describe(\"Return customers updated before this date (ISO8601)\").optional(),\n updatedAtMin: z.string().describe(\"Return customers updated after this date (ISO8601)\").optional(),\n}).describe(\"Request model for retrieving a list of customers from a Remarkety store.\");\nconst RemarketyGetCustomers_CustomerSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Customer identifier (may be null)\").nullable().optional(),\n hash: z.string().describe(\"Customer unique hash identifier\"),\n tags: z.array(z.string()).describe(\"List of customer tags\").nullable().optional(),\n email: z.string().describe(\"Customer email address\"),\n guest: z.boolean().describe(\"Whether customer is a guest\").nullable().optional(),\n source: z.string().describe(\"Customer source\").nullable().optional(),\n added_at: z.string().describe(\"When customer was added\").nullable().optional(),\n channels: z.record(z.string(), z.unknown()).describe(\"Communication channels\").nullable().optional(),\n last_name: z.string().describe(\"Customer last name\").nullable().optional(),\n created_at: z.string().describe(\"Account creation timestamp (ISO8601)\"),\n first_name: z.string().describe(\"Customer first name\").nullable().optional(),\n is_deleted: z.boolean().describe(\"Whether customer is deleted\").nullable().optional(),\n updated_at: z.string().describe(\"Last update timestamp (ISO8601)\"),\n is_suppressed: z.boolean().describe(\"Whether customer is suppressed\").nullable().optional(),\n is_marketing_allowed: z.record(z.string(), z.unknown()).describe(\"Marketing permission status\").nullable().optional(),\n}).passthrough();\nexport const RemarketyGetCustomersOutput: z.ZodTypeAny = z.object({\n customers: z.array(RemarketyGetCustomers_CustomerSchema).describe(\"Array of customer objects\"),\n}).describe(\"Response model for a list of customers from a Remarkety store.\");\n\nexport const remarketyGetCustomers = action(\"REMARKETY_GET_CUSTOMERS\", {\n slug: \"remarkety-get-customers\",\n name: \"Get Remarkety Customers\",\n description: \"Tool to retrieve customers. Use when you need to fetch a paginated list of customers from a Remarkety store.\",\n input: RemarketyGetCustomersInput,\n output: RemarketyGetCustomersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACpF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACnF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAClG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAM,uCAAqDA,IAAAA,EAAE,OAAO;CAClE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CAC3D,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CACnD,OAAOA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CACtE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACjE,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,sBAAsBA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,WAAWA,IAAAA,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,2BAA2B,EAC/F,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAE5E,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-customers.d.ts
4
+ declare const RemarketyGetCustomersInput: z.ZodTypeAny;
5
+ declare const RemarketyGetCustomersOutput: z.ZodTypeAny;
6
+ declare const remarketyGetCustomers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyGetCustomers };
9
+ //# sourceMappingURL=get-customers.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-customers.d.cts","names":[],"sources":["../../src/actions/get-customers.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAK4C;AAAA,cAkB1E,2BAAA,EAA6B,CAAA,CAAE,UAEiC;AAAA,cAEhE,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-customers.d.ts
4
+ declare const RemarketyGetCustomersInput: z.ZodTypeAny;
5
+ declare const RemarketyGetCustomersOutput: z.ZodTypeAny;
6
+ declare const remarketyGetCustomers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyGetCustomers };
9
+ //# sourceMappingURL=get-customers.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-customers.d.mts","names":[],"sources":["../../src/actions/get-customers.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAK4C;AAAA,cAkB1E,2BAAA,EAA6B,CAAA,CAAE,UAEiC;AAAA,cAEhE,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,37 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-customers.ts
4
+ const RemarketyGetCustomersInput = z.object({
5
+ limit: z.number().int().describe("Number of results to return (optional)").optional(),
6
+ offset: z.number().int().describe("Number of results to skip (optional)").optional(),
7
+ updatedAtMax: z.string().describe("Return customers updated before this date (ISO8601)").optional(),
8
+ updatedAtMin: z.string().describe("Return customers updated after this date (ISO8601)").optional()
9
+ }).describe("Request model for retrieving a list of customers from a Remarkety store.");
10
+ const RemarketyGetCustomers_CustomerSchema = z.object({
11
+ id: z.string().describe("Customer identifier (may be null)").nullable().optional(),
12
+ hash: z.string().describe("Customer unique hash identifier"),
13
+ tags: z.array(z.string()).describe("List of customer tags").nullable().optional(),
14
+ email: z.string().describe("Customer email address"),
15
+ guest: z.boolean().describe("Whether customer is a guest").nullable().optional(),
16
+ source: z.string().describe("Customer source").nullable().optional(),
17
+ added_at: z.string().describe("When customer was added").nullable().optional(),
18
+ channels: z.record(z.string(), z.unknown()).describe("Communication channels").nullable().optional(),
19
+ last_name: z.string().describe("Customer last name").nullable().optional(),
20
+ created_at: z.string().describe("Account creation timestamp (ISO8601)"),
21
+ first_name: z.string().describe("Customer first name").nullable().optional(),
22
+ is_deleted: z.boolean().describe("Whether customer is deleted").nullable().optional(),
23
+ updated_at: z.string().describe("Last update timestamp (ISO8601)"),
24
+ is_suppressed: z.boolean().describe("Whether customer is suppressed").nullable().optional(),
25
+ is_marketing_allowed: z.record(z.string(), z.unknown()).describe("Marketing permission status").nullable().optional()
26
+ }).passthrough();
27
+ const remarketyGetCustomers = action("REMARKETY_GET_CUSTOMERS", {
28
+ slug: "remarkety-get-customers",
29
+ name: "Get Remarkety Customers",
30
+ description: "Tool to retrieve customers. Use when you need to fetch a paginated list of customers from a Remarkety store.",
31
+ input: RemarketyGetCustomersInput,
32
+ output: z.object({ customers: z.array(RemarketyGetCustomers_CustomerSchema).describe("Array of customer objects") }).describe("Response model for a list of customers from a Remarkety store.")
33
+ });
34
+ //#endregion
35
+ export { remarketyGetCustomers };
36
+
37
+ //# sourceMappingURL=get-customers.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-customers.mjs","names":[],"sources":["../../src/actions/get-customers.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyGetCustomersInput: z.ZodTypeAny = z.object({\n limit: z.number().int().describe(\"Number of results to return (optional)\").optional(),\n offset: z.number().int().describe(\"Number of results to skip (optional)\").optional(),\n updatedAtMax: z.string().describe(\"Return customers updated before this date (ISO8601)\").optional(),\n updatedAtMin: z.string().describe(\"Return customers updated after this date (ISO8601)\").optional(),\n}).describe(\"Request model for retrieving a list of customers from a Remarkety store.\");\nconst RemarketyGetCustomers_CustomerSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Customer identifier (may be null)\").nullable().optional(),\n hash: z.string().describe(\"Customer unique hash identifier\"),\n tags: z.array(z.string()).describe(\"List of customer tags\").nullable().optional(),\n email: z.string().describe(\"Customer email address\"),\n guest: z.boolean().describe(\"Whether customer is a guest\").nullable().optional(),\n source: z.string().describe(\"Customer source\").nullable().optional(),\n added_at: z.string().describe(\"When customer was added\").nullable().optional(),\n channels: z.record(z.string(), z.unknown()).describe(\"Communication channels\").nullable().optional(),\n last_name: z.string().describe(\"Customer last name\").nullable().optional(),\n created_at: z.string().describe(\"Account creation timestamp (ISO8601)\"),\n first_name: z.string().describe(\"Customer first name\").nullable().optional(),\n is_deleted: z.boolean().describe(\"Whether customer is deleted\").nullable().optional(),\n updated_at: z.string().describe(\"Last update timestamp (ISO8601)\"),\n is_suppressed: z.boolean().describe(\"Whether customer is suppressed\").nullable().optional(),\n is_marketing_allowed: z.record(z.string(), z.unknown()).describe(\"Marketing permission status\").nullable().optional(),\n}).passthrough();\nexport const RemarketyGetCustomersOutput: z.ZodTypeAny = z.object({\n customers: z.array(RemarketyGetCustomers_CustomerSchema).describe(\"Array of customer objects\"),\n}).describe(\"Response model for a list of customers from a Remarkety store.\");\n\nexport const remarketyGetCustomers = action(\"REMARKETY_GET_CUSTOMERS\", {\n slug: \"remarkety-get-customers\",\n name: \"Get Remarkety Customers\",\n description: \"Tool to retrieve customers. Use when you need to fetch a paginated list of customers from a Remarkety store.\",\n input: RemarketyGetCustomersInput,\n output: RemarketyGetCustomersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2C,EAAE,OAAO;CAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACpF,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACnF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAClG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAM,uCAAqD,EAAE,OAAO;CAClE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CAC3D,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CACnD,OAAO,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wBAAwB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CACtE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,YAAY,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACjE,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,sBAAsB,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC,CAAC,CAAC,YAAY;AAKf,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuD,EAAE,OAAO,EAChE,WAAW,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,2BAA2B,EAC/F,CAAC,CAAC,CAAC,SAAS,gEAOF;AACV,CAAC"}
@@ -0,0 +1,39 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-products.ts
4
+ const RemarketyGetProductsInput = zod.z.object({
5
+ limit: zod.z.number().int().describe("Number of products to return (optional, default server-defined)").optional(),
6
+ offset: zod.z.number().int().describe("Number of products to skip (optional)").optional(),
7
+ productId: zod.z.string().describe("Filter by specific product ID (SKU)").optional(),
8
+ createdAtMax: zod.z.string().describe("Return products created before this date (ISO8601)").optional(),
9
+ createdAtMin: zod.z.string().describe("Return products created after this date (ISO8601)").optional(),
10
+ updatedAtMax: zod.z.string().describe("Return products updated before this date (ISO8601)").optional(),
11
+ updatedAtMin: zod.z.string().describe("Return products updated after this date (ISO8601)").optional()
12
+ }).describe("Request model for retrieving a list of products from a Remarkety store.");
13
+ const RemarketyGetProducts_ProductSchema = zod.z.object({
14
+ id: zod.z.string().describe("Unique product identifier").nullable().optional(),
15
+ name: zod.z.string().describe("Product name").nullable().optional(),
16
+ price: zod.z.number().describe("Product price").nullable().optional(),
17
+ images: zod.z.array(zod.z.string()).describe("List of product image URLs").nullable().optional(),
18
+ variants: zod.z.array(zod.z.record(zod.z.string(), zod.z.unknown())).describe("List of product variants as JSON objects").nullable().optional(),
19
+ createdAt: zod.z.string().describe("Creation timestamp (ISO8601)").nullable().optional(),
20
+ updatedAt: zod.z.string().describe("Last update timestamp (ISO8601)").nullable().optional(),
21
+ description: zod.z.string().describe("Product description").nullable().optional()
22
+ }).passthrough().describe("Represents a product in Remarkety.");
23
+ const RemarketyGetProducts_DataDetailsSchema = zod.z.object({ details: zod.z.array(RemarketyGetProducts_ProductSchema).describe("Array of product objects").nullable().optional() }).passthrough().describe("Wrapper for the details array in the API response.");
24
+ const RemarketyGetProductsOutput = zod.z.object({
25
+ data: RemarketyGetProducts_DataDetailsSchema.nullable(),
26
+ error: zod.z.unknown().describe("Error information if any").nullable().optional(),
27
+ successfull: zod.z.boolean().describe("Whether the API call was successful")
28
+ }).describe("Response schema for a list of products from a Remarkety store.\nThe API returns a structure with data.details containing the products array.");
29
+ const remarketyGetProducts = require_action.action("REMARKETY_GET_PRODUCTS", {
30
+ slug: "remarkety-get-products",
31
+ name: "Get Remarkety Products",
32
+ description: "Tool to retrieve products. Use when you need to fetch a paginated list of products from a Remarkety store.",
33
+ input: RemarketyGetProductsInput,
34
+ output: RemarketyGetProductsOutput
35
+ });
36
+ //#endregion
37
+ exports.remarketyGetProducts = remarketyGetProducts;
38
+
39
+ //# sourceMappingURL=get-products.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-products.cjs","names":["z","action"],"sources":["../../src/actions/get-products.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyGetProductsInput: z.ZodTypeAny = z.object({\n limit: z.number().int().describe(\"Number of products to return (optional, default server-defined)\").optional(),\n offset: z.number().int().describe(\"Number of products to skip (optional)\").optional(),\n productId: z.string().describe(\"Filter by specific product ID (SKU)\").optional(),\n createdAtMax: z.string().describe(\"Return products created before this date (ISO8601)\").optional(),\n createdAtMin: z.string().describe(\"Return products created after this date (ISO8601)\").optional(),\n updatedAtMax: z.string().describe(\"Return products updated before this date (ISO8601)\").optional(),\n updatedAtMin: z.string().describe(\"Return products updated after this date (ISO8601)\").optional(),\n}).describe(\"Request model for retrieving a list of products from a Remarkety store.\");\nconst RemarketyGetProducts_ProductSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique product identifier\").nullable().optional(),\n name: z.string().describe(\"Product name\").nullable().optional(),\n price: z.number().describe(\"Product price\").nullable().optional(),\n images: z.array(z.string()).describe(\"List of product image URLs\").nullable().optional(),\n variants: z.array(z.record(z.string(), z.unknown())).describe(\"List of product variants as JSON objects\").nullable().optional(),\n createdAt: z.string().describe(\"Creation timestamp (ISO8601)\").nullable().optional(),\n updatedAt: z.string().describe(\"Last update timestamp (ISO8601)\").nullable().optional(),\n description: z.string().describe(\"Product description\").nullable().optional(),\n}).passthrough().describe(\"Represents a product in Remarkety.\");\nconst RemarketyGetProducts_DataDetailsSchema: z.ZodTypeAny = z.object({\n details: z.array(RemarketyGetProducts_ProductSchema).describe(\"Array of product objects\").nullable().optional(),\n}).passthrough().describe(\"Wrapper for the details array in the API response.\");\nexport const RemarketyGetProductsOutput: z.ZodTypeAny = z.object({\n data: RemarketyGetProducts_DataDetailsSchema.nullable(),\n error: z.unknown().describe(\"Error information if any\").nullable().optional(),\n successfull: z.boolean().describe(\"Whether the API call was successful\"),\n}).describe(\"Response schema for a list of products from a Remarkety store.\\nThe API returns a structure with data.details containing the products array.\");\n\nexport const remarketyGetProducts = action(\"REMARKETY_GET_PRODUCTS\", {\n slug: \"remarkety-get-products\",\n name: \"Get Remarkety Products\",\n description: \"Tool to retrieve products. Use when you need to fetch a paginated list of products from a Remarkety store.\",\n input: RemarketyGetProductsInput,\n output: RemarketyGetProductsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;CAC7G,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACpF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC/E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACjG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAChG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACjG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;AAClG,CAAC,CAAC,CAAC,SAAS,yEAAyE;AACrF,MAAM,qCAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9H,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAC9D,MAAM,yCAAuDA,IAAAA,EAAE,OAAO,EACpE,SAASA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oDAAoD;AAC9E,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,MAAM,uCAAuC,SAAS;CACtD,OAAOA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,qCAAqC;AACzE,CAAC,CAAC,CAAC,SAAS,8IAA8I;AAE1J,MAAa,uBAAuBC,eAAAA,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-products.d.ts
4
+ declare const RemarketyGetProductsInput: z.ZodTypeAny;
5
+ declare const RemarketyGetProductsOutput: z.ZodTypeAny;
6
+ declare const remarketyGetProducts: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyGetProducts };
9
+ //# sourceMappingURL=get-products.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-products.d.cts","names":[],"sources":["../../src/actions/get-products.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAQ4C;AAAA,cAczE,0BAAA,EAA4B,CAAA,CAAE,UAIgH;AAAA,cAE9I,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-products.d.ts
4
+ declare const RemarketyGetProductsInput: z.ZodTypeAny;
5
+ declare const RemarketyGetProductsOutput: z.ZodTypeAny;
6
+ declare const remarketyGetProducts: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyGetProducts };
9
+ //# sourceMappingURL=get-products.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-products.d.mts","names":[],"sources":["../../src/actions/get-products.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAQ4C;AAAA,cAczE,0BAAA,EAA4B,CAAA,CAAE,UAIgH;AAAA,cAE9I,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,38 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-products.ts
4
+ const RemarketyGetProductsInput = z.object({
5
+ limit: z.number().int().describe("Number of products to return (optional, default server-defined)").optional(),
6
+ offset: z.number().int().describe("Number of products to skip (optional)").optional(),
7
+ productId: z.string().describe("Filter by specific product ID (SKU)").optional(),
8
+ createdAtMax: z.string().describe("Return products created before this date (ISO8601)").optional(),
9
+ createdAtMin: z.string().describe("Return products created after this date (ISO8601)").optional(),
10
+ updatedAtMax: z.string().describe("Return products updated before this date (ISO8601)").optional(),
11
+ updatedAtMin: z.string().describe("Return products updated after this date (ISO8601)").optional()
12
+ }).describe("Request model for retrieving a list of products from a Remarkety store.");
13
+ const RemarketyGetProducts_ProductSchema = z.object({
14
+ id: z.string().describe("Unique product identifier").nullable().optional(),
15
+ name: z.string().describe("Product name").nullable().optional(),
16
+ price: z.number().describe("Product price").nullable().optional(),
17
+ images: z.array(z.string()).describe("List of product image URLs").nullable().optional(),
18
+ variants: z.array(z.record(z.string(), z.unknown())).describe("List of product variants as JSON objects").nullable().optional(),
19
+ createdAt: z.string().describe("Creation timestamp (ISO8601)").nullable().optional(),
20
+ updatedAt: z.string().describe("Last update timestamp (ISO8601)").nullable().optional(),
21
+ description: z.string().describe("Product description").nullable().optional()
22
+ }).passthrough().describe("Represents a product in Remarkety.");
23
+ const RemarketyGetProducts_DataDetailsSchema = z.object({ details: z.array(RemarketyGetProducts_ProductSchema).describe("Array of product objects").nullable().optional() }).passthrough().describe("Wrapper for the details array in the API response.");
24
+ const remarketyGetProducts = action("REMARKETY_GET_PRODUCTS", {
25
+ slug: "remarkety-get-products",
26
+ name: "Get Remarkety Products",
27
+ description: "Tool to retrieve products. Use when you need to fetch a paginated list of products from a Remarkety store.",
28
+ input: RemarketyGetProductsInput,
29
+ output: z.object({
30
+ data: RemarketyGetProducts_DataDetailsSchema.nullable(),
31
+ error: z.unknown().describe("Error information if any").nullable().optional(),
32
+ successfull: z.boolean().describe("Whether the API call was successful")
33
+ }).describe("Response schema for a list of products from a Remarkety store.\nThe API returns a structure with data.details containing the products array.")
34
+ });
35
+ //#endregion
36
+ export { remarketyGetProducts };
37
+
38
+ //# sourceMappingURL=get-products.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-products.mjs","names":[],"sources":["../../src/actions/get-products.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyGetProductsInput: z.ZodTypeAny = z.object({\n limit: z.number().int().describe(\"Number of products to return (optional, default server-defined)\").optional(),\n offset: z.number().int().describe(\"Number of products to skip (optional)\").optional(),\n productId: z.string().describe(\"Filter by specific product ID (SKU)\").optional(),\n createdAtMax: z.string().describe(\"Return products created before this date (ISO8601)\").optional(),\n createdAtMin: z.string().describe(\"Return products created after this date (ISO8601)\").optional(),\n updatedAtMax: z.string().describe(\"Return products updated before this date (ISO8601)\").optional(),\n updatedAtMin: z.string().describe(\"Return products updated after this date (ISO8601)\").optional(),\n}).describe(\"Request model for retrieving a list of products from a Remarkety store.\");\nconst RemarketyGetProducts_ProductSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique product identifier\").nullable().optional(),\n name: z.string().describe(\"Product name\").nullable().optional(),\n price: z.number().describe(\"Product price\").nullable().optional(),\n images: z.array(z.string()).describe(\"List of product image URLs\").nullable().optional(),\n variants: z.array(z.record(z.string(), z.unknown())).describe(\"List of product variants as JSON objects\").nullable().optional(),\n createdAt: z.string().describe(\"Creation timestamp (ISO8601)\").nullable().optional(),\n updatedAt: z.string().describe(\"Last update timestamp (ISO8601)\").nullable().optional(),\n description: z.string().describe(\"Product description\").nullable().optional(),\n}).passthrough().describe(\"Represents a product in Remarkety.\");\nconst RemarketyGetProducts_DataDetailsSchema: z.ZodTypeAny = z.object({\n details: z.array(RemarketyGetProducts_ProductSchema).describe(\"Array of product objects\").nullable().optional(),\n}).passthrough().describe(\"Wrapper for the details array in the API response.\");\nexport const RemarketyGetProductsOutput: z.ZodTypeAny = z.object({\n data: RemarketyGetProducts_DataDetailsSchema.nullable(),\n error: z.unknown().describe(\"Error information if any\").nullable().optional(),\n successfull: z.boolean().describe(\"Whether the API call was successful\"),\n}).describe(\"Response schema for a list of products from a Remarkety store.\\nThe API returns a structure with data.details containing the products array.\");\n\nexport const remarketyGetProducts = action(\"REMARKETY_GET_PRODUCTS\", {\n slug: \"remarkety-get-products\",\n name: \"Get Remarkety Products\",\n description: \"Tool to retrieve products. Use when you need to fetch a paginated list of products from a Remarkety store.\",\n input: RemarketyGetProductsInput,\n output: RemarketyGetProductsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0C,EAAE,OAAO;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;CAC7G,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACpF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC/E,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACjG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAChG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACjG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;AAClG,CAAC,CAAC,CAAC,SAAS,yEAAyE;AACrF,MAAM,qCAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,UAAU,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9H,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oCAAoC;AAC9D,MAAM,yCAAuD,EAAE,OAAO,EACpE,SAAS,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oDAAoD;AAO9E,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXsD,EAAE,OAAO;EAC/D,MAAM,uCAAuC,SAAS;EACtD,OAAO,EAAE,QAAQ,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5E,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,qCAAqC;CACzE,CAAC,CAAC,CAAC,SAAS,8IAOF;AACV,CAAC"}
@@ -0,0 +1,11 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_get_campaigns = require("./get-campaigns.cjs");
3
+ const require_get_customers = require("./get-customers.cjs");
4
+ const require_get_products = require("./get-products.cjs");
5
+ const require_track_cart = require("./track-cart.cjs");
6
+ const require_upload_contacts_batch = require("./upload-contacts-batch.cjs");
7
+ exports.remarketyGetCampaigns = require_get_campaigns.remarketyGetCampaigns;
8
+ exports.remarketyGetCustomers = require_get_customers.remarketyGetCustomers;
9
+ exports.remarketyGetProducts = require_get_products.remarketyGetProducts;
10
+ exports.remarketyTrackCart = require_track_cart.remarketyTrackCart;
11
+ exports.remarketyUploadContactsBatch = require_upload_contacts_batch.remarketyUploadContactsBatch;
@@ -0,0 +1,6 @@
1
+ import { remarketyGetCampaigns } from "./get-campaigns.cjs";
2
+ import { remarketyGetCustomers } from "./get-customers.cjs";
3
+ import { remarketyGetProducts } from "./get-products.cjs";
4
+ import { remarketyTrackCart } from "./track-cart.cjs";
5
+ import { remarketyUploadContactsBatch } from "./upload-contacts-batch.cjs";
6
+ export { remarketyGetCampaigns, remarketyGetCustomers, remarketyGetProducts, remarketyTrackCart, remarketyUploadContactsBatch };
@@ -0,0 +1,6 @@
1
+ import { remarketyGetCampaigns } from "./get-campaigns.mjs";
2
+ import { remarketyGetCustomers } from "./get-customers.mjs";
3
+ import { remarketyGetProducts } from "./get-products.mjs";
4
+ import { remarketyTrackCart } from "./track-cart.mjs";
5
+ import { remarketyUploadContactsBatch } from "./upload-contacts-batch.mjs";
6
+ export { remarketyGetCampaigns, remarketyGetCustomers, remarketyGetProducts, remarketyTrackCart, remarketyUploadContactsBatch };
@@ -0,0 +1,6 @@
1
+ import { remarketyGetCampaigns } from "./get-campaigns.mjs";
2
+ import { remarketyGetCustomers } from "./get-customers.mjs";
3
+ import { remarketyGetProducts } from "./get-products.mjs";
4
+ import { remarketyTrackCart } from "./track-cart.mjs";
5
+ import { remarketyUploadContactsBatch } from "./upload-contacts-batch.mjs";
6
+ export { remarketyGetCampaigns, remarketyGetCustomers, remarketyGetProducts, remarketyTrackCart, remarketyUploadContactsBatch };
@@ -0,0 +1,33 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/track-cart.ts
4
+ const RemarketyTrackCartInput = zod.z.object({
5
+ url: zod.z.string().describe("Cart recovery URL").optional(),
6
+ email: zod.z.string().describe("Customer's email address"),
7
+ items: zod.z.array(zod.z.object({
8
+ id: zod.z.string().describe("Product SKU or unique identifier"),
9
+ url: zod.z.string().describe("Link to the product page").optional(),
10
+ name: zod.z.string().describe("Product name").optional(),
11
+ price: zod.z.number().describe("Price per unit, non-negative"),
12
+ imageUrl: zod.z.string().describe("Product image URL").optional(),
13
+ quantity: zod.z.number().int().describe("Quantity of this item, must be at least 1")
14
+ }).describe("Represents a single item in the cart to be tracked.")).describe("List of items in the cart"),
15
+ phone: zod.z.string().describe("Customer's phone number").optional(),
16
+ cartId: zod.z.string().describe("Unique cart identifier"),
17
+ fields: zod.z.object({}).describe("Additional custom fields for the cart").optional(),
18
+ lastName: zod.z.string().describe("Customer's last name").optional(),
19
+ subtotal: zod.z.number().describe("Cart subtotal amount, non-negative").optional(),
20
+ firstName: zod.z.string().describe("Customer's first name").optional()
21
+ }).describe("Request model for tracking a shopping cart event in Remarkety.");
22
+ const RemarketyTrackCartOutput = zod.z.object({ status_code: zod.z.number().int().describe("HTTP status code. Returns 200 for successful cart tracking acknowledgment.") }).describe("Response model for tracking a cart event in Remarkety.\nThe API returns a minimal response with HTTP 200 status code as the primary acknowledgment.");
23
+ const remarketyTrackCart = require_action.action("REMARKETY_TRACK_CART", {
24
+ slug: "remarkety-track-cart",
25
+ name: "Track Remarkety Cart",
26
+ description: "Tool to track cart events in Remarkety. Use after a customer updates their cart to sync cart data for remarketing.",
27
+ input: RemarketyTrackCartInput,
28
+ output: RemarketyTrackCartOutput
29
+ });
30
+ //#endregion
31
+ exports.remarketyTrackCart = remarketyTrackCart;
32
+
33
+ //# sourceMappingURL=track-cart.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"track-cart.cjs","names":["z","action"],"sources":["../../src/actions/track-cart.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyTrackCartInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"Cart recovery URL\").optional(),\n email: z.string().describe(\"Customer's email address\"),\n items: z.array(z.object({\n id: z.string().describe(\"Product SKU or unique identifier\"),\n url: z.string().describe(\"Link to the product page\").optional(),\n name: z.string().describe(\"Product name\").optional(),\n price: z.number().describe(\"Price per unit, non-negative\"),\n imageUrl: z.string().describe(\"Product image URL\").optional(),\n quantity: z.number().int().describe(\"Quantity of this item, must be at least 1\"),\n}).describe(\"Represents a single item in the cart to be tracked.\")).describe(\"List of items in the cart\"),\n phone: z.string().describe(\"Customer's phone number\").optional(),\n cartId: z.string().describe(\"Unique cart identifier\"),\n fields: z.object({}).describe(\"Additional custom fields for the cart\").optional(),\n lastName: z.string().describe(\"Customer's last name\").optional(),\n subtotal: z.number().describe(\"Cart subtotal amount, non-negative\").optional(),\n firstName: z.string().describe(\"Customer's first name\").optional(),\n}).describe(\"Request model for tracking a shopping cart event in Remarkety.\");\nexport const RemarketyTrackCartOutput: z.ZodTypeAny = z.object({\n status_code: z.number().int().describe(\"HTTP status code. Returns 200 for successful cart tracking acknowledgment.\"),\n}).describe(\"Response model for tracking a cart event in Remarkety.\\nThe API returns a minimal response with HTTP 200 status code as the primary acknowledgment.\");\n\nexport const remarketyTrackCart = action(\"REMARKETY_TRACK_CART\", {\n slug: \"remarkety-track-cart\",\n name: \"Track Remarkety Cart\",\n description: \"Tool to track cart events in Remarkety. Use after a customer updates their cart to sync cart data for remarketing.\",\n input: RemarketyTrackCartInput,\n output: RemarketyTrackCartOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAAwCA,IAAAA,EAAE,OAAO;CAC5D,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACvD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;CACrD,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACxB,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;EAC1D,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS;EACnD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;EACzD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;EAC5D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C;CACjF,CAAC,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,CAAC,SAAS,2BAA2B;CACtG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;CACpD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAChF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC/D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC7E,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAa,2BAAyCA,IAAAA,EAAE,OAAO,EAC7D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,SAAS,qJAAqJ;AAEjK,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/track-cart.d.ts
4
+ declare const RemarketyTrackCartInput: z.ZodTypeAny;
5
+ declare const RemarketyTrackCartOutput: z.ZodTypeAny;
6
+ declare const remarketyTrackCart: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyTrackCart };
9
+ //# sourceMappingURL=track-cart.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"track-cart.d.cts","names":[],"sources":["../../src/actions/track-cart.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAiBqC;AAAA,cAChE,wBAAA,EAA0B,CAAA,CAAE,UAEyH;AAAA,cAErJ,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/track-cart.d.ts
4
+ declare const RemarketyTrackCartInput: z.ZodTypeAny;
5
+ declare const RemarketyTrackCartOutput: z.ZodTypeAny;
6
+ declare const remarketyTrackCart: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyTrackCart };
9
+ //# sourceMappingURL=track-cart.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"track-cart.d.mts","names":[],"sources":["../../src/actions/track-cart.ts"],"mappings":";;;cAIa,uBAAA,EAAyB,CAAA,CAAE,UAiBqC;AAAA,cAChE,wBAAA,EAA0B,CAAA,CAAE,UAEyH;AAAA,cAErJ,kBAAA,gCAAkB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,30 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const remarketyTrackCart = action("REMARKETY_TRACK_CART", {
4
+ slug: "remarkety-track-cart",
5
+ name: "Track Remarkety Cart",
6
+ description: "Tool to track cart events in Remarkety. Use after a customer updates their cart to sync cart data for remarketing.",
7
+ input: z.object({
8
+ url: z.string().describe("Cart recovery URL").optional(),
9
+ email: z.string().describe("Customer's email address"),
10
+ items: z.array(z.object({
11
+ id: z.string().describe("Product SKU or unique identifier"),
12
+ url: z.string().describe("Link to the product page").optional(),
13
+ name: z.string().describe("Product name").optional(),
14
+ price: z.number().describe("Price per unit, non-negative"),
15
+ imageUrl: z.string().describe("Product image URL").optional(),
16
+ quantity: z.number().int().describe("Quantity of this item, must be at least 1")
17
+ }).describe("Represents a single item in the cart to be tracked.")).describe("List of items in the cart"),
18
+ phone: z.string().describe("Customer's phone number").optional(),
19
+ cartId: z.string().describe("Unique cart identifier"),
20
+ fields: z.object({}).describe("Additional custom fields for the cart").optional(),
21
+ lastName: z.string().describe("Customer's last name").optional(),
22
+ subtotal: z.number().describe("Cart subtotal amount, non-negative").optional(),
23
+ firstName: z.string().describe("Customer's first name").optional()
24
+ }).describe("Request model for tracking a shopping cart event in Remarkety."),
25
+ output: z.object({ status_code: z.number().int().describe("HTTP status code. Returns 200 for successful cart tracking acknowledgment.") }).describe("Response model for tracking a cart event in Remarkety.\nThe API returns a minimal response with HTTP 200 status code as the primary acknowledgment.")
26
+ });
27
+ //#endregion
28
+ export { remarketyTrackCart };
29
+
30
+ //# sourceMappingURL=track-cart.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"track-cart.mjs","names":[],"sources":["../../src/actions/track-cart.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyTrackCartInput: z.ZodTypeAny = z.object({\n url: z.string().describe(\"Cart recovery URL\").optional(),\n email: z.string().describe(\"Customer's email address\"),\n items: z.array(z.object({\n id: z.string().describe(\"Product SKU or unique identifier\"),\n url: z.string().describe(\"Link to the product page\").optional(),\n name: z.string().describe(\"Product name\").optional(),\n price: z.number().describe(\"Price per unit, non-negative\"),\n imageUrl: z.string().describe(\"Product image URL\").optional(),\n quantity: z.number().int().describe(\"Quantity of this item, must be at least 1\"),\n}).describe(\"Represents a single item in the cart to be tracked.\")).describe(\"List of items in the cart\"),\n phone: z.string().describe(\"Customer's phone number\").optional(),\n cartId: z.string().describe(\"Unique cart identifier\"),\n fields: z.object({}).describe(\"Additional custom fields for the cart\").optional(),\n lastName: z.string().describe(\"Customer's last name\").optional(),\n subtotal: z.number().describe(\"Cart subtotal amount, non-negative\").optional(),\n firstName: z.string().describe(\"Customer's first name\").optional(),\n}).describe(\"Request model for tracking a shopping cart event in Remarkety.\");\nexport const RemarketyTrackCartOutput: z.ZodTypeAny = z.object({\n status_code: z.number().int().describe(\"HTTP status code. Returns 200 for successful cart tracking acknowledgment.\"),\n}).describe(\"Response model for tracking a cart event in Remarkety.\\nThe API returns a minimal response with HTTP 200 status code as the primary acknowledgment.\");\n\nexport const remarketyTrackCart = action(\"REMARKETY_TRACK_CART\", {\n slug: \"remarkety-track-cart\",\n name: \"Track Remarkety Cart\",\n description: \"Tool to track cart events in Remarkety. Use after a customer updates their cart to sync cart data for remarketing.\",\n input: RemarketyTrackCartInput,\n output: RemarketyTrackCartOutput,\n});\n"],"mappings":";;AA0BA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA1BmD,EAAE,OAAO;EAC5D,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;EACvD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B;EACrD,OAAO,EAAE,MAAM,EAAE,OAAO;GACxB,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;GAC1D,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;GAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS;GACnD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;GACzD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;GAC5D,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C;EACjF,CAAC,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,CAAC,SAAS,2BAA2B;EACtG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;EAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wBAAwB;EACpD,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;EAChF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAC/D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;EAC7E,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS;CACnE,CAAC,CAAC,CAAC,SAAS,gEASH;CACP,QAToD,EAAE,OAAO,EAC7D,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4EAA4E,EACrH,CAAC,CAAC,CAAC,SAAS,qJAOF;AACV,CAAC"}
@@ -0,0 +1,36 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/upload-contacts-batch.ts
4
+ const RemarketyUploadContactsBatchInput = zod.z.object({ contacts: zod.z.array(zod.z.object({
5
+ zip: zod.z.string().describe("Postal or ZIP code").optional(),
6
+ city: zod.z.string().describe("City").optional(),
7
+ email: zod.z.string().describe("Contact email address"),
8
+ phone: zod.z.string().describe("Contact phone number").optional(),
9
+ state: zod.z.string().describe("State or province").optional(),
10
+ address: zod.z.string().describe("Street address").optional(),
11
+ country: zod.z.string().describe("ISO country code").optional(),
12
+ lastName: zod.z.string().describe("Contact’s last name").optional(),
13
+ firstName: zod.z.string().describe("Contact’s first name").optional(),
14
+ subscribed: zod.z.boolean().default(true).describe("Whether the contact is subscribed; default is true").optional(),
15
+ customFields: zod.z.object({}).describe("Dictionary of custom fields (string:string)").optional()
16
+ }).describe("A single contact record to upload or update.")).describe("List of contact objects to upload or update") }).describe("Request model for uploading or updating contacts in batch.");
17
+ const RemarketyUploadContactsBatch_FailedContactSchema = zod.z.object({
18
+ email: zod.z.string().describe("Email address of the failed contact"),
19
+ reason: zod.z.string().describe("Reason why the contact failed to upload")
20
+ }).describe("Information about a contact that failed to upload.");
21
+ const RemarketyUploadContactsBatchOutput = zod.z.object({
22
+ failed: zod.z.number().int().describe("Number of contacts that failed to process"),
23
+ success: zod.z.number().int().describe("Number of contacts successfully processed"),
24
+ failedReason: zod.z.array(RemarketyUploadContactsBatch_FailedContactSchema).describe("List of failed contacts with their reasons").nullable().optional()
25
+ }).describe("Response schema for upload contacts batch.");
26
+ const remarketyUploadContactsBatch = require_action.action("REMARKETY_UPLOAD_CONTACTS_BATCH", {
27
+ slug: "remarkety-upload-contacts-batch",
28
+ name: "Upload Contacts Batch",
29
+ description: "Tool to upload or update multiple contacts in batch. Use when you need to import or synchronize many contacts at once.",
30
+ input: RemarketyUploadContactsBatchInput,
31
+ output: RemarketyUploadContactsBatchOutput
32
+ });
33
+ //#endregion
34
+ exports.remarketyUploadContactsBatch = remarketyUploadContactsBatch;
35
+
36
+ //# sourceMappingURL=upload-contacts-batch.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"upload-contacts-batch.cjs","names":["z","action"],"sources":["../../src/actions/upload-contacts-batch.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyUploadContactsBatchInput: z.ZodTypeAny = z.object({\n contacts: z.array(z.object({\n zip: z.string().describe(\"Postal or ZIP code\").optional(),\n city: z.string().describe(\"City\").optional(),\n email: z.string().describe(\"Contact email address\"),\n phone: z.string().describe(\"Contact phone number\").optional(),\n state: z.string().describe(\"State or province\").optional(),\n address: z.string().describe(\"Street address\").optional(),\n country: z.string().describe(\"ISO country code\").optional(),\n lastName: z.string().describe(\"Contact’s last name\").optional(),\n firstName: z.string().describe(\"Contact’s first name\").optional(),\n subscribed: z.boolean().default(true).describe(\"Whether the contact is subscribed; default is true\").optional(),\n customFields: z.object({}).describe(\"Dictionary of custom fields (string:string)\").optional(),\n}).describe(\"A single contact record to upload or update.\")).describe(\"List of contact objects to upload or update\"),\n}).describe(\"Request model for uploading or updating contacts in batch.\");\nconst RemarketyUploadContactsBatch_FailedContactSchema: z.ZodTypeAny = z.object({\n email: z.string().describe(\"Email address of the failed contact\"),\n reason: z.string().describe(\"Reason why the contact failed to upload\"),\n}).describe(\"Information about a contact that failed to upload.\");\nexport const RemarketyUploadContactsBatchOutput: z.ZodTypeAny = z.object({\n failed: z.number().int().describe(\"Number of contacts that failed to process\"),\n success: z.number().int().describe(\"Number of contacts successfully processed\"),\n failedReason: z.array(RemarketyUploadContactsBatch_FailedContactSchema).describe(\"List of failed contacts with their reasons\").nullable().optional(),\n}).describe(\"Response schema for upload contacts batch.\");\n\nexport const remarketyUploadContactsBatch = action(\"REMARKETY_UPLOAD_CONTACTS_BATCH\", {\n slug: \"remarkety-upload-contacts-batch\",\n name: \"Upload Contacts Batch\",\n description: \"Tool to upload or update multiple contacts in batch. Use when you need to import or synchronize many contacts at once.\",\n input: RemarketyUploadContactsBatchInput,\n output: RemarketyUploadContactsBatchOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO,EACtE,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;CAC3B,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,SAAS;CAC3C,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CAClD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC5D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACzD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS;CACxD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAC1D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CAC9D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAChE,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,CAAC,SAAS,6CAA6C,EACnH,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,mDAAiEA,IAAAA,EAAE,OAAO;CAC9E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAChE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;AACvE,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,qCAAmDA,IAAAA,EAAE,OAAO;CACvE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C;CAC7E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C;CAC9E,cAAcA,IAAAA,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrJ,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAExD,MAAa,+BAA+BC,eAAAA,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/upload-contacts-batch.d.ts
4
+ declare const RemarketyUploadContactsBatchInput: z.ZodTypeAny;
5
+ declare const RemarketyUploadContactsBatchOutput: z.ZodTypeAny;
6
+ declare const remarketyUploadContactsBatch: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyUploadContactsBatch };
9
+ //# sourceMappingURL=upload-contacts-batch.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"upload-contacts-batch.d.cts","names":[],"sources":["../../src/actions/upload-contacts-batch.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAcuB;AAAA,cAK5D,kCAAA,EAAoC,CAAA,CAAE,UAIM;AAAA,cAE5C,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/upload-contacts-batch.d.ts
4
+ declare const RemarketyUploadContactsBatchInput: z.ZodTypeAny;
5
+ declare const RemarketyUploadContactsBatchOutput: z.ZodTypeAny;
6
+ declare const remarketyUploadContactsBatch: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { remarketyUploadContactsBatch };
9
+ //# sourceMappingURL=upload-contacts-batch.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"upload-contacts-batch.d.mts","names":[],"sources":["../../src/actions/upload-contacts-batch.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAcuB;AAAA,cAK5D,kCAAA,EAAoC,CAAA,CAAE,UAIM;AAAA,cAE5C,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,35 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/upload-contacts-batch.ts
4
+ const RemarketyUploadContactsBatchInput = z.object({ contacts: z.array(z.object({
5
+ zip: z.string().describe("Postal or ZIP code").optional(),
6
+ city: z.string().describe("City").optional(),
7
+ email: z.string().describe("Contact email address"),
8
+ phone: z.string().describe("Contact phone number").optional(),
9
+ state: z.string().describe("State or province").optional(),
10
+ address: z.string().describe("Street address").optional(),
11
+ country: z.string().describe("ISO country code").optional(),
12
+ lastName: z.string().describe("Contact’s last name").optional(),
13
+ firstName: z.string().describe("Contact’s first name").optional(),
14
+ subscribed: z.boolean().default(true).describe("Whether the contact is subscribed; default is true").optional(),
15
+ customFields: z.object({}).describe("Dictionary of custom fields (string:string)").optional()
16
+ }).describe("A single contact record to upload or update.")).describe("List of contact objects to upload or update") }).describe("Request model for uploading or updating contacts in batch.");
17
+ const RemarketyUploadContactsBatch_FailedContactSchema = z.object({
18
+ email: z.string().describe("Email address of the failed contact"),
19
+ reason: z.string().describe("Reason why the contact failed to upload")
20
+ }).describe("Information about a contact that failed to upload.");
21
+ const remarketyUploadContactsBatch = action("REMARKETY_UPLOAD_CONTACTS_BATCH", {
22
+ slug: "remarkety-upload-contacts-batch",
23
+ name: "Upload Contacts Batch",
24
+ description: "Tool to upload or update multiple contacts in batch. Use when you need to import or synchronize many contacts at once.",
25
+ input: RemarketyUploadContactsBatchInput,
26
+ output: z.object({
27
+ failed: z.number().int().describe("Number of contacts that failed to process"),
28
+ success: z.number().int().describe("Number of contacts successfully processed"),
29
+ failedReason: z.array(RemarketyUploadContactsBatch_FailedContactSchema).describe("List of failed contacts with their reasons").nullable().optional()
30
+ }).describe("Response schema for upload contacts batch.")
31
+ });
32
+ //#endregion
33
+ export { remarketyUploadContactsBatch };
34
+
35
+ //# sourceMappingURL=upload-contacts-batch.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"upload-contacts-batch.mjs","names":[],"sources":["../../src/actions/upload-contacts-batch.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const RemarketyUploadContactsBatchInput: z.ZodTypeAny = z.object({\n contacts: z.array(z.object({\n zip: z.string().describe(\"Postal or ZIP code\").optional(),\n city: z.string().describe(\"City\").optional(),\n email: z.string().describe(\"Contact email address\"),\n phone: z.string().describe(\"Contact phone number\").optional(),\n state: z.string().describe(\"State or province\").optional(),\n address: z.string().describe(\"Street address\").optional(),\n country: z.string().describe(\"ISO country code\").optional(),\n lastName: z.string().describe(\"Contact’s last name\").optional(),\n firstName: z.string().describe(\"Contact’s first name\").optional(),\n subscribed: z.boolean().default(true).describe(\"Whether the contact is subscribed; default is true\").optional(),\n customFields: z.object({}).describe(\"Dictionary of custom fields (string:string)\").optional(),\n}).describe(\"A single contact record to upload or update.\")).describe(\"List of contact objects to upload or update\"),\n}).describe(\"Request model for uploading or updating contacts in batch.\");\nconst RemarketyUploadContactsBatch_FailedContactSchema: z.ZodTypeAny = z.object({\n email: z.string().describe(\"Email address of the failed contact\"),\n reason: z.string().describe(\"Reason why the contact failed to upload\"),\n}).describe(\"Information about a contact that failed to upload.\");\nexport const RemarketyUploadContactsBatchOutput: z.ZodTypeAny = z.object({\n failed: z.number().int().describe(\"Number of contacts that failed to process\"),\n success: z.number().int().describe(\"Number of contacts successfully processed\"),\n failedReason: z.array(RemarketyUploadContactsBatch_FailedContactSchema).describe(\"List of failed contacts with their reasons\").nullable().optional(),\n}).describe(\"Response schema for upload contacts batch.\");\n\nexport const remarketyUploadContactsBatch = action(\"REMARKETY_UPLOAD_CONTACTS_BATCH\", {\n slug: \"remarkety-upload-contacts-batch\",\n name: \"Upload Contacts Batch\",\n description: \"Tool to upload or update multiple contacts in batch. Use when you need to import or synchronize many contacts at once.\",\n input: RemarketyUploadContactsBatchInput,\n output: RemarketyUploadContactsBatchOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkD,EAAE,OAAO,EACtE,UAAU,EAAE,MAAM,EAAE,OAAO;CAC3B,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,MAAM,CAAC,CAAC,SAAS;CAC3C,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CAClD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CACzD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS;CACxD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAC1D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CAC9D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAChE,YAAY,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9G,cAAc,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,CAAC,SAAS,6CAA6C,EACnH,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,mDAAiE,EAAE,OAAO;CAC9E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAChE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;AACvE,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAOhE,MAAa,+BAA+B,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX8D,EAAE,OAAO;EACvE,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C;EAC7E,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C;EAC9E,cAAc,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrJ,CAAC,CAAC,CAAC,SAAS,4CAOF;AACV,CAAC"}
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const remarkety = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "remarkety",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.remarkety = remarkety;
8
+
9
+ //# sourceMappingURL=app.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const remarkety = defineApp({\n slug: \"remarkety\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,uCAAA,CAAA,CAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const remarkety: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { remarkety };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const remarkety: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { remarkety };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { defineApp } from "@keystrokehq/keystroke/app";
2
+ //#region src/app.ts
3
+ const remarkety = defineApp({
4
+ slug: "remarkety",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { remarkety };
9
+
10
+ //# sourceMappingURL=app.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const remarkety = defineApp({\n slug: \"remarkety\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const remarketyCatalog = {
4
+ "slug": "remarkety",
5
+ "name": "Remarkety",
6
+ "description": "Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.",
7
+ "category": "Marketing Automation",
8
+ "logo": "https://logos.composio.dev/api/remarkety",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.remarketyCatalog = remarketyCatalog;
14
+
15
+ //# sourceMappingURL=catalog.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const remarketyCatalog = {\n \"slug\": \"remarkety\",\n \"name\": \"Remarkety\",\n \"description\": \"Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.\",\n \"category\": \"Marketing Automation\",\n \"logo\": \"https://logos.composio.dev/api/remarkety\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const remarketyCatalog: {
4
+ readonly slug: "remarkety";
5
+ readonly name: "Remarkety";
6
+ readonly description: "Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.";
7
+ readonly category: "Marketing Automation";
8
+ readonly logo: "https://logos.composio.dev/api/remarkety";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { remarketyCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const remarketyCatalog: {
4
+ readonly slug: "remarkety";
5
+ readonly name: "Remarkety";
6
+ readonly description: "Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.";
7
+ readonly category: "Marketing Automation";
8
+ readonly logo: "https://logos.composio.dev/api/remarkety";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { remarketyCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const remarketyCatalog = {
4
+ "slug": "remarkety",
5
+ "name": "Remarkety",
6
+ "description": "Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.",
7
+ "category": "Marketing Automation",
8
+ "logo": "https://logos.composio.dev/api/remarkety",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { remarketyCatalog };
14
+
15
+ //# sourceMappingURL=catalog.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const remarketyCatalog = {\n \"slug\": \"remarkety\",\n \"name\": \"Remarkety\",\n \"description\": \"Remarkety is an AI-powered marketing automation platform designed for eCommerce, enabling personalized email, SMS, and social campaigns based on customer behavior.\",\n \"category\": \"Marketing Automation\",\n \"logo\": \"https://logos.composio.dev/api/remarkety\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,18 @@
1
+ let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "remarkety";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeRemarketyTool(tool, args) {
7
+ const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ exports.executeRemarketyTool = executeRemarketyTool;
17
+
18
+ //# sourceMappingURL=execute.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"remarkety\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeRemarketyTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
@@ -0,0 +1,18 @@
1
+ import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "remarkety";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeRemarketyTool(tool, args) {
7
+ const { result } = await createKeystrokeClient().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ export { executeRemarketyTool };
17
+
18
+ //# sourceMappingURL=execute.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"remarkety\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeRemarketyTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
package/dist/index.cjs ADDED
@@ -0,0 +1,16 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_app = require("./app.cjs");
3
+ const require_catalog = require("./catalog.cjs");
4
+ const require_get_campaigns = require("./actions/get-campaigns.cjs");
5
+ const require_get_customers = require("./actions/get-customers.cjs");
6
+ const require_get_products = require("./actions/get-products.cjs");
7
+ const require_track_cart = require("./actions/track-cart.cjs");
8
+ const require_upload_contacts_batch = require("./actions/upload-contacts-batch.cjs");
9
+ require("./actions/index.cjs");
10
+ exports.remarkety = require_app.remarkety;
11
+ exports.remarketyCatalog = require_catalog.remarketyCatalog;
12
+ exports.remarketyGetCampaigns = require_get_campaigns.remarketyGetCampaigns;
13
+ exports.remarketyGetCustomers = require_get_customers.remarketyGetCustomers;
14
+ exports.remarketyGetProducts = require_get_products.remarketyGetProducts;
15
+ exports.remarketyTrackCart = require_track_cart.remarketyTrackCart;
16
+ exports.remarketyUploadContactsBatch = require_upload_contacts_batch.remarketyUploadContactsBatch;
@@ -0,0 +1,8 @@
1
+ import { remarketyGetCampaigns } from "./actions/get-campaigns.cjs";
2
+ import { remarketyGetCustomers } from "./actions/get-customers.cjs";
3
+ import { remarketyGetProducts } from "./actions/get-products.cjs";
4
+ import { remarketyTrackCart } from "./actions/track-cart.cjs";
5
+ import { remarketyUploadContactsBatch } from "./actions/upload-contacts-batch.cjs";
6
+ import { remarkety } from "./app.cjs";
7
+ import { remarketyCatalog } from "./catalog.cjs";
8
+ export { remarkety, remarketyCatalog, remarketyGetCampaigns, remarketyGetCustomers, remarketyGetProducts, remarketyTrackCart, remarketyUploadContactsBatch };
@@ -0,0 +1,8 @@
1
+ import { remarketyGetCampaigns } from "./actions/get-campaigns.mjs";
2
+ import { remarketyGetCustomers } from "./actions/get-customers.mjs";
3
+ import { remarketyGetProducts } from "./actions/get-products.mjs";
4
+ import { remarketyTrackCart } from "./actions/track-cart.mjs";
5
+ import { remarketyUploadContactsBatch } from "./actions/upload-contacts-batch.mjs";
6
+ import { remarkety } from "./app.mjs";
7
+ import { remarketyCatalog } from "./catalog.mjs";
8
+ export { remarkety, remarketyCatalog, remarketyGetCampaigns, remarketyGetCustomers, remarketyGetProducts, remarketyTrackCart, remarketyUploadContactsBatch };
package/dist/index.mjs ADDED
@@ -0,0 +1,9 @@
1
+ import { remarkety } from "./app.mjs";
2
+ import { remarketyCatalog } from "./catalog.mjs";
3
+ import { remarketyGetCampaigns } from "./actions/get-campaigns.mjs";
4
+ import { remarketyGetCustomers } from "./actions/get-customers.mjs";
5
+ import { remarketyGetProducts } from "./actions/get-products.mjs";
6
+ import { remarketyTrackCart } from "./actions/track-cart.mjs";
7
+ import { remarketyUploadContactsBatch } from "./actions/upload-contacts-batch.mjs";
8
+ import "./actions/index.mjs";
9
+ export { remarkety, remarketyCatalog, remarketyGetCampaigns, remarketyGetCustomers, remarketyGetProducts, remarketyTrackCart, remarketyUploadContactsBatch };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@keystrokehq/remarkety",
3
+ "version": "0.1.0",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/keystrokehq/keystroke.git",
11
+ "directory": "packages/integrations/remarkety"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.mts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.mts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.cjs"
26
+ },
27
+ "./actions": {
28
+ "types": "./dist/actions/index.d.mts",
29
+ "import": "./dist/actions/index.mjs",
30
+ "require": "./dist/actions/index.cjs"
31
+ }
32
+ },
33
+ "peerDependencies": {
34
+ "@keystrokehq/keystroke": "^0.1.4",
35
+ "zod": "^4.4.3"
36
+ },
37
+ "devDependencies": {
38
+ "@keystrokehq/keystroke": "link:../../keystroke",
39
+ "@types/node": "^25.9.1",
40
+ "tsdown": "^0.22.0",
41
+ "typescript": "^6.0.3",
42
+ "zod": "^4.4.3"
43
+ },
44
+ "scripts": {
45
+ "build": "tsdown",
46
+ "dev": "tsdown --watch --no-clean",
47
+ "typecheck": "tsc --noEmit"
48
+ }
49
+ }