@webitel/ui-sdk 26.8.39 → 26.8.41

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.
@@ -2,9 +2,12 @@ export default CatalogAPI;
2
2
  declare namespace CatalogAPI {
3
3
  export { getChatMessagesList };
4
4
  }
5
- declare function getChatMessagesList({ chatId }: {
5
+ declare function getChatMessagesList({ chatId, offsetDate, limit }: {
6
6
  chatId: any;
7
+ offsetDate: any;
8
+ limit: any;
7
9
  }): Promise<{
8
10
  items: any;
9
11
  peers: any;
12
+ next: any;
10
13
  }>;
@@ -21,9 +21,9 @@ type __VLS_Slots = {} & {
21
21
  default?: (props: typeof __VLS_8) => any;
22
22
  };
23
23
  declare const __VLS_base: import("vue").DefineComponent<WtProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24
- remove: () => any;
24
+ remove: (event: MouseEvent) => any;
25
25
  }, string, import("vue").PublicProps, Readonly<WtProps> & Readonly<{
26
- onRemove?: (() => any) | undefined;
26
+ onRemove?: ((event: MouseEvent) => any) | undefined;
27
27
  }>, {
28
28
  color: ChipColor;
29
29
  removable: boolean;