vovk-cli 0.0.1-draft.183 → 0.0.1-draft.185
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/client-templates/cjs/index.cjs.ejs +1 -1
- package/client-templates/cjs/index.d.cts.ejs +1 -1
- package/client-templates/mjs/index.d.mts.ejs +1 -1
- package/client-templates/mjs/index.mjs.ejs +1 -1
- package/client-templates/schemaCjs/schema.cjs.ejs +1 -1
- package/client-templates/schemaCjs/schema.d.cts.ejs +1 -1
- package/client-templates/schemaTs/schema.ts.ejs +1 -1
- package/client-templates/ts/index.ts.ejs +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
1
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
2
2
|
const { fetcher } = require('<%= t.imports.fetcher %>');
|
|
3
3
|
const { createRPC } = require('<%= t.imports.createRPC %>');
|
|
4
4
|
const { schema } = require('./schema.cjs');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
2
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
3
3
|
import type { VovkClientFetcher } from 'vovk';
|
|
4
4
|
import type { fetcher } from '<%= t.imports.module.fetcher %>';
|
|
5
5
|
import type { createRPC } from '<%= t.imports.module.createRPC %>';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
2
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
3
3
|
import type { VovkClientFetcher } from 'vovk';
|
|
4
4
|
import type { fetcher } from '<%= t.imports.module.fetcher %>';
|
|
5
5
|
import type { createRPC } from '<%= t.imports.module.createRPC %>';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
1
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
2
2
|
import { fetcher } from '<%= t.imports.module.fetcher %>';
|
|
3
3
|
import { createRPC } from '<%= t.imports.module.createRPC %>';
|
|
4
4
|
import { schema } from './schema.cjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
1
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
2
2
|
const config = require('./<%= t.schemaOutDir %>/config.json');
|
|
3
3
|
const segments = {<% Object.values(t.schema.segments).filter((segment) => segment.emitSchema).forEach((segment) => { %>
|
|
4
4
|
'<%= segment.segmentName %>': require('./<%= t.schemaOutDir %>/<%= t.SEGMENTS_SCHEMA_DIR_NAME %>/<%= segment.segmentName || t.ROOT_SEGMENT_SCHEMA_NAME %>.json'),<% }) %>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
1
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
2
2
|
import config from './<%= t.schemaOutDir %>/config.json' with { type: "json" };
|
|
3
3
|
<% Object.values(t.schema.segments).filter((segment) => segment.emitSchema).forEach((segment, i) => { %>
|
|
4
4
|
import segment<%= i %> from './<%= t.schemaOutDir %>/<%= t.SEGMENTS_SCHEMA_DIR_NAME %>/<%= segment.segmentName || t.ROOT_SEGMENT_SCHEMA_NAME %>.json' with { type: "json" };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<%- `// auto-generated ${new Date().toISOString()}
|
|
1
|
+
<%- `// auto-generated by Vovk.ts ${new Date().toISOString()}` %>
|
|
2
2
|
import type { VovkClientFetcher } from 'vovk';
|
|
3
3
|
import { fetcher } from '<%= t.imports.fetcher %>';
|
|
4
4
|
import { createRPC } from '<%= t.imports.createRPC %>';
|