@crypticdot/defituna-api 1.1.47 → 1.1.48
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 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1577,19 +1577,19 @@ declare const StakingRevenueStatsGroup$1: z.ZodObject<{
|
|
|
1577
1577
|
totalDepositsUsd: z.ZodNumber;
|
|
1578
1578
|
totalDepositsSol: z.ZodBigInt;
|
|
1579
1579
|
runningTotalDepositsUsd: z.ZodNumber;
|
|
1580
|
-
|
|
1580
|
+
runningTotalDepositsSol: z.ZodBigInt;
|
|
1581
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1582
1582
|
time: Date;
|
|
1583
1583
|
totalDepositsUsd: number;
|
|
1584
1584
|
totalDepositsSol: bigint;
|
|
1585
1585
|
runningTotalDepositsUsd: number;
|
|
1586
|
-
|
|
1586
|
+
runningTotalDepositsSol: bigint;
|
|
1587
1587
|
}, {
|
|
1588
1588
|
time: Date;
|
|
1589
1589
|
totalDepositsUsd: number;
|
|
1590
1590
|
totalDepositsSol: bigint;
|
|
1591
1591
|
runningTotalDepositsUsd: number;
|
|
1592
|
-
|
|
1592
|
+
runningTotalDepositsSol: bigint;
|
|
1593
1593
|
}>;
|
|
1594
1594
|
declare const UpdateStreamSubscriptionResult: z.ZodObject<{
|
|
1595
1595
|
status: z.ZodString;
|
package/dist/index.d.ts
CHANGED
|
@@ -1577,19 +1577,19 @@ declare const StakingRevenueStatsGroup$1: z.ZodObject<{
|
|
|
1577
1577
|
totalDepositsUsd: z.ZodNumber;
|
|
1578
1578
|
totalDepositsSol: z.ZodBigInt;
|
|
1579
1579
|
runningTotalDepositsUsd: z.ZodNumber;
|
|
1580
|
-
|
|
1580
|
+
runningTotalDepositsSol: z.ZodBigInt;
|
|
1581
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1582
1582
|
time: Date;
|
|
1583
1583
|
totalDepositsUsd: number;
|
|
1584
1584
|
totalDepositsSol: bigint;
|
|
1585
1585
|
runningTotalDepositsUsd: number;
|
|
1586
|
-
|
|
1586
|
+
runningTotalDepositsSol: bigint;
|
|
1587
1587
|
}, {
|
|
1588
1588
|
time: Date;
|
|
1589
1589
|
totalDepositsUsd: number;
|
|
1590
1590
|
totalDepositsSol: bigint;
|
|
1591
1591
|
runningTotalDepositsUsd: number;
|
|
1592
|
-
|
|
1592
|
+
runningTotalDepositsSol: bigint;
|
|
1593
1593
|
}>;
|
|
1594
1594
|
declare const UpdateStreamSubscriptionResult: z.ZodObject<{
|
|
1595
1595
|
status: z.ZodString;
|
package/dist/index.js
CHANGED
|
@@ -455,7 +455,7 @@ var StakingRevenueStatsGroup = import_zod.z.object({
|
|
|
455
455
|
totalDepositsUsd: import_zod.z.number(),
|
|
456
456
|
totalDepositsSol: import_zod.z.coerce.bigint(),
|
|
457
457
|
runningTotalDepositsUsd: import_zod.z.number(),
|
|
458
|
-
|
|
458
|
+
runningTotalDepositsSol: import_zod.z.coerce.bigint()
|
|
459
459
|
});
|
|
460
460
|
var UpdateStreamSubscriptionResult = import_zod.z.object({
|
|
461
461
|
status: import_zod.z.string()
|
package/dist/index.mjs
CHANGED
|
@@ -420,7 +420,7 @@ var StakingRevenueStatsGroup = z.object({
|
|
|
420
420
|
totalDepositsUsd: z.number(),
|
|
421
421
|
totalDepositsSol: z.coerce.bigint(),
|
|
422
422
|
runningTotalDepositsUsd: z.number(),
|
|
423
|
-
|
|
423
|
+
runningTotalDepositsSol: z.coerce.bigint()
|
|
424
424
|
});
|
|
425
425
|
var UpdateStreamSubscriptionResult = z.object({
|
|
426
426
|
status: z.string()
|