exod 1.0.0-alpha.3 → 1.0.0-alpha.5
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/imessage/monitor.js +4 -0
- package/dist/imessage/probe.js +4 -0
- package/dist/line/accounts.js +10 -0
- package/dist/line/markdown-to-line.js +7 -0
- package/dist/line/monitor.js +4 -0
- package/dist/line/probe.js +4 -0
- package/dist/line/send.js +25 -0
- package/dist/line/template-messages.js +13 -0
- package/dist/signal/format.js +7 -0
- package/dist/signal/index.js +4 -0
- package/dist/signal/probe.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// Stub for LINE send - not implemented
|
|
2
|
+
export function sendLineMessage() {
|
|
3
|
+
return Promise.resolve();
|
|
4
|
+
}
|
|
5
|
+
export function sendLineReply() {
|
|
6
|
+
return Promise.resolve();
|
|
7
|
+
}
|
|
8
|
+
export function sendLinePush() {
|
|
9
|
+
return Promise.resolve();
|
|
10
|
+
}
|
|
11
|
+
export function sendLineMulticast() {
|
|
12
|
+
return Promise.resolve();
|
|
13
|
+
}
|
|
14
|
+
export function sendLineNarrowcast() {
|
|
15
|
+
return Promise.resolve();
|
|
16
|
+
}
|
|
17
|
+
export function sendLineBroadcast() {
|
|
18
|
+
return Promise.resolve();
|
|
19
|
+
}
|
|
20
|
+
export function replyLineMessage() {
|
|
21
|
+
return Promise.resolve();
|
|
22
|
+
}
|
|
23
|
+
export function pushLineMessage() {
|
|
24
|
+
return Promise.resolve();
|
|
25
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Stub for LINE template messages - not implemented
|
|
2
|
+
export function createTemplateMessage() {
|
|
3
|
+
return null;
|
|
4
|
+
}
|
|
5
|
+
export function createButtonsTemplate() {
|
|
6
|
+
return null;
|
|
7
|
+
}
|
|
8
|
+
export function createConfirmTemplate() {
|
|
9
|
+
return null;
|
|
10
|
+
}
|
|
11
|
+
export function createCarouselTemplate() {
|
|
12
|
+
return null;
|
|
13
|
+
}
|