adata-ui 3.0.2 → 3.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.
Files changed (316) hide show
  1. package/dist/module.d.mts +2 -0
  2. package/dist/module.json +5 -1
  3. package/dist/module.mjs +39 -6
  4. package/dist/runtime/components/Alert.vue +62 -0
  5. package/dist/runtime/components/Alert.vue.d.ts +29 -0
  6. package/dist/runtime/components/Chip.vue +24 -0
  7. package/dist/runtime/components/Chip.vue.d.ts +19 -0
  8. package/dist/runtime/components/ColorMode.vue +46 -0
  9. package/dist/runtime/components/ColorMode.vue.d.ts +2 -0
  10. package/dist/runtime/components/DigitBadge.vue +58 -0
  11. package/dist/runtime/components/DigitBadge.vue.d.ts +21 -0
  12. package/dist/runtime/components/Footer.vue +283 -0
  13. package/dist/runtime/components/Footer.vue.d.ts +2 -0
  14. package/dist/runtime/components/FooterAccordion.vue +78 -0
  15. package/dist/runtime/components/FooterAccordion.vue.d.ts +11 -0
  16. package/dist/runtime/components/Header.vue +139 -0
  17. package/dist/runtime/components/Header.vue.d.ts +41 -0
  18. package/dist/runtime/components/NewFooter.vue +267 -0
  19. package/dist/runtime/components/NewFooter.vue.d.ts +2 -0
  20. package/dist/runtime/components/NewFooterAccordion.vue +85 -0
  21. package/dist/runtime/components/NewFooterAccordion.vue.d.ts +11 -0
  22. package/dist/runtime/components/OtherServiceFeatures.vue +104 -0
  23. package/dist/runtime/components/OtherServiceFeatures.vue.d.ts +2 -0
  24. package/dist/runtime/components/Tag.vue +46 -0
  25. package/dist/runtime/components/Tag.vue.d.ts +25 -0
  26. package/dist/runtime/components/Toggle.vue +139 -0
  27. package/dist/runtime/components/Toggle.vue.d.ts +39 -0
  28. package/dist/runtime/components/accordion/Accordion.vue +149 -0
  29. package/dist/runtime/components/accordion/Accordion.vue.d.ts +41 -0
  30. package/dist/runtime/components/accordion/types.d.ts +15 -0
  31. package/dist/runtime/components/accordion/types.js +0 -0
  32. package/dist/runtime/components/accordion/ui.config.d.ts +22 -0
  33. package/dist/runtime/components/accordion/ui.config.js +21 -0
  34. package/dist/runtime/components/button/Button.vue +133 -0
  35. package/dist/runtime/components/button/Button.vue.d.ts +37 -0
  36. package/dist/runtime/components/button/types.d.ts +21 -0
  37. package/dist/runtime/components/button/types.js +0 -0
  38. package/dist/runtime/components/checkbox/Checkbox.vue +124 -0
  39. package/dist/runtime/components/checkbox/Checkbox.vue.d.ts +45 -0
  40. package/dist/runtime/components/date-picker/DatePicker.vue +102 -0
  41. package/dist/runtime/components/date-picker/DatePicker.vue.d.ts +16 -0
  42. package/dist/runtime/components/floating-label/FloatingLabel.vue +22 -0
  43. package/dist/runtime/components/floating-label/FloatingLabel.vue.d.ts +16 -0
  44. package/dist/runtime/components/forms/input/standard/InputStandard.vue +301 -0
  45. package/dist/runtime/components/forms/input/standard/InputStandard.vue.d.ts +0 -0
  46. package/dist/runtime/components/forms/input/textarea/ATextarea.vue +158 -0
  47. package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +43 -0
  48. package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue +114 -0
  49. package/dist/runtime/components/forms/need-more-data/NeedMoreData.vue.d.ts +5 -0
  50. package/dist/runtime/components/forms/request-demo/RequestDemo.vue +67 -0
  51. package/dist/runtime/components/forms/request-demo/RequestDemo.vue.d.ts +23 -0
  52. package/dist/runtime/components/header/AlmatyContacts.vue +120 -0
  53. package/dist/runtime/components/header/AlmatyContacts.vue.d.ts +2 -0
  54. package/dist/runtime/components/header/AstanaContacts.vue +65 -0
  55. package/dist/runtime/components/header/AstanaContacts.vue.d.ts +2 -0
  56. package/dist/runtime/components/header/CardGallery.vue +156 -0
  57. package/dist/runtime/components/header/CardGallery.vue.d.ts +2 -0
  58. package/dist/runtime/components/header/ContactMenu.vue +105 -0
  59. package/dist/runtime/components/header/ContactMenu.vue.d.ts +11 -0
  60. package/dist/runtime/components/header/HeaderLink.vue +169 -0
  61. package/dist/runtime/components/header/HeaderLink.vue.d.ts +2 -0
  62. package/dist/runtime/components/header/LangSwitcher.vue +48 -0
  63. package/dist/runtime/components/header/LangSwitcher.vue.d.ts +2 -0
  64. package/dist/runtime/components/header/ListItem.vue +26 -0
  65. package/dist/runtime/components/header/ListItem.vue.d.ts +7 -0
  66. package/dist/runtime/components/header/NavCard.vue +40 -0
  67. package/dist/runtime/components/header/NavCard.vue.d.ts +8 -0
  68. package/dist/runtime/components/header/NavList.vue +101 -0
  69. package/dist/runtime/components/header/NavList.vue.d.ts +17 -0
  70. package/dist/runtime/components/header/ProductMenu.vue +369 -0
  71. package/dist/runtime/components/header/ProductMenu.vue.d.ts +11 -0
  72. package/dist/runtime/components/header/ProfileMenu.vue +56 -0
  73. package/dist/runtime/components/header/ProfileMenu.vue.d.ts +16 -0
  74. package/dist/runtime/components/header/ProfileMenuContent.vue +228 -0
  75. package/dist/runtime/components/header/ProfileMenuContent.vue.d.ts +16 -0
  76. package/dist/runtime/components/header/TopHeader.vue +152 -0
  77. package/dist/runtime/components/header/TopHeader.vue.d.ts +10 -0
  78. package/dist/runtime/components/header/types.d.ts +19 -0
  79. package/dist/runtime/components/header/types.js +0 -0
  80. package/dist/runtime/components/header-mobile/HeaderMobile.vue +53 -0
  81. package/dist/runtime/components/header-mobile/HeaderMobile.vue.d.ts +17 -0
  82. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue +68 -0
  83. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue.d.ts +29 -0
  84. package/dist/runtime/components/mobile-navigation/MainButton.vue +16 -0
  85. package/dist/runtime/components/mobile-navigation/MainButton.vue.d.ts +2 -0
  86. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +261 -0
  87. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue.d.ts +2 -0
  88. package/dist/runtime/components/modals/NoAccessContent.vue +58 -0
  89. package/dist/runtime/components/modals/NoAccessContent.vue.d.ts +5 -0
  90. package/dist/runtime/components/pill-tabs/PillTabs.vue +137 -0
  91. package/dist/runtime/components/pill-tabs/PillTabs.vue.d.ts +38 -0
  92. package/dist/runtime/components/pill-tabs/types.d.ts +18 -0
  93. package/dist/runtime/components/pill-tabs/types.js +0 -0
  94. package/dist/runtime/components/radio-button/RadioButton.vue +69 -0
  95. package/dist/runtime/components/radio-button/RadioButton.vue.d.ts +40 -0
  96. package/dist/runtime/components/row-card/RowCard.vue +44 -0
  97. package/dist/runtime/components/row-card/RowCard.vue.d.ts +26 -0
  98. package/dist/runtime/components/select-row/index.vue +117 -0
  99. package/dist/runtime/components/select-row/index.vue.d.ts +31 -0
  100. package/dist/runtime/components/tree-select/TreeSelect.vue +132 -0
  101. package/dist/runtime/components/tree-select/TreeSelect.vue.d.ts +22 -0
  102. package/dist/runtime/components/tree-select/TreeService.d.ts +54 -0
  103. package/dist/runtime/components/tree-select/TreeService.js +209 -0
  104. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue +100 -0
  105. package/dist/runtime/components/tree-select/components/tree-select-nodes.vue.d.ts +9 -0
  106. package/dist/runtime/components/tree-select/types.d.ts +29 -0
  107. package/dist/runtime/components/tree-select/types.js +0 -0
  108. package/dist/runtime/composables/highlight.d.ts +1 -0
  109. package/dist/runtime/composables/highlight.js +15 -0
  110. package/dist/runtime/composables/projectState.d.ts +2 -0
  111. package/dist/runtime/composables/projectState.js +3 -0
  112. package/dist/runtime/i18n/i18n.config.d.ts +1731 -0
  113. package/dist/runtime/i18n/i18n.config.js +20 -0
  114. package/dist/runtime/i18n.d.ts +2 -0
  115. package/dist/runtime/i18n.js +15 -0
  116. package/dist/runtime/icons/arrow/arrow-circle-down.vue +30 -0
  117. package/dist/runtime/icons/arrow/arrow-circle-down.vue.d.ts +2 -0
  118. package/dist/runtime/icons/arrow/arrow-graph-up.vue +24 -0
  119. package/dist/runtime/icons/arrow/arrow-graph-up.vue.d.ts +2 -0
  120. package/dist/runtime/icons/arrow/arrow-right.vue +24 -0
  121. package/dist/runtime/icons/arrow/arrow-right.vue.d.ts +2 -0
  122. package/dist/runtime/icons/arrow/arrow-side-up.vue +19 -0
  123. package/dist/runtime/icons/arrow/arrow-side-up.vue.d.ts +2 -0
  124. package/dist/runtime/icons/arrow/arrow-top-right-on-square.vue +19 -0
  125. package/dist/runtime/icons/arrow/arrow-top-right-on-square.vue.d.ts +2 -0
  126. package/dist/runtime/icons/arrow/chevron-down.vue +19 -0
  127. package/dist/runtime/icons/arrow/chevron-down.vue.d.ts +2 -0
  128. package/dist/runtime/icons/avatar.vue +41 -0
  129. package/dist/runtime/icons/avatar.vue.d.ts +2 -0
  130. package/dist/runtime/icons/avto/car.vue +17 -0
  131. package/dist/runtime/icons/avto/car.vue.d.ts +2 -0
  132. package/dist/runtime/icons/avto/truck.vue +17 -0
  133. package/dist/runtime/icons/avto/truck.vue.d.ts +2 -0
  134. package/dist/runtime/icons/block.vue +19 -0
  135. package/dist/runtime/icons/block.vue.d.ts +2 -0
  136. package/dist/runtime/icons/bookmark.vue +19 -0
  137. package/dist/runtime/icons/bookmark.vue.d.ts +2 -0
  138. package/dist/runtime/icons/calculator.vue +19 -0
  139. package/dist/runtime/icons/calculator.vue.d.ts +2 -0
  140. package/dist/runtime/icons/calendar.vue +24 -0
  141. package/dist/runtime/icons/calendar.vue.d.ts +2 -0
  142. package/dist/runtime/icons/check-circle.vue +25 -0
  143. package/dist/runtime/icons/check-circle.vue.d.ts +2 -0
  144. package/dist/runtime/icons/checkbox/checkbox-active.vue +19 -0
  145. package/dist/runtime/icons/checkbox/checkbox-active.vue.d.ts +2 -0
  146. package/dist/runtime/icons/checkbox/checkbox-empty.vue +20 -0
  147. package/dist/runtime/icons/checkbox/checkbox-empty.vue.d.ts +2 -0
  148. package/dist/runtime/icons/checkbox/checkbox-intermediate.vue +19 -0
  149. package/dist/runtime/icons/checkbox/checkbox-intermediate.vue.d.ts +2 -0
  150. package/dist/runtime/icons/clipboard-text.vue +17 -0
  151. package/dist/runtime/icons/clipboard-text.vue.d.ts +2 -0
  152. package/dist/runtime/icons/clock.vue +25 -0
  153. package/dist/runtime/icons/clock.vue.d.ts +2 -0
  154. package/dist/runtime/icons/color-mode/moon.vue +20 -0
  155. package/dist/runtime/icons/color-mode/moon.vue.d.ts +2 -0
  156. package/dist/runtime/icons/color-mode/sun.vue +27 -0
  157. package/dist/runtime/icons/color-mode/sun.vue.d.ts +2 -0
  158. package/dist/runtime/icons/communication/mail.vue +19 -0
  159. package/dist/runtime/icons/communication/mail.vue.d.ts +2 -0
  160. package/dist/runtime/icons/communication/phone.vue +19 -0
  161. package/dist/runtime/icons/communication/phone.vue.d.ts +2 -0
  162. package/dist/runtime/icons/company.vue +19 -0
  163. package/dist/runtime/icons/company.vue.d.ts +2 -0
  164. package/dist/runtime/icons/currency/dollar.vue +19 -0
  165. package/dist/runtime/icons/currency/dollar.vue.d.ts +2 -0
  166. package/dist/runtime/icons/currency/down.vue +22 -0
  167. package/dist/runtime/icons/currency/down.vue.d.ts +2 -0
  168. package/dist/runtime/icons/currency/eur.vue +69 -0
  169. package/dist/runtime/icons/currency/eur.vue.d.ts +2 -0
  170. package/dist/runtime/icons/currency/rub.vue +25 -0
  171. package/dist/runtime/icons/currency/rub.vue.d.ts +2 -0
  172. package/dist/runtime/icons/currency/usd.vue +269 -0
  173. package/dist/runtime/icons/currency/usd.vue.d.ts +2 -0
  174. package/dist/runtime/icons/currency/yuan.vue +37 -0
  175. package/dist/runtime/icons/currency/yuan.vue.d.ts +2 -0
  176. package/dist/runtime/icons/document/hdocument.vue +17 -0
  177. package/dist/runtime/icons/document/hdocument.vue.d.ts +2 -0
  178. package/dist/runtime/icons/document/id.vue +19 -0
  179. package/dist/runtime/icons/document/id.vue.d.ts +2 -0
  180. package/dist/runtime/icons/document/profile.vue +19 -0
  181. package/dist/runtime/icons/document/profile.vue.d.ts +2 -0
  182. package/dist/runtime/icons/download.vue +26 -0
  183. package/dist/runtime/icons/download.vue.d.ts +2 -0
  184. package/dist/runtime/icons/edit.vue +24 -0
  185. package/dist/runtime/icons/edit.vue.d.ts +2 -0
  186. package/dist/runtime/icons/file/excel.vue +88 -0
  187. package/dist/runtime/icons/file/excel.vue.d.ts +2 -0
  188. package/dist/runtime/icons/file/file.vue +19 -0
  189. package/dist/runtime/icons/file/file.vue.d.ts +2 -0
  190. package/dist/runtime/icons/file/files.vue +17 -0
  191. package/dist/runtime/icons/file/files.vue.d.ts +2 -0
  192. package/dist/runtime/icons/globe.vue +19 -0
  193. package/dist/runtime/icons/globe.vue.d.ts +2 -0
  194. package/dist/runtime/icons/handshake.vue +19 -0
  195. package/dist/runtime/icons/handshake.vue.d.ts +2 -0
  196. package/dist/runtime/icons/history.vue +19 -0
  197. package/dist/runtime/icons/history.vue.d.ts +2 -0
  198. package/dist/runtime/icons/info/info-circle.vue +29 -0
  199. package/dist/runtime/icons/info/info-circle.vue.d.ts +2 -0
  200. package/dist/runtime/icons/invoice.vue +35 -0
  201. package/dist/runtime/icons/invoice.vue.d.ts +2 -0
  202. package/dist/runtime/icons/link-chain.vue +31 -0
  203. package/dist/runtime/icons/link-chain.vue.d.ts +2 -0
  204. package/dist/runtime/icons/loader-circle.vue +41 -0
  205. package/dist/runtime/icons/loader-circle.vue.d.ts +2 -0
  206. package/dist/runtime/icons/lock.vue +19 -0
  207. package/dist/runtime/icons/lock.vue.d.ts +2 -0
  208. package/dist/runtime/icons/logo/adata.vue +48 -0
  209. package/dist/runtime/icons/logo/adata.vue.d.ts +2 -0
  210. package/dist/runtime/icons/logo/logo.vue +27 -0
  211. package/dist/runtime/icons/logo/logo.vue.d.ts +2 -0
  212. package/dist/runtime/icons/medal.vue +17 -0
  213. package/dist/runtime/icons/medal.vue.d.ts +2 -0
  214. package/dist/runtime/icons/menu/menu-filled.vue +61 -0
  215. package/dist/runtime/icons/menu/menu-filled.vue.d.ts +2 -0
  216. package/dist/runtime/icons/menu/menu.vue +41 -0
  217. package/dist/runtime/icons/menu/menu.vue.d.ts +2 -0
  218. package/dist/runtime/icons/message.vue +24 -0
  219. package/dist/runtime/icons/message.vue.d.ts +2 -0
  220. package/dist/runtime/icons/modals/door.vue +170 -0
  221. package/dist/runtime/icons/modals/door.vue.d.ts +2 -0
  222. package/dist/runtime/icons/moon.vue +10 -0
  223. package/dist/runtime/icons/moon.vue.d.ts +2 -0
  224. package/dist/runtime/icons/more.vue +36 -0
  225. package/dist/runtime/icons/more.vue.d.ts +2 -0
  226. package/dist/runtime/icons/navigation/expand-window.vue +19 -0
  227. package/dist/runtime/icons/navigation/expand-window.vue.d.ts +2 -0
  228. package/dist/runtime/icons/navigation/location.vue +25 -0
  229. package/dist/runtime/icons/navigation/location.vue.d.ts +2 -0
  230. package/dist/runtime/icons/navigation/logout.vue +19 -0
  231. package/dist/runtime/icons/navigation/logout.vue.d.ts +2 -0
  232. package/dist/runtime/icons/notifications.vue +25 -0
  233. package/dist/runtime/icons/notifications.vue.d.ts +2 -0
  234. package/dist/runtime/icons/other-service/arrow-square-down.vue +15 -0
  235. package/dist/runtime/icons/other-service/arrow-square-down.vue.d.ts +2 -0
  236. package/dist/runtime/icons/other-service/arrow-top-right-on-square.vue +6 -0
  237. package/dist/runtime/icons/other-service/arrow-top-right-on-square.vue.d.ts +2 -0
  238. package/dist/runtime/icons/other-service/block.vue +16 -0
  239. package/dist/runtime/icons/other-service/block.vue.d.ts +2 -0
  240. package/dist/runtime/icons/other-service/currency-dollar.vue +16 -0
  241. package/dist/runtime/icons/other-service/currency-dollar.vue.d.ts +2 -0
  242. package/dist/runtime/icons/other-service/globe.vue +16 -0
  243. package/dist/runtime/icons/other-service/globe.vue.d.ts +2 -0
  244. package/dist/runtime/icons/other-service/link.vue +7 -0
  245. package/dist/runtime/icons/other-service/link.vue.d.ts +2 -0
  246. package/dist/runtime/icons/other-service/magnifying-glass.vue +9 -0
  247. package/dist/runtime/icons/other-service/magnifying-glass.vue.d.ts +2 -0
  248. package/dist/runtime/icons/other-service/standing-scales.vue +15 -0
  249. package/dist/runtime/icons/other-service/standing-scales.vue.d.ts +2 -0
  250. package/dist/runtime/icons/other-service/users-three.vue +7 -0
  251. package/dist/runtime/icons/other-service/users-three.vue.d.ts +2 -0
  252. package/dist/runtime/icons/plus-circle.vue +24 -0
  253. package/dist/runtime/icons/plus-circle.vue.d.ts +2 -0
  254. package/dist/runtime/icons/plus.vue +24 -0
  255. package/dist/runtime/icons/plus.vue.d.ts +2 -0
  256. package/dist/runtime/icons/radio/radio-check.vue +24 -0
  257. package/dist/runtime/icons/radio/radio-check.vue.d.ts +2 -0
  258. package/dist/runtime/icons/radio/radio-empty.vue +20 -0
  259. package/dist/runtime/icons/radio/radio-empty.vue.d.ts +2 -0
  260. package/dist/runtime/icons/receipt/hcheck.vue +27 -0
  261. package/dist/runtime/icons/receipt/hcheck.vue.d.ts +2 -0
  262. package/dist/runtime/icons/receipt/receipt.vue +27 -0
  263. package/dist/runtime/icons/receipt/receipt.vue.d.ts +2 -0
  264. package/dist/runtime/icons/scale.vue +19 -0
  265. package/dist/runtime/icons/scale.vue.d.ts +2 -0
  266. package/dist/runtime/icons/search.vue +27 -0
  267. package/dist/runtime/icons/search.vue.d.ts +2 -0
  268. package/dist/runtime/icons/socials/facebook.vue +15 -0
  269. package/dist/runtime/icons/socials/facebook.vue.d.ts +2 -0
  270. package/dist/runtime/icons/socials/instagram.vue +19 -0
  271. package/dist/runtime/icons/socials/instagram.vue.d.ts +2 -0
  272. package/dist/runtime/icons/socials/linkedin.vue +24 -0
  273. package/dist/runtime/icons/socials/linkedin.vue.d.ts +2 -0
  274. package/dist/runtime/icons/socials/telegram.vue +15 -0
  275. package/dist/runtime/icons/socials/telegram.vue.d.ts +2 -0
  276. package/dist/runtime/icons/socials/tik-tok.vue +15 -0
  277. package/dist/runtime/icons/socials/tik-tok.vue.d.ts +2 -0
  278. package/dist/runtime/icons/socials/whatsapp.vue +21 -0
  279. package/dist/runtime/icons/socials/whatsapp.vue.d.ts +2 -0
  280. package/dist/runtime/icons/socials/youtube.vue +16 -0
  281. package/dist/runtime/icons/socials/youtube.vue.d.ts +2 -0
  282. package/dist/runtime/icons/sun.vue +14 -0
  283. package/dist/runtime/icons/sun.vue.d.ts +2 -0
  284. package/dist/runtime/icons/sviazi.vue +19 -0
  285. package/dist/runtime/icons/sviazi.vue.d.ts +2 -0
  286. package/dist/runtime/icons/tenge.vue +22 -0
  287. package/dist/runtime/icons/tenge.vue.d.ts +2 -0
  288. package/dist/runtime/icons/trash.vue +24 -0
  289. package/dist/runtime/icons/trash.vue.d.ts +2 -0
  290. package/dist/runtime/icons/upload.vue +26 -0
  291. package/dist/runtime/icons/upload.vue.d.ts +2 -0
  292. package/dist/runtime/icons/user.vue +30 -0
  293. package/dist/runtime/icons/user.vue.d.ts +2 -0
  294. package/dist/runtime/icons/users/users-three.vue +17 -0
  295. package/dist/runtime/icons/users/users-three.vue.d.ts +2 -0
  296. package/dist/runtime/icons/users/users.vue +31 -0
  297. package/dist/runtime/icons/users/users.vue.d.ts +2 -0
  298. package/dist/runtime/icons/warning-triangle.vue +29 -0
  299. package/dist/runtime/icons/warning-triangle.vue.d.ts +2 -0
  300. package/dist/runtime/icons/work-bag.vue +20 -0
  301. package/dist/runtime/icons/work-bag.vue.d.ts +2 -0
  302. package/dist/runtime/icons/x-mark.vue +18 -0
  303. package/dist/runtime/icons/x-mark.vue.d.ts +2 -0
  304. package/dist/runtime/lang/en.d.ts +4 -0
  305. package/dist/runtime/lang/en.js +545 -0
  306. package/dist/runtime/lang/kk.d.ts +4 -0
  307. package/dist/runtime/lang/kk.js +545 -0
  308. package/dist/runtime/lang/ru.d.ts +575 -0
  309. package/dist/runtime/lang/ru.js +607 -0
  310. package/dist/runtime/shared/constants/pages.d.ts +71 -0
  311. package/dist/runtime/shared/constants/pages.js +71 -0
  312. package/package.json +66 -58
  313. package/dist/runtime/components/header/TheHeader.vue +0 -15
  314. package/dist/runtime/components/header/TheHeader.vue.d.ts +0 -2
  315. package/dist/runtime/plugin.d.ts +0 -2
  316. package/dist/runtime/plugin.js +0 -4
