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