@opra/core 0.31.12 → 0.31.13
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/cjs/index.js +8 -2
- package/esm/index.js +8 -2
- package/package.json +2 -2
- package/types/index.d.ts +8 -2
package/cjs/index.js
CHANGED
|
@@ -8,14 +8,20 @@ require("./augmentation/collection.augmentation.js");
|
|
|
8
8
|
require("./augmentation/container.augmentation.js");
|
|
9
9
|
require("./augmentation/singleton.augmentation.js");
|
|
10
10
|
require("./augmentation/storage.augmentation.js");
|
|
11
|
-
tslib_1.__exportStar(require("./types.js"), exports);
|
|
12
11
|
tslib_1.__exportStar(require("./execution-context.js"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./
|
|
12
|
+
tslib_1.__exportStar(require("./execution-context.host.js"), exports);
|
|
14
13
|
tslib_1.__exportStar(require("./platform-adapter.js"), exports);
|
|
14
|
+
tslib_1.__exportStar(require("./platform-adapter.host.js"), exports);
|
|
15
15
|
tslib_1.__exportStar(require("./request.js"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./request.host.js"), exports);
|
|
17
|
+
tslib_1.__exportStar(require("./request-context.js"), exports);
|
|
16
18
|
tslib_1.__exportStar(require("./response.js"), exports);
|
|
19
|
+
tslib_1.__exportStar(require("./response.host.js"), exports);
|
|
20
|
+
tslib_1.__exportStar(require("./types.js"), exports);
|
|
17
21
|
tslib_1.__exportStar(require("./http/adapters/express-adapter.js"), exports);
|
|
22
|
+
tslib_1.__exportStar(require("./http/adapters/express-adapter.host.js"), exports);
|
|
18
23
|
tslib_1.__exportStar(require("./http/adapters/node-http-adapter.js"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./http/adapters/node-http-adapter.host.js"), exports);
|
|
19
25
|
tslib_1.__exportStar(require("./http/impl/http-incoming-message.host.js"), exports);
|
|
20
26
|
tslib_1.__exportStar(require("./http/impl/http-outgoing-message.host.js"), exports);
|
|
21
27
|
tslib_1.__exportStar(require("./http/http-server-request.js"), exports);
|
package/esm/index.js
CHANGED
|
@@ -5,14 +5,20 @@ import './augmentation/collection.augmentation.js';
|
|
|
5
5
|
import './augmentation/container.augmentation.js';
|
|
6
6
|
import './augmentation/singleton.augmentation.js';
|
|
7
7
|
import './augmentation/storage.augmentation.js';
|
|
8
|
-
export * from './types.js';
|
|
9
8
|
export * from './execution-context.js';
|
|
10
|
-
export * from './
|
|
9
|
+
export * from './execution-context.host.js';
|
|
11
10
|
export * from './platform-adapter.js';
|
|
11
|
+
export * from './platform-adapter.host.js';
|
|
12
12
|
export * from './request.js';
|
|
13
|
+
export * from './request.host.js';
|
|
14
|
+
export * from './request-context.js';
|
|
13
15
|
export * from './response.js';
|
|
16
|
+
export * from './response.host.js';
|
|
17
|
+
export * from './types.js';
|
|
14
18
|
export * from './http/adapters/express-adapter.js';
|
|
19
|
+
export * from './http/adapters/express-adapter.host.js';
|
|
15
20
|
export * from './http/adapters/node-http-adapter.js';
|
|
21
|
+
export * from './http/adapters/node-http-adapter.host.js';
|
|
16
22
|
export * from './http/impl/http-incoming-message.host.js';
|
|
17
23
|
export * from './http/impl/http-outgoing-message.host.js';
|
|
18
24
|
export * from './http/http-server-request.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/core",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.13",
|
|
4
4
|
"description": "Opra schema package",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@browsery/type-is": "^0.6.3",
|
|
32
|
-
"@opra/common": "^0.31.
|
|
32
|
+
"@opra/common": "^0.31.13",
|
|
33
33
|
"accepts": "^1.3.8",
|
|
34
34
|
"content-disposition": "^0.5.4",
|
|
35
35
|
"content-type": "^1.0.5",
|
package/types/index.d.ts
CHANGED
|
@@ -5,14 +5,20 @@ import './augmentation/collection.augmentation.js';
|
|
|
5
5
|
import './augmentation/container.augmentation.js';
|
|
6
6
|
import './augmentation/singleton.augmentation.js';
|
|
7
7
|
import './augmentation/storage.augmentation.js';
|
|
8
|
-
export * from './types.js';
|
|
9
8
|
export * from './execution-context.js';
|
|
10
|
-
export * from './
|
|
9
|
+
export * from './execution-context.host.js';
|
|
11
10
|
export * from './platform-adapter.js';
|
|
11
|
+
export * from './platform-adapter.host.js';
|
|
12
12
|
export * from './request.js';
|
|
13
|
+
export * from './request.host.js';
|
|
14
|
+
export * from './request-context.js';
|
|
13
15
|
export * from './response.js';
|
|
16
|
+
export * from './response.host.js';
|
|
17
|
+
export * from './types.js';
|
|
14
18
|
export * from './http/adapters/express-adapter.js';
|
|
19
|
+
export * from './http/adapters/express-adapter.host.js';
|
|
15
20
|
export * from './http/adapters/node-http-adapter.js';
|
|
21
|
+
export * from './http/adapters/node-http-adapter.host.js';
|
|
16
22
|
export * from './http/impl/http-incoming-message.host.js';
|
|
17
23
|
export * from './http/impl/http-outgoing-message.host.js';
|
|
18
24
|
export * from './http/http-server-request.js';
|