@kl1/contracts 1.4.68 → 1.4.71

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
@@ -3252,8 +3252,7 @@ var mainChatContract = initContract8().router(
3252
3252
  }
3253
3253
  },
3254
3254
  {
3255
- baseHeaders: DefaultHeaderSchema,
3256
- pathPrefix: "ms/chat"
3255
+ baseHeaders: DefaultHeaderSchema
3257
3256
  }
3258
3257
  );
3259
3258
  var initiateMessageContract = initContract8().router(
@@ -9880,6 +9879,7 @@ var MailAccountSchema = z123.object({
9880
9879
  id: z123.string(),
9881
9880
  name: z123.string(),
9882
9881
  address: z123.string(),
9882
+ signature: z123.string().nullable(),
9883
9883
  accountId: z123.string(),
9884
9884
  mailServerId: z123.string(),
9885
9885
  mailServer: MailServerSchema,
@@ -10295,7 +10295,8 @@ var AccountContractsValidationSchemas = {
10295
10295
  address: z128.string().min(1, "Email address cannot be empty.").email("Invalid email address."),
10296
10296
  name: z128.string().min(1, "Account name cannot be empty."),
10297
10297
  password: z128.string().min(1, "Password cannot be empty."),
10298
- mailServerId: z128.string().uuid("Invalid mail_server_id")
10298
+ mailServerId: z128.string().uuid("Invalid mail_server_id"),
10299
+ signature: z128.string().optional().default("")
10299
10300
  })
10300
10301
  },
10301
10302
  createWithCustomSmtpAndImap: {