stentor-handler-delegating 1.59.69 → 1.59.72
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/lib/Guards.js +1 -2
- package/lib/Guards.js.map +1 -1
- package/package.json +6 -6
package/lib/Guards.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isDelegatingHandler =
|
|
3
|
+
exports.isDelegatingHandler = isDelegatingHandler;
|
|
4
4
|
const Handler_1 = require("./Handler");
|
|
5
5
|
function isDelegatingHandler(handler) {
|
|
6
6
|
return !!handler && (handler.type === "DelegatingHandlerType" || handler instanceof Handler_1.DelegatingHandler);
|
|
7
7
|
}
|
|
8
|
-
exports.isDelegatingHandler = isDelegatingHandler;
|
|
9
8
|
//# sourceMappingURL=Guards.js.map
|
package/lib/Guards.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Guards.js","sourceRoot":"","sources":["../src/Guards.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Guards.js","sourceRoot":"","sources":["../src/Guards.ts"],"names":[],"mappings":";;AAKA,kDAEC;AAJD,uCAA8C;AAE9C,SAAgB,mBAAmB,CAAC,OAAkC;IAClE,OAAO,CAAC,CAAC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,KAAK,uBAAuB,IAAI,OAAO,YAAY,2BAAiB,CAAC,CAAC;AAC3G,CAAC"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.59.
|
|
7
|
+
"version": "1.59.72",
|
|
8
8
|
"description": "Delegating handler for stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"@types/chai": "4.3.16",
|
|
19
19
|
"@xapp/config": "0.2.3",
|
|
20
20
|
"chai": "4.4.1",
|
|
21
|
-
"stentor-models": "1.59.
|
|
21
|
+
"stentor-models": "1.59.70",
|
|
22
22
|
"ts-node": "10.9.2",
|
|
23
|
-
"typescript": "5.
|
|
23
|
+
"typescript": "5.5.2"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"stentor-handler": "1.59.
|
|
27
|
-
"stentor-utils": "1.59.
|
|
26
|
+
"stentor-handler": "1.59.72",
|
|
27
|
+
"stentor-utils": "1.59.72"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"stentor-models": "1.x"
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"clean": "rm -rf ./lib/*",
|
|
35
35
|
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "0c714432955eb2ecaebadce26ab800206b5da3fc"
|
|
38
38
|
}
|