wapi-client 0.17.12 → 0.17.18
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/db/token/token.schema.zod.browser.cjs +1 -1
- package/dist/db/token/token.schema.zod.browser.js +1 -1
- package/dist/db/token/token.schema.zod.cjs +1 -1
- package/dist/db/token/token.schema.zod.js +1 -1
- package/dist/db/wallet/wallet.schema.zod.browser.cjs +1 -1
- package/dist/db/wallet/wallet.schema.zod.browser.js +1 -1
- package/dist/db/wallet/wallet.schema.zod.cjs +1 -1
- package/dist/db/wallet/wallet.schema.zod.js +1 -1
- package/dist/fns/find-balances/find-balances.browser.cjs +5 -1
- package/dist/fns/find-balances/find-balances.browser.js +5 -1
- package/dist/fns/find-balances/find-balances.cjs +5 -1
- package/dist/fns/find-balances/find-balances.js +5 -1
- package/dist/lib/env.browser.cjs +1 -1
- package/dist/lib/env.browser.js +1 -1
- package/dist/lib/env.cjs +1 -1
- package/dist/lib/env.js +1 -1
- package/dist/types/wapi-client.d.ts +19 -121
- package/dist/wapi-client.iife.js +6 -6
- package/package.json +1 -1
|
@@ -38,7 +38,7 @@ var tokenTableTypeSchema = import_zod.z.enum(["value", "share", "group", "contra
|
|
|
38
38
|
var TokenTypeEnum = (0, import_ts_utils.createEnumFromTuple)(tokenTableTypeSchema.options);
|
|
39
39
|
var tokenTableSchema = import_zod.z.object({
|
|
40
40
|
id: import_zod.z.number().int().positive().describe("System defined primary key"),
|
|
41
|
-
foreign: import_zod.z.string().min(1).max(
|
|
41
|
+
foreign: import_zod.z.string().min(1).max(64).describe(
|
|
42
42
|
"Name of the token, used for name based token transfers. Must be unique"
|
|
43
43
|
),
|
|
44
44
|
public: import_zod.z.boolean().describe(
|
|
@@ -10,7 +10,7 @@ var tokenTableTypeSchema = z.enum(["value", "share", "group", "contract"]).descr
|
|
|
10
10
|
var TokenTypeEnum = createEnumFromTuple(tokenTableTypeSchema.options);
|
|
11
11
|
var tokenTableSchema = z.object({
|
|
12
12
|
id: z.number().int().positive().describe("System defined primary key"),
|
|
13
|
-
foreign: z.string().min(1).max(
|
|
13
|
+
foreign: z.string().min(1).max(64).describe(
|
|
14
14
|
"Name of the token, used for name based token transfers. Must be unique"
|
|
15
15
|
),
|
|
16
16
|
public: z.boolean().describe(
|
|
@@ -38,7 +38,7 @@ var tokenTableTypeSchema = import_zod.z.enum(["value", "share", "group", "contra
|
|
|
38
38
|
var TokenTypeEnum = (0, import_ts_utils.createEnumFromTuple)(tokenTableTypeSchema.options);
|
|
39
39
|
var tokenTableSchema = import_zod.z.object({
|
|
40
40
|
id: import_zod.z.number().int().positive().describe("System defined primary key"),
|
|
41
|
-
foreign: import_zod.z.string().min(1).max(
|
|
41
|
+
foreign: import_zod.z.string().min(1).max(64).describe(
|
|
42
42
|
"Name of the token, used for name based token transfers. Must be unique"
|
|
43
43
|
),
|
|
44
44
|
public: import_zod.z.boolean().describe(
|
|
@@ -10,7 +10,7 @@ var tokenTableTypeSchema = z.enum(["value", "share", "group", "contract"]).descr
|
|
|
10
10
|
var TokenTypeEnum = createEnumFromTuple(tokenTableTypeSchema.options);
|
|
11
11
|
var tokenTableSchema = z.object({
|
|
12
12
|
id: z.number().int().positive().describe("System defined primary key"),
|
|
13
|
-
foreign: z.string().min(1).max(
|
|
13
|
+
foreign: z.string().min(1).max(64).describe(
|
|
14
14
|
"Name of the token, used for name based token transfers. Must be unique"
|
|
15
15
|
),
|
|
16
16
|
public: z.boolean().describe(
|
|
@@ -40,7 +40,7 @@ var WalletTypeEnum = (0, import_ts_utils.createEnumFromTuple)(
|
|
|
40
40
|
);
|
|
41
41
|
var walletTableSchema = import_zod.z.object({
|
|
42
42
|
id: import_zod.z.number().int().positive().describe("System defined primary key"),
|
|
43
|
-
foreign: import_zod.z.string().min(1).max(
|
|
43
|
+
foreign: import_zod.z.string().min(1).max(64).describe("User provided key for wallet. Must be unique"),
|
|
44
44
|
name: import_zod.z.string().min(1).max(255).optional().nullable().describe("User provided key for wallet. Must be unique"),
|
|
45
45
|
metadata: import_consts.MetadataSchema.describe(
|
|
46
46
|
"Key/value object describing this wallet"
|
|
@@ -12,7 +12,7 @@ var WalletTypeEnum = createEnumFromTuple(
|
|
|
12
12
|
);
|
|
13
13
|
var walletTableSchema = z.object({
|
|
14
14
|
id: z.number().int().positive().describe("System defined primary key"),
|
|
15
|
-
foreign: z.string().min(1).max(
|
|
15
|
+
foreign: z.string().min(1).max(64).describe("User provided key for wallet. Must be unique"),
|
|
16
16
|
name: z.string().min(1).max(255).optional().nullable().describe("User provided key for wallet. Must be unique"),
|
|
17
17
|
metadata: MetadataSchema.describe(
|
|
18
18
|
"Key/value object describing this wallet"
|
|
@@ -40,7 +40,7 @@ var WalletTypeEnum = (0, import_ts_utils.createEnumFromTuple)(
|
|
|
40
40
|
);
|
|
41
41
|
var walletTableSchema = import_zod.z.object({
|
|
42
42
|
id: import_zod.z.number().int().positive().describe("System defined primary key"),
|
|
43
|
-
foreign: import_zod.z.string().min(1).max(
|
|
43
|
+
foreign: import_zod.z.string().min(1).max(64).describe("User provided key for wallet. Must be unique"),
|
|
44
44
|
name: import_zod.z.string().min(1).max(255).optional().nullable().describe("User provided key for wallet. Must be unique"),
|
|
45
45
|
metadata: import_consts.MetadataSchema.describe(
|
|
46
46
|
"Key/value object describing this wallet"
|
|
@@ -12,7 +12,7 @@ var WalletTypeEnum = createEnumFromTuple(
|
|
|
12
12
|
);
|
|
13
13
|
var walletTableSchema = z.object({
|
|
14
14
|
id: z.number().int().positive().describe("System defined primary key"),
|
|
15
|
-
foreign: z.string().min(1).max(
|
|
15
|
+
foreign: z.string().min(1).max(64).describe("User provided key for wallet. Must be unique"),
|
|
16
16
|
name: z.string().min(1).max(255).optional().nullable().describe("User provided key for wallet. Must be unique"),
|
|
17
17
|
metadata: MetadataSchema.describe(
|
|
18
18
|
"Key/value object describing this wallet"
|
|
@@ -28,7 +28,11 @@ var import_utils = require("../../lib/utils.browser.cjs");
|
|
|
28
28
|
var import_find_balances_schema_zod = require("./find-balances.schema.zod.browser.cjs");
|
|
29
29
|
var import_find_balance_many_schema_zod = require("../../txs/find-balance-many/find-balance-many.schema.zod.browser.cjs");
|
|
30
30
|
var import_find_query_builder = require("../../lib/query-builder/find-query-builder.browser.cjs");
|
|
31
|
-
var balanceFilterFullInputSchemaRequired =
|
|
31
|
+
var balanceFilterFullInputSchemaRequired = import_find_balances_schema_zod.findBalancesInputSchema.extend({
|
|
32
|
+
type: import_find_balance_many_schema_zod.balanceFilterFullInputSchema.shape.type,
|
|
33
|
+
status: import_find_balance_many_schema_zod.balanceFilterFullInputSchema.shape.status,
|
|
34
|
+
updated_at: import_find_balance_many_schema_zod.balanceFilterFullInputSchema.shape.updated_at
|
|
35
|
+
}).required();
|
|
32
36
|
function findBalances(options, input, fnOptions) {
|
|
33
37
|
const { client } = options;
|
|
34
38
|
const $query = new import_find_query_builder.FindQueryBuilder({
|
|
@@ -8,7 +8,11 @@ import { balanceFilterFullInputSchema } from "../../txs/find-balance-many/find-b
|
|
|
8
8
|
import {
|
|
9
9
|
FindQueryBuilder
|
|
10
10
|
} from "../../lib/query-builder/find-query-builder.browser.js";
|
|
11
|
-
var balanceFilterFullInputSchemaRequired =
|
|
11
|
+
var balanceFilterFullInputSchemaRequired = findBalancesInputSchema.extend({
|
|
12
|
+
type: balanceFilterFullInputSchema.shape.type,
|
|
13
|
+
status: balanceFilterFullInputSchema.shape.status,
|
|
14
|
+
updated_at: balanceFilterFullInputSchema.shape.updated_at
|
|
15
|
+
}).required();
|
|
12
16
|
function findBalances(options, input, fnOptions) {
|
|
13
17
|
const { client } = options;
|
|
14
18
|
const $query = new FindQueryBuilder({
|
|
@@ -28,7 +28,11 @@ var import_utils = require("../../lib/utils.cjs");
|
|
|
28
28
|
var import_find_balances_schema_zod = require("./find-balances.schema.zod.cjs");
|
|
29
29
|
var import_find_balance_many_schema_zod = require("../../txs/find-balance-many/find-balance-many.schema.zod.cjs");
|
|
30
30
|
var import_find_query_builder = require("../../lib/query-builder/find-query-builder.cjs");
|
|
31
|
-
var balanceFilterFullInputSchemaRequired =
|
|
31
|
+
var balanceFilterFullInputSchemaRequired = import_find_balances_schema_zod.findBalancesInputSchema.extend({
|
|
32
|
+
type: import_find_balance_many_schema_zod.balanceFilterFullInputSchema.shape.type,
|
|
33
|
+
status: import_find_balance_many_schema_zod.balanceFilterFullInputSchema.shape.status,
|
|
34
|
+
updated_at: import_find_balance_many_schema_zod.balanceFilterFullInputSchema.shape.updated_at
|
|
35
|
+
}).required();
|
|
32
36
|
function findBalances(options, input, fnOptions) {
|
|
33
37
|
const { client } = options;
|
|
34
38
|
const $query = new import_find_query_builder.FindQueryBuilder({
|
|
@@ -8,7 +8,11 @@ import { balanceFilterFullInputSchema } from "../../txs/find-balance-many/find-b
|
|
|
8
8
|
import {
|
|
9
9
|
FindQueryBuilder
|
|
10
10
|
} from "../../lib/query-builder/find-query-builder.js";
|
|
11
|
-
var balanceFilterFullInputSchemaRequired =
|
|
11
|
+
var balanceFilterFullInputSchemaRequired = findBalancesInputSchema.extend({
|
|
12
|
+
type: balanceFilterFullInputSchema.shape.type,
|
|
13
|
+
status: balanceFilterFullInputSchema.shape.status,
|
|
14
|
+
updated_at: balanceFilterFullInputSchema.shape.updated_at
|
|
15
|
+
}).required();
|
|
12
16
|
function findBalances(options, input, fnOptions) {
|
|
13
17
|
const { client } = options;
|
|
14
18
|
const $query = new FindQueryBuilder({
|
package/dist/lib/env.browser.cjs
CHANGED
|
@@ -24,7 +24,7 @@ __export(env_exports, {
|
|
|
24
24
|
getEnvConfig: () => getEnvConfig
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(env_exports);
|
|
27
|
-
var CLIENT_VERSION = "0.17.
|
|
27
|
+
var CLIENT_VERSION = "0.17.16";
|
|
28
28
|
function getEnvConfig(key, defaultValue) {
|
|
29
29
|
const val = getVariable(key);
|
|
30
30
|
if (val === void 0) {
|
package/dist/lib/env.browser.js
CHANGED
package/dist/lib/env.cjs
CHANGED
|
@@ -24,7 +24,7 @@ __export(env_exports, {
|
|
|
24
24
|
getEnvConfig: () => getEnvConfig
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(env_exports);
|
|
27
|
-
var CLIENT_VERSION = "0.17.
|
|
27
|
+
var CLIENT_VERSION = "0.17.16";
|
|
28
28
|
function getEnvConfig(key, defaultValue) {
|
|
29
29
|
const val = getVariable(key);
|
|
30
30
|
if (val === void 0) {
|
package/dist/lib/env.js
CHANGED
|
@@ -1363,7 +1363,7 @@ declare module "wapi-client/txs/consts" {
|
|
|
1363
1363
|
}, z.core.$strict>, z.ZodObject<{
|
|
1364
1364
|
type: z.ZodNonOptional<z.ZodOptional<z.ZodLiteral<"field">>>;
|
|
1365
1365
|
alias: z.ZodOptional<z.ZodString>;
|
|
1366
|
-
field: z.ZodEnum<{ [k_1 in Fields[number]]: k_1; } extends infer T ? { [k in keyof T]:
|
|
1366
|
+
field: z.ZodEnum<{ [k_1 in Fields[number]]: k_1; } extends infer T ? { [k in keyof T]: T[k]; } : never>;
|
|
1367
1367
|
}, z.core.$strict>, z.ZodObject<{
|
|
1368
1368
|
type: z.ZodNonOptional<z.ZodOptional<z.ZodLiteral<"metadata_field">>>;
|
|
1369
1369
|
field: z.ZodNonOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -30113,63 +30113,17 @@ declare module "wapi-client/fns/find-balances/find-balances" {
|
|
|
30113
30113
|
finished_amount: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>;
|
|
30114
30114
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber]>>>;
|
|
30115
30115
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
30116
|
-
|
|
30117
|
-
id: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
30118
|
-
foreign: import("zod").ZodOptional<import("zod").ZodString>;
|
|
30119
|
-
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
30120
|
-
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
30121
|
-
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
30122
|
-
}, import("zod/v4/core").$strict>]>, import("zod").ZodTransform<{
|
|
30123
|
-
id: number;
|
|
30124
|
-
foreign?: string | undefined;
|
|
30125
|
-
} | {
|
|
30126
|
-
foreign: string;
|
|
30127
|
-
id?: number | undefined;
|
|
30128
|
-
}, string | number | {
|
|
30129
|
-
id: number;
|
|
30130
|
-
foreign?: string | undefined;
|
|
30131
|
-
} | {
|
|
30132
|
-
foreign: string;
|
|
30133
|
-
id?: number | undefined;
|
|
30134
|
-
}>>>>>;
|
|
30135
|
-
token: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodObject<{
|
|
30136
|
-
id: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
30137
|
-
foreign: import("zod").ZodOptional<import("zod").ZodString>;
|
|
30138
|
-
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
30139
|
-
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
30140
|
-
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
30141
|
-
}, import("zod/v4/core").$strict>]>, import("zod").ZodTransform<{
|
|
30142
|
-
id: number;
|
|
30143
|
-
foreign?: string | undefined;
|
|
30144
|
-
} | {
|
|
30116
|
+
token: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<{
|
|
30145
30117
|
foreign: string;
|
|
30146
|
-
|
|
30147
|
-
|
|
30148
|
-
id: number;
|
|
30149
|
-
foreign?: string | undefined;
|
|
30150
|
-
} | {
|
|
30118
|
+
}, string | number>>>>;
|
|
30119
|
+
wallet: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<{
|
|
30151
30120
|
foreign: string;
|
|
30152
|
-
|
|
30153
|
-
|
|
30154
|
-
|
|
30155
|
-
|
|
30156
|
-
|
|
30157
|
-
|
|
30158
|
-
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
30159
|
-
identifier: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
30160
|
-
}, import("zod/v4/core").$strict>]>, import("zod").ZodTransform<{
|
|
30161
|
-
id: number;
|
|
30162
|
-
identifier?: string | undefined;
|
|
30163
|
-
} | {
|
|
30164
|
-
identifier: string;
|
|
30165
|
-
id?: number | undefined;
|
|
30166
|
-
}, string | number | {
|
|
30167
|
-
id: number;
|
|
30168
|
-
identifier?: string | undefined;
|
|
30169
|
-
} | {
|
|
30170
|
-
identifier: string;
|
|
30171
|
-
id?: number | undefined;
|
|
30172
|
-
}>>>>>;
|
|
30121
|
+
}, string | number>>>>;
|
|
30122
|
+
amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
30123
|
+
available_balance: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
30124
|
+
pending_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
30125
|
+
finished_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
30126
|
+
metadata: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber]>>>>;
|
|
30173
30127
|
type: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
30174
30128
|
transfer: "transfer";
|
|
30175
30129
|
deposit: "deposit";
|
|
@@ -30180,11 +30134,6 @@ declare module "wapi-client/fns/find-balances/find-balances" {
|
|
|
30180
30134
|
finished: "finished";
|
|
30181
30135
|
cancelled: "cancelled";
|
|
30182
30136
|
}>>>>;
|
|
30183
|
-
amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
30184
|
-
available_balance: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
30185
|
-
pending_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
30186
|
-
finished_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
30187
|
-
metadata: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber]>>>>>;
|
|
30188
30137
|
updated_at: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>;
|
|
30189
30138
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
30190
30139
|
select: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
@@ -35132,63 +35081,17 @@ declare module "client.js" {
|
|
|
35132
35081
|
finished_amount: import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>;
|
|
35133
35082
|
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber]>>>;
|
|
35134
35083
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
35135
|
-
|
|
35136
|
-
id: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
35137
|
-
foreign: import("zod").ZodOptional<import("zod").ZodString>;
|
|
35138
|
-
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
35139
|
-
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
35140
|
-
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
35141
|
-
}, import("zod/v4/core").$strict>]>, import("zod").ZodTransform<{
|
|
35142
|
-
id: number;
|
|
35143
|
-
foreign?: string | undefined;
|
|
35144
|
-
} | {
|
|
35145
|
-
foreign: string;
|
|
35146
|
-
id?: number | undefined;
|
|
35147
|
-
}, string | number | {
|
|
35148
|
-
id: number;
|
|
35149
|
-
foreign?: string | undefined;
|
|
35150
|
-
} | {
|
|
35151
|
-
foreign: string;
|
|
35152
|
-
id?: number | undefined;
|
|
35153
|
-
}>>>>>;
|
|
35154
|
-
token: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodObject<{
|
|
35155
|
-
id: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
35156
|
-
foreign: import("zod").ZodOptional<import("zod").ZodString>;
|
|
35157
|
-
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
35158
|
-
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
35159
|
-
foreign: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
35160
|
-
}, import("zod/v4/core").$strict>]>, import("zod").ZodTransform<{
|
|
35161
|
-
id: number;
|
|
35162
|
-
foreign?: string | undefined;
|
|
35163
|
-
} | {
|
|
35084
|
+
token: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<{
|
|
35164
35085
|
foreign: string;
|
|
35165
|
-
|
|
35166
|
-
|
|
35167
|
-
id: number;
|
|
35168
|
-
foreign?: string | undefined;
|
|
35169
|
-
} | {
|
|
35086
|
+
}, string | number>>>>;
|
|
35087
|
+
wallet: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<{
|
|
35170
35088
|
foreign: string;
|
|
35171
|
-
|
|
35172
|
-
|
|
35173
|
-
|
|
35174
|
-
|
|
35175
|
-
|
|
35176
|
-
|
|
35177
|
-
id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
35178
|
-
identifier: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
35179
|
-
}, import("zod/v4/core").$strict>]>, import("zod").ZodTransform<{
|
|
35180
|
-
id: number;
|
|
35181
|
-
identifier?: string | undefined;
|
|
35182
|
-
} | {
|
|
35183
|
-
identifier: string;
|
|
35184
|
-
id?: number | undefined;
|
|
35185
|
-
}, string | number | {
|
|
35186
|
-
id: number;
|
|
35187
|
-
identifier?: string | undefined;
|
|
35188
|
-
} | {
|
|
35189
|
-
identifier: string;
|
|
35190
|
-
id?: number | undefined;
|
|
35191
|
-
}>>>>>;
|
|
35089
|
+
}, string | number>>>>;
|
|
35090
|
+
amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
35091
|
+
available_balance: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
35092
|
+
pending_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
35093
|
+
finished_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>;
|
|
35094
|
+
metadata: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber]>>>>;
|
|
35192
35095
|
type: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
35193
35096
|
transfer: "transfer";
|
|
35194
35097
|
deposit: "deposit";
|
|
@@ -35199,11 +35102,6 @@ declare module "client.js" {
|
|
|
35199
35102
|
finished: "finished";
|
|
35200
35103
|
cancelled: "cancelled";
|
|
35201
35104
|
}>>>>;
|
|
35202
|
-
amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
35203
|
-
available_balance: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
35204
|
-
pending_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
35205
|
-
finished_amount: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodPipe<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>, import("zod").ZodTransform<number, string | number>>>>>;
|
|
35206
|
-
metadata: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodBoolean, import("zod").ZodNumber]>>>>>;
|
|
35207
35105
|
updated_at: import("zod").ZodNonOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>;
|
|
35208
35106
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
35209
35107
|
select: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|