@kl1/contracts 1.4.74 → 1.4.76

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.mjs CHANGED
@@ -8607,7 +8607,7 @@ var ContactContractValidationSchema2 = {
8607
8607
  var SendMessageSchema2 = z109.object({
8608
8608
  channelId: z109.string(),
8609
8609
  message: z109.string(),
8610
- contactId: z109.string().optional(),
8610
+ contactId: z109.union([z109.string(), z109.array(z109.string())]).optional(),
8611
8611
  platformUserId: z109.string().optional()
8612
8612
  });
8613
8613
  var GetCxLogsSchema = z109.object({
@@ -10798,7 +10798,7 @@ var MessageContractsValidationsSchema = {
10798
10798
  text: z134.string(),
10799
10799
  html: z134.string(),
10800
10800
  from: MailParticipant2,
10801
- to: MailParticipant2,
10801
+ to: z134.array(MailParticipant2),
10802
10802
  cc: z134.array(MailParticipant2).optional(),
10803
10803
  bcc: z134.array(MailParticipant2).optional(),
10804
10804
  sendAt: z134.string().optional(),