@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 +1 -1
- package/dist/account-inspect-api.js +4 -2
- package/dist/account-inspect-api.js.map +3 -3
- package/dist/approval-handler.runtime.js +126 -15
- package/dist/approval-handler.runtime.js.map +5 -5
- package/dist/channel-plugin-api.js +748 -83
- package/dist/channel-plugin-api.js.map +13 -12
- 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 +2 -0
- package/dist/inline/config-schema.d.ts.map +1 -1
- package/dist/inline/doctor.d.ts.map +1 -1
- package/dist/inline/monitor.d.ts.map +1 -1
- package/dist/inline/security.d.ts.map +1 -1
- package/dist/inline/setup-surface.d.ts.map +1 -1
- package/dist/inline/threadreply-command.d.ts +31 -0
- package/dist/inline/threadreply-command.d.ts.map +1 -1
- package/dist/runtime-register-api.js +304 -165
- package/dist/runtime-register-api.js.map +7 -7
- package/dist/setup-plugin-api.js +23 -13
- package/dist/setup-plugin-api.js.map +6 -6
- package/openclaw.plugin.json +3 -3
- package/package.json +1 -1
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
|
-
-
|
|
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(
|
|
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=
|
|
15026
|
+
//# debugId=686AF72F08E2E13764756E2164756E21
|
|
15025
15027
|
//# sourceMappingURL=account-inspect-api.js.map
|