@inline-openclaw/inline 0.0.46 → 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 +41 -9
- package/dist/account-inspect-api.js +4 -1
- package/dist/account-inspect-api.js.map +3 -3
- package/dist/approval-handler.runtime.js +3914 -305
- package/dist/approval-handler.runtime.js.map +13 -12
- package/dist/channel-plugin-api.js +4669 -571
- package/dist/channel-plugin-api.js.map +18 -17
- package/dist/inline/actions.d.ts +7 -3
- package/dist/inline/actions.d.ts.map +1 -1
- package/dist/inline/bot-avatar-tool.d.ts.map +1 -1
- 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 +2 -0
- package/dist/inline/message-content.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.js +1722 -243
- package/dist/runtime-register-api.js.map +13 -13
- package/dist/setup-plugin-api.js +4 -1
- package/dist/setup-plugin-api.js.map +3 -3
- package/openclaw.plugin.json +24 -1
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -154,6 +154,8 @@
|
|
|
154
154
|
"dmHistoryLimit": { "type": "integer", "minimum": 0 },
|
|
155
155
|
"parseMarkdown": { "type": "boolean" },
|
|
156
156
|
"mediaMaxMb": { "type": "number", "exclusiveMinimum": 0 },
|
|
157
|
+
"debounceMs": { "type": "integer", "minimum": 0 },
|
|
158
|
+
"voiceTranscriptWaitMs": { "type": "integer", "minimum": 0, "maximum": 60000 },
|
|
157
159
|
"reactionNotifications": { "type": "string", "enum": ["off", "own", "all", "allowlist"] },
|
|
158
160
|
"reactionAllowlist": {
|
|
159
161
|
"type": "array",
|
|
@@ -168,6 +170,7 @@
|
|
|
168
170
|
"reactions": { "type": "boolean" },
|
|
169
171
|
"read": { "type": "boolean" },
|
|
170
172
|
"search": { "type": "boolean" },
|
|
173
|
+
"translate": { "type": "boolean" },
|
|
171
174
|
"edit": { "type": "boolean" },
|
|
172
175
|
"channels": { "type": "boolean" },
|
|
173
176
|
"participants": { "type": "boolean" },
|
|
@@ -596,6 +599,15 @@
|
|
|
596
599
|
"type": "number",
|
|
597
600
|
"exclusiveMinimum": 0
|
|
598
601
|
},
|
|
602
|
+
"debounceMs": {
|
|
603
|
+
"type": "integer",
|
|
604
|
+
"minimum": 0
|
|
605
|
+
},
|
|
606
|
+
"voiceTranscriptWaitMs": {
|
|
607
|
+
"type": "integer",
|
|
608
|
+
"minimum": 0,
|
|
609
|
+
"maximum": 60000
|
|
610
|
+
},
|
|
599
611
|
"reactionNotifications": {
|
|
600
612
|
"type": "string",
|
|
601
613
|
"enum": [
|
|
@@ -637,6 +649,9 @@
|
|
|
637
649
|
"search": {
|
|
638
650
|
"type": "boolean"
|
|
639
651
|
},
|
|
652
|
+
"translate": {
|
|
653
|
+
"type": "boolean"
|
|
654
|
+
},
|
|
640
655
|
"edit": {
|
|
641
656
|
"type": "boolean"
|
|
642
657
|
},
|
|
@@ -1028,7 +1043,7 @@
|
|
|
1028
1043
|
},
|
|
1029
1044
|
"actions": {
|
|
1030
1045
|
"label": "Inline Message Actions",
|
|
1031
|
-
"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."
|
|
1032
1047
|
},
|
|
1033
1048
|
"reactionNotifications": {
|
|
1034
1049
|
"label": "Inline Reaction Notifications",
|
|
@@ -1038,6 +1053,14 @@
|
|
|
1038
1053
|
"label": "Inline Reaction Sender Allowlist",
|
|
1039
1054
|
"help": "Inline user IDs allowed to queue passive reaction notifications when reactionNotifications is \"allowlist\". Supports the same ID/access-group entries as allowFrom."
|
|
1040
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
|
+
},
|
|
1041
1064
|
"commands.native": {
|
|
1042
1065
|
"label": "Inline Bot Command Sync",
|
|
1043
1066
|
"help": "Controls startup sync for Inline bot commands."
|