@kl1/contracts 1.3.27 → 1.3.28

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
@@ -4602,9 +4602,9 @@ var dashboardContract = initContract13().router(
4602
4602
  }
4603
4603
  },
4604
4604
  exportRoomTagCounts: {
4605
- method: "POST",
4605
+ method: "GET",
4606
4606
  path: "/export-room-tag-counts",
4607
- body: DashboardGlobalFiltersSchema.extend({
4607
+ query: DashboardGlobalFiltersSchema.extend({
4608
4608
  fileExtension: ExportFileExtensionSchema
4609
4609
  }),
4610
4610
  responses: {
@@ -4678,9 +4678,9 @@ var dashboardContract = initContract13().router(
4678
4678
  }
4679
4679
  },
4680
4680
  exportMessageAverageData: {
4681
- method: "POST",
4681
+ method: "GET",
4682
4682
  path: "/export-message-average-data",
4683
- body: z56.object({
4683
+ query: z56.object({
4684
4684
  selectedDate: z56.string().min(1),
4685
4685
  automationQueueId: z56.string().uuid().optional(),
4686
4686
  channelIds: z56.array(z56.string().uuid()).optional(),
@@ -4704,9 +4704,9 @@ var dashboardContract = initContract13().router(
4704
4704
  }
4705
4705
  },
4706
4706
  exportRoomChannelCounts: {
4707
- method: "POST",
4707
+ method: "GET",
4708
4708
  path: "/export-room-channel-counts",
4709
- body: DashboardGlobalFiltersSchema.extend({
4709
+ query: DashboardGlobalFiltersSchema.extend({
4710
4710
  fileExtension: ExportFileExtensionSchema
4711
4711
  }),
4712
4712
  responses: {
@@ -4731,9 +4731,9 @@ var dashboardContract = initContract13().router(
4731
4731
  }
4732
4732
  },
4733
4733
  exportRoomDispositionCounts: {
4734
- method: "POST",
4734
+ method: "GET",
4735
4735
  path: "/export-room-disposition-counts",
4736
- body: DashboardGlobalFiltersSchema.extend({
4736
+ query: DashboardGlobalFiltersSchema.extend({
4737
4737
  fileExtension: ExportFileExtensionSchema
4738
4738
  }),
4739
4739
  responses: {
@@ -4767,9 +4767,9 @@ var dashboardContract = initContract13().router(
4767
4767
  }
4768
4768
  },
4769
4769
  exportIncomingMessageCounts: {
4770
- method: "POST",
4770
+ method: "GET",
4771
4771
  path: "/export-incoming-message-counts",
4772
- body: DashboardGlobalFiltersSchema.extend({
4772
+ query: DashboardGlobalFiltersSchema.extend({
4773
4773
  fileExtension: ExportFileExtensionSchema
4774
4774
  }),
4775
4775
  responses: {
@@ -4838,9 +4838,9 @@ var dashboardContract = initContract13().router(
4838
4838
  }
4839
4839
  },
4840
4840
  exportAgentMessageStatistics: {
4841
- method: "POST",
4841
+ method: "GET",
4842
4842
  path: "/export-agent-message-statistics",
4843
- body: MessageDashboardDetailsQuerySchema.extend({
4843
+ query: MessageDashboardDetailsQuerySchema.extend({
4844
4844
  fileExtension: ExportFileExtensionSchema
4845
4845
  }),
4846
4846
  responses: {
@@ -4867,9 +4867,9 @@ var dashboardContract = initContract13().router(
4867
4867
  }
4868
4868
  },
4869
4869
  exportUserCheckInLogs: {
4870
- method: "POST",
4870
+ method: "GET",
4871
4871
  path: "/export-user-check-in-logs",
4872
- body: z56.object({
4872
+ query: z56.object({
4873
4873
  automationQueueId: z56.string().uuid().optional(),
4874
4874
  selectedDate: z56.string().min(1),
4875
4875
  keyword: z56.string().optional(),
@@ -4951,9 +4951,9 @@ var dashboardContract = initContract13().router(
4951
4951
  }
4952
4952
  },
4953
4953
  exportUserCheckInLogsByUserId: {
4954
- method: "POST",
4954
+ method: "GET",
4955
4955
  path: "/export-user-check-in-logs-by-user-id",
4956
- body: z56.object({
4956
+ query: z56.object({
4957
4957
  userId: z56.string().uuid(),
4958
4958
  selectedDate: z56.string().min(1),
4959
4959
  fileExtension: ExportFileExtensionSchema