@crypticdot/defituna-api 1.1.42 → 1.1.43
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1440,13 +1440,16 @@ declare const StakingPositionHistoryAction$1: z.ZodObject<{
|
|
|
1440
1440
|
position: z.ZodString;
|
|
1441
1441
|
action: z.ZodEnum<["stake", ...("stake" | "unstake" | "withdraw" | "claim_rewards")[]]>;
|
|
1442
1442
|
txSignature: z.ZodString;
|
|
1443
|
+
amount: z.ZodBigInt;
|
|
1443
1444
|
time: z.ZodDate;
|
|
1444
1445
|
}, "strip", z.ZodTypeAny, {
|
|
1446
|
+
amount: bigint;
|
|
1445
1447
|
time: Date;
|
|
1446
1448
|
position: string;
|
|
1447
1449
|
action: "stake" | "unstake" | "withdraw" | "claim_rewards";
|
|
1448
1450
|
txSignature: string;
|
|
1449
1451
|
}, {
|
|
1452
|
+
amount: bigint;
|
|
1450
1453
|
time: Date;
|
|
1451
1454
|
position: string;
|
|
1452
1455
|
action: "stake" | "unstake" | "withdraw" | "claim_rewards";
|
package/dist/index.d.ts
CHANGED
|
@@ -1440,13 +1440,16 @@ declare const StakingPositionHistoryAction$1: z.ZodObject<{
|
|
|
1440
1440
|
position: z.ZodString;
|
|
1441
1441
|
action: z.ZodEnum<["stake", ...("stake" | "unstake" | "withdraw" | "claim_rewards")[]]>;
|
|
1442
1442
|
txSignature: z.ZodString;
|
|
1443
|
+
amount: z.ZodBigInt;
|
|
1443
1444
|
time: z.ZodDate;
|
|
1444
1445
|
}, "strip", z.ZodTypeAny, {
|
|
1446
|
+
amount: bigint;
|
|
1445
1447
|
time: Date;
|
|
1446
1448
|
position: string;
|
|
1447
1449
|
action: "stake" | "unstake" | "withdraw" | "claim_rewards";
|
|
1448
1450
|
txSignature: string;
|
|
1449
1451
|
}, {
|
|
1452
|
+
amount: bigint;
|
|
1450
1453
|
time: Date;
|
|
1451
1454
|
position: string;
|
|
1452
1455
|
action: "stake" | "unstake" | "withdraw" | "claim_rewards";
|
package/dist/index.js
CHANGED
|
@@ -404,6 +404,7 @@ var StakingPositionHistoryAction = import_zod.z.object({
|
|
|
404
404
|
position: import_zod.z.string(),
|
|
405
405
|
action: StakingPositionHistoryActionTypeSchema,
|
|
406
406
|
txSignature: import_zod.z.string(),
|
|
407
|
+
amount: import_zod.z.coerce.bigint(),
|
|
407
408
|
time: import_zod.z.coerce.date()
|
|
408
409
|
});
|
|
409
410
|
var PoolPriceCandle = import_zod.z.object({
|
package/dist/index.mjs
CHANGED
|
@@ -369,6 +369,7 @@ var StakingPositionHistoryAction = z.object({
|
|
|
369
369
|
position: z.string(),
|
|
370
370
|
action: StakingPositionHistoryActionTypeSchema,
|
|
371
371
|
txSignature: z.string(),
|
|
372
|
+
amount: z.coerce.bigint(),
|
|
372
373
|
time: z.coerce.date()
|
|
373
374
|
});
|
|
374
375
|
var PoolPriceCandle = z.object({
|