@inline-openclaw/inline 0.0.64 → 0.0.66
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 +16 -14
- package/dist/approval-handler.runtime.js +23 -2
- package/dist/approval-handler.runtime.js.map +3 -3
- package/dist/channel-plugin-api.js +54 -24
- package/dist/channel-plugin-api.js.map +5 -5
- package/dist/runtime-register-api.js +24 -3
- package/dist/runtime-register-api.js.map +4 -4
- package/docs/openclaw-setup.md +13 -8
- package/package.json +1 -1
|
@@ -5622,6 +5622,20 @@ var BlockDisclosure_Kind;
|
|
|
5622
5622
|
BlockDisclosure_Kind2[BlockDisclosure_Kind2["DEFAULT"] = 0] = "DEFAULT";
|
|
5623
5623
|
BlockDisclosure_Kind2[BlockDisclosure_Kind2["PROGRESS"] = 1] = "PROGRESS";
|
|
5624
5624
|
})(BlockDisclosure_Kind || (BlockDisclosure_Kind = {}));
|
|
5625
|
+
var BlockDisclosure_ActivityKind;
|
|
5626
|
+
(function(BlockDisclosure_ActivityKind2) {
|
|
5627
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
5628
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["REASONING"] = 1] = "REASONING";
|
|
5629
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["EXPLORE"] = 2] = "EXPLORE";
|
|
5630
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["READ"] = 3] = "READ";
|
|
5631
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["SEARCH"] = 4] = "SEARCH";
|
|
5632
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["EDIT"] = 5] = "EDIT";
|
|
5633
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["DELETE"] = 6] = "DELETE";
|
|
5634
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["MOVE"] = 7] = "MOVE";
|
|
5635
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["COMMAND"] = 8] = "COMMAND";
|
|
5636
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["WEB"] = 9] = "WEB";
|
|
5637
|
+
BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["TOOL"] = 10] = "TOOL";
|
|
5638
|
+
})(BlockDisclosure_ActivityKind || (BlockDisclosure_ActivityKind = {}));
|
|
5625
5639
|
var BlockTable_Alignment;
|
|
5626
5640
|
(function(BlockTable_Alignment2) {
|
|
5627
5641
|
BlockTable_Alignment2[BlockTable_Alignment2["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
@@ -9541,13 +9555,15 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
|
|
|
9541
9555
|
{ no: 2, name: "kind", kind: "enum", T: () => ["BlockDisclosure.Kind", BlockDisclosure_Kind, "KIND_"] },
|
|
9542
9556
|
{ no: 3, name: "initially_open", kind: "scalar", opt: true, T: 8 },
|
|
9543
9557
|
{ no: 4, name: "children", kind: "message", repeat: 1, T: () => Block },
|
|
9544
|
-
{ no: 5, name: "is_rtl", kind: "scalar", opt: true, T: 8 }
|
|
9558
|
+
{ no: 5, name: "is_rtl", kind: "scalar", opt: true, T: 8 },
|
|
9559
|
+
{ no: 6, name: "activity_kind", kind: "enum", T: () => ["BlockDisclosure.ActivityKind", BlockDisclosure_ActivityKind, "ACTIVITY_KIND_"] }
|
|
9545
9560
|
]);
|
|
9546
9561
|
}
|
|
9547
9562
|
create(value) {
|
|
9548
9563
|
const message = globalThis.Object.create(this.messagePrototype);
|
|
9549
9564
|
message.kind = 0;
|
|
9550
9565
|
message.children = [];
|
|
9566
|
+
message.activityKind = 0;
|
|
9551
9567
|
if (value !== undefined)
|
|
9552
9568
|
import_runtime3.reflectionMergePartial(this, message, value);
|
|
9553
9569
|
return message;
|
|
@@ -9572,6 +9588,9 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
|
|
|
9572
9588
|
case 5:
|
|
9573
9589
|
message.isRtl = reader.bool();
|
|
9574
9590
|
break;
|
|
9591
|
+
case 6:
|
|
9592
|
+
message.activityKind = reader.int32();
|
|
9593
|
+
break;
|
|
9575
9594
|
default:
|
|
9576
9595
|
let u = options.readUnknownField;
|
|
9577
9596
|
if (u === "throw")
|
|
@@ -9594,6 +9613,8 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
|
|
|
9594
9613
|
Block.internalBinaryWrite(message.children[i], writer.tag(4, import_runtime.WireType.LengthDelimited).fork(), options).join();
|
|
9595
9614
|
if (message.isRtl !== undefined)
|
|
9596
9615
|
writer.tag(5, import_runtime.WireType.Varint).bool(message.isRtl);
|
|
9616
|
+
if (message.activityKind !== 0)
|
|
9617
|
+
writer.tag(6, import_runtime.WireType.Varint).int32(message.activityKind);
|
|
9597
9618
|
let u = options.writeUnknownFields;
|
|
9598
9619
|
if (u !== false)
|
|
9599
9620
|
(u == true ? import_runtime2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
@@ -66202,7 +66223,7 @@ ${text.slice(-UPDATE_LOG_MAX_CHARS)}`;
|
|
|
66202
66223
|
}
|
|
66203
66224
|
function resolveOpenClawUpdateInvocation(env) {
|
|
66204
66225
|
const cliPath = env.OPENCLAW_CLI_PATH?.trim();
|
|
66205
|
-
const args = ["plugins", "update", INLINE_PLUGIN_ID];
|
|
66226
|
+
const args = ["plugins", "update", INLINE_PLUGIN_ID, "--accept-capabilities"];
|
|
66206
66227
|
return cliPath ? { command: process.execPath, args: [cliPath, ...args] } : { command: "openclaw", args };
|
|
66207
66228
|
}
|
|
66208
66229
|
var defaultUpdateRunner = async (params) => await new Promise((resolve) => {
|
|
@@ -66638,5 +66659,5 @@ export {
|
|
|
66638
66659
|
registerInlinePluginFull
|
|
66639
66660
|
};
|
|
66640
66661
|
|
|
66641
|
-
//# debugId=
|
|
66662
|
+
//# debugId=C7ECA624482A65A064756E2164756E21
|
|
66642
66663
|
//# sourceMappingURL=runtime-register-api.js.map
|