@kl1/contracts 1.0.91 → 1.0.93

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
@@ -1482,6 +1482,9 @@ var ChannelSchema2 = z29.object({
1482
1482
  });
1483
1483
  var ReloginChanelSchema = ChannelSchema2.extend({
1484
1484
  id: z29.string().uuid(),
1485
+ createdAt: z29.string(),
1486
+ updatedAt: z29.string(),
1487
+ deletedAt: z29.string().nullable(),
1485
1488
  isReloginRequired: z29.boolean()
1486
1489
  });
1487
1490
  var SendMessageToPlatformSchema = z29.object({
@@ -4692,7 +4695,7 @@ var messengerContract = initContract23().router({
4692
4695
  relogin: {
4693
4696
  method: "POST",
4694
4697
  path: "/relogin",
4695
- body: ReloginChanelSchema.partial(),
4698
+ body: ReloginChanelSchema,
4696
4699
  responses: {
4697
4700
  200: ChannelServiceResponseSchema,
4698
4701
  500: DefaultErrorResponseSchema,
@@ -5013,7 +5016,8 @@ var GetAllTelephonyCdrSchema = DefaultQueryParamsSchema.extend({
5013
5016
  callFrom: z74.string().optional(),
5014
5017
  callTo: z74.string().optional(),
5015
5018
  trunk: z74.array(z74.string()).optional(),
5016
- queueStatus: z74.boolean().optional()
5019
+ userId: z74.string().uuid().optional(),
5020
+ queueStatus: z74.string().optional()
5017
5021
  });
5018
5022
  var GetRecentTelephonyCdrSchema = DefaultQueryParamsSchema.extend({
5019
5023
  type: z74.array(z74.string()).optional(),