@numen-crypto/contract 0.17.0 → 0.17.2
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.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -339,6 +339,7 @@ var DailyBonusDaySchema = zod.z.object({
|
|
|
339
339
|
claimedNmn: MoneyStringSchema.nullable()
|
|
340
340
|
});
|
|
341
341
|
var DailyBonusStatusSchema = zod.z.object({
|
|
342
|
+
enabled: zod.z.boolean(),
|
|
342
343
|
currentStreak: zod.z.number().int().nonnegative(),
|
|
343
344
|
cycleLength: zod.z.number().int().positive(),
|
|
344
345
|
claimableToday: zod.z.boolean(),
|
|
@@ -986,6 +987,7 @@ var WheelStatusSchema = zod.z.object({
|
|
|
986
987
|
paidSpinEnabled: zod.z.boolean(),
|
|
987
988
|
freeSpinAvailable: zod.z.boolean(),
|
|
988
989
|
nextFreeSpinAt: zod.z.string().nullable(),
|
|
990
|
+
freeSpinEveryDays: zod.z.number().int().positive(),
|
|
989
991
|
paidSpinPriceUsd: MoneyStringSchema,
|
|
990
992
|
paidSpinPriceNmn: MoneyStringSchema,
|
|
991
993
|
paidSpinsLeftToday: zod.z.number().int().nonnegative(),
|