@rubytech/taskmaster 1.12.0 → 1.12.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.12.0",
3
- "commit": "ebb96bd656e075830461ab3dfe33e15ebb3332b5",
4
- "builtAt": "2026-03-01T20:21:45.170Z"
2
+ "version": "1.12.1",
3
+ "commit": "9b25ea5bacf5efb9a4ad6dadef692ee7a44e7915",
4
+ "builtAt": "2026-03-02T10:53:03.436Z"
5
5
  }
@@ -583,6 +583,24 @@ export const TaskmasterSchema = z
583
583
  cookieTtlDays: z.number().int().positive().optional(),
584
584
  greeting: z.string().max(500).optional(), // deprecated — migrated to greetings map
585
585
  greetings: z.record(z.string(), z.string().max(500)).optional(),
586
+ accountSettings: z
587
+ .record(z.string(), z
588
+ .object({
589
+ auth: z
590
+ .union([z.literal("anonymous"), z.literal("verified"), z.literal("choice")])
591
+ .optional(),
592
+ verifyMethods: z
593
+ .array(z.union([
594
+ z.literal("whatsapp"),
595
+ z.literal("sms"),
596
+ z.literal("email"),
597
+ z.literal("phone"),
598
+ ]))
599
+ .min(1)
600
+ .optional(),
601
+ })
602
+ .strict())
603
+ .optional(),
586
604
  sms: z
587
605
  .object({
588
606
  accountSid: z.string().optional(),