@modern-js/runtime-utils 2.65.3-alpha.0 → 2.65.3

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.
@@ -6,11 +6,19 @@ declare const storage: {
6
6
  monitors?: Monitors | undefined;
7
7
  headers?: IncomingHttpHeaders | undefined;
8
8
  request?: Request | undefined;
9
+ responseProxy?: {
10
+ headers: Record<string, string>;
11
+ status: number;
12
+ } | undefined;
9
13
  }, cb: () => O | Promise<O>) => Promise<O>;
10
14
  useContext: () => {
11
15
  monitors?: Monitors | undefined;
12
16
  headers?: IncomingHttpHeaders | undefined;
13
17
  request?: Request | undefined;
18
+ responseProxy?: {
19
+ headers: Record<string, string>;
20
+ status: number;
21
+ } | undefined;
14
22
  };
15
23
  };
16
24
  type Storage = typeof storage;
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "2.65.3-alpha.0",
18
+ "version": "2.65.3",
19
19
  "_comment": "Provide ESM and CJS exports, ESM is used by runtime package, for treeshaking",
20
20
  "exports": {
21
21
  "./router": {
@@ -91,7 +91,8 @@
91
91
  },
92
92
  "publishConfig": {
93
93
  "registry": "https://registry.npmjs.org/",
94
- "access": "public"
94
+ "access": "public",
95
+ "provenance": true
95
96
  },
96
97
  "typesVersions": {
97
98
  "*": {
@@ -145,8 +146,8 @@
145
146
  "lru-cache": "^10.4.3",
146
147
  "react-router-dom": "6.27.0",
147
148
  "serialize-javascript": "^6.0.0",
148
- "@modern-js/types": "2.65.2",
149
- "@modern-js/utils": "2.65.2"
149
+ "@modern-js/types": "2.65.3",
150
+ "@modern-js/utils": "2.65.3"
150
151
  },
151
152
  "peerDependencies": {
152
153
  "react": ">=17.0.0",
@@ -168,8 +169,8 @@
168
169
  "react": "^18.3.1",
169
170
  "react-dom": "^18.3.1",
170
171
  "typescript": "^5",
171
- "@scripts/build": "2.65.2",
172
- "@scripts/jest-config": "2.65.2"
172
+ "@scripts/build": "2.65.3",
173
+ "@scripts/jest-config": "2.65.3"
173
174
  },
174
175
  "sideEffects": false,
175
176
  "scripts": {