forstok-ui-lib 5.0.3 → 5.1.0

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.
@@ -33,4 +33,24 @@ export type THierarchy = {
33
33
  evOpenPopup?: TPopupOpenFunction
34
34
  evCloseDropdown?: TCloseDropdownFunction
35
35
  evCreateMessageQuestion?: TMessageQuestionFunction
36
+ }
37
+ export type TChannel = {
38
+ channelName?: string
39
+ channelInitials?: string
40
+ channelColor?: string
41
+ channelImage?: string
42
+ channelId?: number
43
+ name?: string | null
44
+ initials?: string | null
45
+ color?: string | null
46
+ icon?: string | null
47
+ id?: number | null
48
+ totalStores?: number
49
+ Stores?: {
50
+ id?: number
51
+ storeName?: string
52
+ storeImage?: string
53
+ storeImageName?: string
54
+ }[]
55
+ availableAPI?: boolean | null
36
56
  }