moonflower 0.10.1 → 0.10.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/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -0
- package/dist/src/router/Router.d.ts +1 -0
- package/dist/src/router/Router.d.ts.map +1 -1
- package/dist/src/router/Router.js +15 -24
- package/dist/src/router/parseEndpointReturnValue.d.ts +6 -0
- package/dist/src/router/parseEndpointReturnValue.d.ts.map +1 -1
- package/dist/src/router/parseEndpointReturnValue.js +11 -4
- package/dist/src/test/TestAppRouter.d.ts.map +1 -1
- package/dist/src/test/TestAppRouter.js +6 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/router/Router.ts +20 -30
- package/src/router/parseEndpointReturnValue.spec.ts +50 -3
- package/src/router/parseEndpointReturnValue.ts +11 -4
- package/src/test/TestAppRouter.ts +9 -0
- package/src/test/app.spec.ts +14 -0
package/dist/src/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './hooks/usePathParams';
|
|
|
11
11
|
export * from './hooks/useQueryParams';
|
|
12
12
|
export * from './hooks/useRequestBody';
|
|
13
13
|
export * from './hooks/useRequestRawBody';
|
|
14
|
+
export * from './hooks/useReturnValue';
|
|
14
15
|
export * from './openapi/initOpenApiEngine';
|
|
15
16
|
export * from './router/Router';
|
|
16
17
|
export * from './validators/BuiltInValidators';
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA;AACzC,cAAc,2BAA2B,CAAA;AACzC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,wCAAwC,CAAA;AACtD,cAAc,wBAAwB,CAAA;AACtC,cAAc,mCAAmC,CAAA;AACjD,cAAc,yBAAyB,CAAA;AACvC,cAAc,2BAA2B,CAAA;AACzC,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,wBAAwB,CAAA;AACtC,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,4BAA4B,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA;AACzC,cAAc,2BAA2B,CAAA;AACzC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,wCAAwC,CAAA;AACtD,cAAc,wBAAwB,CAAA;AACtC,cAAc,mCAAmC,CAAA;AACjD,cAAc,yBAAyB,CAAA;AACvC,cAAc,2BAA2B,CAAA;AACzC,cAAc,yBAAyB,CAAA;AACvC,cAAc,uBAAuB,CAAA;AACrC,cAAc,wBAAwB,CAAA;AACtC,cAAc,wBAAwB,CAAA;AACtC,cAAc,2BAA2B,CAAA;AACzC,cAAc,wBAAwB,CAAA;AACtC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,iBAAiB,CAAA;AAC/B,cAAc,gCAAgC,CAAA;AAC9C,cAAc,4BAA4B,CAAA"}
|
package/dist/src/index.js
CHANGED
|
@@ -27,6 +27,7 @@ __exportStar(require("./hooks/usePathParams"), exports);
|
|
|
27
27
|
__exportStar(require("./hooks/useQueryParams"), exports);
|
|
28
28
|
__exportStar(require("./hooks/useRequestBody"), exports);
|
|
29
29
|
__exportStar(require("./hooks/useRequestRawBody"), exports);
|
|
30
|
+
__exportStar(require("./hooks/useReturnValue"), exports);
|
|
30
31
|
__exportStar(require("./openapi/initOpenApiEngine"), exports);
|
|
31
32
|
__exportStar(require("./router/Router"), exports);
|
|
32
33
|
__exportStar(require("./validators/BuiltInValidators"), exports);
|
|
@@ -8,6 +8,7 @@ type Props = {
|
|
|
8
8
|
export declare class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
9
9
|
koaRouter: KoaRouter;
|
|
10
10
|
constructor(props?: Props);
|
|
11
|
+
private sendResponseValue;
|
|
11
12
|
use(...middleware: Array<KoaRouter.Middleware<StateT, ContextT>>): this;
|
|
12
13
|
with<ResponseTypeT extends Record<string, any>>(middleware: (ctx: Koa.ParameterizedContext<ContextT>) => ResponseTypeT): Router<StateT, ContextT & (ResponseTypeT extends Promise<any> ? Awaited<ResponseTypeT> : ResponseTypeT)>;
|
|
13
14
|
get<P extends string>(path: P, callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>): this;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Router.d.ts","sourceRoot":"","sources":["../../../src/router/Router.ts"],"names":[],"mappings":";AACA,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,GAAG,MAAM,KAAK,CAAA;AAGrB,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAA;AAG3D,KAAK,KAAK,GAAG;IACZ,mBAAmB,EAAE,OAAO,CAAA;CAC5B,CAAA;AAED,qBAAa,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,YAAY,EAAE,QAAQ,GAAG,GAAG,CAAC,cAAc;IACpE,SAAS,EAAE,SAAS,CAAkB;gBAE1B,KAAK,GAAE,KAAsC;
|
|
1
|
+
{"version":3,"file":"Router.d.ts","sourceRoot":"","sources":["../../../src/router/Router.ts"],"names":[],"mappings":";AACA,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,GAAG,MAAM,KAAK,CAAA;AAGrB,OAAO,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAA;AAG3D,KAAK,KAAK,GAAG;IACZ,mBAAmB,EAAE,OAAO,CAAA;CAC5B,CAAA;AAED,qBAAa,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,YAAY,EAAE,QAAQ,GAAG,GAAG,CAAC,cAAc;IACpE,SAAS,EAAE,SAAS,CAAkB;gBAE1B,KAAK,GAAE,KAAsC;YAOlD,iBAAiB;IAcxB,GAAG,CAAC,GAAG,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IAMhE,IAAI,CAAC,aAAa,SAAS,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EACpD,UAAU,EAAE,CAAC,GAAG,EAAE,GAAG,CAAC,oBAAoB,CAAC,QAAQ,CAAC,KAAK,aAAa;IAchE,GAAG,CAAC,CAAC,SAAS,MAAM,EAC1B,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,sBAAsB,CAAC,CAAC,CAAC,CAAC;IAQtE,IAAI,CAAC,CAAC,SAAS,MAAM,EAC3B,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,sBAAsB,CAAC,CAAC,CAAC,CAAC;IAQtE,GAAG,CAAC,CAAC,SAAS,MAAM,EAC1B,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,sBAAsB,CAAC,CAAC,CAAC,CAAC;IAQtE,MAAM,CAAC,CAAC,SAAS,MAAM,EAC7B,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,sBAAsB,CAAC,CAAC,CAAC,CAAC;IAQtE,GAAG,CAAC,CAAC,SAAS,MAAM,EAC1B,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,sBAAsB,CAAC,CAAC,CAAC,CAAC;IAQtE,KAAK,CAAC,CAAC,SAAS,MAAM,EAC5B,IAAI,EAAE,CAAC,EACP,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,MAAM,EAAE,QAAQ,GAAG,sBAAsB,CAAC,CAAC,CAAC,CAAC;IAQtE,MAAM;IAIN,cAAc;CAGrB"}
|
|
@@ -15,6 +15,15 @@ class Router {
|
|
|
15
15
|
openApiManager.registerRouters([this]);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
+
async sendResponseValue(ctx, callback) {
|
|
19
|
+
const responseValue = await callback(ctx, undefined);
|
|
20
|
+
const { value, status, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
21
|
+
ctx.body = value;
|
|
22
|
+
if (status !== 'unset') {
|
|
23
|
+
ctx.status = status;
|
|
24
|
+
}
|
|
25
|
+
ctx.set('Content-Type', contentType);
|
|
26
|
+
}
|
|
18
27
|
use(...middleware) {
|
|
19
28
|
this.koaRouter.use(...middleware);
|
|
20
29
|
return this;
|
|
@@ -31,55 +40,37 @@ class Router {
|
|
|
31
40
|
}
|
|
32
41
|
get(path, callback) {
|
|
33
42
|
this.koaRouter.get(path, async (ctx) => {
|
|
34
|
-
|
|
35
|
-
const { value, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
36
|
-
ctx.body = value;
|
|
37
|
-
ctx.set('Content-Type', contentType);
|
|
43
|
+
await this.sendResponseValue(ctx, callback);
|
|
38
44
|
});
|
|
39
45
|
return this;
|
|
40
46
|
}
|
|
41
47
|
post(path, callback) {
|
|
42
48
|
this.koaRouter.post(path, async (ctx) => {
|
|
43
|
-
|
|
44
|
-
const { value, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
45
|
-
ctx.body = value;
|
|
46
|
-
ctx.set('Content-Type', contentType);
|
|
49
|
+
await this.sendResponseValue(ctx, callback);
|
|
47
50
|
});
|
|
48
51
|
return this;
|
|
49
52
|
}
|
|
50
53
|
put(path, callback) {
|
|
51
54
|
this.koaRouter.put(path, async (ctx) => {
|
|
52
|
-
|
|
53
|
-
const { value, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
54
|
-
ctx.body = value;
|
|
55
|
-
ctx.set('Content-Type', contentType);
|
|
55
|
+
await this.sendResponseValue(ctx, callback);
|
|
56
56
|
});
|
|
57
57
|
return this;
|
|
58
58
|
}
|
|
59
59
|
delete(path, callback) {
|
|
60
60
|
this.koaRouter.delete(path, async (ctx) => {
|
|
61
|
-
|
|
62
|
-
const { value, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
63
|
-
ctx.body = value;
|
|
64
|
-
ctx.set('Content-Type', contentType);
|
|
61
|
+
await this.sendResponseValue(ctx, callback);
|
|
65
62
|
});
|
|
66
63
|
return this;
|
|
67
64
|
}
|
|
68
65
|
del(path, callback) {
|
|
69
66
|
this.koaRouter.del(path, async (ctx) => {
|
|
70
|
-
|
|
71
|
-
const { value, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
72
|
-
ctx.body = value;
|
|
73
|
-
ctx.set('Content-Type', contentType);
|
|
67
|
+
await this.sendResponseValue(ctx, callback);
|
|
74
68
|
});
|
|
75
69
|
return this;
|
|
76
70
|
}
|
|
77
71
|
patch(path, callback) {
|
|
78
72
|
this.koaRouter.patch(path, async (ctx) => {
|
|
79
|
-
|
|
80
|
-
const { value, contentType } = (0, parseEndpointReturnValue_1.parseEndpointReturnValue)(responseValue);
|
|
81
|
-
ctx.body = value;
|
|
82
|
-
ctx.set('Content-Type', contentType);
|
|
73
|
+
await this.sendResponseValue(ctx, callback);
|
|
83
74
|
});
|
|
84
75
|
return this;
|
|
85
76
|
}
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
export declare const parseEndpointReturnValue: (response: unknown) => {
|
|
2
|
+
value: string | Buffer;
|
|
3
|
+
status: number;
|
|
4
|
+
contentType: string;
|
|
5
|
+
} | {
|
|
2
6
|
value: string;
|
|
7
|
+
status: "unset";
|
|
3
8
|
contentType: string;
|
|
4
9
|
} | {
|
|
5
10
|
value: Buffer;
|
|
11
|
+
status: "unset";
|
|
6
12
|
contentType: string;
|
|
7
13
|
};
|
|
8
14
|
//# sourceMappingURL=parseEndpointReturnValue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parseEndpointReturnValue.d.ts","sourceRoot":"","sources":["../../../src/router/parseEndpointReturnValue.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB,aAAc,OAAO
|
|
1
|
+
{"version":3,"file":"parseEndpointReturnValue.d.ts","sourceRoot":"","sources":["../../../src/router/parseEndpointReturnValue.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,wBAAwB,aAAc,OAAO;;;;;;;;;;;;CAqCzD,CAAA"}
|
|
@@ -4,29 +4,36 @@ exports.parseEndpointReturnValue = void 0;
|
|
|
4
4
|
const parseEndpointReturnValue = (response) => {
|
|
5
5
|
if (typeof response === 'object' &&
|
|
6
6
|
response &&
|
|
7
|
+
'_isUseReturnValue' in response &&
|
|
7
8
|
'value' in response &&
|
|
8
|
-
|
|
9
|
+
'status' in response &&
|
|
9
10
|
'contentType' in response &&
|
|
11
|
+
response['_isUseReturnValue'] === true &&
|
|
12
|
+
typeof response['status'] === 'number' &&
|
|
10
13
|
typeof response['contentType'] === 'string') {
|
|
11
14
|
return {
|
|
12
|
-
value: response.value,
|
|
15
|
+
value: Buffer.isBuffer(response.value) ? response.value : String(response.value),
|
|
16
|
+
status: response.status,
|
|
13
17
|
contentType: response.contentType,
|
|
14
18
|
};
|
|
15
19
|
}
|
|
16
|
-
if (
|
|
20
|
+
if (['string', 'boolean', 'number', 'bigint', 'symbol'].includes(typeof response)) {
|
|
17
21
|
return {
|
|
18
|
-
value: response,
|
|
22
|
+
value: String(response),
|
|
23
|
+
status: 'unset',
|
|
19
24
|
contentType: 'text/plain',
|
|
20
25
|
};
|
|
21
26
|
}
|
|
22
27
|
if (Buffer.isBuffer(response)) {
|
|
23
28
|
return {
|
|
24
29
|
value: response,
|
|
30
|
+
status: 'unset',
|
|
25
31
|
contentType: 'application/octet-stream',
|
|
26
32
|
};
|
|
27
33
|
}
|
|
28
34
|
return {
|
|
29
35
|
value: JSON.stringify(response, (_, value) => (typeof value === 'bigint' ? value.toString() : value)),
|
|
36
|
+
status: 'unset',
|
|
30
37
|
contentType: 'application/json; charset=utf-8',
|
|
31
38
|
};
|
|
32
39
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestAppRouter.d.ts","sourceRoot":"","sources":["../../../src/test/TestAppRouter.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"TestAppRouter.d.ts","sourceRoot":"","sources":["../../../src/test/TestAppRouter.ts"],"names":[],"mappings":";AAQA,OAAO,EAAE,MAAM,IAAI,aAAa,EAAE,MAAM,kBAAkB,CAAA;AA4E1D,eAAO,MAAM,aAAa;;;;EAAW,CAAA"}
|
|
@@ -50,6 +50,12 @@ myRouter.get('/test/get/bigint', () => {
|
|
|
50
50
|
foo: BigInt(100),
|
|
51
51
|
};
|
|
52
52
|
});
|
|
53
|
+
myRouter.get('/test/get/useReturnValue', () => {
|
|
54
|
+
return (0, __1.useReturnValue)('foo', 418, 'text/custom');
|
|
55
|
+
});
|
|
56
|
+
myRouter.get('/test/get/useReturnValue/buffer', () => {
|
|
57
|
+
return (0, __1.useReturnValue)(Buffer.from('foo'), 418, 'text/custom');
|
|
58
|
+
});
|
|
53
59
|
myRouter.get('/test/get/middleware-data', (ctx) => {
|
|
54
60
|
return {
|
|
55
61
|
user: ctx.user,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/yargs/helpers.d.ts","../node_modules/@ts-morph/common/lib/typescript.d.ts","../node_modules/@ts-morph/common/lib/ts-morph-common.d.ts","../node_modules/ts-morph/lib/ts-morph.d.ts","../src/openapi/discoveryModule/discoverImports/discoverImports.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/mime/Mime.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/koa__router/index.d.ts","../src/openapi/analyzerModule/types.ts","../src/openapi/generatorModule/getSchema.ts","../src/openapi/types.ts","../src/openapi/manager/OpenApiManager.ts","../src/utils/TypeUtils.ts","../src/router/parseEndpointReturnValue.ts","../src/router/Router.ts","../src/utils/nameOf.ts","../src/openapi/discoveryModule/discoverRouters/discoverRouters.ts","../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts","../src/openapi/analyzerModule/nodeParsers.ts","../src/hooks/useApiEndpoint.ts","../src/openapi/analyzerModule/parseEndpoint.ts","../src/openapi/analyzerModule/parseExposedModels.ts","../src/openapi/analyzerModule/analyzerModule.ts","../src/openapi/generatorModule/generateComponentSchemas.ts","../src/openapi/generatorModule/generatePaths.ts","../src/openapi/generatorModule/generatorModule.ts","../src/openapi/generatorModule/index.ts","../cli/prettyprint.ts","../cli/cli.ts","../node_modules/http-status-codes/build/cjs/utils-functions.d.ts","../node_modules/http-status-codes/build/cjs/status-codes.d.ts","../node_modules/http-status-codes/build/cjs/reason-phrases.d.ts","../node_modules/http-status-codes/build/cjs/legacy.d.ts","../node_modules/http-status-codes/build/cjs/index.d.ts","../src/errors/BaseHttpError.ts","../src/errors/HttpErrorHandler.ts","../src/errors/UserFacingErrors.ts","../src/hooks/authentication/useAuth.ts","../src/hooks/authentication/useOptionalAuth.ts","../src/hooks/useApiHeader/useApiHeader.ts","../src/utils/object.ts","../src/validators/types.ts","../src/utils/validationMessages.ts","../src/hooks/useCookieParams.ts","../src/hooks/useExposeApiModel/useExposeApiModel.ts","../src/hooks/useExposeApiModel/index.ts","../src/hooks/useHeaderParams.ts","../src/hooks/usePathParams.ts","../src/hooks/useQueryParams.ts","../src/hooks/useRequestBody.ts","../src/hooks/useRequestRawBody.ts","../src/openapi/router/OpenApiRouter.ts","../src/openapi/initOpenApiEngine.ts","../src/validators/InternalParamWrappers.ts","../src/validators/BuiltInValidators.ts","../src/validators/ParamWrappers.ts","../src/index.ts","../src/setupTests.ts","../src/hooks/useReturnValue.ts","../src/hooks/useApiHeader/index.ts","../src/hooks/useApiHeader/useApiHeader.spec.data.ts","../src/hooks/useExposeApiModel/useExposeApiModel.spec.data.ts","../src/openapi/analyzerModule/test/openApiAnalyzer.spec.data.ts","../src/openapi/discoveryModule/index.ts","../src/openapi/discoveryModule/discoverRouterFiles/data/testRouterA.spec.data.ts","../src/openapi/discoveryModule/discoverRouterFiles/data/testRouterB.spec.data.ts","../src/openapi/discoveryModule/discoverRouters/discoverRouters.spec.data.ts","../src/openapi/generatorModule/test/openApiGenerator.spec.data.ts","../src/test/TestAppRouter.ts","../node_modules/@types/koa-bodyparser/index.d.ts","../src/test/app.ts","../src/utils/loadTestData.ts","../node_modules/node-mocks-http/lib/index.d.ts","../src/utils/mockContext.ts","../src/utils/printers.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/cookiejar/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/jsonwebtoken/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/superagent/index.d.ts","../node_modules/@types/supertest/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","d06153471f050b31e289c1a006b655cb1b2d12b94fecfed62bb81dfb581a125d","9cc884a6f8547dec935f930b8aad8212aaae876ebeaab5cd42d20b45251860e7","f84c28802d5c44429c86180eed9bb73826f2efd559205632ecb23d904b0a1a8c","5b62cb32ae66c8d1d420f2a807cd81dd1e5e68547eeacd738d41c39b64b6687c","01d183dc38180ca94b2751133213800c337e78d759498bc150adcda54271265e",{"version":"99985651cf7ace8c9d67e0945c2b5b153c06edf2a1618e04d35f9b8d0f50d487","signature":"52ee015c7ba18d9b65db770bbb74e33d7755a0d5778a75646b253b138c97e6c3"},"3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"dafc58ee47fa25dbc68b27c638bd6153dd7659021c164f64b7760757e9f5a6ab","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","ed3db4eb7ad0466e19df82d9ee5c057d78df954283004783932d75e8fa4058c5","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"cce14dcba2c2cb1059977ad65cf9caef890118cb20e35c4cf420bf1c83f27c1a","affectsGlobalScope":true},"5a2f6de23113659e83dc8c5edb9f3c5bcd6136f74dcc1785b3df4eef1271e1f3","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","fb862b9a2e78754cf44b770ba6f194987d63c8d4cd103c6c05534faa4120ae98","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"a34eb69d404f1db719580115825bd7ba837023effe04d235bdbb2e0168df7451","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","204dbe6c72467fb14bbe8f06510b11fb541b6ce29580c6e10ebd3bdb2eb0c1f9","3a9b877f47119ac64aab98c61cae91a304ddeb6e8285ccd824a6aa665ffaeb95","a442d3cfd6e068d2742d5b53d323d51fa695cd405e5575f083c9b6272a63387a",{"version":"03d621e4914c4838a3b3c56f62f6d380546c531f21f9518d5166446ecc6f2a34","signature":"cc18048b2a755ccacab9b0da159f869c44db7bc97ad2080aa1ed9b4309d71e00"},{"version":"132e7980f752bc6877ec349c402aaf6ddaa09a8a665df1a4ca79792ebbe58456","signature":"86400fde0471e8898176ff8c84b1a7ee42717ff58bd3678f794543b7f0b142c4"},{"version":"caf22e78a65f40caa7c2099e3f77445611660fd0072947d9f9fa01240babdd70","signature":"4bb70b318fd3bdfb503af754477613a1e2934a1948eda87fbfb96165eac6b494"},{"version":"b5e050ce6aa6164220065a1f3129a955eec856aa241e61701e186eec803e9524","signature":"fecf8408dfab8a406998557f24b9355549baf776d579e329c09e5153e9838f79"},{"version":"b8c0151f44b1523dfd0b0f6f200d754de0fefcb5f093b124b8825f6da1b8103c","signature":"c57a316467f360af5388d7257099ad795ff109608afe0c2895315e073e285bbf"},{"version":"8df7e226c3444968b407286529e6890f060d9461ad03a10009b5385e971545a4","signature":"e0f0680e5be362ad012587faf75b7055f58cf4f37e3b0a6be29cda77523be3fa"},{"version":"27de94080fb62f1bf35a307f1a52b9eb4a52b87a6678df81edc12f3f315dd700","signature":"74f81e6c752bc7cd091ef24c85adf2422e69d1445df95a6b47cd283f4685319b"},{"version":"2a63b06aea64a0330ccff9285949399ccfdf052f6115f964b208c1582a180c13","signature":"26aa583349f8e432b9debab1e4881539f3957776d4a4a61d993cfbeb1b9f1a59"},{"version":"ba5567dfbf45ab3cd7224dc8bead91cd944079a389097a845cad8be1c5214194","signature":"6820d0a1106182e8c9d4ab3440212fe24c6c88daf43f2ba216a4b040f018a64d"},{"version":"7d98f2e8fe46eeecf4327fdeed88c523ab42625d66e4c85d897c53626a871c71","signature":"2fbb35fa0adabb32c5cbf8dbda457e9a84daecf8b48fd56b836ca9e254b692ae"},{"version":"4ef5a28b2bd83fb24ea517dc9849a26b652d799f0ac36d64ec6e5df3fcc98b71","signature":"5f6177fc5e9869979c2c282b8696613eabb64908c7a416d1ba9876bf588b0749"},{"version":"4f4fe83ee4a2724b397965445a06ed9689a0dd5039c2f0e82e6c08649590f332","signature":"dd2b970560d75d962b4afa1f48965ff114c7bd87062a2e45a1bddca58db1da47"},{"version":"ff29df64e13b28cfd87d9d27c4acc89ef2baa33a9e619ddce9aadcd8bf1ea0a4","signature":"3ac053301e0306754637eba01544134a5033180de83ac5254692270f18503190"},{"version":"d8ad3bbe367ee5f020f23fffb2703343c681e61f6f99b96f7a309fb34d84ea35","signature":"f5c1a81af7582b904b003dc8492742f9ec5ebb389350dc7c3d123ab7e38e7980"},{"version":"6954722413a7704709abb6bcb0543f148e4788ab6f5a7578bfeba6233ab4934f","signature":"7cc903ff72f306ae5fb4b8fda54a2c998e76c1815df1fb25878ef91360724dd4"},{"version":"4a6cb3f08ea710c01644ba02c8accc41b8aaad6a2fe4f7bc9ef219c3a1bd2739","signature":"e321e714b6948df416f61bd55afc70e7432253331013ec4b91cca0a830e6fc6e"},{"version":"0c2163375b84d363399322229fa035c874dc4892716525a5737fea6b820796b8","signature":"bff6235b8cc7fdde9fff7d3d99c226a4c907d7abb9733f4d529fe8a43fc60851"},{"version":"276de1cb13afe64b44a2ff2b0b399a9e464d8f8383cf948ebcbd99865980e11d","signature":"29c40d06836d17229bd5f5e0f04f66ef46d2718aa7e40a51ded074da6826369a"},{"version":"be717c2933df3c5945391158184e44c757815d7a92b0675348f59deed2ac2e27","signature":"9e131e8af6da43e1a9bf49e2ec60113b455b00f8bff991f9e634decf7bb9f080"},{"version":"21a22446ff83b2f7639898f11248fa6a0026077c621bdff8d169e36f6a06beaa","signature":"ee6499212bf580a2d6bc048289e22beabb17abcae3c17cfda1583efdf69f840e"},{"version":"4c0635b3f42483e88aa4b15b2dabfc8b5ab2957a938918cb42bfdc96c6612629","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"1bc146fb8f5cf8f67d0bb651c2237196ab42d7bae6eff9c079f254c3a4b2dc9f","fcb175cbc3a5f91152314cabe52625d495da9a3c4e9b4578dfcb1018b10b5bd1","66b458867662fd10111e8241abfd372570816317b456b712979826b0d784df37","de743c53fbbaa917b418cff186394602074f211fdeeedc27c3a2ddd83993c043","bf028cb4dfbaa3e027a2d8935a48d323ba5c98c68f8197f38bf341b64c8c467f",{"version":"c63277619d74e3369ee886df36c4a93e4d7d009c726ed808ab88739989116592","signature":"c96fcb7669a470c5348b02cbd8ff85cfc72a34467820e6d6ed279771e64228bc"},{"version":"d5294c25d0dd7b877c0dd02c40d16ccddbdf5723a9fa6dca1b3cf6cbaf5110b6","signature":"5a64bae082465a2ae71544a15b2770421f758674bec39cf766ff7bb9068076e2"},{"version":"5bb39bb45b94a1d5186056b3a3e715a27fccec59816f789189c2e543cbbbdedd","signature":"5b6346ace605102ff8b7249afc3501f5650015458e83053b56ad301d1c4028d6"},{"version":"54d0557ef3dbc0246765a71c88b0175772a43531abbcc0e9ed494794683b5f2e","signature":"4e5afe65bbeef1262162bff38397afaf36f1e09ab378da22c01319b7e9722a5e"},{"version":"93fe9c505f8b97a7015fa9d46071bd5480304db7613e96531596eee8e1f10a6c","signature":"f0edbae4f56478ab99d01b8db765aa3da15a624fd845fa238aeb572314a6218f"},{"version":"356e5f175cc357ba27405717e13eff7b79b4ba7ad21a788add0cae53f2f1e0f9","signature":"5c0c1009ec84e9dbc47209e1301917972badaf978ab5a02a1fc6354ae98f5d2c"},{"version":"c56cc1d86fd02031ab5bfe766647184b62ad10440f025faa25df66194a5f0474","signature":"0fe9aad31dcc0ac8613bf4665f2645ca1f830fe8cd2dc7e897269223fff3ca46"},{"version":"730decf9686ac59d4d51cd8a6f0851082fa20b7196f1974ee207f138e9a6e9cd","signature":"bfcafccb4090cc48d5e93d12f96d9d499d6613e1590c01c58fc02a24ee82148e"},{"version":"8efed48b3031b031449d29e3ecb79e69bee9c0b773662380269031ab8bb76e4e","signature":"2cf059cceb3a5093a7cec83ca3f7289f0be9fc65b78c666e0dcc7c5ab1f6b2d7"},{"version":"21b465ddff4cfb90f0e79bb1fb4a92a23bdf0c398b45c2dd8402b1136e309dd1","signature":"abfbc7d2669386b2ecd2cbd0c47f62dc8da356dff7980305f9073c37518517d8"},{"version":"c04b8442863c54c508acd6a689436c73b1a3809eb9d2601e118fc54d0acfc84c","signature":"6d52fef06bdb5d76759cef5dda94fdbee761581efb5c495b6cb3369d7198f491"},{"version":"57296625a2e4b1bb329b1ca2a847a9f8b972d7b1d49115062031af64fd2b0195","signature":"fd933d52439dd75884b5ce2bc67528f03b70a4e6c84cac62c4c0c696596eb731"},{"version":"08eb762483268c15bd27fa8a5231855e5d3ce638017c8b39c27efaaf80e6e430","signature":"38f8a33763003dbc245496f7c678746783d82fa32137c726068d475eae6104bd"},{"version":"710062ef91f2b42ad199fde55e43d95814d6907bfa1cda3ae156fd9977ebfbfe","signature":"ae7519b29a680dfae90a6b72a51239a219c2cf6b0615c390f7481fcffce45055"},{"version":"4837604b1f9c623d2489cc9ec2feac62266b53ef4b017503a05ccc5d5d78acea","signature":"39314fa5a7ff7cbc65ab92770f2052230aa85f69829817f01e7fa502a36615e8"},{"version":"0ee4170f54655aa30a6e332e1942d055a832987f3a115bc05470ea52b8ec4248","signature":"b94c8985c3c79cb82d84c0bba5f08c5c38275d7f65b9faf1d42b28ac99562a18"},{"version":"29bb095ba814ad2b96bf47947d0d9b2b7faa8e30a4c631240ec593255a7c1dbb","signature":"245630b0a2ac1f66d12e1617583ada66a33bb857032cc231a89f96a28b9d171b"},{"version":"ed42268b7064ea16e7ca894f3e61fc3645a0c2ceb9ab0490960fd8c511374ded","signature":"d7d5d9fd95c4d90bb4c4709f0465e4edbdc2919ea3a276303421e8fce53c0e56"},{"version":"6bbda2d6b0188c1dd017223204358298331fffaa40be60da16b4138f4047a71f","signature":"ec8a34466b9078717e2964da096226a18aa628fbe4ca23594880236d73b4d81c"},{"version":"d3c262f18047d57986bfee1686fcd09d777d1f03cfca34172020d8c849c8d63d","signature":"1a969bbd3de0cbad5777d9363914fafb7f63068c8f3bd193d011b5b39bfd9f7b"},{"version":"9647106f703d43d63a20259e7e8f124ee885b24cddb3500f5c19d89a9b885814","signature":"78b917e1e8f1169c5b1a56b778a5f71abc4eb317bcaf3c1abba3c17a9df76188"},{"version":"8db42b1238b61e93829e357dae572decf1ce5902a7109c9defa8f5de8d136c50","signature":"1a3f82a5d6c79cf53b604a96f5fb7e7e301b50d301b43015dca0e7dc2bd8ec3f"},{"version":"6641b36de8a51bb1768c07faeb0c3a17d8dd805c6df6391d46d796a185e8f634","signature":"2eb2e4e6da0720eb5a61e25b46b8e4addb192370b9b64a9a756b349f831c9115"},{"version":"eb4a20d71105a0683d8304cc592c17e9a76d1b261ee2b304113beae3486a2525","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"e40394303f116372d81927fd60c88ddb523166c2ce0cdb404f3486ddd64d1795","signature":"54524d704f14bbbc3090943e183fcb7bf2f1db282046cb9b56c317daa171ab13"},{"version":"8893c74d665e0204454da45997b1d40b111460ec99c67350214c53e8024692ee","signature":"b10dc59d76bbcebd91a66fa59f0dfff6a01d88c1aece59a4a9588590f8a37757"},{"version":"a753e26d294b9e81488430163c396f959abbb429e25d2fb18da8ce7346f72d75","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ae5b98d69f144080acd81f125e17242786c72038c812460d3a6483a0b2ce3baa","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c69832c7bcaf165b37cfb35137fb067179396248f2e0cf25dff3f36c2ef430f6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0b5a5944aa717d3ad1778917c55caf8564dc80db2eb586af52d13045550ab5b5","signature":"99a55cec10c0e4740429bebadc33fd88e631617fdae46ddd764b335c23998e50"},{"version":"471993cef542b3672239aaeaf12747a8354f5c005d4933ffedcaeadccd342080","signature":"f5e419a03c40e9c00b880d8e9c96c23ed394bd5089b5e3d9db803aa654dc64ca"},{"version":"b5baf7f2142e7f4518e68a82caa4b2bf4d8a823af7a87073562ec6c852105861","signature":"f5e419a03c40e9c00b880d8e9c96c23ed394bd5089b5e3d9db803aa654dc64ca"},{"version":"178c25bee3a9010c3d85bd33efce824ce339148f282378f26a063ad623717ddb","signature":"c2c1821091aa057a9f93775b102dc140c357d6777f4b7dea49e26b5585523b03"},{"version":"e897f434c6754b44db3b4d07f1c5c7671c3cb312347da2a30b2bf94661b1570b","signature":"6842e6d78c39d53296a499951beebc623c30c33f9a69fdb130e5779af5da0222"},{"version":"18af215c76ebe42808054fbf7c30e01015822312db24438ff72447bfe4314493","signature":"7728754f91ab416a645ad0b121e782ae45bfe1f957023b62917cac67af619dd6"},"488b0a139b5f35ded772136cf4b541f3babf22e4ce9056daf65736234e88355d",{"version":"a97ef23e14762127a90ea4a50c7ef6b916f88c45591631d40be148779ac6371b","signature":"4fd15b16ecdc1aac8d2757453b83df70678eb9efd5df7c29b046ec9242194a8b"},{"version":"85ab6f8a91c0eb8441df118517da19a48cf41a3798572c68a78f0c5200834262","signature":"9e0be83772c22c6791140cef1e42eae9a5f8df30950129fe7b98a3e9c2cc41fa"},"4c8f981ab0ad887aa315ea39a9f5b4f025c7a17374e3f601be25d13f9dce92b1",{"version":"34e32a8ac8bdf507f4dc8928f07994c68bda55b43ab9795f861793e6806c9f03","signature":"1542e95b93c6378124f5aa3ae757cc4cbe1175e7e48f54084487f98c6fd13345"},{"version":"72adb87a25db4874ad061d0a1d58ac6df301786202e6fb3358e308360983a7a0","signature":"8c2f416cfe7b088dad02d50107ed3de7a05b7f1dc7b350d9b999dc40c669bce9"},"f4617bbd5403ec5b058db53b242dcb1421952e2652bd5c80abf6a1c4ea5656d6","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","230d323ef7f2ffadfc0ceae494492c4d2faa2b4eaec07a4b71424d084b97ebb8","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","331dd4fb49f27df3e88bcd1361a063de1e9bcc7d463d6dc386b0c0d690c1a66f","8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","bb4ed283cfb3db7ec1d4bb79c37f5e96d39b340f1f4de995c4b0b836c8d5fa05","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","29c5862cadd1c5e069453c60e8b240870431396921a50afc57bfdf5bdc614e47","76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778"],"root":[57,[162,182],[188,222],224,225,227,228],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictNullChecks":true,"target":4},"fileIdsList":[[52,53,107,116,165,176,180,181],[165],[229],[243],[54],[109,143],[229,230,231,232,233],[229,231],[109,143,152],[109,143,145,152,154],[106,109,143,146,147],[147,148,151,153],[107,143],[238],[239],[245,248],[143],[160],[106,109,110,114,120,135,143,144,145,155,156,157,158,159],[150],[149],[58],[93],[94,99,127],[95,106,107,114,124,135],[95,96,106,114],[97,136],[98,99,107,115],[99,124,132],[100,102,106,114],[93,101],[102,103],[106],[104,106],[93,106],[106,107,108,124,135],[106,107,108,121,124,127],[91,140],[102,106,109,114,124,135],[106,107,109,110,114,124,132,135],[109,111,124,132,135],[58,59,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142],[106,112],[113,135,140],[102,106,114,124],[115],[116],[93,117],[118,134,140],[119],[120],[106,121,122],[121,123,136,138],[94,106,124,125,126,127],[94,124,126],[124,125],[127],[128],[93,124],[106,130,131],[130,131],[99,114,124,132],[133],[114,134],[94,109,120,135],[99,136],[124,137],[113,138],[139],[94,99,106,108,117,124,135,138,140],[124,141],[253,292],[253,277,292],[292],[253],[253,278,292],[253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291],[278,292],[109,143,150],[94,107,109,124,143,235],[294],[51],[241,247],[183,184,185,186],[245],[242,246],[154],[244],[55],[68,72,135],[68,124,135],[63],[65,68,132,135],[114,132],[63,143],[65,68,114,135],[60,61,64,67,94,106,124,135],[60,66],[64,68,94,127,135,143],[94,143],[84,94,143],[62,63,143],[68],[62,63,64,65,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,85,86,87,88,89,90],[68,75,76],[66,68,76,77],[67],[60,63,68],[68,72,76,77],[72],[66,68,71,135],[60,65,66,68,72,75],[94,124],[63,68,84,94,140,143],[187],[160,188],[187,188],[160,190],[193],[160,190,194,195,196],[198],[160,166,190,194,195,196],[160,190,195,196],[168,173,189,190,191,192,193,197,199,200,201,202,203,204,206,208,209],[56,57,116,164,165,170,171,172,174,175],[56,162,165],[56,164,172,173],[56,162,164,172],[168,173,198,200,201,202,203,204,208,209,212],[56],[168],[56,107,116,170],[56,57,168,169],[170,171],[163,164],[163,164,165],[165,177,178],[162],[163,177,178,179],[164],[160,176,205],[164,168],[165,168,179],[162,163],[160,161,165,166,167],[168,210],[116,160,210,222,223],[56,116],[160,166,194,226],[56,136],[195],[190,207],[188],[160,195],[160,166,195],[56,164,165,171],[56,162],[56,164],[160,168],[54,56],[164,165],[160,176],[160,161,166],[160,166]],"referencedMap":[[182,1],[181,2],[231,3],[244,4],[55,5],[144,6],[234,7],[230,3],[232,8],[233,3],[153,9],[152,6],[155,10],[148,11],[154,12],[237,13],[239,14],[240,15],[249,16],[251,17],[223,18],[158,18],[160,19],[161,18],[149,20],[150,21],[58,22],[59,22],[93,23],[94,24],[95,25],[96,26],[97,27],[98,28],[99,29],[100,30],[101,31],[102,32],[103,32],[105,33],[104,34],[106,35],[107,36],[108,37],[92,38],[109,39],[110,40],[111,41],[143,42],[112,43],[113,44],[114,45],[115,46],[116,47],[117,48],[118,49],[119,50],[120,51],[121,52],[122,52],[123,53],[124,54],[126,55],[125,56],[127,57],[128,58],[129,59],[130,60],[131,61],[132,62],[133,63],[134,64],[135,65],[136,66],[137,67],[138,68],[139,69],[140,70],[141,71],[277,72],[278,73],[253,74],[256,74],[275,72],[276,72],[266,72],[265,75],[263,72],[258,72],[271,72],[269,72],[273,72],[257,72],[270,72],[274,72],[259,72],[260,72],[272,72],[254,72],[261,72],[262,72],[264,72],[268,72],[279,76],[267,72],[255,72],[292,77],[286,76],[288,78],[287,76],[280,76],[281,76],[283,76],[285,76],[289,78],[290,78],[282,78],[284,78],[151,79],[294,80],[295,81],[53,82],[52,82],[248,83],[187,84],[246,85],[247,86],[226,87],[245,88],[56,89],[75,90],[82,91],[74,90],[89,92],[66,93],[65,94],[88,17],[83,95],[86,96],[68,97],[67,98],[63,99],[62,100],[85,101],[64,102],[69,103],[73,103],[91,104],[90,103],[77,105],[78,106],[80,107],[76,108],[79,109],[84,17],[71,110],[72,111],[81,112],[61,113],[87,114],[188,115],[189,116],[190,117],[191,18],[192,118],[213,119],[214,119],[193,2],[197,120],[199,121],[215,121],[200,122],[201,122],[202,120],[203,120],[204,123],[210,124],[176,125],[172,126],[174,127],[175,128],[216,129],[57,130],[218,131],[219,131],[171,132],[220,131],[170,133],[217,134],[177,135],[178,136],[179,137],[163,138],[180,139],[221,140],[206,141],[165,142],[205,143],[164,144],[168,145],[222,146],[224,147],[225,148],[227,149],[228,150],[196,151],[208,152],[207,151],[209,151]],"exportedModulesMap":[[181,2],[231,3],[244,4],[55,5],[144,6],[234,7],[230,3],[232,8],[233,3],[153,9],[152,6],[155,10],[148,11],[154,12],[237,13],[239,14],[240,15],[249,16],[251,17],[223,18],[158,18],[160,19],[161,18],[149,20],[150,21],[58,22],[59,22],[93,23],[94,24],[95,25],[96,26],[97,27],[98,28],[99,29],[100,30],[101,31],[102,32],[103,32],[105,33],[104,34],[106,35],[107,36],[108,37],[92,38],[109,39],[110,40],[111,41],[143,42],[112,43],[113,44],[114,45],[115,46],[116,47],[117,48],[118,49],[119,50],[120,51],[121,52],[122,52],[123,53],[124,54],[126,55],[125,56],[127,57],[128,58],[129,59],[130,60],[131,61],[132,62],[133,63],[134,64],[135,65],[136,66],[137,67],[138,68],[139,69],[140,70],[141,71],[277,72],[278,73],[253,74],[256,74],[275,72],[276,72],[266,72],[265,75],[263,72],[258,72],[271,72],[269,72],[273,72],[257,72],[270,72],[274,72],[259,72],[260,72],[272,72],[254,72],[261,72],[262,72],[264,72],[268,72],[279,76],[267,72],[255,72],[292,77],[286,76],[288,78],[287,76],[280,76],[281,76],[283,76],[285,76],[289,78],[290,78],[282,78],[284,78],[151,79],[294,80],[295,81],[53,82],[52,82],[248,83],[187,84],[246,85],[247,86],[226,87],[245,88],[56,89],[75,90],[82,91],[74,90],[89,92],[66,93],[65,94],[88,17],[83,95],[86,96],[68,97],[67,98],[63,99],[62,100],[85,101],[64,102],[69,103],[73,103],[91,104],[90,103],[77,105],[78,106],[80,107],[76,108],[79,109],[84,17],[71,110],[72,111],[81,112],[61,113],[87,114],[188,115],[189,18],[190,153],[191,18],[192,18],[213,119],[193,2],[197,154],[199,121],[200,155],[201,155],[202,154],[203,154],[204,154],[210,124],[176,156],[172,157],[174,158],[175,158],[57,130],[218,159],[219,159],[171,160],[220,159],[170,160],[217,134],[177,135],[178,161],[179,136],[163,138],[180,139],[221,140],[206,162],[165,142],[205,159],[164,144],[168,163],[222,159],[224,18],[225,130],[227,164],[228,130],[196,151],[208,151],[207,151],[209,151]],"semanticDiagnosticsPerFile":[182,181,231,229,241,244,243,55,54,144,234,230,232,233,153,152,159,235,155,236,148,154,237,156,157,238,239,240,249,250,251,145,223,158,160,161,149,150,58,59,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,92,142,109,110,111,143,112,113,114,115,116,117,118,119,120,121,122,123,124,126,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,252,147,146,277,278,253,256,275,276,266,265,263,258,271,269,273,257,270,274,259,260,272,254,261,262,264,268,279,267,255,292,291,286,288,287,280,281,283,285,289,290,282,284,151,293,294,295,51,53,52,242,248,187,186,185,184,183,246,247,226,245,56,48,49,8,9,13,12,2,14,15,16,17,18,19,20,21,3,22,4,23,50,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,1,47,11,10,75,82,74,89,66,65,88,83,86,68,67,63,62,85,64,69,70,73,60,91,90,77,78,80,76,79,84,71,72,81,61,87,188,189,190,191,192,173,213,214,193,197,199,215,198,200,201,202,203,204,212,210,176,172,174,175,216,162,57,218,219,171,220,170,217,177,178,179,163,180,221,206,165,205,164,168,167,211,222,224,166,225,227,169,194,228,196,208,207,209,195]},"version":"5.4.3"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../node_modules/@types/yargs/helpers.d.ts","../node_modules/@ts-morph/common/lib/typescript.d.ts","../node_modules/@ts-morph/common/lib/ts-morph-common.d.ts","../node_modules/ts-morph/lib/ts-morph.d.ts","../src/openapi/discoveryModule/discoverImports/discoverImports.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/file.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/filereader.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/accepts/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/mime/Mime.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/koa__router/index.d.ts","../src/openapi/analyzerModule/types.ts","../src/openapi/generatorModule/getSchema.ts","../src/openapi/types.ts","../src/openapi/manager/OpenApiManager.ts","../src/utils/TypeUtils.ts","../src/router/parseEndpointReturnValue.ts","../src/router/Router.ts","../src/utils/nameOf.ts","../src/openapi/discoveryModule/discoverRouters/discoverRouters.ts","../src/openapi/discoveryModule/discoverRouterFiles/discoverRouterFiles.ts","../src/openapi/analyzerModule/nodeParsers.ts","../src/hooks/useApiEndpoint.ts","../src/openapi/analyzerModule/parseEndpoint.ts","../src/openapi/analyzerModule/parseExposedModels.ts","../src/openapi/analyzerModule/analyzerModule.ts","../src/openapi/generatorModule/generateComponentSchemas.ts","../src/openapi/generatorModule/generatePaths.ts","../src/openapi/generatorModule/generatorModule.ts","../src/openapi/generatorModule/index.ts","../cli/prettyprint.ts","../cli/cli.ts","../node_modules/http-status-codes/build/cjs/utils-functions.d.ts","../node_modules/http-status-codes/build/cjs/status-codes.d.ts","../node_modules/http-status-codes/build/cjs/reason-phrases.d.ts","../node_modules/http-status-codes/build/cjs/legacy.d.ts","../node_modules/http-status-codes/build/cjs/index.d.ts","../src/errors/BaseHttpError.ts","../src/errors/HttpErrorHandler.ts","../src/errors/UserFacingErrors.ts","../src/hooks/authentication/useAuth.ts","../src/hooks/authentication/useOptionalAuth.ts","../src/hooks/useApiHeader/useApiHeader.ts","../src/utils/object.ts","../src/validators/types.ts","../src/utils/validationMessages.ts","../src/hooks/useCookieParams.ts","../src/hooks/useExposeApiModel/useExposeApiModel.ts","../src/hooks/useExposeApiModel/index.ts","../src/hooks/useHeaderParams.ts","../src/hooks/usePathParams.ts","../src/hooks/useQueryParams.ts","../src/hooks/useRequestBody.ts","../src/hooks/useRequestRawBody.ts","../src/hooks/useReturnValue.ts","../src/openapi/router/OpenApiRouter.ts","../src/openapi/initOpenApiEngine.ts","../src/validators/InternalParamWrappers.ts","../src/validators/BuiltInValidators.ts","../src/validators/ParamWrappers.ts","../src/index.ts","../src/setupTests.ts","../src/hooks/useApiHeader/index.ts","../src/hooks/useApiHeader/useApiHeader.spec.data.ts","../src/hooks/useExposeApiModel/useExposeApiModel.spec.data.ts","../src/openapi/analyzerModule/test/openApiAnalyzer.spec.data.ts","../src/openapi/discoveryModule/index.ts","../src/openapi/discoveryModule/discoverRouterFiles/data/testRouterA.spec.data.ts","../src/openapi/discoveryModule/discoverRouterFiles/data/testRouterB.spec.data.ts","../src/openapi/discoveryModule/discoverRouters/discoverRouters.spec.data.ts","../src/openapi/generatorModule/test/openApiGenerator.spec.data.ts","../src/test/TestAppRouter.ts","../node_modules/@types/koa-bodyparser/index.d.ts","../src/test/app.ts","../src/utils/loadTestData.ts","../node_modules/node-mocks-http/lib/index.d.ts","../src/utils/mockContext.ts","../src/utils/printers.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/cookiejar/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/@jest/schemas/build/index.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/expect/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/jsonwebtoken/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/superagent/index.d.ts","../node_modules/@types/supertest/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","d06153471f050b31e289c1a006b655cb1b2d12b94fecfed62bb81dfb581a125d","9cc884a6f8547dec935f930b8aad8212aaae876ebeaab5cd42d20b45251860e7","f84c28802d5c44429c86180eed9bb73826f2efd559205632ecb23d904b0a1a8c","5b62cb32ae66c8d1d420f2a807cd81dd1e5e68547eeacd738d41c39b64b6687c","01d183dc38180ca94b2751133213800c337e78d759498bc150adcda54271265e",{"version":"99985651cf7ace8c9d67e0945c2b5b153c06edf2a1618e04d35f9b8d0f50d487","signature":"52ee015c7ba18d9b65db770bbb74e33d7755a0d5778a75646b253b138c97e6c3"},"3846d0dcf468a1d1a07e6d00eaa37ec542956fb5fe0357590a6407af20d2ff90","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"49026435d21e3d7559d723af3ae48f73ec28f9cba651b41bd2ac991012836122","affectsGlobalScope":true},"39b1a50d543770780b0409a4caacb87f3ff1d510aedfeb7dc06ed44188256f89",{"version":"dafc58ee47fa25dbc68b27c638bd6153dd7659021c164f64b7760757e9f5a6ab","affectsGlobalScope":true},"16b872cf5432818bdbf405428b4a1d77bb2a7ab908e8bd6609f9a541cea92f81","fe39ceafa361b6d339b518936275eff89a77e7dfe92f2efa5fb97abf9a95ca49",{"version":"4009dd21843fe4a62d1d97b584a2937ca9f045df6fbd65c8b264d8dd04b656fd","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","ed3db4eb7ad0466e19df82d9ee5c057d78df954283004783932d75e8fa4058c5","278fe296432b9840660d6e0d1778b4b4897a591d4b910a5f7ac8db0b476a8af7","1c611ff373ce1958aafc40b328048ac2540ba5c7f373cf2897e0d9aeaabe90a0","fd7a7fc2bb1f38ba0cded7bd8088c99033365859e03ba974f7de072e9d989fde","6cf42fc3765241c59339047a45855c506a2f94ee5e734bbded94ddcafc66e4c5","c6cf9428f45f3d78b07df7d7aab1569994c177d36549e3a962f952d89f026bc4",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"cce14dcba2c2cb1059977ad65cf9caef890118cb20e35c4cf420bf1c83f27c1a","affectsGlobalScope":true},"5a2f6de23113659e83dc8c5edb9f3c5bcd6136f74dcc1785b3df4eef1271e1f3","021ca24be8eb8c46f99b4e03ebf872931f590c9b07b88d715c68bd30495b6c44","fb862b9a2e78754cf44b770ba6f194987d63c8d4cd103c6c05534faa4120ae98","6b97f4106d72ae6b4ebf4e46d2fe90f4d04dd04b3dbff6e294572440a428209d","e3baa0c5780c2c805ec33a999722a2f740b572eb3746fd0a5f93a0a5c3dbf7f6","48fedd2f8549a2ae7e62f30fdb015779c2a7b536760730c5269406cd3d17cab2",{"version":"089867511b37a534ae71f3d9bc97acc0b925b7f5dbec113f98c4b49224c694eb","affectsGlobalScope":true},"e0cc19f50900706e7aae038565e825f2014ac5325b99b3daabf8ecd5d3d09f1a","f5ce35485541e817c2d4105d3eb78e3e538bbb009515ed014694363fa3e94ceb","323506ce173f7f865f42f493885ee3dacd18db6359ea1141d57676d3781ce10c",{"version":"bd88055918cf8bf30ad7c9269177f7ebeafd4c5f0d28919edccd1c1d24f7e73c","affectsGlobalScope":true},{"version":"645baafeaed6855c8796fcbae4e813021c65f36eaa3f6178535457a2366f6849","affectsGlobalScope":true},"ea3ab3727cd6c222d94003ecafa30e8550c61eadcdabbf59514aee76e86211a5","d3cdd41693c5ed6bec4f1a1c399d9501372b14bd341bc46eedacf2854c5df5a7","2de7a21c92226fb8abbeed7a0a9bd8aa6d37e4c68a8c7ff7938c644267e9fcc1","6d6070c5c81ba0bfe58988c69e3ba3149fc86421fd383f253aeb071cbf29cd41","48dab0d6e633b8052e7eaa0efb0bb3d58a733777b248765eafcb0b0349439834","d3e22aaa84d935196f465fff6645f88bb41352736c3130285eea0f2489c5f183","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","5195aeb0de306d1c5ca8033457fbcab5987657112fa6d4971cfeb7644493a369","c5dbf0003bc9f0f643e54cd00a3868d1afe85497fecb56be6f2373dc85102924",{"version":"6fa61015444e843013443f2e5ca6bee5f033cbf361f953fd932abb0c029b73b2","affectsGlobalScope":true},{"version":"300f8e9de0b0c3482be3e749462b6ebc3dab8a316801f1da0def94aed0cd2018","affectsGlobalScope":true},"4e228e78c1e9b0a75c70588d59288f63a6258e8b1fe4a67b0c53fe03461421d9","3df5b34f3449733bc4831b8d670f958a045e7a3f5d7b0e21991ef95408dbec13","76a89af04f2ba1807309320dab5169c0d1243b80738b4a2005989e40a136733e","c045b664abf3fc2a4750fa96117ab2735e4ed45ddd571b2a6a91b9917e231a02",{"version":"068b8ee5c2cd90d7a50f2efadbbe353cb10196a41189a48bf4b2a867363012b4","affectsGlobalScope":true},{"version":"0c312a7c5dec6c616f754d3a4b16318ce8d1cb912dfb3dfa0e808f45e66cbb21","affectsGlobalScope":true},"6f44a190351ab5e1811abebe007cf60518044772ccc08244f9f241706afa767f","fecdf44bec4ee9c5188e5f2f58c292c9689c02520900dceaaa6e76594de6da90","cf45d0510b661f1da461479851ff902f188edb111777c37055eff12fa986a23a",{"version":"6a4a80787c57c10b3ea8314c80d9cc6e1deb99d20adca16106a337825f582420","affectsGlobalScope":true},"f2b9440f98d6f94c8105883a2b65aee2fce0248f71f41beafd0a80636f3a565d",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","ce013414484233b24f42c0fcfca48a60bb66ab4e13c82953662305e8f1ee4925","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"a34eb69d404f1db719580115825bd7ba837023effe04d235bdbb2e0168df7451","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","eb96a2321f717bccc3e49e104e299152984b927ea4546b559ae631c06565819c","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","5006668996956580886022c05108e32c742823e1b5652aff7914917233731518","204dbe6c72467fb14bbe8f06510b11fb541b6ce29580c6e10ebd3bdb2eb0c1f9","3a9b877f47119ac64aab98c61cae91a304ddeb6e8285ccd824a6aa665ffaeb95","a442d3cfd6e068d2742d5b53d323d51fa695cd405e5575f083c9b6272a63387a",{"version":"03d621e4914c4838a3b3c56f62f6d380546c531f21f9518d5166446ecc6f2a34","signature":"cc18048b2a755ccacab9b0da159f869c44db7bc97ad2080aa1ed9b4309d71e00"},{"version":"132e7980f752bc6877ec349c402aaf6ddaa09a8a665df1a4ca79792ebbe58456","signature":"86400fde0471e8898176ff8c84b1a7ee42717ff58bd3678f794543b7f0b142c4"},{"version":"caf22e78a65f40caa7c2099e3f77445611660fd0072947d9f9fa01240babdd70","signature":"4bb70b318fd3bdfb503af754477613a1e2934a1948eda87fbfb96165eac6b494"},{"version":"b5e050ce6aa6164220065a1f3129a955eec856aa241e61701e186eec803e9524","signature":"fecf8408dfab8a406998557f24b9355549baf776d579e329c09e5153e9838f79"},{"version":"b8c0151f44b1523dfd0b0f6f200d754de0fefcb5f093b124b8825f6da1b8103c","signature":"c57a316467f360af5388d7257099ad795ff109608afe0c2895315e073e285bbf"},{"version":"bf887db9d62485b27eb42ad781bbf59c7cfff8d98dd7401f1538150cb70e91cd","signature":"eb798c86e22fb164add9371e60d55416ba03ce3079b634a728dc54c5ecbdb22a"},{"version":"17500149a9ccef4871b743d1971592813c180b6c0b602c148bf7185c8d698a6a","signature":"d97fc65a5d6ab82838e1eb16474e16cfb24cd88502d7210970d79512261365d2"},{"version":"2a63b06aea64a0330ccff9285949399ccfdf052f6115f964b208c1582a180c13","signature":"26aa583349f8e432b9debab1e4881539f3957776d4a4a61d993cfbeb1b9f1a59"},{"version":"ba5567dfbf45ab3cd7224dc8bead91cd944079a389097a845cad8be1c5214194","signature":"6820d0a1106182e8c9d4ab3440212fe24c6c88daf43f2ba216a4b040f018a64d"},{"version":"7d98f2e8fe46eeecf4327fdeed88c523ab42625d66e4c85d897c53626a871c71","signature":"2fbb35fa0adabb32c5cbf8dbda457e9a84daecf8b48fd56b836ca9e254b692ae"},{"version":"4ef5a28b2bd83fb24ea517dc9849a26b652d799f0ac36d64ec6e5df3fcc98b71","signature":"5f6177fc5e9869979c2c282b8696613eabb64908c7a416d1ba9876bf588b0749"},{"version":"4f4fe83ee4a2724b397965445a06ed9689a0dd5039c2f0e82e6c08649590f332","signature":"dd2b970560d75d962b4afa1f48965ff114c7bd87062a2e45a1bddca58db1da47"},{"version":"ff29df64e13b28cfd87d9d27c4acc89ef2baa33a9e619ddce9aadcd8bf1ea0a4","signature":"3ac053301e0306754637eba01544134a5033180de83ac5254692270f18503190"},{"version":"d8ad3bbe367ee5f020f23fffb2703343c681e61f6f99b96f7a309fb34d84ea35","signature":"f5c1a81af7582b904b003dc8492742f9ec5ebb389350dc7c3d123ab7e38e7980"},{"version":"6954722413a7704709abb6bcb0543f148e4788ab6f5a7578bfeba6233ab4934f","signature":"7cc903ff72f306ae5fb4b8fda54a2c998e76c1815df1fb25878ef91360724dd4"},{"version":"4a6cb3f08ea710c01644ba02c8accc41b8aaad6a2fe4f7bc9ef219c3a1bd2739","signature":"e321e714b6948df416f61bd55afc70e7432253331013ec4b91cca0a830e6fc6e"},{"version":"0c2163375b84d363399322229fa035c874dc4892716525a5737fea6b820796b8","signature":"bff6235b8cc7fdde9fff7d3d99c226a4c907d7abb9733f4d529fe8a43fc60851"},{"version":"276de1cb13afe64b44a2ff2b0b399a9e464d8f8383cf948ebcbd99865980e11d","signature":"29c40d06836d17229bd5f5e0f04f66ef46d2718aa7e40a51ded074da6826369a"},{"version":"be717c2933df3c5945391158184e44c757815d7a92b0675348f59deed2ac2e27","signature":"9e131e8af6da43e1a9bf49e2ec60113b455b00f8bff991f9e634decf7bb9f080"},{"version":"21a22446ff83b2f7639898f11248fa6a0026077c621bdff8d169e36f6a06beaa","signature":"ee6499212bf580a2d6bc048289e22beabb17abcae3c17cfda1583efdf69f840e"},{"version":"4c0635b3f42483e88aa4b15b2dabfc8b5ab2957a938918cb42bfdc96c6612629","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"1bc146fb8f5cf8f67d0bb651c2237196ab42d7bae6eff9c079f254c3a4b2dc9f","fcb175cbc3a5f91152314cabe52625d495da9a3c4e9b4578dfcb1018b10b5bd1","66b458867662fd10111e8241abfd372570816317b456b712979826b0d784df37","de743c53fbbaa917b418cff186394602074f211fdeeedc27c3a2ddd83993c043","bf028cb4dfbaa3e027a2d8935a48d323ba5c98c68f8197f38bf341b64c8c467f",{"version":"c63277619d74e3369ee886df36c4a93e4d7d009c726ed808ab88739989116592","signature":"c96fcb7669a470c5348b02cbd8ff85cfc72a34467820e6d6ed279771e64228bc"},{"version":"d5294c25d0dd7b877c0dd02c40d16ccddbdf5723a9fa6dca1b3cf6cbaf5110b6","signature":"5a64bae082465a2ae71544a15b2770421f758674bec39cf766ff7bb9068076e2"},{"version":"5bb39bb45b94a1d5186056b3a3e715a27fccec59816f789189c2e543cbbbdedd","signature":"5b6346ace605102ff8b7249afc3501f5650015458e83053b56ad301d1c4028d6"},{"version":"54d0557ef3dbc0246765a71c88b0175772a43531abbcc0e9ed494794683b5f2e","signature":"4e5afe65bbeef1262162bff38397afaf36f1e09ab378da22c01319b7e9722a5e"},{"version":"93fe9c505f8b97a7015fa9d46071bd5480304db7613e96531596eee8e1f10a6c","signature":"f0edbae4f56478ab99d01b8db765aa3da15a624fd845fa238aeb572314a6218f"},{"version":"356e5f175cc357ba27405717e13eff7b79b4ba7ad21a788add0cae53f2f1e0f9","signature":"5c0c1009ec84e9dbc47209e1301917972badaf978ab5a02a1fc6354ae98f5d2c"},{"version":"c56cc1d86fd02031ab5bfe766647184b62ad10440f025faa25df66194a5f0474","signature":"0fe9aad31dcc0ac8613bf4665f2645ca1f830fe8cd2dc7e897269223fff3ca46"},{"version":"730decf9686ac59d4d51cd8a6f0851082fa20b7196f1974ee207f138e9a6e9cd","signature":"bfcafccb4090cc48d5e93d12f96d9d499d6613e1590c01c58fc02a24ee82148e"},{"version":"8efed48b3031b031449d29e3ecb79e69bee9c0b773662380269031ab8bb76e4e","signature":"2cf059cceb3a5093a7cec83ca3f7289f0be9fc65b78c666e0dcc7c5ab1f6b2d7"},{"version":"21b465ddff4cfb90f0e79bb1fb4a92a23bdf0c398b45c2dd8402b1136e309dd1","signature":"abfbc7d2669386b2ecd2cbd0c47f62dc8da356dff7980305f9073c37518517d8"},{"version":"c04b8442863c54c508acd6a689436c73b1a3809eb9d2601e118fc54d0acfc84c","signature":"6d52fef06bdb5d76759cef5dda94fdbee761581efb5c495b6cb3369d7198f491"},{"version":"57296625a2e4b1bb329b1ca2a847a9f8b972d7b1d49115062031af64fd2b0195","signature":"fd933d52439dd75884b5ce2bc67528f03b70a4e6c84cac62c4c0c696596eb731"},{"version":"08eb762483268c15bd27fa8a5231855e5d3ce638017c8b39c27efaaf80e6e430","signature":"38f8a33763003dbc245496f7c678746783d82fa32137c726068d475eae6104bd"},{"version":"710062ef91f2b42ad199fde55e43d95814d6907bfa1cda3ae156fd9977ebfbfe","signature":"ae7519b29a680dfae90a6b72a51239a219c2cf6b0615c390f7481fcffce45055"},{"version":"4837604b1f9c623d2489cc9ec2feac62266b53ef4b017503a05ccc5d5d78acea","signature":"39314fa5a7ff7cbc65ab92770f2052230aa85f69829817f01e7fa502a36615e8"},{"version":"0ee4170f54655aa30a6e332e1942d055a832987f3a115bc05470ea52b8ec4248","signature":"b94c8985c3c79cb82d84c0bba5f08c5c38275d7f65b9faf1d42b28ac99562a18"},{"version":"29bb095ba814ad2b96bf47947d0d9b2b7faa8e30a4c631240ec593255a7c1dbb","signature":"245630b0a2ac1f66d12e1617583ada66a33bb857032cc231a89f96a28b9d171b"},{"version":"e40394303f116372d81927fd60c88ddb523166c2ce0cdb404f3486ddd64d1795","signature":"54524d704f14bbbc3090943e183fcb7bf2f1db282046cb9b56c317daa171ab13"},{"version":"ed42268b7064ea16e7ca894f3e61fc3645a0c2ceb9ab0490960fd8c511374ded","signature":"d7d5d9fd95c4d90bb4c4709f0465e4edbdc2919ea3a276303421e8fce53c0e56"},{"version":"6bbda2d6b0188c1dd017223204358298331fffaa40be60da16b4138f4047a71f","signature":"ec8a34466b9078717e2964da096226a18aa628fbe4ca23594880236d73b4d81c"},{"version":"d3c262f18047d57986bfee1686fcd09d777d1f03cfca34172020d8c849c8d63d","signature":"1a969bbd3de0cbad5777d9363914fafb7f63068c8f3bd193d011b5b39bfd9f7b"},{"version":"9647106f703d43d63a20259e7e8f124ee885b24cddb3500f5c19d89a9b885814","signature":"78b917e1e8f1169c5b1a56b778a5f71abc4eb317bcaf3c1abba3c17a9df76188"},{"version":"8db42b1238b61e93829e357dae572decf1ce5902a7109c9defa8f5de8d136c50","signature":"1a3f82a5d6c79cf53b604a96f5fb7e7e301b50d301b43015dca0e7dc2bd8ec3f"},{"version":"8096b097fe42c2f8f946cd0e641a6afdbcb3c117e3b892993632dc69d51ac81f","signature":"b1818aecfa44dce22b5db37d3d3497e08341e168b161a6e84a88a0889f75456c"},{"version":"eb4a20d71105a0683d8304cc592c17e9a76d1b261ee2b304113beae3486a2525","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"8893c74d665e0204454da45997b1d40b111460ec99c67350214c53e8024692ee","signature":"b10dc59d76bbcebd91a66fa59f0dfff6a01d88c1aece59a4a9588590f8a37757"},{"version":"a753e26d294b9e81488430163c396f959abbb429e25d2fb18da8ce7346f72d75","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ae5b98d69f144080acd81f125e17242786c72038c812460d3a6483a0b2ce3baa","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c69832c7bcaf165b37cfb35137fb067179396248f2e0cf25dff3f36c2ef430f6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0b5a5944aa717d3ad1778917c55caf8564dc80db2eb586af52d13045550ab5b5","signature":"99a55cec10c0e4740429bebadc33fd88e631617fdae46ddd764b335c23998e50"},{"version":"471993cef542b3672239aaeaf12747a8354f5c005d4933ffedcaeadccd342080","signature":"f5e419a03c40e9c00b880d8e9c96c23ed394bd5089b5e3d9db803aa654dc64ca"},{"version":"b5baf7f2142e7f4518e68a82caa4b2bf4d8a823af7a87073562ec6c852105861","signature":"f5e419a03c40e9c00b880d8e9c96c23ed394bd5089b5e3d9db803aa654dc64ca"},{"version":"178c25bee3a9010c3d85bd33efce824ce339148f282378f26a063ad623717ddb","signature":"c2c1821091aa057a9f93775b102dc140c357d6777f4b7dea49e26b5585523b03"},{"version":"e897f434c6754b44db3b4d07f1c5c7671c3cb312347da2a30b2bf94661b1570b","signature":"6842e6d78c39d53296a499951beebc623c30c33f9a69fdb130e5779af5da0222"},{"version":"095b3d01f4e05be08e8a4e5b34110adef5a757c00fba9c7562963eac82d34d88","signature":"7728754f91ab416a645ad0b121e782ae45bfe1f957023b62917cac67af619dd6"},"488b0a139b5f35ded772136cf4b541f3babf22e4ce9056daf65736234e88355d",{"version":"a97ef23e14762127a90ea4a50c7ef6b916f88c45591631d40be148779ac6371b","signature":"4fd15b16ecdc1aac8d2757453b83df70678eb9efd5df7c29b046ec9242194a8b"},{"version":"85ab6f8a91c0eb8441df118517da19a48cf41a3798572c68a78f0c5200834262","signature":"9e0be83772c22c6791140cef1e42eae9a5f8df30950129fe7b98a3e9c2cc41fa"},"4c8f981ab0ad887aa315ea39a9f5b4f025c7a17374e3f601be25d13f9dce92b1",{"version":"34e32a8ac8bdf507f4dc8928f07994c68bda55b43ab9795f861793e6806c9f03","signature":"1542e95b93c6378124f5aa3ae757cc4cbe1175e7e48f54084487f98c6fd13345"},{"version":"72adb87a25db4874ad061d0a1d58ac6df301786202e6fb3358e308360983a7a0","signature":"8c2f416cfe7b088dad02d50107ed3de7a05b7f1dc7b350d9b999dc40c669bce9"},"f4617bbd5403ec5b058db53b242dcb1421952e2652bd5c80abf6a1c4ea5656d6","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","230d323ef7f2ffadfc0ceae494492c4d2faa2b4eaec07a4b71424d084b97ebb8","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","331dd4fb49f27df3e88bcd1361a063de1e9bcc7d463d6dc386b0c0d690c1a66f","8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","3054ef91b855e005b9c4681399e9d64d2a7b07a22d539314d794f09e53b876a7","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","bb4ed283cfb3db7ec1d4bb79c37f5e96d39b340f1f4de995c4b0b836c8d5fa05","bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","29c5862cadd1c5e069453c60e8b240870431396921a50afc57bfdf5bdc614e47","76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778"],"root":[57,[162,182],[188,222],224,225,227,228],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictNullChecks":true,"target":4},"fileIdsList":[[52,53,107,116,165,176,180,181],[165],[229],[243],[54],[109,143],[229,230,231,232,233],[229,231],[109,143,152],[109,143,145,152,154],[106,109,143,146,147],[147,148,151,153],[107,143],[238],[239],[245,248],[143],[160],[106,109,110,114,120,135,143,144,145,155,156,157,158,159],[150],[149],[58],[93],[94,99,127],[95,106,107,114,124,135],[95,96,106,114],[97,136],[98,99,107,115],[99,124,132],[100,102,106,114],[93,101],[102,103],[106],[104,106],[93,106],[106,107,108,124,135],[106,107,108,121,124,127],[91,140],[102,106,109,114,124,135],[106,107,109,110,114,124,132,135],[109,111,124,132,135],[58,59,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142],[106,112],[113,135,140],[102,106,114,124],[115],[116],[93,117],[118,134,140],[119],[120],[106,121,122],[121,123,136,138],[94,106,124,125,126,127],[94,124,126],[124,125],[127],[128],[93,124],[106,130,131],[130,131],[99,114,124,132],[133],[114,134],[94,109,120,135],[99,136],[124,137],[113,138],[139],[94,99,106,108,117,124,135,138,140],[124,141],[253,292],[253,277,292],[292],[253],[253,278,292],[253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291],[278,292],[109,143,150],[94,107,109,124,143,235],[294],[51],[241,247],[183,184,185,186],[245],[242,246],[154],[244],[55],[68,72,135],[68,124,135],[63],[65,68,132,135],[114,132],[63,143],[65,68,114,135],[60,61,64,67,94,106,124,135],[60,66],[64,68,94,127,135,143],[94,143],[84,94,143],[62,63,143],[68],[62,63,64,65,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,85,86,87,88,89,90],[68,75,76],[66,68,76,77],[67],[60,63,68],[68,72,76,77],[72],[66,68,71,135],[60,65,66,68,72,75],[94,124],[63,68,84,94,140,143],[187],[160,188],[187,188],[160,190],[193],[160,190,194,195,196],[198],[160,166,190,194,195,196],[160,190,195,196],[168,173,189,190,191,192,193,197,199,200,201,202,203,204,205,207,209,210],[56,57,116,164,165,170,171,172,174,175],[56,162,165],[56,164,172,173],[56,162,164,172],[168,173,198,200,201,202,203,204,205,209,210],[56],[168],[56,107,116,170],[56,57,168,169],[170,171],[163,164],[163,164,165],[165,177,178],[162],[163,177,178,179],[164],[160,176,206],[164,168],[165,168,179],[162,163],[160,161,165,166,167],[168,211],[116,160,211,222,223],[56,116],[160,166,194,226],[56,136],[195],[190,208],[188],[160,195],[160,166,195],[56,164,165,171],[56,162],[56,164],[160,168],[54,56],[164,165],[160,176],[160,161,166],[160,166]],"referencedMap":[[182,1],[181,2],[231,3],[244,4],[55,5],[144,6],[234,7],[230,3],[232,8],[233,3],[153,9],[152,6],[155,10],[148,11],[154,12],[237,13],[239,14],[240,15],[249,16],[251,17],[223,18],[158,18],[160,19],[161,18],[149,20],[150,21],[58,22],[59,22],[93,23],[94,24],[95,25],[96,26],[97,27],[98,28],[99,29],[100,30],[101,31],[102,32],[103,32],[105,33],[104,34],[106,35],[107,36],[108,37],[92,38],[109,39],[110,40],[111,41],[143,42],[112,43],[113,44],[114,45],[115,46],[116,47],[117,48],[118,49],[119,50],[120,51],[121,52],[122,52],[123,53],[124,54],[126,55],[125,56],[127,57],[128,58],[129,59],[130,60],[131,61],[132,62],[133,63],[134,64],[135,65],[136,66],[137,67],[138,68],[139,69],[140,70],[141,71],[277,72],[278,73],[253,74],[256,74],[275,72],[276,72],[266,72],[265,75],[263,72],[258,72],[271,72],[269,72],[273,72],[257,72],[270,72],[274,72],[259,72],[260,72],[272,72],[254,72],[261,72],[262,72],[264,72],[268,72],[279,76],[267,72],[255,72],[292,77],[286,76],[288,78],[287,76],[280,76],[281,76],[283,76],[285,76],[289,78],[290,78],[282,78],[284,78],[151,79],[294,80],[295,81],[53,82],[52,82],[248,83],[187,84],[246,85],[247,86],[226,87],[245,88],[56,89],[75,90],[82,91],[74,90],[89,92],[66,93],[65,94],[88,17],[83,95],[86,96],[68,97],[67,98],[63,99],[62,100],[85,101],[64,102],[69,103],[73,103],[91,104],[90,103],[77,105],[78,106],[80,107],[76,108],[79,109],[84,17],[71,110],[72,111],[81,112],[61,113],[87,114],[188,115],[189,116],[190,117],[191,18],[192,118],[213,119],[214,119],[193,2],[197,120],[199,121],[215,121],[200,122],[201,122],[202,120],[203,120],[204,123],[211,124],[176,125],[172,126],[174,127],[175,128],[216,129],[57,130],[218,131],[219,131],[171,132],[220,131],[170,133],[217,134],[177,135],[178,136],[179,137],[163,138],[180,139],[221,140],[207,141],[165,142],[206,143],[164,144],[168,145],[222,146],[224,147],[225,148],[227,149],[228,150],[196,151],[209,152],[208,151],[210,151]],"exportedModulesMap":[[181,2],[231,3],[244,4],[55,5],[144,6],[234,7],[230,3],[232,8],[233,3],[153,9],[152,6],[155,10],[148,11],[154,12],[237,13],[239,14],[240,15],[249,16],[251,17],[223,18],[158,18],[160,19],[161,18],[149,20],[150,21],[58,22],[59,22],[93,23],[94,24],[95,25],[96,26],[97,27],[98,28],[99,29],[100,30],[101,31],[102,32],[103,32],[105,33],[104,34],[106,35],[107,36],[108,37],[92,38],[109,39],[110,40],[111,41],[143,42],[112,43],[113,44],[114,45],[115,46],[116,47],[117,48],[118,49],[119,50],[120,51],[121,52],[122,52],[123,53],[124,54],[126,55],[125,56],[127,57],[128,58],[129,59],[130,60],[131,61],[132,62],[133,63],[134,64],[135,65],[136,66],[137,67],[138,68],[139,69],[140,70],[141,71],[277,72],[278,73],[253,74],[256,74],[275,72],[276,72],[266,72],[265,75],[263,72],[258,72],[271,72],[269,72],[273,72],[257,72],[270,72],[274,72],[259,72],[260,72],[272,72],[254,72],[261,72],[262,72],[264,72],[268,72],[279,76],[267,72],[255,72],[292,77],[286,76],[288,78],[287,76],[280,76],[281,76],[283,76],[285,76],[289,78],[290,78],[282,78],[284,78],[151,79],[294,80],[295,81],[53,82],[52,82],[248,83],[187,84],[246,85],[247,86],[226,87],[245,88],[56,89],[75,90],[82,91],[74,90],[89,92],[66,93],[65,94],[88,17],[83,95],[86,96],[68,97],[67,98],[63,99],[62,100],[85,101],[64,102],[69,103],[73,103],[91,104],[90,103],[77,105],[78,106],[80,107],[76,108],[79,109],[84,17],[71,110],[72,111],[81,112],[61,113],[87,114],[188,115],[189,18],[190,153],[191,18],[192,18],[213,119],[193,2],[197,154],[199,121],[200,155],[201,155],[202,154],[203,154],[204,154],[211,124],[176,156],[172,157],[174,158],[175,158],[57,130],[218,159],[219,159],[171,160],[220,159],[170,160],[217,134],[177,135],[178,161],[179,136],[163,138],[180,139],[221,140],[207,162],[165,142],[206,159],[164,144],[168,163],[222,159],[224,18],[225,130],[227,164],[228,130],[196,151],[209,151],[208,151],[210,151]],"semanticDiagnosticsPerFile":[182,181,231,229,241,244,243,55,54,144,234,230,232,233,153,152,159,235,155,236,148,154,237,156,157,238,239,240,249,250,251,145,223,158,160,161,149,150,58,59,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,92,142,109,110,111,143,112,113,114,115,116,117,118,119,120,121,122,123,124,126,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,252,147,146,277,278,253,256,275,276,266,265,263,258,271,269,273,257,270,274,259,260,272,254,261,262,264,268,279,267,255,292,291,286,288,287,280,281,283,285,289,290,282,284,151,293,294,295,51,53,52,242,248,187,186,185,184,183,246,247,226,245,56,48,49,8,9,13,12,2,14,15,16,17,18,19,20,21,3,22,4,23,50,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,1,47,11,10,75,82,74,89,66,65,88,83,86,68,67,63,62,85,64,69,70,73,60,91,90,77,78,80,76,79,84,71,72,81,61,87,188,189,190,191,192,173,213,214,193,197,199,215,198,200,201,202,203,204,205,211,176,172,174,175,216,162,57,218,219,171,220,170,217,177,178,179,163,180,221,207,165,206,164,168,167,212,222,224,166,225,227,169,194,228,196,209,208,210,195]},"version":"5.4.3"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './hooks/usePathParams'
|
|
|
11
11
|
export * from './hooks/useQueryParams'
|
|
12
12
|
export * from './hooks/useRequestBody'
|
|
13
13
|
export * from './hooks/useRequestRawBody'
|
|
14
|
+
export * from './hooks/useReturnValue'
|
|
14
15
|
export * from './openapi/initOpenApiEngine'
|
|
15
16
|
export * from './router/Router'
|
|
16
17
|
export * from './validators/BuiltInValidators'
|
package/src/router/Router.ts
CHANGED
|
@@ -20,6 +20,20 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
private async sendResponseValue<P extends string>(
|
|
24
|
+
ctx: Parameters<Parameters<KoaRouter['get']>[1]>[0],
|
|
25
|
+
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
26
|
+
) {
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
const responseValue = await callback(ctx, undefined)
|
|
29
|
+
const { value, status, contentType } = parseEndpointReturnValue(responseValue)
|
|
30
|
+
ctx.body = value
|
|
31
|
+
if (status !== 'unset') {
|
|
32
|
+
ctx.status = status
|
|
33
|
+
}
|
|
34
|
+
ctx.set('Content-Type', contentType)
|
|
35
|
+
}
|
|
36
|
+
|
|
23
37
|
public use(...middleware: Array<KoaRouter.Middleware<StateT, ContextT>>) {
|
|
24
38
|
// @ts-ignore
|
|
25
39
|
this.koaRouter.use(...middleware)
|
|
@@ -46,11 +60,7 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
46
60
|
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
47
61
|
) {
|
|
48
62
|
this.koaRouter.get(path, async (ctx) => {
|
|
49
|
-
|
|
50
|
-
const responseValue = await callback(ctx, undefined)
|
|
51
|
-
const { value, contentType } = parseEndpointReturnValue(responseValue)
|
|
52
|
-
ctx.body = value
|
|
53
|
-
ctx.set('Content-Type', contentType)
|
|
63
|
+
await this.sendResponseValue(ctx, callback)
|
|
54
64
|
})
|
|
55
65
|
return this
|
|
56
66
|
}
|
|
@@ -60,11 +70,7 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
60
70
|
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
61
71
|
) {
|
|
62
72
|
this.koaRouter.post(path, async (ctx) => {
|
|
63
|
-
|
|
64
|
-
const responseValue = await callback(ctx, undefined)
|
|
65
|
-
const { value, contentType } = parseEndpointReturnValue(responseValue)
|
|
66
|
-
ctx.body = value
|
|
67
|
-
ctx.set('Content-Type', contentType)
|
|
73
|
+
await this.sendResponseValue(ctx, callback)
|
|
68
74
|
})
|
|
69
75
|
return this
|
|
70
76
|
}
|
|
@@ -74,11 +80,7 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
74
80
|
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
75
81
|
) {
|
|
76
82
|
this.koaRouter.put(path, async (ctx) => {
|
|
77
|
-
|
|
78
|
-
const responseValue = await callback(ctx, undefined)
|
|
79
|
-
const { value, contentType } = parseEndpointReturnValue(responseValue)
|
|
80
|
-
ctx.body = value
|
|
81
|
-
ctx.set('Content-Type', contentType)
|
|
83
|
+
await this.sendResponseValue(ctx, callback)
|
|
82
84
|
})
|
|
83
85
|
return this
|
|
84
86
|
}
|
|
@@ -88,11 +90,7 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
88
90
|
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
89
91
|
) {
|
|
90
92
|
this.koaRouter.delete(path, async (ctx) => {
|
|
91
|
-
|
|
92
|
-
const responseValue = await callback(ctx, undefined)
|
|
93
|
-
const { value, contentType } = parseEndpointReturnValue(responseValue)
|
|
94
|
-
ctx.body = value
|
|
95
|
-
ctx.set('Content-Type', contentType)
|
|
93
|
+
await this.sendResponseValue(ctx, callback)
|
|
96
94
|
})
|
|
97
95
|
return this
|
|
98
96
|
}
|
|
@@ -102,11 +100,7 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
102
100
|
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
103
101
|
) {
|
|
104
102
|
this.koaRouter.del(path, async (ctx) => {
|
|
105
|
-
|
|
106
|
-
const responseValue = await callback(ctx, undefined)
|
|
107
|
-
const { value, contentType } = parseEndpointReturnValue(responseValue)
|
|
108
|
-
ctx.body = value
|
|
109
|
-
ctx.set('Content-Type', contentType)
|
|
103
|
+
await this.sendResponseValue(ctx, callback)
|
|
110
104
|
})
|
|
111
105
|
return this
|
|
112
106
|
}
|
|
@@ -116,11 +110,7 @@ export class Router<StateT = Koa.DefaultState, ContextT = Koa.DefaultContext> {
|
|
|
116
110
|
callback: KoaRouter.Middleware<StateT, ContextT & ExtractedRequestParams<P>>
|
|
117
111
|
) {
|
|
118
112
|
this.koaRouter.patch(path, async (ctx) => {
|
|
119
|
-
|
|
120
|
-
const responseValue = await callback(ctx, undefined)
|
|
121
|
-
const { value, contentType } = parseEndpointReturnValue(responseValue)
|
|
122
|
-
ctx.body = value
|
|
123
|
-
ctx.set('Content-Type', contentType)
|
|
113
|
+
await this.sendResponseValue(ctx, callback)
|
|
124
114
|
})
|
|
125
115
|
return this
|
|
126
116
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { useReturnValue } from '../hooks/useReturnValue'
|
|
1
2
|
import { parseEndpointReturnValue } from './parseEndpointReturnValue'
|
|
2
3
|
|
|
3
4
|
describe('parseEndpointReturnValue', () => {
|
|
@@ -5,6 +6,16 @@ describe('parseEndpointReturnValue', () => {
|
|
|
5
6
|
const value = 'foo'
|
|
6
7
|
expect(parseEndpointReturnValue(value)).toEqual({
|
|
7
8
|
value,
|
|
9
|
+
status: 'unset',
|
|
10
|
+
contentType: 'text/plain',
|
|
11
|
+
})
|
|
12
|
+
})
|
|
13
|
+
|
|
14
|
+
it('returns number as plain text data', () => {
|
|
15
|
+
const value = 100
|
|
16
|
+
expect(parseEndpointReturnValue(value)).toEqual({
|
|
17
|
+
value: '100',
|
|
18
|
+
status: 'unset',
|
|
8
19
|
contentType: 'text/plain',
|
|
9
20
|
})
|
|
10
21
|
})
|
|
@@ -13,6 +24,7 @@ describe('parseEndpointReturnValue', () => {
|
|
|
13
24
|
const value = Buffer.from('foo')
|
|
14
25
|
expect(parseEndpointReturnValue(value)).toEqual({
|
|
15
26
|
value,
|
|
27
|
+
status: 'unset',
|
|
16
28
|
contentType: 'application/octet-stream',
|
|
17
29
|
})
|
|
18
30
|
})
|
|
@@ -21,15 +33,50 @@ describe('parseEndpointReturnValue', () => {
|
|
|
21
33
|
const value = { foo: 'bar' }
|
|
22
34
|
expect(parseEndpointReturnValue(value)).toEqual({
|
|
23
35
|
value: JSON.stringify(value),
|
|
36
|
+
status: 'unset',
|
|
24
37
|
contentType: 'application/json; charset=utf-8',
|
|
25
38
|
})
|
|
26
39
|
})
|
|
27
40
|
|
|
28
|
-
it('
|
|
29
|
-
const value = {
|
|
41
|
+
it('parses useReturnValue with string value correctly', () => {
|
|
42
|
+
const value: ReturnType<typeof useReturnValue> = {
|
|
43
|
+
_isUseReturnValue: true,
|
|
30
44
|
value: 'foo',
|
|
45
|
+
status: 418,
|
|
31
46
|
contentType: 'application/custom',
|
|
32
47
|
}
|
|
33
|
-
expect(parseEndpointReturnValue(value)).toEqual(
|
|
48
|
+
expect(parseEndpointReturnValue(value)).toEqual({
|
|
49
|
+
value: 'foo',
|
|
50
|
+
status: 418,
|
|
51
|
+
contentType: 'application/custom',
|
|
52
|
+
})
|
|
53
|
+
})
|
|
54
|
+
|
|
55
|
+
it('parses useReturnValue with number value correctly', () => {
|
|
56
|
+
const value: ReturnType<typeof useReturnValue> = {
|
|
57
|
+
_isUseReturnValue: true,
|
|
58
|
+
value: 100,
|
|
59
|
+
status: 418,
|
|
60
|
+
contentType: 'application/custom',
|
|
61
|
+
}
|
|
62
|
+
expect(parseEndpointReturnValue(value)).toEqual({
|
|
63
|
+
value: '100',
|
|
64
|
+
status: 418,
|
|
65
|
+
contentType: 'application/custom',
|
|
66
|
+
})
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
it('parses useReturnValue with Buffer value correctly', () => {
|
|
70
|
+
const value: ReturnType<typeof useReturnValue> = {
|
|
71
|
+
_isUseReturnValue: true,
|
|
72
|
+
value: Buffer.from('foo'),
|
|
73
|
+
status: 418,
|
|
74
|
+
contentType: 'application/custom',
|
|
75
|
+
}
|
|
76
|
+
expect(parseEndpointReturnValue(value)).toEqual({
|
|
77
|
+
value: Buffer.from('foo'),
|
|
78
|
+
status: 418,
|
|
79
|
+
contentType: 'application/custom',
|
|
80
|
+
})
|
|
34
81
|
})
|
|
35
82
|
})
|
|
@@ -2,30 +2,37 @@ export const parseEndpointReturnValue = (response: unknown) => {
|
|
|
2
2
|
if (
|
|
3
3
|
typeof response === 'object' &&
|
|
4
4
|
response &&
|
|
5
|
+
'_isUseReturnValue' in response &&
|
|
5
6
|
'value' in response &&
|
|
6
|
-
|
|
7
|
+
'status' in response &&
|
|
7
8
|
'contentType' in response &&
|
|
9
|
+
response['_isUseReturnValue'] === true &&
|
|
10
|
+
typeof response['status'] === 'number' &&
|
|
8
11
|
typeof response['contentType'] === 'string'
|
|
9
12
|
) {
|
|
10
13
|
return {
|
|
11
|
-
value: response.value,
|
|
14
|
+
value: Buffer.isBuffer(response.value) ? response.value : String(response.value),
|
|
15
|
+
status: response.status,
|
|
12
16
|
contentType: response.contentType,
|
|
13
17
|
}
|
|
14
18
|
}
|
|
15
|
-
if (
|
|
19
|
+
if (['string', 'boolean', 'number', 'bigint', 'symbol'].includes(typeof response)) {
|
|
16
20
|
return {
|
|
17
|
-
value: response,
|
|
21
|
+
value: String(response),
|
|
22
|
+
status: 'unset' as const,
|
|
18
23
|
contentType: 'text/plain',
|
|
19
24
|
}
|
|
20
25
|
}
|
|
21
26
|
if (Buffer.isBuffer(response)) {
|
|
22
27
|
return {
|
|
23
28
|
value: response,
|
|
29
|
+
status: 'unset' as const,
|
|
24
30
|
contentType: 'application/octet-stream',
|
|
25
31
|
}
|
|
26
32
|
}
|
|
27
33
|
return {
|
|
28
34
|
value: JSON.stringify(response, (_, value) => (typeof value === 'bigint' ? value.toString() : value)),
|
|
35
|
+
status: 'unset' as const,
|
|
29
36
|
contentType: 'application/json; charset=utf-8',
|
|
30
37
|
}
|
|
31
38
|
}
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
NonEmptyStringValidator,
|
|
5
5
|
UnauthorizedError,
|
|
6
6
|
useQueryParams,
|
|
7
|
+
useReturnValue,
|
|
7
8
|
} from '..'
|
|
8
9
|
import { Router as RenamedRouter } from '../router/Router'
|
|
9
10
|
|
|
@@ -67,6 +68,14 @@ myRouter.get('/test/get/bigint', () => {
|
|
|
67
68
|
}
|
|
68
69
|
})
|
|
69
70
|
|
|
71
|
+
myRouter.get('/test/get/useReturnValue', () => {
|
|
72
|
+
return useReturnValue('foo', 418, 'text/custom')
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
myRouter.get('/test/get/useReturnValue/buffer', () => {
|
|
76
|
+
return useReturnValue(Buffer.from('foo'), 418, 'text/custom')
|
|
77
|
+
})
|
|
78
|
+
|
|
70
79
|
myRouter.get('/test/get/middleware-data', (ctx) => {
|
|
71
80
|
return {
|
|
72
81
|
user: ctx.user,
|
package/src/test/app.spec.ts
CHANGED
|
@@ -81,6 +81,20 @@ describe('TestAppRouter', () => {
|
|
|
81
81
|
expect(response.text).toBe(JSON.stringify({ foo: '100' }))
|
|
82
82
|
})
|
|
83
83
|
|
|
84
|
+
it('handles useReturnValue return value correctly', async () => {
|
|
85
|
+
const response = await request(app.callback()).get('/test/get/useReturnValue')
|
|
86
|
+
expect(response.text).toBe('foo')
|
|
87
|
+
expect(response.status).toBe(418)
|
|
88
|
+
expect(response.header['content-type']).toEqual('text/custom')
|
|
89
|
+
})
|
|
90
|
+
|
|
91
|
+
it('handles useReturnValue binary return value correctly', async () => {
|
|
92
|
+
const response = await request(app.callback()).get('/test/get/useReturnValue')
|
|
93
|
+
expect(response.text).toBe('foo')
|
|
94
|
+
expect(response.status).toBe(418)
|
|
95
|
+
expect(response.header['content-type']).toEqual('text/custom')
|
|
96
|
+
})
|
|
97
|
+
|
|
84
98
|
it('includes middleware data from context', async () => {
|
|
85
99
|
const response = await request(app.callback()).get('/test/get/middleware-data')
|
|
86
100
|
expect(response.status).toBe(200)
|