@inline-openclaw/inline 0.0.43 → 0.0.45

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
@@ -239,7 +239,7 @@ Inline reply-thread semantics:
239
239
  - `thread-create` creates a real reply thread from a parent chat and optional `replyToId` anchor.
240
240
  - Automatic thread creation falls back to parent-chat delivery if the reply thread cannot be created.
241
241
  - Existing route state is reused only for the same parent-message anchor. New parent-chat messages get separate reply threads; messages already inside a reply thread stay in that thread and do not create nested threads.
242
- - If the current reply-thread message has no direct media, OpenClaw can inherit the anchor message media so image/file-only thread starters remain visible to the agent.
242
+ - Inline current-message media is attached like native channels. Reply-thread anchor media is summarized as context and is not promoted to current-message media on every child-thread turn.
243
243
 
244
244
  You can gate action groups from config:
245
245
 
@@ -14578,6 +14578,8 @@ var InlineExecApprovalsSchema = exports_external.object({
14578
14578
  var InlineReactionNotificationsSchema = exports_external.enum(["off", "own", "all", "allowlist"]);
14579
14579
  var InlineStreamingModeSchema = exports_external.enum(["off", "partial", "block", "progress"]);
14580
14580
  var InlineStreamingCommandTextSchema = exports_external.enum(["raw", "status"]);
14581
+ var INLINE_DEFAULT_GROUP_POLICY = "open";
14582
+ var INLINE_DEFAULT_REQUIRE_MENTION = true;
14581
14583
  var InlineStreamingChunkSchema = exports_external.object({
14582
14584
  minChars: exports_external.number().int().positive().optional(),
14583
14585
  maxChars: exports_external.number().int().positive().optional(),
@@ -14649,7 +14651,7 @@ var InlineAccountSchemaBase = exports_external.object({
14649
14651
  defaultTo: InlineTargetSchema.optional(),
14650
14652
  systemPrompt: exports_external.string().optional(),
14651
14653
  groupAllowFrom: exports_external.array(InlineAllowEntrySchema).optional(),
14652
- groupPolicy: GroupPolicySchema.optional().default("allowlist"),
14654
+ groupPolicy: GroupPolicySchema.optional().default(INLINE_DEFAULT_GROUP_POLICY),
14653
14655
  groups: exports_external.record(exports_external.string(), InlineGroupSchema.optional()).optional(),
14654
14656
  requireMention: exports_external.boolean().optional(),
14655
14657
  replyThreadMode: InlineReplyThreadModeSchema.optional(),
@@ -15021,5 +15023,5 @@ export {
15021
15023
  inspectInlineReadOnlyAccount
15022
15024
  };
15023
15025
 
15024
- //# debugId=037AA7E34FED47C364756E2164756E21
15026
+ //# debugId=686AF72F08E2E13764756E2164756E21
15025
15027
  //# sourceMappingURL=account-inspect-api.js.map