@builderbot/provider-evolution-api 1.3.13 → 1.3.14-alpha.148
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.
- package/dist/index.cjs +51 -51
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -12006,7 +12006,7 @@ var mimeDb = require$$0;
|
|
|
12006
12006
|
* MIT Licensed
|
|
12007
12007
|
*/
|
|
12008
12008
|
|
|
12009
|
-
(function (exports) {
|
|
12009
|
+
(function (exports$1) {
|
|
12010
12010
|
|
|
12011
12011
|
/**
|
|
12012
12012
|
* Module dependencies.
|
|
@@ -12029,16 +12029,16 @@ var mimeDb = require$$0;
|
|
|
12029
12029
|
* @public
|
|
12030
12030
|
*/
|
|
12031
12031
|
|
|
12032
|
-
exports.charset = charset;
|
|
12033
|
-
exports.charsets = { lookup: charset };
|
|
12034
|
-
exports.contentType = contentType;
|
|
12035
|
-
exports.extension = extension;
|
|
12036
|
-
exports.extensions = Object.create(null);
|
|
12037
|
-
exports.lookup = lookup;
|
|
12038
|
-
exports.types = Object.create(null);
|
|
12032
|
+
exports$1.charset = charset;
|
|
12033
|
+
exports$1.charsets = { lookup: charset };
|
|
12034
|
+
exports$1.contentType = contentType;
|
|
12035
|
+
exports$1.extension = extension;
|
|
12036
|
+
exports$1.extensions = Object.create(null);
|
|
12037
|
+
exports$1.lookup = lookup;
|
|
12038
|
+
exports$1.types = Object.create(null);
|
|
12039
12039
|
|
|
12040
12040
|
// Populate the extensions/types maps
|
|
12041
|
-
populateMaps(exports.extensions, exports.types);
|
|
12041
|
+
populateMaps(exports$1.extensions, exports$1.types);
|
|
12042
12042
|
|
|
12043
12043
|
/**
|
|
12044
12044
|
* Get the default charset for a MIME type.
|
|
@@ -12082,7 +12082,7 @@ var mimeDb = require$$0;
|
|
|
12082
12082
|
}
|
|
12083
12083
|
|
|
12084
12084
|
var mime = str.indexOf('/') === -1
|
|
12085
|
-
? exports.lookup(str)
|
|
12085
|
+
? exports$1.lookup(str)
|
|
12086
12086
|
: str;
|
|
12087
12087
|
|
|
12088
12088
|
if (!mime) {
|
|
@@ -12091,7 +12091,7 @@ var mimeDb = require$$0;
|
|
|
12091
12091
|
|
|
12092
12092
|
// TODO: use content-type or other module
|
|
12093
12093
|
if (mime.indexOf('charset') === -1) {
|
|
12094
|
-
var charset = exports.charset(mime);
|
|
12094
|
+
var charset = exports$1.charset(mime);
|
|
12095
12095
|
if (charset) mime += '; charset=' + charset.toLowerCase();
|
|
12096
12096
|
}
|
|
12097
12097
|
|
|
@@ -12114,7 +12114,7 @@ var mimeDb = require$$0;
|
|
|
12114
12114
|
var match = EXTRACT_TYPE_REGEXP.exec(type);
|
|
12115
12115
|
|
|
12116
12116
|
// get extensions
|
|
12117
|
-
var exts = match && exports.extensions[match[1].toLowerCase()];
|
|
12117
|
+
var exts = match && exports$1.extensions[match[1].toLowerCase()];
|
|
12118
12118
|
|
|
12119
12119
|
if (!exts || !exts.length) {
|
|
12120
12120
|
return false
|
|
@@ -12144,7 +12144,7 @@ var mimeDb = require$$0;
|
|
|
12144
12144
|
return false
|
|
12145
12145
|
}
|
|
12146
12146
|
|
|
12147
|
-
return exports.types[extension] || false
|
|
12147
|
+
return exports$1.types[extension] || false
|
|
12148
12148
|
}
|
|
12149
12149
|
|
|
12150
12150
|
/**
|
|
@@ -15769,17 +15769,17 @@ var hasRequiredBrowser;
|
|
|
15769
15769
|
function requireBrowser () {
|
|
15770
15770
|
if (hasRequiredBrowser) return browser.exports;
|
|
15771
15771
|
hasRequiredBrowser = 1;
|
|
15772
|
-
(function (module, exports) {
|
|
15772
|
+
(function (module, exports$1) {
|
|
15773
15773
|
/**
|
|
15774
15774
|
* This is the web browser implementation of `debug()`.
|
|
15775
15775
|
*/
|
|
15776
15776
|
|
|
15777
|
-
exports.formatArgs = formatArgs;
|
|
15778
|
-
exports.save = save;
|
|
15779
|
-
exports.load = load;
|
|
15780
|
-
exports.useColors = useColors;
|
|
15781
|
-
exports.storage = localstorage();
|
|
15782
|
-
exports.destroy = (() => {
|
|
15777
|
+
exports$1.formatArgs = formatArgs;
|
|
15778
|
+
exports$1.save = save;
|
|
15779
|
+
exports$1.load = load;
|
|
15780
|
+
exports$1.useColors = useColors;
|
|
15781
|
+
exports$1.storage = localstorage();
|
|
15782
|
+
exports$1.destroy = (() => {
|
|
15783
15783
|
let warned = false;
|
|
15784
15784
|
|
|
15785
15785
|
return () => {
|
|
@@ -15794,7 +15794,7 @@ function requireBrowser () {
|
|
|
15794
15794
|
* Colors.
|
|
15795
15795
|
*/
|
|
15796
15796
|
|
|
15797
|
-
exports.colors = [
|
|
15797
|
+
exports$1.colors = [
|
|
15798
15798
|
'#0000CC',
|
|
15799
15799
|
'#0000FF',
|
|
15800
15800
|
'#0033CC',
|
|
@@ -15959,7 +15959,7 @@ function requireBrowser () {
|
|
|
15959
15959
|
*
|
|
15960
15960
|
* @api public
|
|
15961
15961
|
*/
|
|
15962
|
-
exports.log = console.debug || console.log || (() => {});
|
|
15962
|
+
exports$1.log = console.debug || console.log || (() => {});
|
|
15963
15963
|
|
|
15964
15964
|
/**
|
|
15965
15965
|
* Save `namespaces`.
|
|
@@ -15970,9 +15970,9 @@ function requireBrowser () {
|
|
|
15970
15970
|
function save(namespaces) {
|
|
15971
15971
|
try {
|
|
15972
15972
|
if (namespaces) {
|
|
15973
|
-
exports.storage.setItem('debug', namespaces);
|
|
15973
|
+
exports$1.storage.setItem('debug', namespaces);
|
|
15974
15974
|
} else {
|
|
15975
|
-
exports.storage.removeItem('debug');
|
|
15975
|
+
exports$1.storage.removeItem('debug');
|
|
15976
15976
|
}
|
|
15977
15977
|
} catch (error) {
|
|
15978
15978
|
// Swallow
|
|
@@ -15989,7 +15989,7 @@ function requireBrowser () {
|
|
|
15989
15989
|
function load() {
|
|
15990
15990
|
let r;
|
|
15991
15991
|
try {
|
|
15992
|
-
r = exports.storage.getItem('debug') || exports.storage.getItem('DEBUG') ;
|
|
15992
|
+
r = exports$1.storage.getItem('debug') || exports$1.storage.getItem('DEBUG') ;
|
|
15993
15993
|
} catch (error) {
|
|
15994
15994
|
// Swallow
|
|
15995
15995
|
// XXX (@Qix-) should we be logging these?
|
|
@@ -16025,7 +16025,7 @@ function requireBrowser () {
|
|
|
16025
16025
|
}
|
|
16026
16026
|
}
|
|
16027
16027
|
|
|
16028
|
-
module.exports = requireCommon()(exports);
|
|
16028
|
+
module.exports = requireCommon()(exports$1);
|
|
16029
16029
|
|
|
16030
16030
|
const {formatters} = module.exports;
|
|
16031
16031
|
|
|
@@ -16214,7 +16214,7 @@ var hasRequiredNode;
|
|
|
16214
16214
|
function requireNode () {
|
|
16215
16215
|
if (hasRequiredNode) return node.exports;
|
|
16216
16216
|
hasRequiredNode = 1;
|
|
16217
|
-
(function (module, exports) {
|
|
16217
|
+
(function (module, exports$1) {
|
|
16218
16218
|
const tty = require$$1$2;
|
|
16219
16219
|
const util = require$$1;
|
|
16220
16220
|
|
|
@@ -16222,13 +16222,13 @@ function requireNode () {
|
|
|
16222
16222
|
* This is the Node.js implementation of `debug()`.
|
|
16223
16223
|
*/
|
|
16224
16224
|
|
|
16225
|
-
exports.init = init;
|
|
16226
|
-
exports.log = log;
|
|
16227
|
-
exports.formatArgs = formatArgs;
|
|
16228
|
-
exports.save = save;
|
|
16229
|
-
exports.load = load;
|
|
16230
|
-
exports.useColors = useColors;
|
|
16231
|
-
exports.destroy = util.deprecate(
|
|
16225
|
+
exports$1.init = init;
|
|
16226
|
+
exports$1.log = log;
|
|
16227
|
+
exports$1.formatArgs = formatArgs;
|
|
16228
|
+
exports$1.save = save;
|
|
16229
|
+
exports$1.load = load;
|
|
16230
|
+
exports$1.useColors = useColors;
|
|
16231
|
+
exports$1.destroy = util.deprecate(
|
|
16232
16232
|
() => {},
|
|
16233
16233
|
'Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'
|
|
16234
16234
|
);
|
|
@@ -16237,7 +16237,7 @@ function requireNode () {
|
|
|
16237
16237
|
* Colors.
|
|
16238
16238
|
*/
|
|
16239
16239
|
|
|
16240
|
-
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
16240
|
+
exports$1.colors = [6, 2, 3, 4, 5, 1];
|
|
16241
16241
|
|
|
16242
16242
|
try {
|
|
16243
16243
|
// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
|
|
@@ -16245,7 +16245,7 @@ function requireNode () {
|
|
|
16245
16245
|
const supportsColor = requireSupportsColor();
|
|
16246
16246
|
|
|
16247
16247
|
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
16248
|
-
exports.colors = [
|
|
16248
|
+
exports$1.colors = [
|
|
16249
16249
|
20,
|
|
16250
16250
|
21,
|
|
16251
16251
|
26,
|
|
@@ -16334,7 +16334,7 @@ function requireNode () {
|
|
|
16334
16334
|
* $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js
|
|
16335
16335
|
*/
|
|
16336
16336
|
|
|
16337
|
-
exports.inspectOpts = Object.keys(process.env).filter(key => {
|
|
16337
|
+
exports$1.inspectOpts = Object.keys(process.env).filter(key => {
|
|
16338
16338
|
return /^debug_/i.test(key);
|
|
16339
16339
|
}).reduce((obj, key) => {
|
|
16340
16340
|
// Camel-case
|
|
@@ -16366,8 +16366,8 @@ function requireNode () {
|
|
|
16366
16366
|
*/
|
|
16367
16367
|
|
|
16368
16368
|
function useColors() {
|
|
16369
|
-
return 'colors' in exports.inspectOpts ?
|
|
16370
|
-
Boolean(exports.inspectOpts.colors) :
|
|
16369
|
+
return 'colors' in exports$1.inspectOpts ?
|
|
16370
|
+
Boolean(exports$1.inspectOpts.colors) :
|
|
16371
16371
|
tty.isatty(process.stderr.fd);
|
|
16372
16372
|
}
|
|
16373
16373
|
|
|
@@ -16393,7 +16393,7 @@ function requireNode () {
|
|
|
16393
16393
|
}
|
|
16394
16394
|
|
|
16395
16395
|
function getDate() {
|
|
16396
|
-
if (exports.inspectOpts.hideDate) {
|
|
16396
|
+
if (exports$1.inspectOpts.hideDate) {
|
|
16397
16397
|
return '';
|
|
16398
16398
|
}
|
|
16399
16399
|
return new Date().toISOString() + ' ';
|
|
@@ -16404,7 +16404,7 @@ function requireNode () {
|
|
|
16404
16404
|
*/
|
|
16405
16405
|
|
|
16406
16406
|
function log(...args) {
|
|
16407
|
-
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + '\n');
|
|
16407
|
+
return process.stderr.write(util.formatWithOptions(exports$1.inspectOpts, ...args) + '\n');
|
|
16408
16408
|
}
|
|
16409
16409
|
|
|
16410
16410
|
/**
|
|
@@ -16444,13 +16444,13 @@ function requireNode () {
|
|
|
16444
16444
|
function init(debug) {
|
|
16445
16445
|
debug.inspectOpts = {};
|
|
16446
16446
|
|
|
16447
|
-
const keys = Object.keys(exports.inspectOpts);
|
|
16447
|
+
const keys = Object.keys(exports$1.inspectOpts);
|
|
16448
16448
|
for (let i = 0; i < keys.length; i++) {
|
|
16449
|
-
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
16449
|
+
debug.inspectOpts[keys[i]] = exports$1.inspectOpts[keys[i]];
|
|
16450
16450
|
}
|
|
16451
16451
|
}
|
|
16452
16452
|
|
|
16453
|
-
module.exports = requireCommon()(exports);
|
|
16453
|
+
module.exports = requireCommon()(exports$1);
|
|
16454
16454
|
|
|
16455
16455
|
const {formatters} = module.exports;
|
|
16456
16456
|
|
|
@@ -17011,7 +17011,7 @@ RedirectableRequest.prototype._processResponse = function (response) {
|
|
|
17011
17011
|
// Wraps the key/value object of protocols with redirect functionality
|
|
17012
17012
|
function wrap(protocols) {
|
|
17013
17013
|
// Default settings
|
|
17014
|
-
var exports = {
|
|
17014
|
+
var exports$1 = {
|
|
17015
17015
|
maxRedirects: 21,
|
|
17016
17016
|
maxBodyLength: 10 * 1024 * 1024,
|
|
17017
17017
|
};
|
|
@@ -17021,7 +17021,7 @@ function wrap(protocols) {
|
|
|
17021
17021
|
Object.keys(protocols).forEach(function (scheme) {
|
|
17022
17022
|
var protocol = scheme + ":";
|
|
17023
17023
|
var nativeProtocol = nativeProtocols[protocol] = protocols[scheme];
|
|
17024
|
-
var wrappedProtocol = exports[scheme] = Object.create(nativeProtocol);
|
|
17024
|
+
var wrappedProtocol = exports$1[scheme] = Object.create(nativeProtocol);
|
|
17025
17025
|
|
|
17026
17026
|
// Executes a request, following redirects
|
|
17027
17027
|
function request(input, options, callback) {
|
|
@@ -17044,8 +17044,8 @@ function wrap(protocols) {
|
|
|
17044
17044
|
|
|
17045
17045
|
// Set defaults
|
|
17046
17046
|
options = Object.assign({
|
|
17047
|
-
maxRedirects: exports.maxRedirects,
|
|
17048
|
-
maxBodyLength: exports.maxBodyLength,
|
|
17047
|
+
maxRedirects: exports$1.maxRedirects,
|
|
17048
|
+
maxBodyLength: exports$1.maxBodyLength,
|
|
17049
17049
|
}, input, options);
|
|
17050
17050
|
options.nativeProtocols = nativeProtocols;
|
|
17051
17051
|
if (!isString(options.host) && !isString(options.hostname)) {
|
|
@@ -17070,7 +17070,7 @@ function wrap(protocols) {
|
|
|
17070
17070
|
get: { value: get, configurable: true, enumerable: true, writable: true },
|
|
17071
17071
|
});
|
|
17072
17072
|
});
|
|
17073
|
-
return exports;
|
|
17073
|
+
return exports$1;
|
|
17074
17074
|
}
|
|
17075
17075
|
|
|
17076
17076
|
function noop() { /* empty */ }
|
|
@@ -20287,8 +20287,8 @@ const {
|
|
|
20287
20287
|
|
|
20288
20288
|
var dist = {exports: {}};
|
|
20289
20289
|
|
|
20290
|
-
(function (module, exports) {
|
|
20291
|
-
var _events=_interopRequireDefault(require$$0$3);Object.defineProperty(exports,"__esModule",{value:true}),exports.default=void 0;function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}function ownKeys(a,b){var c=Object.keys(a);if(Object.getOwnPropertySymbols){var d=Object.getOwnPropertySymbols(a);b&&(d=d.filter(function(b){return Object.getOwnPropertyDescriptor(a,b).enumerable})),c.push.apply(c,d);}return c}function _objectSpread(a){for(var b,c=1;c<arguments.length;c++)b=null==arguments[c]?{}:arguments[c],c%2?ownKeys(Object(b),true).forEach(function(c){_defineProperty(a,c,b[c]);}):Object.getOwnPropertyDescriptors?Object.defineProperties(a,Object.getOwnPropertyDescriptors(b)):ownKeys(Object(b)).forEach(function(c){Object.defineProperty(a,c,Object.getOwnPropertyDescriptor(b,c));});return a}function _defineProperty(a,b,c){return b in a?Object.defineProperty(a,b,{value:c,enumerable:true,configurable:true,writable:true}):a[b]=c,a}const State={IDLE:0,RUNNING:1,STOPPED:2};class Queue extends _events.default{constructor(a={}){super(),_defineProperty(this,"tasks",new Map),_defineProperty(this,"uniqueId",0),_defineProperty(this,"lastRan",0),_defineProperty(this,"currentlyHandled",0),_defineProperty(this,"state",State.IDLE),_defineProperty(this,"options",{concurrent:5,interval:500,start:true}),this.options=_objectSpread(_objectSpread({},this.options),a),this.options.interval=parseInt(this.options.interval,10),this.options.concurrent=parseInt(this.options.concurrent,10);}start(){this.state===State.RUNNING||this.isEmpty||(this.state=State.RUNNING,this.emit("start"),(async()=>{for(;this.shouldRun;)await this.dequeue();})());}stop(){clearTimeout(this.timeoutId),this.state=State.STOPPED,this.emit("stop");}finalize(){this.currentlyHandled-=1,0===this.currentlyHandled&&this.isEmpty&&(this.stop(),this.state=State.IDLE,this.emit("end"));}async execute(){const a=[];this.tasks.forEach((b,c)=>{this.currentlyHandled<this.options.concurrent&&(this.currentlyHandled++,this.tasks.delete(c),a.push(Promise.resolve(b()).then(a=>(this.emit("resolve",a),a)).catch(a=>(this.emit("reject",a),a)).finally(()=>{this.emit("dequeue"),this.finalize();})));});const b=await Promise.all(a);return 1===this.options.concurrent?b[0]:b}dequeue(){const{interval:a}=this.options;return new Promise(b=>{const c=Math.max(0,a-(Date.now()-this.lastRan));clearTimeout(this.timeoutId),this.timeoutId=setTimeout(()=>{this.lastRan=Date.now(),this.execute().then(b);},c);})}enqueue(a){if(Array.isArray(a))return void a.map(a=>this.enqueue(a));if("function"!=typeof a)throw new Error(`You must provide a function, not ${typeof a}.`);this.uniqueId=(this.uniqueId+1)%Number.MAX_SAFE_INTEGER,this.tasks.set(this.uniqueId,a),this.options.start&&this.state!==State.STOPPED&&this.start();}add(a){this.enqueue(a);}clear(){this.tasks.clear();}get size(){return this.tasks.size}get isEmpty(){return 0===this.size}get shouldRun(){return !this.isEmpty&&this.state!==State.STOPPED}}exports.default=Queue,module.exports=exports.default;
|
|
20290
|
+
(function (module, exports$1) {
|
|
20291
|
+
var _events=_interopRequireDefault(require$$0$3);Object.defineProperty(exports$1,"__esModule",{value:true}),exports$1.default=void 0;function _interopRequireDefault(a){return a&&a.__esModule?a:{default:a}}function ownKeys(a,b){var c=Object.keys(a);if(Object.getOwnPropertySymbols){var d=Object.getOwnPropertySymbols(a);b&&(d=d.filter(function(b){return Object.getOwnPropertyDescriptor(a,b).enumerable})),c.push.apply(c,d);}return c}function _objectSpread(a){for(var b,c=1;c<arguments.length;c++)b=null==arguments[c]?{}:arguments[c],c%2?ownKeys(Object(b),true).forEach(function(c){_defineProperty(a,c,b[c]);}):Object.getOwnPropertyDescriptors?Object.defineProperties(a,Object.getOwnPropertyDescriptors(b)):ownKeys(Object(b)).forEach(function(c){Object.defineProperty(a,c,Object.getOwnPropertyDescriptor(b,c));});return a}function _defineProperty(a,b,c){return b in a?Object.defineProperty(a,b,{value:c,enumerable:true,configurable:true,writable:true}):a[b]=c,a}const State={IDLE:0,RUNNING:1,STOPPED:2};class Queue extends _events.default{constructor(a={}){super(),_defineProperty(this,"tasks",new Map),_defineProperty(this,"uniqueId",0),_defineProperty(this,"lastRan",0),_defineProperty(this,"currentlyHandled",0),_defineProperty(this,"state",State.IDLE),_defineProperty(this,"options",{concurrent:5,interval:500,start:true}),this.options=_objectSpread(_objectSpread({},this.options),a),this.options.interval=parseInt(this.options.interval,10),this.options.concurrent=parseInt(this.options.concurrent,10);}start(){this.state===State.RUNNING||this.isEmpty||(this.state=State.RUNNING,this.emit("start"),(async()=>{for(;this.shouldRun;)await this.dequeue();})());}stop(){clearTimeout(this.timeoutId),this.state=State.STOPPED,this.emit("stop");}finalize(){this.currentlyHandled-=1,0===this.currentlyHandled&&this.isEmpty&&(this.stop(),this.state=State.IDLE,this.emit("end"));}async execute(){const a=[];this.tasks.forEach((b,c)=>{this.currentlyHandled<this.options.concurrent&&(this.currentlyHandled++,this.tasks.delete(c),a.push(Promise.resolve(b()).then(a=>(this.emit("resolve",a),a)).catch(a=>(this.emit("reject",a),a)).finally(()=>{this.emit("dequeue"),this.finalize();})));});const b=await Promise.all(a);return 1===this.options.concurrent?b[0]:b}dequeue(){const{interval:a}=this.options;return new Promise(b=>{const c=Math.max(0,a-(Date.now()-this.lastRan));clearTimeout(this.timeoutId),this.timeoutId=setTimeout(()=>{this.lastRan=Date.now(),this.execute().then(b);},c);})}enqueue(a){if(Array.isArray(a))return void a.map(a=>this.enqueue(a));if("function"!=typeof a)throw new Error(`You must provide a function, not ${typeof a}.`);this.uniqueId=(this.uniqueId+1)%Number.MAX_SAFE_INTEGER,this.tasks.set(this.uniqueId,a),this.options.start&&this.state!==State.STOPPED&&this.start();}add(a){this.enqueue(a);}clear(){this.tasks.clear();}get size(){return this.tasks.size}get isEmpty(){return 0===this.size}get shouldRun(){return !this.isEmpty&&this.state!==State.STOPPED}}exports$1.default=Queue,module.exports=exports$1.default;
|
|
20292
20292
|
} (dist, dist.exports));
|
|
20293
20293
|
|
|
20294
20294
|
var distExports = dist.exports;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@builderbot/provider-evolution-api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.14-alpha.148",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "aurik3 <aurik3@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/aurik3/bot-whatsapp#readme",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"queue-promise": "^2.2.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@builderbot/bot": "1.3.
|
|
43
|
+
"@builderbot/bot": "1.3.14-alpha.148",
|
|
44
44
|
"@jest/globals": "^29.7.0",
|
|
45
45
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
46
46
|
"@rollup/plugin-json": "^6.1.0",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"tslib": "^2.6.2",
|
|
66
66
|
"tsm": "^2.3.0"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "b19327254ea841420d7487c96cf5dadd054ea65c"
|
|
69
69
|
}
|