gruber 0.2.0 → 0.4.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 +29 -0
- package/README.md +156 -16
- package/core/configuration.d.ts +157 -0
- package/core/configuration.js +222 -96
- package/core/configuration.test.d.ts +1 -0
- package/core/configuration.test.js +242 -53
- 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 +30 -12
- package/core/http.js +42 -17
- package/core/http.test.d.ts +1 -0
- package/core/http.test.js +57 -35
- package/{types/core → core}/migrator.d.ts +0 -1
- package/core/migrator.test.d.ts +1 -0
- package/{types/core → core}/mod.d.ts +1 -1
- package/core/mod.js +1 -0
- package/{types/core → core}/postgres.d.ts +0 -1
- package/core/structures.d.ts +91 -0
- package/core/structures.js +260 -0
- package/core/structures.test.d.ts +1 -0
- package/core/structures.test.js +474 -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 +0 -57
- 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
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,57 +0,0 @@
|
|
|
1
|
-
/** @typedef {Record<string, import("superstruct").Struct<any, any>>} ObjectSchema */
|
|
2
|
-
export class Configuration {
|
|
3
|
-
static spec: symbol;
|
|
4
|
-
/** @param {ConfigurationOptions} options */
|
|
5
|
-
constructor(options: ConfigurationOptions);
|
|
6
|
-
options: ConfigurationOptions;
|
|
7
|
-
/**
|
|
8
|
-
* @template {ObjectSchema} T
|
|
9
|
-
* @param {T} spec
|
|
10
|
-
*/
|
|
11
|
-
object<T extends ObjectSchema>(spec: T): any;
|
|
12
|
-
/**
|
|
13
|
-
* @template {SpecOptions} Spec @param {Spec} spec
|
|
14
|
-
* @returns {import("superstruct").Struct<string, null>}
|
|
15
|
-
*/
|
|
16
|
-
string<Spec extends SpecOptions>(spec?: Spec): any;
|
|
17
|
-
/**
|
|
18
|
-
* @template {SpecOptions} Spec @param {Spec} spec
|
|
19
|
-
* @returns {import("superstruct").Struct<URL, null>}
|
|
20
|
-
*/
|
|
21
|
-
url<Spec_1 extends SpecOptions>(spec: Spec_1): any;
|
|
22
|
-
/** @param {SpecOptions} spec */
|
|
23
|
-
_getValue(spec: SpecOptions): string;
|
|
24
|
-
/**
|
|
25
|
-
* @template T
|
|
26
|
-
* @param {URL} url
|
|
27
|
-
* @param {import("superstruct").Struct<T>} spec
|
|
28
|
-
* @returns {Promise<T>}
|
|
29
|
-
*/
|
|
30
|
-
load<T_1>(url: URL, spec: any): Promise<T_1>;
|
|
31
|
-
/** @template T @param {T} config */
|
|
32
|
-
getUsage<T_2>(spec: any): string;
|
|
33
|
-
/**
|
|
34
|
-
* @template T @param {T} config
|
|
35
|
-
* @param {string} [prefix]
|
|
36
|
-
* @returns {{ config: any, fields: [string, string] }}
|
|
37
|
-
*/
|
|
38
|
-
describeSpecification<T_3>(spec: any, prefix?: string): {
|
|
39
|
-
config: any;
|
|
40
|
-
fields: [string, string];
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
export type SpecOptions = {
|
|
44
|
-
variable?: string;
|
|
45
|
-
flag?: string;
|
|
46
|
-
fallback: string;
|
|
47
|
-
};
|
|
48
|
-
export type ConfigurationOptions = {
|
|
49
|
-
superstruct: typeof import("superstruct");
|
|
50
|
-
readTextFile: (url: URL) => Promise<string | null>;
|
|
51
|
-
getEnvironmentVariable: (key: string) => (string | undefined);
|
|
52
|
-
getCommandArgument: (key: string) => (string | undefined);
|
|
53
|
-
stringify: (value: any) => (string | Promise<string>);
|
|
54
|
-
parse: (value: string) => (any);
|
|
55
|
-
};
|
|
56
|
-
export type ObjectSchema = Record<string, import("superstruct").Struct<any, any>>;
|
|
57
|
-
//# sourceMappingURL=configuration.d.ts.map
|
|
@@ -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"}
|