@keystrokehq/push_by_techulus 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 (57) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/delete-team-member-or-invite.cjs +1 -1
  4. package/dist/actions/delete-team-member-or-invite.cjs.map +1 -1
  5. package/dist/actions/delete-team-member-or-invite.d.cts +13 -3
  6. package/dist/actions/delete-team-member-or-invite.d.cts.map +1 -1
  7. package/dist/actions/delete-team-member-or-invite.d.mts +13 -3
  8. package/dist/actions/delete-team-member-or-invite.d.mts.map +1 -1
  9. package/dist/actions/delete-team-member-or-invite.mjs +1 -1
  10. package/dist/actions/delete-team-member-or-invite.mjs.map +1 -1
  11. package/dist/actions/invite-user-to-team.cjs +1 -1
  12. package/dist/actions/invite-user-to-team.cjs.map +1 -1
  13. package/dist/actions/invite-user-to-team.d.cts +13 -3
  14. package/dist/actions/invite-user-to-team.d.cts.map +1 -1
  15. package/dist/actions/invite-user-to-team.d.mts +13 -3
  16. package/dist/actions/invite-user-to-team.d.mts.map +1 -1
  17. package/dist/actions/invite-user-to-team.mjs +1 -1
  18. package/dist/actions/invite-user-to-team.mjs.map +1 -1
  19. package/dist/actions/send-notification-async.cjs +2 -2
  20. package/dist/actions/send-notification-async.cjs.map +1 -1
  21. package/dist/actions/send-notification-async.d.cts +38 -3
  22. package/dist/actions/send-notification-async.d.cts.map +1 -1
  23. package/dist/actions/send-notification-async.d.mts +38 -3
  24. package/dist/actions/send-notification-async.d.mts.map +1 -1
  25. package/dist/actions/send-notification-async.mjs +2 -2
  26. package/dist/actions/send-notification-async.mjs.map +1 -1
  27. package/dist/actions/send-notification-sync.cjs +3 -3
  28. package/dist/actions/send-notification-sync.cjs.map +1 -1
  29. package/dist/actions/send-notification-sync.d.cts +26 -3
  30. package/dist/actions/send-notification-sync.d.cts.map +1 -1
  31. package/dist/actions/send-notification-sync.d.mts +26 -3
  32. package/dist/actions/send-notification-sync.d.mts.map +1 -1
  33. package/dist/actions/send-notification-sync.mjs +3 -3
  34. package/dist/actions/send-notification-sync.mjs.map +1 -1
  35. package/dist/actions/send-notification-to-group.cjs +4 -4
  36. package/dist/actions/send-notification-to-group.cjs.map +1 -1
  37. package/dist/actions/send-notification-to-group.d.cts +44 -3
  38. package/dist/actions/send-notification-to-group.d.cts.map +1 -1
  39. package/dist/actions/send-notification-to-group.d.mts +44 -3
  40. package/dist/actions/send-notification-to-group.d.mts.map +1 -1
  41. package/dist/actions/send-notification-to-group.mjs +4 -4
  42. package/dist/actions/send-notification-to-group.mjs.map +1 -1
  43. package/dist/actions/send-notification-webhook-post.cjs +3 -3
  44. package/dist/actions/send-notification-webhook-post.cjs.map +1 -1
  45. package/dist/actions/send-notification-webhook-post.d.cts +44 -3
  46. package/dist/actions/send-notification-webhook-post.d.cts.map +1 -1
  47. package/dist/actions/send-notification-webhook-post.d.mts +44 -3
  48. package/dist/actions/send-notification-webhook-post.d.mts.map +1 -1
  49. package/dist/actions/send-notification-webhook-post.mjs +3 -3
  50. package/dist/actions/send-notification-webhook-post.mjs.map +1 -1
  51. package/dist/catalog.cjs +7 -1
  52. package/dist/catalog.cjs.map +1 -1
  53. package/dist/catalog.d.cts +8 -0
  54. package/dist/catalog.d.mts +8 -0
  55. package/dist/catalog.mjs +7 -1
  56. package/dist/catalog.mjs.map +1 -1
  57. package/package.json +2 -2