@@ -0,0 +1,1731 @@
1
+ declare const _default: {
2
+ legacy: boolean;
3
+ locale: string;
4
+ defaultLocale: string;
5
+ strategy: string;
6
+ messages: {
7
+ ru: {
8
+ lang: {
9
+ ru: {
10
+ short: string;
11
+ long: string;
12
+ };
13
+ kk: {
14
+ short: string;
15
+ long: string;
16
+ };
17
+ en: {
18
+ short: string;
19
+ long: string;
20
+ };
21
+ };
22
+ reuse: {
23
+ yes: string;
24
+ selectDate: string;
25
+ date: string;
26
+ };
27
+ header: {
28
+ top: {
29
+ requestLimit: string;
30
+ daysLeft: string;
31
+ };
32
+ profile: {
33
+ tariff: string;
34
+ balance: string;
35
+ connected: string;
36
+ currentBalance: string;
37
+ addBalance: string;
38
+ requests: string;
39
+ daysLeft: string;
40
+ currentTheme: string;
41
+ colorScheme: string;
42
+ logout: string;
43
+ menu: {
44
+ personalInfo: string;
45
+ security: string;
46
+ work: string;
47
+ paymentHistory: string;
48
+ notifications: string;
49
+ favourites: string;
50
+ myReports: string;
51
+ browsingHistory: string;
52
+ myGroups: string;
53
+ notes: string;
54
+ };
55
+ };
56
+ mega: {
57
+ favourites: string;
58
+ tariffs: string;
59
+ useful: string;
60
+ apiDescription: string;
61
+ termsOfUse: string;
62
+ privacyPolicy: string;
63
+ };
64
+ navs: {
65
+ products: string;
66
+ tariffs: string;
67
+ contacts: string;
68
+ };
69
+ products: {
70
+ counterparties: {
71
+ label: string;
72
+ items: {
73
+ counterparty: {
74
+ title: string;
75
+ subtitle: string;
76
+ };
77
+ wholesale: {
78
+ title: string;
79
+ subtitle: string;
80
+ };
81
+ foreign: {
82
+ title: string;
83
+ subtitle: string;
84
+ };
85
+ compare: {
86
+ title: string;
87
+ subtitle: string;
88
+ };
89
+ networks: {
90
+ title: string;
91
+ subtitle: string;
92
+ };
93
+ unloading: {
94
+ title: string;
95
+ subtitle: string;
96
+ };
97
+ sanction: {
98
+ title: string;
99
+ subtitle: string;
100
+ };
101
+ offshore: {
102
+ title: string;
103
+ subtitle: string;
104
+ };
105
+ };
106
+ };
107
+ jobs: {
108
+ label: string;
109
+ items: {
110
+ vacancies: {
111
+ title: string;
112
+ subtitle: string;
113
+ };
114
+ resume: {
115
+ title: string;
116
+ subtitle: string;
117
+ };
118
+ };
119
+ };
120
+ tenders: {
121
+ label: string;
122
+ items: {
123
+ tenders: {
124
+ title: string;
125
+ subtitle: string;
126
+ };
127
+ contracts: {
128
+ title: string;
129
+ subtitle: string;
130
+ };
131
+ procurement: {
132
+ title: string;
133
+ subtitle: string;
134
+ };
135
+ };
136
+ };
137
+ fines: {
138
+ label: string;
139
+ items: {
140
+ fines: {
141
+ title: string;
142
+ subtitle: string;
143
+ };
144
+ auto: {
145
+ title: string;
146
+ subtitle: string;
147
+ };
148
+ wholesaleAuto: {
149
+ title: string;
150
+ subtitle: string;
151
+ };
152
+ };
153
+ };
154
+ analytics: {
155
+ label: string;
156
+ items: {
157
+ clients: {
158
+ title: string;
159
+ subtitle: string;
160
+ };
161
+ procurement: {
162
+ title: string;
163
+ subtitle: string;
164
+ };
165
+ activity: {
166
+ title: string;
167
+ subtitle: string;
168
+ };
169
+ subjects: {
170
+ title: string;
171
+ subtitle: string;
172
+ };
173
+ rate: {
174
+ title: string;
175
+ subtitle: string;
176
+ };
177
+ };
178
+ };
179
+ fea: {
180
+ label: string;
181
+ items: {
182
+ i: {
183
+ t: string;
184
+ st: string;
185
+ };
186
+ o: {
187
+ t: string;
188
+ st: string;
189
+ };
190
+ cp: {
191
+ t: string;
192
+ st: string;
193
+ };
194
+ ca: {
195
+ t: string;
196
+ st: string;
197
+ };
198
+ tr: {
199
+ t: string;
200
+ st: string;
201
+ };
202
+ };
203
+ };
204
+ compliance: {
205
+ label: string;
206
+ items: {
207
+ l: {
208
+ t: string;
209
+ st: string;
210
+ };
211
+ };
212
+ };
213
+ edo: {
214
+ label: string;
215
+ items: {
216
+ l: {
217
+ t: string;
218
+ };
219
+ };
220
+ };
221
+ galleryCards: {
222
+ unload: {
223
+ title: string;
224
+ subtitle: string;
225
+ };
226
+ ved: {
227
+ title: string;
228
+ subtitle: string;
229
+ };
230
+ compliance: {
231
+ title: string;
232
+ subtitle: string;
233
+ };
234
+ };
235
+ };
236
+ contacts: {
237
+ almaty: {
238
+ title: string;
239
+ adress: {
240
+ title: string;
241
+ subtitle: string;
242
+ };
243
+ email: {
244
+ title: string;
245
+ };
246
+ schedule: {
247
+ title: string;
248
+ subtitle: string;
249
+ };
250
+ sellDep: {
251
+ title: string;
252
+ };
253
+ support: {
254
+ title: string;
255
+ subtitle: string;
256
+ linkTitle: string;
257
+ };
258
+ };
259
+ astana: {
260
+ title: string;
261
+ adress: {
262
+ title: string;
263
+ subtitle: string;
264
+ };
265
+ email: {
266
+ title: string;
267
+ };
268
+ schedule: {
269
+ title: string;
270
+ subtitle: string;
271
+ };
272
+ sellDep: {
273
+ title: string;
274
+ };
275
+ details: {
276
+ title: string;
277
+ subtitle: string;
278
+ };
279
+ };
280
+ toContacts: string;
281
+ };
282
+ login: string;
283
+ oldVersion: string;
284
+ notifications: {
285
+ title: string;
286
+ seeAll: string;
287
+ noData: string;
288
+ };
289
+ };
290
+ footer: {
291
+ info: {
292
+ tariff: string;
293
+ helpful: string;
294
+ api: string;
295
+ userAgreement: string;
296
+ privacyPolicy: string;
297
+ vacancy: string;
298
+ counterparty: string;
299
+ contacts: string;
300
+ };
301
+ counterparties: {
302
+ title: string;
303
+ checkCounterparties: string;
304
+ compareCounterparties: string;
305
+ indirectConnections: string;
306
+ massCheck: string;
307
+ foreignCounterparties: string;
308
+ sanctions: string;
309
+ offshores: string;
310
+ };
311
+ work: {
312
+ title: string;
313
+ createFindVacancies: string;
314
+ createFindResume: string;
315
+ };
316
+ tenders: {
317
+ title: string;
318
+ searchTenders: string;
319
+ purchasePlans: string;
320
+ };
321
+ fines: {
322
+ title: string;
323
+ checkFines: string;
324
+ checkAuto: string;
325
+ massCheckAuto: string;
326
+ };
327
+ analytics: {
328
+ title: string;
329
+ searchCustomers: string;
330
+ purchaseAnalysis: string;
331
+ businessActivityIndex: string;
332
+ taxpayerRanking: string;
333
+ businessEntities: string;
334
+ };
335
+ fea: {
336
+ title: string;
337
+ i: string;
338
+ o: string;
339
+ cp: string;
340
+ calc: string;
341
+ mr: string;
342
+ };
343
+ compliance: {
344
+ title: string;
345
+ };
346
+ LLP: string;
347
+ slogan: string;
348
+ newVersion: {
349
+ services: {
350
+ title: string;
351
+ counterparties: string;
352
+ compliance: string;
353
+ edo: string;
354
+ ved: string;
355
+ procurement: string;
356
+ fines: string;
357
+ work: string;
358
+ analytics: string;
359
+ };
360
+ useful: {
361
+ title: string;
362
+ apiDescription: string;
363
+ userAgreement: string;
364
+ privacyPolicy: string;
365
+ vacancies: string;
366
+ companyDirectory: string;
367
+ };
368
+ contacts: {
369
+ title: string;
370
+ address: string;
371
+ goToChat: string;
372
+ };
373
+ };
374
+ };
375
+ our_clients: {
376
+ title: string;
377
+ };
378
+ forms: {
379
+ feedback: {
380
+ title: string;
381
+ subtitle: string;
382
+ email: string;
383
+ phone: string;
384
+ comment: string;
385
+ send: string;
386
+ close: string;
387
+ fieldRequired: string;
388
+ emailValid: string;
389
+ phoneMinLength: string;
390
+ commentMinLength: string;
391
+ commentMaxLength: string;
392
+ modalTitle: string;
393
+ modalSubtitle: string;
394
+ };
395
+ demo: {
396
+ t: string;
397
+ st: string;
398
+ e: string;
399
+ n: string;
400
+ p: string;
401
+ c: string;
402
+ b: string;
403
+ };
404
+ };
405
+ errorPage: {
406
+ 504: {
407
+ title: string;
408
+ subTitle: string;
409
+ };
410
+ 401: {
411
+ title: string;
412
+ subTitle: string;
413
+ };
414
+ 400: {
415
+ title: string;
416
+ subTitle: string;
417
+ };
418
+ 404: {
419
+ title: string;
420
+ subTitle: string;
421
+ subTitleSecond: string;
422
+ };
423
+ 403: {
424
+ title: string;
425
+ subTitle: string;
426
+ subTitleSecond: string;
427
+ };
428
+ 503: {
429
+ title: string;
430
+ subTitle: string;
431
+ };
432
+ 502: {
433
+ title: string;
434
+ subTitle: string;
435
+ list: string[];
436
+ };
437
+ 500: {
438
+ title: string;
439
+ subTitle: string;
440
+ };
441
+ };
442
+ actions: {
443
+ goToMainPage: string;
444
+ showMore: string;
445
+ close: string;
446
+ send: string;
447
+ };
448
+ modals: {
449
+ auth: {
450
+ title: string;
451
+ content: string;
452
+ firstTime: string;
453
+ };
454
+ limit: {
455
+ title: string;
456
+ content: string;
457
+ changedToBasic: string;
458
+ basicPlus: string;
459
+ };
460
+ mobile_navigation: {
461
+ type_main: string;
462
+ type_contacts: string;
463
+ type_tariff: string;
464
+ type_login: string;
465
+ type_profile: string;
466
+ return_button: string;
467
+ };
468
+ payment_method: {
469
+ title: string;
470
+ questions: string;
471
+ banks: {
472
+ kaspi: string;
473
+ other: string;
474
+ };
475
+ redirects_bank: {
476
+ title: string;
477
+ paymentId: string;
478
+ subtitle: string;
479
+ };
480
+ };
481
+ connecting: {
482
+ title: string;
483
+ questions: string;
484
+ };
485
+ replenish_modal: {
486
+ title: string;
487
+ info: string;
488
+ enter_sum: string;
489
+ };
490
+ low_balance: {
491
+ title: string;
492
+ current_balance: string;
493
+ questions: string;
494
+ };
495
+ another_device_modal: {
496
+ title: string;
497
+ info: string;
498
+ alert: string;
499
+ };
500
+ no_access: {
501
+ title: string;
502
+ info: string;
503
+ };
504
+ buttons: {
505
+ close: string;
506
+ back: string;
507
+ buy: string;
508
+ topUp: string;
509
+ goToMainPage: string;
510
+ logIn: string;
511
+ register: string;
512
+ goTariffs: string;
513
+ example: string;
514
+ toMain: string;
515
+ goToKaspi: string;
516
+ };
517
+ submit_application_modal: {
518
+ title: string;
519
+ labels: {
520
+ name: string;
521
+ email: string;
522
+ phone: string;
523
+ comment: string;
524
+ };
525
+ rules: {
526
+ required: string;
527
+ email: string;
528
+ };
529
+ };
530
+ application_accepted_modal: {
531
+ title: string;
532
+ info: string;
533
+ };
534
+ report_bug: {
535
+ title: string;
536
+ confirmed: string;
537
+ gratitude: string;
538
+ labels: {
539
+ name: string;
540
+ email: string;
541
+ phone: string;
542
+ comment: string;
543
+ };
544
+ validation: {
545
+ required: string;
546
+ phone: string;
547
+ };
548
+ };
549
+ };
550
+ mobile_navigation: {
551
+ contacts: {
552
+ first_type: string;
553
+ second_type: string;
554
+ allData: {
555
+ address: string;
556
+ address_info: string;
557
+ email: string;
558
+ mode: string;
559
+ mode_info: string;
560
+ sales_department: string;
561
+ technical_support: string;
562
+ support_link_title: string;
563
+ };
564
+ };
565
+ content: {};
566
+ };
567
+ illustrations: {
568
+ afterLogInBlock: {
569
+ tariff: string;
570
+ login: string;
571
+ };
572
+ };
573
+ restTasks: {
574
+ title: string;
575
+ tabTitleList: {
576
+ title: string;
577
+ description: string;
578
+ }[];
579
+ };
580
+ };
581
+ en: {
582
+ lang: {
583
+ ru: {
584
+ short: string;
585
+ long: string;
586
+ };
587
+ kk: {
588
+ short: string;
589
+ long: string;
590
+ };
591
+ en: {
592
+ short: string;
593
+ long: string;
594
+ };
595
+ };
596
+ reuse: {
597
+ yes: string;
598
+ selectDate: string;
599
+ date: string;
600
+ };
601
+ header: {
602
+ top: {
603
+ requestLimit: string;
604
+ daysLeft: string;
605
+ };
606
+ profile: {
607
+ tariff: string;
608
+ balance: string;
609
+ connected: string;
610
+ currentBalance: string;
611
+ addBalance: string;
612
+ requests: string;
613
+ daysLeft: string;
614
+ currentTheme: string;
615
+ colorScheme: string;
616
+ logout: string;
617
+ menu: {
618
+ personalInfo: string;
619
+ security: string;
620
+ work: string;
621
+ paymentHistory: string;
622
+ notifications: string;
623
+ favourites: string;
624
+ myReports: string;
625
+ browsingHistory: string;
626
+ myGroups: string;
627
+ notes: string;
628
+ };
629
+ };
630
+ mega: {
631
+ favourites: string;
632
+ tariffs: string;
633
+ useful: string;
634
+ apiDescription: string;
635
+ termsOfUse: string;
636
+ privacyPolicy: string;
637
+ };
638
+ navs: {
639
+ products: string;
640
+ tariffs: string;
641
+ contacts: string;
642
+ };
643
+ products: {
644
+ counterparties: {
645
+ label: string;
646
+ items: {
647
+ counterparty: {
648
+ title: string;
649
+ subtitle: string;
650
+ };
651
+ wholesale: {
652
+ title: string;
653
+ subtitle: string;
654
+ };
655
+ foreign: {
656
+ title: string;
657
+ subtitle: string;
658
+ };
659
+ compare: {
660
+ title: string;
661
+ subtitle: string;
662
+ };
663
+ networks: {
664
+ title: string;
665
+ subtitle: string;
666
+ };
667
+ unloading: {
668
+ title: string;
669
+ subtitle: string;
670
+ };
671
+ sanction: {
672
+ title: string;
673
+ subtitle: string;
674
+ };
675
+ offshore: {
676
+ title: string;
677
+ subtitle: string;
678
+ };
679
+ };
680
+ };
681
+ jobs: {
682
+ label: string;
683
+ items: {
684
+ vacancies: {
685
+ title: string;
686
+ subtitle: string;
687
+ };
688
+ resume: {
689
+ title: string;
690
+ subtitle: string;
691
+ };
692
+ };
693
+ };
694
+ tenders: {
695
+ label: string;
696
+ items: {
697
+ tenders: {
698
+ title: string;
699
+ subtitle: string;
700
+ };
701
+ contracts: {
702
+ title: string;
703
+ subtitle: string;
704
+ };
705
+ procurement: {
706
+ title: string;
707
+ subtitle: string;
708
+ };
709
+ };
710
+ };
711
+ fines: {
712
+ label: string;
713
+ items: {
714
+ fines: {
715
+ title: string;
716
+ subtitle: string;
717
+ };
718
+ auto: {
719
+ title: string;
720
+ subtitle: string;
721
+ };
722
+ wholesaleAuto: {
723
+ title: string;
724
+ subtitle: string;
725
+ };
726
+ };
727
+ };
728
+ analytics: {
729
+ label: string;
730
+ items: {
731
+ clients: {
732
+ title: string;
733
+ subtitle: string;
734
+ };
735
+ procurement: {
736
+ title: string;
737
+ subtitle: string;
738
+ };
739
+ activity: {
740
+ title: string;
741
+ subtitle: string;
742
+ };
743
+ subjects: {
744
+ title: string;
745
+ subtitle: string;
746
+ };
747
+ rate: {
748
+ title: string;
749
+ subtitle: string;
750
+ };
751
+ };
752
+ };
753
+ fea: {
754
+ label: string;
755
+ items: {
756
+ i: {
757
+ t: string;
758
+ st: string;
759
+ };
760
+ o: {
761
+ t: string;
762
+ st: string;
763
+ };
764
+ cp: {
765
+ t: string;
766
+ st: string;
767
+ };
768
+ ca: {
769
+ t: string;
770
+ st: string;
771
+ };
772
+ tr: {
773
+ t: string;
774
+ st: string;
775
+ };
776
+ };
777
+ };
778
+ compliance: {
779
+ label: string;
780
+ items: {
781
+ l: {
782
+ t: string;
783
+ st: string;
784
+ };
785
+ };
786
+ };
787
+ edo: {
788
+ label: string;
789
+ items: {
790
+ l: {
791
+ t: string;
792
+ };
793
+ };
794
+ };
795
+ galleryCards: {
796
+ unload: {
797
+ title: string;
798
+ subtitle: string;
799
+ };
800
+ ved: {
801
+ title: string;
802
+ subtitle: string;
803
+ };
804
+ compliance: {
805
+ title: string;
806
+ subtitle: string;
807
+ };
808
+ };
809
+ };
810
+ contacts: {
811
+ almaty: {
812
+ title: string;
813
+ adress: {
814
+ title: string;
815
+ subtitle: string;
816
+ };
817
+ email: {
818
+ title: string;
819
+ };
820
+ schedule: {
821
+ title: string;
822
+ subtitle: string;
823
+ };
824
+ sellDep: {
825
+ title: string;
826
+ };
827
+ support: {
828
+ title: string;
829
+ subtitle: string;
830
+ linkTitle: string;
831
+ };
832
+ };
833
+ astana: {
834
+ title: string;
835
+ adress: {
836
+ title: string;
837
+ subtitle: string;
838
+ };
839
+ email: {
840
+ title: string;
841
+ };
842
+ schedule: {
843
+ title: string;
844
+ subtitle: string;
845
+ };
846
+ sellDep: {
847
+ title: string;
848
+ };
849
+ details: {
850
+ title: string;
851
+ subtitle: string;
852
+ };
853
+ };
854
+ toContacts: string;
855
+ };
856
+ login: string;
857
+ oldVersion: string;
858
+ notifications: {
859
+ title: string;
860
+ seeAll: string;
861
+ noData: string;
862
+ };
863
+ };
864
+ footer: {
865
+ info: {
866
+ tariff: string;
867
+ helpful: string;
868
+ api: string;
869
+ userAgreement: string;
870
+ privacyPolicy: string;
871
+ vacancy: string;
872
+ counterparty: string;
873
+ contacts: string;
874
+ };
875
+ counterparties: {
876
+ title: string;
877
+ checkCounterparties: string;
878
+ compareCounterparties: string;
879
+ indirectConnections: string;
880
+ massCheck: string;
881
+ foreignCounterparties: string;
882
+ sanctions: string;
883
+ offshores: string;
884
+ };
885
+ work: {
886
+ title: string;
887
+ createFindVacancies: string;
888
+ createFindResume: string;
889
+ };
890
+ tenders: {
891
+ title: string;
892
+ searchTenders: string;
893
+ purchasePlans: string;
894
+ };
895
+ fines: {
896
+ title: string;
897
+ checkFines: string;
898
+ checkAuto: string;
899
+ massCheckAuto: string;
900
+ };
901
+ analytics: {
902
+ title: string;
903
+ searchCustomers: string;
904
+ purchaseAnalysis: string;
905
+ businessActivityIndex: string;
906
+ taxpayerRanking: string;
907
+ businessEntities: string;
908
+ };
909
+ fea: {
910
+ title: string;
911
+ i: string;
912
+ o: string;
913
+ cp: string;
914
+ calc: string;
915
+ mr: string;
916
+ };
917
+ compliance: {
918
+ title: string;
919
+ };
920
+ LLP: string;
921
+ slogan: string;
922
+ newVersion: {
923
+ services: {
924
+ title: string;
925
+ counterparties: string;
926
+ compliance: string;
927
+ edo: string;
928
+ ved: string;
929
+ procurement: string;
930
+ fines: string;
931
+ work: string;
932
+ analytics: string;
933
+ };
934
+ useful: {
935
+ title: string;
936
+ apiDescription: string;
937
+ userAgreement: string;
938
+ privacyPolicy: string;
939
+ vacancies: string;
940
+ companyDirectory: string;
941
+ };
942
+ contacts: {
943
+ title: string;
944
+ address: string;
945
+ goToChat: string;
946
+ };
947
+ };
948
+ };
949
+ our_clients: {
950
+ title: string;
951
+ };
952
+ forms: {
953
+ feedback: {
954
+ title: string;
955
+ subtitle: string;
956
+ email: string;
957
+ phone: string;
958
+ comment: string;
959
+ send: string;
960
+ close: string;
961
+ fieldRequired: string;
962
+ emailValid: string;
963
+ phoneMinLength: string;
964
+ commentMinLength: string;
965
+ commentMaxLength: string;
966
+ modalTitle: string;
967
+ modalSubtitle: string;
968
+ };
969
+ demo: {
970
+ t: string;
971
+ st: string;
972
+ e: string;
973
+ n: string;
974
+ p: string;
975
+ c: string;
976
+ b: string;
977
+ };
978
+ };
979
+ errorPage: {
980
+ 504: {
981
+ title: string;
982
+ subTitle: string;
983
+ };
984
+ 401: {
985
+ title: string;
986
+ subTitle: string;
987
+ };
988
+ 400: {
989
+ title: string;
990
+ subTitle: string;
991
+ };
992
+ 404: {
993
+ title: string;
994
+ subTitle: string;
995
+ subTitleSecond: string;
996
+ };
997
+ 403: {
998
+ title: string;
999
+ subTitle: string;
1000
+ subTitleSecond: string;
1001
+ };
1002
+ 503: {
1003
+ title: string;
1004
+ subTitle: string;
1005
+ };
1006
+ 502: {
1007
+ title: string;
1008
+ subTitle: string;
1009
+ list: string[];
1010
+ };
1011
+ 500: {
1012
+ title: string;
1013
+ subTitle: string;
1014
+ };
1015
+ };
1016
+ actions: {
1017
+ goToMainPage: string;
1018
+ showMore: string;
1019
+ close: string;
1020
+ send: string;
1021
+ };
1022
+ modals: {
1023
+ auth: {
1024
+ title: string;
1025
+ content: string;
1026
+ firstTime: string;
1027
+ };
1028
+ limit: {
1029
+ title: string;
1030
+ content: string;
1031
+ changedToBasic: string;
1032
+ basicPlus: string;
1033
+ };
1034
+ mobile_navigation: {
1035
+ type_main: string;
1036
+ type_contacts: string;
1037
+ type_tariff: string;
1038
+ type_login: string;
1039
+ type_profile: string;
1040
+ return_button: string;
1041
+ };
1042
+ payment_method: {
1043
+ title: string;
1044
+ questions: string;
1045
+ banks: {
1046
+ kaspi: string;
1047
+ other: string;
1048
+ };
1049
+ redirects_bank: {
1050
+ title: string;
1051
+ paymentId: string;
1052
+ subtitle: string;
1053
+ };
1054
+ };
1055
+ connecting: {
1056
+ title: string;
1057
+ questions: string;
1058
+ };
1059
+ replenish_modal: {
1060
+ title: string;
1061
+ info: string;
1062
+ enter_sum: string;
1063
+ };
1064
+ low_balance: {
1065
+ title: string;
1066
+ current_balance: string;
1067
+ questions: string;
1068
+ };
1069
+ another_device_modal: {
1070
+ title: string;
1071
+ info: string;
1072
+ alert: string;
1073
+ };
1074
+ no_access: {
1075
+ title: string;
1076
+ info: string;
1077
+ };
1078
+ buttons: {
1079
+ close: string;
1080
+ back: string;
1081
+ buy: string;
1082
+ topUp: string;
1083
+ goToMainPage: string;
1084
+ logIn: string;
1085
+ register: string;
1086
+ goTariffs: string;
1087
+ example: string;
1088
+ toMain: string;
1089
+ goToKaspi: string;
1090
+ };
1091
+ submit_application_modal: {
1092
+ title: string;
1093
+ labels: {
1094
+ name: string;
1095
+ email: string;
1096
+ phone: string;
1097
+ comment: string;
1098
+ };
1099
+ rules: {
1100
+ required: string;
1101
+ email: string;
1102
+ };
1103
+ };
1104
+ application_accepted_modal: {
1105
+ title: string;
1106
+ info: string;
1107
+ };
1108
+ report_bug: {
1109
+ title: string;
1110
+ confirmed: string;
1111
+ gratitude: string;
1112
+ labels: {
1113
+ name: string;
1114
+ email: string;
1115
+ phone: string;
1116
+ comment: string;
1117
+ };
1118
+ validation: {
1119
+ required: string;
1120
+ phone: string;
1121
+ };
1122
+ };
1123
+ };
1124
+ mobile_navigation: {
1125
+ contacts: {
1126
+ first_type: string;
1127
+ second_type: string;
1128
+ allData: {
1129
+ address: string;
1130
+ address_info: string;
1131
+ email: string;
1132
+ mode: string;
1133
+ mode_info: string;
1134
+ sales_department: string;
1135
+ technical_support: string;
1136
+ support_link_title: string;
1137
+ };
1138
+ };
1139
+ content: {};
1140
+ };
1141
+ illustrations: {
1142
+ afterLogInBlock: {
1143
+ tariff: string;
1144
+ login: string;
1145
+ };
1146
+ };
1147
+ restTasks: {
1148
+ title: string;
1149
+ tabTitleList: {
1150
+ title: string;
1151
+ description: string;
1152
+ }[];
1153
+ };
1154
+ };
1155
+ kk: {
1156
+ lang: {
1157
+ ru: {
1158
+ short: string;
1159
+ long: string;
1160
+ };
1161
+ kk: {
1162
+ short: string;
1163
+ long: string;
1164
+ };
1165
+ en: {
1166
+ short: string;
1167
+ long: string;
1168
+ };
1169
+ };
1170
+ reuse: {
1171
+ yes: string;
1172
+ selectDate: string;
1173
+ date: string;
1174
+ };
1175
+ header: {
1176
+ top: {
1177
+ requestLimit: string;
1178
+ daysLeft: string;
1179
+ };
1180
+ profile: {
1181
+ tariff: string;
1182
+ balance: string;
1183
+ connected: string;
1184
+ currentBalance: string;
1185
+ addBalance: string;
1186
+ requests: string;
1187
+ daysLeft: string;
1188
+ currentTheme: string;
1189
+ colorScheme: string;
1190
+ logout: string;
1191
+ menu: {
1192
+ personalInfo: string;
1193
+ security: string;
1194
+ work: string;
1195
+ paymentHistory: string;
1196
+ notifications: string;
1197
+ favourites: string;
1198
+ myReports: string;
1199
+ browsingHistory: string;
1200
+ myGroups: string;
1201
+ notes: string;
1202
+ };
1203
+ };
1204
+ mega: {
1205
+ favourites: string;
1206
+ tariffs: string;
1207
+ useful: string;
1208
+ apiDescription: string;
1209
+ termsOfUse: string;
1210
+ privacyPolicy: string;
1211
+ };
1212
+ navs: {
1213
+ products: string;
1214
+ tariffs: string;
1215
+ contacts: string;
1216
+ };
1217
+ products: {
1218
+ counterparties: {
1219
+ label: string;
1220
+ items: {
1221
+ counterparty: {
1222
+ title: string;
1223
+ subtitle: string;
1224
+ };
1225
+ wholesale: {
1226
+ title: string;
1227
+ subtitle: string;
1228
+ };
1229
+ foreign: {
1230
+ title: string;
1231
+ subtitle: string;
1232
+ };
1233
+ compare: {
1234
+ title: string;
1235
+ subtitle: string;
1236
+ };
1237
+ networks: {
1238
+ title: string;
1239
+ subtitle: string;
1240
+ };
1241
+ unloading: {
1242
+ title: string;
1243
+ subtitle: string;
1244
+ };
1245
+ sanction: {
1246
+ title: string;
1247
+ subtitle: string;
1248
+ };
1249
+ offshore: {
1250
+ title: string;
1251
+ subtitle: string;
1252
+ };
1253
+ };
1254
+ };
1255
+ jobs: {
1256
+ label: string;
1257
+ items: {
1258
+ vacancies: {
1259
+ title: string;
1260
+ subtitle: string;
1261
+ };
1262
+ resume: {
1263
+ title: string;
1264
+ subtitle: string;
1265
+ };
1266
+ };
1267
+ };
1268
+ tenders: {
1269
+ label: string;
1270
+ items: {
1271
+ tenders: {
1272
+ title: string;
1273
+ subtitle: string;
1274
+ };
1275
+ contracts: {
1276
+ title: string;
1277
+ subtitle: string;
1278
+ };
1279
+ procurement: {
1280
+ title: string;
1281
+ subtitle: string;
1282
+ };
1283
+ };
1284
+ };
1285
+ fines: {
1286
+ label: string;
1287
+ items: {
1288
+ fines: {
1289
+ title: string;
1290
+ subtitle: string;
1291
+ };
1292
+ auto: {
1293
+ title: string;
1294
+ subtitle: string;
1295
+ };
1296
+ wholesaleAuto: {
1297
+ title: string;
1298
+ subtitle: string;
1299
+ };
1300
+ };
1301
+ };
1302
+ analytics: {
1303
+ label: string;
1304
+ items: {
1305
+ clients: {
1306
+ title: string;
1307
+ subtitle: string;
1308
+ };
1309
+ procurement: {
1310
+ title: string;
1311
+ subtitle: string;
1312
+ };
1313
+ activity: {
1314
+ title: string;
1315
+ subtitle: string;
1316
+ };
1317
+ subjects: {
1318
+ title: string;
1319
+ subtitle: string;
1320
+ };
1321
+ rate: {
1322
+ title: string;
1323
+ subtitle: string;
1324
+ };
1325
+ };
1326
+ };
1327
+ fea: {
1328
+ label: string;
1329
+ items: {
1330
+ i: {
1331
+ t: string;
1332
+ st: string;
1333
+ };
1334
+ o: {
1335
+ t: string;
1336
+ st: string;
1337
+ };
1338
+ cp: {
1339
+ t: string;
1340
+ st: string;
1341
+ };
1342
+ ca: {
1343
+ t: string;
1344
+ st: string;
1345
+ };
1346
+ tr: {
1347
+ t: string;
1348
+ st: string;
1349
+ };
1350
+ };
1351
+ };
1352
+ compliance: {
1353
+ label: string;
1354
+ items: {
1355
+ l: {
1356
+ t: string;
1357
+ st: string;
1358
+ };
1359
+ };
1360
+ };
1361
+ edo: {
1362
+ label: string;
1363
+ items: {
1364
+ l: {
1365
+ t: string;
1366
+ };
1367
+ };
1368
+ };
1369
+ galleryCards: {
1370
+ unload: {
1371
+ title: string;
1372
+ subtitle: string;
1373
+ };
1374
+ ved: {
1375
+ title: string;
1376
+ subtitle: string;
1377
+ };
1378
+ compliance: {
1379
+ title: string;
1380
+ subtitle: string;
1381
+ };
1382
+ };
1383
+ };
1384
+ contacts: {
1385
+ almaty: {
1386
+ title: string;
1387
+ adress: {
1388
+ title: string;
1389
+ subtitle: string;
1390
+ };
1391
+ email: {
1392
+ title: string;
1393
+ };
1394
+ schedule: {
1395
+ title: string;
1396
+ subtitle: string;
1397
+ };
1398
+ sellDep: {
1399
+ title: string;
1400
+ };
1401
+ support: {
1402
+ title: string;
1403
+ subtitle: string;
1404
+ linkTitle: string;
1405
+ };
1406
+ };
1407
+ astana: {
1408
+ title: string;
1409
+ adress: {
1410
+ title: string;
1411
+ subtitle: string;
1412
+ };
1413
+ email: {
1414
+ title: string;
1415
+ };
1416
+ schedule: {
1417
+ title: string;
1418
+ subtitle: string;
1419
+ };
1420
+ sellDep: {
1421
+ title: string;
1422
+ };
1423
+ details: {
1424
+ title: string;
1425
+ subtitle: string;
1426
+ };
1427
+ };
1428
+ toContacts: string;
1429
+ };
1430
+ login: string;
1431
+ oldVersion: string;
1432
+ notifications: {
1433
+ title: string;
1434
+ seeAll: string;
1435
+ noData: string;
1436
+ };
1437
+ };
1438
+ footer: {
1439
+ info: {
1440
+ tariff: string;
1441
+ helpful: string;
1442
+ api: string;
1443
+ userAgreement: string;
1444
+ privacyPolicy: string;
1445
+ vacancy: string;
1446
+ counterparty: string;
1447
+ contacts: string;
1448
+ };
1449
+ counterparties: {
1450
+ title: string;
1451
+ checkCounterparties: string;
1452
+ compareCounterparties: string;
1453
+ indirectConnections: string;
1454
+ massCheck: string;
1455
+ foreignCounterparties: string;
1456
+ sanctions: string;
1457
+ offshores: string;
1458
+ };
1459
+ work: {
1460
+ title: string;
1461
+ createFindVacancies: string;
1462
+ createFindResume: string;
1463
+ };
1464
+ tenders: {
1465
+ title: string;
1466
+ searchTenders: string;
1467
+ purchasePlans: string;
1468
+ };
1469
+ fines: {
1470
+ title: string;
1471
+ checkFines: string;
1472
+ checkAuto: string;
1473
+ massCheckAuto: string;
1474
+ };
1475
+ analytics: {
1476
+ title: string;
1477
+ searchCustomers: string;
1478
+ purchaseAnalysis: string;
1479
+ businessActivityIndex: string;
1480
+ taxpayerRanking: string;
1481
+ businessEntities: string;
1482
+ };
1483
+ fea: {
1484
+ title: string;
1485
+ i: string;
1486
+ o: string;
1487
+ cp: string;
1488
+ calc: string;
1489
+ mr: string;
1490
+ };
1491
+ compliance: {
1492
+ title: string;
1493
+ };
1494
+ LLP: string;
1495
+ slogan: string;
1496
+ newVersion: {
1497
+ services: {
1498
+ title: string;
1499
+ counterparties: string;
1500
+ compliance: string;
1501
+ edo: string;
1502
+ ved: string;
1503
+ procurement: string;
1504
+ fines: string;
1505
+ work: string;
1506
+ analytics: string;
1507
+ };
1508
+ useful: {
1509
+ title: string;
1510
+ apiDescription: string;
1511
+ userAgreement: string;
1512
+ privacyPolicy: string;
1513
+ vacancies: string;
1514
+ companyDirectory: string;
1515
+ };
1516
+ contacts: {
1517
+ title: string;
1518
+ address: string;
1519
+ goToChat: string;
1520
+ };
1521
+ };
1522
+ };
1523
+ our_clients: {
1524
+ title: string;
1525
+ };
1526
+ forms: {
1527
+ feedback: {
1528
+ title: string;
1529
+ subtitle: string;
1530
+ email: string;
1531
+ phone: string;
1532
+ comment: string;
1533
+ send: string;
1534
+ close: string;
1535
+ fieldRequired: string;
1536
+ emailValid: string;
1537
+ phoneMinLength: string;
1538
+ commentMinLength: string;
1539
+ commentMaxLength: string;
1540
+ modalTitle: string;
1541
+ modalSubtitle: string;
1542
+ };
1543
+ demo: {
1544
+ t: string;
1545
+ st: string;
1546
+ e: string;
1547
+ n: string;
1548
+ p: string;
1549
+ c: string;
1550
+ b: string;
1551
+ };
1552
+ };
1553
+ errorPage: {
1554
+ 504: {
1555
+ title: string;
1556
+ subTitle: string;
1557
+ };
1558
+ 401: {
1559
+ title: string;
1560
+ subTitle: string;
1561
+ };
1562
+ 400: {
1563
+ title: string;
1564
+ subTitle: string;
1565
+ };
1566
+ 404: {
1567
+ title: string;
1568
+ subTitle: string;
1569
+ subTitleSecond: string;
1570
+ };
1571
+ 403: {
1572
+ title: string;
1573
+ subTitle: string;
1574
+ subTitleSecond: string;
1575
+ };
1576
+ 503: {
1577
+ title: string;
1578
+ subTitle: string;
1579
+ };
1580
+ 502: {
1581
+ title: string;
1582
+ subTitle: string;
1583
+ list: string[];
1584
+ };
1585
+ 500: {
1586
+ title: string;
1587
+ subTitle: string;
1588
+ };
1589
+ };
1590
+ actions: {
1591
+ goToMainPage: string;
1592
+ showMore: string;
1593
+ close: string;
1594
+ send: string;
1595
+ };
1596
+ modals: {
1597
+ auth: {
1598
+ title: string;
1599
+ content: string;
1600
+ firstTime: string;
1601
+ };
1602
+ limit: {
1603
+ title: string;
1604
+ content: string;
1605
+ changedToBasic: string;
1606
+ basicPlus: string;
1607
+ };
1608
+ mobile_navigation: {
1609
+ type_main: string;
1610
+ type_contacts: string;
1611
+ type_tariff: string;
1612
+ type_login: string;
1613
+ type_profile: string;
1614
+ return_button: string;
1615
+ };
1616
+ payment_method: {
1617
+ title: string;
1618
+ questions: string;
1619
+ banks: {
1620
+ kaspi: string;
1621
+ other: string;
1622
+ };
1623
+ redirects_bank: {
1624
+ title: string;
1625
+ paymentId: string;
1626
+ subtitle: string;
1627
+ };
1628
+ };
1629
+ connecting: {
1630
+ title: string;
1631
+ questions: string;
1632
+ };
1633
+ replenish_modal: {
1634
+ title: string;
1635
+ info: string;
1636
+ enter_sum: string;
1637
+ };
1638
+ low_balance: {
1639
+ title: string;
1640
+ current_balance: string;
1641
+ questions: string;
1642
+ };
1643
+ another_device_modal: {
1644
+ title: string;
1645
+ info: string;
1646
+ alert: string;
1647
+ };
1648
+ no_access: {
1649
+ title: string;
1650
+ info: string;
1651
+ };
1652
+ buttons: {
1653
+ close: string;
1654
+ back: string;
1655
+ buy: string;
1656
+ topUp: string;
1657
+ goToMainPage: string;
1658
+ logIn: string;
1659
+ register: string;
1660
+ goTariffs: string;
1661
+ example: string;
1662
+ toMain: string;
1663
+ goToKaspi: string;
1664
+ };
1665
+ submit_application_modal: {
1666
+ title: string;
1667
+ labels: {
1668
+ name: string;
1669
+ email: string;
1670
+ phone: string;
1671
+ comment: string;
1672
+ };
1673
+ rules: {
1674
+ required: string;
1675
+ email: string;
1676
+ };
1677
+ };
1678
+ application_accepted_modal: {
1679
+ title: string;
1680
+ info: string;
1681
+ };
1682
+ report_bug: {
1683
+ title: string;
1684
+ confirmed: string;
1685
+ gratitude: string;
1686
+ labels: {
1687
+ name: string;
1688
+ email: string;
1689
+ phone: string;
1690
+ comment: string;
1691
+ };
1692
+ validation: {
1693
+ required: string;
1694
+ phone: string;
1695
+ };
1696
+ };
1697
+ };
1698
+ mobile_navigation: {
1699
+ contacts: {
1700
+ first_type: string;
1701
+ second_type: string;
1702
+ allData: {
1703
+ address: string;
1704
+ address_info: string;
1705
+ email: string;
1706
+ mode: string;
1707
+ mode_info: string;
1708
+ sales_department: string;
1709
+ technical_support: string;
1710
+ support_link_title: string;
1711
+ };
1712
+ };
1713
+ content: {};
1714
+ };
1715
+ illustrations: {
1716
+ afterLogInBlock: {
1717
+ tariff: string;
1718
+ login: string;
1719
+ };
1720
+ };
1721
+ restTasks: {
1722
+ title: string;
1723
+ tabTitleList: {
1724
+ title: string;
1725
+ description: string;
1726
+ }[];
1727
+ };
1728
+ };
1729
+ };
1730
+ };
1731
+ export default _default;