@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.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/delete-team-member-or-invite.cjs +2 -2
- package/dist/actions/delete-team-member-or-invite.cjs.map +1 -1
- package/dist/actions/delete-team-member-or-invite.d.cts +13 -3
- package/dist/actions/delete-team-member-or-invite.d.cts.map +1 -1
- package/dist/actions/delete-team-member-or-invite.d.mts +13 -3
- package/dist/actions/delete-team-member-or-invite.d.mts.map +1 -1
- package/dist/actions/delete-team-member-or-invite.mjs +2 -2
- package/dist/actions/delete-team-member-or-invite.mjs.map +1 -1
- package/dist/actions/invite-user-to-team.cjs +2 -2
- package/dist/actions/invite-user-to-team.cjs.map +1 -1
- package/dist/actions/invite-user-to-team.d.cts +13 -3
- package/dist/actions/invite-user-to-team.d.cts.map +1 -1
- package/dist/actions/invite-user-to-team.d.mts +13 -3
- package/dist/actions/invite-user-to-team.d.mts.map +1 -1
- package/dist/actions/invite-user-to-team.mjs +2 -2
- package/dist/actions/invite-user-to-team.mjs.map +1 -1
- package/dist/actions/send-notification-async.cjs +3 -3
- package/dist/actions/send-notification-async.cjs.map +1 -1
- package/dist/actions/send-notification-async.d.cts +38 -3
- package/dist/actions/send-notification-async.d.cts.map +1 -1
- package/dist/actions/send-notification-async.d.mts +38 -3
- package/dist/actions/send-notification-async.d.mts.map +1 -1
- package/dist/actions/send-notification-async.mjs +3 -3
- package/dist/actions/send-notification-async.mjs.map +1 -1
- package/dist/actions/send-notification-sync.cjs +5 -5
- package/dist/actions/send-notification-sync.cjs.map +1 -1
- package/dist/actions/send-notification-sync.d.cts +26 -3
- package/dist/actions/send-notification-sync.d.cts.map +1 -1
- package/dist/actions/send-notification-sync.d.mts +26 -3
- package/dist/actions/send-notification-sync.d.mts.map +1 -1
- package/dist/actions/send-notification-sync.mjs +5 -5
- package/dist/actions/send-notification-sync.mjs.map +1 -1
- package/dist/actions/send-notification-to-group.cjs +6 -6
- package/dist/actions/send-notification-to-group.cjs.map +1 -1
- package/dist/actions/send-notification-to-group.d.cts +44 -3
- package/dist/actions/send-notification-to-group.d.cts.map +1 -1
- package/dist/actions/send-notification-to-group.d.mts +44 -3
- package/dist/actions/send-notification-to-group.d.mts.map +1 -1
- package/dist/actions/send-notification-to-group.mjs +6 -6
- package/dist/actions/send-notification-to-group.mjs.map +1 -1
- package/dist/actions/send-notification-webhook-post.cjs +5 -5
- package/dist/actions/send-notification-webhook-post.cjs.map +1 -1
- package/dist/actions/send-notification-webhook-post.d.cts +44 -3
- package/dist/actions/send-notification-webhook-post.d.cts.map +1 -1
- package/dist/actions/send-notification-webhook-post.d.mts +44 -3
- package/dist/actions/send-notification-webhook-post.d.mts.map +1 -1
- package/dist/actions/send-notification-webhook-post.mjs +5 -5
- package/dist/actions/send-notification-webhook-post.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -28,14 +28,14 @@ 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")
|
|
33
|
-
}).describe("Individual device response for group notification.");
|
|
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
|
+
}).passthrough().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
|
-
}).describe("Response schema for sending notification to device group.");
|
|
38
|
+
}).passthrough().describe("Response schema for sending notification to device group.");
|
|
39
39
|
const pushByTechulusSendNotificationToGroup = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_TO_GROUP", {
|
|
40
40
|
slug: "push_by_techulus-send-notification-to-group",
|
|
41
41
|
name: "Send Notification to Device 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
|
|
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}).passthrough().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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,oDAAoD;AAC9E,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,YAAY,CAAC,CAAC,SAAS,2DAA2D;AAErF,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.
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
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
|
+
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.$loose>>>>;
|
|
37
|
+
}, z.core.$loose>;
|
|
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" | "pop" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | 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,
|
|
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.
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
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
|
+
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.$loose>>>>;
|
|
37
|
+
}, z.core.$loose>;
|
|
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" | "pop" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | 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,
|
|
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,19 +28,19 @@ 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")
|
|
33
|
-
}).describe("Individual device response for group notification.");
|
|
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
|
+
}).passthrough().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",
|
|
36
36
|
name: "Send Notification to Device Group",
|
|
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
|
-
}).describe("Response schema for sending notification to device group.")
|
|
43
|
+
}).passthrough().describe("Response schema for sending notification to device group.")
|
|
44
44
|
});
|
|
45
45
|
//#endregion
|
|
46
46
|
export { pushByTechulusSendNotificationToGroup };
|
|
@@ -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
|
|
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}).passthrough().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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,oDAAoD;AAO9E,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,YAAY,CAAC,CAAC,SAAS,2DAOhB;AACV,CAAC"}
|
|
@@ -28,14 +28,14 @@ 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")
|
|
33
|
-
}).describe("Individual notification delivery result.");
|
|
31
|
+
message: zod.z.string().describe("Individual delivery message").nullable(),
|
|
32
|
+
success: zod.z.boolean().describe("Individual delivery success status").nullable()
|
|
33
|
+
}).passthrough().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
|
-
}).describe("Response model for sending push notification via webhook POST.");
|
|
38
|
+
}).passthrough().describe("Response model for sending push notification via webhook POST.");
|
|
39
39
|
const pushByTechulusSendNotificationWebhookPost = require_action.action("PUSH_BY_TECHULUS_SEND_NOTIFICATION_WEBHOOK_POST", {
|
|
40
40
|
slug: "push_by_techulus-send-notification-webhook-post",
|
|
41
41
|
name: "Send Notification via 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
|
|
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}).passthrough().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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,0CAA0C;AACpE,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,YAAY,CAAC,CAAC,SAAS,gEAAgE;AAE1F,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.
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
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
|
+
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.$loose>>>>;
|
|
37
|
+
}, z.core.$loose>;
|
|
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" | "pop" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | 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,
|
|
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.
|
|
5
|
-
|
|
6
|
-
|
|
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
|
+
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
|
+
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.$loose>>>>;
|
|
37
|
+
}, z.core.$loose>;
|
|
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" | "pop" | "arcade" | "correct" | "fail" | "harp" | "reveal" | "bubble" | "doorbell" | "flute" | "money" | "scifi" | "clear" | "elevator" | "guitar" | 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,
|
|
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,9 +28,9 @@ 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")
|
|
33
|
-
}).describe("Individual notification delivery result.");
|
|
31
|
+
message: z.string().describe("Individual delivery message").nullable(),
|
|
32
|
+
success: z.boolean().describe("Individual delivery success status").nullable()
|
|
33
|
+
}).passthrough().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",
|
|
36
36
|
name: "Send Notification via Webhook POST",
|
|
@@ -38,9 +38,9 @@ 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
|
-
}).describe("Response model for sending push notification via webhook POST.")
|
|
43
|
+
}).passthrough().describe("Response model for sending push notification via webhook POST.")
|
|
44
44
|
});
|
|
45
45
|
//#endregion
|
|
46
46
|
export { pushByTechulusSendNotificationWebhookPost };
|
|
@@ -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
|
|
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}).passthrough().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}).passthrough().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,YAAY,CAAC,CAAC,SAAS,0CAA0C;AAOpE,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,YAAY,CAAC,CAAC,SAAS,gEAOhB;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;
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -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;
|
|
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"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -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.d.mts
CHANGED
|
@@ -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 };
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -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;
|
|
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.
|
|
3
|
+
"version": "0.1.3",
|
|
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": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|