@keystrokehq/pushbullet 0.1.3 → 0.1.4
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/actions/create-chat.d.cts +14 -2
- package/dist/actions/create-chat.d.mts +14 -2
- package/dist/actions/create-device.d.cts +13 -1
- package/dist/actions/create-device.d.mts +13 -1
- package/dist/actions/create-push.d.cts +13 -1
- package/dist/actions/create-push.d.mts +13 -1
- package/dist/actions/delete-all-pushes.d.cts +13 -1
- package/dist/actions/delete-all-pushes.d.cts.map +1 -1
- package/dist/actions/delete-all-pushes.d.mts +13 -1
- package/dist/actions/delete-all-pushes.d.mts.map +1 -1
- package/dist/actions/delete-chat.d.cts +13 -1
- package/dist/actions/delete-chat.d.mts +13 -1
- package/dist/actions/delete-device.d.cts +13 -1
- package/dist/actions/delete-device.d.mts +13 -1
- package/dist/actions/delete-push.d.cts +13 -1
- package/dist/actions/delete-push.d.mts +13 -1
- package/dist/actions/get-user.d.cts +13 -1
- package/dist/actions/get-user.d.cts.map +1 -1
- package/dist/actions/get-user.d.mts +13 -1
- package/dist/actions/get-user.d.mts.map +1 -1
- package/dist/actions/list-chats.d.cts +14 -2
- package/dist/actions/list-chats.d.mts +14 -2
- package/dist/actions/list-devices.d.cts +13 -1
- package/dist/actions/list-devices.d.cts.map +1 -1
- package/dist/actions/list-devices.d.mts +13 -1
- package/dist/actions/list-devices.d.mts.map +1 -1
- package/dist/actions/list-pushes.d.cts +13 -1
- package/dist/actions/list-pushes.d.mts +13 -1
- package/dist/actions/update-chat.d.cts +14 -2
- package/dist/actions/update-chat.d.mts +14 -2
- package/dist/actions/update-device.d.cts +13 -1
- package/dist/actions/update-device.d.mts +13 -1
- package/dist/actions/update-push.d.cts +13 -1
- package/dist/actions/update-push.d.mts +13 -1
- package/dist/actions/upload-request.d.cts +13 -1
- package/dist/actions/upload-request.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10,8 +10,8 @@ declare const PushbulletCreateChatOutput: z.ZodObject<{
|
|
|
10
10
|
iden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
type: z.ZodNullable<z.ZodEnum<{
|
|
13
|
-
user: "user";
|
|
14
13
|
email: "email";
|
|
14
|
+
user: "user";
|
|
15
15
|
}>>;
|
|
16
16
|
email: z.ZodNullable<z.ZodString>;
|
|
17
17
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24,7 +24,19 @@ declare const PushbulletCreateChatOutput: z.ZodObject<{
|
|
|
24
24
|
}, z.core.$loose>;
|
|
25
25
|
declare const pushbulletCreateChat: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
26
26
|
email: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { pushbulletCreateChat };
|
|
30
42
|
//# sourceMappingURL=create-chat.d.cts.map
|
|
@@ -10,8 +10,8 @@ declare const PushbulletCreateChatOutput: z.ZodObject<{
|
|
|
10
10
|
iden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
type: z.ZodNullable<z.ZodEnum<{
|
|
13
|
-
user: "user";
|
|
14
13
|
email: "email";
|
|
14
|
+
user: "user";
|
|
15
15
|
}>>;
|
|
16
16
|
email: z.ZodNullable<z.ZodString>;
|
|
17
17
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -24,7 +24,19 @@ declare const PushbulletCreateChatOutput: z.ZodObject<{
|
|
|
24
24
|
}, z.core.$loose>;
|
|
25
25
|
declare const pushbulletCreateChat: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
26
26
|
email: string;
|
|
27
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
27
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
28
|
+
connectionId: z.ZodString;
|
|
29
|
+
entityId: z.ZodString;
|
|
30
|
+
instanceId: z.ZodString;
|
|
31
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
32
|
+
accessToken: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
accessToken: z.ZodString;
|
|
39
|
+
}, z.core.$strip>>]>;
|
|
28
40
|
//#endregion
|
|
29
41
|
export { pushbulletCreateChat };
|
|
30
42
|
//# sourceMappingURL=create-chat.d.mts.map
|
|
@@ -47,7 +47,19 @@ declare const pushbulletCreateDevice: import("@keystrokehq/action").WorkflowActi
|
|
|
47
47
|
icon?: "desktop" | "browser" | "website" | "laptop" | "tablet" | "phone" | "watch" | "system" | "ios" | undefined;
|
|
48
48
|
has_sms?: boolean | undefined;
|
|
49
49
|
push_token?: string | undefined;
|
|
50
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
50
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
accessToken: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
57
|
+
connectionId: z.ZodString;
|
|
58
|
+
entityId: z.ZodString;
|
|
59
|
+
instanceId: z.ZodString;
|
|
60
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
61
|
+
accessToken: z.ZodString;
|
|
62
|
+
}, z.core.$strip>>]>;
|
|
51
63
|
//#endregion
|
|
52
64
|
export { pushbulletCreateDevice };
|
|
53
65
|
//# sourceMappingURL=create-device.d.cts.map
|
|
@@ -47,7 +47,19 @@ declare const pushbulletCreateDevice: import("@keystrokehq/action").WorkflowActi
|
|
|
47
47
|
icon?: "desktop" | "browser" | "website" | "laptop" | "tablet" | "phone" | "watch" | "system" | "ios" | undefined;
|
|
48
48
|
has_sms?: boolean | undefined;
|
|
49
49
|
push_token?: string | undefined;
|
|
50
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
50
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
accessToken: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
57
|
+
connectionId: z.ZodString;
|
|
58
|
+
entityId: z.ZodString;
|
|
59
|
+
instanceId: z.ZodString;
|
|
60
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
61
|
+
accessToken: z.ZodString;
|
|
62
|
+
}, z.core.$strip>>]>;
|
|
51
63
|
//#endregion
|
|
52
64
|
export { pushbulletCreateDevice };
|
|
53
65
|
//# sourceMappingURL=create-device.d.mts.map
|
|
@@ -57,7 +57,19 @@ declare const pushbulletCreatePush: import("@keystrokehq/action").WorkflowAction
|
|
|
57
57
|
client_iden?: string | undefined;
|
|
58
58
|
device_iden?: string | undefined;
|
|
59
59
|
source_device_iden?: string | undefined;
|
|
60
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
60
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
61
|
+
connectionId: z.ZodString;
|
|
62
|
+
entityId: z.ZodString;
|
|
63
|
+
instanceId: z.ZodString;
|
|
64
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
65
|
+
accessToken: z.ZodString;
|
|
66
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
67
|
+
connectionId: z.ZodString;
|
|
68
|
+
entityId: z.ZodString;
|
|
69
|
+
instanceId: z.ZodString;
|
|
70
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
71
|
+
accessToken: z.ZodString;
|
|
72
|
+
}, z.core.$strip>>]>;
|
|
61
73
|
//#endregion
|
|
62
74
|
export { pushbulletCreatePush };
|
|
63
75
|
//# sourceMappingURL=create-push.d.cts.map
|
|
@@ -57,7 +57,19 @@ declare const pushbulletCreatePush: import("@keystrokehq/action").WorkflowAction
|
|
|
57
57
|
client_iden?: string | undefined;
|
|
58
58
|
device_iden?: string | undefined;
|
|
59
59
|
source_device_iden?: string | undefined;
|
|
60
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
60
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
61
|
+
connectionId: z.ZodString;
|
|
62
|
+
entityId: z.ZodString;
|
|
63
|
+
instanceId: z.ZodString;
|
|
64
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
65
|
+
accessToken: z.ZodString;
|
|
66
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
67
|
+
connectionId: z.ZodString;
|
|
68
|
+
entityId: z.ZodString;
|
|
69
|
+
instanceId: z.ZodString;
|
|
70
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
71
|
+
accessToken: z.ZodString;
|
|
72
|
+
}, z.core.$strip>>]>;
|
|
61
73
|
//#endregion
|
|
62
74
|
export { pushbulletCreatePush };
|
|
63
75
|
//# sourceMappingURL=create-push.d.mts.map
|
|
@@ -3,7 +3,19 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/delete-all-pushes.d.ts
|
|
4
4
|
declare const PushbulletDeleteAllPushesInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PushbulletDeleteAllPushesOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
6
|
-
declare const pushbulletDeleteAllPushes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
6
|
+
declare const pushbulletDeleteAllPushes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
7
|
+
connectionId: z.ZodString;
|
|
8
|
+
entityId: z.ZodString;
|
|
9
|
+
instanceId: z.ZodString;
|
|
10
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11
|
+
accessToken: z.ZodString;
|
|
12
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
accessToken: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>;
|
|
7
19
|
//#endregion
|
|
8
20
|
export { pushbulletDeleteAllPushes };
|
|
9
21
|
//# sourceMappingURL=delete-all-pushes.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-all-pushes.d.cts","names":[],"sources":["../../src/actions/delete-all-pushes.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAE/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"delete-all-pushes.d.cts","names":[],"sources":["../../src/actions/delete-all-pushes.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAE/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
|
@@ -3,7 +3,19 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/delete-all-pushes.d.ts
|
|
4
4
|
declare const PushbulletDeleteAllPushesInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
5
|
declare const PushbulletDeleteAllPushesOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
6
|
-
declare const pushbulletDeleteAllPushes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
6
|
+
declare const pushbulletDeleteAllPushes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
7
|
+
connectionId: z.ZodString;
|
|
8
|
+
entityId: z.ZodString;
|
|
9
|
+
instanceId: z.ZodString;
|
|
10
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11
|
+
accessToken: z.ZodString;
|
|
12
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
accessToken: z.ZodString;
|
|
18
|
+
}, z.core.$strip>>]>;
|
|
7
19
|
//#endregion
|
|
8
20
|
export { pushbulletDeleteAllPushes };
|
|
9
21
|
//# sourceMappingURL=delete-all-pushes.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-all-pushes.d.mts","names":[],"sources":["../../src/actions/delete-all-pushes.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAE/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"delete-all-pushes.d.mts","names":[],"sources":["../../src/actions/delete-all-pushes.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC9B,+BAAA,EAA+B,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAE/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
|
@@ -7,7 +7,19 @@ declare const PushbulletDeleteChatInput: z.ZodObject<{
|
|
|
7
7
|
declare const PushbulletDeleteChatOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const pushbulletDeleteChat: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
iden: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { pushbulletDeleteChat };
|
|
13
25
|
//# sourceMappingURL=delete-chat.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const PushbulletDeleteChatInput: z.ZodObject<{
|
|
|
7
7
|
declare const PushbulletDeleteChatOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const pushbulletDeleteChat: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
iden: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { pushbulletDeleteChat };
|
|
13
25
|
//# sourceMappingURL=delete-chat.d.mts.map
|
|
@@ -7,7 +7,19 @@ declare const PushbulletDeleteDeviceInput: z.ZodObject<{
|
|
|
7
7
|
declare const PushbulletDeleteDeviceOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const pushbulletDeleteDevice: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
device_iden: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { pushbulletDeleteDevice };
|
|
13
25
|
//# sourceMappingURL=delete-device.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const PushbulletDeleteDeviceInput: z.ZodObject<{
|
|
|
7
7
|
declare const PushbulletDeleteDeviceOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const pushbulletDeleteDevice: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
device_iden: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { pushbulletDeleteDevice };
|
|
13
25
|
//# sourceMappingURL=delete-device.d.mts.map
|
|
@@ -7,7 +7,19 @@ declare const PushbulletDeletePushInput: z.ZodObject<{
|
|
|
7
7
|
declare const PushbulletDeletePushOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const pushbulletDeletePush: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
iden: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { pushbulletDeletePush };
|
|
13
25
|
//# sourceMappingURL=delete-push.d.cts.map
|
|
@@ -7,7 +7,19 @@ declare const PushbulletDeletePushInput: z.ZodObject<{
|
|
|
7
7
|
declare const PushbulletDeletePushOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const pushbulletDeletePush: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
iden: string;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
accessToken: z.ZodString;
|
|
16
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
17
|
+
connectionId: z.ZodString;
|
|
18
|
+
entityId: z.ZodString;
|
|
19
|
+
instanceId: z.ZodString;
|
|
20
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21
|
+
accessToken: z.ZodString;
|
|
22
|
+
}, z.core.$strip>>]>;
|
|
11
23
|
//#endregion
|
|
12
24
|
export { pushbulletDeletePush };
|
|
13
25
|
//# sourceMappingURL=delete-push.d.mts.map
|
|
@@ -14,7 +14,19 @@ declare const PushbulletGetUserOutput: z.ZodObject<{
|
|
|
14
14
|
max_upload_size: z.ZodNullable<z.ZodNumber>;
|
|
15
15
|
email_normalized: z.ZodNullable<z.ZodString>;
|
|
16
16
|
}, z.core.$loose>;
|
|
17
|
-
declare const pushbulletGetUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
declare const pushbulletGetUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
accessToken: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
accessToken: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
18
30
|
//#endregion
|
|
19
31
|
export { pushbulletGetUser };
|
|
20
32
|
//# sourceMappingURL=get-user.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user.d.cts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAavB,iBAAA,gCAAiB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-user.d.cts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAavB,iBAAA,gCAAiB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
|
@@ -14,7 +14,19 @@ declare const PushbulletGetUserOutput: z.ZodObject<{
|
|
|
14
14
|
max_upload_size: z.ZodNullable<z.ZodNumber>;
|
|
15
15
|
email_normalized: z.ZodNullable<z.ZodString>;
|
|
16
16
|
}, z.core.$loose>;
|
|
17
|
-
declare const pushbulletGetUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
declare const pushbulletGetUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
accessToken: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
accessToken: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
18
30
|
//#endregion
|
|
19
31
|
export { pushbulletGetUser };
|
|
20
32
|
//# sourceMappingURL=get-user.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-user.d.mts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAavB,iBAAA,gCAAiB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-user.d.mts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;cAIa,sBAAA,EAAsB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACtB,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;;;;;;;;;;cAavB,iBAAA,gCAAiB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
|
@@ -12,8 +12,8 @@ declare const PushbulletListChatsOutput: z.ZodObject<{
|
|
|
12
12
|
iden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
13
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
15
|
-
user: "user";
|
|
16
15
|
email: "email";
|
|
16
|
+
user: "user";
|
|
17
17
|
}>>>;
|
|
18
18
|
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29,7 +29,19 @@ declare const PushbulletListChatsOutput: z.ZodObject<{
|
|
|
29
29
|
declare const pushbulletListChats: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
limit?: number | undefined;
|
|
31
31
|
cursor?: string | undefined;
|
|
32
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
32
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
accessToken: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>]>;
|
|
33
45
|
//#endregion
|
|
34
46
|
export { pushbulletListChats };
|
|
35
47
|
//# sourceMappingURL=list-chats.d.cts.map
|
|
@@ -12,8 +12,8 @@ declare const PushbulletListChatsOutput: z.ZodObject<{
|
|
|
12
12
|
iden: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
13
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
15
|
-
user: "user";
|
|
16
15
|
email: "email";
|
|
16
|
+
user: "user";
|
|
17
17
|
}>>>;
|
|
18
18
|
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29,7 +29,19 @@ declare const PushbulletListChatsOutput: z.ZodObject<{
|
|
|
29
29
|
declare const pushbulletListChats: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
limit?: number | undefined;
|
|
31
31
|
cursor?: string | undefined;
|
|
32
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
32
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
accessToken: z.ZodString;
|
|
44
|
+
}, z.core.$strip>>]>;
|
|
33
45
|
//#endregion
|
|
34
46
|
export { pushbulletListChats };
|
|
35
47
|
//# sourceMappingURL=list-chats.d.mts.map
|
|
@@ -23,7 +23,19 @@ declare const PushbulletListDevicesOutput: z.ZodObject<{
|
|
|
23
23
|
generated_nickname: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
24
24
|
}, z.core.$loose>>;
|
|
25
25
|
}, z.core.$loose>;
|
|
26
|
-
declare const pushbulletListDevices: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
declare const pushbulletListDevices: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
accessToken: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { pushbulletListDevices };
|
|
29
41
|
//# sourceMappingURL=list-devices.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-devices.d.cts","names":[],"sources":["../../src/actions/list-devices.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-devices.d.cts","names":[],"sources":["../../src/actions/list-devices.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
|
@@ -23,7 +23,19 @@ declare const PushbulletListDevicesOutput: z.ZodObject<{
|
|
|
23
23
|
generated_nickname: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
24
24
|
}, z.core.$loose>>;
|
|
25
25
|
}, z.core.$loose>;
|
|
26
|
-
declare const pushbulletListDevices: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
declare const pushbulletListDevices: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
accessToken: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
accessToken: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { pushbulletListDevices };
|
|
29
41
|
//# sourceMappingURL=list-devices.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-devices.d.mts","names":[],"sources":["../../src/actions/list-devices.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"list-devices.d.mts","names":[],"sources":["../../src/actions/list-devices.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAoB1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
|
@@ -37,7 +37,19 @@ declare const pushbulletListPushes: import("@keystrokehq/action").WorkflowAction
|
|
|
37
37
|
active?: boolean | undefined;
|
|
38
38
|
cursor?: string | undefined;
|
|
39
39
|
modified_after?: number | undefined;
|
|
40
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
40
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
accessToken: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
accessToken: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>]>;
|
|
41
53
|
//#endregion
|
|
42
54
|
export { pushbulletListPushes };
|
|
43
55
|
//# sourceMappingURL=list-pushes.d.cts.map
|
|
@@ -37,7 +37,19 @@ declare const pushbulletListPushes: import("@keystrokehq/action").WorkflowAction
|
|
|
37
37
|
active?: boolean | undefined;
|
|
38
38
|
cursor?: string | undefined;
|
|
39
39
|
modified_after?: number | undefined;
|
|
40
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
40
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
accessToken: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
accessToken: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>]>;
|
|
41
53
|
//#endregion
|
|
42
54
|
export { pushbulletListPushes };
|
|
43
55
|
//# sourceMappingURL=list-pushes.d.mts.map
|
|
@@ -11,8 +11,8 @@ declare const PushbulletUpdateChatOutput: z.ZodObject<{
|
|
|
11
11
|
iden: z.ZodNullable<z.ZodString>;
|
|
12
12
|
name: z.ZodNullable<z.ZodString>;
|
|
13
13
|
type: z.ZodNullable<z.ZodEnum<{
|
|
14
|
-
user: "user";
|
|
15
14
|
email: "email";
|
|
15
|
+
user: "user";
|
|
16
16
|
}>>;
|
|
17
17
|
email: z.ZodNullable<z.ZodString>;
|
|
18
18
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -26,7 +26,19 @@ declare const PushbulletUpdateChatOutput: z.ZodObject<{
|
|
|
26
26
|
declare const pushbulletUpdateChat: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
27
|
iden: string;
|
|
28
28
|
muted: boolean;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { pushbulletUpdateChat };
|
|
32
44
|
//# sourceMappingURL=update-chat.d.cts.map
|
|
@@ -11,8 +11,8 @@ declare const PushbulletUpdateChatOutput: z.ZodObject<{
|
|
|
11
11
|
iden: z.ZodNullable<z.ZodString>;
|
|
12
12
|
name: z.ZodNullable<z.ZodString>;
|
|
13
13
|
type: z.ZodNullable<z.ZodEnum<{
|
|
14
|
-
user: "user";
|
|
15
14
|
email: "email";
|
|
15
|
+
user: "user";
|
|
16
16
|
}>>;
|
|
17
17
|
email: z.ZodNullable<z.ZodString>;
|
|
18
18
|
image_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -26,7 +26,19 @@ declare const PushbulletUpdateChatOutput: z.ZodObject<{
|
|
|
26
26
|
declare const pushbulletUpdateChat: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
27
|
iden: string;
|
|
28
28
|
muted: boolean;
|
|
29
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
29
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
30
|
+
connectionId: z.ZodString;
|
|
31
|
+
entityId: z.ZodString;
|
|
32
|
+
instanceId: z.ZodString;
|
|
33
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
34
|
+
accessToken: z.ZodString;
|
|
35
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
accessToken: z.ZodString;
|
|
41
|
+
}, z.core.$strip>>]>;
|
|
30
42
|
//#endregion
|
|
31
43
|
export { pushbulletUpdateChat };
|
|
32
44
|
//# sourceMappingURL=update-chat.d.mts.map
|
|
@@ -49,7 +49,19 @@ declare const pushbulletUpdateDevice: import("@keystrokehq/action").WorkflowActi
|
|
|
49
49
|
push_token?: string | undefined;
|
|
50
50
|
app_version?: number | undefined;
|
|
51
51
|
manufacturer?: string | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
accessToken: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
accessToken: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>;
|
|
53
65
|
//#endregion
|
|
54
66
|
export { pushbulletUpdateDevice };
|
|
55
67
|
//# sourceMappingURL=update-device.d.cts.map
|
|
@@ -49,7 +49,19 @@ declare const pushbulletUpdateDevice: import("@keystrokehq/action").WorkflowActi
|
|
|
49
49
|
push_token?: string | undefined;
|
|
50
50
|
app_version?: number | undefined;
|
|
51
51
|
manufacturer?: string | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
accessToken: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
accessToken: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>;
|
|
53
65
|
//#endregion
|
|
54
66
|
export { pushbulletUpdateDevice };
|
|
55
67
|
//# sourceMappingURL=update-device.d.mts.map
|
|
@@ -43,7 +43,19 @@ declare const pushbulletUpdatePush: import("@keystrokehq/action").WorkflowAction
|
|
|
43
43
|
checked: boolean;
|
|
44
44
|
}[] | undefined;
|
|
45
45
|
dismissed?: boolean | undefined;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
accessToken: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
accessToken: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>;
|
|
47
59
|
//#endregion
|
|
48
60
|
export { pushbulletUpdatePush };
|
|
49
61
|
//# sourceMappingURL=update-push.d.cts.map
|
|
@@ -43,7 +43,19 @@ declare const pushbulletUpdatePush: import("@keystrokehq/action").WorkflowAction
|
|
|
43
43
|
checked: boolean;
|
|
44
44
|
}[] | undefined;
|
|
45
45
|
dismissed?: boolean | undefined;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
accessToken: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
accessToken: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>;
|
|
47
59
|
//#endregion
|
|
48
60
|
export { pushbulletUpdatePush };
|
|
49
61
|
//# sourceMappingURL=update-push.d.mts.map
|
|
@@ -22,7 +22,19 @@ declare const PushbulletUploadRequestOutput: z.ZodObject<{
|
|
|
22
22
|
declare const pushbulletUploadRequest: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
file_name: string;
|
|
24
24
|
file_type: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { pushbulletUploadRequest };
|
|
28
40
|
//# sourceMappingURL=upload-request.d.cts.map
|
|
@@ -22,7 +22,19 @@ declare const PushbulletUploadRequestOutput: z.ZodObject<{
|
|
|
22
22
|
declare const pushbulletUploadRequest: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
file_name: string;
|
|
24
24
|
file_type: string;
|
|
25
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
25
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
26
|
+
connectionId: z.ZodString;
|
|
27
|
+
entityId: z.ZodString;
|
|
28
|
+
instanceId: z.ZodString;
|
|
29
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
30
|
+
accessToken: z.ZodString;
|
|
31
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
accessToken: z.ZodString;
|
|
37
|
+
}, z.core.$strip>>]>;
|
|
26
38
|
//#endregion
|
|
27
39
|
export { pushbulletUploadRequest };
|
|
28
40
|
//# sourceMappingURL=upload-request.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const pushbullet = (0,
|
|
4
|
+
const pushbullet = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "pushbullet",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { accessToken: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.pushbullet = pushbullet;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const pushbullet = defineApp({\n slug: \"pushbullet\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const pushbullet = defineApp({\n slug: \"pushbullet\",\n auth: \"keystroke\",\n credential: {\n accessToken: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,cAAA,GAAA,2BAAA,UAAA,CAAuB;CAClC,MAAM;CACN,MAAM;CACN,YAAY,EACV,aAAaA,IAAAA,EAAE,OAAO,EACxB;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const pushbullet: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const pushbullet: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
accessToken: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { pushbullet };
|
|
5
13
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,UAAA,6BAAU,GAAA,+BAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const pushbullet: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const pushbullet: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"pushbullet", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
accessToken: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { pushbullet };
|
|
5
13
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,UAAA,6BAAU,GAAA,+BAAA,UAAA,eAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const pushbullet = defineApp({
|
|
4
5
|
slug: "pushbullet",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { accessToken: z.string() }
|
|
6
8
|
});
|
|
7
9
|
//#endregion
|
|
8
10
|
export { pushbullet };
|
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const pushbullet = defineApp({\n slug: \"pushbullet\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const pushbullet = defineApp({\n slug: \"pushbullet\",\n auth: \"keystroke\",\n credential: {\n accessToken: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,aAAa,UAAU;CAClC,MAAM;CACN,MAAM;CACN,YAAY,EACV,aAAa,EAAE,OAAO,EACxB;AACF,CAAC"}
|