@xapi-js/adaptor-nestjs 1.1.0 → 1.2.0

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 ADDED
@@ -0,0 +1,83 @@
1
+ //#region rolldown:runtime
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
10
+ key = keys[i];
11
+ if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
12
+ get: ((k) => from[k]).bind(null, key),
13
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
14
+ });
15
+ }
16
+ return to;
17
+ };
18
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
19
+ value: mod,
20
+ enumerable: true
21
+ }) : target, mod));
22
+
23
+ //#endregion
24
+ let __nestjs_common = require("@nestjs/common");
25
+ __nestjs_common = __toESM(__nestjs_common);
26
+ let __xapi_js_core = require("@xapi-js/core");
27
+ __xapi_js_core = __toESM(__xapi_js_core);
28
+ let rxjs = require("rxjs");
29
+ rxjs = __toESM(rxjs);
30
+
31
+ //#region src/xapi-request-interceptor.ts
32
+ var XapiRequestInterceptor = @((0, __nestjs_common.Injectable)()) class XapiRequestInterceptor {
33
+ constructor() {
34
+ this.logger = new __nestjs_common.Logger(XapiRequestInterceptor.name);
35
+ }
36
+ /**
37
+ * Intercepts the incoming request to parse XML body.
38
+ * If the content type is `application/xml` and a body exists, it attempts to parse the body
39
+ * into an `XapiRoot` object and replaces the original request body with it.
40
+ * @param context - The execution context of the request.
41
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
42
+ * @returns An `Observable` that will eventually contain the response.
43
+ */
44
+ async intercept(context, next) {
45
+ const request = context.switchToHttp().getRequest();
46
+ this.logger.debug(`XapiRequestInterceptor Intercepting request: ${request.method} ${request.url}`);
47
+ if (request.headers["content-type"] === "application/xml" && request.body) request.body = await (0, __xapi_js_core.parse)(request.body);
48
+ return next.handle();
49
+ }
50
+ };
51
+
52
+ //#endregion
53
+ //#region src/xapi-response-interceptor.ts
54
+ var XapiResponseInterceptor = @((0, __nestjs_common.Injectable)()) class XapiResponseInterceptor {
55
+ constructor() {
56
+ this.logger = new __nestjs_common.Logger(XapiResponseInterceptor.name);
57
+ }
58
+ /**
59
+ * Intercepts the outgoing response to serialize XapiRoot to XML string.
60
+ * If the handler returns an `XapiRoot` instance, it attempts to serialize it
61
+ * into an XML string.
62
+ * @param context - The execution context of the request.
63
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
64
+ * @returns An `Observable` that will eventually contain the XML string response.
65
+ * @throws {Error} if the handler does not return an `XapiRoot` instance or serialization fails.
66
+ */
67
+ intercept(context, next) {
68
+ this.logger.debug(`XapiResponseInterceptor Intercepting response`);
69
+ return next.handle().pipe((0, rxjs.map)((value) => {
70
+ if ((0, __xapi_js_core.isXapiRoot)(value)) try {
71
+ return (0, __xapi_js_core.write)(value);
72
+ } catch (error) {
73
+ this.logger.error(`Failed to serialize XapiRoot to XML string: ${error}`);
74
+ throw error;
75
+ }
76
+ else throw new Error("Handler did not return an XapiRoot instance");
77
+ }));
78
+ }
79
+ };
80
+
81
+ //#endregion
82
+ exports.XapiRequestInterceptor = XapiRequestInterceptor;
83
+ exports.XapiResponseInterceptor = XapiResponseInterceptor;
@@ -0,0 +1,45 @@
1
+ import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common";
2
+ import { Observable } from "rxjs";
3
+ import { XapiRoot } from "@xapi-js/core";
4
+
5
+ //#region src/xapi-request-interceptor.d.ts
6
+
7
+ /**
8
+ * Interceptor that parses incoming XML request bodies into XapiRoot objects.
9
+ * This interceptor should be applied to routes that expect an `application/xml` content type
10
+ * and whose body contains X-API XML data.
11
+ */
12
+ declare class XapiRequestInterceptor implements NestInterceptor {
13
+ private readonly logger;
14
+ /**
15
+ * Intercepts the incoming request to parse XML body.
16
+ * If the content type is `application/xml` and a body exists, it attempts to parse the body
17
+ * into an `XapiRoot` object and replaces the original request body with it.
18
+ * @param context - The execution context of the request.
19
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
20
+ * @returns An `Observable` that will eventually contain the response.
21
+ */
22
+ intercept(context: ExecutionContext, next: CallHandler): Promise<Observable<any>>;
23
+ }
24
+ //#endregion
25
+ //#region src/xapi-response-interceptor.d.ts
26
+ /**
27
+ * Interceptor that serializes XapiRoot objects returned by NestJS route handlers into XML strings.
28
+ * This interceptor should be applied to routes that return an `XapiRoot` instance
29
+ * and whose response should be `application/xml`.
30
+ */
31
+ declare class XapiResponseInterceptor implements NestInterceptor<XapiRoot, string> {
32
+ private readonly logger;
33
+ /**
34
+ * Intercepts the outgoing response to serialize XapiRoot to XML string.
35
+ * If the handler returns an `XapiRoot` instance, it attempts to serialize it
36
+ * into an XML string.
37
+ * @param context - The execution context of the request.
38
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
39
+ * @returns An `Observable` that will eventually contain the XML string response.
40
+ * @throws {Error} if the handler does not return an `XapiRoot` instance or serialization fails.
41
+ */
42
+ intercept(context: ExecutionContext, next: CallHandler): Observable<string>;
43
+ }
44
+ //#endregion
45
+ export { XapiRequestInterceptor, XapiResponseInterceptor };
@@ -0,0 +1,45 @@
1
+ import { CallHandler, ExecutionContext, NestInterceptor } from "@nestjs/common";
2
+ import { XapiRoot } from "@xapi-js/core";
3
+ import { Observable } from "rxjs";
4
+
5
+ //#region src/xapi-request-interceptor.d.ts
6
+
7
+ /**
8
+ * Interceptor that parses incoming XML request bodies into XapiRoot objects.
9
+ * This interceptor should be applied to routes that expect an `application/xml` content type
10
+ * and whose body contains X-API XML data.
11
+ */
12
+ declare class XapiRequestInterceptor implements NestInterceptor {
13
+ private readonly logger;
14
+ /**
15
+ * Intercepts the incoming request to parse XML body.
16
+ * If the content type is `application/xml` and a body exists, it attempts to parse the body
17
+ * into an `XapiRoot` object and replaces the original request body with it.
18
+ * @param context - The execution context of the request.
19
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
20
+ * @returns An `Observable` that will eventually contain the response.
21
+ */
22
+ intercept(context: ExecutionContext, next: CallHandler): Promise<Observable<any>>;
23
+ }
24
+ //#endregion
25
+ //#region src/xapi-response-interceptor.d.ts
26
+ /**
27
+ * Interceptor that serializes XapiRoot objects returned by NestJS route handlers into XML strings.
28
+ * This interceptor should be applied to routes that return an `XapiRoot` instance
29
+ * and whose response should be `application/xml`.
30
+ */
31
+ declare class XapiResponseInterceptor implements NestInterceptor<XapiRoot, string> {
32
+ private readonly logger;
33
+ /**
34
+ * Intercepts the outgoing response to serialize XapiRoot to XML string.
35
+ * If the handler returns an `XapiRoot` instance, it attempts to serialize it
36
+ * into an XML string.
37
+ * @param context - The execution context of the request.
38
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
39
+ * @returns An `Observable` that will eventually contain the XML string response.
40
+ * @throws {Error} if the handler does not return an `XapiRoot` instance or serialization fails.
41
+ */
42
+ intercept(context: ExecutionContext, next: CallHandler): Observable<string>;
43
+ }
44
+ //#endregion
45
+ export { XapiRequestInterceptor, XapiResponseInterceptor };
package/dist/index.js ADDED
@@ -0,0 +1,56 @@
1
+ import { Injectable, Logger } from "@nestjs/common";
2
+ import { isXapiRoot, parse, write } from "@xapi-js/core";
3
+ import { map } from "rxjs";
4
+
5
+ //#region src/xapi-request-interceptor.ts
6
+ var XapiRequestInterceptor = @Injectable() class XapiRequestInterceptor {
7
+ constructor() {
8
+ this.logger = new Logger(XapiRequestInterceptor.name);
9
+ }
10
+ /**
11
+ * Intercepts the incoming request to parse XML body.
12
+ * If the content type is `application/xml` and a body exists, it attempts to parse the body
13
+ * into an `XapiRoot` object and replaces the original request body with it.
14
+ * @param context - The execution context of the request.
15
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
16
+ * @returns An `Observable` that will eventually contain the response.
17
+ */
18
+ async intercept(context, next) {
19
+ const request = context.switchToHttp().getRequest();
20
+ this.logger.debug(`XapiRequestInterceptor Intercepting request: ${request.method} ${request.url}`);
21
+ if (request.headers["content-type"] === "application/xml" && request.body) request.body = await parse(request.body);
22
+ return next.handle();
23
+ }
24
+ };
25
+
26
+ //#endregion
27
+ //#region src/xapi-response-interceptor.ts
28
+ var XapiResponseInterceptor = @Injectable() class XapiResponseInterceptor {
29
+ constructor() {
30
+ this.logger = new Logger(XapiResponseInterceptor.name);
31
+ }
32
+ /**
33
+ * Intercepts the outgoing response to serialize XapiRoot to XML string.
34
+ * If the handler returns an `XapiRoot` instance, it attempts to serialize it
35
+ * into an XML string.
36
+ * @param context - The execution context of the request.
37
+ * @param next - A `CallHandler` to invoke the next interceptor or the route handler.
38
+ * @returns An `Observable` that will eventually contain the XML string response.
39
+ * @throws {Error} if the handler does not return an `XapiRoot` instance or serialization fails.
40
+ */
41
+ intercept(context, next) {
42
+ this.logger.debug(`XapiResponseInterceptor Intercepting response`);
43
+ return next.handle().pipe(map((value) => {
44
+ if (isXapiRoot(value)) try {
45
+ return write(value);
46
+ } catch (error) {
47
+ this.logger.error(`Failed to serialize XapiRoot to XML string: ${error}`);
48
+ throw error;
49
+ }
50
+ else throw new Error("Handler did not return an XapiRoot instance");
51
+ }));
52
+ }
53
+ };
54
+
55
+ //#endregion
56
+ export { XapiRequestInterceptor, XapiResponseInterceptor };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xapi-js/adaptor-nestjs",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.2.0",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -11,6 +11,9 @@
11
11
  "import": "./dist/index.js",
