@kl1/contracts 1.0.24 → 1.0.25

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
@@ -2326,6 +2326,17 @@ var cxLogContract = initContract9().router({
2326
2326
  },
2327
2327
  query: GetAllCxLogQueryParamsSchema,
2328
2328
  summary: "Get all cx-logs"
2329
+ },
2330
+ export: {
2331
+ method: "GET",
2332
+ path: "/cx-logs/export",
2333
+ headers: DefaultHeaderSchema,
2334
+ responses: {
2335
+ 200: null,
2336
+ 401: DefaultUnauthorizedSchema
2337
+ },
2338
+ query: GetAllCxLogQueryParamsSchema,
2339
+ summary: "Export cx-logs"
2329
2340
  }
2330
2341
  });
2331
2342
 
@@ -4480,14 +4491,14 @@ var dashboardContract = initContract29().router(
4480
4491
  },
4481
4492
  getConversationActivity: {
4482
4493
  method: "GET",
4483
- path: "/message/conversation-activities",
4494
+ path: "/message/customers",
4484
4495
  // conversation activity
4485
4496
  summary: "Get message contact data",
4486
4497
  query: GetDashboardQueryParamsSchema,
4487
4498
  headers: DefaultHeaderSchema,
4488
4499
  responses: {
4489
4500
  200: DefaultSuccessResponseSchema.extend({
4490
- conversationActivity: ConversationCountStatusSchema
4501
+ customerCountStatus: ConversationCountStatusSchema
4491
4502
  }),
4492
4503
  401: DefaultUnauthorizedSchema
4493
4504
  }
@@ -4500,7 +4511,7 @@ var dashboardContract = initContract29().router(
4500
4511
  headers: DefaultHeaderSchema,
4501
4512
  responses: {
4502
4513
  200: DefaultSuccessResponseSchema.extend({
4503
- roomStatusCountByStatus: MessageStatusSchema
4514
+ messageStatus: MessageStatusSchema
4504
4515
  }),
4505
4516
  401: DefaultUnauthorizedSchema
4506
4517
  }
@@ -4513,7 +4524,7 @@ var dashboardContract = initContract29().router(
4513
4524
  headers: DefaultHeaderSchema,
4514
4525
  responses: {
4515
4526
  200: DefaultSuccessResponseSchema.extend({
4516
- roomStatusAverage: MessageAverageSchema
4527
+ messageAverageData: MessageAverageSchema
4517
4528
  }),
4518
4529
  401: DefaultUnauthorizedSchema
4519
4530
  }
@@ -4539,7 +4550,7 @@ var dashboardContract = initContract29().router(
4539
4550
  headers: DefaultHeaderSchema,
4540
4551
  responses: {
4541
4552
  200: DefaultSuccessResponseSchema.extend({
4542
- messageRoomStatusDispositionData: MessageDispositionSchema
4553
+ messageDisposition: MessageDispositionSchema
4543
4554
  }),
4544
4555
  401: DefaultUnauthorizedSchema
4545
4556
  }
@@ -4552,7 +4563,7 @@ var dashboardContract = initContract29().router(
4552
4563
  headers: DefaultHeaderSchema,
4553
4564
  responses: {
4554
4565
  200: DefaultSuccessResponseSchema.extend({
4555
- incomingMessageByPlatform: MessageIncomingDataSchema
4566
+ messageIncomingData: MessageIncomingDataSchema
4556
4567
  }),
4557
4568
  401: DefaultUnauthorizedSchema
4558
4569
  }
@@ -4565,7 +4576,7 @@ var dashboardContract = initContract29().router(
4565
4576
  headers: DefaultHeaderSchema,
4566
4577
  responses: {
4567
4578
  200: DefaultSuccessResponseSchema.extend({
4568
- totalIncomingMessageData: MessageTotalIncomingDataSchema
4579
+ messageTotalIncomingData: MessageTotalIncomingDataSchema
4569
4580
  }),
4570
4581
  401: DefaultUnauthorizedSchema
4571
4582
  }