@numen-crypto/contract 0.17.0 → 0.17.1
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 +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3724,6 +3724,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3724
3724
|
paidSpinEnabled: z.ZodBoolean;
|
|
3725
3725
|
freeSpinAvailable: z.ZodBoolean;
|
|
3726
3726
|
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3727
|
+
freeSpinEveryDays: z.ZodNumber;
|
|
3727
3728
|
paidSpinPriceUsd: z.ZodString;
|
|
3728
3729
|
paidSpinPriceNmn: z.ZodString;
|
|
3729
3730
|
paidSpinsLeftToday: z.ZodNumber;
|
|
@@ -3788,6 +3789,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3788
3789
|
paidSpinEnabled: boolean;
|
|
3789
3790
|
freeSpinAvailable: boolean;
|
|
3790
3791
|
nextFreeSpinAt: string | null;
|
|
3792
|
+
freeSpinEveryDays: number;
|
|
3791
3793
|
paidSpinPriceUsd: string;
|
|
3792
3794
|
paidSpinPriceNmn: string;
|
|
3793
3795
|
paidSpinsLeftToday: number;
|
|
@@ -3816,6 +3818,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3816
3818
|
paidSpinEnabled: boolean;
|
|
3817
3819
|
freeSpinAvailable: boolean;
|
|
3818
3820
|
nextFreeSpinAt: string | null;
|
|
3821
|
+
freeSpinEveryDays: number;
|
|
3819
3822
|
paidSpinPriceUsd: string;
|
|
3820
3823
|
paidSpinPriceNmn: string;
|
|
3821
3824
|
paidSpinsLeftToday: number;
|
|
@@ -3918,6 +3921,7 @@ declare namespace GetWheelCommand {
|
|
|
3918
3921
|
paidSpinEnabled: z.ZodBoolean;
|
|
3919
3922
|
freeSpinAvailable: z.ZodBoolean;
|
|
3920
3923
|
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3924
|
+
freeSpinEveryDays: z.ZodNumber;
|
|
3921
3925
|
paidSpinPriceUsd: z.ZodString;
|
|
3922
3926
|
paidSpinPriceNmn: z.ZodString;
|
|
3923
3927
|
paidSpinsLeftToday: z.ZodNumber;
|
|
@@ -3982,6 +3986,7 @@ declare namespace GetWheelCommand {
|
|
|
3982
3986
|
paidSpinEnabled: boolean;
|
|
3983
3987
|
freeSpinAvailable: boolean;
|
|
3984
3988
|
nextFreeSpinAt: string | null;
|
|
3989
|
+
freeSpinEveryDays: number;
|
|
3985
3990
|
paidSpinPriceUsd: string;
|
|
3986
3991
|
paidSpinPriceNmn: string;
|
|
3987
3992
|
paidSpinsLeftToday: number;
|
|
@@ -4010,6 +4015,7 @@ declare namespace GetWheelCommand {
|
|
|
4010
4015
|
paidSpinEnabled: boolean;
|
|
4011
4016
|
freeSpinAvailable: boolean;
|
|
4012
4017
|
nextFreeSpinAt: string | null;
|
|
4018
|
+
freeSpinEveryDays: number;
|
|
4013
4019
|
paidSpinPriceUsd: string;
|
|
4014
4020
|
paidSpinPriceNmn: string;
|
|
4015
4021
|
paidSpinsLeftToday: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -3724,6 +3724,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3724
3724
|
paidSpinEnabled: z.ZodBoolean;
|
|
3725
3725
|
freeSpinAvailable: z.ZodBoolean;
|
|
3726
3726
|
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3727
|
+
freeSpinEveryDays: z.ZodNumber;
|
|
3727
3728
|
paidSpinPriceUsd: z.ZodString;
|
|
3728
3729
|
paidSpinPriceNmn: z.ZodString;
|
|
3729
3730
|
paidSpinsLeftToday: z.ZodNumber;
|
|
@@ -3788,6 +3789,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3788
3789
|
paidSpinEnabled: boolean;
|
|
3789
3790
|
freeSpinAvailable: boolean;
|
|
3790
3791
|
nextFreeSpinAt: string | null;
|
|
3792
|
+
freeSpinEveryDays: number;
|
|
3791
3793
|
paidSpinPriceUsd: string;
|
|
3792
3794
|
paidSpinPriceNmn: string;
|
|
3793
3795
|
paidSpinsLeftToday: number;
|
|
@@ -3816,6 +3818,7 @@ declare const WheelStatusSchema: z.ZodObject<{
|
|
|
3816
3818
|
paidSpinEnabled: boolean;
|
|
3817
3819
|
freeSpinAvailable: boolean;
|
|
3818
3820
|
nextFreeSpinAt: string | null;
|
|
3821
|
+
freeSpinEveryDays: number;
|
|
3819
3822
|
paidSpinPriceUsd: string;
|
|
3820
3823
|
paidSpinPriceNmn: string;
|
|
3821
3824
|
paidSpinsLeftToday: number;
|
|
@@ -3918,6 +3921,7 @@ declare namespace GetWheelCommand {
|
|
|
3918
3921
|
paidSpinEnabled: z.ZodBoolean;
|
|
3919
3922
|
freeSpinAvailable: z.ZodBoolean;
|
|
3920
3923
|
nextFreeSpinAt: z.ZodNullable<z.ZodString>;
|
|
3924
|
+
freeSpinEveryDays: z.ZodNumber;
|
|
3921
3925
|
paidSpinPriceUsd: z.ZodString;
|
|
3922
3926
|
paidSpinPriceNmn: z.ZodString;
|
|
3923
3927
|
paidSpinsLeftToday: z.ZodNumber;
|
|
@@ -3982,6 +3986,7 @@ declare namespace GetWheelCommand {
|
|
|
3982
3986
|
paidSpinEnabled: boolean;
|
|
3983
3987
|
freeSpinAvailable: boolean;
|
|
3984
3988
|
nextFreeSpinAt: string | null;
|
|
3989
|
+
freeSpinEveryDays: number;
|
|
3985
3990
|
paidSpinPriceUsd: string;
|
|
3986
3991
|
paidSpinPriceNmn: string;
|
|
3987
3992
|
paidSpinsLeftToday: number;
|
|
@@ -4010,6 +4015,7 @@ declare namespace GetWheelCommand {
|
|
|
4010
4015
|
paidSpinEnabled: boolean;
|
|
4011
4016
|
freeSpinAvailable: boolean;
|
|
4012
4017
|
nextFreeSpinAt: string | null;
|
|
4018
|
+
freeSpinEveryDays: number;
|
|
4013
4019
|
paidSpinPriceUsd: string;
|
|
4014
4020
|
paidSpinPriceNmn: string;
|
|
4015
4021
|
paidSpinsLeftToday: number;
|
package/dist/index.js
CHANGED
|
@@ -984,6 +984,7 @@ var WheelStatusSchema = z.object({
|
|
|
984
984
|
paidSpinEnabled: z.boolean(),
|
|
985
985
|
freeSpinAvailable: z.boolean(),
|
|
986
986
|
nextFreeSpinAt: z.string().nullable(),
|
|
987
|
+
freeSpinEveryDays: z.number().int().positive(),
|
|
987
988
|
paidSpinPriceUsd: MoneyStringSchema,
|
|
988
989
|
paidSpinPriceNmn: MoneyStringSchema,
|
|
989
990
|
paidSpinsLeftToday: z.number().int().nonnegative(),
|