gruber 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +96 -10
- package/{types/core → core}/configuration.d.ts +15 -13
- package/core/configuration.js +35 -37
- package/core/configuration.test.d.ts +1 -0
- package/core/configuration.test.js +32 -42
- package/{types/core → core}/fetch-router.d.ts +0 -1
- package/core/fetch-router.test.d.ts +1 -0
- package/{types/core → core}/http.d.ts +0 -1
- package/core/http.test.d.ts +1 -0
- package/{types/core → core}/migrator.d.ts +0 -1
- package/core/migrator.test.d.ts +1 -0
- package/{types/core → core}/mod.d.ts +0 -1
- package/{types/core → core}/postgres.d.ts +0 -1
- package/core/structures.d.ts +78 -0
- package/core/structures.js +202 -0
- package/core/structures.test.d.ts +1 -0
- package/core/structures.test.js +349 -0
- package/core/test-deps.d.ts +1 -0
- package/core/test-deps.js +1 -1
- package/{types/core → core}/types.d.ts +0 -1
- package/{types/core → core}/utilities.d.ts +0 -1
- package/core/utilities.test.d.ts +1 -0
- package/package.json +4 -5
- package/{types/source → source}/configuration.d.ts +4 -9
- package/source/configuration.js +0 -2
- package/source/core.d.ts +1 -0
- package/{types/source → source}/express-router.d.ts +2 -3
- package/source/express-router.js +1 -1
- package/{types/source → source}/koa-router.d.ts +0 -1
- package/{types/source → source}/mod.d.ts +0 -3
- package/source/mod.js +2 -2
- package/{types/source → source}/node-router.d.ts +8 -8
- package/source/node-router.js +1 -1
- package/source/package-lock.json +3 -9
- package/source/package.json +0 -2
- package/source/polyfill.d.ts +1 -0
- package/{types/source → source}/postgres.d.ts +0 -1
- package/tsconfig.json +0 -2
- package/types/core/configuration.d.ts.map +0 -1
- package/types/core/configuration.test.d.ts +0 -2
- package/types/core/configuration.test.d.ts.map +0 -1
- package/types/core/fetch-router.d.ts.map +0 -1
- package/types/core/fetch-router.test.d.ts +0 -2
- package/types/core/fetch-router.test.d.ts.map +0 -1
- package/types/core/http.d.ts.map +0 -1
- package/types/core/http.test.d.ts +0 -2
- package/types/core/http.test.d.ts.map +0 -1
- package/types/core/migrator.d.ts.map +0 -1
- package/types/core/migrator.test.d.ts +0 -2
- package/types/core/migrator.test.d.ts.map +0 -1
- package/types/core/mod.d.ts.map +0 -1
- package/types/core/postgres.d.ts.map +0 -1
- package/types/core/test-deps.d.ts +0 -2
- package/types/core/test-deps.d.ts.map +0 -1
- package/types/core/types.d.ts.map +0 -1
- package/types/core/utilities.d.ts.map +0 -1
- package/types/core/utilities.test.d.ts +0 -2
- package/types/core/utilities.test.d.ts.map +0 -1
- package/types/source/configuration.d.ts.map +0 -1
- package/types/source/core.d.ts +0 -2
- package/types/source/core.d.ts.map +0 -1
- package/types/source/express-router.d.ts.map +0 -1
- package/types/source/koa-router.d.ts.map +0 -1
- package/types/source/mod.d.ts.map +0 -1
- package/types/source/node-router.d.ts.map +0 -1
- package/types/source/polyfill.d.ts +0 -2
- package/types/source/polyfill.d.ts.map +0 -1
- package/types/source/postgres.d.ts.map +0 -1
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
@typedef {object} NodeConfigurationOptions
|
|
3
|
-
@property {import("superstruct")} superstruct
|
|
4
3
|
*/
|
|
5
4
|
/** @param {NodeConfigurationOptions} options */
|
|
6
5
|
export function getNodeConfigOptions(options: NodeConfigurationOptions): {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
getCommandArgument(key: any): any;
|
|
6
|
+
readTextFile(url: any): Promise<Buffer>;
|
|
7
|
+
getEnvironmentVariable(key: any): string;
|
|
8
|
+
getCommandArgument(key: any): string | boolean;
|
|
11
9
|
stringify(config: any): string;
|
|
12
10
|
parse(data: any): any;
|
|
13
11
|
};
|
|
@@ -17,8 +15,5 @@ export function getNodeConfigOptions(options: NodeConfigurationOptions): {
|
|
|
17
15
|
*/
|
|
18
16
|
export function getNodeConfiguration(options: NodeConfigurationOptions): Configuration;
|
|
19
17
|
export { Configuration };
|
|
20
|
-
export type NodeConfigurationOptions =
|
|
21
|
-
superstruct: typeof import("superstruct");
|
|
22
|
-
};
|
|
18
|
+
export type NodeConfigurationOptions = object;
|
|
23
19
|
import { Configuration } from "../core/configuration.js";
|
|
24
|
-
//# sourceMappingURL=configuration.d.ts.map
|
package/source/configuration.js
CHANGED
|
@@ -8,7 +8,6 @@ export { Configuration };
|
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
@typedef {object} NodeConfigurationOptions
|
|
11
|
-
@property {import("superstruct")} superstruct
|
|
12
11
|
*/
|
|
13
12
|
|
|
14
13
|
/** @param {NodeConfigurationOptions} options */
|
|
@@ -18,7 +17,6 @@ export function getNodeConfigOptions(options) {
|
|
|
18
17
|
strict: false,
|
|
19
18
|
});
|
|
20
19
|
return {
|
|
21
|
-
superstruct: options.superstruct,
|
|
22
20
|
async readTextFile(url) {
|
|
23
21
|
try {
|
|
24
22
|
return await fs.promises.readFile(url);
|
package/source/core.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../core/mod.js";
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
```
|
|
12
12
|
*/
|
|
13
13
|
export class ExpressRouter {
|
|
14
|
-
/** @param {NodeRouterOptions} options */
|
|
15
|
-
constructor(options?: NodeRouterOptions);
|
|
14
|
+
/** @param {import("./node-router.js").NodeRouterOptions} options */
|
|
15
|
+
constructor(options?: import("./node-router.js").NodeRouterOptions);
|
|
16
16
|
router: FetchRouter;
|
|
17
17
|
/** @returns {import("express").RequestHandler} */
|
|
18
18
|
middleware(): any;
|
|
@@ -25,4 +25,3 @@ export class ExpressRouter {
|
|
|
25
25
|
respond(res: any, response: Response): void;
|
|
26
26
|
}
|
|
27
27
|
import { FetchRouter } from "../core/fetch-router.js";
|
|
28
|
-
//# sourceMappingURL=express-router.d.ts.map
|
package/source/express-router.js
CHANGED
|
@@ -16,7 +16,7 @@ import { getFetchRequest } from "./node-router.js";
|
|
|
16
16
|
```
|
|
17
17
|
*/
|
|
18
18
|
export class ExpressRouter {
|
|
19
|
-
/** @param {NodeRouterOptions} options */
|
|
19
|
+
/** @param {import("./node-router.js").NodeRouterOptions} options */
|
|
20
20
|
constructor(options = {}) {
|
|
21
21
|
this.router = new FetchRouter(options.routes ?? []);
|
|
22
22
|
}
|
package/source/mod.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from "./configuration.js";
|
|
2
2
|
export * from "./core.js";
|
|
3
|
-
export * from "./express-router.js";
|
|
4
|
-
export * from "./koa-router.js";
|
|
3
|
+
// export * from "./express-router.js";
|
|
4
|
+
// export * from "./koa-router.js";
|
|
5
5
|
export * from "./node-router.js";
|
|
6
6
|
export * from "./postgres.js";
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
/// <reference types="node" resolution-mode="require"/>
|
|
1
2
|
/** @param {import("node:http").IncomingMessage} req */
|
|
2
|
-
export function getFetchRequest(req:
|
|
3
|
+
export function getFetchRequest(req: import("node:http").IncomingMessage): Request;
|
|
3
4
|
/** @param {import("node:http").IncomingHttpHeaders} input */
|
|
4
|
-
export function getFetchHeaders(input:
|
|
5
|
+
export function getFetchHeaders(input: import("node:http").IncomingHttpHeaders): Headers;
|
|
5
6
|
/** @param {import("node:http").IncomingMessage} req */
|
|
6
|
-
export function getIncomingMessageBody(req:
|
|
7
|
-
/** @typedef {import("
|
|
7
|
+
export function getIncomingMessageBody(req: import("node:http").IncomingMessage): import("stream/web").ReadableStream<any>;
|
|
8
|
+
/** @typedef {import("../core/mod.js").RouteDefinition} RouteDefinition */
|
|
8
9
|
/**
|
|
9
10
|
@typedef {object} NodeRouterOptions
|
|
10
11
|
@property {RouteDefinition []} routes
|
|
@@ -32,11 +33,10 @@ export class NodeRouter {
|
|
|
32
33
|
@param {import("node:http").ServerResponse} res
|
|
33
34
|
@param {Response} response
|
|
34
35
|
*/
|
|
35
|
-
respond(res:
|
|
36
|
+
respond(res: import("node:http").ServerResponse, response: Response): void;
|
|
36
37
|
}
|
|
37
|
-
export type RouteDefinition =
|
|
38
|
+
export type RouteDefinition = import("../core/mod.js").RouteDefinition;
|
|
38
39
|
export type NodeRouterOptions = {
|
|
39
|
-
routes: RouteDefinition[];
|
|
40
|
+
routes: import("../core/types.js").RouteDefinition<any>[];
|
|
40
41
|
};
|
|
41
42
|
import { FetchRouter } from "../core/fetch-router.js";
|
|
42
|
-
//# sourceMappingURL=node-router.d.ts.map
|
package/source/node-router.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Readable } from "node:stream";
|
|
2
2
|
import { FetchRouter } from "../core/fetch-router.js";
|
|
3
3
|
|
|
4
|
-
/** @typedef {import("
|
|
4
|
+
/** @typedef {import("../core/mod.js").RouteDefinition} RouteDefinition */
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
@typedef {object} NodeRouterOptions
|
package/source/package-lock.json
CHANGED
|
@@ -6,13 +6,15 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "gruber",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"superstruct": "^1.0.3",
|
|
10
9
|
"urlpattern-polyfill": "^9.0.0"
|
|
11
10
|
},
|
|
12
11
|
"devDependencies": {
|
|
13
12
|
"@types/express": "^4.17.21",
|
|
14
13
|
"@types/koa": "^2.14.0",
|
|
15
14
|
"@types/node": "^20.10.8"
|
|
15
|
+
},
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=20"
|
|
16
18
|
}
|
|
17
19
|
},
|
|
18
20
|
"node_modules/@types/accepts": {
|
|
@@ -176,14 +178,6 @@
|
|
|
176
178
|
"@types/node": "*"
|
|
177
179
|
}
|
|
178
180
|
},
|
|
179
|
-
"node_modules/superstruct": {
|
|
180
|
-
"version": "1.0.3",
|
|
181
|
-
"resolved": "https://registry.npmjs.org/superstruct/-/superstruct-1.0.3.tgz",
|
|
182
|
-
"integrity": "sha512-8iTn3oSS8nRGn+C2pgXSKPI3jmpm6FExNazNpjvqS6ZUJQCej3PUXEKM8NjHBOs54ExM+LPW/FBRhymrdcCiSg==",
|
|
183
|
-
"engines": {
|
|
184
|
-
"node": ">=14.0.0"
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
181
|
"node_modules/undici-types": {
|
|
188
182
|
"version": "5.26.5",
|
|
189
183
|
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
|
package/source/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gruber",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"license": "MIT",
|
|
5
4
|
"repository": "robb-j/gruber",
|
|
6
5
|
"author": {
|
|
7
6
|
"name": "Rob Anderson",
|
|
@@ -11,7 +10,6 @@
|
|
|
11
10
|
"node": ">=20"
|
|
12
11
|
},
|
|
13
12
|
"dependencies": {
|
|
14
|
-
"superstruct": "^1.0.3",
|
|
15
13
|
"urlpattern-polyfill": "^9.0.0"
|
|
16
14
|
},
|
|
17
15
|
"devDependencies": {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -29,4 +29,3 @@ export type MigrationOptions<T> = import("../core/migrator.js").MigrationOptions
|
|
|
29
29
|
import { Migrator } from "../core/migrator.js";
|
|
30
30
|
import { defineMigration } from "../core/migrator.js";
|
|
31
31
|
export { Migrator, defineMigration };
|
|
32
|
-
//# sourceMappingURL=postgres.d.ts.map
|
package/tsconfig.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configuration.d.ts","sourceRoot":"","sources":["../../core/configuration.js"],"names":[],"mappings":"AA4BA,qFAAqF;AAErF;IACC,oBAA2C;IAI3C,4CAA4C;IAC5C,qBADY,oBAAoB,EAM/B;IARD,8BAA4C;IAU5C;;;OAGG;IACH,6CAOC;IAED;;;OAGG;IACH,mDAUC;IAED;;;OAGG;IACH,mDAcC;IAED,gCAAgC;IAChC,gBADY,WAAW,UAWtB;IAED;;;;;OAKG;IACH,eAJW,GAAG,2BAkBb;IAED,oCAAoC;IACpC,iCAkBC;IAED;;;;OAIG;IACH,+CAHW,MAAM,GACJ;QAAE,MAAM,EAAE,GAAG,CAAC;QAAC,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;KAAE,CAkCrD;CACD;;eAtLa,MAAM;WACN,MAAM;cACN,MAAM;;;;wBAMA,GAAG,KAAK,QAAQ,MAAM,GAAG,IAAI,CAAC;kCAC9B,MAAM,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC;8BAC/B,MAAM,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC;uBAC7B,GAAG,KAAK,CAAC,MAAM,GAAG,QAAQ,MAAM,CAAC,CAAC;mBAClC,MAAM,KAAK,CAAC,GAAG,CAAC;;2BAYxB,OAAO,MAAM,EAAE,OAAO,aAAa,EAAE,MAAM,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configuration.test.d.ts","sourceRoot":"","sources":["../../core/configuration.test.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-router.d.ts","sourceRoot":"","sources":["../../core/fetch-router.js"],"names":[],"mappings":"AAEA,2EAA2E;AAE3E,iFAAiF;AAEjF;;;;;GAKG;AAEH;;;;GAIG;AAEH,0GAA0G;AAC1G;IAIC,4CAA4C;IAC5C,sBADY,kBAAkB,EAI7B;IAPD,8BAA8B,CAAC,kDAAO;IACtC,uCAAuC,CAAC,cAA7B,iBAAiB,GAAG,IAAI,CAAkB;IAQrD;;;;;OAKG;IACH,4BAHW,OAAO,GACL,SAAS,YAAY,CAAC,CAalC;IAED;;;;OAIG;IACH,wBAHW,OAAO,WACP,SAAS,YAAY,CAAC,qBAehC;IAED;;;OAGG;IACH,qBAHW,OAAO,SACP,OAAO,YAUjB;IAED,+BAA+B;IAC/B,qBADY,OAAO,qBAUlB;CACD;8BA5Fa,OAAO,YAAY,EAAE,eAAe,CAAC,GAAG,CAAC;wCAEjC,OAAO,WAAW,OAAO,KAAK,OAAO;;;SAK7C,GAAG;YACH,gBAAgB;;;aAKhB,2CAAiB;mBACjB,iBAAiB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fetch-router.test.d.ts","sourceRoot":"","sources":["../../core/fetch-router.test.js"],"names":[],"mappings":""}
|
package/types/core/http.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"http.d.ts","sourceRoot":"","sources":["../../core/http.js"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,8DAA8D;AAE9D;;8EAE8E;AAE9E;;;GAGG;AAEH;;;GAGG;AAEH;;;GAGG;AAEH;;;GAGG;AAEH;;;;GAIG;AACH,mIAMC;AAID;IACC,mEAAmE;IACnE,+BAEC;IAED,mEAAmE;IACnE,iCAEC;IAED,mEAAmE;IACnE,6BAEC;IAED,mEAAmE;IACnE,wCAEC;IAED,mEAAmE;IACnE,mCAEC;IAKD;;;OAGG;IACH,qBAHW,MAAM,eACN,MAAM,EAQhB;IAbD,qBAAqB,CAAC,QAAX,MAAM,CAAY;IAC7B,oBAAoB,CAAC,YAAV,MAAM,CAAe;IAchC,uBAKC;CACD;yBAzFa,OAAO,YAAY,EAAE,UAAU;0BAC/B,OAAO,YAAY,EAAE,WAAW;mDAIjC,OAAO,YAAY,EAAE,kBAAkB,CAAC,CAAC,CAAC;8BAI1C,OAAO,YAAY,EAAE,YAAY,CAAC,CAAC,CAAC;8BAKpC,OAAO,YAAY,EAAE,YAAY,CAAC,CAAC,CAAC;6CAKpC,OAAO,YAAY,EAAE,YAAY,CAAC,CAAC,CAAC;uCAKpC,OAAO,YAAY,EAAE,eAAe,CAAC,CAAC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"http.test.d.ts","sourceRoot":"","sources":["../../core/http.test.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"migrator.d.ts","sourceRoot":"","sources":["../../core/migrator.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH;;;;;;GAMG;AAEH;;;GAGG;AAEH;;;GAGG;AACH,sFAKC;AAED;;;;;;GAMG;AAEH,kBAAkB;AAClB;IACC,0CAA0C;IAC1C,qBADY,gBAAgB,CAAC,CAAC,EAG7B;IADA,4BAAsB;IAGvB,oBAIC;IAED,sBAIC;IAED,wEAQC;CACD;;gBAhEqB,CAAC,KAAK,IAAI,GAAG,QAAQ,IAAI,CAAC;kBAC1B,CAAC,KAAK,IAAI,GAAG,QAAQ,IAAI,CAAC;;;UAMlC,MAAM;gBACE,CAAC,KAAK,IAAI,GAAG,QAAQ,IAAI,CAAC;kBAC1B,CAAC,KAAK,IAAI,GAAG,QAAQ,IAAI,CAAC;;;UAKlC,MAAM;;;oBAiBN,MAAM,QAAQ,oBAAoB,CAAC,CAAC,EAAE,CAAC;gBACvC,MAAM,QAAQ,eAAe,EAAE,CAAC;mBAC1B,oBAAoB,CAAC,CAAC,aAAa,IAAI,GAAC,MAAM,KAAK,IAAI,GAAG,QAAQ,IAAI,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"migrator.test.d.ts","sourceRoot":"","sources":["../../core/migrator.test.js"],"names":[],"mappings":""}
|
package/types/core/mod.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../core/mod.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"postgres.d.ts","sourceRoot":"","sources":["../../core/postgres.js"],"names":[],"mappings":"AAEA,4CAA4C;AAC5C,yEAAyE;AACzE,yEAAyE;AACzE,iFAAiF;AAEjF;;;MAGG;AACH,0CAHS,GAAG,GACD,QAAQ,eAAe,EAAE,CAAC,CAYpC;AAED;;;;GAIG;AACH,8BAJW,mBAAmB,aACnB,IAAI,GAAG,MAAM,OACb,GAAG,iBAQb;AAED;;;GAGG;AACH,gCAHW,mBAAmB,OACnB,GAAG,iBAQb;AAED;;;GAGG;AACH,kCAHW,mBAAmB,OACnB,GAAG,iBAQb;AAkBD;;;GAGG;AAEH;;;GAGG;AACH,oDAHW,uBAAuB,OASjC;AA/BD,+EAcG;kBAxEW,OAAO,UAAU,EAAE,GAAG;;8BAEtB,OAAO,eAAe,EAAE,eAAe;kCACvC,OAAO,eAAe,EAAE,mBAAmB;;SAyE3C,GAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"test-deps.d.ts","sourceRoot":"","sources":["../../core/test-deps.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../core/types.ts"],"names":[],"mappings":";AAEA,MAAM,MAAM,UAAU,GACnB,KAAK,GACL,MAAM,GACN,MAAM,GACN,KAAK,GACL,OAAO,GACP,QAAQ,GACR,SAAS,CAAC;AAEb,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,QAAQ,GAAG,SAAS,CAAC,GAAG,QAAQ,GAAG,SAAS,CAAC;AAE/E,MAAM,MAAM,kBAAkB,CAAC,CAAC,SAAS,MAAM,IAC9C,CAAC,SAAS,GAAG,MAAM,IAAI,MAAM,KAAK,IAAI,MAAM,IAAI,EAAE,GAC/C,KAAK,GAAG,kBAAkB,CAAC,IAAI,CAAC,GAChC,CAAC,SAAS,GAAG,MAAM,IAAI,MAAM,KAAK,EAAE,GACnC,KAAK,GACL,KAAK,CAAC;AAEX,MAAM,WAAW,YAAY,CAAC,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,CAAC,CAAC;IACV,GAAG,EAAE,GAAG,CAAC;CACT;AAED,MAAM,WAAW,YAAY,CAAC,CAAC;IAC9B,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC;CACxC;AAED,MAAM,WAAW,YAAY,CAAC,CAAC,SAAS,MAAM;IAC7C,MAAM,EAAE,UAAU,CAAC;IACnB,QAAQ,EAAE,CAAC,CAAC;IACZ,OAAO,EAAE,YAAY,CAAC,MAAM,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC;CAC7D;AAED,MAAM,WAAW,eAAe,CAAC,CAAC;IACjC,MAAM,EAAE,UAAU,CAAC;IACnB,OAAO,EAAE,UAAU,CAAC;IACpB,OAAO,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;CACzB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utilities.d.ts","sourceRoot":"","sources":["../../core/utilities.js"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,kFAFW,MAAM,UAmChB;AAED;;;;GAIG;AACH,uCAJoB,GAAG,iBAWtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utilities.test.d.ts","sourceRoot":"","sources":["../../core/utilities.test.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"configuration.d.ts","sourceRoot":"","sources":["../../source/configuration.js"],"names":[],"mappings":"AAQA;;;EAGE;AAEF,gDAAgD;AAChD,8CADY,wBAAwB;;;;;;;EA4BnC;AAED;;;GAGG;AACH,8CAFW,wBAAwB,iBAIlC;;;;;8BA7C6B,0BAA0B"}
|
package/types/source/core.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"core.d.ts","sourceRoot":"","sources":["../../source/core.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"express-router.d.ts","sourceRoot":"","sources":["../../source/express-router.js"],"names":[],"mappings":"AAKA;;;;;;;;;;;EAWE;AACF;IACC,yCAAyC;IACzC,yCAEC;IADA,oBAAmD;IAGpD,kDAAkD;IAClD,kBAOC;IAED,+BAA+B;IAC/B,qBADY,OAAO,qBAGlB;IAED;;;OAGG;IACH,4BAFS,QAAQ,QAahB;CACD;4BApD2B,yBAAyB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"koa-router.d.ts","sourceRoot":"","sources":["../../source/koa-router.js"],"names":[],"mappings":"AAKA,+CAA+C;AAC/C,gFAAgF;AAEhF;;;;;;;;;;;;EAYE;AACF;IACC,yCAAyC;IACzC,sBADY,iBAAiB,EAG5B;IADA,oBAAmD;IAGpD,0CAA0C;IAC1C,kBAOC;IAED,+BAA+B;IAC/B,qBADY,OAAO,qBAGlB;IAED;;;MAGE;IACF,4BAFS,QAAQ,QAchB;CACD;;gCArDa,OAAO,kBAAkB,EAAE,iBAAiB;4BAJ9B,yBAAyB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../source/mod.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"node-router.d.ts","sourceRoot":"","sources":["../../source/node-router.js"],"names":[],"mappings":"AAiEA,uDAAuD;AACvD,mDAOC;AAED,6DAA6D;AAC7D,qDAOC;AAED,uDAAuD;AACvD,sDAGC;AAtFD,6EAA6E;AAE7E;;;MAGG;AAEH;;;;;;;;;;EAUE;AACF;IACC,yCAAyC;IACzC,sBADY,iBAAiB,EAM5B;IAJA,oBAGE;IAGH,+BAA+B;IAC/B,qBADY,OAAO,qBAGlB;IAED,uDAMC;IAED,6CAEC;IAED;;;MAGE;IACF,4BAFS,QAAQ,QAahB;CACD;;;YAxDW,eAAe,EAAG;;4BANF,yBAAyB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"polyfill.d.ts","sourceRoot":"","sources":["../../source/polyfill.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"postgres.d.ts","sourceRoot":"","sources":["../../source/postgres.js"],"names":[],"mappings":"AAyBA;;;GAGG;AACH,iDAFW,iBAAiB,GAAG,CAAC,+EAI/B;AAED;;;;GAIG;AAEH;;;GAGG;AACH,wDAHW,2BAA2B,OAuCrC;AAED;;;;GAIG;AACH,iDAFW,2BAA2B,iBAOrC;;SAxDa,GAAG;eACH,GAAG;;kBAzBH,OAAO,UAAU,EAAE,GAAG;iCAIvB,OAAO,qBAAqB,EAAE,eAAe,CAAC,CAAC,CAAC;kCAKhD,OAAO,qBAAqB,EAAE,gBAAgB,CAAC,CAAC,CAAC;yBAjBpB,qBAAqB;gCAArB,qBAAqB"}
|