@kl1/contracts 1.4.68 → 1.4.69

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
@@ -9880,6 +9880,7 @@ var MailAccountSchema = z123.object({
9880
9880
  id: z123.string(),
9881
9881
  name: z123.string(),
9882
9882
  address: z123.string(),
9883
+ signature: z123.string().nullable(),
9883
9884
  accountId: z123.string(),
9884
9885
  mailServerId: z123.string(),
9885
9886
  mailServer: MailServerSchema,
@@ -10295,7 +10296,8 @@ var AccountContractsValidationSchemas = {
10295
10296
  address: z128.string().min(1, "Email address cannot be empty.").email("Invalid email address."),
10296
10297
  name: z128.string().min(1, "Account name cannot be empty."),
10297
10298
  password: z128.string().min(1, "Password cannot be empty."),
10298
- mailServerId: z128.string().uuid("Invalid mail_server_id")
10299
+ mailServerId: z128.string().uuid("Invalid mail_server_id"),
10300
+ signature: z128.string().optional().default("")
10299
10301
  })
10300
10302
  },
10301
10303
  createWithCustomSmtpAndImap: {