@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.d.cts CHANGED
@@ -1067,6 +1067,7 @@ declare const DailyBonusDaySchema: z.ZodObject<{
1067
1067
  }>;
1068
1068
  type DailyBonusDay = z.infer<typeof DailyBonusDaySchema>;
1069
1069
  declare const DailyBonusStatusSchema: z.ZodObject<{
1070
+ enabled: z.ZodBoolean;
1070
1071
  currentStreak: z.ZodNumber;
1071
1072
  cycleLength: z.ZodNumber;
1072
1073
  claimableToday: z.ZodBoolean;
@@ -1093,6 +1094,7 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
1093
1094
  claimedNmn: string | null;
1094
1095
  }>, "many">;
1095
1096
  }, "strip", z.ZodTypeAny, {
1097
+ enabled: boolean;
1096
1098
  currentStreak: number;
1097
1099
  cycleLength: number;
1098
1100
  claimableToday: boolean;
@@ -1107,6 +1109,7 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
1107
1109
  claimedNmn: string | null;
1108
1110
  }[];
1109
1111
  }, {
1112
+ enabled: boolean;
1110
1113
  currentStreak: number;
1111
1114
  cycleLength: number;
1112
1115
  claimableToday: boolean;
@@ -3575,6 +3578,7 @@ declare namespace UpdateSettingsCommand {
3575
3578
  declare namespace GetDailyBonusCommand {
3576
3579
  const endpointDetails: EndpointDetails;
3577
3580
  const ResponseSchema: z.ZodObject<{
3581
+ enabled: z.ZodBoolean;
3578
3582
  currentStreak: z.ZodNumber;
3579
3583
  cycleLength: z.ZodNumber;
3580
3584
  claimableToday: z.ZodBoolean;
@@ -3601,6 +3605,7 @@ declare namespace GetDailyBonusCommand {
3601
3605
  claimedNmn: string | null;
3602
3606
  }>, "many">;
3603
3607
  }, "strip", z.ZodTypeAny, {
3608
+ enabled: boolean;
3604
3609
  currentStreak: number;
3605
3610
  cycleLength: number;
3606
3611
  claimableToday: boolean;
@@ -3615,6 +3620,7 @@ declare namespace GetDailyBonusCommand {
3615
3620
  claimedNmn: string | null;
3616
3621
  }[];
3617
3622
  }, {
3623
+ enabled: boolean;
3618
3624
  currentStreak: number;
3619
3625
  cycleLength: number;
3620
3626
  claimableToday: boolean;
@@ -3724,6 +3730,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3724
3730
  paidSpinEnabled: z.ZodBoolean;
3725
3731
  freeSpinAvailable: z.ZodBoolean;
3726
3732
  nextFreeSpinAt: z.ZodNullable<z.ZodString>;
3733
+ freeSpinEveryDays: z.ZodNumber;
3727
3734
  paidSpinPriceUsd: z.ZodString;
3728
3735
  paidSpinPriceNmn: z.ZodString;
3729
3736
  paidSpinsLeftToday: z.ZodNumber;
@@ -3788,6 +3795,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3788
3795
  paidSpinEnabled: boolean;
3789
3796
  freeSpinAvailable: boolean;
3790
3797
  nextFreeSpinAt: string | null;
3798
+ freeSpinEveryDays: number;
3791
3799
  paidSpinPriceUsd: string;
3792
3800
  paidSpinPriceNmn: string;
3793
3801
  paidSpinsLeftToday: number;
@@ -3816,6 +3824,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3816
3824
  paidSpinEnabled: boolean;
3817
3825
  freeSpinAvailable: boolean;
3818
3826
  nextFreeSpinAt: string | null;
3827
+ freeSpinEveryDays: number;
3819
3828
  paidSpinPriceUsd: string;
3820
3829
  paidSpinPriceNmn: string;
3821
3830
  paidSpinsLeftToday: number;
@@ -3918,6 +3927,7 @@ declare namespace GetWheelCommand {
3918
3927
  paidSpinEnabled: z.ZodBoolean;
3919
3928
  freeSpinAvailable: z.ZodBoolean;
3920
3929
  nextFreeSpinAt: z.ZodNullable<z.ZodString>;
3930
+ freeSpinEveryDays: z.ZodNumber;
3921
3931
  paidSpinPriceUsd: z.ZodString;
3922
3932
  paidSpinPriceNmn: z.ZodString;
3923
3933
  paidSpinsLeftToday: z.ZodNumber;
@@ -3982,6 +3992,7 @@ declare namespace GetWheelCommand {
3982
3992
  paidSpinEnabled: boolean;
3983
3993
  freeSpinAvailable: boolean;
3984
3994
  nextFreeSpinAt: string | null;
3995
+ freeSpinEveryDays: number;
3985
3996
  paidSpinPriceUsd: string;
3986
3997
  paidSpinPriceNmn: string;
3987
3998
  paidSpinsLeftToday: number;
@@ -4010,6 +4021,7 @@ declare namespace GetWheelCommand {
4010
4021
  paidSpinEnabled: boolean;
4011
4022
  freeSpinAvailable: boolean;
4012
4023
  nextFreeSpinAt: string | null;
4024
+ freeSpinEveryDays: number;
4013
4025
  paidSpinPriceUsd: string;
4014
4026
  paidSpinPriceNmn: string;
4015
4027
  paidSpinsLeftToday: number;
package/dist/index.d.ts CHANGED
@@ -1067,6 +1067,7 @@ declare const DailyBonusDaySchema: z.ZodObject<{
1067
1067
  }>;
1068
1068
  type DailyBonusDay = z.infer<typeof DailyBonusDaySchema>;
1069
1069
  declare const DailyBonusStatusSchema: z.ZodObject<{
1070
+ enabled: z.ZodBoolean;
1070
1071
  currentStreak: z.ZodNumber;
1071
1072
  cycleLength: z.ZodNumber;
1072
1073
  claimableToday: z.ZodBoolean;
@@ -1093,6 +1094,7 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
1093
1094
  claimedNmn: string | null;
1094
1095
  }>, "many">;
1095
1096
  }, "strip", z.ZodTypeAny, {
1097
+ enabled: boolean;
1096
1098
  currentStreak: number;
1097
1099
  cycleLength: number;
1098
1100
  claimableToday: boolean;
@@ -1107,6 +1109,7 @@ declare const DailyBonusStatusSchema: z.ZodObject<{
1107
1109
  claimedNmn: string | null;
1108
1110
  }[];
1109
1111
  }, {
1112
+ enabled: boolean;
1110
1113
  currentStreak: number;
1111
1114
  cycleLength: number;
1112
1115
  claimableToday: boolean;
@@ -3575,6 +3578,7 @@ declare namespace UpdateSettingsCommand {
3575
3578
  declare namespace GetDailyBonusCommand {
3576
3579
  const endpointDetails: EndpointDetails;
3577
3580
  const ResponseSchema: z.ZodObject<{
3581
+ enabled: z.ZodBoolean;
3578
3582
  currentStreak: z.ZodNumber;
3579
3583
  cycleLength: z.ZodNumber;
3580
3584
  claimableToday: z.ZodBoolean;
@@ -3601,6 +3605,7 @@ declare namespace GetDailyBonusCommand {
3601
3605
  claimedNmn: string | null;
3602
3606
  }>, "many">;
3603
3607
  }, "strip", z.ZodTypeAny, {
3608
+ enabled: boolean;
3604
3609
  currentStreak: number;
3605
3610
  cycleLength: number;
3606
3611
  claimableToday: boolean;
@@ -3615,6 +3620,7 @@ declare namespace GetDailyBonusCommand {
3615
3620
  claimedNmn: string | null;
3616
3621
  }[];
3617
3622
  }, {
3623
+ enabled: boolean;
3618
3624
  currentStreak: number;
3619
3625
  cycleLength: number;
3620
3626
  claimableToday: boolean;
@@ -3724,6 +3730,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3724
3730
  paidSpinEnabled: z.ZodBoolean;
3725
3731
  freeSpinAvailable: z.ZodBoolean;
3726
3732
  nextFreeSpinAt: z.ZodNullable<z.ZodString>;
3733
+ freeSpinEveryDays: z.ZodNumber;
3727
3734
  paidSpinPriceUsd: z.ZodString;
3728
3735
  paidSpinPriceNmn: z.ZodString;
3729
3736
  paidSpinsLeftToday: z.ZodNumber;
@@ -3788,6 +3795,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3788
3795
  paidSpinEnabled: boolean;
3789
3796
  freeSpinAvailable: boolean;
3790
3797
  nextFreeSpinAt: string | null;
3798
+ freeSpinEveryDays: number;
3791
3799
  paidSpinPriceUsd: string;
3792
3800
  paidSpinPriceNmn: string;
3793
3801
  paidSpinsLeftToday: number;
@@ -3816,6 +3824,7 @@ declare const WheelStatusSchema: z.ZodObject<{
3816
3824
  paidSpinEnabled: boolean;
3817
3825
  freeSpinAvailable: boolean;
3818
3826
  nextFreeSpinAt: string | null;
3827
+ freeSpinEveryDays: number;
3819
3828
  paidSpinPriceUsd: string;
3820
3829
  paidSpinPriceNmn: string;
3821
3830
  paidSpinsLeftToday: number;
@@ -3918,6 +3927,7 @@ declare namespace GetWheelCommand {
3918
3927
  paidSpinEnabled: z.ZodBoolean;
3919
3928
  freeSpinAvailable: z.ZodBoolean;
3920
3929
  nextFreeSpinAt: z.ZodNullable<z.ZodString>;
3930
+ freeSpinEveryDays: z.ZodNumber;
3921
3931
  paidSpinPriceUsd: z.ZodString;
3922
3932
  paidSpinPriceNmn: z.ZodString;
3923
3933
  paidSpinsLeftToday: z.ZodNumber;
@@ -3982,6 +3992,7 @@ declare namespace GetWheelCommand {
3982
3992
  paidSpinEnabled: boolean;
3983
3993
  freeSpinAvailable: boolean;
3984
3994
  nextFreeSpinAt: string | null;
3995
+ freeSpinEveryDays: number;
3985
3996
  paidSpinPriceUsd: string;
3986
3997
  paidSpinPriceNmn: string;
3987
3998
  paidSpinsLeftToday: number;
@@ -4010,6 +4021,7 @@ declare namespace GetWheelCommand {
4010
4021
  paidSpinEnabled: boolean;
4011
4022
  freeSpinAvailable: boolean;
4012
4023
  nextFreeSpinAt: string | null;
4024
+ freeSpinEveryDays: number;
4013
4025
  paidSpinPriceUsd: string;
4014
4026
  paidSpinPriceNmn: string;
4015
4027
  paidSpinsLeftToday: number;
package/dist/index.js CHANGED
@@ -337,6 +337,7 @@ var DailyBonusDaySchema = z.object({
337
337
  claimedNmn: MoneyStringSchema.nullable()
338
338
  });
339
339
  var DailyBonusStatusSchema = z.object({
340
+ enabled: z.boolean(),
340
341
  currentStreak: z.number().int().nonnegative(),
341
342
  cycleLength: z.number().int().positive(),
342
343
  claimableToday: z.boolean(),
@@ -984,6 +985,7 @@ var WheelStatusSchema = z.object({
984
985
  paidSpinEnabled: z.boolean(),
985
986
  freeSpinAvailable: z.boolean(),
986
987
  nextFreeSpinAt: z.string().nullable(),
988
+ freeSpinEveryDays: z.number().int().positive(),
987
989
  paidSpinPriceUsd: MoneyStringSchema,
988
990
  paidSpinPriceNmn: MoneyStringSchema,
989
991
  paidSpinsLeftToday: z.number().int().nonnegative(),