@kl1/contracts 1.1.39 → 1.1.40

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.
@@ -77475,6 +77475,53 @@ export declare const mainChatContract: {
77475
77475
  'x-client-timezone'?: string | undefined;
77476
77476
  }>>>;
77477
77477
  };
77478
+ getUnreadCounts: {
77479
+ method: "GET";
77480
+ responses: {
77481
+ 200: z.ZodObject<{
77482
+ requestId: z.ZodString;
77483
+ unreadCountsByAssignee: z.ZodArray<z.ZodObject<{
77484
+ assigneeId: z.ZodString;
77485
+ totalUnreadCount: z.ZodNumber;
77486
+ }, "strip", z.ZodTypeAny, {
77487
+ assigneeId: string;
77488
+ totalUnreadCount: number;
77489
+ }, {
77490
+ assigneeId: string;
77491
+ totalUnreadCount: number;
77492
+ }>, "many">;
77493
+ }, "strip", z.ZodTypeAny, {
77494
+ requestId: string;
77495
+ unreadCountsByAssignee: {
77496
+ assigneeId: string;
77497
+ totalUnreadCount: number;
77498
+ }[];
77499
+ }, {
77500
+ requestId: string;
77501
+ unreadCountsByAssignee: {
77502
+ assigneeId: string;
77503
+ totalUnreadCount: number;
77504
+ }[];
77505
+ }>;
77506
+ };
77507
+ path: "chat/rooms/unread-count";
77508
+ headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
77509
+ 'x-tenant': z.ZodString;
77510
+ authorization: z.ZodString;
77511
+ 'x-code': z.ZodOptional<z.ZodString>;
77512
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
77513
+ }, "strip", z.ZodTypeAny, {
77514
+ 'x-tenant': string;
77515
+ authorization: string;
77516
+ 'x-client-timezone': string;
77517
+ 'x-code'?: string | undefined;
77518
+ }, {
77519
+ 'x-tenant': string;
77520
+ authorization: string;
77521
+ 'x-code'?: string | undefined;
77522
+ 'x-client-timezone'?: string | undefined;
77523
+ }>>>;
77524
+ };
77478
77525
  getRoomsByPlatformContactId: {
77479
77526
  method: "GET";
77480
77527
  pathParams: z.ZodObject<{