@keystrokehq/satismeter 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/embed-survey.cjs +1 -1
  4. package/dist/actions/embed-survey.cjs.map +1 -1
  5. package/dist/actions/embed-survey.d.cts +15 -3
  6. package/dist/actions/embed-survey.d.cts.map +1 -1
  7. package/dist/actions/embed-survey.d.mts +15 -3
  8. package/dist/actions/embed-survey.d.mts.map +1 -1
  9. package/dist/actions/embed-survey.mjs +1 -1
  10. package/dist/actions/embed-survey.mjs.map +1 -1
  11. package/dist/actions/get-unsubscribed-emails.cjs +2 -2
  12. package/dist/actions/get-unsubscribed-emails.cjs.map +1 -1
  13. package/dist/actions/get-unsubscribed-emails.d.cts +15 -3
  14. package/dist/actions/get-unsubscribed-emails.d.cts.map +1 -1
  15. package/dist/actions/get-unsubscribed-emails.d.mts +15 -3
  16. package/dist/actions/get-unsubscribed-emails.d.mts.map +1 -1
  17. package/dist/actions/get-unsubscribed-emails.mjs +2 -2
  18. package/dist/actions/get-unsubscribed-emails.mjs.map +1 -1
  19. package/dist/actions/list-surveys.cjs +2 -2
  20. package/dist/actions/list-surveys.cjs.map +1 -1
  21. package/dist/actions/list-surveys.d.cts +14 -3
  22. package/dist/actions/list-surveys.d.cts.map +1 -1
  23. package/dist/actions/list-surveys.d.mts +14 -3
  24. package/dist/actions/list-surveys.d.mts.map +1 -1
  25. package/dist/actions/list-surveys.mjs +2 -2
  26. package/dist/actions/list-surveys.mjs.map +1 -1
  27. package/dist/actions/list-users.cjs +1 -1
  28. package/dist/actions/list-users.cjs.map +1 -1
  29. package/dist/actions/list-users.d.cts +21 -3
  30. package/dist/actions/list-users.d.cts.map +1 -1
  31. package/dist/actions/list-users.d.mts +21 -3
  32. package/dist/actions/list-users.d.mts.map +1 -1
  33. package/dist/actions/list-users.mjs +1 -1
  34. package/dist/actions/list-users.mjs.map +1 -1
  35. package/dist/actions/update-unsubscribed-emails.cjs +1 -1
  36. package/dist/actions/update-unsubscribed-emails.cjs.map +1 -1
  37. package/dist/actions/update-unsubscribed-emails.d.cts +13 -3
  38. package/dist/actions/update-unsubscribed-emails.d.cts.map +1 -1
  39. package/dist/actions/update-unsubscribed-emails.d.mts +13 -3
  40. package/dist/actions/update-unsubscribed-emails.d.mts.map +1 -1
  41. package/dist/actions/update-unsubscribed-emails.mjs +1 -1
  42. package/dist/actions/update-unsubscribed-emails.mjs.map +1 -1
  43. package/dist/catalog.cjs +13 -1
  44. package/dist/catalog.cjs.map +1 -1
  45. package/dist/catalog.d.cts +12 -0
  46. package/dist/catalog.d.mts +12 -0
  47. package/dist/catalog.mjs +13 -1
  48. package/dist/catalog.mjs.map +1 -1
  49. package/package.json +2 -2