12
12
  "require": "./dist/index.cjs"
13
13
  },
14
+ "files": [
15
+ "dist"
16
+ ],
14
17
  "keywords": [
15
18
  "tobesoft",
16
19
  "x-api",
@@ -30,11 +33,11 @@
30
33
  "express": "^5.1.0",
31
34
  "rxjs": "^7.8.1",
32
35
  "@nestjs/common": "^10.3.10",
33
- "@xapi-js/core": "1.1.0"
36
+ "@xapi-js/core": "1.2.0"
34
37
  },
35
38
  "devDependencies": {},
36
39
  "scripts": {
37
- "build": "tsup src/index.ts --format cjs,esm --dts",
40
+ "build": "tsdown",
38
41
  "test": "vitest run",
39
42
  "test:watch": "vitest",
40
43
  "coverage": "vitest run --coverage"
package/coverage/base.css DELETED
@@ -1,224 +0,0 @@
1
- body, html {
2
- margin:0; padding: 0;
3
- height: 100%;
4
- }
5
- body {
6
- font-family: Helvetica Neue, Helvetica, Arial;
7
- font-size: 14px;
8
- color:#333;
9
- }
10
- .small { font-size: 12px; }
11
- *, *:after, *:before {
12
- -webkit-box-sizing:border-box;
13
- -moz-box-sizing:border-box;
14
- box-sizing:border-box;
15
- }
16
- h1 { font-size: 20px; margin: 0;}
17
- h2 { font-size: 14px; }
18
- pre {
19
- font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
20
- margin: 0;
21
- padding: 0;
22
- -moz-tab-size: 2;
23
- -o-tab-size: 2;
24
- tab-size: 2;
25
- }
26
- a { color:#0074D9; text-decoration:none; }
27
- a:hover { text-decoration:underline; }
28
- .strong { font-weight: bold; }
29
- .space-top1 { padding: 10px 0 0 0; }
30
- .pad2y { padding: 20px 0; }
31
- .pad1y { padding: 10px 0; }
32
- .pad2x { padding: 0 20px; }
33
- .pad2 { padding: 20px; }
34
- .pad1 { padding: 10px; }
35
- .space-left2 { padding-left:55px; }
36
- .space-right2 { padding-right:20px; }
37
- .center { text-align:center; }
38
- .clearfix { display:block; }
39
- .clearfix:after {
40
- content:'';
41
- display:block;
42
- height:0;
43
- clear:both;
44
- visibility:hidden;
45
- }
46
- .fl { float: left; }
47
- @media only screen and (max-width:640px) {
48
- .col3 { width:100%; max-width:100%; }
49
- .hide-mobile { display:none!important; }
50
- }
51
-
52
- .quiet {
53
- color: #7f7f7f;
54
- color: rgba(0,0,0,0.5);
55
- }
56
- .quiet a { opacity: 0.7; }
57
-
58
- .fraction {
59
- font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
60
- font-size: 10px;
61
- color: #555;
62
- background: #E8E8E8;
63
- padding: 4px 5px;
64
- border-radius: 3px;
65
- vertical-align: middle;
66
- }
67
-
68
- div.path a:link, div.path a:visited { color: #333; }
69
- table.coverage {
70
- border-collapse: collapse;
71
- margin: 10px 0 0 0;
72
- padding: 0;
73
- }
74
-
75
- table.coverage td {
76
- margin: 0;
77
- padding: 0;
78
- vertical-align: top;
79
- }
80
- table.coverage td.line-count {
81
- text-align: right;
82
- padding: 0 5px 0 20px;
83
- }
84
- table.coverage td.line-coverage {
85
- text-align: right;
86
- padding-right: 10px;
87
- min-width:20px;
88
- }
89
-
90
- table.coverage td span.cline-any {
91
- display: inline-block;
92
- padding: 0 5px;
93
- width: 100%;
94
- }
95
- .missing-if-branch {
96
- display: inline-block;
97
- margin-right: 5px;
98
- border-radius: 3px;
99
- position: relative;
100
- padding: 0 4px;
101
- background: #333;
102
- color: yellow;
103
- }
104
-
105
- .skip-if-branch {
106
- display: none;
107
- margin-right: 10px;
108
- position: relative;
109
- padding: 0 4px;
110
- background: #ccc;
111
- color: white;
112
- }
113
- .missing-if-branch .typ, .skip-if-branch .typ {
114
- color: inherit !important;
115
- }
116
- .coverage-summary {
117
- border-collapse: collapse;
118
- width: 100%;
119
- }
120
- .coverage-summary tr { border-bottom: 1px solid #bbb; }
121
- .keyline-all { border: 1px solid #ddd; }
122
- .coverage-summary td, .coverage-summary th { padding: 10px; }
123
- .coverage-summary tbody { border: 1px solid #bbb; }
124
- .coverage-summary td { border-right: 1px solid #bbb; }
125
- .coverage-summary td:last-child { border-right: none; }
126
- .coverage-summary th {
127
- text-align: left;
128
- font-weight: normal;
129
- white-space: nowrap;
130
- }
131
- .coverage-summary th.file { border-right: none !important; }
132
- .coverage-summary th.pct { }
133
- .coverage-summary th.pic,
134
- .coverage-summary th.abs,
135
- .coverage-summary td.pct,
136
- .coverage-summary td.abs { text-align: right; }
137
- .coverage-summary td.file { white-space: nowrap; }
138
- .coverage-summary td.pic { min-width: 120px !important; }
139
- .coverage-summary tfoot td { }
140
-
141
- .coverage-summary .sorter {
142
- height: 10px;
143
- width: 7px;
144
- display: inline-block;
145
- margin-left: 0.5em;
146
- background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
147
- }
148
- .coverage-summary .sorted .sorter {
149
- background-position: 0 -20px;
150
- }
151
- .coverage-summary .sorted-desc .sorter {
152
- background-position: 0 -10px;
153
- }
154
- .status-line { height: 10px; }
155
- /* yellow */
156
- .cbranch-no { background: yellow !important; color: #111; }
157
- /* dark red */
158
- .red.solid, .status-line.low, .low .cover-fill { background:#C21F39 }
159
- .low .chart { border:1px solid #C21F39 }
160
- .highlighted,
161
- .highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
162
- background: #C21F39 !important;
163
- }
164
- /* medium red */
165
- .cstat-no, .fstat-no, .cbranch-no, .cbranch-no { background:#F6C6CE }
166
- /* light red */
167
- .low, .cline-no { background:#FCE1E5 }
168
- /* light green */
169
- .high, .cline-yes { background:rgb(230,245,208) }
170
- /* medium green */
171
- .cstat-yes { background:rgb(161,215,106) }
172
- /* dark green */
173
- .status-line.high, .high .cover-fill { background:rgb(77,146,33) }
174
- .high .chart { border:1px solid rgb(77,146,33) }
175
- /* dark yellow (gold) */
176
- .status-line.medium, .medium .cover-fill { background: #f9cd0b; }
177
- .medium .chart { border:1px solid #f9cd0b; }
178
- /* light yellow */
179
- .medium { background: #fff4c2; }
180
-
181
- .cstat-skip { background: #ddd; color: #111; }
182
- .fstat-skip { background: #ddd; color: #111 !important; }
183
- .cbranch-skip { background: #ddd !important; color: #111; }
184
-
185
- span.cline-neutral { background: #eaeaea; }
186
-
187
- .coverage-summary td.empty {
188
- opacity: .5;
189
- padding-top: 4px;
190
- padding-bottom: 4px;
191
- line-height: 1;
192
- color: #888;
193
- }
194
-
195
- .cover-fill, .cover-empty {
196
- display:inline-block;
197
- height: 12px;
198
- }
199
- .chart {
200
- line-height: 0;
201
- }
202
- .cover-empty {
203
- background: white;
204
- }
205
- .cover-full {
206
- border-right: none !important;
207
- }
208
- pre.prettyprint {
209
- border: none !important;
210
- padding: 0 !important;
211
- margin: 0 !important;
212
- }
213
- .com { color: #999 !important; }
214
- .ignore-none { color: #999; font-weight: normal; }
215
-
216
- .wrapper {
217
- min-height: 100%;
218
- height: auto !important;
219
- height: 100%;
220
- margin: 0 auto -48px;
221
- }
222
- .footer, .push {
223
- height: 48px;
224
- }
@@ -1,87 +0,0 @@
1
- /* eslint-disable */
2
- var jumpToCode = (function init() {
3
- // Classes of code we would like to highlight in the file view
4
- var missingCoverageClasses = ['.cbranch-no', '.cstat-no', '.fstat-no'];
5
-
6
- // Elements to highlight in the file listing view
7
- var fileListingElements = ['td.pct.low'];
8
-
9
- // We don't want to select elements that are direct descendants of another match
10
- var notSelector = ':not(' + missingCoverageClasses.join('):not(') + ') > '; // becomes `:not(a):not(b) > `
11
-
12
- // Selecter that finds elements on the page to which we can jump
13
- var selector =
14
- fileListingElements.join(', ') +
15
- ', ' +
16
- notSelector +
17
- missingCoverageClasses.join(', ' + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b`
18
-
19
- // The NodeList of matching elements
20
- var missingCoverageElements = document.querySelectorAll(selector);
21
-
22
- var currentIndex;
23
-
24
- function toggleClass(index) {
25
- missingCoverageElements
26
- .item(currentIndex)
27
- .classList.remove('highlighted');
28
- missingCoverageElements.item(index).classList.add('highlighted');
29
- }
30
-
31
- function makeCurrent(index) {
32
- toggleClass(index);
33
- currentIndex = index;
34
- missingCoverageElements.item(index).scrollIntoView({
35
- behavior: 'smooth',
36
- block: 'center',
37
- inline: 'center'
38
- });
39
- }
40
-
41
- function goToPrevious() {
42
- var nextIndex = 0;
43
- if (typeof currentIndex !== 'number' || currentIndex === 0) {
44
- nextIndex = missingCoverageElements.length - 1;
45
- } else if (missingCoverageElements.length > 1) {
46
- nextIndex = currentIndex - 1;
47
- }
48
-
49
- makeCurrent(nextIndex);
50
- }
51
-
52
- function goToNext() {
53
- var nextIndex = 0;
54
-
55
- if (
56
- typeof currentIndex === 'number' &&
57
- currentIndex < missingCoverageElements.length - 1
58
- ) {
59
- nextIndex = currentIndex + 1;
60
- }
61
-
62
- makeCurrent(nextIndex);
63
- }
64
-
65
- return function jump(event) {
66
- if (
67
- document.getElementById('fileSearch') === document.activeElement &&
68
- document.activeElement != null
69
- ) {
70
- // if we're currently focused on the search input, we don't want to navigate
71
- return;
72
- }
73
-
74
- switch (event.which) {
75
- case 78: // n
76
- case 74: // j
77
- goToNext();
78
- break;
79
- case 66: // b
80
- case 75: // k
81
- case 80: // p
82
- goToPrevious();
83
- break;
84
- }
85
- };
86
- })();
87
- window.addEventListener('keydown', jumpToCode);
@@ -1,49 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1751730410480" clover="3.2.0">
3
- <project timestamp="1751730410480" name="All files">
4
- <metrics statements="37" coveredstatements="37" conditionals="10" coveredconditionals="10" methods="4" coveredmethods="4" elements="51" coveredelements="51" complexity="0" loc="37" ncloc="37" packages="1" files="2" classes="2"/>
5
- <file name="xapi-request-interceptor.ts" path="G:\programming\xapi-ts\packages\adaptor-nestjs\src\xapi-request-interceptor.ts">
6
- <metrics statements="13" coveredstatements="13" conditionals="4" coveredconditionals="4" methods="2" coveredmethods="2"/>
7
- <line num="1" count="1" type="stmt"/>
8
- <line num="5" count="1" type="stmt"/>
9
- <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
10
- <line num="7" count="4" type="stmt"/>
11
- <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
12
- <line num="9" count="3" type="stmt"/>
13
- <line num="10" count="3" type="stmt"/>
14
- <line num="12" count="3" type="cond" truecount="2" falsecount="0"/>
15
- <line num="13" count="1" type="stmt"/>
16
- <line num="14" count="1" type="stmt"/>
17
- <line num="15" count="3" type="stmt"/>
18
- <line num="16" count="3" type="stmt"/>
19
- <line num="17" count="1" type="stmt"/>
20
- </file>
21
- <file name="xapi-response-interceptor.ts" path="G:\programming\xapi-ts\packages\adaptor-nestjs\src\xapi-response-interceptor.ts">
22
- <metrics statements="24" coveredstatements="24" conditionals="6" coveredconditionals="6" methods="2" coveredmethods="2"/>
23
- <line num="1" count="1" type="stmt"/>
24
- <line num="5" count="1" type="stmt"/>
25
- <line num="6" count="1" type="cond" truecount="1" falsecount="0"/>
26
- <line num="7" count="4" type="stmt"/>
27
- <line num="8" count="1" type="cond" truecount="1" falsecount="0"/>
28
- <line num="9" count="3" type="stmt"/>
29
- <line num="10" count="3" type="stmt"/>
30
- <line num="11" count="3" type="cond" truecount="1" falsecount="0"/>
31
- <line num="12" count="3" type="cond" truecount="1" falsecount="0"/>
32
- <line num="13" count="2" type="stmt"/>
33
- <line num="15" count="2" type="cond" truecount="1" falsecount="0"/>
34
- <line num="16" count="1" type="stmt"/>
35
- <line num="17" count="1" type="stmt"/>
36
- <line num="18" count="1" type="stmt"/>
37
- <line num="19" count="1" type="stmt"/>
38
- <line num="20" count="1" type="stmt"/>
39
- <line num="21" count="2" type="cond" truecount="1" falsecount="0"/>
40
- <line num="22" count="1" type="stmt"/>
41
- <line num="23" count="1" type="stmt"/>
42
- <line num="24" count="1" type="stmt"/>
43
- <line num="25" count="3" type="stmt"/>
44
- <line num="26" count="3" type="stmt"/>
45
- <line num="27" count="3" type="stmt"/>
46
- <line num="28" count="1" type="stmt"/>
47
- </file>
48
- </project>
49
- </coverage>
@@ -1,3 +0,0 @@
1
- {"G:\\programming\\xapi-ts\\packages\\adaptor-nestjs\\src\\xapi-request-interceptor.ts": {"path":"G:\\programming\\xapi-ts\\packages\\adaptor-nestjs\\src\\xapi-request-interceptor.ts","all":false,"statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":100}},"4":{"start":{"line":5,"column":0},"end":{"line":5,"column":13}},"5":{"start":{"line":6,"column":0},"end":{"line":6,"column":64}},"6":{"start":{"line":7,"column":0},"end":{"line":7,"column":76}},"7":{"start":{"line":8,"column":0},"end":{"line":8,"column":91}},"8":{"start":{"line":9,"column":0},"end":{"line":9,"column":56}},"9":{"start":{"line":10,"column":0},"end":{"line":10,"column":103}},"11":{"start":{"line":12,"column":0},"end":{"line":12,"column":80}},"12":{"start":{"line":13,"column":0},"end":{"line":13,"column":47}},"13":{"start":{"line":14,"column":0},"end":{"line":14,"column":5}},"14":{"start":{"line":15,"column":0},"end":{"line":15,"column":24}},"15":{"start":{"line":16,"column":0},"end":{"line":16,"column":3}},"16":{"start":{"line":17,"column":0},"end":{"line":17,"column":1}}},"s":{"0":1,"4":1,"5":1,"6":4,"7":1,"8":3,"9":3,"11":3,"12":1,"13":1,"14":3,"15":3,"16":1},"branchMap":{"0":{"type":"branch","line":6,"loc":{"start":{"line":6,"column":7},"end":{"line":7,"column":76}},"locations":[{"start":{"line":6,"column":7},"end":{"line":7,"column":76}}]},"1":{"type":"branch","line":8,"loc":{"start":{"line":8,"column":2},"end":{"line":16,"column":3}},"locations":[{"start":{"line":8,"column":2},"end":{"line":16,"column":3}}]},"2":{"type":"branch","line":12,"loc":{"start":{"line":12,"column":44},"end":{"line":12,"column":79}},"locations":[{"start":{"line":12,"column":44},"end":{"line":12,"column":79}}]},"3":{"type":"branch","line":12,"loc":{"start":{"line":12,"column":79},"end":{"line":14,"column":5}},"locations":[{"start":{"line":12,"column":79},"end":{"line":14,"column":5}}]}},"b":{"0":[4],"1":[3],"2":[2],"3":[1]},"fnMap":{"0":{"name":"_XapiRequestInterceptor","decl":{"start":{"line":6,"column":7},"end":{"line":7,"column":76}},"loc":{"start":{"line":6,"column":7},"end":{"line":7,"column":76}},"line":6},"1":{"name":"intercept","decl":{"start":{"line":8,"column":2},"end":{"line":16,"column":3}},"loc":{"start":{"line":8,"column":2},"end":{"line":16,"column":3}},"line":8}},"f":{"0":4,"1":3}}
2
- ,"G:\\programming\\xapi-ts\\packages\\adaptor-nestjs\\src\\xapi-response-interceptor.ts": {"path":"G:\\programming\\xapi-ts\\packages\\adaptor-nestjs\\src\\xapi-response-interceptor.ts","all":false,"statementMap":{"0":{"start":{"line":1,"column":0},"end":{"line":1,"column":100}},"4":{"start":{"line":5,"column":0},"end":{"line":5,"column":13}},"5":{"start":{"line":6,"column":0},"end":{"line":6,"column":92}},"6":{"start":{"line":7,"column":0},"end":{"line":7,"column":77}},"7":{"start":{"line":8,"column":0},"end":{"line":8,"column":88}},"8":{"start":{"line":9,"column":0},"end":{"line":9,"column":71}},"9":{"start":{"line":10,"column":0},"end":{"line":10,"column":30}},"10":{"start":{"line":11,"column":0},"end":{"line":11,"column":28}},"11":{"start":{"line":12,"column":0},"end":{"line":12,"column":40}},"12":{"start":{"line":13,"column":0},"end":{"line":13,"column":15}},"14":{"start":{"line":15,"column":0},"end":{"line":15,"column":67}},"15":{"start":{"line":16,"column":0},"end":{"line":16,"column":31}},"16":{"start":{"line":17,"column":0},"end":{"line":17,"column":27}},"17":{"start":{"line":18,"column":0},"end":{"line":18,"column":94}},"18":{"start":{"line":19,"column":0},"end":{"line":19,"column":55}},"19":{"start":{"line":20,"column":0},"end":{"line":20,"column":11}},"20":{"start":{"line":21,"column":0},"end":{"line":21,"column":9}},"21":{"start":{"line":22,"column":0},"end":{"line":22,"column":14}},"22":{"start":{"line":23,"column":0},"end":{"line":23,"column":73}},"23":{"start":{"line":24,"column":0},"end":{"line":24,"column":9}},"24":{"start":{"line":25,"column":0},"end":{"line":25,"column":8}},"25":{"start":{"line":26,"column":0},"end":{"line":26,"column":5}},"26":{"start":{"line":27,"column":0},"end":{"line":27,"column":3}},"27":{"start":{"line":28,"column":0},"end":{"line":28,"column":1}}},"s":{"0":1,"4":1,"5":1,"6":4,"7":1,"8":3,"9":3,"10":3,"11":3,"12":2,"14":2,"15":1,"16":1,"17":1,"18":1,"19":1,"20":2,"21":1,"22":1,"23":1,"24":3,"25":3,"26":3,"27":1},"branchMap":{"0":{"type":"branch","line":6,"loc":{"start":{"line":6,"column":7},"end":{"line":7,"column":77}},"locations":[{"start":{"line":6,"column":7},"end":{"line":7,"column":77}}]},"1":{"type":"branch","line":8,"loc":{"start":{"line":8,"column":2},"end":{"line":27,"column":3}},"locations":[{"start":{"line":8,"column":2},"end":{"line":27,"column":3}}]},"2":{"type":"branch","line":11,"loc":{"start":{"line":11,"column":10},"end":{"line":25,"column":7}},"locations":[{"start":{"line":11,"column":10},"end":{"line":25,"column":7}}]},"3":{"type":"branch","line":12,"loc":{"start":{"line":12,"column":39},"end":{"line":21,"column":9}},"locations":[{"start":{"line":12,"column":39},"end":{"line":21,"column":9}}]},"4":{"type":"branch","line":15,"loc":{"start":{"line":15,"column":65},"end":{"line":20,"column":11}},"locations":[{"start":{"line":15,"column":65},"end":{"line":20,"column":11}}]},"5":{"type":"branch","line":21,"loc":{"start":{"line":21,"column":8},"end":{"line":24,"column":9}},"locations":[{"start":{"line":21,"column":8},"end":{"line":24,"column":9}}]}},"b":{"0":[4],"1":[3],"2":[3],"3":[2],"4":[1],"5":[1]},"fnMap":{"0":{"name":"_XapiResponseInterceptor","decl":{"start":{"line":6,"column":7},"end":{"line":7,"column":77}},"loc":{"start":{"line":6,"column":7},"end":{"line":7,"column":77}},"line":6},"1":{"name":"intercept","decl":{"start":{"line":8,"column":2},"end":{"line":27,"column":3}},"loc":{"start":{"line":8,"column":2},"end":{"line":27,"column":3}},"line":8}},"f":{"0":4,"1":3}}
3
- }
Binary file