@aeriajs/server 0.0.186 → 0.0.188

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.
Files changed (2) hide show
  1. package/dist/init.d.ts +1 -1
  2. package/package.json +11 -11
package/dist/init.d.ts CHANGED
@@ -115,7 +115,7 @@ export declare const getToken: (request: GenericRequest, context: RouteContext)
115
115
  };
116
116
  };
117
117
  };
118
- }>, "_id" | "roles">>;
118
+ }, {}>, "_id" | "roles">>;
119
119
  } | {
120
120
  readonly _tag: "Error";
121
121
  readonly error: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/server",
3
- "version": "0.0.186",
3
+ "version": "0.0.188",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -33,20 +33,20 @@
33
33
  "mongodb": "^6.5.0"
34
34
  },
35
35
  "peerDependencies": {
36
- "@aeriajs/core": "^0.0.184",
37
- "@aeriajs/builtins": "^0.0.184",
38
- "@aeriajs/common": "^0.0.112",
39
- "@aeriajs/entrypoint": "^0.0.115",
40
- "@aeriajs/http": "^0.0.126",
41
- "@aeriajs/node-http": "^0.0.126",
42
- "@aeriajs/server": "^0.0.186",
43
- "@aeriajs/types": "^0.0.95",
36
+ "@aeriajs/core": "^0.0.186",
37
+ "@aeriajs/builtins": "^0.0.186",
38
+ "@aeriajs/common": "^0.0.114",
39
+ "@aeriajs/entrypoint": "^0.0.117",
40
+ "@aeriajs/http": "^0.0.128",
41
+ "@aeriajs/node-http": "^0.0.128",
42
+ "@aeriajs/server": "^0.0.188",
43
+ "@aeriajs/types": "^0.0.97",
44
44
  "mongodb": "^6.5.0"
45
45
  },
46
46
  "scripts": {
47
47
  "test": "echo skipping",
48
- "lint": "eslint src",
49
- "lint:fix": "eslint src --fix",
48
+ "lint": "eslint .",
49
+ "lint:fix": "eslint . --fix",
50
50
  "build": "pnpm build:cjs && pnpm build:esm",
51
51
  "build:cjs": "tsc",
52
52
  "build:esm": "esbuild './src/**/*.ts' --outdir=dist --out-extension:.js=.mjs && pnpm build:esm-transform",