vovk-client 0.0.4-beta.4 → 0.0.4-beta.6
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/README.md +5 -5
- package/openapi.d.mts +1 -0
- package/openapi.mjs +1 -0
- package/package.json +8 -13
- package/index.cjs +0 -3
- package/index.d.cts +0 -1
- package/openapi.cjs +0 -1
- package/openapi.d.cts +0 -1
package/README.md
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
</picture>
|
|
8
8
|
</a>
|
|
9
9
|
<br>
|
|
10
|
-
<strong>Back-end for Next.js
|
|
10
|
+
<strong>Back-end Framework for Next.js App Router</strong>
|
|
11
11
|
<br />
|
|
12
|
-
<a href="https://vovk.dev/
|
|
13
|
-
|
|
12
|
+
<a href="https://vovk.dev/">Documentation</a>
|
|
13
|
+
|
|
14
14
|
<a href="https://vovk.dev/quick-install">Quick Start</a>
|
|
15
|
-
|
|
16
|
-
<a href="https://
|
|
15
|
+
|
|
16
|
+
<a href="https://vovk.dev/performance">Performance</a>
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
---
|
package/openapi.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { openapi } from '../.vovk-client/openapi.d.mts';
|
package/openapi.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../.vovk-client/openapi.mjs';
|
package/package.json
CHANGED
|
@@ -1,27 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vovk-client",
|
|
3
|
-
"version": "0.0.4-beta.
|
|
4
|
-
"description": "Vovk.ts
|
|
3
|
+
"version": "0.0.4-beta.6",
|
|
4
|
+
"description": "Re-exports of composed TypeScript client for Vovk.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"npm-publish": "npm publish"
|
|
7
7
|
},
|
|
8
|
-
"main": "./index.cjs",
|
|
9
|
-
"module": "./index.mjs",
|
|
10
|
-
"types": "./index.d.mts",
|
|
11
8
|
"exports": {
|
|
12
9
|
".": {
|
|
13
|
-
"
|
|
14
|
-
"
|
|
10
|
+
"default": "./index.mjs",
|
|
11
|
+
"types": "./index.d.mts"
|
|
15
12
|
},
|
|
16
13
|
"./schema": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"types": "./schema.d.cts"
|
|
14
|
+
"default": "./schema.mjs",
|
|
15
|
+
"types": "./schema.d.mts"
|
|
20
16
|
},
|
|
21
17
|
"./openapi": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"types": "./openapi.d.cts"
|
|
18
|
+
"default": "./openapi.mjs",
|
|
19
|
+
"types": "./openapi.d.mts"
|
|
25
20
|
}
|
|
26
21
|
},
|
|
27
22
|
"type": "module",
|
package/index.cjs
DELETED
package/index.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../.vovk-client/index.d.cts';
|
package/openapi.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require('../.vovk-client/openapi.cjs') ?? {};
|
package/openapi.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { openapi } from '../.vovk-client/openapi.d.cts';
|