@midwayjs/koa 4.0.0-beta.15 → 4.0.0-beta.17

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/index.d.ts +5 -0
  2. package/package.json +7 -7
package/index.d.ts CHANGED
@@ -15,6 +15,11 @@ declare module '@midwayjs/core/dist/interface' {
15
15
  keys?: string | string[];
16
16
  koa?: IMidwayKoaConfigurationOptions;
17
17
  cookies?: CookieSetOptions;
18
+ cookiesExtra?: {
19
+ defaultGetOptions?: {
20
+ sign?: boolean;
21
+ };
22
+ };
18
23
  /**
19
24
  * onerror middleware options
20
25
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@midwayjs/koa",
3
- "version": "4.0.0-beta.15",
3
+ "version": "4.0.0-beta.17",
4
4
  "description": "Midway Web Framework for KOA",
5
5
  "main": "dist/index.js",
6
6
  "typings": "index.d.ts",
@@ -24,8 +24,8 @@
24
24
  ],
25
25
  "license": "MIT",
26
26
  "devDependencies": {
27
- "@midwayjs/core": "^4.0.0-beta.15",
28
- "@midwayjs/mock": "^4.0.0-beta.15",
27
+ "@midwayjs/core": "^4.0.0-beta.17",
28
+ "@midwayjs/mock": "^4.0.0-beta.17",
29
29
  "@types/koa-router": "7.4.9",
30
30
  "axios": "1.12.0",
31
31
  "fs-extra": "11.3.3"
@@ -33,12 +33,12 @@
33
33
  "dependencies": {
34
34
  "@koa/router": "^12.0.0",
35
35
  "@midwayjs/cookies": "^1.3.0",
36
- "@midwayjs/session": "^4.0.0-beta.15",
36
+ "@midwayjs/session": "^4.0.0-beta.17",
37
37
  "@types/koa": "3.0.0",
38
- "@types/qs": "6.14.0",
38
+ "@types/qs": "6.15.0",
39
39
  "koa": "3.0.3",
40
40
  "koa-bodyparser": "4.4.1",
41
- "qs": "6.14.2"
41
+ "qs": "6.15.0"
42
42
  },
43
43
  "author": "Harry Chen <czy88840616@gmail.com>",
44
44
  "repository": {
@@ -48,5 +48,5 @@
48
48
  "engines": {
49
49
  "node": ">=20"
50
50
  },
51
- "gitHead": "e9b3c1672326bc22fe8658ccbe8afd58b9d75d53"
51
+ "gitHead": "6a20a4fc8c3ddb71dd89f55cf600c34fd817c628"
52
52
  }