@builderbot/provider-wppconnect 1.3.2-y.0 → 1.3.3

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
@@ -12286,7 +12286,8 @@ function checkParentPathsSync (src, srcStat, dest, funcName) {
12286
12286
  }
12287
12287
 
12288
12288
  function areIdentical$2 (srcStat, destStat) {
12289
- return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
12289
+ // stat.dev can be 0n on windows when node version >= 22.x.x
12290
+ return destStat.ino !== undefined && destStat.dev !== undefined && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev
12290
12291
  }
12291
12292
 
12292
12293
  // return true if dest is a subdir of src, otherwise false.
@@ -13168,16 +13169,16 @@ function writeFileSync (file, obj, options = {}) {
13168
13169
  return fs.writeFileSync(file, str, options)
13169
13170
  }
13170
13171
 
13171
- const jsonfile$1 = {
13172
+ // NOTE: do not change this export format; required for ESM compat
13173
+ // see https://github.com/jprichardson/node-jsonfile/pull/162 for details
13174
+ var jsonfile$1 = {
13172
13175
  readFile,
13173
13176
  readFileSync,
13174
13177
  writeFile,
13175
13178
  writeFileSync
13176
13179
  };
13177
13180
 
13178
- var jsonfile_1 = jsonfile$1;
13179
-
13180
- const jsonFile$1 = jsonfile_1;
13181
+ const jsonFile$1 = jsonfile$1;
13181
13182
 
13182
13183
  var jsonfile = {
13183
13184
  // jsonfile exports
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builderbot/provider-wppconnect",
3
- "version": "1.3.2-y.0",
3
+ "version": "1.3.3",
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>",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "homepage": "https://github.com/codigoencasa/bot-whatsapp#readme",
28
28
  "devDependencies": {
29
- "@builderbot/bot": "^1.3.2-y.0",
29
+ "@builderbot/bot": "1.3.2-y.0",
30
30
  "@rollup/plugin-commonjs": "^25.0.7",
31
31
  "@rollup/plugin-json": "^6.1.0",
32
32
  "@rollup/plugin-node-resolve": "^15.2.3",
@@ -55,5 +55,5 @@
55
55
  "polka": "^0.5.2",
56
56
  "sharp": "0.33.3"
57
57
  },
58
- "gitHead": "244b463082570e8b48813803df74f34392205d44"
58
+ "gitHead": "8c3712b1fa4ffdaf7999b6f64a566cde74d67d69"
59
59
  }