@numen-crypto/contract 0.17.1 → 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 +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
|
@@ -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;
|
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;
|
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(),
|