@inline-openclaw/inline 0.0.65 → 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 CHANGED
@@ -39,7 +39,7 @@ the plugin version for your OpenClaw release line:
39
39
 
40
40
  | OpenClaw line | Inline plugin | Exact install |
41
41
  | --- | --- | --- |
42
- | `2026.8.x` (`>=2026.8.2`) | `0.0.65` | `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities` |
42
+ | `2026.8.x` (`>=2026.8.2`) | `0.0.66` | `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities` |
43
43
  | `2026.7.x` (`>=2026.7.1`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
44
44
  | `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
45
45
 
@@ -50,12 +50,12 @@ alias for older host APIs.
50
50
 
51
51
  | Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
52
52
  | --- | --- | --- | --- | --- |
53
- | `0.0.65` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Current | Makes chat-triggered updates noninteractive by explicitly accepting the trusted Inline capability surface. |
53
+ | `0.0.66` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Current | Bounds direct account probes so SDK cleanup completes before the host deadline. |
54
+ | `0.0.65` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Makes chat-triggered updates noninteractive by explicitly accepting the trusted Inline capability surface. |
54
55
  | `0.0.64` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Supports the stable 2026.8 plugin SDK and preserves DM/group reply-thread routing. |
55
56
  | `0.0.63` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Applies live-safe settings writes without restarting the Inline channel before it can answer. |
56
57
  | `0.0.62` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Keeps the thread-only Following control out of direct-message agent settings, where the server does not support it. |
57
58
  | `0.0.61` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Bounds model discovery through provider authentication so agent settings return a fallback instead of hanging indefinitely. |
58
- | `0.0.60` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Uses the plugin index's supported force-install path for exact updates on current OpenClaw hosts. |
59
59
 
60
60
  From npm:
61
61
 
@@ -5632,6 +5632,20 @@ var BlockDisclosure_Kind;
5632
5632
  BlockDisclosure_Kind2[BlockDisclosure_Kind2["DEFAULT"] = 0] = "DEFAULT";
5633
5633
  BlockDisclosure_Kind2[BlockDisclosure_Kind2["PROGRESS"] = 1] = "PROGRESS";
5634
5634
  })(BlockDisclosure_Kind || (BlockDisclosure_Kind = {}));
5635
+ var BlockDisclosure_ActivityKind;
5636
+ (function(BlockDisclosure_ActivityKind2) {
5637
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["UNSPECIFIED"] = 0] = "UNSPECIFIED";
5638
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["REASONING"] = 1] = "REASONING";
5639
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["EXPLORE"] = 2] = "EXPLORE";
5640
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["READ"] = 3] = "READ";
5641
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["SEARCH"] = 4] = "SEARCH";
5642
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["EDIT"] = 5] = "EDIT";
5643
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["DELETE"] = 6] = "DELETE";
5644
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["MOVE"] = 7] = "MOVE";
5645
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["COMMAND"] = 8] = "COMMAND";
5646
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["WEB"] = 9] = "WEB";
5647
+ BlockDisclosure_ActivityKind2[BlockDisclosure_ActivityKind2["TOOL"] = 10] = "TOOL";
5648
+ })(BlockDisclosure_ActivityKind || (BlockDisclosure_ActivityKind = {}));
5635
5649
  var BlockTable_Alignment;
5636
5650
  (function(BlockTable_Alignment2) {
5637
5651
  BlockTable_Alignment2[BlockTable_Alignment2["UNSPECIFIED"] = 0] = "UNSPECIFIED";
@@ -9551,13 +9565,15 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
9551
9565
  { no: 2, name: "kind", kind: "enum", T: () => ["BlockDisclosure.Kind", BlockDisclosure_Kind, "KIND_"] },
9552
9566
  { no: 3, name: "initially_open", kind: "scalar", opt: true, T: 8 },
9553
9567
  { no: 4, name: "children", kind: "message", repeat: 1, T: () => Block },
9554
- { no: 5, name: "is_rtl", kind: "scalar", opt: true, T: 8 }
9568
+ { no: 5, name: "is_rtl", kind: "scalar", opt: true, T: 8 },
9569
+ { no: 6, name: "activity_kind", kind: "enum", T: () => ["BlockDisclosure.ActivityKind", BlockDisclosure_ActivityKind, "ACTIVITY_KIND_"] }
9555
9570
  ]);
9556
9571
  }
9557
9572
  create(value) {
9558
9573
  const message = globalThis.Object.create(this.messagePrototype);
9559
9574
  message.kind = 0;
9560
9575
  message.children = [];
9576
+ message.activityKind = 0;
9561
9577
  if (value !== undefined)
9562
9578
  import_runtime3.reflectionMergePartial(this, message, value);
9563
9579
  return message;
@@ -9582,6 +9598,9 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
9582
9598
  case 5:
9583
9599
  message.isRtl = reader.bool();
9584
9600
  break;
9601
+ case 6:
9602
+ message.activityKind = reader.int32();
9603
+ break;
9585
9604
  default:
9586
9605
  let u = options.readUnknownField;
9587
9606
  if (u === "throw")
@@ -9604,6 +9623,8 @@ class BlockDisclosure$Type extends import_runtime4.MessageType {
9604
9623
  Block.internalBinaryWrite(message.children[i], writer.tag(4, import_runtime.WireType.LengthDelimited).fork(), options).join();
9605
9624
  if (message.isRtl !== undefined)
9606
9625
  writer.tag(5, import_runtime.WireType.Varint).bool(message.isRtl);
9626
+ if (message.activityKind !== 0)
9627
+ writer.tag(6, import_runtime.WireType.Varint).int32(message.activityKind);
9607
9628
  let u = options.writeUnknownFields;
9608
9629
  if (u !== false)
9609
9630
  (u == true ? import_runtime2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
@@ -69212,5 +69233,5 @@ export {
69212
69233
  inlineApprovalNativeRuntime
69213
69234
  };
69214
69235
 
69215
- //# debugId=AD53428C1039806264756E2164756E21
69236
+ //# debugId=74BD307ABE1FBD3564756E2164756E21
69216
69237
  //# sourceMappingURL=approval-handler.runtime.js.map