@goatlab/fluent 0.5.2 → 0.5.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # 0.5.3
2
+ [2021-09-23]
3
+
4
+ ### Features
5
+
6
+ * feat: [FLUENT-1](https://goatlab.atlassian.net/browse//FLUENT-1) - Axios, Numbers and Logger ([`fdfbe90`](https://github.com/goat-io/fluent/commit/fdfbe90c45fb4f246f0cca5690c7520bf3b5b1fd))
7
+ * feat: [FLUENT-1](https://goatlab.atlassian.net/browse//FLUENT-1) - Change Axios for GOT ([`fa586c8`](https://github.com/goat-io/fluent/commit/fa586c8065463dcbfbd4dcc65be651a22c79632e))
8
+
9
+ ### Other Changes
10
+
11
+ * feat: [FLUENT-1](https://goatlab.atlassian.net/browse//FLUENT-1) - Axios, Numbers and Logger ([`fdfbe90`](https://github.com/goat-io/fluent/commit/fdfbe90c45fb4f246f0cca5690c7520bf3b5b1fd))
12
+ * feat: [FLUENT-1](https://goatlab.atlassian.net/browse//FLUENT-1) - Change Axios for GOT ([`fa586c8`](https://github.com/goat-io/fluent/commit/fa586c8065463dcbfbd4dcc65be651a22c79632e))
13
+
1
14
  # 0.5.2
2
15
  [2021-09-23]
3
16
 
@@ -9,6 +22,7 @@
9
22
 
10
23
  * add Fireabse ([`40fc92d`](https://github.com/goat-io/fluent/commit/40fc92d49fe84208fe81349b4cd60089fae732ec))
11
24
  * add Firebase docker ([`659dc68`](https://github.com/goat-io/fluent/commit/659dc68016c1447fc637092f8cce116322a8162c))
25
+ * Release 0.5.2 ([`6ea15f0`](https://github.com/goat-io/fluent/commit/6ea15f02da58e203a53e62ecd9dee48d1859919c))
12
26
  * rename bypass tests ([`a7fe354`](https://github.com/goat-io/fluent/commit/a7fe354406c2d60f49c31b5e5f627fe56fb0143c))
13
27
  * fix build ([`507bf28`](https://github.com/goat-io/fluent/commit/507bf28e796b97581a36965b4d28f7c5def83b47))
14
28
  * momentary bypass failing tests ([`4b86718`](https://github.com/goat-io/fluent/commit/4b86718dc1f67aea1c324a393bbd0847736d6701))
package/README.md CHANGED
@@ -44,7 +44,7 @@ npm install --global @goatlab/fluent
44
44
 
45
45
  ### Documentation
46
46
 
47
- To learn how to use this visit the [Goat Docs](https://docs.goatlab.io/#/0.1.0/fluent/fluent)
47
+ To learn how to use this visit the [Goat Docs](https://docs.goatlab.io/#/0.5.x/fluent/fluent)
48
48
 
49
49
  <!--
50
50
 
package/Readme.md CHANGED
@@ -44,7 +44,7 @@ npm install --global @goatlab/fluent
44
44
 
45
45
  ### Documentation
46
46
 
47
- To learn how to use this visit the [Goat Docs](https://docs.goatlab.io/#/0.1.0/fluent/fluent)
47
+ To learn how to use this visit the [Goat Docs](https://docs.goatlab.io/#/0.5.x/fluent/fluent)
48
48
 
49
49
  <!--
50
50
 
@@ -0,0 +1,2 @@
1
+ import type { Options } from 'got';
2
+ export declare function Got(opt?: Options): import("got").Got;
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.Got = void 0;
23
+ const got_1 = __importStar(require("got"));
24
+ function Got(opt = {}) {
25
+ var _a;
26
+ return got_1.default.extend(Object.assign(Object.assign({ timeout: 90000 }, opt), { hooks: Object.assign(Object.assign({}, opt.hooks), { beforeError: [...(((_a = opt.hooks) === null || _a === void 0 ? void 0 : _a.beforeError) || []), ParseErrorHook()] }) }));
27
+ }
28
+ exports.Got = Got;
29
+ function ParseErrorHook() {
30
+ return error => {
31
+ if (error instanceof got_1.HTTPError) {
32
+ const { statusCode } = error.response;
33
+ const { method, url } = error.options;
34
+ const body = error.response.body;
35
+ error.message = [
36
+ [statusCode, method, url].filter(Boolean).join(' '),
37
+ body
38
+ ]
39
+ .filter(Boolean)
40
+ .join('\n');
41
+ }
42
+ return error;
43
+ };
44
+ }
45
+ //# sourceMappingURL=Got.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Got.js","sourceRoot":"","sources":["../../src/Helpers/Got.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAoC;AAGpC,SAAgB,GAAG,CAAC,MAAe,EAAE;;IACnC,OAAO,aAAG,CAAC,MAAM,+BACf,OAAO,EAAE,KAAK,IACX,GAAG,KACN,KAAK,kCACA,GAAG,CAAC,KAAK,KACZ,WAAW,EAAE,CAAC,GAAG,CAAC,CAAA,MAAA,GAAG,CAAC,KAAK,0CAAE,WAAW,KAAI,EAAE,CAAC,EAAE,cAAc,EAAE,CAAC,OAEpE,CAAA;AACJ,CAAC;AATD,kBASC;AAED,SAAS,cAAc;IACrB,OAAO,KAAK,CAAC,EAAE;QACb,IAAI,KAAK,YAAY,eAAS,EAAE;YAC9B,MAAM,EAAE,UAAU,EAAE,GAAG,KAAK,CAAC,QAAQ,CAAA;YACrC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,KAAK,CAAC,OAAO,CAAA;YAErC,MAAM,IAAI,GAAG,KAAK,CAAC,QAAQ,CAAC,IAAI,CAAA;YAEhC,KAAK,CAAC,OAAO,GAAG;gBACd,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;gBACnD,IAAI;aACL;iBACE,MAAM,CAAC,OAAO,CAAC;iBACf,IAAI,CAAC,IAAI,CAAC,CAAA;SACd;QAED,OAAO,KAAK,CAAA;IACd,CAAC,CAAA;AACH,CAAC"}
@@ -0,0 +1,4 @@
1
+ export declare const Numbers: Readonly<{
2
+ isNumeric: (str: string) => boolean;
3
+ parseStringToNumber: (str: string) => string | number;
4
+ }>;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Numbers = void 0;
4
+ exports.Numbers = (() => {
5
+ const isNumeric = (str) => {
6
+ return !isNaN(parseFloat(str)) && isFinite(Number(str));
7
+ };
8
+ const parseStringToNumber = (str) => {
9
+ if (isNumeric(str)) {
10
+ return parseFloat(str);
11
+ }
12
+ return str.trim();
13
+ };
14
+ return Object.freeze({ isNumeric, parseStringToNumber });
15
+ })();
16
+ //# sourceMappingURL=Numbers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Numbers.js","sourceRoot":"","sources":["../../src/Helpers/Numbers.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,CAAC,GAAG,EAAE;IAO3B,MAAM,SAAS,GAAG,CAAC,GAAW,EAAW,EAAE;QACzC,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAA;IACzD,CAAC,CAAA;IAOD,MAAM,mBAAmB,GAAG,CAAC,GAAW,EAAmB,EAAE;QAC3D,IAAI,SAAS,CAAC,GAAG,CAAC,EAAE;YAClB,OAAO,UAAU,CAAC,GAAG,CAAC,CAAA;SACvB;QACD,OAAO,GAAG,CAAC,IAAI,EAAE,CAAA;IACnB,CAAC,CAAA;IACD,OAAO,MAAM,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,mBAAmB,EAAE,CAAC,CAAA;AAC1D,CAAC,CAAC,EAAE,CAAA"}
@@ -1,12 +1,2 @@
1
- export declare const Log: Readonly<{
2
- alert: (message: string) => any;
3
- critical: (message: string) => any;
4
- custom: (name?: string) => any;
5
- debug: (message: string) => any;
6
- emergency: (message: string) => any;
7
- error: (message: string) => any;
8
- info: (message: string) => any;
9
- log: (message: string) => any;
10
- notice: (message: string) => any;
11
- warning: (message: string) => any;
12
- }>;
1
+ import winston from 'winston';
2
+ export declare const Log: winston.Logger;
@@ -1,115 +1,20 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
6
  exports.Log = void 0;
4
- const logger = require('loglevel');
5
- const chalk = require('chalk');
6
- const prefix = require('loglevel-plugin-prefix');
7
- const colors = {
8
- DEBUG: chalk.cyan,
9
- ERROR: chalk.red,
10
- INFO: chalk.blue,
11
- TRACE: chalk.magenta,
12
- WARN: chalk.yellow
13
- };
14
- prefix.reg(logger);
15
- const getLevel = () => {
16
- const level = process.env.APP_DEBUG || 'silent';
17
- let type = 'silent';
18
- switch (level.toLowerCase()) {
19
- case 'trace':
20
- type = 'trace';
21
- break;
22
- case 'debug':
23
- type = 'debug';
24
- break;
25
- case 'info':
26
- type = 'info';
27
- break;
28
- case 'warn':
29
- type = 'warn';
30
- break;
31
- case 'error':
32
- type = 'error';
33
- break;
34
- default:
35
- type = 'silent';
36
- break;
37
- }
38
- return type;
39
- };
40
- if (getLevel() === 'silent') {
41
- logger.disableAll();
42
- }
43
- else if (getLevel() === 'trace') {
44
- logger.enableAll();
45
- }
46
- else {
47
- logger.setLevel(getLevel());
48
- }
49
- prefix.apply(logger, {
50
- format(level, name, timestamp) {
51
- return `${chalk.gray(`[${timestamp}]`)} ${colors[level.toUpperCase()](level)} ${chalk.green(`${name}:`)}`;
52
- }
53
- });
54
- prefix.apply(logger.getLogger('critical'), {
55
- format(level, name, timestamp) {
56
- return chalk.red.bold(`[${timestamp}] ${level} ${name}:`);
57
- }
58
- });
59
- prefix.apply(logger, {
60
- template: '[%t] %l (%n):',
61
- levelFormatter(level) {
62
- return colors[level.toUpperCase()](level.toUpperCase());
63
- },
64
- nameFormatter(name) {
65
- return chalk.green(`${name || 'global'}`);
66
- },
67
- timestampFormatter(date) {
68
- return chalk.gray(`[${date.toISOString()}]`);
69
- }
7
+ const winston_1 = __importDefault(require("winston"));
8
+ const { combine, timestamp, json } = winston_1.default.format;
9
+ const logger = winston_1.default.createLogger({
10
+ format: combine(timestamp(), json()),
11
+ transports: [
12
+ new winston_1.default.transports.Console({
13
+ handleExceptions: true
14
+ })
15
+ ]
70
16
  });
71
17
  exports.Log = (() => {
72
- const emergency = (message) => {
73
- return logger.getLogger('emergency').error(message);
74
- };
75
- const alert = (message) => {
76
- return logger.getLogger('alert').error(message);
77
- };
78
- const critical = (message) => {
79
- return logger.getLogger('critical').error(message);
80
- };
81
- const error = (message) => {
82
- return logger.getLogger('error').error(message);
83
- };
84
- const warning = (message) => {
85
- return logger.getLogger('warning').warn(message);
86
- };
87
- const notice = (message) => {
88
- return logger.getLogger('notice').info(message);
89
- };
90
- const info = (message) => {
91
- return logger.getLogger('info').info(message);
92
- };
93
- const debug = (message) => {
94
- return logger.getLogger('debug').debug(message);
95
- };
96
- const log = (message) => {
97
- return logger.getLogger('log').debug(message);
98
- };
99
- const custom = (name) => {
100
- return logger.getLogger(name || 'global');
101
- };
102
- return Object.freeze({
103
- alert,
104
- critical,
105
- custom,
106
- debug,
107
- emergency,
108
- error,
109
- info,
110
- log,
111
- notice,
112
- warning
113
- });
18
+ return logger;
114
19
  })();
115
20
  //# sourceMappingURL=Logger.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Logger.js","sourceRoot":"","sources":["../../src/Log/Logger.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Logger.js","sourceRoot":"","sources":["../../src/Log/Logger.ts"],"names":[],"mappings":";;;;;;AACA,sDAA6B;AAC7B,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,GAAG,iBAAO,CAAC,MAAM,CAAA;AAEnD,MAAM,MAAM,GAAG,iBAAO,CAAC,YAAY,CAAC;IAClC,MAAM,EAAE,OAAO,CAAC,SAAS,EAAE,EAAE,IAAI,EAAE,CAAC;IACpC,UAAU,EAAE;QACV,IAAI,iBAAO,CAAC,UAAU,CAAC,OAAO,CAAC;YAC7B,gBAAgB,EAAE,IAAI;SACvB,CAAC;KACH;CACF,CAAC,CAAA;AAEW,QAAA,GAAG,GAAG,CAAC,GAAG,EAAE;IACvB,OAAO,MAAM,CAAA;AACf,CAAC,CAAC,EAAE,CAAA"}
@@ -3291,9 +3291,34 @@
3291
3291
  "signature": "6c145ad6794616c1e3c11008a15a959f086b3e2e9f0b3a17068486c9e2ffaea6",
3292
3292
  "affectsGlobalScope": false
3293
3293
  },
3294
+ "../node_modules/logform/index.d.ts": {
3295
+ "version": "89c631193ed616083e1ee16611dae34d719029b77274680d0f00dbf3bb8ba998",
3296
+ "signature": "89c631193ed616083e1ee16611dae34d719029b77274680d0f00dbf3bb8ba998",
3297
+ "affectsGlobalScope": false
3298
+ },
3299
+ "../node_modules/winston-transport/index.d.ts": {
3300
+ "version": "d667ec244bc8f65d0ac176f7ea91ef9e2904e7aa10923fbbe843d19f1270593b",
3301
+ "signature": "d667ec244bc8f65d0ac176f7ea91ef9e2904e7aa10923fbbe843d19f1270593b",
3302
+ "affectsGlobalScope": false
3303
+ },
3304
+ "../node_modules/winston/lib/winston/config/index.d.ts": {
3305
+ "version": "e9c33c05be71c17c3b08988fe6755605632a09c5cdd267cede8de5558ec80027",
3306
+ "signature": "e9c33c05be71c17c3b08988fe6755605632a09c5cdd267cede8de5558ec80027",
3307
+ "affectsGlobalScope": false
3308
+ },
3309
+ "../node_modules/winston/lib/winston/transports/index.d.ts": {
3310
+ "version": "3fb6de4789fba0473c4877a4ef4ee002902ccef2b04f620caf2313e4d1b2aecc",
3311
+ "signature": "3fb6de4789fba0473c4877a4ef4ee002902ccef2b04f620caf2313e4d1b2aecc",
3312
+ "affectsGlobalScope": false
3313
+ },
3314
+ "../node_modules/winston/index.d.ts": {
3315
+ "version": "e7c0503e5da78c978e6b9c43dc5728312fa9e19943fd392eca047739e348f283",
3316
+ "signature": "e7c0503e5da78c978e6b9c43dc5728312fa9e19943fd392eca047739e348f283",
3317
+ "affectsGlobalScope": false
3318
+ },
3294
3319
  "../src/Log/Logger.ts": {
3295
- "version": "c9096c6262087419b4df69f9acaf3d5c328c78a099ee6ec70d404dcf9e47b460",
3296
- "signature": "b87584a4cd1bc490c6020282c636eddee43e4ef391aedde92d82476171244375",
3320
+ "version": "37ad27131012cc57166dc997145cc1d8d9c838b3754fb5bdc205a19a8704abc7",
3321
+ "signature": "4e2a4399ea754f3d568bdf00b32c8be19c1248939999291b6338122fc00e01cb",
3297
3322
  "affectsGlobalScope": false
3298
3323
  },
3299
3324
  "../src/Helpers/Errors.ts": {
@@ -3371,6 +3396,91 @@
3371
3396
  "signature": "ead57106aa16890fcd901b089344394e9f1ee1ebec470206fc597bde7bbc9324",
3372
3397
  "affectsGlobalScope": false
3373
3398
  },
3399
+ "../node_modules/p-cancelable/index.d.ts": {
3400
+ "version": "6bc64e37d72e60ec298911f260518ad11a875b236c237a4b4319a2c8f76a6467",
3401
+ "signature": "6bc64e37d72e60ec298911f260518ad11a875b236c237a4b4319a2c8f76a6467",
3402
+ "affectsGlobalScope": false
3403
+ },
3404
+ "../node_modules/@szmarczak/http-timer/dist/source/index.d.ts": {
3405
+ "version": "7ab735672492614a1af2098219bd191642e2bbd126e0631e13ed15e947238a51",
3406
+ "signature": "7ab735672492614a1af2098219bd191642e2bbd126e0631e13ed15e947238a51",
3407
+ "affectsGlobalScope": false
3408
+ },
3409
+ "../node_modules/cacheable-lookup/index.d.ts": {
3410
+ "version": "c77e2a25b0b7e23ad5b5087e16db5aeec6741dcc8e99b8aae1a6b58659083b6d",
3411
+ "signature": "c77e2a25b0b7e23ad5b5087e16db5aeec6741dcc8e99b8aae1a6b58659083b6d",
3412
+ "affectsGlobalScope": false
3413
+ },
3414
+ "../node_modules/@types/keyv/index.d.ts": {
3415
+ "version": "82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d",
3416
+ "signature": "82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d",
3417
+ "affectsGlobalScope": false
3418
+ },
3419
+ "../node_modules/@types/http-cache-semantics/index.d.ts": {
3420
+ "version": "cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae",
3421
+ "signature": "cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae",
3422
+ "affectsGlobalScope": false
3423
+ },
3424
+ "../node_modules/@types/responselike/index.d.ts": {
3425
+ "version": "3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971",
3426
+ "signature": "3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971",
3427
+ "affectsGlobalScope": false
3428
+ },
3429
+ "../node_modules/@types/cacheable-request/index.d.ts": {
3430
+ "version": "f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",
3431
+ "signature": "f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",
3432
+ "affectsGlobalScope": false
3433
+ },
3434
+ "../node_modules/got/dist/source/core/utils/timed-out.d.ts": {
3435
+ "version": "e40f22ef14ca35f5019e16f852366d0880e42e955c03cc25da2abe689eef679c",
3436
+ "signature": "e40f22ef14ca35f5019e16f852366d0880e42e955c03cc25da2abe689eef679c",
3437
+ "affectsGlobalScope": false
3438
+ },
3439
+ "../node_modules/got/dist/source/core/utils/options-to-url.d.ts": {
3440
+ "version": "8d12345aee8dedececa587bb31701273a3088ba4f83e866cdfa26a05b3f36a13",
3441
+ "signature": "8d12345aee8dedececa587bb31701273a3088ba4f83e866cdfa26a05b3f36a13",
3442
+ "affectsGlobalScope": false
3443
+ },
3444
+ "../node_modules/got/dist/source/core/utils/dns-ip-version.d.ts": {
3445
+ "version": "01856d31c900d93d280293d98ec9ca9be4991ab3acd3216bf985513eba3544b8",
3446
+ "signature": "01856d31c900d93d280293d98ec9ca9be4991ab3acd3216bf985513eba3544b8",
3447
+ "affectsGlobalScope": false
3448
+ },
3449
+ "../node_modules/got/dist/source/core/index.d.ts": {
3450
+ "version": "c80e5bb2264a79bafa49cc34ad04b3354a1d72c75bbf5eb6ac580e327d48995a",
3451
+ "signature": "c80e5bb2264a79bafa49cc34ad04b3354a1d72c75bbf5eb6ac580e327d48995a",
3452
+ "affectsGlobalScope": false
3453
+ },
3454
+ "../node_modules/got/dist/source/as-promise/types.d.ts": {
3455
+ "version": "2c0d8c9cdea4f41f395b91f722ea0a18451c173ead39df01e4d4e82b80d26cff",
3456
+ "signature": "2c0d8c9cdea4f41f395b91f722ea0a18451c173ead39df01e4d4e82b80d26cff",
3457
+ "affectsGlobalScope": false
3458
+ },
3459
+ "../node_modules/got/dist/source/as-promise/index.d.ts": {
3460
+ "version": "576ec53c444adac3b7725ced6240de54a04183791fe9d7cc880de11411114ff2",
3461
+ "signature": "576ec53c444adac3b7725ced6240de54a04183791fe9d7cc880de11411114ff2",
3462
+ "affectsGlobalScope": false
3463
+ },
3464
+ "../node_modules/got/dist/source/types.d.ts": {
3465
+ "version": "a23796c344ad16236b13a283af0d7d519cb9e9c9ba406bad0cd04871c6c78c95",
3466
+ "signature": "a23796c344ad16236b13a283af0d7d519cb9e9c9ba406bad0cd04871c6c78c95",
3467
+ "affectsGlobalScope": false
3468
+ },
3469
+ "../node_modules/got/dist/source/create.d.ts": {
3470
+ "version": "b3e3394b5ffa583518ace1099d5df14cb887ec1578a023116fac4a35480d2b38",
3471
+ "signature": "b3e3394b5ffa583518ace1099d5df14cb887ec1578a023116fac4a35480d2b38",
3472
+ "affectsGlobalScope": false
3473
+ },
3474
+ "../node_modules/got/dist/source/index.d.ts": {
3475
+ "version": "ac3459d91154275b1cd916f265d0151fc4a4a3b3701b1c58cb7c32ea48a7aaec",
3476
+ "signature": "ac3459d91154275b1cd916f265d0151fc4a4a3b3701b1c58cb7c32ea48a7aaec",
3477
+ "affectsGlobalScope": false
3478
+ },
3479
+ "../src/Helpers/Got.ts": {
3480
+ "version": "26d2848b43a24a9aadcc1d7d8bb30b5cb15428d94e53bf943ab8d2a8492be028",
3481
+ "signature": "3ddaca420288622df1aff20bfdd73c159d65bbe4f1f9c0c3e15b4519f6e6e649",
3482
+ "affectsGlobalScope": false
3483
+ },
3374
3484
  "../src/Helpers/Hash.ts": {
3375
3485
  "version": "4de0ecfd8451ef4d23256bfad47122de590359431a0128050a1a10a097046efd",
3376
3486
  "signature": "155632e90088f659a4100ed8843cd6dfcf3c20cabf2379795d00dcb6e3b28fc4",
@@ -3386,6 +3496,11 @@
3386
3496
  "signature": "b5bc2342f753cdfd0859be77afb7e296d5d59e586ed2ac27c80941e1e1552a13",
3387
3497
  "affectsGlobalScope": false
3388
3498
  },
3499
+ "../src/Helpers/Numbers.ts": {
3500
+ "version": "0c0898cec07c681cc99eb71cff39eb1d5bcd40c9b02ea3066c49aa6483b2a603",
3501
+ "signature": "834c6ce415ec96ff1fdf9963e8abacd79a2f1871192e4d80c97414a9e93befe8",
3502
+ "affectsGlobalScope": false
3503
+ },
3389
3504
  "../src/Helpers/Strings.ts": {
3390
3505
  "version": "199d55ef346db9bf81941e96e49c6bc5ca88cdce78fd690a8d4e1a55ac81997a",
3391
3506
  "signature": "08aae40b4bf690400d1946da15c8a5086d528bafa7e665868bcab748e4039618",
@@ -12890,6 +13005,10 @@
12890
13005
  "../node_modules/@nestjs/swagger/index.d.ts": [
12891
13006
  "../node_modules/@nestjs/swagger/dist/index.d.ts"
12892
13007
  ],
13008
+ "../node_modules/@szmarczak/http-timer/dist/source/index.d.ts": [
13009
+ "../node_modules/@types/node/http.d.ts",
13010
+ "../node_modules/@types/node/index.d.ts"
13011
+ ],
12893
13012
  "../node_modules/@ts-morph/common/lib/ts-morph-common.d.ts": [
12894
13013
  "../node_modules/@ts-morph/common/lib/typescript.d.ts"
12895
13014
  ],
@@ -12910,6 +13029,15 @@
12910
13029
  "../node_modules/@types/ioredis/index.d.ts",
12911
13030
  "../node_modules/@types/node/events.d.ts"
12912
13031
  ],
13032
+ "../node_modules/@types/cacheable-request/index.d.ts": [
13033
+ "../node_modules/@types/http-cache-semantics/index.d.ts",
13034
+ "../node_modules/@types/keyv/index.d.ts",
13035
+ "../node_modules/@types/node/events.d.ts",
13036
+ "../node_modules/@types/node/http.d.ts",
13037
+ "../node_modules/@types/node/index.d.ts",
13038
+ "../node_modules/@types/node/url.d.ts",
13039
+ "../node_modules/@types/responselike/index.d.ts"
13040
+ ],
12913
13041
  "../node_modules/@types/connect/index.d.ts": [
12914
13042
  "../node_modules/@types/node/http.d.ts",
12915
13043
  "../node_modules/@types/node/index.d.ts"
@@ -12953,6 +13081,10 @@
12953
13081
  "../node_modules/jest-diff/build/index.d.ts",
12954
13082
  "../node_modules/pretty-format/build/index.d.ts"
12955
13083
  ],
13084
+ "../node_modules/@types/keyv/index.d.ts": [
13085
+ "../node_modules/@types/node/events.d.ts",
13086
+ "../node_modules/@types/node/index.d.ts"
13087
+ ],
12956
13088
  "../node_modules/@types/koa-compose/index.d.ts": [
12957
13089
  "../node_modules/@types/koa/index.d.ts"
12958
13090
  ],
@@ -13176,6 +13308,11 @@
13176
13308
  "../node_modules/@types/node/zlib.d.ts": [
13177
13309
  "../node_modules/@types/node/stream.d.ts"
13178
13310
  ],
13311
+ "../node_modules/@types/responselike/index.d.ts": [
13312
+ "../node_modules/@types/node/http.d.ts",
13313
+ "../node_modules/@types/node/index.d.ts",
13314
+ "../node_modules/@types/node/stream.d.ts"
13315
+ ],
13179
13316
  "../node_modules/@types/serve-static/index.d.ts": [
13180
13317
  "../node_modules/@types/mime/index.d.ts",
13181
13318
  "../node_modules/@types/node/http.d.ts",
@@ -16170,6 +16307,10 @@
16170
16307
  "../node_modules/bullmq/dist/classes/index.d.ts",
16171
16308
  "../node_modules/bullmq/dist/interfaces/index.d.ts"
16172
16309
  ],
16310
+ "../node_modules/cacheable-lookup/index.d.ts": [
16311
+ "../node_modules/@types/node/dns.d.ts",
16312
+ "../node_modules/@types/node/http.d.ts"
16313
+ ],
16173
16314
  "../node_modules/class-transformer/ClassTransformer.d.ts": [
16174
16315
  "../node_modules/class-transformer/ClassTransformOptions.d.ts"
16175
16316
  ],
@@ -17199,6 +17340,52 @@
17199
17340
  "../node_modules/google-gax/build/src/apitypes.d.ts",
17200
17341
  "../node_modules/google-gax/build/src/gax.d.ts"
17201
17342
  ],
17343
+ "../node_modules/got/dist/source/as-promise/index.d.ts": [
17344
+ "../node_modules/got/dist/source/as-promise/types.d.ts"
17345
+ ],
17346
+ "../node_modules/got/dist/source/as-promise/types.d.ts": [
17347
+ "../node_modules/@types/node/index.d.ts",
17348
+ "../node_modules/got/dist/source/core/index.d.ts",
17349
+ "../node_modules/p-cancelable/index.d.ts"
17350
+ ],
17351
+ "../node_modules/got/dist/source/core/index.d.ts": [
17352
+ "../node_modules/@szmarczak/http-timer/dist/source/index.d.ts",
17353
+ "../node_modules/@types/cacheable-request/index.d.ts",
17354
+ "../node_modules/@types/node/http.d.ts",
17355
+ "../node_modules/@types/node/https.d.ts",
17356
+ "../node_modules/@types/node/index.d.ts",
17357
+ "../node_modules/@types/node/net.d.ts",
17358
+ "../node_modules/@types/node/stream.d.ts",
17359
+ "../node_modules/@types/node/tls.d.ts",
17360
+ "../node_modules/@types/node/url.d.ts",
17361
+ "../node_modules/@types/responselike/index.d.ts",
17362
+ "../node_modules/cacheable-lookup/index.d.ts",
17363
+ "../node_modules/got/dist/source/as-promise/types.d.ts",
17364
+ "../node_modules/got/dist/source/core/utils/dns-ip-version.d.ts",
17365
+ "../node_modules/got/dist/source/core/utils/options-to-url.d.ts",
17366
+ "../node_modules/got/dist/source/core/utils/timed-out.d.ts"
17367
+ ],
17368
+ "../node_modules/got/dist/source/core/utils/options-to-url.d.ts": [
17369
+ "../node_modules/@types/node/url.d.ts"
17370
+ ],
17371
+ "../node_modules/got/dist/source/core/utils/timed-out.d.ts": [
17372
+ "../node_modules/@types/node/http.d.ts"
17373
+ ],
17374
+ "../node_modules/got/dist/source/create.d.ts": [
17375
+ "../node_modules/got/dist/source/types.d.ts"
17376
+ ],
17377
+ "../node_modules/got/dist/source/index.d.ts": [
17378
+ "../node_modules/got/dist/source/as-promise/index.d.ts",
17379
+ "../node_modules/got/dist/source/create.d.ts",
17380
+ "../node_modules/got/dist/source/types.d.ts"
17381
+ ],
17382
+ "../node_modules/got/dist/source/types.d.ts": [
17383
+ "../node_modules/@types/node/index.d.ts",
17384
+ "../node_modules/@types/node/url.d.ts",
17385
+ "../node_modules/got/dist/source/as-promise/index.d.ts",
17386
+ "../node_modules/got/dist/source/core/index.d.ts",
17387
+ "../node_modules/p-cancelable/index.d.ts"
17388
+ ],
17202
17389
  "../node_modules/graphql-extensions/dist/index.d.ts": [
17203
17390
  "../node_modules/apollo-server-env/dist/index.d.ts",
17204
17391
  "../node_modules/graphql-extensions/node_modules/apollo-server-types/dist/index.d.ts",
@@ -19497,6 +19684,27 @@
19497
19684
  "../node_modules/typeorm/metadata/RelationMetadata.d.ts",
19498
19685
  "../node_modules/typeorm/query-runner/QueryRunner.d.ts"
19499
19686
  ],
19687
+ "../node_modules/winston-transport/index.d.ts": [
19688
+ "../node_modules/@types/node/index.d.ts",
19689
+ "../node_modules/@types/node/stream.d.ts",
19690
+ "../node_modules/logform/index.d.ts"
19691
+ ],
19692
+ "../node_modules/winston/index.d.ts": [
19693
+ "../node_modules/@types/node/index.d.ts",
19694
+ "../node_modules/@types/node/stream.d.ts",
19695
+ "../node_modules/logform/index.d.ts",
19696
+ "../node_modules/winston-transport/index.d.ts",
19697
+ "../node_modules/winston/lib/winston/config/index.d.ts",
19698
+ "../node_modules/winston/lib/winston/transports/index.d.ts"
19699
+ ],
19700
+ "../node_modules/winston/lib/winston/config/index.d.ts": [
19701
+ "../node_modules/@types/node/index.d.ts"
19702
+ ],
19703
+ "../node_modules/winston/lib/winston/transports/index.d.ts": [
19704
+ "../node_modules/@types/node/http.d.ts",
19705
+ "../node_modules/@types/node/index.d.ts",
19706
+ "../node_modules/winston-transport/index.d.ts"
19707
+ ],
19500
19708
  "../node_modules/zen-observable-ts/lib/index.d.ts": [
19501
19709
  "../node_modules/zen-observable-ts/lib/zenObservable.d.ts"
19502
19710
  ],
@@ -20080,6 +20288,9 @@
20080
20288
  "../src/Helpers/Formio/validator/utils.ts": [
20081
20289
  "../src/Helpers/Formio/validator/error-codes.ts"
20082
20290
  ],
20291
+ "../src/Helpers/Got.ts": [
20292
+ "../node_modules/got/dist/source/index.d.ts"
20293
+ ],
20083
20294
  "../src/Helpers/Id.ts": [
20084
20295
  "../node_modules/bson/bson.d.ts",
20085
20296
  "../node_modules/nanoid/index.d.ts"
@@ -20134,6 +20345,9 @@
20134
20345
  "../src/Job/Schedulers/Node.ts": [
20135
20346
  "../src/Job/Job.ts"
20136
20347
  ],
20348
+ "../src/Log/Logger.ts": [
20349
+ "../node_modules/winston/index.d.ts"
20350
+ ],
20137
20351
  "../src/Providers/Firebase/FirebaseConnector.ts": [
20138
20352
  "../node_modules/@google-cloud/firestore/types/firestore.d.ts",
20139
20353
  "../node_modules/await-to-js/dist/types/await-to-js.d.ts",
@@ -22689,6 +22903,10 @@
22689
22903
  "../node_modules/@nestjs/swagger/index.d.ts": [
22690
22904
  "../node_modules/@nestjs/swagger/dist/index.d.ts"
22691
22905
  ],
22906
+ "../node_modules/@szmarczak/http-timer/dist/source/index.d.ts": [
22907
+ "../node_modules/@types/node/http.d.ts",
22908
+ "../node_modules/@types/node/index.d.ts"
22909
+ ],
22692
22910
  "../node_modules/@ts-morph/common/lib/ts-morph-common.d.ts": [
22693
22911
  "../node_modules/@ts-morph/common/lib/typescript.d.ts"
22694
22912
  ],
@@ -22709,6 +22927,15 @@
22709
22927
  "../node_modules/@types/ioredis/index.d.ts",
22710
22928
  "../node_modules/@types/node/events.d.ts"
22711
22929
  ],
22930
+ "../node_modules/@types/cacheable-request/index.d.ts": [
22931
+ "../node_modules/@types/http-cache-semantics/index.d.ts",
22932
+ "../node_modules/@types/keyv/index.d.ts",
22933
+ "../node_modules/@types/node/events.d.ts",
22934
+ "../node_modules/@types/node/http.d.ts",
22935
+ "../node_modules/@types/node/index.d.ts",
22936
+ "../node_modules/@types/node/url.d.ts",
22937
+ "../node_modules/@types/responselike/index.d.ts"
22938
+ ],
22712
22939
  "../node_modules/@types/connect/index.d.ts": [
22713
22940
  "../node_modules/@types/node/http.d.ts",
22714
22941
  "../node_modules/@types/node/index.d.ts"
@@ -22752,6 +22979,10 @@
22752
22979
  "../node_modules/jest-diff/build/index.d.ts",
22753
22980
  "../node_modules/pretty-format/build/index.d.ts"
22754
22981
  ],
22982
+ "../node_modules/@types/keyv/index.d.ts": [
22983
+ "../node_modules/@types/node/events.d.ts",
22984
+ "../node_modules/@types/node/index.d.ts"
22985
+ ],
22755
22986
  "../node_modules/@types/koa-compose/index.d.ts": [
22756
22987
  "../node_modules/@types/koa/index.d.ts"
22757
22988
  ],
@@ -22975,6 +23206,11 @@
22975
23206
  "../node_modules/@types/node/zlib.d.ts": [
22976
23207
  "../node_modules/@types/node/stream.d.ts"
22977
23208
  ],
23209
+ "../node_modules/@types/responselike/index.d.ts": [
23210
+ "../node_modules/@types/node/http.d.ts",
23211
+ "../node_modules/@types/node/index.d.ts",
23212
+ "../node_modules/@types/node/stream.d.ts"
23213
+ ],
22978
23214
  "../node_modules/@types/serve-static/index.d.ts": [
22979
23215
  "../node_modules/@types/mime/index.d.ts",
22980
23216
  "../node_modules/@types/node/http.d.ts",
@@ -25969,6 +26205,10 @@
25969
26205
  "../node_modules/bullmq/dist/classes/index.d.ts",
25970
26206
  "../node_modules/bullmq/dist/interfaces/index.d.ts"
25971
26207
  ],
26208
+ "../node_modules/cacheable-lookup/index.d.ts": [
26209
+ "../node_modules/@types/node/dns.d.ts",
26210
+ "../node_modules/@types/node/http.d.ts"
26211
+ ],
25972
26212
  "../node_modules/class-transformer/ClassTransformer.d.ts": [
25973
26213
  "../node_modules/class-transformer/ClassTransformOptions.d.ts"
25974
26214
  ],
@@ -26998,6 +27238,52 @@
26998
27238
  "../node_modules/google-gax/build/src/apitypes.d.ts",
26999
27239
  "../node_modules/google-gax/build/src/gax.d.ts"
27000
27240
  ],
27241
+ "../node_modules/got/dist/source/as-promise/index.d.ts": [
27242
+ "../node_modules/got/dist/source/as-promise/types.d.ts"
27243
+ ],
27244
+ "../node_modules/got/dist/source/as-promise/types.d.ts": [
27245
+ "../node_modules/@types/node/index.d.ts",
27246
+ "../node_modules/got/dist/source/core/index.d.ts",
27247
+ "../node_modules/p-cancelable/index.d.ts"
27248
+ ],
27249
+ "../node_modules/got/dist/source/core/index.d.ts": [
27250
+ "../node_modules/@szmarczak/http-timer/dist/source/index.d.ts",
27251
+ "../node_modules/@types/cacheable-request/index.d.ts",
27252
+ "../node_modules/@types/node/http.d.ts",
27253
+ "../node_modules/@types/node/https.d.ts",
27254
+ "../node_modules/@types/node/index.d.ts",
27255
+ "../node_modules/@types/node/net.d.ts",
27256
+ "../node_modules/@types/node/stream.d.ts",
27257
+ "../node_modules/@types/node/tls.d.ts",
27258
+ "../node_modules/@types/node/url.d.ts",
27259
+ "../node_modules/@types/responselike/index.d.ts",
27260
+ "../node_modules/cacheable-lookup/index.d.ts",
27261
+ "../node_modules/got/dist/source/as-promise/types.d.ts",
27262
+ "../node_modules/got/dist/source/core/utils/dns-ip-version.d.ts",
27263
+ "../node_modules/got/dist/source/core/utils/options-to-url.d.ts",
27264
+ "../node_modules/got/dist/source/core/utils/timed-out.d.ts"
27265
+ ],
27266
+ "../node_modules/got/dist/source/core/utils/options-to-url.d.ts": [
27267
+ "../node_modules/@types/node/url.d.ts"
27268
+ ],
27269
+ "../node_modules/got/dist/source/core/utils/timed-out.d.ts": [
27270
+ "../node_modules/@types/node/http.d.ts"
27271
+ ],
27272
+ "../node_modules/got/dist/source/create.d.ts": [
27273
+ "../node_modules/got/dist/source/types.d.ts"
27274
+ ],
27275
+ "../node_modules/got/dist/source/index.d.ts": [
27276
+ "../node_modules/got/dist/source/as-promise/index.d.ts",
27277
+ "../node_modules/got/dist/source/create.d.ts",
27278
+ "../node_modules/got/dist/source/types.d.ts"
27279
+ ],
27280
+ "../node_modules/got/dist/source/types.d.ts": [
27281
+ "../node_modules/@types/node/index.d.ts",
27282
+ "../node_modules/@types/node/url.d.ts",
27283
+ "../node_modules/got/dist/source/as-promise/index.d.ts",
27284
+ "../node_modules/got/dist/source/core/index.d.ts",
27285
+ "../node_modules/p-cancelable/index.d.ts"
27286
+ ],
27001
27287
  "../node_modules/graphql-extensions/dist/index.d.ts": [
27002
27288
  "../node_modules/apollo-server-env/dist/index.d.ts",
27003
27289
  "../node_modules/graphql-extensions/node_modules/apollo-server-types/dist/index.d.ts",
@@ -29296,6 +29582,27 @@
29296
29582
  "../node_modules/typeorm/metadata/RelationMetadata.d.ts",
29297
29583
  "../node_modules/typeorm/query-runner/QueryRunner.d.ts"
29298
29584
  ],
29585
+ "../node_modules/winston-transport/index.d.ts": [
29586
+ "../node_modules/@types/node/index.d.ts",
29587
+ "../node_modules/@types/node/stream.d.ts",
29588
+ "../node_modules/logform/index.d.ts"
29589
+ ],
29590
+ "../node_modules/winston/index.d.ts": [
29591
+ "../node_modules/@types/node/index.d.ts",
29592
+ "../node_modules/@types/node/stream.d.ts",
29593
+ "../node_modules/logform/index.d.ts",
29594
+ "../node_modules/winston-transport/index.d.ts",
29595
+ "../node_modules/winston/lib/winston/config/index.d.ts",
29596
+ "../node_modules/winston/lib/winston/transports/index.d.ts"
29597
+ ],
29598
+ "../node_modules/winston/lib/winston/config/index.d.ts": [
29599
+ "../node_modules/@types/node/index.d.ts"
29600
+ ],
29601
+ "../node_modules/winston/lib/winston/transports/index.d.ts": [
29602
+ "../node_modules/@types/node/http.d.ts",
29603
+ "../node_modules/@types/node/index.d.ts",
29604
+ "../node_modules/winston-transport/index.d.ts"
29605
+ ],
29299
29606
  "../node_modules/zen-observable-ts/lib/index.d.ts": [
29300
29607
  "../node_modules/zen-observable-ts/lib/zenObservable.d.ts"
29301
29608
  ],
@@ -29470,6 +29777,9 @@
29470
29777
  "../src/Helpers/Formio/types/FormioForm.ts",
29471
29778
  "../src/Providers/types.ts"
29472
29779
  ],
29780
+ "../src/Helpers/Got.ts": [
29781
+ "../node_modules/got/dist/source/index.d.ts"
29782
+ ],
29473
29783
  "../src/Helpers/Id.ts": [
29474
29784
  "../node_modules/bson/bson.d.ts"
29475
29785
  ],
@@ -29506,6 +29816,9 @@
29506
29816
  "../src/Job/Schedulers/Node.ts": [
29507
29817
  "../src/Job/Job.ts"
29508
29818
  ],
29819
+ "../src/Log/Logger.ts": [
29820
+ "../node_modules/winston/index.d.ts"
29821
+ ],
29509
29822
  "../src/Providers/Firebase/FirebaseConnector.ts": [
29510
29823
  "../node_modules/fireorm/lib/src/index.d.ts",
29511
29824
  "../node_modules/typeorm/index.d.ts",
@@ -30243,6 +30556,7 @@
30243
30556
  "../node_modules/@nestjs/swagger/dist/utils/index.d.ts",
30244
30557
  "../node_modules/@nestjs/swagger/index.d.ts",
30245
30558
  "../node_modules/@react-native-async-storage/async-storage/types/index.d.ts",
30559
+ "../node_modules/@szmarczak/http-timer/dist/source/index.d.ts",
30246
30560
  "../node_modules/@ts-morph/common/lib/ts-morph-common.d.ts",
30247
30561
  "../node_modules/@ts-morph/common/lib/typescript.d.ts",
30248
30562
  "../node_modules/@types/accepts/index.d.ts",
@@ -30250,6 +30564,7 @@
30250
30564
  "../node_modules/@types/amqplib/properties.d.ts",
30251
30565
  "../node_modules/@types/body-parser/index.d.ts",
30252
30566
  "../node_modules/@types/bull/index.d.ts",
30567
+ "../node_modules/@types/cacheable-request/index.d.ts",
30253
30568
  "../node_modules/@types/connect/index.d.ts",
30254
30569
  "../node_modules/@types/content-disposition/index.d.ts",
30255
30570
  "../node_modules/@types/cookies/index.d.ts",
@@ -30259,10 +30574,12 @@
30259
30574
  "../node_modules/@types/faker/index.d.ts",
30260
30575
  "../node_modules/@types/fs-capacitor/index.d.ts",
30261
30576
  "../node_modules/@types/http-assert/index.d.ts",
30577
+ "../node_modules/@types/http-cache-semantics/index.d.ts",
30262
30578
  "../node_modules/@types/http-errors/index.d.ts",
30263
30579
  "../node_modules/@types/ioredis/index.d.ts",
30264
30580
  "../node_modules/@types/jest/index.d.ts",
30265
30581
  "../node_modules/@types/keygrip/index.d.ts",
30582
+ "../node_modules/@types/keyv/index.d.ts",
30266
30583
  "../node_modules/@types/koa-compose/index.d.ts",
30267
30584
  "../node_modules/@types/koa/index.d.ts",
30268
30585
  "../node_modules/@types/long/index.d.ts",
@@ -30324,6 +30641,7 @@
30324
30641
  "../node_modules/@types/node/zlib.d.ts",
30325
30642
  "../node_modules/@types/qs/index.d.ts",
30326
30643
  "../node_modules/@types/range-parser/index.d.ts",
30644
+ "../node_modules/@types/responselike/index.d.ts",
30327
30645
  "../node_modules/@types/serve-static/index.d.ts",
30328
30646
  "../node_modules/@types/validator/index.d.ts",
30329
30647
  "../node_modules/@types/ws/index.d.ts",
@@ -30787,6 +31105,7 @@
30787
31105
  "../node_modules/bullmq/dist/interfaces/sandboxed-job-processor.d.ts",
30788
31106
  "../node_modules/bullmq/dist/interfaces/sandboxed-job.d.ts",
30789
31107
  "../node_modules/bullmq/dist/interfaces/worker-options.d.ts",
31108
+ "../node_modules/cacheable-lookup/index.d.ts",
30790
31109
  "../node_modules/class-transformer/ClassTransformOptions.d.ts",
30791
31110
  "../node_modules/class-transformer/ClassTransformer.d.ts",
30792
31111
  "../node_modules/class-transformer/TransformOperationExecutor.d.ts",
@@ -31013,6 +31332,15 @@
31013
31332
  "../node_modules/google-gax/build/src/status.d.ts",
31014
31333
  "../node_modules/google-gax/build/src/streamingCalls/streamDescriptor.d.ts",
31015
31334
  "../node_modules/google-gax/build/src/streamingCalls/streaming.d.ts",
31335
+ "../node_modules/got/dist/source/as-promise/index.d.ts",
31336
+ "../node_modules/got/dist/source/as-promise/types.d.ts",
31337
+ "../node_modules/got/dist/source/core/index.d.ts",
31338
+ "../node_modules/got/dist/source/core/utils/dns-ip-version.d.ts",
31339
+ "../node_modules/got/dist/source/core/utils/options-to-url.d.ts",
31340
+ "../node_modules/got/dist/source/core/utils/timed-out.d.ts",
31341
+ "../node_modules/got/dist/source/create.d.ts",
31342
+ "../node_modules/got/dist/source/index.d.ts",
31343
+ "../node_modules/got/dist/source/types.d.ts",
31016
31344
  "../node_modules/graphql-extensions/dist/index.d.ts",
31017
31345
  "../node_modules/graphql-extensions/node_modules/apollo-reporting-protobuf/dist/index.d.ts",
31018
31346
  "../node_modules/graphql-extensions/node_modules/apollo-reporting-protobuf/dist/protobuf.d.ts",
@@ -31173,8 +31501,10 @@
31173
31501
  "../node_modules/jwt-decode/index.d.ts",
31174
31502
  "../node_modules/libphonenumber-js/index.d.ts",
31175
31503
  "../node_modules/libphonenumber-js/types.d.ts",
31504
+ "../node_modules/logform/index.d.ts",
31176
31505
  "../node_modules/mongoose/index.d.ts",
31177
31506
  "../node_modules/nanoid/index.d.ts",
31507
+ "../node_modules/p-cancelable/index.d.ts",
31178
31508
  "../node_modules/portfinder/lib/portfinder.d.ts",
31179
31509
  "../node_modules/pretty-format/build/index.d.ts",
31180
31510
  "../node_modules/pretty-format/build/types.d.ts",
@@ -31618,6 +31948,10 @@
31618
31948
  "../node_modules/typescript/lib/lib.esnext.intl.d.ts",
31619
31949
  "../node_modules/typescript/lib/lib.scripthost.d.ts",
31620
31950
  "../node_modules/typescript/lib/lib.webworker.importscripts.d.ts",
31951
+ "../node_modules/winston-transport/index.d.ts",
31952
+ "../node_modules/winston/index.d.ts",
31953
+ "../node_modules/winston/lib/winston/config/index.d.ts",
31954
+ "../node_modules/winston/lib/winston/transports/index.d.ts",
31621
31955
  "../node_modules/zen-observable-ts/lib/index.d.ts",
31622
31956
  "../node_modules/zen-observable-ts/lib/types.d.ts",
31623
31957
  "../node_modules/zen-observable-ts/lib/zenObservable.d.ts",
@@ -31789,11 +32123,13 @@
31789
32123
  "../src/Helpers/Formio/validator/error-codes.ts",
31790
32124
  "../src/Helpers/Formio/validator/utils.ts",
31791
32125
  "../src/Helpers/Functions.ts",
32126
+ "../src/Helpers/Got.ts",
31792
32127
  "../src/Helpers/Hash.ts",
31793
32128
  "../src/Helpers/Id.ts",
31794
32129
  "../src/Helpers/Jwt.ts",
31795
32130
  "../src/Helpers/Language.ts",
31796
32131
  "../src/Helpers/Ngram.ts",
32132
+ "../src/Helpers/Numbers.ts",
31797
32133
  "../src/Helpers/Objects.ts",
31798
32134
  "../src/Helpers/Strings.ts",
31799
32135
  "../src/Job/Brokers/RabbitMQ.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goatlab/fluent",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Readable query Interface & API generator for TS and Node",
5
5
  "homepage": "https://docs.goatlab.io",
6
6
  "main": "dist/index.js",
@@ -128,6 +128,8 @@
128
128
  "await-to-js": "^3.0.0",
129
129
  "aws-sdk": "^2.903.0",
130
130
  "axios": "^0.21.1",
131
+ "axios-logger": "^2.5.0",
132
+ "axios-retry": "^3.1.9",
131
133
  "bcryptjs": "^2.4.3",
132
134
  "bluebird": "^3.7.2",
133
135
  "bson": "^4.3.0",
@@ -151,6 +153,7 @@
151
153
  "firebase-admin": "^9.7.0",
152
154
  "fireorm": "^0.20.0",
153
155
  "formiojs": "^4.13.1",
156
+ "got": "^11.8.2",
154
157
  "graphql": "^15.5.0",
155
158
  "handlebars": "^4.7.7",
156
159
  "http-errors": "^1.8.0",
@@ -188,7 +191,8 @@
188
191
  "typed-path": "^2.2.2",
189
192
  "typeorm": "^0.2.32",
190
193
  "uuid": "^8.3.2",
191
- "verror": "^1.10.0"
194
+ "verror": "^1.10.0",
195
+ "winston": "^3.3.3"
192
196
  },
193
197
  "devDependencies": {
194
198
  "@commitlint/cli": "^13.1.0",