@inline-openclaw/inline 0.0.45 → 0.0.47
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 +43 -9
- package/dist/account-inspect-api.js +4 -1
- package/dist/account-inspect-api.js.map +3 -3
- package/dist/approval-handler.runtime.js +5471 -880
- package/dist/approval-handler.runtime.js.map +15 -14
- package/dist/channel-plugin-api.js +6583 -1185
- package/dist/channel-plugin-api.js.map +19 -18
- package/dist/inline/actions.d.ts +7 -3
- package/dist/inline/actions.d.ts.map +1 -1
- package/dist/inline/approval-handler.runtime.d.ts +1 -0
- package/dist/inline/approval-handler.runtime.d.ts.map +1 -1
- package/dist/inline/bot-avatar-tool.d.ts +12 -0
- package/dist/inline/bot-avatar-tool.d.ts.map +1 -0
- package/dist/inline/bot-commands-sync.d.ts.map +1 -1
- package/dist/inline/channel.d.ts.map +1 -1
- package/dist/inline/config-schema.d.ts +21 -0
- package/dist/inline/config-schema.d.ts.map +1 -1
- package/dist/inline/media.d.ts +17 -0
- package/dist/inline/media.d.ts.map +1 -1
- package/dist/inline/members-tool.d.ts +2 -0
- package/dist/inline/members-tool.d.ts.map +1 -1
- package/dist/inline/message-content.d.ts +7 -1
- package/dist/inline/message-content.d.ts.map +1 -1
- package/dist/inline/message-formatting.d.ts +18 -0
- package/dist/inline/message-formatting.d.ts.map +1 -1
- package/dist/inline/message-tools.d.ts.map +1 -1
- package/dist/inline/monitor.d.ts.map +1 -1
- package/dist/inline/outbound-sanitize.d.ts +2 -0
- package/dist/inline/outbound-sanitize.d.ts.map +1 -1
- package/dist/inline/parent-context-tool.d.ts.map +1 -1
- package/dist/inline/thread-freshness.d.ts +24 -0
- package/dist/inline/thread-freshness.d.ts.map +1 -0
- package/dist/inline/thread-routes.d.ts +4 -0
- package/dist/inline/thread-routes.d.ts.map +1 -1
- package/dist/runtime-register-api.d.ts.map +1 -1
- package/dist/runtime-register-api.js +3314 -418
- package/dist/runtime-register-api.js.map +16 -15
- package/dist/setup-plugin-api.js +4 -1
- package/dist/setup-plugin-api.js.map +3 -3
- package/openclaw.plugin.json +26 -1
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
"tools": [
|
|
8
8
|
"inline_members",
|
|
9
9
|
"inline_update_profile",
|
|
10
|
+
"inline_bot_avatar",
|
|
10
11
|
"inline_bot_commands",
|
|
11
12
|
"inline_nudge",
|
|
12
13
|
"inline_forward",
|
|
14
|
+
"inline_bot_presence",
|
|
13
15
|
"inline_parent_context"
|
|
14
16
|
]
|
|
15
17
|
},
|
|
@@ -152,6 +154,8 @@
|
|
|
152
154
|
"dmHistoryLimit": { "type": "integer", "minimum": 0 },
|
|
153
155
|
"parseMarkdown": { "type": "boolean" },
|
|
154
156
|
"mediaMaxMb": { "type": "number", "exclusiveMinimum": 0 },
|
|
157
|
+
"debounceMs": { "type": "integer", "minimum": 0 },
|
|
158
|
+
"voiceTranscriptWaitMs": { "type": "integer", "minimum": 0, "maximum": 60000 },
|
|
155
159
|
"reactionNotifications": { "type": "string", "enum": ["off", "own", "all", "allowlist"] },
|
|
156
160
|
"reactionAllowlist": {
|
|
157
161
|
"type": "array",
|
|
@@ -166,6 +170,7 @@
|
|
|
166
170
|
"reactions": { "type": "boolean" },
|
|
167
171
|
"read": { "type": "boolean" },
|
|
168
172
|
"search": { "type": "boolean" },
|
|
173
|
+
"translate": { "type": "boolean" },
|
|
169
174
|
"edit": { "type": "boolean" },
|
|
170
175
|
"channels": { "type": "boolean" },
|
|
171
176
|
"participants": { "type": "boolean" },
|
|
@@ -594,6 +599,15 @@
|
|
|
594
599
|
"type": "number",
|
|
595
600
|
"exclusiveMinimum": 0
|
|
596
601
|
},
|
|
602
|
+
"debounceMs": {
|
|
603
|
+
"type": "integer",
|
|
604
|
+
"minimum": 0
|
|
605
|
+
},
|
|
606
|
+
"voiceTranscriptWaitMs": {
|
|
607
|
+
"type": "integer",
|
|
608
|
+
"minimum": 0,
|
|
609
|
+
"maximum": 60000
|
|
610
|
+
},
|
|
597
611
|
"reactionNotifications": {
|
|
598
612
|
"type": "string",
|
|
599
613
|
"enum": [
|
|
@@ -635,6 +649,9 @@
|
|
|
635
649
|
"search": {
|
|
636
650
|
"type": "boolean"
|
|
637
651
|
},
|
|
652
|
+
"translate": {
|
|
653
|
+
"type": "boolean"
|
|
654
|
+
},
|
|
638
655
|
"edit": {
|
|
639
656
|
"type": "boolean"
|
|
640
657
|
},
|
|
@@ -1026,7 +1043,7 @@
|
|
|
1026
1043
|
},
|
|
1027
1044
|
"actions": {
|
|
1028
1045
|
"label": "Inline Message Actions",
|
|
1029
|
-
"help": "Enable or disable Inline message-tool action groups such as send, reactions, read, edit, participants, pins, and permissions."
|
|
1046
|
+
"help": "Enable or disable Inline message-tool action groups such as send, reactions, read, search, translate, edit, participants, message pins, and permissions."
|
|
1030
1047
|
},
|
|
1031
1048
|
"reactionNotifications": {
|
|
1032
1049
|
"label": "Inline Reaction Notifications",
|
|
@@ -1036,6 +1053,14 @@
|
|
|
1036
1053
|
"label": "Inline Reaction Sender Allowlist",
|
|
1037
1054
|
"help": "Inline user IDs allowed to queue passive reaction notifications when reactionNotifications is \"allowlist\". Supports the same ID/access-group entries as allowFrom."
|
|
1038
1055
|
},
|
|
1056
|
+
"debounceMs": {
|
|
1057
|
+
"label": "Inline Inbound Debounce",
|
|
1058
|
+
"help": "Coalesce rapid same-sender Inline text messages into one agent turn. Overrides messages.inbound.byChannel.inline for this Inline account when set."
|
|
1059
|
+
},
|
|
1060
|
+
"voiceTranscriptWaitMs": {
|
|
1061
|
+
"label": "Inline Voice Transcript Wait",
|
|
1062
|
+
"help": "Milliseconds to wait for Inline's server voice-message transcript edit before falling back to raw audio handling. Set 0 to disable the wait."
|
|
1063
|
+
},
|
|
1039
1064
|
"commands.native": {
|
|
1040
1065
|
"label": "Inline Bot Command Sync",
|
|
1041
1066
|
"help": "Controls startup sync for Inline bot commands."
|