wapi-client 0.17.11 → 0.17.12
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/fns/find-balances/find-balances.schema.zod.browser.cjs +8 -1
- package/dist/fns/find-balances/find-balances.schema.zod.browser.js +9 -2
- package/dist/fns/find-balances/find-balances.schema.zod.cjs +8 -1
- package/dist/fns/find-balances/find-balances.schema.zod.js +9 -2
- 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/txs/find-balance-many/find-balance-many.schema.zod.browser.cjs +3 -0
- package/dist/txs/find-balance-many/find-balance-many.schema.zod.browser.js +8 -1
- package/dist/txs/find-balance-many/find-balance-many.schema.zod.cjs +3 -0
- package/dist/txs/find-balance-many/find-balance-many.schema.zod.js +8 -1
- package/dist/types/wapi-client.d.ts +12 -0
- package/dist/wapi-client.iife.js +5 -5
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
|
+
var __defProps = Object.defineProperties;
|
|
3
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
7
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
8
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
@@ -17,6 +19,7 @@ var __spreadValues = (a, b) => {
|
|
|
17
19
|
}
|
|
18
20
|
return a;
|
|
19
21
|
};
|
|
22
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
23
|
var __export = (target, all) => {
|
|
21
24
|
for (var name in all)
|
|
22
25
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -46,7 +49,11 @@ var import_zod = require("../../lib/zod.browser.cjs");
|
|
|
46
49
|
var import_consts2 = require("../../txs/consts.browser.cjs");
|
|
47
50
|
var import_find_balance_many_schema_zod = require("../../txs/find-balance-many/find-balance-many.schema.zod.browser.cjs");
|
|
48
51
|
var import_consts3 = require("../consts.browser.cjs");
|
|
49
|
-
var findBalancesFnOptionsSchema = import_find_balance_many_schema_zod.findBalanceManyTxInputOptionsSchema.extend(__spreadValues({}, import_consts3.iFnFindOptionsSchema.shape)
|
|
52
|
+
var findBalancesFnOptionsSchema = import_find_balance_many_schema_zod.findBalanceManyTxInputOptionsSchema.extend(__spreadProps(__spreadValues({}, import_consts3.iFnFindOptionsSchema.shape), {
|
|
53
|
+
datetime: import_consts.DatetimeSchema.describe(
|
|
54
|
+
"Time the balances should be retrieved for"
|
|
55
|
+
).optional()
|
|
56
|
+
})).partial().describe("Optional flags for input");
|
|
50
57
|
var findBalancesInputSchema = import_zod.z.object({
|
|
51
58
|
token: import_consts3.allowedStringIntSchema.describe("Token to get balance for").transform((foreign) => ({
|
|
52
59
|
foreign: String(foreign)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
2
4
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
3
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4
6
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
@@ -14,9 +16,10 @@ var __spreadValues = (a, b) => {
|
|
|
14
16
|
}
|
|
15
17
|
return a;
|
|
16
18
|
};
|
|
19
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
17
20
|
|
|
18
21
|
// src/fns/find-balances/find-balances.schema.zod.ts
|
|
19
|
-
import { DbFilterMetadataSchema } from "../../db/consts.browser.js";
|
|
22
|
+
import { DatetimeSchema, DbFilterMetadataSchema } from "../../db/consts.browser.js";
|
|
20
23
|
import { z } from "../../lib/zod.browser.js";
|
|
21
24
|
import { stringNumberToNumber } from "../../txs/consts.browser.js";
|
|
22
25
|
import {
|
|
@@ -24,7 +27,11 @@ import {
|
|
|
24
27
|
findBalanceManyTxOutputSchema
|
|
25
28
|
} from "../../txs/find-balance-many/find-balance-many.schema.zod.browser.js";
|
|
26
29
|
import { allowedStringIntSchema, iFnFindOptionsSchema } from "../consts.browser.js";
|
|
27
|
-
var findBalancesFnOptionsSchema = findBalanceManyTxInputOptionsSchema.extend(__spreadValues({}, iFnFindOptionsSchema.shape)
|
|
30
|
+
var findBalancesFnOptionsSchema = findBalanceManyTxInputOptionsSchema.extend(__spreadProps(__spreadValues({}, iFnFindOptionsSchema.shape), {
|
|
31
|
+
datetime: DatetimeSchema.describe(
|
|
32
|
+
"Time the balances should be retrieved for"
|
|
33
|
+
).optional()
|
|
34
|
+
})).partial().describe("Optional flags for input");
|
|
28
35
|
var findBalancesInputSchema = z.object({
|
|
29
36
|
token: allowedStringIntSchema.describe("Token to get balance for").transform((foreign) => ({
|
|
30
37
|
foreign: String(foreign)
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
|
+
var __defProps = Object.defineProperties;
|
|
3
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
7
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
8
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
@@ -17,6 +19,7 @@ var __spreadValues = (a, b) => {
|
|
|
17
19
|
}
|
|
18
20
|
return a;
|
|
19
21
|
};
|
|
22
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
23
|
var __export = (target, all) => {
|
|
21
24
|
for (var name in all)
|
|
22
25
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -46,7 +49,11 @@ var import_zod = require("../../lib/zod.cjs");
|
|
|
46
49
|
var import_consts2 = require("../../txs/consts.cjs");
|
|
47
50
|
var import_find_balance_many_schema_zod = require("../../txs/find-balance-many/find-balance-many.schema.zod.cjs");
|
|
48
51
|
var import_consts3 = require("../consts.cjs");
|
|
49
|
-
var findBalancesFnOptionsSchema = import_find_balance_many_schema_zod.findBalanceManyTxInputOptionsSchema.extend(__spreadValues({}, import_consts3.iFnFindOptionsSchema.shape)
|
|
52
|
+
var findBalancesFnOptionsSchema = import_find_balance_many_schema_zod.findBalanceManyTxInputOptionsSchema.extend(__spreadProps(__spreadValues({}, import_consts3.iFnFindOptionsSchema.shape), {
|
|
53
|
+
datetime: import_consts.DatetimeSchema.describe(
|
|
54
|
+
"Time the balances should be retrieved for"
|
|
55
|
+
).optional()
|
|
56
|
+
})).partial().describe("Optional flags for input");
|
|
50
57
|
var findBalancesInputSchema = import_zod.z.object({
|
|
51
58
|
token: import_consts3.allowedStringIntSchema.describe("Token to get balance for").transform((foreign) => ({
|
|
52
59
|
foreign: String(foreign)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
2
4
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
3
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4
6
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
@@ -14,9 +16,10 @@ var __spreadValues = (a, b) => {
|
|
|
14
16
|
}
|
|
15
17
|
return a;
|
|
16
18
|
};
|
|
19
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
17
20
|
|
|
18
21
|
// src/fns/find-balances/find-balances.schema.zod.ts
|
|
19
|
-
import { DbFilterMetadataSchema } from "../../db/consts.js";
|
|
22
|
+
import { DatetimeSchema, DbFilterMetadataSchema } from "../../db/consts.js";
|
|
20
23
|
import { z } from "../../lib/zod.js";
|
|
21
24
|
import { stringNumberToNumber } from "../../txs/consts.js";
|
|
22
25
|
import {
|
|
@@ -24,7 +27,11 @@ import {
|
|
|
24
27
|
findBalanceManyTxOutputSchema
|
|
25
28
|
} from "../../txs/find-balance-many/find-balance-many.schema.zod.js";
|
|
26
29
|
import { allowedStringIntSchema, iFnFindOptionsSchema } from "../consts.js";
|
|
27
|
-
var findBalancesFnOptionsSchema = findBalanceManyTxInputOptionsSchema.extend(__spreadValues({}, iFnFindOptionsSchema.shape)
|
|
30
|
+
var findBalancesFnOptionsSchema = findBalanceManyTxInputOptionsSchema.extend(__spreadProps(__spreadValues({}, iFnFindOptionsSchema.shape), {
|
|
31
|
+
datetime: DatetimeSchema.describe(
|
|
32
|
+
"Time the balances should be retrieved for"
|
|
33
|
+
).optional()
|
|
34
|
+
})).partial().describe("Optional flags for input");
|
|
28
35
|
var findBalancesInputSchema = z.object({
|
|
29
36
|
token: allowedStringIntSchema.describe("Token to get balance for").transform((foreign) => ({
|
|
30
37
|
foreign: String(foreign)
|
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.12";
|
|
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.12";
|
|
28
28
|
function getEnvConfig(key, defaultValue) {
|
|
29
29
|
const val = getVariable(key);
|
|
30
30
|
if (val === void 0) {
|
package/dist/lib/env.js
CHANGED
|
@@ -61,6 +61,9 @@ var findBalanceManyTxInputOptionsSchema = import_zod.z.object(__spreadProps(__sp
|
|
|
61
61
|
order: import_consts.iTxOrderingInput.extend({
|
|
62
62
|
field: balanceSelectSchema
|
|
63
63
|
}).array(),
|
|
64
|
+
datetime: import_consts2.DatetimeSchema.describe(
|
|
65
|
+
"Time the balance should be retrieved for"
|
|
66
|
+
).optional(),
|
|
64
67
|
select: balanceSelectSchema.array(),
|
|
65
68
|
deselect: balanceSelectSchema.array()
|
|
66
69
|
})).partial();
|
|
@@ -28,7 +28,11 @@ import {
|
|
|
28
28
|
iTxOrderingInput,
|
|
29
29
|
stringNumberToNumber
|
|
30
30
|
} from "../consts.browser.js";
|
|
31
|
-
import {
|
|
31
|
+
import {
|
|
32
|
+
DatetimeSchema,
|
|
33
|
+
DbFilterMetadataSchema,
|
|
34
|
+
getDbFilter
|
|
35
|
+
} from "../../db/consts.browser.js";
|
|
32
36
|
import { uniqueWalletFilter } from "../get-wallet/get-wallet.schema.zod.browser.js";
|
|
33
37
|
import {
|
|
34
38
|
transferTableStatusSchema,
|
|
@@ -43,6 +47,9 @@ var findBalanceManyTxInputOptionsSchema = z.object(__spreadProps(__spreadValues(
|
|
|
43
47
|
order: iTxOrderingInput.extend({
|
|
44
48
|
field: balanceSelectSchema
|
|
45
49
|
}).array(),
|
|
50
|
+
datetime: DatetimeSchema.describe(
|
|
51
|
+
"Time the balance should be retrieved for"
|
|
52
|
+
).optional(),
|
|
46
53
|
select: balanceSelectSchema.array(),
|
|
47
54
|
deselect: balanceSelectSchema.array()
|
|
48
55
|
})).partial();
|
|
@@ -61,6 +61,9 @@ var findBalanceManyTxInputOptionsSchema = import_zod.z.object(__spreadProps(__sp
|
|
|
61
61
|
order: import_consts.iTxOrderingInput.extend({
|
|
62
62
|
field: balanceSelectSchema
|
|
63
63
|
}).array(),
|
|
64
|
+
datetime: import_consts2.DatetimeSchema.describe(
|
|
65
|
+
"Time the balance should be retrieved for"
|
|
66
|
+
).optional(),
|
|
64
67
|
select: balanceSelectSchema.array(),
|
|
65
68
|
deselect: balanceSelectSchema.array()
|
|
66
69
|
})).partial();
|
|
@@ -28,7 +28,11 @@ import {
|
|
|
28
28
|
iTxOrderingInput,
|
|
29
29
|
stringNumberToNumber
|
|
30
30
|
} from "../consts.js";
|
|
31
|
-
import {
|
|
31
|
+
import {
|
|
32
|
+
DatetimeSchema,
|
|
33
|
+
DbFilterMetadataSchema,
|
|
34
|
+
getDbFilter
|
|
35
|
+
} from "../../db/consts.js";
|
|
32
36
|
import { uniqueWalletFilter } from "../get-wallet/get-wallet.schema.zod.js";
|
|
33
37
|
import {
|
|
34
38
|
transferTableStatusSchema,
|
|
@@ -43,6 +47,9 @@ var findBalanceManyTxInputOptionsSchema = z.object(__spreadProps(__spreadValues(
|
|
|
43
47
|
order: iTxOrderingInput.extend({
|
|
44
48
|
field: balanceSelectSchema
|
|
45
49
|
}).array(),
|
|
50
|
+
datetime: DatetimeSchema.describe(
|
|
51
|
+
"Time the balance should be retrieved for"
|
|
52
|
+
).optional(),
|
|
46
53
|
select: balanceSelectSchema.array(),
|
|
47
54
|
deselect: balanceSelectSchema.array()
|
|
48
55
|
})).partial();
|
|
@@ -12192,6 +12192,7 @@ declare module "wapi-client/txs/find-balance-many/find-balance-many.schema.zod"
|
|
|
12192
12192
|
wallet_metadata: "wallet_metadata";
|
|
12193
12193
|
}>;
|
|
12194
12194
|
}, z.core.$strict>>>;
|
|
12195
|
+
datetime: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
12195
12196
|
select: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
12196
12197
|
updated_at: "updated_at";
|
|
12197
12198
|
token_id: "token_id";
|
|
@@ -13177,6 +13178,7 @@ declare module "wapi-client/txs/find-balance-many/find-balance-many.schema.zod"
|
|
|
13177
13178
|
wallet_metadata: "wallet_metadata";
|
|
13178
13179
|
}>;
|
|
13179
13180
|
}, z.core.$strict>>>;
|
|
13181
|
+
datetime: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
13180
13182
|
select: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
13181
13183
|
updated_at: "updated_at";
|
|
13182
13184
|
token_id: "token_id";
|
|
@@ -13285,6 +13287,7 @@ declare module "wapi-client/txs/export-balance-many/export-balance-many.schema.z
|
|
|
13285
13287
|
wallet_metadata: "wallet_metadata";
|
|
13286
13288
|
}>;
|
|
13287
13289
|
}, import("zod/v4/core").$strict>>>;
|
|
13290
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>;
|
|
13288
13291
|
select: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
13289
13292
|
updated_at: "updated_at";
|
|
13290
13293
|
token_id: "token_id";
|
|
@@ -13634,6 +13637,7 @@ declare module "wapi-client/txs/export-balance-many/export-balance-many.schema.z
|
|
|
13634
13637
|
wallet_metadata: "wallet_metadata";
|
|
13635
13638
|
}>;
|
|
13636
13639
|
}, import("zod/v4/core").$strict>>>;
|
|
13640
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>;
|
|
13637
13641
|
select: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
13638
13642
|
updated_at: "updated_at";
|
|
13639
13643
|
token_id: "token_id";
|
|
@@ -13742,6 +13746,7 @@ declare module "wapi-client/fns/find-balances/find-balances.schema.zod" {
|
|
|
13742
13746
|
return_metadata_total: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13743
13747
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13744
13748
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13749
|
+
datetime: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
13745
13750
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
13746
13751
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
13747
13752
|
order_by: z.ZodOptional<z.ZodString>;
|
|
@@ -13820,6 +13825,7 @@ declare module "wapi-client/fns/find-balances/find-balances.schema.zod" {
|
|
|
13820
13825
|
return_metadata_total: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
13821
13826
|
tracking_id: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13822
13827
|
transaction_id: z.ZodOptional<z.ZodOptional<z.ZodOptional<z.ZodString>>>;
|
|
13828
|
+
datetime: z.ZodOptional<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString, z.ZodString]>>>;
|
|
13823
13829
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
13824
13830
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
13825
13831
|
order_by: z.ZodOptional<z.ZodString>;
|
|
@@ -13916,6 +13922,7 @@ declare module "wapi-client/fns/export-balances/export-balances.schema.zod" {
|
|
|
13916
13922
|
return_metadata_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>>;
|
|
13917
13923
|
tracking_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
13918
13924
|
transaction_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
13925
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>>;
|
|
13919
13926
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
13920
13927
|
offset: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
13921
13928
|
order_by: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -13994,6 +14001,7 @@ declare module "wapi-client/fns/export-balances/export-balances.schema.zod" {
|
|
|
13994
14001
|
return_metadata_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>>;
|
|
13995
14002
|
tracking_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
13996
14003
|
transaction_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
14004
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>>;
|
|
13997
14005
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
13998
14006
|
offset: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
13999
14007
|
order_by: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -28882,6 +28890,7 @@ declare module "wapi-client/fns/export-balances/export-balances" {
|
|
|
28882
28890
|
return_metadata_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>>;
|
|
28883
28891
|
tracking_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
28884
28892
|
transaction_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
28893
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>>;
|
|
28885
28894
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
28886
28895
|
offset: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
28887
28896
|
order_by: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -30215,6 +30224,7 @@ declare module "wapi-client/fns/find-balances/find-balances" {
|
|
|
30215
30224
|
return_metadata_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
30216
30225
|
tracking_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
30217
30226
|
transaction_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
30227
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>;
|
|
30218
30228
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
30219
30229
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
30220
30230
|
order_by: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -33922,6 +33932,7 @@ declare module "client.js" {
|
|
|
33922
33932
|
return_metadata_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>>;
|
|
33923
33933
|
tracking_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
33924
33934
|
transaction_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>>;
|
|
33935
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>>;
|
|
33925
33936
|
limit: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
33926
33937
|
offset: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
33927
33938
|
order_by: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -35232,6 +35243,7 @@ declare module "client.js" {
|
|
|
35232
35243
|
return_metadata_total: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
35233
35244
|
tracking_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
35234
35245
|
transaction_id: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>>;
|
|
35246
|
+
datetime: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodString, import("zod").ZodString]>>>;
|
|
35235
35247
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
35236
35248
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
35237
35249
|
order_by: import("zod").ZodOptional<import("zod").ZodString>;
|