@devizovaburza/txs-sdk 2.0.3 → 3.0.0
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/dist/v1/index.cjs +2 -10
- package/dist/v1/index.d.cts +184 -184
- package/dist/v1/index.d.mts +184 -184
- package/dist/v1/index.d.ts +184 -184
- package/dist/v1/index.mjs +40 -48
- package/package.json +2 -2
package/dist/v1/index.cjs
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
const client = require('hono/client');
|
|
4
4
|
const drizzleOrm = require('drizzle-orm');
|
|
5
5
|
const sqliteCore = require('drizzle-orm/sqlite-core');
|
|
6
|
-
|
|
6
|
+
require('drizzle-orm/zod');
|
|
7
7
|
const zod = require('zod');
|
|
8
8
|
const z = require('zod/v4/core');
|
|
9
|
-
require('node:fs');
|
|
10
9
|
require('node:crypto');
|
|
10
|
+
require('node:fs');
|
|
11
11
|
require('node:path');
|
|
12
12
|
const v1 = require('@devizovaburza/mdm-sdk/v1');
|
|
13
13
|
const zodOpenapi = require('@hono/zod-openapi');
|
|
@@ -4109,14 +4109,6 @@ const CRYPTO_CURRENCIES = currencies.filter((c) => c.type === "CRYPTO");
|
|
|
4109
4109
|
...CRYPTO_CURRENCIES.map((currency) => currency.code)
|
|
4110
4110
|
];
|
|
4111
4111
|
|
|
4112
|
-
const literalSchema = v4.z.union([v4.z.string(), v4.z.number(), v4.z.boolean(), v4.z.null()]);
|
|
4113
|
-
v4.z.union([
|
|
4114
|
-
literalSchema,
|
|
4115
|
-
v4.z.record(v4.z.string(), v4.z.any()),
|
|
4116
|
-
v4.z.array(v4.z.any()),
|
|
4117
|
-
]);
|
|
4118
|
-
v4.z.custom((v) => v instanceof Buffer); // eslint-disable-line no-instanceof/no-instanceof
|
|
4119
|
-
|
|
4120
4112
|
var esprima$1 = {exports: {}};
|
|
4121
4113
|
|
|
4122
4114
|
var esprima = esprima$1.exports;
|