@keystrokehq/push_by_techulus 0.1.0 → 0.1.3

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 +2 -2
  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 +2 -2
  10. package/dist/actions/delete-team-member-or-invite.mjs.map +1 -1
  11. package/dist/actions/invite-user-to-team.cjs +2 -2
  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 +2 -2
  18. package/dist/actions/invite-user-to-team.mjs.map +1 -1
  19. package/dist/actions/send-notification-async.cjs +3 -3
  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 +3 -3
  26. package/dist/actions/send-notification-async.mjs.map +1 -1
  27. package/dist/actions/send-notification-sync.cjs +5 -5
  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 +5 -5
  34. package/dist/actions/send-notification-sync.mjs.map +1 -1
  35. package/dist/actions/send-notification-to-group.cjs +6 -6
  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 +6 -6
  42. package/dist/actions/send-notification-to-group.mjs.map +1 -1
  43. package/dist/actions/send-notification-webhook-post.cjs +5 -5
  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 +5 -5
  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,8 +8,8 @@ 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")
12
- }).describe("Response schema for deleting team member or invite.");
11
+ success: zod.z.boolean().describe("Whether the operation was successful").nullable()
12
+ }).passthrough().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",
15
15
  name: "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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,qDAAqD;AAE/E,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.$loose>;
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.$loose>;
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,8 +11,8 @@ 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")
15
- }).describe("Response schema for deleting team member or invite.")
14
+ success: z.boolean().describe("Whether the operation was successful").nullable()
15
+ }).passthrough().describe("Response schema for deleting team member or invite.")
16
16
  });
17
17
  //#endregion
18
18
  export { pushByTechulusDeleteTeamMemberOrInvite };
@@ -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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,qDAOhB;AACV,CAAC"}
@@ -8,8 +8,8 @@ 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.")
12
- }).describe("Response model for team invitation.");
11
+ success: zod.z.boolean().describe("Whether the invitation was sent successfully.").nullable()
12
+ }).passthrough().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",
15
15
  name: "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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,qCAAqC;AAE/D,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.$loose>;
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.$loose>;
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,8 +11,8 @@ 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.")
15
- }).describe("Response model for team invitation.")
14
+ success: z.boolean().describe("Whether the invitation was sent successfully.").nullable()
15
+ }).passthrough().describe("Response model for team invitation.")
16
16
  });
17
17
  //#endregion
18
18
  export { pushByTechulusInviteUserToTeam };
@@ -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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,qCAOhB;AACV,CAAC"}
@@ -27,9 +27,9 @@ 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.")
32
- }).describe("Response model for async notification send operation.");
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
+ }).passthrough().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",
35
35
  name: "Send Push 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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,uDAAuD;AAEjF,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
+ pop: "pop";
11
+ arcade: "arcade";
12
+ correct: "correct";
13
+ fail: "fail";
14
+ harp: "harp";
15
+ reveal: "reveal";
16
+ bubble: "bubble";
17
+ doorbell: "doorbell";
18
+ flute: "flute";
19
+ money: "money";
20
+ scifi: "scifi";
21
+ clear: "clear";
22
+ elevator: "elevator";
23
+ guitar: "guitar";
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.$loose>;
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" | "pop" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | 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
+ pop: "pop";
11
+ arcade: "arcade";
12
+ correct: "correct";
13
+ fail: "fail";
14
+ harp: "harp";
15
+ reveal: "reveal";
16
+ bubble: "bubble";
17
+ doorbell: "doorbell";
18
+ flute: "flute";
19
+ money: "money";
20
+ scifi: "scifi";
21
+ clear: "clear";
22
+ elevator: "elevator";
23
+ guitar: "guitar";
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.$loose>;
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" | "pop" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | 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,9 +30,9 @@ 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.")
35
- }).describe("Response model for async notification send operation.")
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
+ }).passthrough().describe("Response model for async notification send operation.")
36
36
  });
37
37
  //#endregion
38
38
  export { pushByTechulusSendNotificationAsync };
@@ -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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,uDAOhB;AACV,CAAC"}
@@ -11,14 +11,14 @@ 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.")
16
- }).describe("Individual notification response details.");
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
+ }).passthrough().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
- }).describe("Response schema for synchronous notification sending.");
21
+ }).passthrough().describe("Response schema for synchronous notification sending.");
22
22
  const pushByTechulusSendNotificationSync = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_SYNC", {
23
23
  slug: "push_by_techulus-send-notification-sync",
24
24
  name: "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}).passthrough().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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,2CAA2C;AACrE,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,YAAY,CAAC,CAAC,SAAS,uDAAuD;AAEjF,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.$loose>>>>;
20
+ }, z.core.$loose>;
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.$loose>>>>;
20
+ }, z.core.$loose>;
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,9 +11,9 @@ 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.")
16
- }).describe("Individual notification response details.");
14
+ message: z.string().describe("Individual response message.").nullable(),
15
+ success: z.boolean().describe("Indicates if the individual notification was successful.").nullable()
16
+ }).passthrough().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",
19
19
  name: "Send Notification Sync",
@@ -21,9 +21,9 @@ 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
- }).describe("Response schema for synchronous notification sending.")
26
+ }).passthrough().describe("Response schema for synchronous notification sending.")
27
27
  });
28
28
  //#endregion
29
29
  export { pushByTechulusSendNotificationSync };
@@ -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}).passthrough().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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,2CAA2C;AAOrE,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,YAAY,CAAC,CAAC,SAAS,uDAOhB;AACV,CAAC"}