encore.dev 1.39.8 → 1.40.1
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/api/mod.ts +85 -0
- package/dist/api/mod.d.ts +47 -0
- package/dist/api/mod.js +13 -0
- package/dist/api/mod.js.map +1 -1
- package/dist/internal/api/node_http.d.ts +2 -0
- package/dist/internal/api/node_http.js +8 -2
- package/dist/internal/api/node_http.js.map +1 -1
- package/dist/internal/appinit/mod.js +68 -2
- package/dist/internal/appinit/mod.js.map +1 -1
- package/dist/internal/runtime/napi/napi.cjs +7 -1
- package/dist/internal/runtime/napi/napi.d.cts +17 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/internal/api/mod.ts +1 -1
- package/internal/api/node_http.ts +12 -3
- package/internal/appinit/mod.ts +78 -2
- package/package.json +1 -1
package/api/mod.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
|
|
3
3
|
import type { IncomingMessage, ServerResponse } from "http";
|
|
4
|
+
export { RawRequest, RawResponse } from "../internal/api/node_http";
|
|
4
5
|
|
|
5
6
|
export type Method =
|
|
6
7
|
| "GET"
|
|
@@ -67,6 +68,35 @@ export interface APIOptions {
|
|
|
67
68
|
bodyLimit?: number | null;
|
|
68
69
|
}
|
|
69
70
|
|
|
71
|
+
export interface StreamOptions {
|
|
72
|
+
/**
|
|
73
|
+
* The request path to match for this endpoint.
|
|
74
|
+
*
|
|
75
|
+
* Use `:` to define single-segment parameters, e.g. `/users/:id`.
|
|
76
|
+
* Use `*` to match any number of segments, e.g. `/files/*path`.
|
|
77
|
+
*
|
|
78
|
+
* If not specified, it defaults to `/<service-name>.<endpoint-name>`.
|
|
79
|
+
*/
|
|
80
|
+
path?: string;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Whether or not to make this endpoint publicly accessible.
|
|
84
|
+
* If false, the endpoint is only accessible from the internal network.
|
|
85
|
+
*
|
|
86
|
+
* Defaults to false if not specified.
|
|
87
|
+
*/
|
|
88
|
+
expose?: boolean;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Whether or not the request must contain valid authentication credentials.
|
|
92
|
+
* If set to true and the request is not authenticated,
|
|
93
|
+
* Encore returns a 401 Unauthorized error.
|
|
94
|
+
*
|
|
95
|
+
* Defaults to false if not specified.
|
|
96
|
+
*/
|
|
97
|
+
auth?: boolean;
|
|
98
|
+
}
|
|
99
|
+
|
|
70
100
|
type HandlerFn<Params, Response> = Params extends void
|
|
71
101
|
? () => Promise<Response>
|
|
72
102
|
: (params: Params) => Promise<Response>;
|
|
@@ -96,5 +126,60 @@ api.raw = function raw(options: APIOptions, fn: RawHandler) {
|
|
|
96
126
|
return fn;
|
|
97
127
|
};
|
|
98
128
|
|
|
129
|
+
export interface StreamIn<Request> extends AsyncIterable<Request> {
|
|
130
|
+
recv: () => Promise<Request>;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface StreamOut<Response> {
|
|
134
|
+
send: (msg: Response) => Promise<void>;
|
|
135
|
+
close: () => Promise<void>;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export type StreamInOut<Request, Response> = StreamIn<Request> &
|
|
139
|
+
StreamOut<Response>;
|
|
140
|
+
|
|
141
|
+
function streamInOut<HandshakeData, Request, Response>(
|
|
142
|
+
options: StreamOptions,
|
|
143
|
+
fn: (
|
|
144
|
+
data: HandshakeData,
|
|
145
|
+
stream: StreamInOut<Request, Response>
|
|
146
|
+
) => Promise<void>
|
|
147
|
+
): void;
|
|
148
|
+
function streamInOut<Request, Response>(
|
|
149
|
+
options: StreamOptions,
|
|
150
|
+
fn: (stream: StreamInOut<Request, Response>) => Promise<void>
|
|
151
|
+
): void;
|
|
152
|
+
function streamInOut(options: StreamOptions, fn: any): typeof fn {
|
|
153
|
+
return fn;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
function streamIn<Request, Response>(
|
|
157
|
+
options: StreamOptions,
|
|
158
|
+
fn: (stream: StreamIn<Request>) => Promise<Response>
|
|
159
|
+
): void;
|
|
160
|
+
function streamIn<HandshakeData, Request, Response>(
|
|
161
|
+
options: StreamOptions,
|
|
162
|
+
fn: (data: HandshakeData, stream: StreamIn<Request>) => Promise<Response>
|
|
163
|
+
): void;
|
|
164
|
+
function streamIn(options: StreamOptions, fn: any): typeof fn {
|
|
165
|
+
return fn;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
function streamOut<HandshakeData, Response>(
|
|
169
|
+
options: StreamOptions,
|
|
170
|
+
fn: (data: HandshakeData, stream: StreamOut<Response>) => Promise<void>
|
|
171
|
+
): void;
|
|
172
|
+
function streamOut<Response>(
|
|
173
|
+
options: StreamOptions,
|
|
174
|
+
fn: (stream: StreamOut<Response>) => Promise<void>
|
|
175
|
+
): void;
|
|
176
|
+
function streamOut(options: StreamOptions, fn: any): typeof fn {
|
|
177
|
+
return fn;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
api.streamInOut = streamInOut;
|
|
181
|
+
api.streamIn = streamIn;
|
|
182
|
+
api.streamOut = streamOut;
|
|
183
|
+
|
|
99
184
|
export { APIError, ErrCode } from "./error";
|
|
100
185
|
export { Gateway, type GatewayConfig } from "./gateway";
|
package/dist/api/mod.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import type { IncomingMessage, ServerResponse } from "http";
|
|
3
|
+
export { RawRequest, RawResponse } from "../internal/api/node_http.js";
|
|
3
4
|
export type Method = "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | "TRACE" | "CONNECT";
|
|
4
5
|
export type Header<TypeOrName extends string | number | boolean = string, Name extends string = ""> = TypeOrName extends string ? string : TypeOrName;
|
|
5
6
|
export type Query<TypeOrName extends string | number | boolean = string, Name extends string = ""> = TypeOrName extends string ? string : TypeOrName;
|
|
@@ -42,12 +43,58 @@ export interface APIOptions {
|
|
|
42
43
|
**/
|
|
43
44
|
bodyLimit?: number | null;
|
|
44
45
|
}
|
|
46
|
+
export interface StreamOptions {
|
|
47
|
+
/**
|
|
48
|
+
* The request path to match for this endpoint.
|
|
49
|
+
*
|
|
50
|
+
* Use `:` to define single-segment parameters, e.g. `/users/:id`.
|
|
51
|
+
* Use `*` to match any number of segments, e.g. `/files/*path`.
|
|
52
|
+
*
|
|
53
|
+
* If not specified, it defaults to `/<service-name>.<endpoint-name>`.
|
|
54
|
+
*/
|
|
55
|
+
path?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Whether or not to make this endpoint publicly accessible.
|
|
58
|
+
* If false, the endpoint is only accessible from the internal network.
|
|
59
|
+
*
|
|
60
|
+
* Defaults to false if not specified.
|
|
61
|
+
*/
|
|
62
|
+
expose?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Whether or not the request must contain valid authentication credentials.
|
|
65
|
+
* If set to true and the request is not authenticated,
|
|
66
|
+
* Encore returns a 401 Unauthorized error.
|
|
67
|
+
*
|
|
68
|
+
* Defaults to false if not specified.
|
|
69
|
+
*/
|
|
70
|
+
auth?: boolean;
|
|
71
|
+
}
|
|
45
72
|
type HandlerFn<Params, Response> = Params extends void ? () => Promise<Response> : (params: Params) => Promise<Response>;
|
|
46
73
|
export declare function api<Params extends object | void = void, Response extends object | void = void>(options: APIOptions, fn: (params: Params) => Promise<Response>): HandlerFn<Params, Response>;
|
|
47
74
|
export declare function api<Params extends object | void = void, Response extends object | void = void>(options: APIOptions, fn: (params: Params) => Response): HandlerFn<Params, Response>;
|
|
48
75
|
export declare namespace api {
|
|
49
76
|
var raw: (options: APIOptions, fn: RawHandler) => RawHandler;
|
|
77
|
+
var streamInOut: {
|
|
78
|
+
<HandshakeData, Request_1, Response_1>(options: StreamOptions, fn: (data: HandshakeData, stream: StreamInOut<Request_1, Response_1>) => Promise<void>): void;
|
|
79
|
+
<Request_2, Response_2>(options: StreamOptions, fn: (stream: StreamInOut<Request_2, Response_2>) => Promise<void>): void;
|
|
80
|
+
};
|
|
81
|
+
var streamIn: {
|
|
82
|
+
<Request_1, Response_1>(options: StreamOptions, fn: (stream: StreamIn<Request_1>) => Promise<Response_1>): void;
|
|
83
|
+
<HandshakeData, Request_2, Response_2>(options: StreamOptions, fn: (data: HandshakeData, stream: StreamIn<Request_2>) => Promise<Response_2>): void;
|
|
84
|
+
};
|
|
85
|
+
var streamOut: {
|
|
86
|
+
<HandshakeData, Response_1>(options: StreamOptions, fn: (data: HandshakeData, stream: StreamOut<Response_1>) => Promise<void>): void;
|
|
87
|
+
<Response_2>(options: StreamOptions, fn: (stream: StreamOut<Response_2>) => Promise<void>): void;
|
|
88
|
+
};
|
|
50
89
|
}
|
|
51
90
|
export type RawHandler = (req: IncomingMessage, resp: ServerResponse) => void;
|
|
91
|
+
export interface StreamIn<Request> extends AsyncIterable<Request> {
|
|
92
|
+
recv: () => Promise<Request>;
|
|
93
|
+
}
|
|
94
|
+
export interface StreamOut<Response> {
|
|
95
|
+
send: (msg: Response) => Promise<void>;
|
|
96
|
+
close: () => Promise<void>;
|
|
97
|
+
}
|
|
98
|
+
export type StreamInOut<Request, Response> = StreamIn<Request> & StreamOut<Response>;
|
|
52
99
|
export { APIError, ErrCode } from "./error.js";
|
|
53
100
|
export { Gateway, type GatewayConfig } from "./gateway.js";
|
package/dist/api/mod.js
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
+
export { RawRequest, RawResponse } from "../internal/api/node_http.js";
|
|
2
3
|
export function api(options, fn) {
|
|
3
4
|
return fn;
|
|
4
5
|
}
|
|
5
6
|
api.raw = function raw(options, fn) {
|
|
6
7
|
return fn;
|
|
7
8
|
};
|
|
9
|
+
function streamInOut(options, fn) {
|
|
10
|
+
return fn;
|
|
11
|
+
}
|
|
12
|
+
function streamIn(options, fn) {
|
|
13
|
+
return fn;
|
|
14
|
+
}
|
|
15
|
+
function streamOut(options, fn) {
|
|
16
|
+
return fn;
|
|
17
|
+
}
|
|
18
|
+
api.streamInOut = streamInOut;
|
|
19
|
+
api.streamIn = streamIn;
|
|
20
|
+
api.streamOut = streamOut;
|
|
8
21
|
export { APIError, ErrCode } from "./error.js";
|
|
9
22
|
export { Gateway } from "./gateway.js";
|
|
10
23
|
//# sourceMappingURL=mod.js.map
|
package/dist/api/mod.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.js","sourceRoot":"","sources":["../../api/mod.ts"],"names":[],"mappings":"AAAA,oBAAoB;
|
|
1
|
+
{"version":3,"file":"mod.js","sourceRoot":"","sources":["../../api/mod.ts"],"names":[],"mappings":"AAAA,oBAAoB;AAGpB,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAmHpE,MAAM,UAAU,GAAG,CAAC,OAAmB,EAAE,EAAO;IAC9C,OAAO,EAAE,CAAC;AACZ,CAAC;AAID,GAAG,CAAC,GAAG,GAAG,SAAS,GAAG,CAAC,OAAmB,EAAE,EAAc;IACxD,OAAO,EAAE,CAAC;AACZ,CAAC,CAAC;AAyBF,SAAS,WAAW,CAAC,OAAsB,EAAE,EAAO;IAClD,OAAO,EAAE,CAAC;AACZ,CAAC;AAUD,SAAS,QAAQ,CAAC,OAAsB,EAAE,EAAO;IAC/C,OAAO,EAAE,CAAC;AACZ,CAAC;AAUD,SAAS,SAAS,CAAC,OAAsB,EAAE,EAAO;IAChD,OAAO,EAAE,CAAC;AACZ,CAAC;AAED,GAAG,CAAC,WAAW,GAAG,WAAW,CAAC;AAC9B,GAAG,CAAC,QAAQ,GAAG,QAAQ,CAAC;AACxB,GAAG,CAAC,SAAS,GAAG,SAAS,CAAC;AAE1B,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,OAAO,EAAsB,MAAM,WAAW,CAAC"}
|
|
@@ -12,6 +12,8 @@ export declare class RawRequest extends stream.Readable {
|
|
|
12
12
|
trailers: NodeJS.Dict<string>;
|
|
13
13
|
trailersDistinct: NodeJS.Dict<string[]>;
|
|
14
14
|
rawTrailers: string[];
|
|
15
|
+
readonly connection: Socket | null;
|
|
16
|
+
readonly socket: Socket | null;
|
|
15
17
|
private body;
|
|
16
18
|
private req;
|
|
17
19
|
constructor(req: runtime.Request, body: runtime.BodyReader);
|
|
@@ -4,6 +4,8 @@ export class RawRequest extends stream.Readable {
|
|
|
4
4
|
trailers;
|
|
5
5
|
trailersDistinct;
|
|
6
6
|
rawTrailers;
|
|
7
|
+
connection; // deprecated
|
|
8
|
+
socket;
|
|
7
9
|
body;
|
|
8
10
|
req;
|
|
9
11
|
constructor(req, body) {
|
|
@@ -15,6 +17,9 @@ export class RawRequest extends stream.Readable {
|
|
|
15
17
|
this.rawTrailers = [];
|
|
16
18
|
this.body = body;
|
|
17
19
|
this.body.start(this.push.bind(this), this.destroy.bind(this));
|
|
20
|
+
// Set the socket to a dummy value for legacy compatibility with Express.js.
|
|
21
|
+
this.socket = { encrypted: false, destroy: () => { } };
|
|
22
|
+
this.connection = this.socket; // legacy alias
|
|
18
23
|
}
|
|
19
24
|
get method() {
|
|
20
25
|
return this.meta.apiCall.method;
|
|
@@ -97,9 +102,10 @@ export class RawResponse extends stream.Writable {
|
|
|
97
102
|
this.strictContentLength = false;
|
|
98
103
|
this.headersSent = false;
|
|
99
104
|
this.headers = {};
|
|
100
|
-
this.connection = null;
|
|
101
|
-
this.socket = null;
|
|
102
105
|
this.w = w;
|
|
106
|
+
// Set the socket to a dummy value for legacy compatibility with Express.js.
|
|
107
|
+
this.socket = { encrypted: false, destroy: () => { } };
|
|
108
|
+
this.connection = this.socket; // legacy alias
|
|
103
109
|
}
|
|
104
110
|
write(chunk, encoding, callback) {
|
|
105
111
|
const res = super.write(chunk, encoding, callback);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node_http.js","sourceRoot":"","sources":["../../../internal/api/node_http.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,MAAM,aAAa,CAAC;AAGtC,MAAM,OAAO,UAAW,SAAQ,MAAM,CAAC,QAAQ;IAC7C,QAAQ,CAAU;IAElB,QAAQ,CAAsB;IAC9B,gBAAgB,CAAwB;IACxC,WAAW,CAAW;
|
|
1
|
+
{"version":3,"file":"node_http.js","sourceRoot":"","sources":["../../../internal/api/node_http.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,7 +14,73 @@ export function registerGateways(gateways) {
|
|
|
14
14
|
export async function run() {
|
|
15
15
|
return runtime.RT.runForever();
|
|
16
16
|
}
|
|
17
|
+
class IterableStream {
|
|
18
|
+
stream;
|
|
19
|
+
constructor(stream) {
|
|
20
|
+
this.stream = stream;
|
|
21
|
+
}
|
|
22
|
+
recv() {
|
|
23
|
+
return this.stream.recv();
|
|
24
|
+
}
|
|
25
|
+
async *[Symbol.asyncIterator]() {
|
|
26
|
+
while (true) {
|
|
27
|
+
try {
|
|
28
|
+
yield await this.stream.recv();
|
|
29
|
+
}
|
|
30
|
+
catch (e) {
|
|
31
|
+
break;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
class IterableSocket {
|
|
37
|
+
socket;
|
|
38
|
+
constructor(socket) {
|
|
39
|
+
this.socket = socket;
|
|
40
|
+
}
|
|
41
|
+
send(msg) {
|
|
42
|
+
return this.socket.send(msg);
|
|
43
|
+
}
|
|
44
|
+
recv() {
|
|
45
|
+
return this.socket.recv();
|
|
46
|
+
}
|
|
47
|
+
close() {
|
|
48
|
+
this.socket.close();
|
|
49
|
+
}
|
|
50
|
+
async *[Symbol.asyncIterator]() {
|
|
51
|
+
while (true) {
|
|
52
|
+
try {
|
|
53
|
+
yield await this.socket.recv();
|
|
54
|
+
}
|
|
55
|
+
catch (e) {
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
17
61
|
function transformHandler(h) {
|
|
62
|
+
if (h.streaming) {
|
|
63
|
+
return {
|
|
64
|
+
...h,
|
|
65
|
+
// req is the upgrade request.
|
|
66
|
+
// stream is either a bidirectional stream, in stream or out stream.
|
|
67
|
+
handler: (req, stream) => {
|
|
68
|
+
setCurrentRequest(req);
|
|
69
|
+
// make readable streams async iterators
|
|
70
|
+
if (stream instanceof runtime.Stream) {
|
|
71
|
+
stream = new IterableStream(stream);
|
|
72
|
+
}
|
|
73
|
+
if (stream instanceof runtime.Socket) {
|
|
74
|
+
stream = new IterableSocket(stream);
|
|
75
|
+
}
|
|
76
|
+
// handshake payload
|
|
77
|
+
const payload = req.payload();
|
|
78
|
+
return payload !== null
|
|
79
|
+
? h.handler(payload, stream)
|
|
80
|
+
: h.handler(stream);
|
|
81
|
+
}
|
|
82
|
+
};
|
|
83
|
+
}
|
|
18
84
|
if (h.raw) {
|
|
19
85
|
return {
|
|
20
86
|
...h,
|
|
@@ -23,7 +89,7 @@ function transformHandler(h) {
|
|
|
23
89
|
const rawReq = new RawRequest(req, body);
|
|
24
90
|
const rawResp = new RawResponse(rawReq, resp);
|
|
25
91
|
return h.handler(rawReq, rawResp);
|
|
26
|
-
}
|
|
92
|
+
}
|
|
27
93
|
};
|
|
28
94
|
}
|
|
29
95
|
return {
|
|
@@ -32,7 +98,7 @@ function transformHandler(h) {
|
|
|
32
98
|
setCurrentRequest(req);
|
|
33
99
|
const payload = req.payload();
|
|
34
100
|
return payload !== null ? h.handler(payload) : h.handler();
|
|
35
|
-
}
|
|
101
|
+
}
|
|
36
102
|
};
|
|
37
103
|
}
|
|
38
104
|
//# sourceMappingURL=mod.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.js","sourceRoot":"","sources":["../../../internal/appinit/mod.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAI1C,MAAM,UAAU,gBAAgB,CAAC,QAAmB;IAClD,OAAO,CAAC,EAAE,CAAC,gBAAgB,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AACxE,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,OAAgB;IAClD,OAAO,CAAC,EAAE,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC;AAC5D,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,QAAmB;IAClD,qEAAqE;IACrE,gDAAgD;AAClD,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,GAAG;IACvB,OAAO,OAAO,CAAC,EAAE,CAAC,UAAU,EAAE,CAAC;AACjC,CAAC;AAED,SAAS,gBAAgB,CAAC,CAAU;IAClC,IAAI,CAAC,CAAC,GAAG,EAAE,CAAC;QACV,OAAO;YACL,GAAG,CAAC;YACJ,OAAO,EAAE,CACP,GAAoB,EACpB,IAA4B,EAC5B,IAAwB,EACxB,EAAE;gBACF,iBAAiB,CAAC,GAAG,CAAC,CAAC;gBACvB,MAAM,MAAM,GAAG,IAAI,UAAU,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;gBACzC,MAAM,OAAO,GAAG,IAAI,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;gBAC9C,OAAO,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;YACpC,CAAC;SACF,CAAC;IACJ,CAAC;IACD,OAAO;QACL,GAAG,CAAC;QACJ,OAAO,EAAE,CAAC,GAAoB,EAAE,EAAE;YAChC,iBAAiB,CAAC,GAAG,CAAC,CAAC;YACvB,MAAM,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAC;YAC9B,OAAO,OAAO,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;QAC7D,CAAC;KACF,CAAC;AACJ,CAAC"}
|
|
1
|
+
{"version":3,"file":"mod.js","sourceRoot":"","sources":["../../../internal/appinit/mod.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// The version of the runtime this JS bundle was generated for.
|
|
2
|
-
const version = "v1.
|
|
2
|
+
const version = "v1.40.1";
|
|
3
3
|
|
|
4
4
|
// Load the native module.
|
|
5
5
|
const nativeModulePath = process.env.ENCORE_RUNTIME_LIB;
|
|
@@ -29,8 +29,11 @@ const {
|
|
|
29
29
|
SQLConn,
|
|
30
30
|
SQLDatabase,
|
|
31
31
|
Secret,
|
|
32
|
+
Sink,
|
|
33
|
+
Socket,
|
|
32
34
|
SqlConn,
|
|
33
35
|
SqlDatabase,
|
|
36
|
+
Stream,
|
|
34
37
|
} = nativeModule;
|
|
35
38
|
|
|
36
39
|
// Export the objects from the native module.
|
|
@@ -52,8 +55,11 @@ module.exports = {
|
|
|
52
55
|
SQLConn,
|
|
53
56
|
SQLDatabase,
|
|
54
57
|
Secret,
|
|
58
|
+
Sink,
|
|
59
|
+
Socket,
|
|
55
60
|
SqlConn,
|
|
56
61
|
SqlDatabase,
|
|
62
|
+
Stream,
|
|
57
63
|
};
|
|
58
64
|
|
|
59
65
|
|
|
@@ -22,6 +22,7 @@ export interface ApiRoute {
|
|
|
22
22
|
service: string
|
|
23
23
|
name: string
|
|
24
24
|
raw: boolean
|
|
25
|
+
streaming: boolean
|
|
25
26
|
handler: (...args: any[]) => any
|
|
26
27
|
}
|
|
27
28
|
|
|
@@ -183,6 +184,17 @@ export class Secret {
|
|
|
183
184
|
cached(): string
|
|
184
185
|
}
|
|
185
186
|
|
|
187
|
+
export class Sink {
|
|
188
|
+
send(msg: Record<string, any>): void
|
|
189
|
+
close(): void
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
export class Socket {
|
|
193
|
+
send(msg: Record<string, any>): void
|
|
194
|
+
recv(): Promise<Record<string, any>>
|
|
195
|
+
close(): void
|
|
196
|
+
}
|
|
197
|
+
|
|
186
198
|
export class SqlConn {
|
|
187
199
|
close(): Promise<void>
|
|
188
200
|
query(query: string, args: QueryArgs, source?: Request | undefined | null): Promise<Cursor>
|
|
@@ -191,14 +203,18 @@ export class SqlConn {
|
|
|
191
203
|
export type SQLConn = SqlConn
|
|
192
204
|
|
|
193
205
|
export class SqlDatabase {
|
|
206
|
+
acquire(): Promise<SQLConn>
|
|
194
207
|
/** Reports the connection string to connect to this database. */
|
|
195
208
|
connString(): string
|
|
196
209
|
query(query: string, args: QueryArgs, source?: Request | undefined | null): Promise<Cursor>
|
|
197
210
|
queryRow(query: string, args: QueryArgs, source?: Request | undefined | null): Promise<Row | null>
|
|
198
|
-
acquire(): Promise<SQLConn>
|
|
199
211
|
}
|
|
200
212
|
export type SQLDatabase = SqlDatabase
|
|
201
213
|
|
|
214
|
+
export class Stream {
|
|
215
|
+
recv(): Promise<Record<string, any>>
|
|
216
|
+
}
|
|
217
|
+
|
|
202
218
|
export interface TraceData {
|
|
203
219
|
traceId: string
|
|
204
220
|
spanId: string
|
|
@@ -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.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.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.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.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","../internal/runtime/napi/napi.d.cts","../internal/runtime/mod.ts","../app_meta.ts","../internal/reqtrack/mod.ts","../req_meta.ts","../mod.ts","../api/error.ts","../auth/mod.ts","../api/gateway.ts","../api/mod.ts","../internal/utils/constraints.ts","../config/secrets.ts","../config/mod.ts","../internal/types/mod.ts","../cron/mod.ts","../internal/api/mod.ts","../internal/api/node_http.ts","../internal/appinit/mod.ts","../internal/auth/mod.ts","../internal/codegen/api.ts","../internal/codegen/appinit.ts","../internal/codegen/auth.ts","../log/mod.ts","../pubsub/attributes.ts","../pubsub/topic.ts","../pubsub/subscription.ts","../pubsub/mod.ts","../service/mod.ts","../storage/sqldb/database.ts","../storage/sqldb/mod.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"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"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":"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":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","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":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"6053dda50480dfb627ba522b25125a8972b81ed0b34aae74332a18addaaf1e6b",{"version":"e11fa6d10e4091c1e8c499253c80f2d162f493990c0f1a35db564a02affb7b56","signature":"cbdc3c62359f81de1fbfb1baf2f699990f36fe76dc3cf5e1defca9436cc09324"},{"version":"22c41cd969a3f3e8792047767157fd978e5bebf3d5edfe28263a60f094ea8960","signature":"f7a13afa5e66557c8b6fec4b7740e45c9ee0d0a3bdfc2419eeb21c9a214ab9b9"},{"version":"2f9d6c356517121fffa5c54a200fb8fd9b35a3a4339ec3a69ada6b90087c4479","signature":"0755afeffaa749b0a9d242ad328b06c1aa243dd7b10a5d38e13419150792c362"},{"version":"1fbbe94239a20b1708ec071a104ebac2e1e52ed9d8580ad559f7d2eb4d8e13f9","signature":"d5cac7165921c3ac515bb0540df349d64ae8d1e91c24264517dbebf10dbfb1b6"},{"version":"76a8bc704b721e967c752b55bebb16f3a2922cdb86e652c0c82759f5cb3771da","signature":"6167410fcb897c61d6300d81d28f4fee3a1fc8e6ebbcd5c7fe9512fc5f061807"},{"version":"be70248dea0cbc1e7fc1c66717c24e37abff484768644e16d7960dae4c75e1dc","signature":"b64bf0f9ef3aad50ae8f2fe7163ba38d8685291256aef6ac0cf3aeb3016d1911"},{"version":"a9cb80f47f8ce54e616d903da3861ed87b4cc2db54369f3229305923a8d01e9e","signature":"e8b08e8437d7f449a1020c78f523c80edca47d2a7bec765cf8adee01b1b9f4b9"},{"version":"13f690099f433bbd91d6e5af8df80005df0ac3e0c96dc632898ba11bdeef49ba","signature":"b462e4f1ebcae75c287fe499122527a25b1f04c5349f842158c005d758bde646"},{"version":"b38ed0c8d95ddf9b0d6c32d8ba8f12fe6743397d81e253ddca4237b5b2d16fcc","signature":"5238eb88b50dec988f1b07c1748047515dc840c37d19ea77fdbf2e7869f5b6f7"},{"version":"dac2ecb2e2edf2f279c46f49b05e7dab73fb427a72f662cb24d7e06556087db7","signature":"89c544a3aa54a88d90bb7db6e318542d661fc79035b98700d2b7fe5d87bf7edb"},{"version":"c2358758c15d37b0f88a8ecf8cf38deb1fa45995871d2ecda2219ce8e365d2e2","signature":"d6557e5b8c49c27f990d378acb3a64cbd6291d1c97984d9d14510df1038f5d5b"},"68fe5d7ce4b0073cb450767c70847f6bd7ef0e6b099b26effd7651410fcc6206",{"version":"00018aadf3bf8aac3b94d086c07d837b006af7389fab4f52bba73083bdd02c51","signature":"15b3437374aea37541f405e45622294bc2e2631b749920676ae90a8a38ee0bce"},{"version":"d236effd859fb8663d2802ac5b16a8675645585380448c35a2b9297011db0186","signature":"f2582ae9e2b63ad8a9615655f2c136e1652436f177885cbf874d82a8c74f1d29"},{"version":"48b7832fc1b9ef5286551623c7b6a6b977a08aff788817918bc03570a31f1dc3","signature":"98f7ebc4982e2f73bb0630e15dd144b9ccd41f2c278d55e1c492e3e553c3cb7a"},{"version":"9a554f0925a5f4325a7a4a16b42cc1affff491fae0487aa1e082135b35e22585","signature":"042969ff2a8e60d84ba71e3ef71041c0887f4cdc57a07eebcf0c81bdd48a2006"},{"version":"d71edbde50b4fff691d7d57b74d80cfc5c288c9768f2c0e44440d4ba11e336f9","signature":"2d7c6bc7a710b4b44da95cd1c207ad1f25e51981d9c144c4d130099981f4a9d9"},{"version":"65067ae33d9b54a877897cf19c04d11bbc642d23d5f9bddaacb6145b12b47252","signature":"484d6b91ba6f61784cbe40df3a8d4c894a8a6d9322147565c397c161d8b5e547"},{"version":"993082bcacf4eed21450be31609a75f3f0a21dfaa6f69d9a575497fcf8189f11","signature":"f8a9c01f2b38b4bcde753904bb6546678192af71e460f313086c71d132920a4c"},{"version":"0410aaefea35354c17aab7e1d8daea6b78b609a0ac1c2db4c0418bb005eeeda2","signature":"017c1fe5d55daa40564b838ab60cea5e3981e494c20233bb1acc67276d1fb325"},{"version":"e8bf991b3662116671e3430bf519baaace5f6fff3da3fd8d0172ad28a31bc004","signature":"0bb4ce4d165639c83303131ec16c347188ae475335e48a4f0f0c5b09e19bebc7"},{"version":"99a7a53582f2a44381cfbd285fd0457e18116e4185fe93a8679b31a7253ae445","signature":"702197a1307efc488d7c2eed452627d3bfb63810e69e4dd7cecac4e289049e45"},{"version":"7752070ba7feb1db9554d53d98a6a88c7a33c8887d39e9fdcb0717f11efc3f55","signature":"8d4915d71b6ade8d068774cf77299cc76e597a63fb4ba7e055edde453edbf1eb"},{"version":"d73f514e65026f8431e3765a977f3ce2bd100b52a865677f28644972e200cafc","signature":"e470537b83f7ea9796f4088c419e5b95023b979b191030d1aefa742f3fbb1672"},{"version":"cb3393ffd4b953e1cb0fb2864e10c9dad9fb5a6343934ab0d1d034d0a8c09b0e","signature":"0c85004226ac441a92d4362392ee26d2de029799313b538cd7fab4304deae5f0"},{"version":"884eb991175ce17f8419fd6d4c380e8f1f3d1da8877d3820cddeecc2bfbc8c91","signature":"8605b99a002c3a7bbdf60d90193f3a1c62a5bdba0a940c812250a815162fbbb9"},{"version":"bf3807c4266809b2b7d8d907aea7d28cdbd7ddb52815c368ca9576f3439cd671","signature":"616c7a387f1bce3f6ede7a48c15de166f18054b41ed1ed23a460a19c3ac699d7"},{"version":"3315a0cf6251c017a21faf8e6a2a1dd518737a030d5f85128cf81d09101c9348","signature":"e80b4322018280e0266267e592b2538e20dfc862dd22f6bb70b581f7d3a24388"},"21a0fc92666d4ffe9628ad155124bdcbafc6bef107dff77349604ec9fd8c178b","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","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":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447"],"root":[[58,87]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"module":7,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[59,61,65],[64,66,139],[59],[69],[59,68],[71],[59,61],[59,139,144,154],[59,61,66,74],[61],[73],[75],[76],[59,123],[58,170],[60,62],[88],[123],[124,129,157],[125,136,137,144,154,165],[125,126,136,144],[127,166],[128,129,137,145],[129,154,162],[130,132,136,144],[123,131],[132,133],[136],[134,136],[123,136],[136,137,138,154,165],[136,137,138,151,154,157],[121,124,170],[132,136,139,144,154,165],[136,137,139,140,144,154,162,165],[139,141,154,162,165],[88,89,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[136,142],[143,165,170],[132,136,144,154],[145],[146],[123,147],[148,164,170],[149],[150],[136,151,152],[151,153,166,168],[124,136,154,155,156,157],[124,154,156],[154,155],[157],[158],[123,154],[136,160,161],[160,161],[129,144,154,162],[163],[144,164],[124,139,150,165],[129,166],[154,167],[143,168],[169],[124,129,136,138,147,154,165,168,170],[154,171],[98,102,165],[98,154,165],[93],[95,98,162,165],[144,162],[173],[93,173],[95,98,144,165],[90,91,94,97,124,136,154,165],[90,96],[94,98,124,157,165,173],[124,173],[114,124,173],[92,93,173],[98],[92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120],[98,105,106],[96,98,106,107],[97],[90,93,98],[98,102,106,107],[102],[96,98,101,165],[90,95,96,98,102,105],[124,154],[93,98,114,124,170,173],[81,82,83],[59,61,71,82],[59,61,81],[59,61,68],[86],[65],[68],[59,66],[58],[71,82],[81]],"referencedMap":[[66,1],[67,2],[60,3],[70,4],[69,5],[72,6],[73,7],[74,8],[75,9],[76,10],[77,11],[78,12],[79,13],[61,14],[59,15],[80,7],[63,16],[88,17],[89,17],[123,18],[124,19],[125,20],[126,21],[127,22],[128,23],[129,24],[130,25],[131,26],[132,27],[133,27],[135,28],[134,29],[136,30],[137,31],[138,32],[122,33],[139,34],[140,35],[141,36],[173,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,47],[153,48],[154,49],[156,50],[155,51],[157,52],[158,53],[159,54],[160,55],[161,56],[162,57],[163,58],[164,59],[165,60],[166,61],[167,62],[168,63],[169,64],[170,65],[171,66],[105,67],[112,68],[104,67],[119,69],[96,70],[95,71],[118,72],[113,73],[116,74],[98,75],[97,76],[93,77],[92,78],[115,79],[94,80],[99,81],[103,81],[121,82],[120,81],[107,83],[108,84],[110,85],[106,86],[109,87],[114,72],[101,88],[102,89],[111,90],[91,91],[117,92],[84,93],[83,94],[82,95],[62,10],[86,96],[87,97]],"exportedModulesMap":[[66,98],[67,2],[70,4],[69,99],[72,6],[74,8],[75,100],[77,11],[78,12],[79,13],[61,3],[59,101],[80,3],[63,16],[88,17],[89,17],[123,18],[124,19],[125,20],[126,21],[127,22],[128,23],[129,24],[130,25],[131,26],[132,27],[133,27],[135,28],[134,29],[136,30],[137,31],[138,32],[122,33],[139,34],[140,35],[141,36],[173,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,47],[153,48],[154,49],[156,50],[155,51],[157,52],[158,53],[159,54],[160,55],[161,56],[162,57],[163,58],[164,59],[165,60],[166,61],[167,62],[168,63],[169,64],[170,65],[171,66],[105,67],[112,68],[104,67],[119,69],[96,70],[95,71],[118,72],[113,73],[116,74],[98,75],[97,76],[93,77],[92,78],[115,79],[94,80],[99,81],[103,81],[121,82],[120,81],[107,83],[108,84],[110,85],[106,86],[109,87],[114,72],[101,88],[102,89],[111,90],[91,91],[117,92],[84,93],[83,102],[82,103],[86,5],[87,97]],"semanticDiagnosticsPerFile":[64,66,67,60,65,70,69,72,73,74,75,76,77,78,79,61,59,58,71,68,80,63,88,89,123,124,125,126,127,128,129,130,131,132,133,135,134,136,137,138,122,172,139,140,141,173,142,143,144,145,146,147,148,149,150,151,152,153,154,156,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,56,57,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,54,52,53,1,55,105,112,104,119,96,95,118,113,116,98,97,93,92,115,94,99,100,103,90,121,120,107,108,110,106,109,114,101,102,111,91,117,81,84,83,82,62,85,86,87],"latestChangedDtsFile":"./storage/sqldb/mod.d.ts"},"version":"5.3.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.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.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.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.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.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","../internal/runtime/napi/napi.d.cts","../internal/runtime/mod.ts","../app_meta.ts","../internal/reqtrack/mod.ts","../req_meta.ts","../mod.ts","../api/error.ts","../auth/mod.ts","../api/gateway.ts","../internal/api/node_http.ts","../api/mod.ts","../internal/utils/constraints.ts","../config/secrets.ts","../config/mod.ts","../internal/types/mod.ts","../cron/mod.ts","../internal/api/mod.ts","../internal/appinit/mod.ts","../internal/auth/mod.ts","../internal/codegen/api.ts","../internal/codegen/appinit.ts","../internal/codegen/auth.ts","../log/mod.ts","../pubsub/attributes.ts","../pubsub/topic.ts","../pubsub/subscription.ts","../pubsub/mod.ts","../service/mod.ts","../storage/sqldb/database.ts","../storage/sqldb/mod.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"],"fileInfos":[{"version":"f33e5332b24c3773e930e212cbb8b6867c8ba3ec4492064ea78e55a524d57450","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","26f2f787e82c4222710f3b676b4d83eb5ad0a72fa7b746f03449e7a026ce5073","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc",{"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":"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":"e0275cd0e42990dc3a16f0b7c8bca3efe87f1c8ad404f80c6db1c7c0b828c59f","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":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"acae90d417bee324b1372813b5a00829d31c7eb670d299cd7f8f9a648ac05688","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"62a4966981264d1f04c44eb0f4b5bdc3d81c1a54725608861e44755aa24ad6a5","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"86a34c7a13de9cabc43161348f663624b56871ed80986e41d214932ddd8d6719","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"0bc1304a3de136a8b774257149480537c626c50ff1eb68c9dcf2ce1936b10b0c",{"version":"e11fa6d10e4091c1e8c499253c80f2d162f493990c0f1a35db564a02affb7b56","signature":"cbdc3c62359f81de1fbfb1baf2f699990f36fe76dc3cf5e1defca9436cc09324"},{"version":"22c41cd969a3f3e8792047767157fd978e5bebf3d5edfe28263a60f094ea8960","signature":"f7a13afa5e66557c8b6fec4b7740e45c9ee0d0a3bdfc2419eeb21c9a214ab9b9"},{"version":"2f9d6c356517121fffa5c54a200fb8fd9b35a3a4339ec3a69ada6b90087c4479","signature":"0755afeffaa749b0a9d242ad328b06c1aa243dd7b10a5d38e13419150792c362"},{"version":"1fbbe94239a20b1708ec071a104ebac2e1e52ed9d8580ad559f7d2eb4d8e13f9","signature":"d5cac7165921c3ac515bb0540df349d64ae8d1e91c24264517dbebf10dbfb1b6"},{"version":"76a8bc704b721e967c752b55bebb16f3a2922cdb86e652c0c82759f5cb3771da","signature":"6167410fcb897c61d6300d81d28f4fee3a1fc8e6ebbcd5c7fe9512fc5f061807"},{"version":"be70248dea0cbc1e7fc1c66717c24e37abff484768644e16d7960dae4c75e1dc","signature":"b64bf0f9ef3aad50ae8f2fe7163ba38d8685291256aef6ac0cf3aeb3016d1911"},{"version":"a9cb80f47f8ce54e616d903da3861ed87b4cc2db54369f3229305923a8d01e9e","signature":"e8b08e8437d7f449a1020c78f523c80edca47d2a7bec765cf8adee01b1b9f4b9"},{"version":"13f690099f433bbd91d6e5af8df80005df0ac3e0c96dc632898ba11bdeef49ba","signature":"b462e4f1ebcae75c287fe499122527a25b1f04c5349f842158c005d758bde646"},{"version":"41049d2eec4af4756915619772d925b6521d7ca4054fd4841d08cfa52764474a","signature":"b44e1fa2517dcd005974748e4dc03c6be792f3566b794b9262e3da72062b0d74"},{"version":"570f690385d5c35fe836f260578ac294e288d1a4c99e43e45ab7144189243661","signature":"5c4d4a8ec6dc13644d188f52fd4917fec0b0170fc3933c338277663c84e8e30e"},{"version":"dac2ecb2e2edf2f279c46f49b05e7dab73fb427a72f662cb24d7e06556087db7","signature":"89c544a3aa54a88d90bb7db6e318542d661fc79035b98700d2b7fe5d87bf7edb"},{"version":"c2358758c15d37b0f88a8ecf8cf38deb1fa45995871d2ecda2219ce8e365d2e2","signature":"d6557e5b8c49c27f990d378acb3a64cbd6291d1c97984d9d14510df1038f5d5b"},"68fe5d7ce4b0073cb450767c70847f6bd7ef0e6b099b26effd7651410fcc6206",{"version":"00018aadf3bf8aac3b94d086c07d837b006af7389fab4f52bba73083bdd02c51","signature":"15b3437374aea37541f405e45622294bc2e2631b749920676ae90a8a38ee0bce"},{"version":"d236effd859fb8663d2802ac5b16a8675645585380448c35a2b9297011db0186","signature":"f2582ae9e2b63ad8a9615655f2c136e1652436f177885cbf874d82a8c74f1d29"},{"version":"3dbfd92d2c082c8419983906b2c8d633cb39efe682795bc4552476913b77c38d","signature":"98f7ebc4982e2f73bb0630e15dd144b9ccd41f2c278d55e1c492e3e553c3cb7a"},{"version":"d0b0af3f9e5e127da5f881e86d5d35b91319a7157cab1bef1c996b00a31ce127","signature":"2d7c6bc7a710b4b44da95cd1c207ad1f25e51981d9c144c4d130099981f4a9d9"},{"version":"65067ae33d9b54a877897cf19c04d11bbc642d23d5f9bddaacb6145b12b47252","signature":"484d6b91ba6f61784cbe40df3a8d4c894a8a6d9322147565c397c161d8b5e547"},{"version":"993082bcacf4eed21450be31609a75f3f0a21dfaa6f69d9a575497fcf8189f11","signature":"f8a9c01f2b38b4bcde753904bb6546678192af71e460f313086c71d132920a4c"},{"version":"0410aaefea35354c17aab7e1d8daea6b78b609a0ac1c2db4c0418bb005eeeda2","signature":"017c1fe5d55daa40564b838ab60cea5e3981e494c20233bb1acc67276d1fb325"},{"version":"e8bf991b3662116671e3430bf519baaace5f6fff3da3fd8d0172ad28a31bc004","signature":"0bb4ce4d165639c83303131ec16c347188ae475335e48a4f0f0c5b09e19bebc7"},{"version":"99a7a53582f2a44381cfbd285fd0457e18116e4185fe93a8679b31a7253ae445","signature":"702197a1307efc488d7c2eed452627d3bfb63810e69e4dd7cecac4e289049e45"},{"version":"7752070ba7feb1db9554d53d98a6a88c7a33c8887d39e9fdcb0717f11efc3f55","signature":"8d4915d71b6ade8d068774cf77299cc76e597a63fb4ba7e055edde453edbf1eb"},{"version":"d73f514e65026f8431e3765a977f3ce2bd100b52a865677f28644972e200cafc","signature":"e470537b83f7ea9796f4088c419e5b95023b979b191030d1aefa742f3fbb1672"},{"version":"cb3393ffd4b953e1cb0fb2864e10c9dad9fb5a6343934ab0d1d034d0a8c09b0e","signature":"0c85004226ac441a92d4362392ee26d2de029799313b538cd7fab4304deae5f0"},{"version":"884eb991175ce17f8419fd6d4c380e8f1f3d1da8877d3820cddeecc2bfbc8c91","signature":"8605b99a002c3a7bbdf60d90193f3a1c62a5bdba0a940c812250a815162fbbb9"},{"version":"bf3807c4266809b2b7d8d907aea7d28cdbd7ddb52815c368ca9576f3439cd671","signature":"616c7a387f1bce3f6ede7a48c15de166f18054b41ed1ed23a460a19c3ac699d7"},{"version":"3315a0cf6251c017a21faf8e6a2a1dd518737a030d5f85128cf81d09101c9348","signature":"e80b4322018280e0266267e592b2538e20dfc862dd22f6bb70b581f7d3a24388"},"21a0fc92666d4ffe9628ad155124bdcbafc6bef107dff77349604ec9fd8c178b","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","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":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"a1d2988ad9d2aef7b9915a22b5e52c165c83a878f2851c35621409046bbe3c05","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"674168aa3db414ea0a19b2a31d901b2d49705c7a495e43ffdc96928543010f8c","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","37dc027f781c75f0f546e329cfac7cf92a6b289f42458f47a9adc25e516b6839",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447"],"root":[[58,87]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"module":7,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"fileIdsList":[[59,61,65],[64,66,67,139],[59],[70],[59,69],[72],[59,61],[59,139,144,154],[59,61,66,67],[61],[74],[75],[76],[59,123],[58,170],[60,62],[88],[123],[124,129,157],[125,136,137,144,154,165],[125,126,136,144],[127,166],[128,129,137,145],[129,154,162],[130,132,136,144],[123,131],[132,133],[136],[134,136],[123,136],[136,137,138,154,165],[136,137,138,151,154,157],[121,124,170],[132,136,139,144,154,165],[136,137,139,140,144,154,162,165],[139,141,154,162,165],[88,89,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[136,142],[143,165,170],[132,136,144,154],[145],[146],[123,147],[148,164,170],[149],[150],[136,151,152],[151,153,166,168],[124,136,154,155,156,157],[124,154,156],[154,155],[157],[158],[123,154],[136,160,161],[160,161],[129,144,154,162],[163],[144,164],[124,139,150,165],[129,166],[154,167],[143,168],[169],[124,129,136,138,147,154,165,168,170],[154,171],[98,102,165],[98,154,165],[93],[95,98,162,165],[144,162],[173],[93,173],[95,98,144,165],[90,91,94,97,124,136,154,165],[90,96],[94,98,124,157,165,173],[124,173],[114,124,173],[92,93,173],[98],[92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120],[98,105,106],[96,98,106,107],[97],[90,93,98],[98,102,106,107],[102],[96,98,101,165],[90,95,96,98,102,105],[124,154],[93,98,114,124,170,173],[81,82,83],[59,61,72,82],[59,61,81],[59,61,69],[86],[65],[69],[59,66],[58],[72,82],[81]],"referencedMap":[[66,1],[68,2],[60,3],[71,4],[70,5],[73,6],[74,7],[67,8],[75,9],[76,10],[77,11],[78,12],[79,13],[61,14],[59,15],[80,7],[63,16],[88,17],[89,17],[123,18],[124,19],[125,20],[126,21],[127,22],[128,23],[129,24],[130,25],[131,26],[132,27],[133,27],[135,28],[134,29],[136,30],[137,31],[138,32],[122,33],[139,34],[140,35],[141,36],[173,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,47],[153,48],[154,49],[156,50],[155,51],[157,52],[158,53],[159,54],[160,55],[161,56],[162,57],[163,58],[164,59],[165,60],[166,61],[167,62],[168,63],[169,64],[170,65],[171,66],[105,67],[112,68],[104,67],[119,69],[96,70],[95,71],[118,72],[113,73],[116,74],[98,75],[97,76],[93,77],[92,78],[115,79],[94,80],[99,81],[103,81],[121,82],[120,81],[107,83],[108,84],[110,85],[106,86],[109,87],[114,72],[101,88],[102,89],[111,90],[91,91],[117,92],[84,93],[83,94],[82,95],[62,10],[86,96],[87,97]],"exportedModulesMap":[[66,98],[68,2],[71,4],[70,99],[73,6],[67,8],[75,100],[77,11],[78,12],[79,13],[61,3],[59,101],[80,3],[63,16],[88,17],[89,17],[123,18],[124,19],[125,20],[126,21],[127,22],[128,23],[129,24],[130,25],[131,26],[132,27],[133,27],[135,28],[134,29],[136,30],[137,31],[138,32],[122,33],[139,34],[140,35],[141,36],[173,37],[142,38],[143,39],[144,40],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,47],[153,48],[154,49],[156,50],[155,51],[157,52],[158,53],[159,54],[160,55],[161,56],[162,57],[163,58],[164,59],[165,60],[166,61],[167,62],[168,63],[169,64],[170,65],[171,66],[105,67],[112,68],[104,67],[119,69],[96,70],[95,71],[118,72],[113,73],[116,74],[98,75],[97,76],[93,77],[92,78],[115,79],[94,80],[99,81],[103,81],[121,82],[120,81],[107,83],[108,84],[110,85],[106,86],[109,87],[114,72],[101,88],[102,89],[111,90],[91,91],[117,92],[84,93],[83,102],[82,103],[86,5],[87,97]],"semanticDiagnosticsPerFile":[64,66,68,60,65,71,70,73,74,67,75,76,77,78,79,61,59,58,72,69,80,63,88,89,123,124,125,126,127,128,129,130,131,132,133,135,134,136,137,138,122,172,139,140,141,173,142,143,144,145,146,147,148,149,150,151,152,153,154,156,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,56,57,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,54,52,53,1,55,105,112,104,119,96,95,118,113,116,98,97,93,92,115,94,99,100,103,90,121,120,107,108,110,106,109,114,101,102,111,91,117,81,84,83,82,62,85,86,87],"latestChangedDtsFile":"./storage/sqldb/mod.d.ts"},"version":"5.3.3"}
|
package/internal/api/mod.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type {
|
|
2
2
|
IncomingHttpHeaders,
|
|
3
3
|
OutgoingHttpHeader,
|
|
4
|
-
OutgoingHttpHeaders
|
|
4
|
+
OutgoingHttpHeaders
|
|
5
5
|
} from "node:http";
|
|
6
6
|
import type { Socket } from "node:net";
|
|
7
7
|
import * as stream from "node:stream";
|
|
@@ -14,6 +14,9 @@ export class RawRequest extends stream.Readable {
|
|
|
14
14
|
trailersDistinct: NodeJS.Dict<string[]>;
|
|
15
15
|
rawTrailers: string[];
|
|
16
16
|
|
|
17
|
+
readonly connection: Socket | null; // deprecated
|
|
18
|
+
readonly socket: Socket | null;
|
|
19
|
+
|
|
17
20
|
private body: runtime.BodyReader;
|
|
18
21
|
private req: runtime.Request;
|
|
19
22
|
|
|
@@ -28,6 +31,10 @@ export class RawRequest extends stream.Readable {
|
|
|
28
31
|
|
|
29
32
|
this.body = body;
|
|
30
33
|
this.body.start(this.push.bind(this), this.destroy.bind(this));
|
|
34
|
+
|
|
35
|
+
// Set the socket to a dummy value for legacy compatibility with Express.js.
|
|
36
|
+
this.socket = { encrypted: false, destroy: () => { } } as any;
|
|
37
|
+
this.connection = this.socket; // legacy alias
|
|
31
38
|
}
|
|
32
39
|
|
|
33
40
|
get method(): string {
|
|
@@ -126,9 +133,11 @@ export class RawResponse extends stream.Writable {
|
|
|
126
133
|
this.headersSent = false;
|
|
127
134
|
this.headers = {};
|
|
128
135
|
|
|
129
|
-
this.connection = null;
|
|
130
|
-
this.socket = null;
|
|
131
136
|
this.w = w;
|
|
137
|
+
|
|
138
|
+
// Set the socket to a dummy value for legacy compatibility with Express.js.
|
|
139
|
+
this.socket = { encrypted: false, destroy: () => { } } as any;
|
|
140
|
+
this.connection = this.socket; // legacy alias
|
|
132
141
|
}
|
|
133
142
|
|
|
134
143
|
write(
|
package/internal/appinit/mod.ts
CHANGED
|
@@ -22,7 +22,83 @@ export async function run() {
|
|
|
22
22
|
return runtime.RT.runForever();
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
class IterableStream {
|
|
26
|
+
private stream: runtime.Stream;
|
|
27
|
+
|
|
28
|
+
constructor(stream: runtime.Stream) {
|
|
29
|
+
this.stream = stream;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
recv(): Promise<Record<string, any>> {
|
|
33
|
+
return this.stream.recv();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
async *[Symbol.asyncIterator]() {
|
|
37
|
+
while (true) {
|
|
38
|
+
try {
|
|
39
|
+
yield await this.stream.recv();
|
|
40
|
+
} catch (e) {
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
class IterableSocket {
|
|
48
|
+
private socket: runtime.Socket;
|
|
49
|
+
|
|
50
|
+
constructor(socket: runtime.Socket) {
|
|
51
|
+
this.socket = socket;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
send(msg: Record<string, any>): void {
|
|
55
|
+
return this.socket.send(msg);
|
|
56
|
+
}
|
|
57
|
+
recv(): Promise<Record<string, any>> {
|
|
58
|
+
return this.socket.recv();
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
close(): void {
|
|
62
|
+
this.socket.close();
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
async *[Symbol.asyncIterator]() {
|
|
66
|
+
while (true) {
|
|
67
|
+
try {
|
|
68
|
+
yield await this.socket.recv();
|
|
69
|
+
} catch (e) {
|
|
70
|
+
break;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
25
76
|
function transformHandler(h: Handler): Handler {
|
|
77
|
+
if (h.streaming) {
|
|
78
|
+
return {
|
|
79
|
+
...h,
|
|
80
|
+
// req is the upgrade request.
|
|
81
|
+
// stream is either a bidirectional stream, in stream or out stream.
|
|
82
|
+
handler: (req: runtime.Request, stream: unknown) => {
|
|
83
|
+
setCurrentRequest(req);
|
|
84
|
+
|
|
85
|
+
// make readable streams async iterators
|
|
86
|
+
if (stream instanceof runtime.Stream) {
|
|
87
|
+
stream = new IterableStream(stream);
|
|
88
|
+
}
|
|
89
|
+
if (stream instanceof runtime.Socket) {
|
|
90
|
+
stream = new IterableSocket(stream);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// handshake payload
|
|
94
|
+
const payload = req.payload();
|
|
95
|
+
return payload !== null
|
|
96
|
+
? h.handler(payload, stream)
|
|
97
|
+
: h.handler(stream);
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
|
|
26
102
|
if (h.raw) {
|
|
27
103
|
return {
|
|
28
104
|
...h,
|
|
@@ -35,7 +111,7 @@ function transformHandler(h: Handler): Handler {
|
|
|
35
111
|
const rawReq = new RawRequest(req, body);
|
|
36
112
|
const rawResp = new RawResponse(rawReq, resp);
|
|
37
113
|
return h.handler(rawReq, rawResp);
|
|
38
|
-
}
|
|
114
|
+
}
|
|
39
115
|
};
|
|
40
116
|
}
|
|
41
117
|
return {
|
|
@@ -44,6 +120,6 @@ function transformHandler(h: Handler): Handler {
|
|
|
44
120
|
setCurrentRequest(req);
|
|
45
121
|
const payload = req.payload();
|
|
46
122
|
return payload !== null ? h.handler(payload) : h.handler();
|
|
47
|
-
}
|
|
123
|
+
}
|
|
48
124
|
};
|
|
49
125
|
}
|