@melandlabs/integrations-whatsapp 0.2.0 → 0.3.0

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -6068,6 +6068,7 @@ var WhatsAppAdapter = class extends MessagePlatformAdapter {
6068
6068
  return false;
6069
6069
  }
6070
6070
  }
6071
+ // biome-ignore lint/suspicious/noExplicitAny: platform-specific opaque type
6071
6072
  async ingestMessageAttachments(msg) {
6072
6073
  if (!this.ownerUserId || !this.ownerUserType || !this.fileIngester) return [];
6073
6074
  const m = msg.message;
@@ -6102,6 +6103,7 @@ var WhatsAppAdapter = class extends MessagePlatformAdapter {
6102
6103
  const ingested = await this.fileIngester.ingestForUser({
6103
6104
  source: "whatsapp",
6104
6105
  ownerUserId: this.ownerUserId,
6106
+ // biome-ignore lint/suspicious/noExplicitAny: platform-specific opaque type
6105
6107
  ownerLocalUserType: this.ownerUserType,
6106
6108
  maxSizeBytes: WHATSAPP_MAX_ATTACHMENT_BYTES,
6107
6109
  originalFileName: fileName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melandlabs/integrations-whatsapp",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -34,14 +34,14 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@whiskeysockets/baileys": "^7.0.0-rc.9",
37
- "@melandlabs/ai": "0.2.0",
38
- "@melandlabs/integrations": "0.2.0",
39
- "@melandlabs/integrations-channels": "0.2.0"
37
+ "@melandlabs/ai": "0.3.0",
38
+ "@melandlabs/integrations": "0.3.0",
39
+ "@melandlabs/integrations-channels": "0.3.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "typescript": "^5.6.3",
43
43
  "vitest": "^2.1.8",
44
- "@melandlabs/config": "0.2.0"
44
+ "@melandlabs/config": "0.3.0"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "tsup",