@builderbot/provider-web-whatsapp 1.3.2-y.0 → 1.3.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.
Files changed (2) hide show
  1. package/dist/index.cjs +6 -5
  2. package/package.json +3 -3
package/dist/index.cjs CHANGED
@@ -12289,7 +12289,8 @@ function checkParentPathsSync (src, srcStat, dest, funcName) {
12289
12289
  }
12290
12290
 
12291
12291
  function areIdentical$2 (srcStat, destStat) {
12292
- return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
12292
+ // stat.dev can be 0n on windows when node version >= 22.x.x
12293
+ return destStat.ino !== undefined && destStat.dev !== undefined && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
12293
12294
  }
12294
12295
 
12295
12296
  // return true if dest is a subdir of src, otherwise false.
@@ -13171,16 +13172,16 @@ function writeFileSync (file, obj, options = {}) {
13171
13172
  return fs.writeFileSync(file, str, options)
13172
13173
  }
13173
13174
 
13174
- const jsonfile$1 = {
13175
+ // NOTE: do not change this export format; required for ESM compat
13176
+ // see https://github.com/jprichardson/node-jsonfile/pull/162 for details
13177
+ var jsonfile$1 = {
13175
13178
  readFile,
13176
13179
  readFileSync,
13177
13180
  writeFile,
13178
13181
  writeFileSync
13179
13182
  };
13180
13183
 
13181
- var jsonfile_1 = jsonfile$1;
13182
-
13183
- const jsonFile$1 = jsonfile_1;
13184
+ const jsonFile$1 = jsonfile$1;
13184
13185
 
13185
13186
  var jsonfile = {
13186
13187
  // jsonfile exports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builderbot/provider-web-whatsapp",
3
- "version": "1.3.2-y.0",
3
+ "version": "1.3.4",
4
4
  "description": "Now I’m the model of a modern major general / The venerated Virginian veteran whose men are all / Lining up, to put me up on a pedestal / Writin’ letters to relatives / Embellishin’ my elegance and eloquence / But the elephant is in the room / The truth is in ya face when ya hear the British cannons go / BOOM",
5
5
  "keywords": [],
6
6
  "author": "Leifer Mendez <leifer33@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "homepage": "https://github.com/codigoencasa/bot-whatsapp#readme",
32
32
  "devDependencies": {
33
- "@builderbot/bot": "^1.3.2-y.0",
33
+ "@builderbot/bot": "1.3.2-y.0",
34
34
  "@jest/globals": "^29.7.0",
35
35
  "@rollup/plugin-commonjs": "^25.0.7",
36
36
  "@rollup/plugin-json": "^6.1.0",
@@ -56,5 +56,5 @@
56
56
  "sharp": "0.33.3",
57
57
  "whatsapp-web.js": "~1.23.0"
58
58
  },
59
- "gitHead": "244b463082570e8b48813803df74f34392205d44"
59
+ "gitHead": "cd87c245c33c8da9be9386b498d561484021c1c9"
60
60
  }