@xmoxmo/bncr 0.2.0 → 0.2.2
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 +5 -1
- package/index.ts +314 -76
- package/openclaw.plugin.json +59 -0
- package/package.json +3 -3
- package/scripts/selfcheck.mjs +35 -2
- package/src/channel.ts +530 -103
- package/src/core/config-schema.ts +6 -0
- package/src/core/types.ts +3 -0
|
@@ -43,6 +43,12 @@ export const BncrConfigSchema = {
|
|
|
43
43
|
description:
|
|
44
44
|
'Whether group messages must explicitly mention the bot before bncr handles them. Default false. Current version keeps this as a reserved field and does not enforce it yet.',
|
|
45
45
|
},
|
|
46
|
+
outboundRequireAck: {
|
|
47
|
+
type: 'boolean',
|
|
48
|
+
default: true,
|
|
49
|
+
description:
|
|
50
|
+
'Whether outbound text waits for bncr.ack before leaving the retry queue. Default true to preserve current ack/dead-letter behavior.',
|
|
51
|
+
},
|
|
46
52
|
accounts: {
|
|
47
53
|
type: 'object',
|
|
48
54
|
additionalProperties: {
|
package/src/core/types.ts
CHANGED