@@ -1 +1 @@
1
- {"version":3,"file":"action.cjs","names":["pushByTechulus","executePushByTechulusTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { pushByTechulus } from \"./app\";\nimport { executePushByTechulusTool } 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 pushByTechulus.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 executePushByTechulusTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,eAAe,OAAO;EAC3B,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,0BAA0B,MAAM,KAAgC,CAAC;EACjG;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.cjs","names":["pushByTechulus","executePushByTechulusTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { pushByTechulus } from \"./app\";\nimport { executePushByTechulusTool } 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 pushByTechulus.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 executePushByTechulusTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,eAAe,OAAO;EAC3B,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,0BAA0B,MAAM,KAAgC,CAAC;EACjG;CACF,CAAC;AACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { pushByTechulus } from \"./app\";\nimport { executePushByTechulusTool } 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 pushByTechulus.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 executePushByTechulusTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,eAAe,OAAO;EAC3B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,0BAA0B,MAAM,KAAgC,CAAC;EACjG;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { pushByTechulus } from \"./app\";\nimport { executePushByTechulusTool } 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 pushByTechulus.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 executePushByTechulusTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,eAAe,OAAO;EAC3B,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,0BAA0B,MAAM,KAAgC,CAAC;EACjG;CACF,CAAC;AACH"}
@@ -8,7 +8,7 @@ const PushByTechulusDeleteTeamMemberOrInviteInput = zod.z.object({
8
8
  const PushByTechulusDeleteTeamMemberOrInviteOutput = zod.z.object({
9
9
  error: zod.z.string().describe("Error code if the request failed.").nullable().optional(),
10
10
  message: zod.z.string().describe("Confirmation message indicating the operation status").nullable().optional(),
11
- success: zod.z.boolean().describe("Whether the operation was successful")
11
+ success: zod.z.boolean().describe("Whether the operation was successful").nullable()
12
12
  }).describe("Response schema for deleting team member or invite.");
13
13
  const pushByTechulusDeleteTeamMemberOrInvite = require_action.action("PUSH_BY_TECHULUS_DELETE_TEAM_MEMBER_OR_INVITE", {
14
14
  slug: "push_by_techulus-delete-team-member-or-invite",
@@ -1 +1 @@
1
- {"version":3,"file":"delete-team-member-or-invite.cjs","names":["z","action"],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusDeleteTeamMemberOrInviteInput: z.ZodTypeAny = z.object({\n team: z.string().describe(\"Team API key\"),\n email: z.string().describe(\"The email address to remove or revoke invitation for\"),\n}).describe(\"Request parameters for removing a user from team or revoking an invitation.\");\nexport const PushByTechulusDeleteTeamMemberOrInviteOutput: z.ZodTypeAny = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Confirmation message indicating the operation status\").nullable().optional(),\n success: z.boolean().describe(\"Whether the operation was successful\"),\n}).describe(\"Response schema for deleting team member or invite.\");\n\nexport const pushByTechulusDeleteTeamMemberOrInvite = action(\"PUSH_BY_TECHULUS_DELETE_TEAM_MEMBER_OR_INVITE\", {\n slug: \"push_by_techulus-delete-team-member-or-invite\",\n name: \"Delete Team Member or Invite\",\n description: \"Tool to remove a user from the team or revoke a pending invitation. Use when you need to revoke team access or cancel an invite for a specific email address.\",\n input: PushByTechulusDeleteTeamMemberOrInviteInput,\n output: PushByTechulusDeleteTeamMemberOrInviteOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8CAA4DA,IAAAA,EAAE,OAAO;CAChF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;CACxC,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;AACnF,CAAC,CAAC,CAAC,SAAS,6EAA6E;AACzF,MAAa,+CAA6DA,IAAAA,EAAE,OAAO;CACjF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sCAAsC;AACtE,CAAC,CAAC,CAAC,SAAS,qDAAqD;AAEjE,MAAa,yCAAyCC,eAAAA,OAAO,iDAAiD;CAC5G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"delete-team-member-or-invite.cjs","names":["z","action"],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusDeleteTeamMemberOrInviteInput = z.object({\n team: z.string().describe(\"Team API key\"),\n email: z.string().describe(\"The email address to remove or revoke invitation for\"),\n}).describe(\"Request parameters for removing a user from team or revoking an invitation.\");\nexport const PushByTechulusDeleteTeamMemberOrInviteOutput = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Confirmation message indicating the operation status\").nullable().optional(),\n success: z.boolean().describe(\"Whether the operation was successful\").nullable(),\n}).describe(\"Response schema for deleting team member or invite.\");\n\nexport const pushByTechulusDeleteTeamMemberOrInvite = action(\"PUSH_BY_TECHULUS_DELETE_TEAM_MEMBER_OR_INVITE\", {\n slug: \"push_by_techulus-delete-team-member-or-invite\",\n name: \"Delete Team Member or Invite\",\n description: \"Tool to remove a user from the team or revoke a pending invitation. Use when you need to revoke team access or cancel an invite for a specific email address.\",\n input: PushByTechulusDeleteTeamMemberOrInviteInput,\n output: PushByTechulusDeleteTeamMemberOrInviteOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8CAA8CA,IAAAA,EAAE,OAAO;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;CACxC,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;AACnF,CAAC,CAAC,CAAC,SAAS,6EAA6E;AACzF,MAAa,+CAA+CA,IAAAA,EAAE,OAAO;CACnE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;AACjF,CAAC,CAAC,CAAC,SAAS,qDAAqD;AAEjE,MAAa,yCAAyCC,eAAAA,OAAO,iDAAiD;CAC5G,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/delete-team-member-or-invite.d.ts
4
- declare const PushByTechulusDeleteTeamMemberOrInviteInput: z.ZodTypeAny;
5
- declare const PushByTechulusDeleteTeamMemberOrInviteOutput: z.ZodTypeAny;
6
- declare const pushByTechulusDeleteTeamMemberOrInvite: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusDeleteTeamMemberOrInviteInput: z.ZodObject<{
5
+ team: z.ZodString;
6
+ email: z.ZodString;
7
+ }, z.core.$strip>;
8
+ declare const PushByTechulusDeleteTeamMemberOrInviteOutput: z.ZodObject<{
9
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ success: z.ZodNullable<z.ZodBoolean>;
12
+ }, z.core.$strip>;
13
+ declare const pushByTechulusDeleteTeamMemberOrInvite: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ team: string;
15
+ email: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { pushByTechulusDeleteTeamMemberOrInvite };
9
19
  //# sourceMappingURL=delete-team-member-or-invite.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"delete-team-member-or-invite.d.cts","names":[],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"mappings":";;;cAIa,2CAAA,EAA6C,CAAA,CAAE,UAG8B;AAAA,cAC7E,4CAAA,EAA8C,CAAA,CAAE,UAIK;AAAA,cAErD,sCAAA,gCAAsC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"delete-team-member-or-invite.d.cts","names":[],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"mappings":";;;cAIa,2CAAA,EAA2C,CAAA,CAAA,SAAA;;;;cAI3C,4CAAA,EAA4C,CAAA,CAAA,SAAA;;;;;cAM5C,sCAAA,gCAAsC,wBAAA"}
@@ -1,9 +1,19 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/delete-team-member-or-invite.d.ts
4
- declare const PushByTechulusDeleteTeamMemberOrInviteInput: z.ZodTypeAny;
5
- declare const PushByTechulusDeleteTeamMemberOrInviteOutput: z.ZodTypeAny;
6
- declare const pushByTechulusDeleteTeamMemberOrInvite: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusDeleteTeamMemberOrInviteInput: z.ZodObject<{
5
+ team: z.ZodString;
6
+ email: z.ZodString;
7
+ }, z.core.$strip>;
8
+ declare const PushByTechulusDeleteTeamMemberOrInviteOutput: z.ZodObject<{
9
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ success: z.ZodNullable<z.ZodBoolean>;
12
+ }, z.core.$strip>;
13
+ declare const pushByTechulusDeleteTeamMemberOrInvite: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ team: string;
15
+ email: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { pushByTechulusDeleteTeamMemberOrInvite };
9
19
  //# sourceMappingURL=delete-team-member-or-invite.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"delete-team-member-or-invite.d.mts","names":[],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"mappings":";;;cAIa,2CAAA,EAA6C,CAAA,CAAE,UAG8B;AAAA,cAC7E,4CAAA,EAA8C,CAAA,CAAE,UAIK;AAAA,cAErD,sCAAA,gCAAsC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"delete-team-member-or-invite.d.mts","names":[],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"mappings":";;;cAIa,2CAAA,EAA2C,CAAA,CAAA,SAAA;;;;cAI3C,4CAAA,EAA4C,CAAA,CAAA,SAAA;;;;;cAM5C,sCAAA,gCAAsC,wBAAA"}
@@ -11,7 +11,7 @@ const pushByTechulusDeleteTeamMemberOrInvite = action("PUSH_BY_TECHULUS_DELETE_T
11
11
  output: z.object({
12
12
  error: z.string().describe("Error code if the request failed.").nullable().optional(),
13
13
  message: z.string().describe("Confirmation message indicating the operation status").nullable().optional(),
14
- success: z.boolean().describe("Whether the operation was successful")
14
+ success: z.boolean().describe("Whether the operation was successful").nullable()
15
15
  }).describe("Response schema for deleting team member or invite.")
16
16
  });
17
17
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"delete-team-member-or-invite.mjs","names":[],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusDeleteTeamMemberOrInviteInput: z.ZodTypeAny = z.object({\n team: z.string().describe(\"Team API key\"),\n email: z.string().describe(\"The email address to remove or revoke invitation for\"),\n}).describe(\"Request parameters for removing a user from team or revoking an invitation.\");\nexport const PushByTechulusDeleteTeamMemberOrInviteOutput: z.ZodTypeAny = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Confirmation message indicating the operation status\").nullable().optional(),\n success: z.boolean().describe(\"Whether the operation was successful\"),\n}).describe(\"Response schema for deleting team member or invite.\");\n\nexport const pushByTechulusDeleteTeamMemberOrInvite = action(\"PUSH_BY_TECHULUS_DELETE_TEAM_MEMBER_OR_INVITE\", {\n slug: \"push_by_techulus-delete-team-member-or-invite\",\n name: \"Delete Team Member or Invite\",\n description: \"Tool to remove a user from the team or revoke a pending invitation. Use when you need to revoke team access or cancel an invite for a specific email address.\",\n input: PushByTechulusDeleteTeamMemberOrInviteInput,\n output: PushByTechulusDeleteTeamMemberOrInviteOutput,\n});\n"],"mappings":";;AAcA,MAAa,yCAAyC,OAAO,iDAAiD;CAC5G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAduE,EAAE,OAAO;EAChF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;EACxC,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;CACnF,CAAC,CAAC,CAAC,SAAS,6EAWH;CACP,QAXwE,EAAE,OAAO;EACjF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzG,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,sCAAsC;CACtE,CAAC,CAAC,CAAC,SAAS,qDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"delete-team-member-or-invite.mjs","names":[],"sources":["../../src/actions/delete-team-member-or-invite.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusDeleteTeamMemberOrInviteInput = z.object({\n team: z.string().describe(\"Team API key\"),\n email: z.string().describe(\"The email address to remove or revoke invitation for\"),\n}).describe(\"Request parameters for removing a user from team or revoking an invitation.\");\nexport const PushByTechulusDeleteTeamMemberOrInviteOutput = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Confirmation message indicating the operation status\").nullable().optional(),\n success: z.boolean().describe(\"Whether the operation was successful\").nullable(),\n}).describe(\"Response schema for deleting team member or invite.\");\n\nexport const pushByTechulusDeleteTeamMemberOrInvite = action(\"PUSH_BY_TECHULUS_DELETE_TEAM_MEMBER_OR_INVITE\", {\n slug: \"push_by_techulus-delete-team-member-or-invite\",\n name: \"Delete Team Member or Invite\",\n description: \"Tool to remove a user from the team or revoke a pending invitation. Use when you need to revoke team access or cancel an invite for a specific email address.\",\n input: PushByTechulusDeleteTeamMemberOrInviteInput,\n output: PushByTechulusDeleteTeamMemberOrInviteOutput,\n});\n"],"mappings":";;AAcA,MAAa,yCAAyC,OAAO,iDAAiD;CAC5G,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdyD,EAAE,OAAO;EAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;EACxC,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;CACnF,CAAC,CAAC,CAAC,SAAS,6EAWH;CACP,QAX0D,EAAE,OAAO;EACnE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzG,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACjF,CAAC,CAAC,CAAC,SAAS,qDAOF;AACV,CAAC"}
@@ -8,7 +8,7 @@ const PushByTechulusInviteUserToTeamInput = zod.z.object({
8
8
  const PushByTechulusInviteUserToTeamOutput = zod.z.object({
9
9
  error: zod.z.string().describe("Error code if the request failed.").nullable().optional(),
10
10
  message: zod.z.string().describe("Success message or error details.").nullable().optional(),
11
- success: zod.z.boolean().describe("Whether the invitation was sent successfully.")
11
+ success: zod.z.boolean().describe("Whether the invitation was sent successfully.").nullable()
12
12
  }).describe("Response model for team invitation.");
13
13
  const pushByTechulusInviteUserToTeam = require_action.action("PUSH_BY_TECHULUS_INVITE_USER_TO_TEAM", {
14
14
  slug: "push_by_techulus-invite-user-to-team",
@@ -1 +1 @@
1
- {"version":3,"file":"invite-user-to-team.cjs","names":["z","action"],"sources":["../../src/actions/invite-user-to-team.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusInviteUserToTeamInput: z.ZodTypeAny = z.object({\n team: z.string().describe(\"Team API key to which the user will be invited.\"),\n email: z.string().describe(\"Email address of the user to invite to the team.\"),\n}).describe(\"Request model for inviting a user to a team via email.\");\nexport const PushByTechulusInviteUserToTeamOutput: z.ZodTypeAny = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Success message or error details.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the invitation was sent successfully.\"),\n}).describe(\"Response model for team invitation.\");\n\nexport const pushByTechulusInviteUserToTeam = action(\"PUSH_BY_TECHULUS_INVITE_USER_TO_TEAM\", {\n slug: \"push_by_techulus-invite-user-to-team\",\n name: \"Invite User to Team\",\n description: \"Tool to invite a user to a team by sending an email invitation. Use when you need to add a new member to an existing team.\",\n input: PushByTechulusInviteUserToTeamInput,\n output: PushByTechulusInviteUserToTeamOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAoDA,IAAAA,EAAE,OAAO;CACxE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC3E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;AAC/E,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAa,uCAAqDA,IAAAA,EAAE,OAAO;CACzE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C;AAC/E,CAAC,CAAC,CAAC,SAAS,qCAAqC;AAEjD,MAAa,iCAAiCC,eAAAA,OAAO,wCAAwC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"invite-user-to-team.cjs","names":["z","action"],"sources":["../../src/actions/invite-user-to-team.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusInviteUserToTeamInput = z.object({\n team: z.string().describe(\"Team API key to which the user will be invited.\"),\n email: z.string().describe(\"Email address of the user to invite to the team.\"),\n}).describe(\"Request model for inviting a user to a team via email.\");\nexport const PushByTechulusInviteUserToTeamOutput = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Success message or error details.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the invitation was sent successfully.\").nullable(),\n}).describe(\"Response model for team invitation.\");\n\nexport const pushByTechulusInviteUserToTeam = action(\"PUSH_BY_TECHULUS_INVITE_USER_TO_TEAM\", {\n slug: \"push_by_techulus-invite-user-to-team\",\n name: \"Invite User to Team\",\n description: \"Tool to invite a user to a team by sending an email invitation. Use when you need to add a new member to an existing team.\",\n input: PushByTechulusInviteUserToTeamInput,\n output: PushByTechulusInviteUserToTeamOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAsCA,IAAAA,EAAE,OAAO;CAC1D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC3E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;AAC/E,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAa,uCAAuCA,IAAAA,EAAE,OAAO;CAC3D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,SAAS,qCAAqC;AAEjD,MAAa,iCAAiCC,eAAAA,OAAO,wCAAwC;CAC3F,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/invite-user-to-team.d.ts
4
- declare const PushByTechulusInviteUserToTeamInput: z.ZodTypeAny;
5
- declare const PushByTechulusInviteUserToTeamOutput: z.ZodTypeAny;
6
- declare const pushByTechulusInviteUserToTeam: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusInviteUserToTeamInput: z.ZodObject<{
5
+ team: z.ZodString;
6
+ email: z.ZodString;
7
+ }, z.core.$strip>;
8
+ declare const PushByTechulusInviteUserToTeamOutput: z.ZodObject<{
9
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ success: z.ZodNullable<z.ZodBoolean>;
12
+ }, z.core.$strip>;
13
+ declare const pushByTechulusInviteUserToTeam: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ team: string;
15
+ email: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { pushByTechulusInviteUserToTeam };
9
19
  //# sourceMappingURL=invite-user-to-team.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"invite-user-to-team.d.cts","names":[],"sources":["../../src/actions/invite-user-to-team.ts"],"mappings":";;;cAIa,mCAAA,EAAqC,CAAA,CAAE,UAGiB;AAAA,cACxD,oCAAA,EAAsC,CAAA,CAAE,UAIH;AAAA,cAErC,8BAAA,gCAA8B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"invite-user-to-team.d.cts","names":[],"sources":["../../src/actions/invite-user-to-team.ts"],"mappings":";;;cAIa,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;cAInC,oCAAA,EAAoC,CAAA,CAAA,SAAA;;;;;cAMpC,8BAAA,gCAA8B,wBAAA"}
@@ -1,9 +1,19 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/invite-user-to-team.d.ts
4
- declare const PushByTechulusInviteUserToTeamInput: z.ZodTypeAny;
5
- declare const PushByTechulusInviteUserToTeamOutput: z.ZodTypeAny;
6
- declare const pushByTechulusInviteUserToTeam: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusInviteUserToTeamInput: z.ZodObject<{
5
+ team: z.ZodString;
6
+ email: z.ZodString;
7
+ }, z.core.$strip>;
8
+ declare const PushByTechulusInviteUserToTeamOutput: z.ZodObject<{
9
+ error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
+ success: z.ZodNullable<z.ZodBoolean>;
12
+ }, z.core.$strip>;
13
+ declare const pushByTechulusInviteUserToTeam: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ team: string;
15
+ email: string;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
17
  //#endregion
8
18
  export { pushByTechulusInviteUserToTeam };
9
19
  //# sourceMappingURL=invite-user-to-team.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"invite-user-to-team.d.mts","names":[],"sources":["../../src/actions/invite-user-to-team.ts"],"mappings":";;;cAIa,mCAAA,EAAqC,CAAA,CAAE,UAGiB;AAAA,cACxD,oCAAA,EAAsC,CAAA,CAAE,UAIH;AAAA,cAErC,8BAAA,gCAA8B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"invite-user-to-team.d.mts","names":[],"sources":["../../src/actions/invite-user-to-team.ts"],"mappings":";;;cAIa,mCAAA,EAAmC,CAAA,CAAA,SAAA;;;;cAInC,oCAAA,EAAoC,CAAA,CAAA,SAAA;;;;;cAMpC,8BAAA,gCAA8B,wBAAA"}
@@ -11,7 +11,7 @@ const pushByTechulusInviteUserToTeam = action("PUSH_BY_TECHULUS_INVITE_USER_TO_T
11
11
  output: z.object({
12
12
  error: z.string().describe("Error code if the request failed.").nullable().optional(),
13
13
  message: z.string().describe("Success message or error details.").nullable().optional(),
14
- success: z.boolean().describe("Whether the invitation was sent successfully.")
14
+ success: z.boolean().describe("Whether the invitation was sent successfully.").nullable()
15
15
  }).describe("Response model for team invitation.")
16
16
  });
17
17
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"invite-user-to-team.mjs","names":[],"sources":["../../src/actions/invite-user-to-team.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusInviteUserToTeamInput: z.ZodTypeAny = z.object({\n team: z.string().describe(\"Team API key to which the user will be invited.\"),\n email: z.string().describe(\"Email address of the user to invite to the team.\"),\n}).describe(\"Request model for inviting a user to a team via email.\");\nexport const PushByTechulusInviteUserToTeamOutput: z.ZodTypeAny = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Success message or error details.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the invitation was sent successfully.\"),\n}).describe(\"Response model for team invitation.\");\n\nexport const pushByTechulusInviteUserToTeam = action(\"PUSH_BY_TECHULUS_INVITE_USER_TO_TEAM\", {\n slug: \"push_by_techulus-invite-user-to-team\",\n name: \"Invite User to Team\",\n description: \"Tool to invite a user to a team by sending an email invitation. Use when you need to add a new member to an existing team.\",\n input: PushByTechulusInviteUserToTeamInput,\n output: PushByTechulusInviteUserToTeamOutput,\n});\n"],"mappings":";;AAcA,MAAa,iCAAiC,OAAO,wCAAwC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd+D,EAAE,OAAO;EACxE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;EAC3E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;CAC/E,CAAC,CAAC,CAAC,SAAS,wDAWH;CACP,QAXgE,EAAE,OAAO;EACzE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C;CAC/E,CAAC,CAAC,CAAC,SAAS,qCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"invite-user-to-team.mjs","names":[],"sources":["../../src/actions/invite-user-to-team.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusInviteUserToTeamInput = z.object({\n team: z.string().describe(\"Team API key to which the user will be invited.\"),\n email: z.string().describe(\"Email address of the user to invite to the team.\"),\n}).describe(\"Request model for inviting a user to a team via email.\");\nexport const PushByTechulusInviteUserToTeamOutput = z.object({\n error: z.string().describe(\"Error code if the request failed.\").nullable().optional(),\n message: z.string().describe(\"Success message or error details.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the invitation was sent successfully.\").nullable(),\n}).describe(\"Response model for team invitation.\");\n\nexport const pushByTechulusInviteUserToTeam = action(\"PUSH_BY_TECHULUS_INVITE_USER_TO_TEAM\", {\n slug: \"push_by_techulus-invite-user-to-team\",\n name: \"Invite User to Team\",\n description: \"Tool to invite a user to a team by sending an email invitation. Use when you need to add a new member to an existing team.\",\n input: PushByTechulusInviteUserToTeamInput,\n output: PushByTechulusInviteUserToTeamOutput,\n});\n"],"mappings":";;AAcA,MAAa,iCAAiC,OAAO,wCAAwC;CAC3F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdiD,EAAE,OAAO;EAC1D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;EAC3E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;CAC/E,CAAC,CAAC,CAAC,SAAS,wDAWH;CACP,QAXkD,EAAE,OAAO;EAC3D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,CAAC,CAAC,CAAC,SAAS,qCAOF;AACV,CAAC"}
@@ -27,8 +27,8 @@ const PushByTechulusSendNotificationAsyncInput = zod.z.object({
27
27
  timeSensitive: zod.z.boolean().describe("Time-sensitive notifications deliver immediately despite do-not-disturb mode (iOS only). Defaults to false.").optional()
28
28
  }).describe("Request model for sending push notifications asynchronously.");
29
29
  const PushByTechulusSendNotificationAsyncOutput = zod.z.object({
30
- message: zod.z.string().describe("Response message providing additional information about the operation."),
31
- success: zod.z.boolean().describe("Operation success status indicating whether the notification was queued successfully.")
30
+ message: zod.z.string().describe("Response message providing additional information about the operation.").nullable(),
31
+ success: zod.z.boolean().describe("Operation success status indicating whether the notification was queued successfully.").nullable()
32
32
  }).describe("Response model for async notification send operation.");
33
33
  const pushByTechulusSendNotificationAsync = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_ASYNC", {
34
34
  slug: "push_by_techulus-send-notification-async",
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-async.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-async.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationAsyncInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body content.\"),\n link: z.string().describe(\"Notification link (URL).\").optional(),\n image: z.string().describe(\"Notification image (URL).\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title.\"),\n channel: z.string().describe(\"Notification channel, alphanumeric and hyphens only. Defaults to 'feed'.\").optional(),\n timeSensitive: z.boolean().describe(\"Time-sensitive notifications deliver immediately despite do-not-disturb mode (iOS only). Defaults to false.\").optional(),\n}).describe(\"Request model for sending push notifications asynchronously.\");\nexport const PushByTechulusSendNotificationAsyncOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message providing additional information about the operation.\"),\n success: z.boolean().describe(\"Operation success status indicating whether the notification was queued successfully.\"),\n}).describe(\"Response model for async notification send operation.\");\n\nexport const pushByTechulusSendNotificationAsync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_ASYNC\", {\n slug: \"push_by_techulus-send-notification-async\",\n name: \"Send Push Notification Async\",\n description: \"Tool to send push notification asynchronously to all devices in an account or team. Use when you have more than 10 devices for better performance.\",\n input: PushByTechulusSendNotificationAsyncInput,\n output: PushByTechulusSendNotificationAsyncOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2CAAyDA,IAAAA,EAAE,OAAO;CAC7E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACjE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,2JAA2J,CAAC,CAAC,SAAS;CAChV,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;CAChD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CAClH,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;AAC9J,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAa,4CAA0DA,IAAAA,EAAE,OAAO;CAC9E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE;CACrG,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,uFAAuF;AACvH,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,sCAAsCC,eAAAA,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-async.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-async.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationAsyncInput = z.object({\n body: z.string().describe(\"Notification body content.\"),\n link: z.string().describe(\"Notification link (URL).\").optional(),\n image: z.string().describe(\"Notification image (URL).\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title.\"),\n channel: z.string().describe(\"Notification channel, alphanumeric and hyphens only. Defaults to 'feed'.\").optional(),\n timeSensitive: z.boolean().describe(\"Time-sensitive notifications deliver immediately despite do-not-disturb mode (iOS only). Defaults to false.\").optional(),\n}).describe(\"Request model for sending push notifications asynchronously.\");\nexport const PushByTechulusSendNotificationAsyncOutput = z.object({\n message: z.string().describe(\"Response message providing additional information about the operation.\").nullable(),\n success: z.boolean().describe(\"Operation success status indicating whether the notification was queued successfully.\").nullable(),\n}).describe(\"Response model for async notification send operation.\");\n\nexport const pushByTechulusSendNotificationAsync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_ASYNC\", {\n slug: \"push_by_techulus-send-notification-async\",\n name: \"Send Push Notification Async\",\n description: \"Tool to send push notification asynchronously to all devices in an account or team. Use when you have more than 10 devices for better performance.\",\n input: PushByTechulusSendNotificationAsyncInput,\n output: PushByTechulusSendNotificationAsyncOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2CAA2CA,IAAAA,EAAE,OAAO;CAC/D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACtD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACjE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,2JAA2J,CAAC,CAAC,SAAS;CAChV,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;CAChD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CAClH,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;AAC9J,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAa,4CAA4CA,IAAAA,EAAE,OAAO;CAChE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CAChH,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS;AAClI,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,sCAAsCC,eAAAA,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,44 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-async.d.ts
4
- declare const PushByTechulusSendNotificationAsyncInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationAsyncOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationAsync: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationAsyncInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodEnum<{
9
+ default: "default";
10
+ arcade: "arcade";
11
+ correct: "correct";
12
+ fail: "fail";
13
+ harp: "harp";
14
+ reveal: "reveal";
15
+ bubble: "bubble";
16
+ doorbell: "doorbell";
17
+ flute: "flute";
18
+ money: "money";
19
+ scifi: "scifi";
20
+ clear: "clear";
21
+ elevator: "elevator";
22
+ guitar: "guitar";
23
+ pop: "pop";
24
+ }>>;
25
+ title: z.ZodString;
26
+ channel: z.ZodOptional<z.ZodString>;
27
+ timeSensitive: z.ZodOptional<z.ZodBoolean>;
28
+ }, z.core.$strip>;
29
+ declare const PushByTechulusSendNotificationAsyncOutput: z.ZodObject<{
30
+ message: z.ZodNullable<z.ZodString>;
31
+ success: z.ZodNullable<z.ZodBoolean>;
32
+ }, z.core.$strip>;
33
+ declare const pushByTechulusSendNotificationAsync: import("@keystrokehq/action").WorkflowActionDefinition<{
34
+ body: string;
35
+ title: string;
36
+ link?: string | undefined;
37
+ image?: string | undefined;
38
+ sound?: "default" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | "pop" | undefined;
39
+ channel?: string | undefined;
40
+ timeSensitive?: boolean | undefined;
41
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
42
  //#endregion
8
43
  export { pushByTechulusSendNotificationAsync };
9
44
  //# sourceMappingURL=send-notification-async.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-async.d.cts","names":[],"sources":["../../src/actions/send-notification-async.ts"],"mappings":";;;cAIa,wCAAA,EAA0C,CAAA,CAAE,UAQkB;AAAA,cAC9D,yCAAA,EAA2C,CAAA,CAAE,UAGU;AAAA,cAEvD,mCAAA,gCAAmC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-async.d.cts","names":[],"sources":["../../src/actions/send-notification-async.ts"],"mappings":";;;cAIa,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cASxC,yCAAA,EAAyC,CAAA,CAAA,SAAA;;;;cAKzC,mCAAA,gCAAmC,wBAAA"}
@@ -1,9 +1,44 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-async.d.ts
4
- declare const PushByTechulusSendNotificationAsyncInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationAsyncOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationAsync: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationAsyncInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodEnum<{
9
+ default: "default";
10
+ arcade: "arcade";
11
+ correct: "correct";
12
+ fail: "fail";
13
+ harp: "harp";
14
+ reveal: "reveal";
15
+ bubble: "bubble";
16
+ doorbell: "doorbell";
17
+ flute: "flute";
18
+ money: "money";
19
+ scifi: "scifi";
20
+ clear: "clear";
21
+ elevator: "elevator";
22
+ guitar: "guitar";
23
+ pop: "pop";
24
+ }>>;
25
+ title: z.ZodString;
26
+ channel: z.ZodOptional<z.ZodString>;
27
+ timeSensitive: z.ZodOptional<z.ZodBoolean>;
28
+ }, z.core.$strip>;
29
+ declare const PushByTechulusSendNotificationAsyncOutput: z.ZodObject<{
30
+ message: z.ZodNullable<z.ZodString>;
31
+ success: z.ZodNullable<z.ZodBoolean>;
32
+ }, z.core.$strip>;
33
+ declare const pushByTechulusSendNotificationAsync: import("@keystrokehq/action").WorkflowActionDefinition<{
34
+ body: string;
35
+ title: string;
36
+ link?: string | undefined;
37
+ image?: string | undefined;
38
+ sound?: "default" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | "pop" | undefined;
39
+ channel?: string | undefined;
40
+ timeSensitive?: boolean | undefined;
41
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
42
  //#endregion
8
43
  export { pushByTechulusSendNotificationAsync };
9
44
  //# sourceMappingURL=send-notification-async.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-async.d.mts","names":[],"sources":["../../src/actions/send-notification-async.ts"],"mappings":";;;cAIa,wCAAA,EAA0C,CAAA,CAAE,UAQkB;AAAA,cAC9D,yCAAA,EAA2C,CAAA,CAAE,UAGU;AAAA,cAEvD,mCAAA,gCAAmC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-async.d.mts","names":[],"sources":["../../src/actions/send-notification-async.ts"],"mappings":";;;cAIa,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;cASxC,yCAAA,EAAyC,CAAA,CAAA,SAAA;;;;cAKzC,mCAAA,gCAAmC,wBAAA"}
@@ -30,8 +30,8 @@ const pushByTechulusSendNotificationAsync = action("PUSH_BY_TECHULUS_SEND_NOTIFI
30
30
  timeSensitive: z.boolean().describe("Time-sensitive notifications deliver immediately despite do-not-disturb mode (iOS only). Defaults to false.").optional()
31
31
  }).describe("Request model for sending push notifications asynchronously."),
32
32
  output: z.object({
33
- message: z.string().describe("Response message providing additional information about the operation."),
34
- success: z.boolean().describe("Operation success status indicating whether the notification was queued successfully.")
33
+ message: z.string().describe("Response message providing additional information about the operation.").nullable(),
34
+ success: z.boolean().describe("Operation success status indicating whether the notification was queued successfully.").nullable()
35
35
  }).describe("Response model for async notification send operation.")
36
36
  });
37
37
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-async.mjs","names":[],"sources":["../../src/actions/send-notification-async.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationAsyncInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body content.\"),\n link: z.string().describe(\"Notification link (URL).\").optional(),\n image: z.string().describe(\"Notification image (URL).\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title.\"),\n channel: z.string().describe(\"Notification channel, alphanumeric and hyphens only. Defaults to 'feed'.\").optional(),\n timeSensitive: z.boolean().describe(\"Time-sensitive notifications deliver immediately despite do-not-disturb mode (iOS only). Defaults to false.\").optional(),\n}).describe(\"Request model for sending push notifications asynchronously.\");\nexport const PushByTechulusSendNotificationAsyncOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message providing additional information about the operation.\"),\n success: z.boolean().describe(\"Operation success status indicating whether the notification was queued successfully.\"),\n}).describe(\"Response model for async notification send operation.\");\n\nexport const pushByTechulusSendNotificationAsync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_ASYNC\", {\n slug: \"push_by_techulus-send-notification-async\",\n name: \"Send Push Notification Async\",\n description: \"Tool to send push notification asynchronously to all devices in an account or team. Use when you have more than 10 devices for better performance.\",\n input: PushByTechulusSendNotificationAsyncInput,\n output: PushByTechulusSendNotificationAsyncOutput,\n});\n"],"mappings":";;AAkBA,MAAa,sCAAsC,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBoE,EAAE,OAAO;EAC7E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EACjE,OAAO,EAAE,KAAK;GAAC;GAAW;GAAU;GAAW;GAAQ;GAAQ;GAAU;GAAU;GAAY;GAAS;GAAS;GAAS;GAAS;GAAY;GAAU;EAAK,CAAC,CAAC,CAAC,SAAS,2JAA2J,CAAC,CAAC,SAAS;EAChV,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;EAChD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;EAClH,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;CAC9J,CAAC,CAAC,CAAC,SAAS,8DAUH;CACP,QAVqE,EAAE,OAAO;EAC9E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE;EACrG,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,uFAAuF;CACvH,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-async.mjs","names":[],"sources":["../../src/actions/send-notification-async.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationAsyncInput = z.object({\n body: z.string().describe(\"Notification body content.\"),\n link: z.string().describe(\"Notification link (URL).\").optional(),\n image: z.string().describe(\"Notification image (URL).\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title.\"),\n channel: z.string().describe(\"Notification channel, alphanumeric and hyphens only. Defaults to 'feed'.\").optional(),\n timeSensitive: z.boolean().describe(\"Time-sensitive notifications deliver immediately despite do-not-disturb mode (iOS only). Defaults to false.\").optional(),\n}).describe(\"Request model for sending push notifications asynchronously.\");\nexport const PushByTechulusSendNotificationAsyncOutput = z.object({\n message: z.string().describe(\"Response message providing additional information about the operation.\").nullable(),\n success: z.boolean().describe(\"Operation success status indicating whether the notification was queued successfully.\").nullable(),\n}).describe(\"Response model for async notification send operation.\");\n\nexport const pushByTechulusSendNotificationAsync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_ASYNC\", {\n slug: \"push_by_techulus-send-notification-async\",\n name: \"Send Push Notification Async\",\n description: \"Tool to send push notification asynchronously to all devices in an account or team. Use when you have more than 10 devices for better performance.\",\n input: PushByTechulusSendNotificationAsyncInput,\n output: PushByTechulusSendNotificationAsyncOutput,\n});\n"],"mappings":";;AAkBA,MAAa,sCAAsC,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBsD,EAAE,OAAO;EAC/D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;EACtD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EACjE,OAAO,EAAE,KAAK;GAAC;GAAW;GAAU;GAAW;GAAQ;GAAQ;GAAU;GAAU;GAAY;GAAS;GAAS;GAAS;GAAS;GAAY;GAAU;EAAK,CAAC,CAAC,CAAC,SAAS,2JAA2J,CAAC,CAAC,SAAS;EAChV,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;EAChD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;EAClH,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,6GAA6G,CAAC,CAAC,SAAS;CAC9J,CAAC,CAAC,CAAC,SAAS,8DAUH;CACP,QAVuD,EAAE,OAAO;EAChE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;EAChH,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS;CAClI,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
@@ -11,12 +11,12 @@ const PushByTechulusSendNotificationSyncInput = zod.z.object({
11
11
  timeSensitive: zod.z.boolean().describe("iOS-only; enables immediate delivery even in Do Not Disturb mode. Defaults to false.").optional()
12
12
  }).describe("Request parameters for sending push notification synchronously.");
13
13
  const PushByTechulusSendNotificationSync_NotificationResponseSchema = zod.z.object({
14
- message: zod.z.string().describe("Individual response message."),
15
- success: zod.z.boolean().describe("Indicates if the individual notification was successful.")
14
+ message: zod.z.string().describe("Individual response message.").nullable(),
15
+ success: zod.z.boolean().describe("Indicates if the individual notification was successful.").nullable()
16
16
  }).describe("Individual notification response details.");
17
17
  const PushByTechulusSendNotificationSyncOutput = zod.z.object({
18
18
  message: zod.z.string().describe("Response message from the API.").nullable().optional(),
19
- success: zod.z.boolean().describe("Indicates if the request was successful overall."),
19
+ success: zod.z.boolean().describe("Indicates if the request was successful overall.").nullable(),
20
20
  responses: zod.z.array(PushByTechulusSendNotificationSync_NotificationResponseSchema).describe("Array of response objects for each device notification.").nullable().optional()
21
21
  }).describe("Response schema for synchronous notification sending.");
22
22
  const pushByTechulusSendNotificationSync = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC", {
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-sync.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-sync.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationSyncInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body/message content.\"),\n link: z.string().describe(\"Notification URL destination to open when clicked.\").optional(),\n image: z.string().describe(\"Notification image URL to display.\").optional(),\n sound: z.string().describe(\"Sound effect for notification. Options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title to display.\"),\n channel: z.string().describe(\"Alphanumeric channel identifier; defaults to 'feed' if not specified.\").optional(),\n timeSensitive: z.boolean().describe(\"iOS-only; enables immediate delivery even in Do Not Disturb mode. Defaults to false.\").optional(),\n}).describe(\"Request parameters for sending push notification synchronously.\");\nconst PushByTechulusSendNotificationSync_NotificationResponseSchema: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Individual response message.\"),\n success: z.boolean().describe(\"Indicates if the individual notification was successful.\"),\n}).describe(\"Individual notification response details.\");\nexport const PushByTechulusSendNotificationSyncOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful overall.\"),\n responses: z.array(PushByTechulusSendNotificationSync_NotificationResponseSchema).describe(\"Array of response objects for each device notification.\").nullable().optional(),\n}).describe(\"Response schema for synchronous notification sending.\");\n\nexport const pushByTechulusSendNotificationSync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC\", {\n slug: \"push_by_techulus-send-notification-sync\",\n name: \"Send Notification Sync\",\n description: \"Tool to send push notifications synchronously to all linked devices. Use when you need immediate confirmation of notification delivery to all devices or teams.\",\n input: PushByTechulusSendNotificationSyncInput,\n output: PushByTechulusSendNotificationSyncOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAAwDA,IAAAA,EAAE,OAAO;CAC5E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACzF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC1E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4JAA4J,CAAC,CAAC,SAAS;CAClM,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC3D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;AACvI,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,gEAA8EA,IAAAA,EAAE,OAAO;CAC3F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC3D,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0DAA0D;AAC1F,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACvD,MAAa,2CAAyDA,IAAAA,EAAE,OAAO;CAC7E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD;CAChF,WAAWA,IAAAA,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5K,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,qCAAqCC,eAAAA,OAAO,2CAA2C;CAClG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-sync.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-sync.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationSyncInput = z.object({\n body: z.string().describe(\"Notification body/message content.\"),\n link: z.string().describe(\"Notification URL destination to open when clicked.\").optional(),\n image: z.string().describe(\"Notification image URL to display.\").optional(),\n sound: z.string().describe(\"Sound effect for notification. Options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title to display.\"),\n channel: z.string().describe(\"Alphanumeric channel identifier; defaults to 'feed' if not specified.\").optional(),\n timeSensitive: z.boolean().describe(\"iOS-only; enables immediate delivery even in Do Not Disturb mode. Defaults to false.\").optional(),\n}).describe(\"Request parameters for sending push notification synchronously.\");\nconst PushByTechulusSendNotificationSync_NotificationResponseSchema = z.object({\n message: z.string().describe(\"Individual response message.\").nullable(),\n success: z.boolean().describe(\"Indicates if the individual notification was successful.\").nullable(),\n}).describe(\"Individual notification response details.\");\nexport const PushByTechulusSendNotificationSyncOutput = z.object({\n message: z.string().describe(\"Response message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful overall.\").nullable(),\n responses: z.array(PushByTechulusSendNotificationSync_NotificationResponseSchema).describe(\"Array of response objects for each device notification.\").nullable().optional(),\n}).describe(\"Response schema for synchronous notification sending.\");\n\nexport const pushByTechulusSendNotificationSync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC\", {\n slug: \"push_by_techulus-send-notification-sync\",\n name: \"Send Notification Sync\",\n description: \"Tool to send push notifications synchronously to all linked devices. Use when you need immediate confirmation of notification delivery to all devices or teams.\",\n input: PushByTechulusSendNotificationSyncInput,\n output: PushByTechulusSendNotificationSyncOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAA0CA,IAAAA,EAAE,OAAO;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACzF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC1E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4JAA4J,CAAC,CAAC,SAAS;CAClM,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC3D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;AACvI,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,gEAAgEA,IAAAA,EAAE,OAAO;CAC7E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACtE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACvD,MAAa,2CAA2CA,IAAAA,EAAE,OAAO;CAC/D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC3F,WAAWA,IAAAA,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5K,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,qCAAqCC,eAAAA,OAAO,2CAA2C;CAClG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,32 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-sync.d.ts
4
- declare const PushByTechulusSendNotificationSyncInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationSyncOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationSync: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationSyncInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodString>;
9
+ title: z.ZodString;
10
+ channel: z.ZodOptional<z.ZodString>;
11
+ timeSensitive: z.ZodOptional<z.ZodBoolean>;
12
+ }, z.core.$strip>;
13
+ declare const PushByTechulusSendNotificationSyncOutput: z.ZodObject<{
14
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ success: z.ZodNullable<z.ZodBoolean>;
16
+ responses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
17
+ message: z.ZodNullable<z.ZodString>;
18
+ success: z.ZodNullable<z.ZodBoolean>;
19
+ }, z.core.$strip>>>>;
20
+ }, z.core.$strip>;
21
+ declare const pushByTechulusSendNotificationSync: import("@keystrokehq/action").WorkflowActionDefinition<{
22
+ body: string;
23
+ title: string;
24
+ link?: string | undefined;
25
+ image?: string | undefined;
26
+ sound?: string | undefined;
27
+ channel?: string | undefined;
28
+ timeSensitive?: boolean | undefined;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
30
  //#endregion
8
31
  export { pushByTechulusSendNotificationSync };
9
32
  //# sourceMappingURL=send-notification-sync.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-sync.d.cts","names":[],"sources":["../../src/actions/send-notification-sync.ts"],"mappings":";;;cAIa,uCAAA,EAAyC,CAAA,CAAE,UAQsB;AAAA,cAKjE,wCAAA,EAA0C,CAAA,CAAE,UAIW;AAAA,cAEvD,kCAAA,gCAAkC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-sync.d.cts","names":[],"sources":["../../src/actions/send-notification-sync.ts"],"mappings":";;;cAIa,uCAAA,EAAuC,CAAA,CAAA,SAAA;;;;;;;;;cAavC,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;;;;cAMxC,kCAAA,gCAAkC,wBAAA"}
@@ -1,9 +1,32 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-sync.d.ts
4
- declare const PushByTechulusSendNotificationSyncInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationSyncOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationSync: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationSyncInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodString>;
9
+ title: z.ZodString;
10
+ channel: z.ZodOptional<z.ZodString>;
11
+ timeSensitive: z.ZodOptional<z.ZodBoolean>;
12
+ }, z.core.$strip>;
13
+ declare const PushByTechulusSendNotificationSyncOutput: z.ZodObject<{
14
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ success: z.ZodNullable<z.ZodBoolean>;
16
+ responses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
17
+ message: z.ZodNullable<z.ZodString>;
18
+ success: z.ZodNullable<z.ZodBoolean>;
19
+ }, z.core.$strip>>>>;
20
+ }, z.core.$strip>;
21
+ declare const pushByTechulusSendNotificationSync: import("@keystrokehq/action").WorkflowActionDefinition<{
22
+ body: string;
23
+ title: string;
24
+ link?: string | undefined;
25
+ image?: string | undefined;
26
+ sound?: string | undefined;
27
+ channel?: string | undefined;
28
+ timeSensitive?: boolean | undefined;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
30
  //#endregion
8
31
  export { pushByTechulusSendNotificationSync };
9
32
  //# sourceMappingURL=send-notification-sync.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-sync.d.mts","names":[],"sources":["../../src/actions/send-notification-sync.ts"],"mappings":";;;cAIa,uCAAA,EAAyC,CAAA,CAAE,UAQsB;AAAA,cAKjE,wCAAA,EAA0C,CAAA,CAAE,UAIW;AAAA,cAEvD,kCAAA,gCAAkC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-sync.d.mts","names":[],"sources":["../../src/actions/send-notification-sync.ts"],"mappings":";;;cAIa,uCAAA,EAAuC,CAAA,CAAA,SAAA;;;;;;;;;cAavC,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;;;;cAMxC,kCAAA,gCAAkC,wBAAA"}
@@ -11,8 +11,8 @@ const PushByTechulusSendNotificationSyncInput = z.object({
11
11
  timeSensitive: z.boolean().describe("iOS-only; enables immediate delivery even in Do Not Disturb mode. Defaults to false.").optional()
12
12
  }).describe("Request parameters for sending push notification synchronously.");
13
13
  const PushByTechulusSendNotificationSync_NotificationResponseSchema = z.object({
14
- message: z.string().describe("Individual response message."),
15
- success: z.boolean().describe("Indicates if the individual notification was successful.")
14
+ message: z.string().describe("Individual response message.").nullable(),
15
+ success: z.boolean().describe("Indicates if the individual notification was successful.").nullable()
16
16
  }).describe("Individual notification response details.");
17
17
  const pushByTechulusSendNotificationSync = action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC", {
18
18
  slug: "push_by_techulus-send-notification-sync",
@@ -21,7 +21,7 @@ const pushByTechulusSendNotificationSync = action("PUSH_BY_TECHULUS_SEND_NOTIFIC
21
21
  input: PushByTechulusSendNotificationSyncInput,
22
22
  output: z.object({
23
23
  message: z.string().describe("Response message from the API.").nullable().optional(),
24
- success: z.boolean().describe("Indicates if the request was successful overall."),
24
+ success: z.boolean().describe("Indicates if the request was successful overall.").nullable(),
25
25
  responses: z.array(PushByTechulusSendNotificationSync_NotificationResponseSchema).describe("Array of response objects for each device notification.").nullable().optional()
26
26
  }).describe("Response schema for synchronous notification sending.")
27
27
  });
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-sync.mjs","names":[],"sources":["../../src/actions/send-notification-sync.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationSyncInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body/message content.\"),\n link: z.string().describe(\"Notification URL destination to open when clicked.\").optional(),\n image: z.string().describe(\"Notification image URL to display.\").optional(),\n sound: z.string().describe(\"Sound effect for notification. Options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title to display.\"),\n channel: z.string().describe(\"Alphanumeric channel identifier; defaults to 'feed' if not specified.\").optional(),\n timeSensitive: z.boolean().describe(\"iOS-only; enables immediate delivery even in Do Not Disturb mode. Defaults to false.\").optional(),\n}).describe(\"Request parameters for sending push notification synchronously.\");\nconst PushByTechulusSendNotificationSync_NotificationResponseSchema: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Individual response message.\"),\n success: z.boolean().describe(\"Indicates if the individual notification was successful.\"),\n}).describe(\"Individual notification response details.\");\nexport const PushByTechulusSendNotificationSyncOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful overall.\"),\n responses: z.array(PushByTechulusSendNotificationSync_NotificationResponseSchema).describe(\"Array of response objects for each device notification.\").nullable().optional(),\n}).describe(\"Response schema for synchronous notification sending.\");\n\nexport const pushByTechulusSendNotificationSync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC\", {\n slug: \"push_by_techulus-send-notification-sync\",\n name: \"Send Notification Sync\",\n description: \"Tool to send push notifications synchronously to all linked devices. Use when you need immediate confirmation of notification delivery to all devices or teams.\",\n input: PushByTechulusSendNotificationSyncInput,\n output: PushByTechulusSendNotificationSyncOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAAwD,EAAE,OAAO;CAC5E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACzF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC1E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,4JAA4J,CAAC,CAAC,SAAS;CAClM,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC3D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;AACvI,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,gEAA8E,EAAE,OAAO;CAC3F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC3D,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0DAA0D;AAC1F,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAOvD,MAAa,qCAAqC,OAAO,2CAA2C;CAClG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXoE,EAAE,OAAO;EAC7E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD;EAChF,WAAW,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5K,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-sync.mjs","names":[],"sources":["../../src/actions/send-notification-sync.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationSyncInput = z.object({\n body: z.string().describe(\"Notification body/message content.\"),\n link: z.string().describe(\"Notification URL destination to open when clicked.\").optional(),\n image: z.string().describe(\"Notification image URL to display.\").optional(),\n sound: z.string().describe(\"Sound effect for notification. Options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop.\").optional(),\n title: z.string().describe(\"Notification title to display.\"),\n channel: z.string().describe(\"Alphanumeric channel identifier; defaults to 'feed' if not specified.\").optional(),\n timeSensitive: z.boolean().describe(\"iOS-only; enables immediate delivery even in Do Not Disturb mode. Defaults to false.\").optional(),\n}).describe(\"Request parameters for sending push notification synchronously.\");\nconst PushByTechulusSendNotificationSync_NotificationResponseSchema = z.object({\n message: z.string().describe(\"Individual response message.\").nullable(),\n success: z.boolean().describe(\"Indicates if the individual notification was successful.\").nullable(),\n}).describe(\"Individual notification response details.\");\nexport const PushByTechulusSendNotificationSyncOutput = z.object({\n message: z.string().describe(\"Response message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful overall.\").nullable(),\n responses: z.array(PushByTechulusSendNotificationSync_NotificationResponseSchema).describe(\"Array of response objects for each device notification.\").nullable().optional(),\n}).describe(\"Response schema for synchronous notification sending.\");\n\nexport const pushByTechulusSendNotificationSync = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC\", {\n slug: \"push_by_techulus-send-notification-sync\",\n name: \"Send Notification Sync\",\n description: \"Tool to send push notifications synchronously to all linked devices. Use when you need immediate confirmation of notification delivery to all devices or teams.\",\n input: PushByTechulusSendNotificationSyncInput,\n output: PushByTechulusSendNotificationSyncOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0CAA0C,EAAE,OAAO;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACzF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC1E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,4JAA4J,CAAC,CAAC,SAAS;CAClM,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC3D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;AACvI,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,gEAAgE,EAAE,OAAO;CAC7E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS;CACtE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAOvD,MAAa,qCAAqC,OAAO,2CAA2C;CAClG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXsD,EAAE,OAAO;EAC/D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;EAC3F,WAAW,EAAE,MAAM,6DAA6D,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5K,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
@@ -28,12 +28,12 @@ const PushByTechulusSendNotificationToGroupInput = zod.z.object({
28
28
  timeSensitive: zod.z.boolean().describe("Delivers immediately even if device is in do-not-disturb mode (iOS only). Default: false").optional()
29
29
  }).describe("Request parameters to send push notification to a device group.");
30
30
  const PushByTechulusSendNotificationToGroup_DeviceResponseSchema = zod.z.object({
31
- message: zod.z.string().describe("Individual device response message"),
32
- success: zod.z.boolean().describe("Indicates if notification was sent to individual device")
31
+ message: zod.z.string().describe("Individual device response message").nullable(),
32
+ success: zod.z.boolean().describe("Indicates if notification was sent to individual device").nullable()
33
33
  }).describe("Individual device response for group notification.");
34
34
  const PushByTechulusSendNotificationToGroupOutput = zod.z.object({
35
- message: zod.z.string().describe("Response message"),
36
- success: zod.z.boolean().describe("Indicates if the request was successful"),
35
+ message: zod.z.string().describe("Response message").nullable(),
36
+ success: zod.z.boolean().describe("Indicates if the request was successful").nullable(),
37
37
  responses: zod.z.array(PushByTechulusSendNotificationToGroup_DeviceResponseSchema).describe("Array of individual device responses").nullable().optional()
38
38
  }).describe("Response schema for sending notification to device group.");
39
39
  const pushByTechulusSendNotificationToGroup = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP", {
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-to-group.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-to-group.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationToGroupInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body message\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n channel: z.string().describe(\"Notification channel (alphanumeric and hyphens only). Default: 'feed'\").optional(),\n groupId: z.string().describe(\"The Device Group ID to send the notification to\"),\n timeSensitive: z.boolean().describe(\"Delivers immediately even if device is in do-not-disturb mode (iOS only). Default: false\").optional(),\n}).describe(\"Request parameters to send push notification to a device group.\");\nconst PushByTechulusSendNotificationToGroup_DeviceResponseSchema: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Individual device response message\"),\n success: z.boolean().describe(\"Indicates if notification was sent to individual device\"),\n}).describe(\"Individual device response for group notification.\");\nexport const PushByTechulusSendNotificationToGroupOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message\"),\n success: z.boolean().describe(\"Indicates if the request was successful\"),\n responses: z.array(PushByTechulusSendNotificationToGroup_DeviceResponseSchema).describe(\"Array of individual device responses\").nullable().optional(),\n}).describe(\"Response schema for sending notification to device group.\");\n\nexport const pushByTechulusSendNotificationToGroup = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP\", {\n slug: \"push_by_techulus-send-notification-to-group\",\n name: \"Send Notification to Device Group\",\n description: \"Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.\",\n input: PushByTechulusSendNotificationToGroupInput,\n output: PushByTechulusSendNotificationToGroupOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA2DA,IAAAA,EAAE,OAAO;CAC/E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC3U,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC9E,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;AAC3I,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,6DAA2EA,IAAAA,EAAE,OAAO;CACxF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CACjE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yDAAyD;AACzF,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,8CAA4DA,IAAAA,EAAE,OAAO;CAChF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;CAC/C,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;CACvE,WAAWA,IAAAA,EAAE,MAAM,0DAA0D,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtJ,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAEvE,MAAa,wCAAwCC,eAAAA,OAAO,+CAA+C;CACzG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-to-group.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-to-group.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationToGroupInput = z.object({\n body: z.string().describe(\"Notification body message\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n channel: z.string().describe(\"Notification channel (alphanumeric and hyphens only). Default: 'feed'\").optional(),\n groupId: z.string().describe(\"The Device Group ID to send the notification to\"),\n timeSensitive: z.boolean().describe(\"Delivers immediately even if device is in do-not-disturb mode (iOS only). Default: false\").optional(),\n}).describe(\"Request parameters to send push notification to a device group.\");\nconst PushByTechulusSendNotificationToGroup_DeviceResponseSchema = z.object({\n message: z.string().describe(\"Individual device response message\").nullable(),\n success: z.boolean().describe(\"Indicates if notification was sent to individual device\").nullable(),\n}).describe(\"Individual device response for group notification.\");\nexport const PushByTechulusSendNotificationToGroupOutput = z.object({\n message: z.string().describe(\"Response message\").nullable(),\n success: z.boolean().describe(\"Indicates if the request was successful\").nullable(),\n responses: z.array(PushByTechulusSendNotificationToGroup_DeviceResponseSchema).describe(\"Array of individual device responses\").nullable().optional(),\n}).describe(\"Response schema for sending notification to device group.\");\n\nexport const pushByTechulusSendNotificationToGroup = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP\", {\n slug: \"push_by_techulus-send-notification-to-group\",\n name: \"Send Notification to Device Group\",\n description: \"Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.\",\n input: PushByTechulusSendNotificationToGroupInput,\n output: PushByTechulusSendNotificationToGroupOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO;CACjE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC3U,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC9E,eAAeA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;AAC3I,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,6DAA6DA,IAAAA,EAAE,OAAO;CAC1E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC5E,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;AACpG,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAChE,MAAa,8CAA8CA,IAAAA,EAAE,OAAO;CAClE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CAC1D,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CAClF,WAAWA,IAAAA,EAAE,MAAM,0DAA0D,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtJ,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAEvE,MAAa,wCAAwCC,eAAAA,OAAO,+CAA+C;CACzG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,50 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-to-group.d.ts
4
- declare const PushByTechulusSendNotificationToGroupInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationToGroupOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationToGroup: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationToGroupInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodEnum<{
9
+ default: "default";
10
+ arcade: "arcade";
11
+ correct: "correct";
12
+ fail: "fail";
13
+ harp: "harp";
14
+ reveal: "reveal";
15
+ bubble: "bubble";
16
+ doorbell: "doorbell";
17
+ flute: "flute";
18
+ money: "money";
19
+ scifi: "scifi";
20
+ clear: "clear";
21
+ elevator: "elevator";
22
+ guitar: "guitar";
23
+ pop: "pop";
24
+ }>>;
25
+ title: z.ZodString;
26
+ channel: z.ZodOptional<z.ZodString>;
27
+ groupId: z.ZodString;
28
+ timeSensitive: z.ZodOptional<z.ZodBoolean>;
29
+ }, z.core.$strip>;
30
+ declare const PushByTechulusSendNotificationToGroupOutput: z.ZodObject<{
31
+ message: z.ZodNullable<z.ZodString>;
32
+ success: z.ZodNullable<z.ZodBoolean>;
33
+ responses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
34
+ message: z.ZodNullable<z.ZodString>;
35
+ success: z.ZodNullable<z.ZodBoolean>;
36
+ }, z.core.$strip>>>>;
37
+ }, z.core.$strip>;
38
+ declare const pushByTechulusSendNotificationToGroup: import("@keystrokehq/action").WorkflowActionDefinition<{
39
+ body: string;
40
+ title: string;
41
+ groupId: string;
42
+ link?: string | undefined;
43
+ image?: string | undefined;
44
+ sound?: "default" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | "pop" | undefined;
45
+ channel?: string | undefined;
46
+ timeSensitive?: boolean | undefined;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
48
  //#endregion
8
49
  export { pushByTechulusSendNotificationToGroup };
9
50
  //# sourceMappingURL=send-notification-to-group.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-to-group.d.cts","names":[],"sources":["../../src/actions/send-notification-to-group.ts"],"mappings":";;;cAIa,0CAAA,EAA4C,CAAA,CAAE,UASmB;AAAA,cAKjE,2CAAA,EAA6C,CAAA,CAAE,UAIY;AAAA,cAE3D,qCAAA,gCAAqC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-to-group.d.cts","names":[],"sources":["../../src/actions/send-notification-to-group.ts"],"mappings":";;;cAIa,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;cAc1C,2CAAA,EAA2C,CAAA,CAAA,SAAA;;;;;;;;cAM3C,qCAAA,gCAAqC,wBAAA"}
@@ -1,9 +1,50 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-to-group.d.ts
4
- declare const PushByTechulusSendNotificationToGroupInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationToGroupOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationToGroup: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationToGroupInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodEnum<{
9
+ default: "default";
10
+ arcade: "arcade";
11
+ correct: "correct";
12
+ fail: "fail";
13
+ harp: "harp";
14
+ reveal: "reveal";
15
+ bubble: "bubble";
16
+ doorbell: "doorbell";
17
+ flute: "flute";
18
+ money: "money";
19
+ scifi: "scifi";
20
+ clear: "clear";
21
+ elevator: "elevator";
22
+ guitar: "guitar";
23
+ pop: "pop";
24
+ }>>;
25
+ title: z.ZodString;
26
+ channel: z.ZodOptional<z.ZodString>;
27
+ groupId: z.ZodString;
28
+ timeSensitive: z.ZodOptional<z.ZodBoolean>;
29
+ }, z.core.$strip>;
30
+ declare const PushByTechulusSendNotificationToGroupOutput: z.ZodObject<{
31
+ message: z.ZodNullable<z.ZodString>;
32
+ success: z.ZodNullable<z.ZodBoolean>;
33
+ responses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
34
+ message: z.ZodNullable<z.ZodString>;
35
+ success: z.ZodNullable<z.ZodBoolean>;
36
+ }, z.core.$strip>>>>;
37
+ }, z.core.$strip>;
38
+ declare const pushByTechulusSendNotificationToGroup: import("@keystrokehq/action").WorkflowActionDefinition<{
39
+ body: string;
40
+ title: string;
41
+ groupId: string;
42
+ link?: string | undefined;
43
+ image?: string | undefined;
44
+ sound?: "default" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | "pop" | undefined;
45
+ channel?: string | undefined;
46
+ timeSensitive?: boolean | undefined;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
48
  //#endregion
8
49
  export { pushByTechulusSendNotificationToGroup };
9
50
  //# sourceMappingURL=send-notification-to-group.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-to-group.d.mts","names":[],"sources":["../../src/actions/send-notification-to-group.ts"],"mappings":";;;cAIa,0CAAA,EAA4C,CAAA,CAAE,UASmB;AAAA,cAKjE,2CAAA,EAA6C,CAAA,CAAE,UAIY;AAAA,cAE3D,qCAAA,gCAAqC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-to-group.d.mts","names":[],"sources":["../../src/actions/send-notification-to-group.ts"],"mappings":";;;cAIa,0CAAA,EAA0C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;cAc1C,2CAAA,EAA2C,CAAA,CAAA,SAAA;;;;;;;;cAM3C,qCAAA,gCAAqC,wBAAA"}
@@ -28,8 +28,8 @@ const PushByTechulusSendNotificationToGroupInput = z.object({
28
28
  timeSensitive: z.boolean().describe("Delivers immediately even if device is in do-not-disturb mode (iOS only). Default: false").optional()
29
29
  }).describe("Request parameters to send push notification to a device group.");
30
30
  const PushByTechulusSendNotificationToGroup_DeviceResponseSchema = z.object({
31
- message: z.string().describe("Individual device response message"),
32
- success: z.boolean().describe("Indicates if notification was sent to individual device")
31
+ message: z.string().describe("Individual device response message").nullable(),
32
+ success: z.boolean().describe("Indicates if notification was sent to individual device").nullable()
33
33
  }).describe("Individual device response for group notification.");
34
34
  const pushByTechulusSendNotificationToGroup = action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP", {
35
35
  slug: "push_by_techulus-send-notification-to-group",
@@ -37,8 +37,8 @@ const pushByTechulusSendNotificationToGroup = action("PUSH_BY_TECHULUS_SEND_NOTI
37
37
  description: "Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.",
38
38
  input: PushByTechulusSendNotificationToGroupInput,
39
39
  output: z.object({
40
- message: z.string().describe("Response message"),
41
- success: z.boolean().describe("Indicates if the request was successful"),
40
+ message: z.string().describe("Response message").nullable(),
41
+ success: z.boolean().describe("Indicates if the request was successful").nullable(),
42
42
  responses: z.array(PushByTechulusSendNotificationToGroup_DeviceResponseSchema).describe("Array of individual device responses").nullable().optional()
43
43
  }).describe("Response schema for sending notification to device group.")
44
44
  });
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-to-group.mjs","names":[],"sources":["../../src/actions/send-notification-to-group.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationToGroupInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body message\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n channel: z.string().describe(\"Notification channel (alphanumeric and hyphens only). Default: 'feed'\").optional(),\n groupId: z.string().describe(\"The Device Group ID to send the notification to\"),\n timeSensitive: z.boolean().describe(\"Delivers immediately even if device is in do-not-disturb mode (iOS only). Default: false\").optional(),\n}).describe(\"Request parameters to send push notification to a device group.\");\nconst PushByTechulusSendNotificationToGroup_DeviceResponseSchema: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Individual device response message\"),\n success: z.boolean().describe(\"Indicates if notification was sent to individual device\"),\n}).describe(\"Individual device response for group notification.\");\nexport const PushByTechulusSendNotificationToGroupOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message\"),\n success: z.boolean().describe(\"Indicates if the request was successful\"),\n responses: z.array(PushByTechulusSendNotificationToGroup_DeviceResponseSchema).describe(\"Array of individual device responses\").nullable().optional(),\n}).describe(\"Response schema for sending notification to device group.\");\n\nexport const pushByTechulusSendNotificationToGroup = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP\", {\n slug: \"push_by_techulus-send-notification-to-group\",\n name: \"Send Notification to Device Group\",\n description: \"Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.\",\n input: PushByTechulusSendNotificationToGroupInput,\n output: PushByTechulusSendNotificationToGroupOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA2D,EAAE,OAAO;CAC/E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAO,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC3U,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC9E,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;AAC3I,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,6DAA2E,EAAE,OAAO;CACxF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CACjE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,yDAAyD;AACzF,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAOhE,MAAa,wCAAwC,OAAO,+CAA+C;CACzG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXuE,EAAE,OAAO;EAChF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB;EAC/C,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;EACvE,WAAW,EAAE,MAAM,0DAA0D,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtJ,CAAC,CAAC,CAAC,SAAS,2DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-to-group.mjs","names":[],"sources":["../../src/actions/send-notification-to-group.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationToGroupInput = z.object({\n body: z.string().describe(\"Notification body message\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options: default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n channel: z.string().describe(\"Notification channel (alphanumeric and hyphens only). Default: 'feed'\").optional(),\n groupId: z.string().describe(\"The Device Group ID to send the notification to\"),\n timeSensitive: z.boolean().describe(\"Delivers immediately even if device is in do-not-disturb mode (iOS only). Default: false\").optional(),\n}).describe(\"Request parameters to send push notification to a device group.\");\nconst PushByTechulusSendNotificationToGroup_DeviceResponseSchema = z.object({\n message: z.string().describe(\"Individual device response message\").nullable(),\n success: z.boolean().describe(\"Indicates if notification was sent to individual device\").nullable(),\n}).describe(\"Individual device response for group notification.\");\nexport const PushByTechulusSendNotificationToGroupOutput = z.object({\n message: z.string().describe(\"Response message\").nullable(),\n success: z.boolean().describe(\"Indicates if the request was successful\").nullable(),\n responses: z.array(PushByTechulusSendNotificationToGroup_DeviceResponseSchema).describe(\"Array of individual device responses\").nullable().optional(),\n}).describe(\"Response schema for sending notification to device group.\");\n\nexport const pushByTechulusSendNotificationToGroup = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP\", {\n slug: \"push_by_techulus-send-notification-to-group\",\n name: \"Send Notification to Device Group\",\n description: \"Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.\",\n input: PushByTechulusSendNotificationToGroupInput,\n output: PushByTechulusSendNotificationToGroupOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO;CACjE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAO,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,sJAAsJ,CAAC,CAAC,SAAS;CAC3U,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,uEAAuE,CAAC,CAAC,SAAS;CAC/G,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC9E,eAAe,EAAE,QAAQ,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;AAC3I,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,6DAA6D,EAAE,OAAO;CAC1E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC5E,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;AACpG,CAAC,CAAC,CAAC,SAAS,oDAAoD;AAOhE,MAAa,wCAAwC,OAAO,+CAA+C;CACzG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXyD,EAAE,OAAO;EAClE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;EAC1D,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;EAClF,WAAW,EAAE,MAAM,0DAA0D,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtJ,CAAC,CAAC,CAAC,SAAS,2DAOF;AACV,CAAC"}
@@ -28,12 +28,12 @@ const PushByTechulusSendNotificationWebhookPostInput = zod.z.object({
28
28
  time_sensitive: zod.z.boolean().describe("Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode (iOS only) (default: false)").optional()
29
29
  }).describe("Request model for sending push notification via webhook POST.");
30
30
  const PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema = zod.z.object({
31
- message: zod.z.string().describe("Individual delivery message"),
32
- success: zod.z.boolean().describe("Individual delivery success status")
31
+ message: zod.z.string().describe("Individual delivery message").nullable(),
32
+ success: zod.z.boolean().describe("Individual delivery success status").nullable()
33
33
  }).describe("Individual notification delivery result.");
34
34
  const PushByTechulusSendNotificationWebhookPostOutput = zod.z.object({
35
35
  message: zod.z.string().describe("Response message").nullable().optional(),
36
- success: zod.z.boolean().describe("Operation success status"),
36
+ success: zod.z.boolean().describe("Operation success status").nullable(),
37
37
  responses: zod.z.array(PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema).describe("Array of individual notification delivery results").nullable().optional()
38
38
  }).describe("Response model for sending push notification via webhook POST.");
39
39
  const pushByTechulusSendNotificationWebhookPost = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST", {
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-webhook-post.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-webhook-post.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationWebhookPostInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body content\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n api_key: z.string().describe(\"Account / Team API Key for authentication\"),\n channel: z.string().describe(\"Notification channel, alphanumerical string and hyphens only (default: 'feed')\").optional(),\n time_sensitive: z.boolean().describe(\"Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode (iOS only) (default: false)\").optional(),\n}).describe(\"Request model for sending push notification via webhook POST.\");\nconst PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Individual delivery message\"),\n success: z.boolean().describe(\"Individual delivery success status\"),\n}).describe(\"Individual notification delivery result.\");\nexport const PushByTechulusSendNotificationWebhookPostOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message\").nullable().optional(),\n success: z.boolean().describe(\"Operation success status\"),\n responses: z.array(PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema).describe(\"Array of individual notification delivery results\").nullable().optional(),\n}).describe(\"Response model for sending push notification via webhook POST.\");\n\nexport const pushByTechulusSendNotificationWebhookPost = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST\", {\n slug: \"push_by_techulus-send-notification-webhook-post\",\n name: \"Send Notification via Webhook POST\",\n description: \"Tool to send push notifications to all devices associated with a specific API key via POST request. Use when you need to deliver notifications through webhook integrations or team-based distribution.\",\n input: PushByTechulusSendNotificationWebhookPostInput,\n output: PushByTechulusSendNotificationWebhookPostOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAA+DA,IAAAA,EAAE,OAAO;CACnF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;CAC9U,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CACxE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CACxH,gBAAgBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sIAAsI,CAAC,CAAC,SAAS;AACxL,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,6EAA2FA,IAAAA,EAAE,OAAO;CACxG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC1D,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,oCAAoC;AACpE,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,kDAAgEA,IAAAA,EAAE,OAAO;CACpF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0BAA0B;CACxD,WAAWA,IAAAA,EAAE,MAAM,0EAA0E,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnL,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAE5E,MAAa,4CAA4CC,eAAAA,OAAO,mDAAmD;CACjH,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-webhook-post.cjs","names":["z","action"],"sources":["../../src/actions/send-notification-webhook-post.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationWebhookPostInput = z.object({\n body: z.string().describe(\"Notification body content\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n api_key: z.string().describe(\"Account / Team API Key for authentication\"),\n channel: z.string().describe(\"Notification channel, alphanumerical string and hyphens only (default: 'feed')\").optional(),\n time_sensitive: z.boolean().describe(\"Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode (iOS only) (default: false)\").optional(),\n}).describe(\"Request model for sending push notification via webhook POST.\");\nconst PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema = z.object({\n message: z.string().describe(\"Individual delivery message\").nullable(),\n success: z.boolean().describe(\"Individual delivery success status\").nullable(),\n}).describe(\"Individual notification delivery result.\");\nexport const PushByTechulusSendNotificationWebhookPostOutput = z.object({\n message: z.string().describe(\"Response message\").nullable().optional(),\n success: z.boolean().describe(\"Operation success status\").nullable(),\n responses: z.array(PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema).describe(\"Array of individual notification delivery results\").nullable().optional(),\n}).describe(\"Response model for sending push notification via webhook POST.\");\n\nexport const pushByTechulusSendNotificationWebhookPost = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST\", {\n slug: \"push_by_techulus-send-notification-webhook-post\",\n name: \"Send Notification via Webhook POST\",\n description: \"Tool to send push notifications to all devices associated with a specific API key via POST request. Use when you need to deliver notifications through webhook integrations or team-based distribution.\",\n input: PushByTechulusSendNotificationWebhookPostInput,\n output: PushByTechulusSendNotificationWebhookPostOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAAiDA,IAAAA,EAAE,OAAO;CACrE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;CAC9U,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CACxE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CACxH,gBAAgBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sIAAsI,CAAC,CAAC,SAAS;AACxL,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,6EAA6EA,IAAAA,EAAE,OAAO;CAC1F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACrE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,kDAAkDA,IAAAA,EAAE,OAAO;CACtE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrE,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACnE,WAAWA,IAAAA,EAAE,MAAM,0EAA0E,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnL,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAE5E,MAAa,4CAA4CC,eAAAA,OAAO,mDAAmD;CACjH,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,50 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-webhook-post.d.ts
4
- declare const PushByTechulusSendNotificationWebhookPostInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationWebhookPostOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationWebhookPost: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationWebhookPostInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodEnum<{
9
+ default: "default";
10
+ arcade: "arcade";
11
+ correct: "correct";
12
+ fail: "fail";
13
+ harp: "harp";
14
+ reveal: "reveal";
15
+ bubble: "bubble";
16
+ doorbell: "doorbell";
17
+ flute: "flute";
18
+ money: "money";
19
+ scifi: "scifi";
20
+ clear: "clear";
21
+ elevator: "elevator";
22
+ guitar: "guitar";
23
+ pop: "pop";
24
+ }>>;
25
+ title: z.ZodString;
26
+ api_key: z.ZodString;
27
+ channel: z.ZodOptional<z.ZodString>;
28
+ time_sensitive: z.ZodOptional<z.ZodBoolean>;
29
+ }, z.core.$strip>;
30
+ declare const PushByTechulusSendNotificationWebhookPostOutput: z.ZodObject<{
31
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
+ success: z.ZodNullable<z.ZodBoolean>;
33
+ responses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
34
+ message: z.ZodNullable<z.ZodString>;
35
+ success: z.ZodNullable<z.ZodBoolean>;
36
+ }, z.core.$strip>>>>;
37
+ }, z.core.$strip>;
38
+ declare const pushByTechulusSendNotificationWebhookPost: import("@keystrokehq/action").WorkflowActionDefinition<{
39
+ body: string;
40
+ title: string;
41
+ api_key: string;
42
+ link?: string | undefined;
43
+ image?: string | undefined;
44
+ sound?: "default" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | "pop" | undefined;
45
+ channel?: string | undefined;
46
+ time_sensitive?: boolean | undefined;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
48
  //#endregion
8
49
  export { pushByTechulusSendNotificationWebhookPost };
9
50
  //# sourceMappingURL=send-notification-webhook-post.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-webhook-post.d.cts","names":[],"sources":["../../src/actions/send-notification-webhook-post.ts"],"mappings":";;;cAIa,8CAAA,EAAgD,CAAA,CAAE,UASa;AAAA,cAK/D,+CAAA,EAAiD,CAAA,CAAE,UAIa;AAAA,cAEhE,yCAAA,gCAAyC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-webhook-post.d.cts","names":[],"sources":["../../src/actions/send-notification-webhook-post.ts"],"mappings":";;;cAIa,8CAAA,EAA8C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;cAc9C,+CAAA,EAA+C,CAAA,CAAA,SAAA;;;;;;;;cAM/C,yCAAA,gCAAyC,wBAAA"}
@@ -1,9 +1,50 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/send-notification-webhook-post.d.ts
4
- declare const PushByTechulusSendNotificationWebhookPostInput: z.ZodTypeAny;
5
- declare const PushByTechulusSendNotificationWebhookPostOutput: z.ZodTypeAny;
6
- declare const pushByTechulusSendNotificationWebhookPost: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const PushByTechulusSendNotificationWebhookPostInput: z.ZodObject<{
5
+ body: z.ZodString;
6
+ link: z.ZodOptional<z.ZodString>;
7
+ image: z.ZodOptional<z.ZodString>;
8
+ sound: z.ZodOptional<z.ZodEnum<{
9
+ default: "default";
10
+ arcade: "arcade";
11
+ correct: "correct";
12
+ fail: "fail";
13
+ harp: "harp";
14
+ reveal: "reveal";
15
+ bubble: "bubble";
16
+ doorbell: "doorbell";
17
+ flute: "flute";
18
+ money: "money";
19
+ scifi: "scifi";
20
+ clear: "clear";
21
+ elevator: "elevator";
22
+ guitar: "guitar";
23
+ pop: "pop";
24
+ }>>;
25
+ title: z.ZodString;
26
+ api_key: z.ZodString;
27
+ channel: z.ZodOptional<z.ZodString>;
28
+ time_sensitive: z.ZodOptional<z.ZodBoolean>;
29
+ }, z.core.$strip>;
30
+ declare const PushByTechulusSendNotificationWebhookPostOutput: z.ZodObject<{
31
+ message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
+ success: z.ZodNullable<z.ZodBoolean>;
33
+ responses: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
34
+ message: z.ZodNullable<z.ZodString>;
35
+ success: z.ZodNullable<z.ZodBoolean>;
36
+ }, z.core.$strip>>>>;
37
+ }, z.core.$strip>;
38
+ declare const pushByTechulusSendNotificationWebhookPost: import("@keystrokehq/action").WorkflowActionDefinition<{
39
+ body: string;
40
+ title: string;
41
+ api_key: string;
42
+ link?: string | undefined;
43
+ image?: string | undefined;
44
+ sound?: "default" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | "pop" | undefined;
45
+ channel?: string | undefined;
46
+ time_sensitive?: boolean | undefined;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
48
  //#endregion
8
49
  export { pushByTechulusSendNotificationWebhookPost };
9
50
  //# sourceMappingURL=send-notification-webhook-post.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-webhook-post.d.mts","names":[],"sources":["../../src/actions/send-notification-webhook-post.ts"],"mappings":";;;cAIa,8CAAA,EAAgD,CAAA,CAAE,UASa;AAAA,cAK/D,+CAAA,EAAiD,CAAA,CAAE,UAIa;AAAA,cAEhE,yCAAA,gCAAyC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"send-notification-webhook-post.d.mts","names":[],"sources":["../../src/actions/send-notification-webhook-post.ts"],"mappings":";;;cAIa,8CAAA,EAA8C,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;cAc9C,+CAAA,EAA+C,CAAA,CAAA,SAAA;;;;;;;;cAM/C,yCAAA,gCAAyC,wBAAA"}
@@ -28,8 +28,8 @@ const PushByTechulusSendNotificationWebhookPostInput = z.object({
28
28
  time_sensitive: z.boolean().describe("Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode (iOS only) (default: false)").optional()
29
29
  }).describe("Request model for sending push notification via webhook POST.");
30
30
  const PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema = z.object({
31
- message: z.string().describe("Individual delivery message"),
32
- success: z.boolean().describe("Individual delivery success status")
31
+ message: z.string().describe("Individual delivery message").nullable(),
32
+ success: z.boolean().describe("Individual delivery success status").nullable()
33
33
  }).describe("Individual notification delivery result.");
34
34
  const pushByTechulusSendNotificationWebhookPost = action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST", {
35
35
  slug: "push_by_techulus-send-notification-webhook-post",
@@ -38,7 +38,7 @@ const pushByTechulusSendNotificationWebhookPost = action("PUSH_BY_TECHULUS_SEND_
38
38
  input: PushByTechulusSendNotificationWebhookPostInput,
39
39
  output: z.object({
40
40
  message: z.string().describe("Response message").nullable().optional(),
41
- success: z.boolean().describe("Operation success status"),
41
+ success: z.boolean().describe("Operation success status").nullable(),
42
42
  responses: z.array(PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema).describe("Array of individual notification delivery results").nullable().optional()
43
43
  }).describe("Response model for sending push notification via webhook POST.")
44
44
  });
@@ -1 +1 @@
1
- {"version":3,"file":"send-notification-webhook-post.mjs","names":[],"sources":["../../src/actions/send-notification-webhook-post.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationWebhookPostInput: z.ZodTypeAny = z.object({\n body: z.string().describe(\"Notification body content\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n api_key: z.string().describe(\"Account / Team API Key for authentication\"),\n channel: z.string().describe(\"Notification channel, alphanumerical string and hyphens only (default: 'feed')\").optional(),\n time_sensitive: z.boolean().describe(\"Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode (iOS only) (default: false)\").optional(),\n}).describe(\"Request model for sending push notification via webhook POST.\");\nconst PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Individual delivery message\"),\n success: z.boolean().describe(\"Individual delivery success status\"),\n}).describe(\"Individual notification delivery result.\");\nexport const PushByTechulusSendNotificationWebhookPostOutput: z.ZodTypeAny = z.object({\n message: z.string().describe(\"Response message\").nullable().optional(),\n success: z.boolean().describe(\"Operation success status\"),\n responses: z.array(PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema).describe(\"Array of individual notification delivery results\").nullable().optional(),\n}).describe(\"Response model for sending push notification via webhook POST.\");\n\nexport const pushByTechulusSendNotificationWebhookPost = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST\", {\n slug: \"push_by_techulus-send-notification-webhook-post\",\n name: \"Send Notification via Webhook POST\",\n description: \"Tool to send push notifications to all devices associated with a specific API key via POST request. Use when you need to deliver notifications through webhook integrations or team-based distribution.\",\n input: PushByTechulusSendNotificationWebhookPostInput,\n output: PushByTechulusSendNotificationWebhookPostOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAA+D,EAAE,OAAO;CACnF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAO,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;CAC9U,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CACxE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CACxH,gBAAgB,EAAE,QAAQ,CAAC,CAAC,SAAS,sIAAsI,CAAC,CAAC,SAAS;AACxL,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,6EAA2F,EAAE,OAAO;CACxG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC1D,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,oCAAoC;AACpE,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAOtD,MAAa,4CAA4C,OAAO,mDAAmD;CACjH,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX2E,EAAE,OAAO;EACpF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0BAA0B;EACxD,WAAW,EAAE,MAAM,0EAA0E,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnL,CAAC,CAAC,CAAC,SAAS,gEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"send-notification-webhook-post.mjs","names":[],"sources":["../../src/actions/send-notification-webhook-post.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PushByTechulusSendNotificationWebhookPostInput = z.object({\n body: z.string().describe(\"Notification body content\"),\n link: z.string().describe(\"Notification link (URL)\").optional(),\n image: z.string().describe(\"Notification image (URL)\").optional(),\n sound: z.enum([\"default\", \"arcade\", \"correct\", \"fail\", \"harp\", \"reveal\", \"bubble\", \"doorbell\", \"flute\", \"money\", \"scifi\", \"clear\", \"elevator\", \"guitar\", \"pop\"]).describe(\"Notification sound. Valid options are default, arcade, correct, fail, harp, reveal, bubble, doorbell, flute, money, scifi, clear, elevator, guitar, pop\").optional(),\n title: z.string().describe(\"Notification title\"),\n api_key: z.string().describe(\"Account / Team API Key for authentication\"),\n channel: z.string().describe(\"Notification channel, alphanumerical string and hyphens only (default: 'feed')\").optional(),\n time_sensitive: z.boolean().describe(\"Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode (iOS only) (default: false)\").optional(),\n}).describe(\"Request model for sending push notification via webhook POST.\");\nconst PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema = z.object({\n message: z.string().describe(\"Individual delivery message\").nullable(),\n success: z.boolean().describe(\"Individual delivery success status\").nullable(),\n}).describe(\"Individual notification delivery result.\");\nexport const PushByTechulusSendNotificationWebhookPostOutput = z.object({\n message: z.string().describe(\"Response message\").nullable().optional(),\n success: z.boolean().describe(\"Operation success status\").nullable(),\n responses: z.array(PushByTechulusSendNotificationWebhookPost_NotificationDeliveryResultSchema).describe(\"Array of individual notification delivery results\").nullable().optional(),\n}).describe(\"Response model for sending push notification via webhook POST.\");\n\nexport const pushByTechulusSendNotificationWebhookPost = action(\"PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST\", {\n slug: \"push_by_techulus-send-notification-webhook-post\",\n name: \"Send Notification via Webhook POST\",\n description: \"Tool to send push notifications to all devices associated with a specific API key via POST request. Use when you need to deliver notifications through webhook integrations or team-based distribution.\",\n input: PushByTechulusSendNotificationWebhookPostInput,\n output: PushByTechulusSendNotificationWebhookPostOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAAiD,EAAE,OAAO;CACrE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACrD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CAChE,OAAO,EAAE,KAAK;EAAC;EAAW;EAAU;EAAW;EAAQ;EAAQ;EAAU;EAAU;EAAY;EAAS;EAAS;EAAS;EAAS;EAAY;EAAU;CAAK,CAAC,CAAC,CAAC,SAAS,yJAAyJ,CAAC,CAAC,SAAS;CAC9U,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB;CAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CACxE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CACxH,gBAAgB,EAAE,QAAQ,CAAC,CAAC,SAAS,sIAAsI,CAAC,CAAC,SAAS;AACxL,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,6EAA6E,EAAE,OAAO;CAC1F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACrE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;AAC/E,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAOtD,MAAa,4CAA4C,OAAO,mDAAmD;CACjH,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX6D,EAAE,OAAO;EACtE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrE,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EACnE,WAAW,EAAE,MAAM,0EAA0E,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnL,CAAC,CAAC,CAAC,SAAS,gEAOF;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -7,7 +7,13 @@ const pushByTechulusCatalog = {
7
7
  "category": "Notifications",
8
8
  "logo": "https://logos.composio.dev/api/push_by_techulus",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "API Key",
13
+ "secret": true,
14
+ "description": "Your Push by Techulus API key. Navigate to your Push by Techulus account, sign in, and go to Integrations > API Key to retrieve it."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  exports.pushByTechulusCatalog = pushByTechulusCatalog;
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const pushByTechulusCatalog = {\n \"slug\": \"push_by_techulus\",\n \"name\": \"Push by Techulus\",\n \"description\": \"Push by Techulus offers a cross-platform solution for sending push notifications via code and no-code to deliver transactional information in real-time.\",\n \"category\": \"Notifications\",\n \"logo\": \"https://logos.composio.dev/api/push_by_techulus\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,wBAAwB;CACnC,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 pushByTechulusCatalog = {\n \"slug\": \"push_by_techulus\",\n \"name\": \"Push by Techulus\",\n \"description\": \"Push by Techulus offers a cross-platform solution for sending push notifications via code and no-code to deliver transactional information in real-time.\",\n \"category\": \"Notifications\",\n \"logo\": \"https://logos.composio.dev/api/push_by_techulus\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Push by Techulus API key. Navigate to your Push by Techulus account, sign in, and go to Integrations > API Key to retrieve it.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,wBAAwB;CACnC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -8,6 +8,14 @@ declare const pushByTechulusCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/push_by_techulus";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Push by Techulus API key. Navigate to your Push by Techulus account, sign in, and go to Integrations > API Key to retrieve it.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { pushByTechulusCatalog };
@@ -8,6 +8,14 @@ declare const pushByTechulusCatalog: {
8
8
  readonly logo: "https://logos.composio.dev/api/push_by_techulus";
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
+ readonly credentialFields: {
12
+ readonly api_key: {
13
+ readonly label: "API Key";
14
+ readonly secret: true;
15
+ readonly description: "Your Push by Techulus API key. Navigate to your Push by Techulus account, sign in, and go to Integrations > API Key to retrieve it.";
16
+ };
17
+ };
18
+ readonly credentialScheme: "API_KEY";
11
19
  };
12
20
  //#endregion
13
21
  export { pushByTechulusCatalog };
package/dist/catalog.mjs CHANGED
@@ -7,7 +7,13 @@ const pushByTechulusCatalog = {
7
7
  "category": "Notifications",
8
8
  "logo": "https://logos.composio.dev/api/push_by_techulus",
9
9
  "authKind": "keystroke",
10
- "oauthScopes": []
10
+ "oauthScopes": [],
11
+ "credentialFields": { "api_key": {
12
+ "label": "API Key",
13
+ "secret": true,
14
+ "description": "Your Push by Techulus API key. Navigate to your Push by Techulus account, sign in, and go to Integrations > API Key to retrieve it."
15
+ } },
16
+ "credentialScheme": "API_KEY"
11
17
  };
12
18
  //#endregion
13
19
  export { pushByTechulusCatalog };
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const pushByTechulusCatalog = {\n \"slug\": \"push_by_techulus\",\n \"name\": \"Push by Techulus\",\n \"description\": \"Push by Techulus offers a cross-platform solution for sending push notifications via code and no-code to deliver transactional information in real-time.\",\n \"category\": \"Notifications\",\n \"logo\": \"https://logos.composio.dev/api/push_by_techulus\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,wBAAwB;CACnC,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 pushByTechulusCatalog = {\n \"slug\": \"push_by_techulus\",\n \"name\": \"Push by Techulus\",\n \"description\": \"Push by Techulus offers a cross-platform solution for sending push notifications via code and no-code to deliver transactional information in real-time.\",\n \"category\": \"Notifications\",\n \"logo\": \"https://logos.composio.dev/api/push_by_techulus\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Push by Techulus API key. Navigate to your Push by Techulus account, sign in, and go to Integrations > API Key to retrieve it.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,wBAAwB;CACnC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/push_by_techulus",
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": {