@inline-openclaw/inline 0.0.36 → 0.0.38
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 +1 -1
- package/dist/approval-handler.runtime.js +8 -2
- package/dist/approval-handler.runtime.js.map +3 -3
- package/dist/channel-plugin-api.js +325 -20
- package/dist/channel-plugin-api.js.map +7 -5
- package/dist/inline/bot-commands-sync.d.ts +9 -0
- package/dist/inline/bot-commands-sync.d.ts.map +1 -1
- package/dist/inline/monitor.d.ts.map +1 -1
- package/dist/runtime-register-api.js +36 -14
- package/dist/runtime-register-api.js.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -281,7 +281,7 @@ Bot command sync:
|
|
|
281
281
|
- On `gateway_start`, the plugin registers default bot commands for each enabled/configured Inline account.
|
|
282
282
|
- Default commands include the same user-facing command set as bundled chat providers (for example: `/status`, `/model`, `/exec`, `/usage`, etc.).
|
|
283
283
|
- The plugin uses OpenClaw's command, skill command, and plugin command registries when available.
|
|
284
|
-
- Disable startup sync globally with `commands.native: false`, or per-channel with `channels.inline.commands.native: false`. Disabled startup sync
|
|
284
|
+
- Disable startup sync globally with `commands.native: false`, or per-channel with `channels.inline.commands.native: false`. Disabled startup sync clears existing Inline bot commands for the affected account.
|
|
285
285
|
- Disable skill command inclusion with `commands.nativeSkills: false`, or per-channel with `channels.inline.commands.nativeSkills: false`.
|
|
286
286
|
|
|
287
287
|
Multi-account:
|
|
@@ -11307,7 +11307,8 @@ class UpdateDialogOrderInput$Type extends import_runtime4.MessageType {
|
|
|
11307
11307
|
super("UpdateDialogOrderInput", [
|
|
11308
11308
|
{ no: 1, name: "peer_id", kind: "message", T: () => InputPeer },
|
|
11309
11309
|
{ no: 2, name: "order", kind: "scalar", opt: true, T: 9 },
|
|
11310
|
-
{ no: 3, name: "pinned_order", kind: "scalar", opt: true, T: 9 }
|
|
11310
|
+
{ no: 3, name: "pinned_order", kind: "scalar", opt: true, T: 9 },
|
|
11311
|
+
{ no: 4, name: "pinned", kind: "scalar", opt: true, T: 8 }
|
|
11311
11312
|
]);
|
|
11312
11313
|
}
|
|
11313
11314
|
create(value) {
|
|
@@ -11330,6 +11331,9 @@ class UpdateDialogOrderInput$Type extends import_runtime4.MessageType {
|
|
|
11330
11331
|
case 3:
|
|
11331
11332
|
message.pinnedOrder = reader.string();
|
|
11332
11333
|
break;
|
|
11334
|
+
case 4:
|
|
11335
|
+
message.pinned = reader.bool();
|
|
11336
|
+
break;
|
|
11333
11337
|
default:
|
|
11334
11338
|
let u = options.readUnknownField;
|
|
11335
11339
|
if (u === "throw")
|
|
@@ -11348,6 +11352,8 @@ class UpdateDialogOrderInput$Type extends import_runtime4.MessageType {
|
|
|
11348
11352
|
writer.tag(2, import_runtime.WireType.LengthDelimited).string(message.order);
|
|
11349
11353
|
if (message.pinnedOrder !== undefined)
|
|
11350
11354
|
writer.tag(3, import_runtime.WireType.LengthDelimited).string(message.pinnedOrder);
|
|
11355
|
+
if (message.pinned !== undefined)
|
|
11356
|
+
writer.tag(4, import_runtime.WireType.Varint).bool(message.pinned);
|
|
11351
11357
|
let u = options.writeUnknownFields;
|
|
11352
11358
|
if (u !== false)
|
|
11353
11359
|
(u == true ? import_runtime2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
@@ -38932,5 +38938,5 @@ export {
|
|
|
38932
38938
|
inlineApprovalNativeRuntime
|
|
38933
38939
|
};
|
|
38934
38940
|
|
|
38935
|
-
//# debugId=
|
|
38941
|
+
//# debugId=4122BE0AA913DC7F64756E2164756E21
|
|
38936
38942
|
//# sourceMappingURL=approval-handler.runtime.js.map
|