exod 1.0.0-alpha.1 → 1.0.0-alpha.11
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/imessage/targets.js +3 -0
- package/dist/line/accounts.js +16 -0
- package/dist/line/config-schema.js +5 -0
- package/dist/line/flex-templates.js +15 -0
- package/dist/line/markdown-to-line.js +16 -0
- package/dist/line/monitor.js +4 -0
- package/dist/line/probe.js +7 -0
- package/dist/line/send.js +49 -0
- package/dist/line/template-messages.js +16 -0
- package/dist/signal/format.js +10 -0
- package/dist/signal/identity.js +10 -0
- package/dist/signal/index.js +4 -0
- package/dist/signal/probe.js +4 -0
- package/dist/terminal/note.js +4 -0
- package/dist/terminal/progress-line.js +31 -0
- package/dist/terminal/prompt-style.js +12 -0
- package/dist/terminal/stream-writer.js +11 -0
- package/dist/tui/tui.js +5 -0
- package/package.json +1 -1
package/dist/imessage/targets.js
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Stub for LINE accounts - not implemented
|
|
2
|
+
export function getLineAccounts() {
|
|
3
|
+
return [];
|
|
4
|
+
}
|
|
5
|
+
export function resolveLineAccount() {
|
|
6
|
+
return undefined;
|
|
7
|
+
}
|
|
8
|
+
export function listLineAccountIds() {
|
|
9
|
+
return [];
|
|
10
|
+
}
|
|
11
|
+
export function normalizeAccountId(id) {
|
|
12
|
+
return id;
|
|
13
|
+
}
|
|
14
|
+
export function resolveDefaultLineAccountId() {
|
|
15
|
+
return undefined;
|
|
16
|
+
}
|
|
@@ -17,3 +17,18 @@ export function createDeviceControlCard(_params) {
|
|
|
17
17
|
export function createAppleTvRemoteCard(_params) {
|
|
18
18
|
return null;
|
|
19
19
|
}
|
|
20
|
+
export function createInfoCard(_params) {
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
export function createListCard(_params) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
export function createImageCard(_params) {
|
|
27
|
+
return null;
|
|
28
|
+
}
|
|
29
|
+
export function createActionCard(_params) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
export function createReceiptCard(_params) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
// Stub for LINE markdown - not implemented
|
|
2
|
+
export function markdownToLine(text) {
|
|
3
|
+
return text;
|
|
4
|
+
}
|
|
5
|
+
export function convertMarkdownToLine(text) {
|
|
6
|
+
return text;
|
|
7
|
+
}
|
|
8
|
+
export function processLineMessage(text) {
|
|
9
|
+
return text;
|
|
10
|
+
}
|
|
11
|
+
export function hasMarkdownToConvert(text) {
|
|
12
|
+
return false;
|
|
13
|
+
}
|
|
14
|
+
export function stripMarkdown(text) {
|
|
15
|
+
return text;
|
|
16
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
}
|
|
26
|
+
export function createQuickReplyItems() {
|
|
27
|
+
return [];
|
|
28
|
+
}
|
|
29
|
+
export function pushMessageLine() {
|
|
30
|
+
return Promise.resolve();
|
|
31
|
+
}
|
|
32
|
+
export function pushMessagesLine() {
|
|
33
|
+
return Promise.resolve();
|
|
34
|
+
}
|
|
35
|
+
export function pushFlexMessage() {
|
|
36
|
+
return Promise.resolve();
|
|
37
|
+
}
|
|
38
|
+
export function pushTemplateMessage() {
|
|
39
|
+
return Promise.resolve();
|
|
40
|
+
}
|
|
41
|
+
export function pushLocationMessage() {
|
|
42
|
+
return Promise.resolve();
|
|
43
|
+
}
|
|
44
|
+
export function pushTextMessageWithQuickReplies() {
|
|
45
|
+
return Promise.resolve();
|
|
46
|
+
}
|
|
47
|
+
export function sendMessageLine() {
|
|
48
|
+
return Promise.resolve();
|
|
49
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
}
|
|
14
|
+
export function buildTemplateMessageFromPayload() {
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// Stub for terminal progress line - Terminal UI not needed
|
|
2
|
+
export class ProgressLine {
|
|
3
|
+
constructor(_options) {}
|
|
4
|
+
update(_text) {}
|
|
5
|
+
clear() {}
|
|
6
|
+
finish() {}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export function createProgressLine(_options) {
|
|
10
|
+
return new ProgressLine(_options);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export function clearActiveProgressLine() {
|
|
14
|
+
// No-op
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function setActiveProgressLine(_line) {
|
|
18
|
+
// No-op
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export function getActiveProgressLine() {
|
|
22
|
+
return null;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function registerActiveProgressLine(_line) {
|
|
26
|
+
// No-op
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function unregisterActiveProgressLine(_line) {
|
|
30
|
+
// No-op
|
|
31
|
+
}
|
package/dist/tui/tui.js
ADDED