@@ -1 +1 @@
1
- {"version":3,"file":"action.cjs","names":["satismeter","executeSatismeterTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { satismeter } from \"./app\";\nimport { executeSatismeterTool } 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 satismeter.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 executeSatismeterTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,WAAW,OAAO;EACvB,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,sBAAsB,MAAM,KAAgC,CAAC;EAC7F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.cjs","names":["satismeter","executeSatismeterTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { satismeter } from \"./app\";\nimport { executeSatismeterTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return satismeter.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeSatismeterTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,WAAW,OAAO;EACvB,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,sBAAsB,MAAM,KAAgC,CAAC;EAC7F;CACF,CAAC;AACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { satismeter } from \"./app\";\nimport { executeSatismeterTool } 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 satismeter.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 executeSatismeterTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,WAAW,OAAO;EACvB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,sBAAsB,MAAM,KAAgC,CAAC;EAC7F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { satismeter } from \"./app\";\nimport { executeSatismeterTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return satismeter.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeSatismeterTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,WAAW,OAAO;EACvB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,sBAAsB,MAAM,KAAgC,CAAC;EAC7F;CACF,CAAC;AACH"}
@@ -7,7 +7,7 @@ const SatismeterEmbedSurveyInput = zod.z.object({
7
7
  settings: zod.z.object({}).describe("Survey display settings including language and custom text").optional(),
8
8
  writeKey: zod.z.string().describe("Project Write Key from SatisMeter")
9
9
  }).describe("Request model for generating the embed survey JavaScript snippet.");
10
- const SatismeterEmbedSurveyOutput = zod.z.object({ embed_code: zod.z.string().describe("HTML <script> block to embed the Satismeter survey") }).describe("Response model containing the embed code snippet.");
10
+ const SatismeterEmbedSurveyOutput = zod.z.object({ embed_code: zod.z.string().describe("HTML <script> block to embed the Satismeter survey").nullable() }).describe("Response model containing the embed code snippet.");
11
11
  const satismeterEmbedSurvey = require_action.action("SATISMETER_EMBED_SURVEY", {
12
12
  slug: "satismeter-embed-survey",
13
13
  name: "Embed Survey",
@@ -1 +1 @@
1
- {"version":3,"file":"embed-survey.cjs","names":["z","action"],"sources":["../../src/actions/embed-survey.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterEmbedSurveyInput: z.ZodTypeAny = z.object({\n traits: z.object({}).describe(\"Additional user profile information\").optional(),\n userId: z.string().describe(\"Unique identifier for the user to target with the survey\").optional(),\n settings: z.object({}).describe(\"Survey display settings including language and custom text\").optional(),\n writeKey: z.string().describe(\"Project Write Key from SatisMeter\"),\n}).describe(\"Request model for generating the embed survey JavaScript snippet.\");\nexport const SatismeterEmbedSurveyOutput: z.ZodTypeAny = z.object({\n embed_code: z.string().describe(\"HTML <script> block to embed the Satismeter survey\"),\n}).describe(\"Response model containing the embed code snippet.\");\n\nexport const satismeterEmbedSurvey = action(\"SATISMETER_EMBED_SURVEY\", {\n slug: \"satismeter-embed-survey\",\n name: \"Embed Survey\",\n description: \"Tool to generate a JavaScript snippet to embed a SatisMeter survey. Use after configuring your project and obtaining your write key.\",\n input: SatismeterEmbedSurveyInput,\n output: SatismeterEmbedSurveyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC9E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CACjG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACvG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;AACnE,CAAC,CAAC,CAAC,SAAS,mEAAmE;AAC/E,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,EACtF,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAE/D,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"embed-survey.cjs","names":["z","action"],"sources":["../../src/actions/embed-survey.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterEmbedSurveyInput = z.object({\n traits: z.object({}).describe(\"Additional user profile information\").optional(),\n userId: z.string().describe(\"Unique identifier for the user to target with the survey\").optional(),\n settings: z.object({}).describe(\"Survey display settings including language and custom text\").optional(),\n writeKey: z.string().describe(\"Project Write Key from SatisMeter\"),\n}).describe(\"Request model for generating the embed survey JavaScript snippet.\");\nexport const SatismeterEmbedSurveyOutput = z.object({\n embed_code: z.string().describe(\"HTML <script> block to embed the Satismeter survey\").nullable(),\n}).describe(\"Response model containing the embed code snippet.\");\n\nexport const satismeterEmbedSurvey = action(\"SATISMETER_EMBED_SURVEY\", {\n slug: \"satismeter-embed-survey\",\n name: \"Embed Survey\",\n description: \"Tool to generate a JavaScript snippet to embed a SatisMeter survey. Use after configuring your project and obtaining your write key.\",\n input: SatismeterEmbedSurveyInput,\n output: SatismeterEmbedSurveyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC9E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CACjG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACvG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;AACnE,CAAC,CAAC,CAAC,SAAS,mEAAmE;AAC/E,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,EACjG,CAAC,CAAC,CAAC,SAAS,mDAAmD;AAE/D,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,21 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/embed-survey.d.ts
4
- declare const SatismeterEmbedSurveyInput: z.ZodTypeAny;
5
- declare const SatismeterEmbedSurveyOutput: z.ZodTypeAny;
6
- declare const satismeterEmbedSurvey: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterEmbedSurveyInput: z.ZodObject<{
5
+ traits: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
6
+ userId: z.ZodOptional<z.ZodString>;
7
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
8
+ writeKey: z.ZodString;
9
+ }, z.core.$strip>;
10
+ declare const SatismeterEmbedSurveyOutput: z.ZodObject<{
11
+ embed_code: z.ZodNullable<z.ZodString>;
12
+ }, z.core.$strip>;
13
+ declare const satismeterEmbedSurvey: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ writeKey: string;
15
+ traits?: Record<string, never> | undefined;
16
+ userId?: string | undefined;
17
+ settings?: Record<string, never> | undefined;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
19
  //#endregion
8
20
  export { satismeterEmbedSurvey };
9
21
  //# sourceMappingURL=embed-survey.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"embed-survey.d.cts","names":[],"sources":["../../src/actions/embed-survey.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAKqC;AAAA,cACnE,2BAAA,EAA6B,CAAA,CAAE,UAEoB;AAAA,cAEnD,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"embed-survey.d.cts","names":[],"sources":["../../src/actions/embed-survey.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;cAM1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAI3B,qBAAA,gCAAqB,wBAAA;;WAMhC,MAAA;;aAAA,MAAA;AAAA"}
@@ -1,9 +1,21 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/embed-survey.d.ts
4
- declare const SatismeterEmbedSurveyInput: z.ZodTypeAny;
5
- declare const SatismeterEmbedSurveyOutput: z.ZodTypeAny;
6
- declare const satismeterEmbedSurvey: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterEmbedSurveyInput: z.ZodObject<{
5
+ traits: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
6
+ userId: z.ZodOptional<z.ZodString>;
7
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$strip>>;
8
+ writeKey: z.ZodString;
9
+ }, z.core.$strip>;
10
+ declare const SatismeterEmbedSurveyOutput: z.ZodObject<{
11
+ embed_code: z.ZodNullable<z.ZodString>;
12
+ }, z.core.$strip>;
13
+ declare const satismeterEmbedSurvey: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ writeKey: string;
15
+ traits?: Record<string, never> | undefined;
16
+ userId?: string | undefined;
17
+ settings?: Record<string, never> | undefined;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
19
  //#endregion
8
20
  export { satismeterEmbedSurvey };
9
21
  //# sourceMappingURL=embed-survey.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"embed-survey.d.mts","names":[],"sources":["../../src/actions/embed-survey.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAKqC;AAAA,cACnE,2BAAA,EAA6B,CAAA,CAAE,UAEoB;AAAA,cAEnD,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"embed-survey.d.mts","names":[],"sources":["../../src/actions/embed-survey.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;cAM1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;cAI3B,qBAAA,gCAAqB,wBAAA;;WAMhC,MAAA;;aAAA,MAAA;AAAA"}
@@ -10,7 +10,7 @@ const satismeterEmbedSurvey = action("SATISMETER_EMBED_SURVEY", {
10
10
  settings: z.object({}).describe("Survey display settings including language and custom text").optional(),
11
11
  writeKey: z.string().describe("Project Write Key from SatisMeter")
12
12
  }).describe("Request model for generating the embed survey JavaScript snippet."),
13
- output: z.object({ embed_code: z.string().describe("HTML <script> block to embed the Satismeter survey") }).describe("Response model containing the embed code snippet.")
13
+ output: z.object({ embed_code: z.string().describe("HTML <script> block to embed the Satismeter survey").nullable() }).describe("Response model containing the embed code snippet.")
14
14
  });
15
15
  //#endregion
16
16
  export { satismeterEmbedSurvey };
@@ -1 +1 @@
1
- {"version":3,"file":"embed-survey.mjs","names":[],"sources":["../../src/actions/embed-survey.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterEmbedSurveyInput: z.ZodTypeAny = z.object({\n traits: z.object({}).describe(\"Additional user profile information\").optional(),\n userId: z.string().describe(\"Unique identifier for the user to target with the survey\").optional(),\n settings: z.object({}).describe(\"Survey display settings including language and custom text\").optional(),\n writeKey: z.string().describe(\"Project Write Key from SatisMeter\"),\n}).describe(\"Request model for generating the embed survey JavaScript snippet.\");\nexport const SatismeterEmbedSurveyOutput: z.ZodTypeAny = z.object({\n embed_code: z.string().describe(\"HTML <script> block to embed the Satismeter survey\"),\n}).describe(\"Response model containing the embed code snippet.\");\n\nexport const satismeterEmbedSurvey = action(\"SATISMETER_EMBED_SURVEY\", {\n slug: \"satismeter-embed-survey\",\n name: \"Embed Survey\",\n description: \"Tool to generate a JavaScript snippet to embed a SatisMeter survey. Use after configuring your project and obtaining your write key.\",\n input: SatismeterEmbedSurveyInput,\n output: SatismeterEmbedSurveyOutput,\n});\n"],"mappings":";;AAcA,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdsD,EAAE,OAAO;EAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;EAC9E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EACjG,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;EACvG,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CACnE,CAAC,CAAC,CAAC,SAAS,mEASH;CACP,QATuD,EAAE,OAAO,EAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,EACtF,CAAC,CAAC,CAAC,SAAS,mDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"embed-survey.mjs","names":[],"sources":["../../src/actions/embed-survey.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterEmbedSurveyInput = z.object({\n traits: z.object({}).describe(\"Additional user profile information\").optional(),\n userId: z.string().describe(\"Unique identifier for the user to target with the survey\").optional(),\n settings: z.object({}).describe(\"Survey display settings including language and custom text\").optional(),\n writeKey: z.string().describe(\"Project Write Key from SatisMeter\"),\n}).describe(\"Request model for generating the embed survey JavaScript snippet.\");\nexport const SatismeterEmbedSurveyOutput = z.object({\n embed_code: z.string().describe(\"HTML <script> block to embed the Satismeter survey\").nullable(),\n}).describe(\"Response model containing the embed code snippet.\");\n\nexport const satismeterEmbedSurvey = action(\"SATISMETER_EMBED_SURVEY\", {\n slug: \"satismeter-embed-survey\",\n name: \"Embed Survey\",\n description: \"Tool to generate a JavaScript snippet to embed a SatisMeter survey. Use after configuring your project and obtaining your write key.\",\n input: SatismeterEmbedSurveyInput,\n output: SatismeterEmbedSurveyOutput,\n});\n"],"mappings":";;AAcA,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;EAC9E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EACjG,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;EACvG,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CACnE,CAAC,CAAC,CAAC,SAAS,mEASH;CACP,QATyC,EAAE,OAAO,EAClD,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,EACjG,CAAC,CAAC,CAAC,SAAS,mDAOF;AACV,CAAC"}
@@ -4,8 +4,8 @@ let zod = require("zod");
4
4
  const SatismeterGetUnsubscribedEmailsInput = zod.z.object({ project_id: zod.z.string().describe("Unique ID of the project to retrieve unsubscribed emails for. This is the Project ID found in Settings > Integrations > API in your SatisMeter dashboard (24-character MongoDB ObjectID format, e.g., '68877a5547d1914b110d41bd').") }).describe("Request model for retrieving unsubscribed emails for a Satismeter project.");
5
5
  const SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema = zod.z.object({ emails: zod.z.array(zod.z.string()).describe("List of unsubscribed email addresses.").nullable().optional() }).describe("Attributes containing the list of unsubscribed emails.");
6
6
  const SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema = zod.z.object({
7
- id: zod.z.string().describe("The project ID."),
8
- type: zod.z.string().describe("The resource type (always 'project-unsubscribes')."),
7
+ id: zod.z.string().describe("The project ID.").nullable(),
8
+ type: zod.z.string().describe("The resource type (always 'project-unsubscribes').").nullable(),
9
9
  attributes: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema.nullable()
10
10
  }).describe("Data container for the unsubscribed emails response.");
11
11
  const SatismeterGetUnsubscribedEmailsOutput = zod.z.object({ data: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema.nullable() }).describe("Response model containing the list of unsubscribed emails in JSON:API format.");
@@ -1 +1 @@
1
- {"version":3,"file":"get-unsubscribed-emails.cjs","names":["z","action"],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterGetUnsubscribedEmailsInput: z.ZodTypeAny = z.object({\n project_id: z.string().describe(\"Unique ID of the project to retrieve unsubscribed emails for. This is the Project ID found in Settings > Integrations > API in your SatisMeter dashboard (24-character MongoDB ObjectID format, e.g., '68877a5547d1914b110d41bd').\"),\n}).describe(\"Request model for retrieving unsubscribed emails for a Satismeter project.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema: z.ZodTypeAny = z.object({\n emails: z.array(z.string()).describe(\"List of unsubscribed email addresses.\").nullable().optional(),\n}).describe(\"Attributes containing the list of unsubscribed emails.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The project ID.\"),\n type: z.string().describe(\"The resource type (always 'project-unsubscribes').\"),\n attributes: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema.nullable(),\n}).describe(\"Data container for the unsubscribed emails response.\");\nexport const SatismeterGetUnsubscribedEmailsOutput: z.ZodTypeAny = z.object({\n data: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema.nullable(),\n}).describe(\"Response model containing the list of unsubscribed emails in JSON:API format.\");\n\nexport const satismeterGetUnsubscribedEmails = action(\"SATISMETER_GET_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-get-unsubscribed-emails\",\n name: \"Get Unsubscribed Emails\",\n description: \"Tool to retrieve list of unsubscribed emails for a project. Use when you need to fetch emails that have opted out of surveys.\",\n input: SatismeterGetUnsubscribedEmailsInput,\n output: SatismeterGetUnsubscribedEmailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAqDA,IAAAA,EAAE,OAAO,EACzE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oOAAoO,EACtQ,CAAC,CAAC,CAAC,SAAS,4EAA4E;AACxF,MAAM,gFAA8FA,IAAAA,EAAE,OAAO,EAC3G,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,0EAAwFA,IAAAA,EAAE,OAAO;CACrG,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB;CACzC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD;CAC9E,YAAY,8EAA8E,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAa,wCAAsDA,IAAAA,EAAE,OAAO,EAC1E,MAAM,wEAAwE,SAAS,EACzF,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAE3F,MAAa,kCAAkCC,eAAAA,OAAO,sCAAsC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-unsubscribed-emails.cjs","names":["z","action"],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterGetUnsubscribedEmailsInput = z.object({\n project_id: z.string().describe(\"Unique ID of the project to retrieve unsubscribed emails for. This is the Project ID found in Settings > Integrations > API in your SatisMeter dashboard (24-character MongoDB ObjectID format, e.g., '68877a5547d1914b110d41bd').\"),\n}).describe(\"Request model for retrieving unsubscribed emails for a Satismeter project.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema = z.object({\n emails: z.array(z.string()).describe(\"List of unsubscribed email addresses.\").nullable().optional(),\n}).describe(\"Attributes containing the list of unsubscribed emails.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema = z.object({\n id: z.string().describe(\"The project ID.\").nullable(),\n type: z.string().describe(\"The resource type (always 'project-unsubscribes').\").nullable(),\n attributes: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema.nullable(),\n}).describe(\"Data container for the unsubscribed emails response.\");\nexport const SatismeterGetUnsubscribedEmailsOutput = z.object({\n data: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema.nullable(),\n}).describe(\"Response model containing the list of unsubscribed emails in JSON:API format.\");\n\nexport const satismeterGetUnsubscribedEmails = action(\"SATISMETER_GET_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-get-unsubscribed-emails\",\n name: \"Get Unsubscribed Emails\",\n description: \"Tool to retrieve list of unsubscribed emails for a project. Use when you need to fetch emails that have opted out of surveys.\",\n input: SatismeterGetUnsubscribedEmailsInput,\n output: SatismeterGetUnsubscribedEmailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAuCA,IAAAA,EAAE,OAAO,EAC3D,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oOAAoO,EACtQ,CAAC,CAAC,CAAC,SAAS,4EAA4E;AACxF,MAAM,gFAAgFA,IAAAA,EAAE,OAAO,EAC7F,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,0EAA0EA,IAAAA,EAAE,OAAO;CACvF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CACpD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACzF,YAAY,8EAA8E,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAa,wCAAwCA,IAAAA,EAAE,OAAO,EAC5D,MAAM,wEAAwE,SAAS,EACzF,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAE3F,MAAa,kCAAkCC,eAAAA,OAAO,sCAAsC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,21 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-unsubscribed-emails.d.ts
4
- declare const SatismeterGetUnsubscribedEmailsInput: z.ZodTypeAny;
5
- declare const SatismeterGetUnsubscribedEmailsOutput: z.ZodTypeAny;
6
- declare const satismeterGetUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterGetUnsubscribedEmailsInput: z.ZodObject<{
5
+ project_id: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SatismeterGetUnsubscribedEmailsOutput: z.ZodObject<{
8
+ data: z.ZodNullable<z.ZodObject<{
9
+ id: z.ZodNullable<z.ZodString>;
10
+ type: z.ZodNullable<z.ZodString>;
11
+ attributes: z.ZodNullable<z.ZodObject<{
12
+ emails: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
13
+ }, z.core.$strip>>;
14
+ }, z.core.$strip>>;
15
+ }, z.core.$strip>;
16
+ declare const satismeterGetUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<{
17
+ project_id: string;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
19
  //#endregion
8
20
  export { satismeterGetUnsubscribedEmails };
9
21
  //# sourceMappingURL=get-unsubscribed-emails.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-unsubscribed-emails.d.cts","names":[],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"mappings":";;;cAIa,oCAAA,EAAsC,CAAA,CAAE,UAEoC;AAAA,cAS5E,qCAAA,EAAuC,CAAA,CAAE,UAEsC;AAAA,cAE/E,+BAAA,gCAA+B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-unsubscribed-emails.d.cts","names":[],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"mappings":";;;cAIa,oCAAA,EAAoC,CAAA,CAAA,SAAA;;;cAWpC,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;;;;;;;cAIrC,+BAAA,gCAA+B,wBAAA"}
@@ -1,9 +1,21 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/get-unsubscribed-emails.d.ts
4
- declare const SatismeterGetUnsubscribedEmailsInput: z.ZodTypeAny;
5
- declare const SatismeterGetUnsubscribedEmailsOutput: z.ZodTypeAny;
6
- declare const satismeterGetUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterGetUnsubscribedEmailsInput: z.ZodObject<{
5
+ project_id: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SatismeterGetUnsubscribedEmailsOutput: z.ZodObject<{
8
+ data: z.ZodNullable<z.ZodObject<{
9
+ id: z.ZodNullable<z.ZodString>;
10
+ type: z.ZodNullable<z.ZodString>;
11
+ attributes: z.ZodNullable<z.ZodObject<{
12
+ emails: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
13
+ }, z.core.$strip>>;
14
+ }, z.core.$strip>>;
15
+ }, z.core.$strip>;
16
+ declare const satismeterGetUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<{
17
+ project_id: string;
18
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
19
  //#endregion
8
20
  export { satismeterGetUnsubscribedEmails };
9
21
  //# sourceMappingURL=get-unsubscribed-emails.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-unsubscribed-emails.d.mts","names":[],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"mappings":";;;cAIa,oCAAA,EAAsC,CAAA,CAAE,UAEoC;AAAA,cAS5E,qCAAA,EAAuC,CAAA,CAAE,UAEsC;AAAA,cAE/E,+BAAA,gCAA+B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-unsubscribed-emails.d.mts","names":[],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"mappings":";;;cAIa,oCAAA,EAAoC,CAAA,CAAA,SAAA;;;cAWpC,qCAAA,EAAqC,CAAA,CAAA,SAAA;;;;;;;;;cAIrC,+BAAA,gCAA+B,wBAAA"}
@@ -4,8 +4,8 @@ import { z } from "zod";
4
4
  const SatismeterGetUnsubscribedEmailsInput = z.object({ project_id: z.string().describe("Unique ID of the project to retrieve unsubscribed emails for. This is the Project ID found in Settings > Integrations > API in your SatisMeter dashboard (24-character MongoDB ObjectID format, e.g., '68877a5547d1914b110d41bd').") }).describe("Request model for retrieving unsubscribed emails for a Satismeter project.");
5
5
  const SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema = z.object({ emails: z.array(z.string()).describe("List of unsubscribed email addresses.").nullable().optional() }).describe("Attributes containing the list of unsubscribed emails.");
6
6
  const SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema = z.object({
7
- id: z.string().describe("The project ID."),
8
- type: z.string().describe("The resource type (always 'project-unsubscribes')."),
7
+ id: z.string().describe("The project ID.").nullable(),
8
+ type: z.string().describe("The resource type (always 'project-unsubscribes').").nullable(),
9
9
  attributes: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema.nullable()
10
10
  }).describe("Data container for the unsubscribed emails response.");
11
11
  const satismeterGetUnsubscribedEmails = action("SATISMETER_GET_UNSUBSCRIBED_EMAILS", {
@@ -1 +1 @@
1
- {"version":3,"file":"get-unsubscribed-emails.mjs","names":[],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterGetUnsubscribedEmailsInput: z.ZodTypeAny = z.object({\n project_id: z.string().describe(\"Unique ID of the project to retrieve unsubscribed emails for. This is the Project ID found in Settings > Integrations > API in your SatisMeter dashboard (24-character MongoDB ObjectID format, e.g., '68877a5547d1914b110d41bd').\"),\n}).describe(\"Request model for retrieving unsubscribed emails for a Satismeter project.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema: z.ZodTypeAny = z.object({\n emails: z.array(z.string()).describe(\"List of unsubscribed email addresses.\").nullable().optional(),\n}).describe(\"Attributes containing the list of unsubscribed emails.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The project ID.\"),\n type: z.string().describe(\"The resource type (always 'project-unsubscribes').\"),\n attributes: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema.nullable(),\n}).describe(\"Data container for the unsubscribed emails response.\");\nexport const SatismeterGetUnsubscribedEmailsOutput: z.ZodTypeAny = z.object({\n data: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema.nullable(),\n}).describe(\"Response model containing the list of unsubscribed emails in JSON:API format.\");\n\nexport const satismeterGetUnsubscribedEmails = action(\"SATISMETER_GET_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-get-unsubscribed-emails\",\n name: \"Get Unsubscribed Emails\",\n description: \"Tool to retrieve list of unsubscribed emails for a project. Use when you need to fetch emails that have opted out of surveys.\",\n input: SatismeterGetUnsubscribedEmailsInput,\n output: SatismeterGetUnsubscribedEmailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAqD,EAAE,OAAO,EACzE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,oOAAoO,EACtQ,CAAC,CAAC,CAAC,SAAS,4EAA4E;AACxF,MAAM,gFAA8F,EAAE,OAAO,EAC3G,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,0EAAwF,EAAE,OAAO;CACrG,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB;CACzC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD;CAC9E,YAAY,8EAA8E,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAKlE,MAAa,kCAAkC,OAAO,sCAAsC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATiE,EAAE,OAAO,EAC1E,MAAM,wEAAwE,SAAS,EACzF,CAAC,CAAC,CAAC,SAAS,+EAOF;AACV,CAAC"}
1
+ {"version":3,"file":"get-unsubscribed-emails.mjs","names":[],"sources":["../../src/actions/get-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterGetUnsubscribedEmailsInput = z.object({\n project_id: z.string().describe(\"Unique ID of the project to retrieve unsubscribed emails for. This is the Project ID found in Settings > Integrations > API in your SatisMeter dashboard (24-character MongoDB ObjectID format, e.g., '68877a5547d1914b110d41bd').\"),\n}).describe(\"Request model for retrieving unsubscribed emails for a Satismeter project.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema = z.object({\n emails: z.array(z.string()).describe(\"List of unsubscribed email addresses.\").nullable().optional(),\n}).describe(\"Attributes containing the list of unsubscribed emails.\");\nconst SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema = z.object({\n id: z.string().describe(\"The project ID.\").nullable(),\n type: z.string().describe(\"The resource type (always 'project-unsubscribes').\").nullable(),\n attributes: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseAttributesSchema.nullable(),\n}).describe(\"Data container for the unsubscribed emails response.\");\nexport const SatismeterGetUnsubscribedEmailsOutput = z.object({\n data: SatismeterGetUnsubscribedEmails_GetUnsubscribedEmailsResponseDataSchema.nullable(),\n}).describe(\"Response model containing the list of unsubscribed emails in JSON:API format.\");\n\nexport const satismeterGetUnsubscribedEmails = action(\"SATISMETER_GET_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-get-unsubscribed-emails\",\n name: \"Get Unsubscribed Emails\",\n description: \"Tool to retrieve list of unsubscribed emails for a project. Use when you need to fetch emails that have opted out of surveys.\",\n input: SatismeterGetUnsubscribedEmailsInput,\n output: SatismeterGetUnsubscribedEmailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,uCAAuC,EAAE,OAAO,EAC3D,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,oOAAoO,EACtQ,CAAC,CAAC,CAAC,SAAS,4EAA4E;AACxF,MAAM,gFAAgF,EAAE,OAAO,EAC7F,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpG,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAM,0EAA0E,EAAE,OAAO;CACvF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS;CACpD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACzF,YAAY,8EAA8E,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAKlE,MAAa,kCAAkC,OAAO,sCAAsC;CAC1F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATmD,EAAE,OAAO,EAC5D,MAAM,wEAAwE,SAAS,EACzF,CAAC,CAAC,CAAC,SAAS,+EAOF;AACV,CAAC"}
@@ -3,8 +3,8 @@ let zod = require("zod");
3
3
  //#region src/actions/list-surveys.ts
4
4
  const SatismeterListSurveysInput = zod.z.object({ project: zod.z.string().describe("SatisMeter project ID (24-character hex string). Obtain from your connected SatisMeter account or from the SatisMeter dashboard under Project Settings. Do not use project names.") }).describe("Request model for listing surveys (campaigns) in a SatisMeter project.");
5
5
  const SatismeterListSurveys_ListSurveysResponseDataSchema = zod.z.object({
6
- id: zod.z.string().describe("Unique identifier of the survey (campaign)"),
7
- name: zod.z.string().describe("Name of the survey (campaign)"),
6
+ id: zod.z.string().describe("Unique identifier of the survey (campaign)").nullable(),
7
+ name: zod.z.string().describe("Name of the survey (campaign)").nullable(),
8
8
  type: zod.z.string().describe("Survey template type (nps, ces, csat, pmf, or custom)").nullable().optional(),
9
9
  state: zod.z.string().describe("Current survey status (live, paused, or draft)").nullable().optional()
10
10
  });
@@ -1 +1 @@
1
- {"version":3,"file":"list-surveys.cjs","names":["z","action"],"sources":["../../src/actions/list-surveys.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListSurveysInput: z.ZodTypeAny = z.object({\n project: z.string().describe(\"SatisMeter project ID (24-character hex string). Obtain from your connected SatisMeter account or from the SatisMeter dashboard under Project Settings. Do not use project names.\"),\n}).describe(\"Request model for listing surveys (campaigns) in a SatisMeter project.\");\nconst SatismeterListSurveys_ListSurveysResponseDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the survey (campaign)\"),\n name: z.string().describe(\"Name of the survey (campaign)\"),\n type: z.string().describe(\"Survey template type (nps, ces, csat, pmf, or custom)\").nullable().optional(),\n state: z.string().describe(\"Current survey status (live, paused, or draft)\").nullable().optional(),\n});\nexport const SatismeterListSurveysOutput: z.ZodTypeAny = z.object({\n data: z.array(SatismeterListSurveys_ListSurveysResponseDataSchema).describe(\"List of surveys (campaigns)\"),\n});\n\nexport const satismeterListSurveys = action(\"SATISMETER_LIST_SURVEYS\", {\n slug: \"satismeter-list-surveys\",\n name: \"List Surveys\",\n description: \"Tool to list surveys (campaigns) in a project. Use when you have a valid project ID and need to retrieve its surveys.\",\n input: SatismeterListSurveysInput,\n output: SatismeterListSurveysOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2CA,IAAAA,EAAE,OAAO,EAC/D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mLAAmL,EAClN,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,sDAAoEA,IAAAA,EAAE,OAAO;CACjF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnG,CAAC;AACD,MAAa,8BAA4CA,IAAAA,EAAE,OAAO,EAChE,MAAMA,IAAAA,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,6BAA6B,EAC3G,CAAC;AAED,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-surveys.cjs","names":["z","action"],"sources":["../../src/actions/list-surveys.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListSurveysInput = z.object({\n project: z.string().describe(\"SatisMeter project ID (24-character hex string). Obtain from your connected SatisMeter account or from the SatisMeter dashboard under Project Settings. Do not use project names.\"),\n}).describe(\"Request model for listing surveys (campaigns) in a SatisMeter project.\");\nconst SatismeterListSurveys_ListSurveysResponseDataSchema = z.object({\n id: z.string().describe(\"Unique identifier of the survey (campaign)\").nullable(),\n name: z.string().describe(\"Name of the survey (campaign)\").nullable(),\n type: z.string().describe(\"Survey template type (nps, ces, csat, pmf, or custom)\").nullable().optional(),\n state: z.string().describe(\"Current survey status (live, paused, or draft)\").nullable().optional(),\n});\nexport const SatismeterListSurveysOutput = z.object({\n data: z.array(SatismeterListSurveys_ListSurveysResponseDataSchema).describe(\"List of surveys (campaigns)\"),\n});\n\nexport const satismeterListSurveys = action(\"SATISMETER_LIST_SURVEYS\", {\n slug: \"satismeter-list-surveys\",\n name: \"List Surveys\",\n description: \"Tool to list surveys (campaigns) in a project. Use when you have a valid project ID and need to retrieve its surveys.\",\n input: SatismeterListSurveysInput,\n output: SatismeterListSurveysOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mLAAmL,EAClN,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,sDAAsDA,IAAAA,EAAE,OAAO;CACnE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnG,CAAC;AACD,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,MAAMA,IAAAA,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,6BAA6B,EAC3G,CAAC;AAED,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,20 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/list-surveys.d.ts
4
- declare const SatismeterListSurveysInput: z.ZodTypeAny;
5
- declare const SatismeterListSurveysOutput: z.ZodTypeAny;
6
- declare const satismeterListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterListSurveysInput: z.ZodObject<{
5
+ project: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SatismeterListSurveysOutput: z.ZodObject<{
8
+ data: z.ZodArray<z.ZodObject<{
9
+ id: z.ZodNullable<z.ZodString>;
10
+ name: z.ZodNullable<z.ZodString>;
11
+ type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
+ }, z.core.$strip>>;
14
+ }, z.core.$strip>;
15
+ declare const satismeterListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<{
16
+ project: string;
17
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
18
  //#endregion
8
19
  export { satismeterListSurveys };
9
20
  //# sourceMappingURL=list-surveys.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-surveys.d.cts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAE0C;AAAA,cAOxE,2BAAA,EAA6B,CAAA,CAAE,UAE1C;AAAA,cAEW,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-surveys.d.cts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;cAS1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
@@ -1,9 +1,20 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/list-surveys.d.ts
4
- declare const SatismeterListSurveysInput: z.ZodTypeAny;
5
- declare const SatismeterListSurveysOutput: z.ZodTypeAny;
6
- declare const satismeterListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterListSurveysInput: z.ZodObject<{
5
+ project: z.ZodString;
6
+ }, z.core.$strip>;
7
+ declare const SatismeterListSurveysOutput: z.ZodObject<{
8
+ data: z.ZodArray<z.ZodObject<{
9
+ id: z.ZodNullable<z.ZodString>;
10
+ name: z.ZodNullable<z.ZodString>;
11
+ type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ state: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
+ }, z.core.$strip>>;
14
+ }, z.core.$strip>;
15
+ declare const satismeterListSurveys: import("@keystrokehq/action").WorkflowActionDefinition<{
16
+ project: string;
17
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
18
  //#endregion
8
19
  export { satismeterListSurveys };
9
20
  //# sourceMappingURL=list-surveys.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-surveys.d.mts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,0BAAA,EAA4B,CAAA,CAAE,UAE0C;AAAA,cAOxE,2BAAA,EAA6B,CAAA,CAAE,UAE1C;AAAA,cAEW,qBAAA,gCAAqB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-surveys.d.mts","names":[],"sources":["../../src/actions/list-surveys.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;cAS1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA"}
@@ -3,8 +3,8 @@ import { z } from "zod";
3
3
  //#region src/actions/list-surveys.ts
4
4
  const SatismeterListSurveysInput = z.object({ project: z.string().describe("SatisMeter project ID (24-character hex string). Obtain from your connected SatisMeter account or from the SatisMeter dashboard under Project Settings. Do not use project names.") }).describe("Request model for listing surveys (campaigns) in a SatisMeter project.");
5
5
  const SatismeterListSurveys_ListSurveysResponseDataSchema = z.object({
6
- id: z.string().describe("Unique identifier of the survey (campaign)"),
7
- name: z.string().describe("Name of the survey (campaign)"),
6
+ id: z.string().describe("Unique identifier of the survey (campaign)").nullable(),
7
+ name: z.string().describe("Name of the survey (campaign)").nullable(),
8
8
  type: z.string().describe("Survey template type (nps, ces, csat, pmf, or custom)").nullable().optional(),
9
9
  state: z.string().describe("Current survey status (live, paused, or draft)").nullable().optional()
10
10
  });
@@ -1 +1 @@
1
- {"version":3,"file":"list-surveys.mjs","names":[],"sources":["../../src/actions/list-surveys.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListSurveysInput: z.ZodTypeAny = z.object({\n project: z.string().describe(\"SatisMeter project ID (24-character hex string). Obtain from your connected SatisMeter account or from the SatisMeter dashboard under Project Settings. Do not use project names.\"),\n}).describe(\"Request model for listing surveys (campaigns) in a SatisMeter project.\");\nconst SatismeterListSurveys_ListSurveysResponseDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the survey (campaign)\"),\n name: z.string().describe(\"Name of the survey (campaign)\"),\n type: z.string().describe(\"Survey template type (nps, ces, csat, pmf, or custom)\").nullable().optional(),\n state: z.string().describe(\"Current survey status (live, paused, or draft)\").nullable().optional(),\n});\nexport const SatismeterListSurveysOutput: z.ZodTypeAny = z.object({\n data: z.array(SatismeterListSurveys_ListSurveysResponseDataSchema).describe(\"List of surveys (campaigns)\"),\n});\n\nexport const satismeterListSurveys = action(\"SATISMETER_LIST_SURVEYS\", {\n slug: \"satismeter-list-surveys\",\n name: \"List Surveys\",\n description: \"Tool to list surveys (campaigns) in a project. Use when you have a valid project ID and need to retrieve its surveys.\",\n input: SatismeterListSurveysInput,\n output: SatismeterListSurveysOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2C,EAAE,OAAO,EAC/D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mLAAmL,EAClN,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,sDAAoE,EAAE,OAAO;CACjF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B;CACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnG,CAAC;AAKD,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuD,EAAE,OAAO,EAChE,MAAM,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,6BAA6B,EAC3G,CAOU;AACV,CAAC"}
1
+ {"version":3,"file":"list-surveys.mjs","names":[],"sources":["../../src/actions/list-surveys.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListSurveysInput = z.object({\n project: z.string().describe(\"SatisMeter project ID (24-character hex string). Obtain from your connected SatisMeter account or from the SatisMeter dashboard under Project Settings. Do not use project names.\"),\n}).describe(\"Request model for listing surveys (campaigns) in a SatisMeter project.\");\nconst SatismeterListSurveys_ListSurveysResponseDataSchema = z.object({\n id: z.string().describe(\"Unique identifier of the survey (campaign)\").nullable(),\n name: z.string().describe(\"Name of the survey (campaign)\").nullable(),\n type: z.string().describe(\"Survey template type (nps, ces, csat, pmf, or custom)\").nullable().optional(),\n state: z.string().describe(\"Current survey status (live, paused, or draft)\").nullable().optional(),\n});\nexport const SatismeterListSurveysOutput = z.object({\n data: z.array(SatismeterListSurveys_ListSurveysResponseDataSchema).describe(\"List of surveys (campaigns)\"),\n});\n\nexport const satismeterListSurveys = action(\"SATISMETER_LIST_SURVEYS\", {\n slug: \"satismeter-list-surveys\",\n name: \"List Surveys\",\n description: \"Tool to list surveys (campaigns) in a project. Use when you have a valid project ID and need to retrieve its surveys.\",\n input: SatismeterListSurveysInput,\n output: SatismeterListSurveysOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO,EACjD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mLAAmL,EAClN,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,sDAAsD,EAAE,OAAO;CACnE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnG,CAAC;AAKD,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyC,EAAE,OAAO,EAClD,MAAM,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,6BAA6B,EAC3G,CAOU;AACV,CAAC"}
@@ -6,7 +6,7 @@ const SatismeterListUsersInput = zod.z.object({
6
6
  user_id: zod.z.string().describe("Filter by specific user ID (the id passed on the widget) to return only that user").optional()
7
7
  }).describe("Request model for listing users in a Satismeter project.");
8
8
  const SatismeterListUsers_UserDataSchema = zod.z.object({
9
- id: zod.z.string().describe("Internal SatisMeter user ID"),
9
+ id: zod.z.string().describe("Internal SatisMeter user ID").nullable(),
10
10
  name: zod.z.string().describe("User's name").nullable().optional(),
11
11
  email: zod.z.string().describe("User's email address").nullable().optional(),
12
12
  traits: zod.z.object({}).describe("Custom traits attached to the user").nullable().optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"list-users.cjs","names":["z","action"],"sources":["../../src/actions/list-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListUsersInput: z.ZodTypeAny = z.object({\n project: z.string().describe(\"ID of the project to list users for\"),\n user_id: z.string().describe(\"Filter by specific user ID (the id passed on the widget) to return only that user\").optional(),\n}).describe(\"Request model for listing users in a Satismeter project.\");\nconst SatismeterListUsers_UserDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Internal SatisMeter user ID\"),\n name: z.string().describe(\"User's name\").nullable().optional(),\n email: z.string().describe(\"User's email address\").nullable().optional(),\n traits: z.object({}).describe(\"Custom traits attached to the user\").nullable().optional(),\n userId: z.string().describe(\"The user ID passed on the widget\").nullable().optional(),\n created: z.string().describe(\"Creation timestamp\").nullable().optional(),\n project: z.string().describe(\"The project ID this user belongs to\").nullable().optional(),\n lastSeen: z.string().describe(\"Timestamp of when the user was last seen\").nullable().optional(),\n unsubscribed: z.boolean().describe(\"Whether the user is unsubscribed\").nullable().optional(),\n}).describe(\"Individual user data returned by the API\");\nexport const SatismeterListUsersOutput: z.ZodTypeAny = z.object({\n users: z.array(SatismeterListUsers_UserDataSchema).describe(\"List of users in the project\"),\n}).describe(\"Response model for listing users\");\n\nexport const satismeterListUsers = action(\"SATISMETER_LIST_USERS\", {\n slug: \"satismeter-list-users\",\n name: \"List Users\",\n description: \"Tool to list users in a project. Use when you have a valid project ID and need to retrieve its users. Optionally filter by a specific user ID.\",\n input: SatismeterListUsersInput,\n output: SatismeterListUsersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyCA,IAAAA,EAAE,OAAO;CAC7D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAClE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,qCAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,cAAcA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,4BAA0CA,IAAAA,EAAE,OAAO,EAC9D,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAE9C,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-users.cjs","names":["z","action"],"sources":["../../src/actions/list-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListUsersInput = z.object({\n project: z.string().describe(\"ID of the project to list users for\"),\n user_id: z.string().describe(\"Filter by specific user ID (the id passed on the widget) to return only that user\").optional(),\n}).describe(\"Request model for listing users in a Satismeter project.\");\nconst SatismeterListUsers_UserDataSchema = z.object({\n id: z.string().describe(\"Internal SatisMeter user ID\").nullable(),\n name: z.string().describe(\"User's name\").nullable().optional(),\n email: z.string().describe(\"User's email address\").nullable().optional(),\n traits: z.object({}).describe(\"Custom traits attached to the user\").nullable().optional(),\n userId: z.string().describe(\"The user ID passed on the widget\").nullable().optional(),\n created: z.string().describe(\"Creation timestamp\").nullable().optional(),\n project: z.string().describe(\"The project ID this user belongs to\").nullable().optional(),\n lastSeen: z.string().describe(\"Timestamp of when the user was last seen\").nullable().optional(),\n unsubscribed: z.boolean().describe(\"Whether the user is unsubscribed\").nullable().optional(),\n}).describe(\"Individual user data returned by the API\");\nexport const SatismeterListUsersOutput = z.object({\n users: z.array(SatismeterListUsers_UserDataSchema).describe(\"List of users in the project\"),\n}).describe(\"Response model for listing users\");\n\nexport const satismeterListUsers = action(\"SATISMETER_LIST_USERS\", {\n slug: \"satismeter-list-users\",\n name: \"List Users\",\n description: \"Tool to list users in a project. Use when you have a valid project ID and need to retrieve its users. Optionally filter by a specific user ID.\",\n input: SatismeterListUsersInput,\n output: SatismeterListUsersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAClE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,cAAcA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAE9C,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,27 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/list-users.d.ts
4
- declare const SatismeterListUsersInput: z.ZodTypeAny;
5
- declare const SatismeterListUsersOutput: z.ZodTypeAny;
6
- declare const satismeterListUsers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterListUsersInput: z.ZodObject<{
5
+ project: z.ZodString;
6
+ user_id: z.ZodOptional<z.ZodString>;
7
+ }, z.core.$strip>;
8
+ declare const SatismeterListUsersOutput: z.ZodObject<{
9
+ users: z.ZodArray<z.ZodObject<{
10
+ id: z.ZodNullable<z.ZodString>;
11
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
+ traits: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
14
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ created: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ project: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17
+ lastSeen: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ unsubscribed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
19
+ }, z.core.$strip>>;
20
+ }, z.core.$strip>;
21
+ declare const satismeterListUsers: import("@keystrokehq/action").WorkflowActionDefinition<{
22
+ project: string;
23
+ user_id?: string | undefined;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
25
  //#endregion
8
26
  export { satismeterListUsers };
9
27
  //# sourceMappingURL=list-users.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-users.d.cts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAG8B;AAAA,cAY1D,yBAAA,EAA2B,CAAA,CAAE,UAEK;AAAA,cAElC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-users.d.cts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAexB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA"}
@@ -1,9 +1,27 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/list-users.d.ts
4
- declare const SatismeterListUsersInput: z.ZodTypeAny;
5
- declare const SatismeterListUsersOutput: z.ZodTypeAny;
6
- declare const satismeterListUsers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterListUsersInput: z.ZodObject<{
5
+ project: z.ZodString;
6
+ user_id: z.ZodOptional<z.ZodString>;
7
+ }, z.core.$strip>;
8
+ declare const SatismeterListUsersOutput: z.ZodObject<{
9
+ users: z.ZodArray<z.ZodObject<{
10
+ id: z.ZodNullable<z.ZodString>;
11
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
+ traits: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
14
+ userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ created: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
+ project: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17
+ lastSeen: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
+ unsubscribed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
19
+ }, z.core.$strip>>;
20
+ }, z.core.$strip>;
21
+ declare const satismeterListUsers: import("@keystrokehq/action").WorkflowActionDefinition<{
22
+ project: string;
23
+ user_id?: string | undefined;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
25
  //#endregion
8
26
  export { satismeterListUsers };
9
27
  //# sourceMappingURL=list-users.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"list-users.d.mts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,wBAAA,EAA0B,CAAA,CAAE,UAG8B;AAAA,cAY1D,yBAAA,EAA2B,CAAA,CAAE,UAEK;AAAA,cAElC,mBAAA,gCAAmB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"list-users.d.mts","names":[],"sources":["../../src/actions/list-users.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;cAexB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA"}
@@ -6,7 +6,7 @@ const SatismeterListUsersInput = z.object({
6
6
  user_id: z.string().describe("Filter by specific user ID (the id passed on the widget) to return only that user").optional()
7
7
  }).describe("Request model for listing users in a Satismeter project.");
8
8
  const SatismeterListUsers_UserDataSchema = z.object({
9
- id: z.string().describe("Internal SatisMeter user ID"),
9
+ id: z.string().describe("Internal SatisMeter user ID").nullable(),
10
10
  name: z.string().describe("User's name").nullable().optional(),
11
11
  email: z.string().describe("User's email address").nullable().optional(),
12
12
  traits: z.object({}).describe("Custom traits attached to the user").nullable().optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"list-users.mjs","names":[],"sources":["../../src/actions/list-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListUsersInput: z.ZodTypeAny = z.object({\n project: z.string().describe(\"ID of the project to list users for\"),\n user_id: z.string().describe(\"Filter by specific user ID (the id passed on the widget) to return only that user\").optional(),\n}).describe(\"Request model for listing users in a Satismeter project.\");\nconst SatismeterListUsers_UserDataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Internal SatisMeter user ID\"),\n name: z.string().describe(\"User's name\").nullable().optional(),\n email: z.string().describe(\"User's email address\").nullable().optional(),\n traits: z.object({}).describe(\"Custom traits attached to the user\").nullable().optional(),\n userId: z.string().describe(\"The user ID passed on the widget\").nullable().optional(),\n created: z.string().describe(\"Creation timestamp\").nullable().optional(),\n project: z.string().describe(\"The project ID this user belongs to\").nullable().optional(),\n lastSeen: z.string().describe(\"Timestamp of when the user was last seen\").nullable().optional(),\n unsubscribed: z.boolean().describe(\"Whether the user is unsubscribed\").nullable().optional(),\n}).describe(\"Individual user data returned by the API\");\nexport const SatismeterListUsersOutput: z.ZodTypeAny = z.object({\n users: z.array(SatismeterListUsers_UserDataSchema).describe(\"List of users in the project\"),\n}).describe(\"Response model for listing users\");\n\nexport const satismeterListUsers = action(\"SATISMETER_LIST_USERS\", {\n slug: \"satismeter-list-users\",\n name: \"List Users\",\n description: \"Tool to list users in a project. Use when you have a valid project ID and need to retrieve its users. Optionally filter by a specific user ID.\",\n input: SatismeterListUsersInput,\n output: SatismeterListUsersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAAyC,EAAE,OAAO;CAC7D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAClE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,qCAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAKtD,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATqD,EAAE,OAAO,EAC9D,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,SAAS,kCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-users.mjs","names":[],"sources":["../../src/actions/list-users.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterListUsersInput = z.object({\n project: z.string().describe(\"ID of the project to list users for\"),\n user_id: z.string().describe(\"Filter by specific user ID (the id passed on the widget) to return only that user\").optional(),\n}).describe(\"Request model for listing users in a Satismeter project.\");\nconst SatismeterListUsers_UserDataSchema = z.object({\n id: z.string().describe(\"Internal SatisMeter user ID\").nullable(),\n name: z.string().describe(\"User's name\").nullable().optional(),\n email: z.string().describe(\"User's email address\").nullable().optional(),\n traits: z.object({}).describe(\"Custom traits attached to the user\").nullable().optional(),\n userId: z.string().describe(\"The user ID passed on the widget\").nullable().optional(),\n created: z.string().describe(\"Creation timestamp\").nullable().optional(),\n project: z.string().describe(\"The project ID this user belongs to\").nullable().optional(),\n lastSeen: z.string().describe(\"Timestamp of when the user was last seen\").nullable().optional(),\n unsubscribed: z.boolean().describe(\"Whether the user is unsubscribed\").nullable().optional(),\n}).describe(\"Individual user data returned by the API\");\nexport const SatismeterListUsersOutput = z.object({\n users: z.array(SatismeterListUsers_UserDataSchema).describe(\"List of users in the project\"),\n}).describe(\"Response model for listing users\");\n\nexport const satismeterListUsers = action(\"SATISMETER_LIST_USERS\", {\n slug: \"satismeter-list-users\",\n name: \"List Users\",\n description: \"Tool to list users in a project. Use when you have a valid project ID and need to retrieve its users. Optionally filter by a specific user ID.\",\n input: SatismeterListUsersInput,\n output: SatismeterListUsersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO;CAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAClE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAM,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAKtD,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,SAAS,kCAOF;AACV,CAAC"}
@@ -7,7 +7,7 @@ const SatismeterUpdateUnsubscribedEmailsInput = zod.z.object({
7
7
  }).describe("Request model for updating unsubscribed emails for a Satismeter project.");
8
8
  const SatismeterUpdateUnsubscribedEmailsOutput = zod.z.object({
9
9
  errors: zod.z.object({}).describe("Map of emails that couldn't be unsubscribed to error reasons.").nullable().optional(),
10
- success: zod.z.boolean().describe("True if unsubscription was successful."),
10
+ success: zod.z.boolean().describe("True if unsubscription was successful.").nullable(),
11
11
  unsubscribed: zod.z.array(zod.z.string()).describe("List of emails successfully unsubscribed.")
12
12
  }).describe("Response model for updating unsubscribed emails action.");
13
13
  const satismeterUpdateUnsubscribedEmails = require_action.action("SATISMETER_UPDATE_UNSUBSCRIBED_EMAILS", {
@@ -1 +1 @@
1
- {"version":3,"file":"update-unsubscribed-emails.cjs","names":["z","action"],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterUpdateUnsubscribedEmailsInput: z.ZodTypeAny = z.object({\n emails: z.array(z.string()).describe(\"List of email addresses to unsubscribe.\"),\n project_id: z.string().describe(\"ID of the Satismeter project (24-character MongoDB ObjectId format).\"),\n}).describe(\"Request model for updating unsubscribed emails for a Satismeter project.\");\nexport const SatismeterUpdateUnsubscribedEmailsOutput: z.ZodTypeAny = z.object({\n errors: z.object({}).describe(\"Map of emails that couldn't be unsubscribed to error reasons.\").nullable().optional(),\n success: z.boolean().describe(\"True if unsubscription was successful.\"),\n unsubscribed: z.array(z.string()).describe(\"List of emails successfully unsubscribed.\"),\n}).describe(\"Response model for updating unsubscribed emails action.\");\n\nexport const satismeterUpdateUnsubscribedEmails = action(\"SATISMETER_UPDATE_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-update-unsubscribed-emails\",\n name: \"Update Unsubscribed Emails\",\n description: \"Tool to update the list of unsubscribed emails for a project. Use when you need to bulk unsubscribe user emails from surveys.\",\n input: SatismeterUpdateUnsubscribedEmailsInput,\n output: SatismeterUpdateUnsubscribedEmailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAAwDA,IAAAA,EAAE,OAAO;CAC5E,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC;CAC9E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE;AACxG,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAa,2CAAyDA,IAAAA,EAAE,OAAO;CAC7E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;CACtE,cAAcA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACxF,CAAC,CAAC,CAAC,SAAS,yDAAyD;AAErE,MAAa,qCAAqCC,eAAAA,OAAO,yCAAyC;CAChG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"update-unsubscribed-emails.cjs","names":["z","action"],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterUpdateUnsubscribedEmailsInput = z.object({\n emails: z.array(z.string()).describe(\"List of email addresses to unsubscribe.\"),\n project_id: z.string().describe(\"ID of the Satismeter project (24-character MongoDB ObjectId format).\"),\n}).describe(\"Request model for updating unsubscribed emails for a Satismeter project.\");\nexport const SatismeterUpdateUnsubscribedEmailsOutput = z.object({\n errors: z.object({}).describe(\"Map of emails that couldn't be unsubscribed to error reasons.\").nullable().optional(),\n success: z.boolean().describe(\"True if unsubscription was successful.\").nullable(),\n unsubscribed: z.array(z.string()).describe(\"List of emails successfully unsubscribed.\"),\n}).describe(\"Response model for updating unsubscribed emails action.\");\n\nexport const satismeterUpdateUnsubscribedEmails = action(\"SATISMETER_UPDATE_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-update-unsubscribed-emails\",\n name: \"Update Unsubscribed Emails\",\n description: \"Tool to update the list of unsubscribed emails for a project. Use when you need to bulk unsubscribe user emails from surveys.\",\n input: SatismeterUpdateUnsubscribedEmailsInput,\n output: SatismeterUpdateUnsubscribedEmailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAA0CA,IAAAA,EAAE,OAAO;CAC9D,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC;CAC9E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE;AACxG,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAa,2CAA2CA,IAAAA,EAAE,OAAO;CAC/D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACjF,cAAcA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACxF,CAAC,CAAC,CAAC,SAAS,yDAAyD;AAErE,MAAa,qCAAqCC,eAAAA,OAAO,yCAAyC;CAChG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,19 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/update-unsubscribed-emails.d.ts
4
- declare const SatismeterUpdateUnsubscribedEmailsInput: z.ZodTypeAny;
5
- declare const SatismeterUpdateUnsubscribedEmailsOutput: z.ZodTypeAny;
6
- declare const satismeterUpdateUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterUpdateUnsubscribedEmailsInput: z.ZodObject<{
5
+ emails: z.ZodArray<z.ZodString>;
6
+ project_id: z.ZodString;
7
+ }, z.core.$strip>;
8
+ declare const SatismeterUpdateUnsubscribedEmailsOutput: z.ZodObject<{
9
+ errors: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
10
+ success: z.ZodNullable<z.ZodBoolean>;
11
+ unsubscribed: z.ZodArray<z.ZodString>;
12
+ }, z.core.$strip>;
13
+ declare const satismeterUpdateUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ emails: string[];
15
+ project_id: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { satismeterUpdateUnsubscribedEmails };
9
19
  //# sourceMappingURL=update-unsubscribed-emails.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-unsubscribed-emails.d.cts","names":[],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"mappings":";;;cAIa,uCAAA,EAAyC,CAAA,CAAE,UAG+B;AAAA,cAC1E,wCAAA,EAA0C,CAAA,CAAE,UAIa;AAAA,cAEzD,kCAAA,gCAAkC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"update-unsubscribed-emails.d.cts","names":[],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"mappings":";;;cAIa,uCAAA,EAAuC,CAAA,CAAA,SAAA;;;;cAIvC,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;cAMxC,kCAAA,gCAAkC,wBAAA"}
@@ -1,9 +1,19 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/update-unsubscribed-emails.d.ts
4
- declare const SatismeterUpdateUnsubscribedEmailsInput: z.ZodTypeAny;
5
- declare const SatismeterUpdateUnsubscribedEmailsOutput: z.ZodTypeAny;
6
- declare const satismeterUpdateUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SatismeterUpdateUnsubscribedEmailsInput: z.ZodObject<{
5
+ emails: z.ZodArray<z.ZodString>;
6
+ project_id: z.ZodString;
7
+ }, z.core.$strip>;
8
+ declare const SatismeterUpdateUnsubscribedEmailsOutput: z.ZodObject<{
9
+ errors: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
10
+ success: z.ZodNullable<z.ZodBoolean>;
11
+ unsubscribed: z.ZodArray<z.ZodString>;
12
+ }, z.core.$strip>;
13
+ declare const satismeterUpdateUnsubscribedEmails: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ emails: string[];
15
+ project_id: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { satismeterUpdateUnsubscribedEmails };
9
19
  //# sourceMappingURL=update-unsubscribed-emails.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"update-unsubscribed-emails.d.mts","names":[],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"mappings":";;;cAIa,uCAAA,EAAyC,CAAA,CAAE,UAG+B;AAAA,cAC1E,wCAAA,EAA0C,CAAA,CAAE,UAIa;AAAA,cAEzD,kCAAA,gCAAkC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"update-unsubscribed-emails.d.mts","names":[],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"mappings":";;;cAIa,uCAAA,EAAuC,CAAA,CAAA,SAAA;;;;cAIvC,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;cAMxC,kCAAA,gCAAkC,wBAAA"}
@@ -10,7 +10,7 @@ const satismeterUpdateUnsubscribedEmails = action("SATISMETER_UPDATE_UNSUBSCRIBE
10
10
  }).describe("Request model for updating unsubscribed emails for a Satismeter project."),
11
11
  output: z.object({
12
12
  errors: z.object({}).describe("Map of emails that couldn't be unsubscribed to error reasons.").nullable().optional(),
13
- success: z.boolean().describe("True if unsubscription was successful."),
13
+ success: z.boolean().describe("True if unsubscription was successful.").nullable(),
14
14
  unsubscribed: z.array(z.string()).describe("List of emails successfully unsubscribed.")
15
15
  }).describe("Response model for updating unsubscribed emails action.")
16
16
  });
@@ -1 +1 @@
1
- {"version":3,"file":"update-unsubscribed-emails.mjs","names":[],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterUpdateUnsubscribedEmailsInput: z.ZodTypeAny = z.object({\n emails: z.array(z.string()).describe(\"List of email addresses to unsubscribe.\"),\n project_id: z.string().describe(\"ID of the Satismeter project (24-character MongoDB ObjectId format).\"),\n}).describe(\"Request model for updating unsubscribed emails for a Satismeter project.\");\nexport const SatismeterUpdateUnsubscribedEmailsOutput: z.ZodTypeAny = z.object({\n errors: z.object({}).describe(\"Map of emails that couldn't be unsubscribed to error reasons.\").nullable().optional(),\n success: z.boolean().describe(\"True if unsubscription was successful.\"),\n unsubscribed: z.array(z.string()).describe(\"List of emails successfully unsubscribed.\"),\n}).describe(\"Response model for updating unsubscribed emails action.\");\n\nexport const satismeterUpdateUnsubscribedEmails = action(\"SATISMETER_UPDATE_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-update-unsubscribed-emails\",\n name: \"Update Unsubscribed Emails\",\n description: \"Tool to update the list of unsubscribed emails for a project. Use when you need to bulk unsubscribe user emails from surveys.\",\n input: SatismeterUpdateUnsubscribedEmailsInput,\n output: SatismeterUpdateUnsubscribedEmailsOutput,\n});\n"],"mappings":";;AAcA,MAAa,qCAAqC,OAAO,yCAAyC;CAChG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdmE,EAAE,OAAO;EAC5E,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC;EAC9E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE;CACxG,CAAC,CAAC,CAAC,SAAS,0EAWH;CACP,QAXoE,EAAE,OAAO;EAC7E,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnH,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;EACtE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2CAA2C;CACxF,CAAC,CAAC,CAAC,SAAS,yDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"update-unsubscribed-emails.mjs","names":[],"sources":["../../src/actions/update-unsubscribed-emails.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SatismeterUpdateUnsubscribedEmailsInput = z.object({\n emails: z.array(z.string()).describe(\"List of email addresses to unsubscribe.\"),\n project_id: z.string().describe(\"ID of the Satismeter project (24-character MongoDB ObjectId format).\"),\n}).describe(\"Request model for updating unsubscribed emails for a Satismeter project.\");\nexport const SatismeterUpdateUnsubscribedEmailsOutput = z.object({\n errors: z.object({}).describe(\"Map of emails that couldn't be unsubscribed to error reasons.\").nullable().optional(),\n success: z.boolean().describe(\"True if unsubscription was successful.\").nullable(),\n unsubscribed: z.array(z.string()).describe(\"List of emails successfully unsubscribed.\"),\n}).describe(\"Response model for updating unsubscribed emails action.\");\n\nexport const satismeterUpdateUnsubscribedEmails = action(\"SATISMETER_UPDATE_UNSUBSCRIBED_EMAILS\", {\n slug: \"satismeter-update-unsubscribed-emails\",\n name: \"Update Unsubscribed Emails\",\n description: \"Tool to update the list of unsubscribed emails for a project. Use when you need to bulk unsubscribe user emails from surveys.\",\n input: SatismeterUpdateUnsubscribedEmailsInput,\n output: SatismeterUpdateUnsubscribedEmailsOutput,\n});\n"],"mappings":";;AAcA,MAAa,qCAAqC,OAAO,yCAAyC;CAChG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdqD,EAAE,OAAO;EAC9D,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC;EAC9E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE;CACxG,CAAC,CAAC,CAAC,SAAS,0EAWH;CACP,QAXsD,EAAE,OAAO;EAC/D,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnH,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;EACjF,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,2CAA2C;CACxF,CAAC,CAAC,CAAC,SAAS,yDAOF;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,19 @@ const satismeterCatalog = {
7
7
  "category": "Forms & Surveys",
8
8
  "logo": "https://logos.composio.dev/api/satismeter",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": {
12
+ "api_key": {
13
+ "label": "SatisMeter API Key",
14
+ "secret": true,
15
+ "description": "The API key used for authenticating requests to the SatisMeter API."
16
+ },
17
+ "generic_id": {
18
+ "label": "Project ID",
19
+ "description": "The unique identifier for the SatisMeter project."
20
+ }
21
+ },
22
+ "credentialScheme": "API_KEY"
11
23
  };
12
24
  //#endregion
13
25
  exports.satismeterCatalog = satismeterCatalog;
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const satismeterCatalog = {\n \"slug\": \"satismeter\",\n \"name\": \"Satismeter\",\n \"description\": \"SatisMeter is a customer feedback platform that enables businesses to collect and analyze user feedback through targeted surveys.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/satismeter\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const satismeterCatalog = {\n \"slug\": \"satismeter\",\n \"name\": \"Satismeter\",\n \"description\": \"SatisMeter is a customer feedback platform that enables businesses to collect and analyze user feedback through targeted surveys.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/satismeter\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"SatisMeter API Key\",\n \"secret\": true,\n \"description\": \"The API key used for authenticating requests to the SatisMeter API.\"\n },\n \"generic_id\": {\n \"label\": \"Project ID\",\n \"description\": \"The unique identifier for the SatisMeter project.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,cAAc;GACZ,SAAS;GACT,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,18 @@ declare const satismeterCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/satismeter";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "SatisMeter API Key";
14
+ readonly secret: true;
15
+ readonly description: "The API key used for authenticating requests to the SatisMeter API.";
16
+ };
17
+ readonly generic_id: {
18
+ readonly label: "Project ID";
19
+ readonly description: "The unique identifier for the SatisMeter project.";
20
+ };
21
+ };
22
+ readonly credentialScheme: "API_KEY";
11
23
  };
12
24
  //#endregion
13
25
  export { satismeterCatalog };
@@ -8,6 +8,18 @@ declare const satismeterCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/satismeter";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "SatisMeter API Key";
14
+ readonly secret: true;
15
+ readonly description: "The API key used for authenticating requests to the SatisMeter API.";
16
+ };
17
+ readonly generic_id: {
18
+ readonly label: "Project ID";
19
+ readonly description: "The unique identifier for the SatisMeter project.";
20
+ };
21
+ };
22
+ readonly credentialScheme: "API_KEY";
11
23
  };
12
24
  //#endregion
13
25
  export { satismeterCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,19 @@ const satismeterCatalog = {
7
7
  "category": "Forms & Surveys",
8
8
  "logo": "https://logos.composio.dev/api/satismeter",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": {
12
+ "api_key": {
13
+ "label": "SatisMeter API Key",
14
+ "secret": true,
15
+ "description": "The API key used for authenticating requests to the SatisMeter API."
16
+ },
17
+ "generic_id": {
18
+ "label": "Project ID",
19
+ "description": "The unique identifier for the SatisMeter project."
20
+ }
21
+ },
22
+ "credentialScheme": "API_KEY"
11
23
  };
12
24
  //#endregion
13
25
  export { satismeterCatalog };
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const satismeterCatalog = {\n \"slug\": \"satismeter\",\n \"name\": \"Satismeter\",\n \"description\": \"SatisMeter is a customer feedback platform that enables businesses to collect and analyze user feedback through targeted surveys.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/satismeter\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const satismeterCatalog = {\n \"slug\": \"satismeter\",\n \"name\": \"Satismeter\",\n \"description\": \"SatisMeter is a customer feedback platform that enables businesses to collect and analyze user feedback through targeted surveys.\",\n \"category\": \"Forms & Surveys\",\n \"logo\": \"https://logos.composio.dev/api/satismeter\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"SatisMeter API Key\",\n \"secret\": true,\n \"description\": \"The API key used for authenticating requests to the SatisMeter API.\"\n },\n \"generic_id\": {\n \"label\": \"Project ID\",\n \"description\": \"The unique identifier for the SatisMeter project.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,cAAc;GACZ,SAAS;GACT,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/satismeter",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "peerDependencies": {
34
- "@keystrokehq/keystroke": "^0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {