@loadmill/core 0.3.61 → 0.3.62
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/signals.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SIGNAL = void 0;
|
|
4
|
+
var SIGNAL;
|
|
5
|
+
(function (SIGNAL) {
|
|
6
|
+
SIGNAL["SIGTERM"] = "SIGTERM";
|
|
7
|
+
SIGNAL["SIGINT"] = "SIGINT";
|
|
8
|
+
})(SIGNAL = exports.SIGNAL || (exports.SIGNAL = {}));
|
|
9
|
+
//# sourceMappingURL=signals.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signals.js","sourceRoot":"","sources":["../src/signals.ts"],"names":[],"mappings":";;;AAAA,IAAY,MAGX;AAHD,WAAY,MAAM;IAChB,6BAAmB,CAAA;IACnB,2BAAiB,CAAA;AACnB,CAAC,EAHW,MAAM,GAAN,cAAM,KAAN,cAAM,QAGjB"}
|
|
@@ -9,13 +9,13 @@ var isJSONContains = function (containing, contained) {
|
|
|
9
9
|
parsedContaining = JSON.parse(containing);
|
|
10
10
|
}
|
|
11
11
|
catch (e) {
|
|
12
|
-
throw new errors_1.PresentableError('
|
|
12
|
+
throw new errors_1.PresentableError('couldn\'t parse the containing JSON');
|
|
13
13
|
}
|
|
14
14
|
try {
|
|
15
15
|
parsedContained = JSON.parse(contained);
|
|
16
16
|
}
|
|
17
17
|
catch (e) {
|
|
18
|
-
throw new errors_1.PresentableError('
|
|
18
|
+
throw new errors_1.PresentableError('couldn\'t parse the contained JSON');
|
|
19
19
|
}
|
|
20
20
|
return is_subset_1.isSubset(parsedContaining, parsedContained);
|
|
21
21
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json-contains.js","sourceRoot":"","sources":["../../src/subset/json-contains.ts"],"names":[],"mappings":";;;AAAA,0DAAmE;AAEnE,yCAAuC;AAEhC,IAAM,cAAc,GAAG,UAAC,UAAkB,EAAE,SAAiB;IAClE,IAAI,gBAA2B,EAAE,eAA0B,CAAC;IAE5D,IAAI;QACF,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;KAC3C;IAAC,OAAO,CAAC,EAAE;QACV,MAAM,IAAI,yBAAgB,CAAC,
|
|
1
|
+
{"version":3,"file":"json-contains.js","sourceRoot":"","sources":["../../src/subset/json-contains.ts"],"names":[],"mappings":";;;AAAA,0DAAmE;AAEnE,yCAAuC;AAEhC,IAAM,cAAc,GAAG,UAAC,UAAkB,EAAE,SAAiB;IAClE,IAAI,gBAA2B,EAAE,eAA0B,CAAC;IAE5D,IAAI;QACF,gBAAgB,GAAG,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC;KAC3C;IAAC,OAAO,CAAC,EAAE;QACV,MAAM,IAAI,yBAAgB,CAAC,qCAAqC,CAAC,CAAC;KACnE;IAED,IAAI;QACF,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC;KACzC;IAAC,OAAO,CAAC,EAAE;QACV,MAAM,IAAI,yBAAgB,CAAC,oCAAoC,CAAC,CAAC;KAClE;IAED,OAAO,oBAAQ,CAAC,gBAAgB,EAAE,eAAe,CAAC,CAAC;AACrD,CAAC,CAAC;AAhBW,QAAA,cAAc,kBAgBzB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadmill/core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.62",
|
|
4
4
|
"description": "Loadmill core library",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ts-watch": "rimraf dist && tsc -w -p tsconfig.json",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@aws-sdk/client-cognito-identity": "^3.58.0",
|
|
24
24
|
"@aws-sdk/client-firehose": "^3.58.0",
|
|
25
25
|
"@aws-sdk/types": "^3.55.0",
|
|
26
|
-
"@loadmill/universal": "0.3.
|
|
26
|
+
"@loadmill/universal": "0.3.57",
|
|
27
27
|
"cheerio": "^0.22.0",
|
|
28
28
|
"crypto-js": "^4.1.1",
|
|
29
29
|
"http-headers-validation": "^0.0.1",
|