@kl1/contracts 1.0.55 → 1.0.57

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
@@ -1116,6 +1116,7 @@ var CxLogSchemaWithRelations = DefaultEntitySchema.extend({
1116
1116
  caseId: z29.number(),
1117
1117
  entityId: z29.string().uuid(),
1118
1118
  entityName: z29.string(),
1119
+ customerPhone: z29.string().nullable(),
1119
1120
  channelType: z29.string().nullable(),
1120
1121
  channel: z29.string().nullable(),
1121
1122
  direction: z29.string().nullable(),
@@ -1526,6 +1527,10 @@ var ChannelServiceResponseSchema = DefaultSuccessResponseSchema.extend(
1526
1527
  );
1527
1528
  var ReceiveMessageSchema = z32.object({
1528
1529
  message: z32.object({
1530
+ id: z32.string().uuid(),
1531
+ createdAt: z32.string(),
1532
+ updatedAt: z32.string(),
1533
+ deletedAt: z32.string().nullable(),
1529
1534
  message: z32.string().optional(),
1530
1535
  direction: MessageDirectionTypeSchema,
1531
1536
  type: MessageTypeSchema,
@@ -1759,7 +1764,7 @@ var mainChatContract = initContract7().router(
1759
1764
  },
1760
1765
  readRoom: {
1761
1766
  method: "POST",
1762
- path: "/room/read/:roomid",
1767
+ path: "/room/read/:roomId",
1763
1768
  pathParams: z33.object({
1764
1769
  roomId: z33.string().uuid()
1765
1770
  }),
@@ -5957,6 +5962,7 @@ export {
5957
5962
  apiContract,
5958
5963
  attributeContract,
5959
5964
  categoryContract,
5965
+ channelContract,
5960
5966
  chatContract,
5961
5967
  commentActivityContract,
5962
5968
  commentContract,
@@ -5965,8 +5971,10 @@ export {
5965
5971
  dashboardContract,
5966
5972
  evaluateFormContract,
5967
5973
  extensionContract2 as extensionContract,
5974
+ mainChatContract,
5968
5975
  permissionContract,
5969
5976
  platformContract,
5977
+ receiveMessageContract,
5970
5978
  tagContract,
5971
5979
  telephonyCdrContract,
5972
5980
  telephonyContract,