@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.
- package/dist/build-info.json +3 -3
- package/dist/config/zod-schema.js +18 -0
- package/dist/control-ui/assets/{index-DpMaqt-b.js → index-4h8fLLNN.js} +76 -74
- package/dist/control-ui/assets/index-4h8fLLNN.js.map +1 -0
- package/dist/control-ui/index.html +1 -1
- package/dist/gateway/control-ui.js +24 -9
- package/dist/gateway/public-chat/deliver-email.js +5 -5
- package/dist/gateway/public-chat/deliver-otp.js +3 -3
- package/dist/gateway/public-chat/deliver-sms.js +5 -1
- package/dist/gateway/public-chat-api.js +26 -11
- package/dist/gateway/server-methods/public-chat.js +4 -2
- package/package.json +1 -1
- package/dist/control-ui/assets/index-DpMaqt-b.js.map +0 -1
package/dist/build-info.json
CHANGED
|
@@ -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(),
|