n8n-nodes-blooio 0.1.2 → 0.2.0
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/README.md +61 -10
- package/dist/credentials/BlooioApi.credentials.js +2 -2
- package/dist/credentials/BlooioApi.credentials.js.map +1 -1
- package/dist/icons/blooio.dark.svg +5 -13
- package/dist/icons/blooio.svg +5 -13
- package/dist/nodes/BlooioMessaging/BlooioMessaging.node.js +44 -8
- package/dist/nodes/BlooioMessaging/BlooioMessaging.node.js.map +1 -1
- package/dist/nodes/BlooioMessaging/resources/account/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/account/index.js +26 -0
- package/dist/nodes/BlooioMessaging/resources/account/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/chat/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/chat/index.js +148 -0
- package/dist/nodes/BlooioMessaging/resources/chat/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/contact/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/contact/index.js +196 -0
- package/dist/nodes/BlooioMessaging/resources/contact/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/group/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/group/index.js +176 -0
- package/dist/nodes/BlooioMessaging/resources/group/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/location/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/location/index.js +53 -0
- package/dist/nodes/BlooioMessaging/resources/location/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/message/index.js +235 -49
- package/dist/nodes/BlooioMessaging/resources/message/index.js.map +1 -1
- package/dist/nodes/BlooioMessaging/resources/number/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/number/index.js +112 -0
- package/dist/nodes/BlooioMessaging/resources/number/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/phoneNumber/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/phoneNumber/index.js +55 -0
- package/dist/nodes/BlooioMessaging/resources/phoneNumber/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/poll/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/poll/index.js +82 -0
- package/dist/nodes/BlooioMessaging/resources/poll/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/reaction/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/reaction/index.js +73 -0
- package/dist/nodes/BlooioMessaging/resources/reaction/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/typing/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/typing/index.js +52 -0
- package/dist/nodes/BlooioMessaging/resources/typing/index.js.map +1 -0
- package/dist/nodes/BlooioMessaging/resources/webhook/index.d.ts +2 -0
- package/dist/nodes/BlooioMessaging/resources/webhook/index.js +232 -0
- package/dist/nodes/BlooioMessaging/resources/webhook/index.js.map +1 -0
- package/dist/package.json +7 -7
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -16,21 +16,72 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
|
|
|
16
16
|
|
|
17
17
|
## Operations
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
This node is built against the Blooio v2 API (`https://backend.blooio.com/v2/api`).
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
- **Get Message** - Retrieve complete message details including delivery status
|
|
23
|
-
- **Get Message Status** - Check the delivery status of a message
|
|
24
|
-
- **Cancel Message** - Cancel a queued or scheduled message
|
|
21
|
+
### Message
|
|
25
22
|
|
|
26
|
-
|
|
23
|
+
- **Send** - Send text and/or attachments to a chat. Supports iMessage send-with-effects, typing indicators, contact-card sharing, inline replies and idempotency keys.
|
|
24
|
+
- **Get** - Retrieve full details for a single message.
|
|
25
|
+
- **Get Status** - Check a message's delivery status.
|
|
26
|
+
- **List** - List messages in a conversation with direction/time filters.
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
### Chat
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
- **List** - List all conversations.
|
|
31
|
+
- **Get** - Get details for a conversation.
|
|
32
|
+
- **Mark as Read** - Mark a chat as read and send a read receipt.
|
|
33
|
+
- **Share Contact Card** - Stage your Name & Photo to be sent with the next message.
|
|
34
|
+
- **Get Background** / **Remove Background** - Manage a conversation's background image.
|
|
31
35
|
|
|
32
|
-
|
|
33
|
-
|
|
36
|
+
### Typing Indicator
|
|
37
|
+
|
|
38
|
+
- **Start** / **Stop** - Show or hide the iMessage typing indicator in a chat.
|
|
39
|
+
|
|
40
|
+
### Reaction
|
|
41
|
+
|
|
42
|
+
- **Add or Remove** - Add or remove a tapback or emoji reaction on a message.
|
|
43
|
+
|
|
44
|
+
### Poll
|
|
45
|
+
|
|
46
|
+
- **Send** - Send a native iMessage poll.
|
|
47
|
+
- **Get Results** - Retrieve a poll's options and vote counts.
|
|
48
|
+
|
|
49
|
+
### Contact
|
|
50
|
+
|
|
51
|
+
- **List / Create / Get / Update / Delete** - Manage contacts.
|
|
52
|
+
- **Check Capabilities** - Check iMessage / SMS / FaceTime support.
|
|
53
|
+
- **List Tags / Add Tags / Remove Tag** - Manage contact tags.
|
|
54
|
+
|
|
55
|
+
### Group
|
|
56
|
+
|
|
57
|
+
- **List / Create / Get / Update / Delete** - Manage groups.
|
|
58
|
+
- **List Members** - List the members of a group.
|
|
59
|
+
|
|
60
|
+
### Webhook
|
|
61
|
+
|
|
62
|
+
- **List / Create / Get / Update / Delete** - Manage webhook subscriptions.
|
|
63
|
+
- **Rotate Secret** - Rotate the webhook signing secret.
|
|
64
|
+
- **List Logs / Replay Event** - Inspect and replay webhook deliveries.
|
|
65
|
+
|
|
66
|
+
### Number
|
|
67
|
+
|
|
68
|
+
- **List** - List the phone numbers bound to your API key.
|
|
69
|
+
- **Request Call Forwarding** - Open a call-forwarding request for a dedicated/inbound number.
|
|
70
|
+
- **Update Contact Card** - Update the Name & Photo shared from a number (Dedicated plans).
|
|
71
|
+
|
|
72
|
+
### Location
|
|
73
|
+
|
|
74
|
+
- **List / Get / Refresh** - Read cached FindMy contact locations.
|
|
75
|
+
|
|
76
|
+
### Phone Number
|
|
77
|
+
|
|
78
|
+
- **Lookup / Batch Lookup** - Validate, format and geocode phone numbers (Enterprise plan).
|
|
79
|
+
|
|
80
|
+
### Account
|
|
81
|
+
|
|
82
|
+
- **Get Me** - Return the authenticated API key, organization, devices and usage.
|
|
83
|
+
|
|
84
|
+
> Note: endpoints that require multipart file uploads (set chat background, set group icon) and endpoints Blooio currently marks "Coming Soon" (FaceTime calls, add/remove group member, get contact card) are intentionally not exposed as operations yet.
|
|
34
85
|
|
|
35
86
|
## Credentials
|
|
36
87
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlooioApi.credentials.js","sourceRoot":"","sources":["../../credentials/BlooioApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,SAAS;IAAtB;QACC,SAAI,GAAG,WAAW,CAAC;QAEnB,gBAAW,GAAG,YAAY,CAAC;QAE3B,SAAI,GAAS,EAAE,KAAK,EAAE,0BAA0B,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;QAE1F,qBAAgB,GAAG,qCAAqC,CAAC;QAEzD,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,WAAW,EACV,mFAAmF;aACpF;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,kCAAkC;iBACjD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"BlooioApi.credentials.js","sourceRoot":"","sources":["../../credentials/BlooioApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,SAAS;IAAtB;QACC,SAAI,GAAG,WAAW,CAAC;QAEnB,gBAAW,GAAG,YAAY,CAAC;QAE3B,SAAI,GAAS,EAAE,KAAK,EAAE,0BAA0B,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;QAE1F,qBAAgB,GAAG,qCAAqC,CAAC;QAEzD,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;gBACX,WAAW,EACV,mFAAmF;aACpF;SACD,CAAC;QAEF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,kCAAkC;iBACjD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,mCAAmC;gBAC5C,GAAG,EAAE,KAAK;gBACV,MAAM,EAAE,KAAK;aACb;SACD,CAAC;IACH,CAAC;CAAA;AArCD,8BAqCC"}
|
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path
|
|
4
|
-
<path d="
|
|
5
|
-
<path
|
|
6
|
-
<path d="M177.891 80.7934C180.24 73.8844 181.438 66.2983 181.485 58.0351C181.486 57.8664 181.486 57.6975 181.486 57.5283L181.485 58.0351L181.486 96.233H169.445C172.981 91.7588 175.796 86.6123 177.891 80.7934Z" fill="#007AFF"/>
|
|
7
|
-
<path d="M126.285 115.268C129.339 115.268 132.281 115.096 135.111 114.752C136.087 114.633 137.049 114.494 137.997 114.335C142.176 113.632 146.098 112.533 149.761 111.038C152.456 109.859 154.994 108.513 157.375 106.999V115.268H126.285Z" fill="#007AFF"/>
|
|
8
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M135.111 114.752C132.281 115.096 129.339 115.268 126.285 115.268L113.246 115.268C111.749 109.462 111 103.215 111 96.5283V115.268L55.093 115.268C46.3954 115.256 38.6766 113.846 31.9366 111.038C25.0276 108.077 19.2466 104.058 14.5936 98.9825C9.79956 93.9064 6.2041 87.8434 3.80707 80.7934C1.26904 73.7433 0 65.9883 0 57.5283C0 49.2092 1.26904 41.5247 3.80707 34.4747C6.2041 27.4246 9.79956 21.3616 14.5936 16.2856C19.2466 11.2095 25.0276 7.26154 31.9366 4.44153C38.6766 1.4928 46.3954 0.0122986 55.093 6.10352e-05L126.285 0C135.027 0 142.852 1.4805 149.761 4.44153C156.529 7.26154 162.31 11.2095 167.104 16.2856C171.758 21.3616 175.353 27.4246 177.891 34.4747C178.394 35.9551 178.845 37.4636 179.242 39H166.202C162.112 39 158.223 39.324 154.535 39.972C153.356 36.7784 151.835 33.8885 149.973 31.3021C147.435 27.6361 144.192 24.6751 140.244 22.4191C136.296 20.1631 131.643 19.0351 126.285 19.0351L55.093 19.0352C49.7808 19.0504 45.164 20.1784 41.2427 22.4191C37.2947 24.6751 34.0517 27.6361 31.5137 31.3021C28.9756 34.8271 27.1426 38.9162 26.0146 43.5692C24.7457 48.2222 24.1111 52.8752 24.1111 57.5283C24.1111 62.3223 24.7457 67.0458 26.0146 71.6989C27.1426 76.2109 28.9756 80.2999 31.5137 83.9659C34.0517 87.6319 37.2947 90.593 41.2427 92.8489C45.164 95.0897 49.7808 96.2176 55.093 96.2328L104.994 96.233H126.285H135.112H157.375V106.999C154.994 108.513 152.456 109.859 149.761 111.038C146.098 112.533 142.176 113.632 137.997 114.335C137.551 113.155 137.153 111.943 136.803 110.699C135.675 106.046 135.111 101.322 135.111 96.5283V114.752Z" fill="#007AFF"/>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M154.545 40L154.535 39.972C158.224 39.324 162.113 39 166.202 39H179.243C180.739 44.7801 181.487 50.9562 181.487 57.5283C181.487 57.6975 181.486 57.8665 181.485 58.0351H166.202C163.01 58.0351 160.068 58.4355 157.376 59.2364V57.5283C157.376 52.8752 156.812 48.2222 155.684 43.5692C155.349 42.3401 154.969 41.1504 154.545 40Z" fill="white"/>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.891 80.7932C180.24 73.8842 181.438 66.2981 181.485 58.0349H166.202C163.009 58.0349 160.067 58.4354 157.375 59.2362V96.2328V106.999V115.268H181.486V96.2328H169.445C172.981 91.7587 175.796 86.6121 177.891 80.7932ZM113.246 115.268H111V96.5281C111 103.215 111.749 109.462 113.246 115.268ZM135.111 114.752C136.086 114.633 137.049 114.494 137.997 114.334C137.551 113.155 137.153 111.943 136.803 110.699C135.675 106.046 135.111 101.322 135.111 96.5281V114.752Z" fill="#007AFF"/>
|
|
1
|
+
<svg width="265" height="155" viewBox="0 0 265 155" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.0008 96.7622C83.0011 96.8533 83.0014 96.9442 83.002 97.0351L83.0005 96.5283C83.0005 96.6063 83.0006 96.6843 83.0008 96.7622Z" fill="white"/>
|
|
3
|
+
<path d="M86.5954 73.4747C86.092 74.9551 85.6415 76.4636 85.2439 78C85.2439 78 83.0013 85 83.0013 97.0351C83.0013 109.07 82.9999 135.233 82.9999 135.233V154.268H107.111L138.202 154.268L151.24 154.268L153.486 154.268L209.393 154.268C218.091 154.256 225.81 152.846 232.55 150.038C239.459 147.077 245.24 143.058 249.893 137.982C254.687 132.906 258.282 126.843 260.679 119.793C263.217 112.743 264.486 104.988 264.486 96.5283C264.486 88.2092 263.217 80.5247 260.679 73.4747C258.282 66.4246 254.687 60.3616 249.893 55.2856C245.24 50.2095 239.459 46.2615 232.55 43.4415C225.81 40.4928 218.091 39.0123 209.393 39.0001L138.202 39C129.46 39 121.634 40.4805 114.725 43.4415C107.957 46.2615 102.176 50.2095 97.3818 55.2856C92.7288 60.3616 89.1334 66.4246 86.5954 73.4747Z" fill="white"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M181.486 57.7622C181.485 57.8532 181.485 57.9442 181.484 58.0351L181.486 57.5283C181.486 57.6063 181.486 57.6843 181.486 57.7622Z" fill="#007AFF"/>
|
|
5
|
+
<path d="M177.891 34.4747C178.394 35.9551 178.845 37.4636 179.242 39C179.242 39 181.485 46 181.485 58.0351C181.485 70.0702 181.486 96.2328 181.486 96.2328V115.268H157.375L126.285 115.268L113.246 115.268L111 115.268L55.093 115.268C46.3954 115.256 38.6766 113.846 31.9366 111.038C25.0276 108.077 19.2466 104.058 14.5936 98.9825C9.79956 93.9064 6.2041 87.8434 3.80707 80.7934C1.26904 73.7433 0 65.9883 0 57.5283C0 49.2092 1.26904 41.5247 3.80707 34.4747C6.2041 27.4246 9.79956 21.3616 14.5936 16.2856C19.2466 11.2095 25.0276 7.26154 31.9366 4.44153C38.6766 1.4928 46.3954 0.0122986 55.093 6.10352e-05L126.285 0C135.027 0 142.852 1.4805 149.761 4.44153C156.529 7.26154 162.31 11.2095 167.104 16.2856C171.758 21.3616 175.353 27.4246 177.891 34.4747Z" fill="#007AFF"/>
|
|
11
6
|
</svg>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
package/dist/icons/blooio.svg
CHANGED
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path d="
|
|
3
|
-
<path
|
|
4
|
-
<path d="
|
|
5
|
-
<path
|
|
6
|
-
<path d="M177.891 80.7934C180.24 73.8844 181.438 66.2983 181.485 58.0351C181.486 57.8664 181.486 57.6975 181.486 57.5283L181.485 58.0351L181.486 96.233H169.445C172.981 91.7588 175.796 86.6123 177.891 80.7934Z" fill="#007AFF"/>
|
|
7
|
-
<path d="M126.285 115.268C129.339 115.268 132.281 115.096 135.111 114.752C136.087 114.633 137.049 114.494 137.997 114.335C142.176 113.632 146.098 112.533 149.761 111.038C152.456 109.859 154.994 108.513 157.375 106.999V115.268H126.285Z" fill="#007AFF"/>
|
|
8
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M135.111 114.752C132.281 115.096 129.339 115.268 126.285 115.268L113.246 115.268C111.749 109.462 111 103.215 111 96.5283V115.268L55.093 115.268C46.3954 115.256 38.6766 113.846 31.9366 111.038C25.0276 108.077 19.2466 104.058 14.5936 98.9825C9.79956 93.9064 6.2041 87.8434 3.80707 80.7934C1.26904 73.7433 0 65.9883 0 57.5283C0 49.2092 1.26904 41.5247 3.80707 34.4747C6.2041 27.4246 9.79956 21.3616 14.5936 16.2856C19.2466 11.2095 25.0276 7.26154 31.9366 4.44153C38.6766 1.4928 46.3954 0.0122986 55.093 6.10352e-05L126.285 0C135.027 0 142.852 1.4805 149.761 4.44153C156.529 7.26154 162.31 11.2095 167.104 16.2856C171.758 21.3616 175.353 27.4246 177.891 34.4747C178.394 35.9551 178.845 37.4636 179.242 39H166.202C162.112 39 158.223 39.324 154.535 39.972C153.356 36.7784 151.835 33.8885 149.973 31.3021C147.435 27.6361 144.192 24.6751 140.244 22.4191C136.296 20.1631 131.643 19.0351 126.285 19.0351L55.093 19.0352C49.7808 19.0504 45.164 20.1784 41.2427 22.4191C37.2947 24.6751 34.0517 27.6361 31.5137 31.3021C28.9756 34.8271 27.1426 38.9162 26.0146 43.5692C24.7457 48.2222 24.1111 52.8752 24.1111 57.5283C24.1111 62.3223 24.7457 67.0458 26.0146 71.6989C27.1426 76.2109 28.9756 80.2999 31.5137 83.9659C34.0517 87.6319 37.2947 90.593 41.2427 92.8489C45.164 95.0897 49.7808 96.2176 55.093 96.2328L104.994 96.233H126.285H135.112H157.375V106.999C154.994 108.513 152.456 109.859 149.761 111.038C146.098 112.533 142.176 113.632 137.997 114.335C137.551 113.155 137.153 111.943 136.803 110.699C135.675 106.046 135.111 101.322 135.111 96.5283V114.752Z" fill="#007AFF"/>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M154.545 40L154.535 39.972C158.224 39.324 162.113 39 166.202 39H179.243C180.739 44.7801 181.487 50.9562 181.487 57.5283C181.487 57.6975 181.486 57.8665 181.485 58.0351H166.202C163.01 58.0351 160.068 58.4355 157.376 59.2364V57.5283C157.376 52.8752 156.812 48.2222 155.684 43.5692C155.349 42.3401 154.969 41.1504 154.545 40Z" fill="black"/>
|
|
10
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M177.891 80.7932C180.24 73.8842 181.438 66.2981 181.485 58.0349H166.202C163.009 58.0349 160.067 58.4354 157.375 59.2362V96.2328V106.999V115.268H181.486V96.2328H169.445C172.981 91.7587 175.796 86.6121 177.891 80.7932ZM113.246 115.268H111V96.5281C111 103.215 111.749 109.462 113.246 115.268ZM135.111 114.752C136.086 114.633 137.049 114.494 137.997 114.334C137.551 113.155 137.153 111.943 136.803 110.699C135.675 106.046 135.111 101.322 135.111 96.5281V114.752Z" fill="#007AFF"/>
|
|
1
|
+
<svg width="265" height="155" viewBox="0 0 265 155" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M83.0008 96.7622C83.0011 96.8532 83.0014 96.9442 83.002 97.0351L83.0005 96.5283C83.0005 96.6063 83.0006 96.6843 83.0008 96.7622Z" fill="black"/>
|
|
3
|
+
<path d="M86.5954 73.4747C86.092 74.9551 85.6415 76.4636 85.2439 78C85.2439 78 83.0013 85 83.0013 97.0351C83.0013 109.07 82.9999 135.233 82.9999 135.233V154.268H107.111L138.202 154.268L151.24 154.268L153.486 154.268L209.393 154.268C218.091 154.256 225.81 152.846 232.55 150.038C239.459 147.077 245.24 143.058 249.893 137.982C254.687 132.906 258.282 126.843 260.679 119.793C263.217 112.743 264.486 104.988 264.486 96.5283C264.486 88.2092 263.217 80.5247 260.679 73.4747C258.282 66.4246 254.687 60.3616 249.893 55.2856C245.24 50.2095 239.459 46.2615 232.55 43.4415C225.81 40.4928 218.091 39.0123 209.393 39.0001L138.202 39C129.46 39 121.634 40.4805 114.725 43.4415C107.957 46.2615 102.176 50.2095 97.3818 55.2856C92.7288 60.3616 89.1334 66.4246 86.5954 73.4747Z" fill="black"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M181.486 57.7622C181.485 57.8533 181.485 57.9442 181.484 58.0351L181.486 57.5283C181.486 57.6063 181.486 57.6843 181.486 57.7622Z" fill="#007AFF"/>
|
|
5
|
+
<path d="M177.891 34.4747C178.394 35.9551 178.845 37.4636 179.242 39C179.242 39 181.485 46 181.485 58.0351C181.485 70.0702 181.486 96.2328 181.486 96.2328V115.268H157.375L126.285 115.268L113.246 115.268L111 115.268L55.093 115.268C46.3954 115.256 38.6766 113.846 31.9366 111.038C25.0276 108.077 19.2466 104.058 14.5936 98.9825C9.79956 93.9064 6.2041 87.8434 3.80707 80.7934C1.26904 73.7433 0 65.9883 0 57.5283C0 49.2092 1.26904 41.5247 3.80707 34.4747C6.2041 27.4246 9.79956 21.3616 14.5936 16.2856C19.2466 11.2095 25.0276 7.26154 31.9366 4.44153C38.6766 1.4928 46.3954 0.0122986 55.093 6.10352e-05L126.285 0C135.027 0 142.852 1.4805 149.761 4.44153C156.529 7.26154 162.31 11.2095 167.104 16.2856C171.758 21.3616 175.353 27.4246 177.891 34.4747Z" fill="#007AFF"/>
|
|
11
6
|
</svg>
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
@@ -1,23 +1,35 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.BlooioMessaging = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
4
5
|
const message_1 = require("./resources/message");
|
|
6
|
+
const chat_1 = require("./resources/chat");
|
|
7
|
+
const reaction_1 = require("./resources/reaction");
|
|
8
|
+
const poll_1 = require("./resources/poll");
|
|
9
|
+
const typing_1 = require("./resources/typing");
|
|
10
|
+
const contact_1 = require("./resources/contact");
|
|
11
|
+
const group_1 = require("./resources/group");
|
|
12
|
+
const webhook_1 = require("./resources/webhook");
|
|
13
|
+
const number_1 = require("./resources/number");
|
|
14
|
+
const location_1 = require("./resources/location");
|
|
15
|
+
const phoneNumber_1 = require("./resources/phoneNumber");
|
|
16
|
+
const account_1 = require("./resources/account");
|
|
5
17
|
class BlooioMessaging {
|
|
6
18
|
constructor() {
|
|
7
19
|
this.description = {
|
|
8
|
-
displayName: 'Blooio
|
|
20
|
+
displayName: 'Blooio',
|
|
9
21
|
name: 'blooioMessaging',
|
|
10
22
|
icon: { light: 'file:../../icons/blooio.svg', dark: 'file:../../icons/blooio.dark.svg' },
|
|
11
|
-
group: ['
|
|
23
|
+
group: ['output'],
|
|
12
24
|
version: 1,
|
|
13
25
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
14
|
-
description: 'Send
|
|
26
|
+
description: 'Send iMessages, manage contacts, groups, webhooks and more via the Blooio API',
|
|
15
27
|
defaults: {
|
|
16
|
-
name: 'Blooio
|
|
28
|
+
name: 'Blooio',
|
|
17
29
|
},
|
|
18
30
|
usableAsTool: true,
|
|
19
|
-
inputs: [
|
|
20
|
-
outputs: [
|
|
31
|
+
inputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
32
|
+
outputs: [n8n_workflow_1.NodeConnectionTypes.Main],
|
|
21
33
|
credentials: [
|
|
22
34
|
{
|
|
23
35
|
name: 'blooioApi',
|
|
@@ -25,7 +37,7 @@ class BlooioMessaging {
|
|
|
25
37
|
},
|
|
26
38
|
],
|
|
27
39
|
requestDefaults: {
|
|
28
|
-
baseURL: 'https://
|
|
40
|
+
baseURL: 'https://backend.blooio.com/v2/api',
|
|
29
41
|
headers: {
|
|
30
42
|
Accept: 'application/json',
|
|
31
43
|
'Content-Type': 'application/json',
|
|
@@ -37,10 +49,34 @@ class BlooioMessaging {
|
|
|
37
49
|
name: 'resource',
|
|
38
50
|
type: 'options',
|
|
39
51
|
noDataExpression: true,
|
|
40
|
-
options: [
|
|
52
|
+
options: [
|
|
53
|
+
{ name: 'Account', value: 'account' },
|
|
54
|
+
{ name: 'Chat', value: 'chat' },
|
|
55
|
+
{ name: 'Contact', value: 'contact' },
|
|
56
|
+
{ name: 'Group', value: 'group' },
|
|
57
|
+
{ name: 'Location', value: 'location' },
|
|
58
|
+
{ name: 'Message', value: 'message' },
|
|
59
|
+
{ name: 'Number', value: 'number' },
|
|
60
|
+
{ name: 'Phone Number', value: 'phoneNumber' },
|
|
61
|
+
{ name: 'Poll', value: 'poll' },
|
|
62
|
+
{ name: 'Reaction', value: 'reaction' },
|
|
63
|
+
{ name: 'Typing Indicator', value: 'typing' },
|
|
64
|
+
{ name: 'Webhook', value: 'webhook' },
|
|
65
|
+
],
|
|
41
66
|
default: 'message',
|
|
42
67
|
},
|
|
43
68
|
...message_1.messageDescription,
|
|
69
|
+
...chat_1.chatDescription,
|
|
70
|
+
...reaction_1.reactionDescription,
|
|
71
|
+
...poll_1.pollDescription,
|
|
72
|
+
...typing_1.typingDescription,
|
|
73
|
+
...contact_1.contactDescription,
|
|
74
|
+
...group_1.groupDescription,
|
|
75
|
+
...webhook_1.webhookDescription,
|
|
76
|
+
...number_1.numberDescription,
|
|
77
|
+
...location_1.locationDescription,
|
|
78
|
+
...phoneNumber_1.phoneNumberDescription,
|
|
79
|
+
...account_1.accountDescription,
|
|
44
80
|
],
|
|
45
81
|
};
|
|
46
82
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlooioMessaging.node.js","sourceRoot":"","sources":["../../../nodes/BlooioMessaging/BlooioMessaging.node.ts"],"names":[],"mappings":";;;AACA,iDAAyD;AAEzD,MAAa,eAAe;IAA5B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"BlooioMessaging.node.js","sourceRoot":"","sources":["../../../nodes/BlooioMessaging/BlooioMessaging.node.ts"],"names":[],"mappings":";;;AACA,+CAAmD;AACnD,iDAAyD;AACzD,2CAAmD;AACnD,mDAA2D;AAC3D,2CAAmD;AACnD,+CAAuD;AACvD,iDAAyD;AACzD,6CAAqD;AACrD,iDAAyD;AACzD,+CAAuD;AACvD,mDAA2D;AAC3D,yDAAiE;AACjE,iDAAyD;AAEzD,MAAa,eAAe;IAA5B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,QAAQ;YACrB,IAAI,EAAE,iBAAiB;YACvB,IAAI,EAAE,EAAE,KAAK,EAAE,6BAA6B,EAAE,IAAI,EAAE,kCAAkC,EAAE;YACxF,KAAK,EAAE,CAAC,QAAQ,CAAC;YACjB,OAAO,EAAE,CAAC;YACV,QAAQ,EAAE,8DAA8D;YACxE,WAAW,EAAE,+EAA+E;YAC5F,QAAQ,EAAE;gBACT,IAAI,EAAE,QAAQ;aACd;YACD,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YAClC,OAAO,EAAE,CAAC,kCAAmB,CAAC,IAAI,CAAC;YACnC,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,WAAW;oBACjB,QAAQ,EAAE,IAAI;iBACd;aACD;YACD,eAAe,EAAE;gBAChB,OAAO,EAAE,mCAAmC;gBAC5C,OAAO,EAAE;oBACR,MAAM,EAAE,kBAAkB;oBAC1B,cAAc,EAAE,kBAAkB;iBAClC;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,OAAO,EAAE;wBACR,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;wBACrC,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;wBAC/B,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;wBACrC,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE;wBACjC,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU,EAAE;wBACvC,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;wBACrC,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE;wBACnC,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,EAAE,aAAa,EAAE;wBAC9C,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;wBAC/B,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU,EAAE;wBACvC,EAAE,IAAI,EAAE,kBAAkB,EAAE,KAAK,EAAE,QAAQ,EAAE;wBAC7C,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE;qBACrC;oBACD,OAAO,EAAE,SAAS;iBAClB;gBACD,GAAG,4BAAkB;gBACrB,GAAG,sBAAe;gBAClB,GAAG,8BAAmB;gBACtB,GAAG,sBAAe;gBAClB,GAAG,0BAAiB;gBACpB,GAAG,4BAAkB;gBACrB,GAAG,wBAAgB;gBACnB,GAAG,4BAAkB;gBACrB,GAAG,0BAAiB;gBACpB,GAAG,8BAAmB;gBACtB,GAAG,oCAAsB;gBACzB,GAAG,4BAAkB;aACrB;SACD,CAAC;IACH,CAAC;CAAA;AAhED,0CAgEC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.accountDescription = void 0;
|
|
4
|
+
const showForAccount = {
|
|
5
|
+
resource: ['account'],
|
|
6
|
+
};
|
|
7
|
+
exports.accountDescription = [
|
|
8
|
+
{
|
|
9
|
+
displayName: 'Operation',
|
|
10
|
+
name: 'operation',
|
|
11
|
+
type: 'options',
|
|
12
|
+
noDataExpression: true,
|
|
13
|
+
displayOptions: { show: showForAccount },
|
|
14
|
+
options: [
|
|
15
|
+
{
|
|
16
|
+
name: 'Get Me',
|
|
17
|
+
value: 'getMe',
|
|
18
|
+
action: 'Get current account context',
|
|
19
|
+
description: 'Return details about the authenticated API key, organization, devices, and usage statistics',
|
|
20
|
+
routing: { request: { method: 'GET', url: '/me' } },
|
|
21
|
+
},
|
|
22
|
+
],
|
|
23
|
+
default: 'getMe',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/BlooioMessaging/resources/account/index.ts"],"names":[],"mappings":";;;AAEA,MAAM,cAAc,GAAG;IACtB,QAAQ,EAAE,CAAC,SAAS,CAAC;CACrB,CAAC;AAEW,QAAA,kBAAkB,GAAsB;IACpD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE;QACxC,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,QAAQ;gBACd,KAAK,EAAE,OAAO;gBACd,MAAM,EAAE,6BAA6B;gBACrC,WAAW,EACV,6FAA6F;gBAC9F,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE;aACnD;SACD;QACD,OAAO,EAAE,OAAO;KAChB;CACD,CAAC"}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.chatDescription = void 0;
|
|
4
|
+
const showForChat = {
|
|
5
|
+
resource: ['chat'],
|
|
6
|
+
};
|
|
7
|
+
exports.chatDescription = [
|
|
8
|
+
{
|
|
9
|
+
displayName: 'Operation',
|
|
10
|
+
name: 'operation',
|
|
11
|
+
type: 'options',
|
|
12
|
+
noDataExpression: true,
|
|
13
|
+
displayOptions: { show: showForChat },
|
|
14
|
+
options: [
|
|
15
|
+
{
|
|
16
|
+
name: 'Get',
|
|
17
|
+
value: 'get',
|
|
18
|
+
action: 'Get a chat',
|
|
19
|
+
description: 'Get details for a single conversation',
|
|
20
|
+
routing: {
|
|
21
|
+
request: {
|
|
22
|
+
method: 'GET',
|
|
23
|
+
url: '=/chats/{{ encodeURIComponent($parameter["chatId"]) }}',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: 'Get Background',
|
|
29
|
+
value: 'getBackground',
|
|
30
|
+
action: 'Get chat background',
|
|
31
|
+
description: 'Get the current background image metadata for a conversation',
|
|
32
|
+
routing: {
|
|
33
|
+
request: {
|
|
34
|
+
method: 'GET',
|
|
35
|
+
url: '=/chats/{{ encodeURIComponent($parameter["chatId"]) }}/background',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'List',
|
|
41
|
+
value: 'list',
|
|
42
|
+
action: 'List chats',
|
|
43
|
+
description: 'List all conversations, most recent first',
|
|
44
|
+
routing: { request: { method: 'GET', url: '/chats' } },
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Mark as Read',
|
|
48
|
+
value: 'markRead',
|
|
49
|
+
action: 'Mark a chat as read',
|
|
50
|
+
description: 'Mark all messages in a chat as read and send a read receipt',
|
|
51
|
+
routing: {
|
|
52
|
+
request: {
|
|
53
|
+
method: 'POST',
|
|
54
|
+
url: '=/chats/{{ encodeURIComponent($parameter["chatId"]) }}/read',
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'Remove Background',
|
|
60
|
+
value: 'removeBackground',
|
|
61
|
+
action: 'Remove chat background',
|
|
62
|
+
description: 'Remove the background image from a conversation',
|
|
63
|
+
routing: {
|
|
64
|
+
request: {
|
|
65
|
+
method: 'DELETE',
|
|
66
|
+
url: '=/chats/{{ encodeURIComponent($parameter["chatId"]) }}/background',
|
|
67
|
+
},
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'Share Contact Card',
|
|
72
|
+
value: 'shareContactCard',
|
|
73
|
+
action: 'Share your contact card in a chat',
|
|
74
|
+
description: 'Stage your contact card (Name & Photo) to be sent with the next outgoing message. Dedicated Commercial/Enterprise plans only.',
|
|
75
|
+
routing: {
|
|
76
|
+
request: {
|
|
77
|
+
method: 'POST',
|
|
78
|
+
url: '=/chats/{{ encodeURIComponent($parameter["chatId"]) }}/contact-card',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
},
|
|
82
|
+
],
|
|
83
|
+
default: 'list',
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
displayName: 'Chat',
|
|
87
|
+
name: 'chatId',
|
|
88
|
+
type: 'string',
|
|
89
|
+
default: '',
|
|
90
|
+
required: true,
|
|
91
|
+
displayOptions: {
|
|
92
|
+
show: {
|
|
93
|
+
...showForChat,
|
|
94
|
+
operation: ['get', 'markRead', 'shareContactCard', 'getBackground', 'removeBackground'],
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
description: 'Conversation identifier: phone number (E.164), email, group ID (grp_xxx), or comma-separated recipients',
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
displayName: 'Limit',
|
|
101
|
+
name: 'limit',
|
|
102
|
+
type: 'number',
|
|
103
|
+
typeOptions: { minValue: 1, maxValue: 200 },
|
|
104
|
+
default: 50,
|
|
105
|
+
displayOptions: { show: { ...showForChat, operation: ['list'] } },
|
|
106
|
+
description: 'Max number of results to return',
|
|
107
|
+
routing: { send: { type: 'query', property: 'limit' } },
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
displayName: 'Filters',
|
|
111
|
+
name: 'listFilters',
|
|
112
|
+
type: 'collection',
|
|
113
|
+
placeholder: 'Add Filter',
|
|
114
|
+
default: {},
|
|
115
|
+
displayOptions: { show: { ...showForChat, operation: ['list'] } },
|
|
116
|
+
options: [
|
|
117
|
+
{
|
|
118
|
+
displayName: 'Offset',
|
|
119
|
+
name: 'offset',
|
|
120
|
+
type: 'number',
|
|
121
|
+
typeOptions: { minValue: 0 },
|
|
122
|
+
default: 0,
|
|
123
|
+
description: 'Number of items to skip',
|
|
124
|
+
routing: { send: { type: 'query', property: 'offset' } },
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
displayName: 'Search Query',
|
|
128
|
+
name: 'q',
|
|
129
|
+
type: 'string',
|
|
130
|
+
default: '',
|
|
131
|
+
description: 'Search by phone/email or contact name',
|
|
132
|
+
routing: { send: { type: 'query', property: 'q' } },
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
displayName: 'Sort',
|
|
136
|
+
name: 'sort',
|
|
137
|
+
type: 'options',
|
|
138
|
+
default: 'recent',
|
|
139
|
+
options: [
|
|
140
|
+
{ name: 'Most Recent', value: 'recent' },
|
|
141
|
+
{ name: 'Oldest', value: 'oldest' },
|
|
142
|
+
],
|
|
143
|
+
routing: { send: { type: 'query', property: 'sort' } },
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
];
|
|
148
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/BlooioMessaging/resources/chat/index.ts"],"names":[],"mappings":"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"}
|