@xfey/tutti 0.1.112 → 0.1.113

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.
@@ -85,6 +85,9 @@ export function ingestTrustedConversationSource(options) {
85
85
  retryable: true,
86
86
  reason_code: "integration_clarification_unsupported",
87
87
  };
88
+ // Feishu replies may automatically mention Tutti. Directed round input is an
89
+ // answer, not an implicit Q&A request; retain its text but omit the assistant.
90
+ // Browser round composers and ordinary main-chat mentions keep their own path.
88
91
  const response = ingestClarificationMessage({
89
92
  store: options.store,
90
93
  controlPlane: options.controlPlane,
@@ -101,7 +104,6 @@ export function ingestTrustedConversationSource(options) {
101
104
  external_message_ref: source.locator.message_ref,
102
105
  },
103
106
  afterCreate: (tx, message) => insertExternalSourceEvidence(tx, options.command, message),
104
- ...(options.chatAssistant === undefined ? {} : { chatAssistant: options.chatAssistant }),
105
107
  ...(options.now === undefined ? {} : { now: options.now }),
106
108
  });
107
109
  if (response.disposition.kind === "created" && response.result?.message !== undefined)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfey/tutti",
3
- "version": "0.1.112",
3
+ "version": "0.1.113",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",