@xfxstudio/claworld 2026.6.3-testing.3 → 2026.6.4

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.
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "name": "Claworld Persona Relay",
19
19
  "description": "Claworld relay world channel plugin for OpenClaw.",
20
- "version": "2026.6.3-testing.3",
20
+ "version": "2026.6.4",
21
21
  "configSchema": {
22
22
  "type": "object",
23
23
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfxstudio/claworld",
3
- "version": "2026.6.3-testing.3",
3
+ "version": "2026.6.4",
4
4
  "description": "Claworld channel plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1687,7 +1687,6 @@ async function executeRuntimeAccountAction({
1687
1687
  contactable = undefined,
1688
1688
  chatRequestApprovalPolicy = null,
1689
1689
  proactivitySettings = undefined,
1690
- communicationPreference = undefined,
1691
1690
  generateShareCard = false,
1692
1691
  expiresInSeconds = null,
1693
1692
  fetchImpl,
@@ -1723,7 +1722,6 @@ async function executeRuntimeAccountAction({
1723
1722
  ...(contactable !== undefined ? { contactable } : {}),
1724
1723
  ...(chatRequestApprovalPolicy ? { chatRequestApprovalPolicy } : {}),
1725
1724
  ...(proactivitySettings !== undefined ? { proactivitySettings } : {}),
1726
- ...(communicationPreference !== undefined ? { communicationPreference } : {}),
1727
1725
  ...(generateShareCard === true ? { generateShareCard: true } : {}),
1728
1726
  ...(normalizeClaworldInteger(expiresInSeconds, null) > 0
1729
1727
  ? { expiresInSeconds: normalizeClaworldInteger(expiresInSeconds, null) }
@@ -4369,7 +4367,6 @@ async function generateRuntimeProfileCard(context = {}) {
4369
4367
  contactable: Object.prototype.hasOwnProperty.call(context, 'contactable') ? context.contactable : undefined,
4370
4368
  chatRequestApprovalPolicy: context.chatRequestApprovalPolicy || null,
4371
4369
  proactivitySettings: Object.prototype.hasOwnProperty.call(context, 'proactivitySettings') ? context.proactivitySettings : undefined,
4372
- communicationPreference: Object.prototype.hasOwnProperty.call(context, 'communicationPreference') ? context.communicationPreference : undefined,
4373
4370
  generateShareCard: context.generateShareCard === true,
4374
4371
  expiresInSeconds: context.expiresInSeconds ?? null,
4375
4372
  fetchImpl,
@@ -4753,7 +4750,6 @@ async function generateRuntimeProfileCard(context = {}) {
4753
4750
  contactable: Object.prototype.hasOwnProperty.call(context, 'contactable') ? context.contactable : undefined,
4754
4751
  chatRequestApprovalPolicy: context.chatRequestApprovalPolicy || null,
4755
4752
  proactivitySettings: Object.prototype.hasOwnProperty.call(context, 'proactivitySettings') ? context.proactivitySettings : undefined,
4756
- communicationPreference: Object.prototype.hasOwnProperty.call(context, 'communicationPreference') ? context.communicationPreference : undefined,
4757
4753
  generateShareCard: context.generateShareCard === true,
4758
4754
  expiresInSeconds: context.expiresInSeconds ?? null,
4759
4755
  fetchImpl,
@@ -490,10 +490,6 @@ function createTerminalToolAdapters(api, plugin, internalTools) {
490
490
  description: 'Account-level proactive-management settings.',
491
491
  additionalProperties: true,
492
492
  }),
493
- communicationPreference: objectParam({
494
- description: 'Optional account-level communication preference settings.',
495
- additionalProperties: true,
496
- }),
497
493
  targetAgentId: stringParam({
498
494
  description: 'Target agent id for subscribe_person or unsubscribe_person.',
499
495
  minLength: 1,
@@ -583,7 +579,6 @@ function createTerminalToolAdapters(api, plugin, internalTools) {
583
579
  contactable: params.contactable,
584
580
  chatRequestApprovalPolicy: params.chatRequestApprovalPolicy || null,
585
581
  proactivitySettings: params.proactivitySettings,
586
- communicationPreference: params.communicationPreference,
587
582
  generateShareCard,
588
583
  expiresInSeconds: params.expiresInSeconds ?? null,
589
584
  });