@retailcrm/datalens-ui 0.0.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 (3270) hide show
  1. package/AccessErrorPage.js +18 -0
  2. package/AdvancedChartWidget.js +253 -0
  3. package/AppearanceSettings.js +45 -0
  4. package/Body.js +2328 -0
  5. package/CreateProfilePage.js +142 -0
  6. package/HighchartsMapWidget.js +602 -0
  7. package/LICENSE +203 -0
  8. package/MainPage.js +121 -0
  9. package/MarkupWidget.js +33 -0
  10. package/MetricWidget.js +579 -0
  11. package/StyledSplitPane.js +41 -0
  12. package/UserProfilePage.js +44 -0
  13. package/UsersList.js +306 -0
  14. package/YandexMapWidget.js +2698 -0
  15. package/assets/images/dark/403.js +4 -0
  16. package/assets/images/dark/404.js +4 -0
  17. package/assets/images/dark/500.js +4 -0
  18. package/assets/images/dark/bad_request.js +4 -0
  19. package/assets/images/dark/empty_directory.js +4 -0
  20. package/assets/images/dark/empty_state.js +4 -0
  21. package/assets/images/dark/no_accounts.js +4 -0
  22. package/assets/images/dark/no_permission.js +4 -0
  23. package/assets/images/dark/project.js +4 -0
  24. package/assets/images/dark/success_operation.js +4 -0
  25. package/assets/images/light/403.js +4 -0
  26. package/assets/images/light/404.js +4 -0
  27. package/assets/images/light/500.js +4 -0
  28. package/assets/images/light/bad_request.js +4 -0
  29. package/assets/images/light/empty_directory.js +4 -0
  30. package/assets/images/light/empty_state.js +4 -0
  31. package/assets/images/light/no_accounts.js +4 -0
  32. package/assets/images/light/no_permission.js +4 -0
  33. package/assets/images/light/project.js +4 -0
  34. package/assets/images/light/success_operation.js +4 -0
  35. package/components/AccessRights.js +5908 -0
  36. package/components/ActionPanel.js +3507 -0
  37. package/components/AdaptiveDialog.js +45 -0
  38. package/components/AnimateBlock.js +38 -0
  39. package/components/AsideHeaderAdapter.js +632 -0
  40. package/components/AsyncImage.js +77 -0
  41. package/components/AutogeneratedPaletteIcon.js +53 -0
  42. package/components/BetaMark.js +9 -0
  43. package/components/Breadcrumbs.js +70 -0
  44. package/components/BreadcrumbsItemLink.js +16 -0
  45. package/components/ButtonAttach.js +32 -0
  46. package/components/Collapse.js +159 -0
  47. package/components/CollectionFilters.js +340 -0
  48. package/components/CollectionIcon.js +14 -0
  49. package/components/CollectionsStructure.js +3262 -0
  50. package/components/ColorPaletteEditorContainer.js +1091 -0
  51. package/components/ColorPaletteSelect.js +120 -0
  52. package/components/ColorPickerInput.js +199 -0
  53. package/components/ConnectorIcon.js +65 -0
  54. package/components/ControlComponents.js +24341 -0
  55. package/components/CopyEntriesToWorkbookDialog.js +414 -0
  56. package/components/DashKit.js +4026 -0
  57. package/components/DataTypeIcon.js +68 -0
  58. package/components/DatasetFieldList.js +51 -0
  59. package/components/DebouncedInput.js +47 -0
  60. package/components/DialogAddSharedEntryFromLink.js +146 -0
  61. package/components/DialogChartWidget.js +1265 -0
  62. package/components/DialogCommon.js +91 -0
  63. package/components/DialogConfirm.js +69 -0
  64. package/components/DialogDefault.js +78 -0
  65. package/components/DialogEditItem.js +183 -0
  66. package/components/DialogEntryDescription.js +175 -0
  67. package/components/DialogErrorWithTabs.js +373 -0
  68. package/components/DialogExternalControl.js +108 -0
  69. package/components/DialogFieldEditor.js +45 -0
  70. package/components/DialogFilter.js +3735 -0
  71. package/components/DialogGroupControl.js +926 -0
  72. package/components/DialogImageWidget.js +203 -0
  73. package/components/DialogManager.js +42 -0
  74. package/components/DialogNoRights.js +19 -0
  75. package/components/DialogParameter.js +560 -0
  76. package/components/DialogQLParameter.js +71 -0
  77. package/components/DialogRelatedEntities.js +230 -0
  78. package/components/DialogRelations.js +3389 -0
  79. package/components/DialogSelectSharedEntry.js +129 -0
  80. package/components/DialogSharedEntryBindings.js +496 -0
  81. package/components/DialogSharedEntryPermissions.js +147 -0
  82. package/components/DialogSharedEntryUnbind.js +124 -0
  83. package/components/DialogSharedRelatedEntities.js +196 -0
  84. package/components/DialogSuccessWithAction.js +23 -0
  85. package/components/DialogTextWidget.js +211 -0
  86. package/components/DialogTitleWidget.js +580 -0
  87. package/components/DialogWarning.js +51 -0
  88. package/components/DropdownAction.js +13 -0
  89. package/components/DropdownNavigation.js +173 -0
  90. package/components/EditableText.js +56 -0
  91. package/components/EntitiesList.js +54 -0
  92. package/components/EntityIcon.js +47 -0
  93. package/components/EntityLink.js +14 -0
  94. package/components/EntityRow.js +99 -0
  95. package/components/EntriesList.js +55 -0
  96. package/components/EntryBreadcrumbs.js +111 -0
  97. package/components/EntryContextMenu.js +792 -0
  98. package/components/EntryDialogues.js +2515 -0
  99. package/components/EntryIcon.js +102 -0
  100. package/components/EntryRow.js +99 -0
  101. package/components/EntryTitle.js +57 -0
  102. package/components/ErrorBoundary.js +24 -0
  103. package/components/ErrorContent.js +249 -0
  104. package/components/ErrorPage.js +30 -0
  105. package/components/ExpandablePanel.js +67 -0
  106. package/components/FieldEditor.js +2240 -0
  107. package/components/FieldWrapper.js +15 -0
  108. package/components/FloatMenu.js +41 -0
  109. package/components/FormSection.js +16 -0
  110. package/components/FormattedValue.js +1 -0
  111. package/components/IamAccessDialog.js +15 -0
  112. package/components/IconById.js +14 -0
  113. package/components/Illustration.js +94 -0
  114. package/components/InaccessibleOnMobileInset.js +39 -0
  115. package/components/Interpolate.js +32 -0
  116. package/components/InterpolatedText.js +47 -0
  117. package/components/LandingPage.js +50 -0
  118. package/components/ListWithMenu.js +191 -0
  119. package/components/ListWithRemove.js +42 -0
  120. package/components/LocationChange.js +23 -0
  121. package/components/MarkdownControl.js +21 -0
  122. package/components/MarkdownHelpPopover.js +77 -0
  123. package/components/Markup.js +200 -0
  124. package/components/MigrateToWorkbookDialog.js +498 -0
  125. package/components/MobileHeader.js +142 -0
  126. package/components/MobileTocToggle.js +16 -0
  127. package/components/Monaco.js +112 -0
  128. package/components/Navigation.js +2675 -0
  129. package/components/NavigationPrompt.js +18 -0
  130. package/components/NavigationTabs.js +84 -0
  131. package/components/NumberFormatSettings.js +193 -0
  132. package/components/OpenDialogNeedReset.js +49 -0
  133. package/components/OrderBySelect.js +51 -0
  134. package/components/PageTitle.js +53 -0
  135. package/components/PaletteIcon.js +25 -0
  136. package/components/PaletteItem.js +44 -0
  137. package/components/PathSelect.js +113 -0
  138. package/components/PlaceholderIllustration.js +37 -0
  139. package/components/Progress.js +47 -0
  140. package/components/ProgressBar.js +19 -0
  141. package/components/RelativeDatesPicker.js +675 -0
  142. package/components/RevisionStatusPoint.js +25 -0
  143. package/components/Revisions.js +314 -0
  144. package/components/RevisionsPanel.js +278 -0
  145. package/components/SectionWrapper.js +52 -0
  146. package/components/Select.js +404 -0
  147. package/components/SelectComponents.js +12 -0
  148. package/components/SelectMigrationToWorkbookDialog.js +162 -0
  149. package/components/SharedBindingsList.js +93 -0
  150. package/components/SharedEntryIcon.js +22 -0
  151. package/components/SlugifyUrl.js +22 -0
  152. package/components/SmartLoader.js +28 -0
  153. package/components/TabMenu.js +356 -0
  154. package/components/Tabs.js +66 -0
  155. package/components/TagInput.js +142 -0
  156. package/components/TemplateTextPaper.js +32 -0
  157. package/components/TextEditor.js +41 -0
  158. package/components/UserAvatar.js +233 -0
  159. package/components/UserMenu.js +54 -0
  160. package/components/ValuesList.js +55 -0
  161. package/components/Veil.js +19 -0
  162. package/components/ViewAsync.js +45 -0
  163. package/components/ViewError.js +115 -0
  164. package/components/ViewLoader.js +17 -0
  165. package/components/WidgetRoundingsInput.js +47 -0
  166. package/components/Widgets.js +3964 -0
  167. package/components/WorkbookIcon.js +63 -0
  168. package/components/WorkbookNavigationMinimal.js +345 -0
  169. package/components/YfmWrapper.js +144 -0
  170. package/components/common.js +4451 -0
  171. package/highcharts.js +380 -0
  172. package/index.css +24402 -0
  173. package/index.js +24 -0
  174. package/main.js +5018 -0
  175. package/markdown.js +362 -0
  176. package/package.json +107 -0
  177. package/pages/AuthPage.js +604 -0
  178. package/pages/CollectionsNavigationPage.js +2579 -0
  179. package/pages/ConnectionsPage.js +11918 -0
  180. package/pages/DashAndWizardQLPages.js +67 -0
  181. package/pages/DashPage.js +16470 -0
  182. package/pages/DatasetPage.js +9986 -0
  183. package/pages/FallbackPage.js +8 -0
  184. package/pages/LandingPage.js +8 -0
  185. package/pages/OwnUserProfilePage.js +878 -0
  186. package/pages/PreviewPage.js +284 -0
  187. package/pages/QLPage.js +9628 -0
  188. package/pages/ServiceSettingsPage.js +180 -0
  189. package/pages/WizardPage.js +2774 -0
  190. package/perfomance.js +23 -0
  191. package/serviceSettings.js +117 -0
  192. package/types/i18n/constants.d.ts +4 -0
  193. package/types/i18n/index.d.ts +6 -0
  194. package/types/i18n/prepare-keysets/constants.d.ts +2 -0
  195. package/types/i18n/prepare-keysets/index.d.ts +1 -0
  196. package/types/i18n/prepare-keysets/prepare-keysets.d.ts +1 -0
  197. package/types/i18n/prepare-keysets/utils.d.ts +22 -0
  198. package/types/i18n/read-keysets.d.ts +5 -0
  199. package/types/i18n/types.d.ts +11 -0
  200. package/types/i18n/utils.d.ts +12 -0
  201. package/types/index.d.ts +2 -0
  202. package/types/server/app-env.d.ts +10 -0
  203. package/types/server/callbacks/index.d.ts +4 -0
  204. package/types/server/callbacks/page-error.d.ts +3 -0
  205. package/types/server/components/api-docs/constants.d.ts +1 -0
  206. package/types/server/components/api-docs/index.d.ts +1 -0
  207. package/types/server/components/api-docs/types.d.ts +11 -0
  208. package/types/server/components/app-layout/app-layout-settings.d.ts +3 -0
  209. package/types/server/components/app-layout/plugins/layout/index.d.ts +2 -0
  210. package/types/server/components/auth/callbacks/auth-layout.d.ts +3 -0
  211. package/types/server/components/auth/callbacks/index.d.ts +4 -0
  212. package/types/server/components/auth/middlewares/auth/api-auth.d.ts +2 -0
  213. package/types/server/components/auth/middlewares/auth/constants.d.ts +2 -0
  214. package/types/server/components/auth/middlewares/auth/index.d.ts +2 -0
  215. package/types/server/components/auth/middlewares/auth/ui-auth.d.ts +2 -0
  216. package/types/server/components/auth/routes.d.ts +4 -0
  217. package/types/server/components/auth/types/token.d.ts +10 -0
  218. package/types/server/components/auth/types/user.d.ts +14 -0
  219. package/types/server/components/axios.d.ts +3 -0
  220. package/types/server/components/cache-client.d.ts +30 -0
  221. package/types/server/components/chart-editor-developer-mode-access-check.d.ts +2 -0
  222. package/types/server/components/charts-engine/components/chart-generator.d.ts +70 -0
  223. package/types/server/components/charts-engine/components/chart-validator.d.ts +6 -0
  224. package/types/server/components/charts-engine/components/error-handler.d.ts +15 -0
  225. package/types/server/components/charts-engine/components/markdown.d.ts +6 -0
  226. package/types/server/components/charts-engine/components/processor/chart-api-context.d.ts +14 -0
  227. package/types/server/components/charts-engine/components/processor/comments-fetcher.d.ts +72 -0
  228. package/types/server/components/charts-engine/components/processor/console.d.ts +13 -0
  229. package/types/server/components/charts-engine/components/processor/control-builder.d.ts +10 -0
  230. package/types/server/components/charts-engine/components/processor/data-fetcher.d.ts +110 -0
  231. package/types/server/components/charts-engine/components/processor/hooks.d.ts +48 -0
  232. package/types/server/components/charts-engine/components/processor/index.d.ts +84 -0
  233. package/types/server/components/charts-engine/components/processor/paramsUtils.d.ts +17 -0
  234. package/types/server/components/charts-engine/components/processor/sources.d.ts +10 -0
  235. package/types/server/components/charts-engine/components/processor/stack-trace-prepaper.d.ts +3 -0
  236. package/types/server/components/charts-engine/components/processor/types.d.ts +169 -0
  237. package/types/server/components/charts-engine/components/processor/utils.d.ts +12 -0
  238. package/types/server/components/charts-engine/components/processor/worker-chart-builder.d.ts +26 -0
  239. package/types/server/components/charts-engine/components/request/axios.d.ts +54 -0
  240. package/types/server/components/charts-engine/components/request/index.d.ts +36 -0
  241. package/types/server/components/charts-engine/components/storage/base.d.ts +76 -0
  242. package/types/server/components/charts-engine/components/storage/index.d.ts +7 -0
  243. package/types/server/components/charts-engine/components/storage/types.d.ts +94 -0
  244. package/types/server/components/charts-engine/components/storage/united-storage/index.d.ts +3 -0
  245. package/types/server/components/charts-engine/components/storage/united-storage/provider.d.ts +115 -0
  246. package/types/server/components/charts-engine/components/utils.d.ts +26 -0
  247. package/types/server/components/charts-engine/components/wizard-worker/index.d.ts +1 -0
  248. package/types/server/components/charts-engine/components/wizard-worker/types.d.ts +72 -0
  249. package/types/server/components/charts-engine/components/wizard-worker/utils.d.ts +3 -0
  250. package/types/server/components/charts-engine/constants/index.d.ts +53 -0
  251. package/types/server/components/charts-engine/controllers/charts.d.ts +49 -0
  252. package/types/server/components/charts-engine/controllers/config.d.ts +3 -0
  253. package/types/server/components/charts-engine/controllers/csvConverter.d.ts +13 -0
  254. package/types/server/components/charts-engine/controllers/embedded-entry.d.ts +2 -0
  255. package/types/server/components/charts-engine/controllers/embeds.d.ts +3 -0
  256. package/types/server/components/charts-engine/controllers/export.d.ts +2 -0
  257. package/types/server/components/charts-engine/controllers/markdown.d.ts +5 -0
  258. package/types/server/components/charts-engine/controllers/run.d.ts +10 -0
  259. package/types/server/components/charts-engine/controllers/utils.d.ts +29 -0
  260. package/types/server/components/charts-engine/index.d.ts +49 -0
  261. package/types/server/components/charts-engine/runners/common.d.ts +59 -0
  262. package/types/server/components/charts-engine/runners/control.d.ts +2 -0
  263. package/types/server/components/charts-engine/runners/index.d.ts +25 -0
  264. package/types/server/components/charts-engine/runners/utils.d.ts +1 -0
  265. package/types/server/components/charts-engine/runners/wizard.d.ts +2 -0
  266. package/types/server/components/charts-engine/runners/worker.d.ts +8 -0
  267. package/types/server/components/charts-engine/types.d.ts +169 -0
  268. package/types/server/components/features/features-list/AsideHeaderEnabled.d.ts +3 -0
  269. package/types/server/components/features/features-list/AuthUpdateWithTimeout.d.ts +3 -0
  270. package/types/server/components/features/features-list/ChartEditorDeveloperModeCheck.d.ts +3 -0
  271. package/types/server/components/features/features-list/ChartkitAlerts.d.ts +3 -0
  272. package/types/server/components/features/features-list/CollectionsAccessEnabled.d.ts +3 -0
  273. package/types/server/components/features/features-list/CollectionsEnabled.d.ts +3 -0
  274. package/types/server/components/features/features-list/Comments.d.ts +3 -0
  275. package/types/server/components/features/features-list/ConnectionBasedControl.d.ts +3 -0
  276. package/types/server/components/features/features-list/CopyEntriesToWorkbook.d.ts +3 -0
  277. package/types/server/components/features/features-list/DashBoardSupportDescription.d.ts +3 -0
  278. package/types/server/components/features/features-list/DashBoardWidgetParamsStrictValidation.d.ts +3 -0
  279. package/types/server/components/features/features-list/DashServerMigrationEnable.d.ts +3 -0
  280. package/types/server/components/features/features-list/DashServerValidationEnabled.d.ts +3 -0
  281. package/types/server/components/features/features-list/DatasetsRLS.d.ts +3 -0
  282. package/types/server/components/features/features-list/DisableFnAndHtml.d.ts +3 -0
  283. package/types/server/components/features/features-list/EnableAutocreateDataset.d.ts +3 -0
  284. package/types/server/components/features/features-list/EnableChartEditorDocs.d.ts +3 -0
  285. package/types/server/components/features/features-list/EnableCommonChartDashSettings.d.ts +3 -0
  286. package/types/server/components/features/features-list/EnableCustomDashMargins.d.ts +3 -0
  287. package/types/server/components/features/features-list/EnableCustomMonitoring.d.ts +3 -0
  288. package/types/server/components/features/features-list/EnableDLRebranding.d.ts +3 -0
  289. package/types/server/components/features/features-list/EnableDashAutoFocus.d.ts +3 -0
  290. package/types/server/components/features/features-list/EnableDashChartStat.d.ts +3 -0
  291. package/types/server/components/features/features-list/EnableDashColorPickersByTheme.d.ts +3 -0
  292. package/types/server/components/features/features-list/EnableDatasetSourcesPagination.d.ts +3 -0
  293. package/types/server/components/features/features-list/EnableEmbedsInDialogShare.d.ts +3 -0
  294. package/types/server/components/features/features-list/EnableEntryMenuItemShare.d.ts +3 -0
  295. package/types/server/components/features/features-list/EnableExportSettings.d.ts +3 -0
  296. package/types/server/components/features/features-list/EnableExportWorkbookFile.d.ts +3 -0
  297. package/types/server/components/features/features-list/EnableFileUploadingByPresignedUrl.d.ts +3 -0
  298. package/types/server/components/features/features-list/EnableFooter.d.ts +3 -0
  299. package/types/server/components/features/features-list/EnableGlobalSelectors.d.ts +3 -0
  300. package/types/server/components/features/features-list/EnableMobileFixedHeader.d.ts +3 -0
  301. package/types/server/components/features/features-list/EnableMobileHeader.d.ts +3 -0
  302. package/types/server/components/features/features-list/EnableNewDashSettings.d.ts +3 -0
  303. package/types/server/components/features/features-list/EnableNewServiceSettings.d.ts +3 -0
  304. package/types/server/components/features/features-list/EnablePublishEntry.d.ts +3 -0
  305. package/types/server/components/features/features-list/EnableRLSV2.d.ts +3 -0
  306. package/types/server/components/features/features-list/EnableSaveAsEditorScript.d.ts +3 -0
  307. package/types/server/components/features/features-list/EnableSecureParamsV2.d.ts +3 -0
  308. package/types/server/components/features/features-list/EnableServerlessEditor.d.ts +3 -0
  309. package/types/server/components/features/features-list/EnableSharedEntries.d.ts +3 -0
  310. package/types/server/components/features/features-list/EnableUpdatingDsSettingsByAction.d.ts +3 -0
  311. package/types/server/components/features/features-list/EntryMenuItemCopy.d.ts +3 -0
  312. package/types/server/components/features/features-list/EntryMenuItemMove.d.ts +3 -0
  313. package/types/server/components/features/features-list/ExternalSelectors.d.ts +3 -0
  314. package/types/server/components/features/features-list/FetchDocumentation.d.ts +3 -0
  315. package/types/server/components/features/features-list/FieldEditorDocSection.d.ts +3 -0
  316. package/types/server/components/features/features-list/GravityChartsForBarYAndScatter.d.ts +3 -0
  317. package/types/server/components/features/features-list/GravityChartsForLineAreaAndBarX.d.ts +3 -0
  318. package/types/server/components/features/features-list/GravityChartsForPieAndTreemap.d.ts +3 -0
  319. package/types/server/components/features/features-list/HideMultitenant.d.ts +3 -0
  320. package/types/server/components/features/features-list/HolidaysOnChart.d.ts +3 -0
  321. package/types/server/components/features/features-list/MassRemoveCollectionsWorkbooks.d.ts +3 -0
  322. package/types/server/components/features/features-list/MenuItemsFlatView.d.ts +3 -0
  323. package/types/server/components/features/features-list/MultiDatasets.d.ts +3 -0
  324. package/types/server/components/features/features-list/MultipleColorsInVisualization.d.ts +3 -0
  325. package/types/server/components/features/features-list/NewTableWidgetForCE.d.ts +3 -0
  326. package/types/server/components/features/features-list/NoJsonFn.d.ts +3 -0
  327. package/types/server/components/features/features-list/QLMonitoring.d.ts +3 -0
  328. package/types/server/components/features/features-list/QLPrometheus.d.ts +3 -0
  329. package/types/server/components/features/features-list/QlAutoExecuteMonitoringChart.d.ts +3 -0
  330. package/types/server/components/features/features-list/ReadOnlyMode.d.ts +3 -0
  331. package/types/server/components/features/features-list/RevisionsListNoLimit.d.ts +3 -0
  332. package/types/server/components/features/features-list/ShouldCheckEditorAccess.d.ts +3 -0
  333. package/types/server/components/features/features-list/ShowChartsEngineDebugInfo.d.ts +3 -0
  334. package/types/server/components/features/features-list/ShowCreateEntryWithMenu.d.ts +3 -0
  335. package/types/server/components/features/features-list/ShowInspectorDetails.d.ts +3 -0
  336. package/types/server/components/features/features-list/UseAxiosRequest.d.ts +3 -0
  337. package/types/server/components/features/features-list/UseChartsEngineLogin.d.ts +3 -0
  338. package/types/server/components/features/features-list/UseChartsEngineResponseConfig.d.ts +3 -0
  339. package/types/server/components/features/features-list/UseComponentHeader.d.ts +3 -0
  340. package/types/server/components/features/features-list/UseConfigurableChartkit.d.ts +3 -0
  341. package/types/server/components/features/features-list/UsePublicDistincts.d.ts +3 -0
  342. package/types/server/components/features/features-list/UseYqlFolderKey.d.ts +3 -0
  343. package/types/server/components/features/features-list/XlsxChartExportEnabled.d.ts +3 -0
  344. package/types/server/components/features/features-list/XlsxFilesEnabled.d.ts +3 -0
  345. package/types/server/components/features/features-list/index.d.ts +3 -0
  346. package/types/server/components/features/index.d.ts +2 -0
  347. package/types/server/components/features/utils.d.ts +15 -0
  348. package/types/server/components/gateway-auth-helpers/bi-auth-helpers.d.ts +9 -0
  349. package/types/server/components/gateway-auth-helpers/index.d.ts +2 -0
  350. package/types/server/components/gateway-auth-helpers/us-auth-helpers.d.ts +9 -0
  351. package/types/server/components/index.d.ts +4 -0
  352. package/types/server/components/layout/index.d.ts +2 -0
  353. package/types/server/components/layout/landing-layout.d.ts +3 -0
  354. package/types/server/components/layout/opensource-layout-config.d.ts +2 -0
  355. package/types/server/components/layout/utils.d.ts +9 -0
  356. package/types/server/components/metrika-data-formatter.d.ts +2 -0
  357. package/types/server/components/public-api/config/index.d.ts +1 -0
  358. package/types/server/components/public-api/config/v1.d.ts +330 -0
  359. package/types/server/components/public-api/constants/common.d.ts +21 -0
  360. package/types/server/components/public-api/constants/index.d.ts +1 -0
  361. package/types/server/components/public-api/index.d.ts +2 -0
  362. package/types/server/components/public-api/types.d.ts +39 -0
  363. package/types/server/components/public-api/utils/index.d.ts +3 -0
  364. package/types/server/components/public-api/utils/init-public-api-swagger.d.ts +2 -0
  365. package/types/server/components/public-api/utils/prepare-public-api-base-config.d.ts +4 -0
  366. package/types/server/components/public-api/utils/register-action-to-open-api.d.ts +9 -0
  367. package/types/server/components/resolve-entry-by-link.d.ts +9 -0
  368. package/types/server/components/sdk/dash.d.ts +32 -0
  369. package/types/server/components/sdk/index.d.ts +2 -0
  370. package/types/server/components/sdk/us.d.ts +22 -0
  371. package/types/server/components/workbook-transfer/charts.d.ts +56 -0
  372. package/types/server/components/workbook-transfer/create-transfer-notifications.d.ts +21 -0
  373. package/types/server/components/workbook-transfer/dash.d.ts +35 -0
  374. package/types/server/components/zitadel/init-zitadel.d.ts +6 -0
  375. package/types/server/components/zitadel/routes.d.ts +8 -0
  376. package/types/server/components/zitadel/utils.d.ts +23 -0
  377. package/types/server/configs/common.d.ts +24 -0
  378. package/types/server/configs/opensource/common.d.ts +115 -0
  379. package/types/server/configs/opensource/development.d.ts +4 -0
  380. package/types/server/configs/secrets.d.ts +3 -0
  381. package/types/server/configs/shared/control-dash-chart-template.d.ts +8 -0
  382. package/types/server/configs/shared/datalens-chart-template.d.ts +9 -0
  383. package/types/server/configs/shared/ql-chart-template.d.ts +11 -0
  384. package/types/server/constants/axios.d.ts +6 -0
  385. package/types/server/constants/index.d.ts +23 -0
  386. package/types/server/constants/public-api.d.ts +1 -0
  387. package/types/server/controllers/api.d.ts +4 -0
  388. package/types/server/controllers/dl-main.d.ts +2 -0
  389. package/types/server/controllers/index.d.ts +6 -0
  390. package/types/server/controllers/navigate.d.ts +2 -0
  391. package/types/server/controllers/navigation.d.ts +2 -0
  392. package/types/server/controllers/ping.d.ts +2 -0
  393. package/types/server/controllers/public-api/constants.d.ts +10 -0
  394. package/types/server/controllers/public-api/index.d.ts +3 -0
  395. package/types/server/controllers/public-api/utils.d.ts +14 -0
  396. package/types/server/controllers/stats.d.ts +2 -0
  397. package/types/server/controllers/utils/handle-entry-redirect.d.ts +3 -0
  398. package/types/server/controllers/workbook-transfer.d.ts +34 -0
  399. package/types/server/controllers/xlsx-converter.d.ts +9 -0
  400. package/types/server/controllers/zitadel.d.ts +2 -0
  401. package/types/server/expresskit.d.ts +7 -0
  402. package/types/server/index.d.ts +0 -0
  403. package/types/server/lib/validation/index.d.ts +3 -0
  404. package/types/server/lib/validation/types.d.ts +12 -0
  405. package/types/server/local-dev.d.ts +1 -0
  406. package/types/server/middlewares/app-layout.d.ts +9 -0
  407. package/types/server/middlewares/auth-zitadel.d.ts +2 -0
  408. package/types/server/middlewares/before-auth-defaults.d.ts +2 -0
  409. package/types/server/middlewares/connector-icons.d.ts +10 -0
  410. package/types/server/middlewares/ctx.d.ts +2 -0
  411. package/types/server/middlewares/index.d.ts +9 -0
  412. package/types/server/middlewares/patch-logger.d.ts +2 -0
  413. package/types/server/middlewares/scr-requests.d.ts +2 -0
  414. package/types/server/middlewares/server-feature-with-bounded-context.d.ts +2 -0
  415. package/types/server/middlewares/tenant-settings.d.ts +2 -0
  416. package/types/server/middlewares/x-dl-context.d.ts +6 -0
  417. package/types/server/modes/charts/init-charts-engine.d.ts +18 -0
  418. package/types/server/modes/charts/plugins/constants/middleware-urls.d.ts +3 -0
  419. package/types/server/modes/charts/plugins/constants/misc.d.ts +10 -0
  420. package/types/server/modes/charts/plugins/control/constants/misc.d.ts +1 -0
  421. package/types/server/modes/charts/plugins/control/controls/index.d.ts +4 -0
  422. package/types/server/modes/charts/plugins/control/helpers/misc.d.ts +13 -0
  423. package/types/server/modes/charts/plugins/control/index.d.ts +19 -0
  424. package/types/server/modes/charts/plugins/control/js/helpers/dataset/process-dataset-content.d.ts +8 -0
  425. package/types/server/modes/charts/plugins/control/js/helpers/dataset/process-fields.d.ts +3 -0
  426. package/types/server/modes/charts/plugins/control/js/helpers/process-content.d.ts +11 -0
  427. package/types/server/modes/charts/plugins/control/js/helpers/typed-query/process-typed-query-content.d.ts +3 -0
  428. package/types/server/modes/charts/plugins/control/js/helpers/typed-query/process-typed-query-parameters.d.ts +6 -0
  429. package/types/server/modes/charts/plugins/control/js/index.d.ts +9 -0
  430. package/types/server/modes/charts/plugins/control/js/types.d.ts +10 -0
  431. package/types/server/modes/charts/plugins/control/types.d.ts +50 -0
  432. package/types/server/modes/charts/plugins/control/url/constants.d.ts +9 -0
  433. package/types/server/modes/charts/plugins/control/url/distincts/build-distincts-body.d.ts +10 -0
  434. package/types/server/modes/charts/plugins/control/url/distincts/index.d.ts +2 -0
  435. package/types/server/modes/charts/plugins/control/url/fields/index.d.ts +4 -0
  436. package/types/server/modes/charts/plugins/control/url/index.d.ts +2 -0
  437. package/types/server/modes/charts/plugins/control/url/typed-query/index.d.ts +2 -0
  438. package/types/server/modes/charts/plugins/control/url/types.d.ts +27 -0
  439. package/types/server/modes/charts/plugins/dash-api.d.ts +14 -0
  440. package/types/server/modes/charts/plugins/data-api-json-schema.d.ts +2 -0
  441. package/types/server/modes/charts/plugins/datalens/chart-editor-module.d.ts +136 -0
  442. package/types/server/modes/charts/plugins/datalens/config/constants.d.ts +5 -0
  443. package/types/server/modes/charts/plugins/datalens/config/index.d.ts +58 -0
  444. package/types/server/modes/charts/plugins/datalens/config/types.d.ts +57 -0
  445. package/types/server/modes/charts/plugins/datalens/gravity-charts/utils/dataLabels.d.ts +2 -0
  446. package/types/server/modes/charts/plugins/datalens/gravity-charts/utils/format.d.ts +5 -0
  447. package/types/server/modes/charts/plugins/datalens/gravity-charts/utils/index.d.ts +14 -0
  448. package/types/server/modes/charts/plugins/datalens/gravity-charts/utils/range-slider.d.ts +13 -0
  449. package/types/server/modes/charts/plugins/datalens/highcharts.d.ts +12 -0
  450. package/types/server/modes/charts/plugins/datalens/js/constants/errors.d.ts +6 -0
  451. package/types/server/modes/charts/plugins/datalens/js/helpers/colors/index.d.ts +10 -0
  452. package/types/server/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/index.d.ts +5 -0
  453. package/types/server/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/types.d.ts +14 -0
  454. package/types/server/modes/charts/plugins/datalens/js/helpers/errors/oversize-error/utils.d.ts +8 -0
  455. package/types/server/modes/charts/plugins/datalens/js/helpers/layer-chart/index.d.ts +19 -0
  456. package/types/server/modes/charts/plugins/datalens/js/helpers/layer-chart/types.d.ts +7 -0
  457. package/types/server/modes/charts/plugins/datalens/js/helpers/misc/prepare-single-result.d.ts +20 -0
  458. package/types/server/modes/charts/plugins/datalens/js/helpers/notifications/index.d.ts +2 -0
  459. package/types/server/modes/charts/plugins/datalens/js/helpers/totals/index.d.ts +2 -0
  460. package/types/server/modes/charts/plugins/datalens/js/helpers/totals/types.d.ts +13 -0
  461. package/types/server/modes/charts/plugins/datalens/js/js-v1.5-private.d.ts +12 -0
  462. package/types/server/modes/charts/plugins/datalens/js/js.d.ts +11 -0
  463. package/types/server/modes/charts/plugins/datalens/preparers/area/index.d.ts +3 -0
  464. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/constants/misc.d.ts +1 -0
  465. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/backgroundColor.d.ts +41 -0
  466. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/color.d.ts +24 -0
  467. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/misc.d.ts +29 -0
  468. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/sort.d.ts +10 -0
  469. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/totals.d.ts +10 -0
  470. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/helpers/types.d.ts +6 -0
  471. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/index.d.ts +9 -0
  472. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/table-head-generator.d.ts +53 -0
  473. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/table-rows-generator.d.ts +19 -0
  474. package/types/server/modes/charts/plugins/datalens/preparers/backend-pivot-table/types.d.ts +125 -0
  475. package/types/server/modes/charts/plugins/datalens/preparers/bar-x/gravity-charts.d.ts +3 -0
  476. package/types/server/modes/charts/plugins/datalens/preparers/bar-x/highcharts.d.ts +19 -0
  477. package/types/server/modes/charts/plugins/datalens/preparers/bar-x/index.d.ts +2 -0
  478. package/types/server/modes/charts/plugins/datalens/preparers/bar-x/prepare-bar-x.d.ts +19 -0
  479. package/types/server/modes/charts/plugins/datalens/preparers/bar-y/gravity-charts.d.ts +3 -0
  480. package/types/server/modes/charts/plugins/datalens/preparers/bar-y/highcharts.d.ts +22 -0
  481. package/types/server/modes/charts/plugins/datalens/preparers/bar-y/index.d.ts +2 -0
  482. package/types/server/modes/charts/plugins/datalens/preparers/bar-y/prepare-bar-y-data.d.ts +22 -0
  483. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/get-background-colors-map-by-continuous-column.d.ts +9 -0
  484. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/get-flat-table-background-styles.d.ts +11 -0
  485. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/index.d.ts +2 -0
  486. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/background-settings/types.d.ts +39 -0
  487. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/footer/index.d.ts +11 -0
  488. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/footer/types.d.ts +29 -0
  489. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/helpers/misc.d.ts +9 -0
  490. package/types/server/modes/charts/plugins/datalens/preparers/flat-table/index.d.ts +43 -0
  491. package/types/server/modes/charts/plugins/datalens/preparers/geopoint/constants.d.ts +2 -0
  492. package/types/server/modes/charts/plugins/datalens/preparers/geopoint/index.d.ts +37 -0
  493. package/types/server/modes/charts/plugins/datalens/preparers/geopoint/types.d.ts +41 -0
  494. package/types/server/modes/charts/plugins/datalens/preparers/geopoint-with-cluster.d.ts +35 -0
  495. package/types/server/modes/charts/plugins/datalens/preparers/geopolygon.d.ts +33 -0
  496. package/types/server/modes/charts/plugins/datalens/preparers/heatmap.d.ts +22 -0
  497. package/types/server/modes/charts/plugins/datalens/preparers/helpers/action-params.d.ts +3 -0
  498. package/types/server/modes/charts/plugins/datalens/preparers/helpers/axis/addAxisFormatter.d.ts +9 -0
  499. package/types/server/modes/charts/plugins/datalens/preparers/helpers/axis/addAxisFormatting.d.ts +2 -0
  500. package/types/server/modes/charts/plugins/datalens/preparers/helpers/axis/get-axis-formatting.d.ts +7 -0
  501. package/types/server/modes/charts/plugins/datalens/preparers/helpers/axis/getAxisType.d.ts +9 -0
  502. package/types/server/modes/charts/plugins/datalens/preparers/helpers/axis/index.d.ts +5 -0
  503. package/types/server/modes/charts/plugins/datalens/preparers/helpers/axis/isAxisLabelDateFormat.d.ts +2 -0
  504. package/types/server/modes/charts/plugins/datalens/preparers/helpers/backgroundSettings/misc.d.ts +2 -0
  505. package/types/server/modes/charts/plugins/datalens/preparers/helpers/barsSettings/index.d.ts +16 -0
  506. package/types/server/modes/charts/plugins/datalens/preparers/helpers/barsSettings/types.d.ts +6 -0
  507. package/types/server/modes/charts/plugins/datalens/preparers/helpers/colors.d.ts +2 -0
  508. package/types/server/modes/charts/plugins/datalens/preparers/helpers/columnSettings.d.ts +2 -0
  509. package/types/server/modes/charts/plugins/datalens/preparers/helpers/get-formatted-value.d.ts +2 -0
  510. package/types/server/modes/charts/plugins/datalens/preparers/helpers/highcharts.d.ts +4 -0
  511. package/types/server/modes/charts/plugins/datalens/preparers/helpers/layers.d.ts +3 -0
  512. package/types/server/modes/charts/plugins/datalens/preparers/helpers/legend.d.ts +12 -0
  513. package/types/server/modes/charts/plugins/datalens/preparers/helpers/segments.d.ts +3 -0
  514. package/types/server/modes/charts/plugins/datalens/preparers/helpers/visualizations.d.ts +4 -0
  515. package/types/server/modes/charts/plugins/datalens/preparers/line/gravity-charts.d.ts +3 -0
  516. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/axis/getLayerPlaceholderWithItems.d.ts +3 -0
  517. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/axis/types.d.ts +3 -0
  518. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/color-helpers/colorizeByGradient.d.ts +3 -0
  519. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/color-helpers/types.d.ts +6 -0
  520. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/getSortedCategories.d.ts +3 -0
  521. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/getSortedLineKeys.d.ts +9 -0
  522. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/getXAxisValue.d.ts +3 -0
  523. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/index.d.ts +11 -0
  524. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/getColoredLineLegendTitle.d.ts +9 -0
  525. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/helpers.d.ts +7 -0
  526. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToDimensionColoredLines.d.ts +6 -0
  527. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToLines.d.ts +6 -0
  528. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/mapDataToMeasureColoredLines.d.ts +7 -0
  529. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/prepareLines.d.ts +2 -0
  530. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/line-mappers/types.d.ts +142 -0
  531. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentName.d.ts +2 -0
  532. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsIndexInOrder.d.ts +3 -0
  533. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsList.d.ts +3 -0
  534. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsMap.d.ts +3 -0
  535. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/segments/getSegmentsYAxis.d.ts +15 -0
  536. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/segments/types.d.ts +20 -0
  537. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/types.d.ts +67 -0
  538. package/types/server/modes/charts/plugins/datalens/preparers/line/helpers/utils.d.ts +5 -0
  539. package/types/server/modes/charts/plugins/datalens/preparers/line/highcharts.d.ts +19 -0
  540. package/types/server/modes/charts/plugins/datalens/preparers/line/index.d.ts +2 -0
  541. package/types/server/modes/charts/plugins/datalens/preparers/line/prepare-line-data.d.ts +19 -0
  542. package/types/server/modes/charts/plugins/datalens/preparers/line/types.d.ts +36 -0
  543. package/types/server/modes/charts/plugins/datalens/preparers/line-time/index.d.ts +4 -0
  544. package/types/server/modes/charts/plugins/datalens/preparers/metric/index.d.ts +56 -0
  545. package/types/server/modes/charts/plugins/datalens/preparers/metric/utils.d.ts +2 -0
  546. package/types/server/modes/charts/plugins/datalens/preparers/metric/variants/basic.d.ts +25 -0
  547. package/types/server/modes/charts/plugins/datalens/preparers/metric/variants/markup.d.ts +44 -0
  548. package/types/server/modes/charts/plugins/datalens/preparers/old-pivot-table/old-pivot-table.d.ts +14 -0
  549. package/types/server/modes/charts/plugins/datalens/preparers/pie/gravity-charts.d.ts +35 -0
  550. package/types/server/modes/charts/plugins/datalens/preparers/pie/highcharts.d.ts +6 -0
  551. package/types/server/modes/charts/plugins/datalens/preparers/pie/index.d.ts +2 -0
  552. package/types/server/modes/charts/plugins/datalens/preparers/pie/prepare-pie-data.d.ts +35 -0
  553. package/types/server/modes/charts/plugins/datalens/preparers/pie/utils.d.ts +4 -0
  554. package/types/server/modes/charts/plugins/datalens/preparers/polyline.d.ts +36 -0
  555. package/types/server/modes/charts/plugins/datalens/preparers/scatter/gravity-charts.d.ts +4 -0
  556. package/types/server/modes/charts/plugins/datalens/preparers/scatter/helpers/shape.d.ts +7 -0
  557. package/types/server/modes/charts/plugins/datalens/preparers/scatter/helpers/tooltip.d.ts +14 -0
  558. package/types/server/modes/charts/plugins/datalens/preparers/scatter/highcharts.d.ts +12 -0
  559. package/types/server/modes/charts/plugins/datalens/preparers/scatter/index.d.ts +2 -0
  560. package/types/server/modes/charts/plugins/datalens/preparers/scatter/prepare-scatter.d.ts +28 -0
  561. package/types/server/modes/charts/plugins/datalens/preparers/scatter/types.d.ts +18 -0
  562. package/types/server/modes/charts/plugins/datalens/preparers/treemap/gravity-charts.d.ts +3 -0
  563. package/types/server/modes/charts/plugins/datalens/preparers/treemap/highcharts.d.ts +40 -0
  564. package/types/server/modes/charts/plugins/datalens/preparers/treemap/index.d.ts +2 -0
  565. package/types/server/modes/charts/plugins/datalens/preparers/types.d.ts +74 -0
  566. package/types/server/modes/charts/plugins/datalens/preparers/utils.d.ts +11 -0
  567. package/types/server/modes/charts/plugins/datalens/private-module.d.ts +85 -0
  568. package/types/server/modes/charts/plugins/datalens/types.d.ts +72 -0
  569. package/types/server/modes/charts/plugins/datalens/url/build-request-body/constants.d.ts +1 -0
  570. package/types/server/modes/charts/plugins/datalens/url/build-request-body/default-request.d.ts +19 -0
  571. package/types/server/modes/charts/plugins/datalens/url/build-request-body/index.d.ts +40 -0
  572. package/types/server/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/index.d.ts +9 -0
  573. package/types/server/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/totals.d.ts +7 -0
  574. package/types/server/modes/charts/plugins/datalens/url/build-request-body/pivot-request/helpers/types.d.ts +42 -0
  575. package/types/server/modes/charts/plugins/datalens/url/build-request-body/pivot-request/index.d.ts +8 -0
  576. package/types/server/modes/charts/plugins/datalens/url/build-sources.d.ts +5 -0
  577. package/types/server/modes/charts/plugins/datalens/url/helpers/fields.d.ts +9 -0
  578. package/types/server/modes/charts/plugins/datalens/url/helpers/filters.d.ts +7 -0
  579. package/types/server/modes/charts/plugins/datalens/url/helpers/index.d.ts +3 -0
  580. package/types/server/modes/charts/plugins/datalens/url/helpers/misc.d.ts +4 -0
  581. package/types/server/modes/charts/plugins/datalens/url/helpers/parameters.d.ts +16 -0
  582. package/types/server/modes/charts/plugins/datalens/url/helpers/table-settings.d.ts +10 -0
  583. package/types/server/modes/charts/plugins/datalens/url/types.d.ts +37 -0
  584. package/types/server/modes/charts/plugins/datalens/utils/axis-helpers.d.ts +10 -0
  585. package/types/server/modes/charts/plugins/datalens/utils/color-helpers.d.ts +93 -0
  586. package/types/server/modes/charts/plugins/datalens/utils/config-helpers.d.ts +9 -0
  587. package/types/server/modes/charts/plugins/datalens/utils/constants.d.ts +37 -0
  588. package/types/server/modes/charts/plugins/datalens/utils/export-helpers.d.ts +7 -0
  589. package/types/server/modes/charts/plugins/datalens/utils/geo-helpers.d.ts +57 -0
  590. package/types/server/modes/charts/plugins/datalens/utils/get-gradient-stops.d.ts +12 -0
  591. package/types/server/modes/charts/plugins/datalens/utils/hierarchy-helpers.d.ts +10 -0
  592. package/types/server/modes/charts/plugins/datalens/utils/markup-helpers.d.ts +26 -0
  593. package/types/server/modes/charts/plugins/datalens/utils/misc-helpers.d.ts +88 -0
  594. package/types/server/modes/charts/plugins/datalens/utils/pivot-table/totals.d.ts +13 -0
  595. package/types/server/modes/charts/plugins/datalens/utils/shape-helpers.d.ts +9 -0
  596. package/types/server/modes/charts/plugins/dataset/v2.d.ts +71 -0
  597. package/types/server/modes/charts/plugins/helpers/color-palettes.d.ts +30 -0
  598. package/types/server/modes/charts/plugins/helpers/misc.d.ts +11 -0
  599. package/types/server/modes/charts/plugins/logins-blacklist.d.ts +8 -0
  600. package/types/server/modes/charts/plugins/ql/index.d.ts +2 -0
  601. package/types/server/modes/charts/plugins/ql/module/chart-editor-module.d.ts +69 -0
  602. package/types/server/modes/charts/plugins/ql/module/config/build-chart-config.d.ts +16 -0
  603. package/types/server/modes/charts/plugins/ql/module/config/index.d.ts +45 -0
  604. package/types/server/modes/charts/plugins/ql/module/highcharts.d.ts +8 -0
  605. package/types/server/modes/charts/plugins/ql/module/js/build-graph.d.ts +14 -0
  606. package/types/server/modes/charts/plugins/ql/module/library-config/build-library-config.d.ts +14 -0
  607. package/types/server/modes/charts/plugins/ql/module/library-config/index.d.ts +12 -0
  608. package/types/server/modes/charts/plugins/ql/module/private-module.d.ts +13 -0
  609. package/types/server/modes/charts/plugins/ql/module/url/build-sources.d.ts +4 -0
  610. package/types/server/modes/charts/plugins/ql/module/url/index.d.ts +8 -0
  611. package/types/server/modes/charts/plugins/ql/module/url/types.d.ts +9 -0
  612. package/types/server/modes/charts/plugins/ql/preparers/line-time.d.ts +10 -0
  613. package/types/server/modes/charts/plugins/ql/preparers/line.d.ts +11 -0
  614. package/types/server/modes/charts/plugins/ql/preparers/metric.d.ts +10 -0
  615. package/types/server/modes/charts/plugins/ql/preparers/pie.d.ts +11 -0
  616. package/types/server/modes/charts/plugins/ql/preparers/preview-table.d.ts +9 -0
  617. package/types/server/modes/charts/plugins/ql/preparers/table.d.ts +10 -0
  618. package/types/server/modes/charts/plugins/ql/ql-chart-runner.d.ts +2 -0
  619. package/types/server/modes/charts/plugins/ql/types.d.ts +4 -0
  620. package/types/server/modes/charts/plugins/ql/utils/autofill-helpers.d.ts +38 -0
  621. package/types/server/modes/charts/plugins/ql/utils/colors.d.ts +19 -0
  622. package/types/server/modes/charts/plugins/ql/utils/connection.d.ts +5 -0
  623. package/types/server/modes/charts/plugins/ql/utils/constants.d.ts +8 -0
  624. package/types/server/modes/charts/plugins/ql/utils/identify-params.d.ts +6 -0
  625. package/types/server/modes/charts/plugins/ql/utils/migrate-helpers.d.ts +30 -0
  626. package/types/server/modes/charts/plugins/ql/utils/misc-helpers.d.ts +139 -0
  627. package/types/server/modes/charts/plugins/ql/utils/value-helpers.d.ts +5 -0
  628. package/types/server/modes/charts/plugins/ql/utils/visualization-utils.d.ts +21 -0
  629. package/types/server/modes/charts/plugins/ql/worker.d.ts +1 -0
  630. package/types/server/modes/charts/plugins/ql/yagr.d.ts +7 -0
  631. package/types/server/modes/charts/plugins/request-with-dataset/index.d.ts +26 -0
  632. package/types/server/modes/charts/plugins/request-with-dataset/middlewareAdapters/charts-with-dataset.d.ts +15 -0
  633. package/types/server/modes/charts/plugins/request-with-dataset/middlewareAdapters/controls-with-dataset.d.ts +13 -0
  634. package/types/server/modes/charts/plugins/request-with-dataset/request-dataset.d.ts +24 -0
  635. package/types/server/modes/charts/plugins/runner-key-adapter.d.ts +8 -0
  636. package/types/server/modes/charts/plugins/types.d.ts +62 -0
  637. package/types/server/modes/charts/telemetry.d.ts +3 -0
  638. package/types/server/modes/opensource/app.d.ts +3 -0
  639. package/types/server/modes/opensource/middlewares/index.d.ts +1 -0
  640. package/types/server/modes/opensource/middlewares/subrequest-headers.d.ts +2 -0
  641. package/types/server/modes/opensource/routes.d.ts +12 -0
  642. package/types/server/nodekit.d.ts +3 -0
  643. package/types/server/registry/index.d.ts +114 -0
  644. package/types/server/registry/units/common/auth-functions-map.d.ts +10 -0
  645. package/types/server/registry/units/common/functions-map.d.ts +16 -0
  646. package/types/server/registry/units/common/index.d.ts +70 -0
  647. package/types/server/registry/units/common/register.d.ts +1 -0
  648. package/types/server/registry/utils/register-app-plugins.d.ts +1 -0
  649. package/types/server/types/app-layout.d.ts +18 -0
  650. package/types/server/types/connections.d.ts +2 -0
  651. package/types/server/types/controllers.d.ts +16 -0
  652. package/types/server/types/gateway.d.ts +7 -0
  653. package/types/server/types/xlsxConverter.d.ts +9 -0
  654. package/types/server/utils/axios.d.ts +3 -0
  655. package/types/server/utils/env-utils.d.ts +1 -0
  656. package/types/server/utils/gateway.d.ts +9 -0
  657. package/types/server/utils/index.d.ts +43 -0
  658. package/types/server/utils/language.d.ts +18 -0
  659. package/types/server/utils/redis.d.ts +20 -0
  660. package/types/server/utils/routes.d.ts +2 -0
  661. package/types/server/utils/schema-validate.d.ts +1 -0
  662. package/types/shared/components/auth/constants/cookie.d.ts +2 -0
  663. package/types/shared/components/auth/constants/role.d.ts +7 -0
  664. package/types/shared/components/auth/constants/token.d.ts +1 -0
  665. package/types/shared/components/auth/constants/url.d.ts +1 -0
  666. package/types/shared/components/auth/types/layout.d.ts +6 -0
  667. package/types/shared/components/public-api/utils/index.d.ts +1 -0
  668. package/types/shared/constants/api-v2.d.ts +4 -0
  669. package/types/shared/constants/chartkit-handlers.d.ts +13 -0
  670. package/types/shared/constants/charts.d.ts +6 -0
  671. package/types/shared/constants/collections.d.ts +5 -0
  672. package/types/shared/constants/colors/common/classic-20.d.ts +3 -0
  673. package/types/shared/constants/colors/common/datalens.d.ts +3 -0
  674. package/types/shared/constants/colors/common/default-20.d.ts +3 -0
  675. package/types/shared/constants/colors/common/emerald-20.d.ts +3 -0
  676. package/types/shared/constants/colors/common/golden-20.d.ts +3 -0
  677. package/types/shared/constants/colors/common/neutral-20.d.ts +3 -0
  678. package/types/shared/constants/colors/common/oceanic-20.d.ts +3 -0
  679. package/types/shared/constants/colors/common/traffic-light-9.d.ts +3 -0
  680. package/types/shared/constants/colors/index.d.ts +24 -0
  681. package/types/shared/constants/colors/tableau/blue-red-12.d.ts +3 -0
  682. package/types/shared/constants/colors/tableau/blue-red-6.d.ts +3 -0
  683. package/types/shared/constants/colors/tableau/color-blind-10.d.ts +3 -0
  684. package/types/shared/constants/colors/tableau/gray-5.d.ts +3 -0
  685. package/types/shared/constants/colors/tableau/green-orange-12.d.ts +3 -0
  686. package/types/shared/constants/colors/tableau/green-orange-6.d.ts +3 -0
  687. package/types/shared/constants/colors/tableau/purpure-gray-12.d.ts +3 -0
  688. package/types/shared/constants/colors/tableau/purpure-gray-6.d.ts +3 -0
  689. package/types/shared/constants/colors/tableau/tableau-10-light.d.ts +3 -0
  690. package/types/shared/constants/colors/tableau/tableau-10-medium.d.ts +3 -0
  691. package/types/shared/constants/colors/tableau/tableau-10.d.ts +3 -0
  692. package/types/shared/constants/colors/tableau/tableau-20.d.ts +3 -0
  693. package/types/shared/constants/colors/tableau/traffic-light.d.ts +3 -0
  694. package/types/shared/constants/colors/types.d.ts +71 -0
  695. package/types/shared/constants/common.d.ts +107 -0
  696. package/types/shared/constants/connections.d.ts +94 -0
  697. package/types/shared/constants/cookie.d.ts +2 -0
  698. package/types/shared/constants/dash.d.ts +32 -0
  699. package/types/shared/constants/datasets.d.ts +4 -0
  700. package/types/shared/constants/datepicker/relative-datepicker.d.ts +11 -0
  701. package/types/shared/constants/entry.d.ts +65 -0
  702. package/types/shared/constants/error/index.d.ts +10 -0
  703. package/types/shared/constants/error-codes.d.ts +61 -0
  704. package/types/shared/constants/exports.d.ts +15 -0
  705. package/types/shared/constants/gradients/default.d.ts +14 -0
  706. package/types/shared/constants/gradients/index.d.ts +132 -0
  707. package/types/shared/constants/gradients/three-point/blue-gray-red.d.ts +5 -0
  708. package/types/shared/constants/gradients/three-point/blue-yellow-red.d.ts +5 -0
  709. package/types/shared/constants/gradients/three-point/orange-blue-green.d.ts +5 -0
  710. package/types/shared/constants/gradients/three-point/orange-gray-blue.d.ts +5 -0
  711. package/types/shared/constants/gradients/three-point/orange-violet-blue.d.ts +5 -0
  712. package/types/shared/constants/gradients/three-point/pink-gray-green.d.ts +5 -0
  713. package/types/shared/constants/gradients/three-point/red-orange-green.d.ts +5 -0
  714. package/types/shared/constants/gradients/three-point/traffic-light.d.ts +5 -0
  715. package/types/shared/constants/gradients/three-point/violet-blue-green.d.ts +5 -0
  716. package/types/shared/constants/gradients/three-point/yellow-green-blue.d.ts +5 -0
  717. package/types/shared/constants/gradients/three-point-gradients.d.ts +48 -0
  718. package/types/shared/constants/gradients/two-point/blue.d.ts +5 -0
  719. package/types/shared/constants/gradients/two-point/cyan.d.ts +5 -0
  720. package/types/shared/constants/gradients/two-point/golden.d.ts +5 -0
  721. package/types/shared/constants/gradients/two-point/gray.d.ts +5 -0
  722. package/types/shared/constants/gradients/two-point/green-blue.d.ts +5 -0
  723. package/types/shared/constants/gradients/two-point/green.d.ts +5 -0
  724. package/types/shared/constants/gradients/two-point/oceanic.d.ts +5 -0
  725. package/types/shared/constants/gradients/two-point/orange-yellow.d.ts +5 -0
  726. package/types/shared/constants/gradients/two-point/red-blue.d.ts +5 -0
  727. package/types/shared/constants/gradients/two-point/red.d.ts +5 -0
  728. package/types/shared/constants/gradients/two-point/violet-orange.d.ts +5 -0
  729. package/types/shared/constants/gradients/two-point/violet.d.ts +5 -0
  730. package/types/shared/constants/gradients/two-point/yellow.d.ts +5 -0
  731. package/types/shared/constants/gradients/two-point-gradients.d.ts +60 -0
  732. package/types/shared/constants/header.d.ts +42 -0
  733. package/types/shared/constants/index.d.ts +33 -0
  734. package/types/shared/constants/markdown.d.ts +1 -0
  735. package/types/shared/constants/markup.d.ts +1 -0
  736. package/types/shared/constants/navigation.d.ts +20 -0
  737. package/types/shared/constants/old-schema.d.ts +3 -0
  738. package/types/shared/constants/placeholder.d.ts +28 -0
  739. package/types/shared/constants/print.d.ts +2 -0
  740. package/types/shared/constants/qa/action-panel.d.ts +14 -0
  741. package/types/shared/constants/qa/chart.d.ts +53 -0
  742. package/types/shared/constants/qa/collections.d.ts +11 -0
  743. package/types/shared/constants/qa/components.d.ts +176 -0
  744. package/types/shared/constants/qa/connections.d.ts +32 -0
  745. package/types/shared/constants/qa/control.d.ts +76 -0
  746. package/types/shared/constants/qa/dash.d.ts +97 -0
  747. package/types/shared/constants/qa/datasets.d.ts +53 -0
  748. package/types/shared/constants/qa/dl-navigation.d.ts +9 -0
  749. package/types/shared/constants/qa/field-editor.d.ts +3 -0
  750. package/types/shared/constants/qa/index.d.ts +16 -0
  751. package/types/shared/constants/qa/ql.d.ts +28 -0
  752. package/types/shared/constants/qa/settings.d.ts +11 -0
  753. package/types/shared/constants/qa/sign-in.d.ts +5 -0
  754. package/types/shared/constants/qa/uikit.d.ts +7 -0
  755. package/types/shared/constants/qa/visualization.d.ts +18 -0
  756. package/types/shared/constants/qa/wizard.d.ts +174 -0
  757. package/types/shared/constants/qa/workbooks.d.ts +18 -0
  758. package/types/shared/constants/ql.d.ts +27 -0
  759. package/types/shared/constants/shapes/index.d.ts +2 -0
  760. package/types/shared/constants/shapes/lines/index.d.ts +42 -0
  761. package/types/shared/constants/shapes/points/index.d.ts +8 -0
  762. package/types/shared/constants/themes.d.ts +17 -0
  763. package/types/shared/constants/timeout.d.ts +9 -0
  764. package/types/shared/constants/ui-sandbox.d.ts +1 -0
  765. package/types/shared/constants/url.d.ts +5 -0
  766. package/types/shared/constants/user.d.ts +4 -0
  767. package/types/shared/constants/visualization.d.ts +36 -0
  768. package/types/shared/constants/widgets.d.ts +30 -0
  769. package/types/shared/constants/wizard.d.ts +55 -0
  770. package/types/shared/constants/workbook-transfer.d.ts +17 -0
  771. package/types/shared/constants/workbooks.d.ts +7 -0
  772. package/types/shared/constants/yfm.d.ts +20 -0
  773. package/types/shared/endpoints/constants/index.d.ts +2 -0
  774. package/types/shared/endpoints/constants/opensource.d.ts +62 -0
  775. package/types/shared/endpoints/index.d.ts +62 -0
  776. package/types/shared/endpoints/schema/index.d.ts +2 -0
  777. package/types/shared/endpoints/schema/opensource.d.ts +40 -0
  778. package/types/shared/endpoints/sources/index.d.ts +19 -0
  779. package/types/shared/endpoints/sources/opensource.d.ts +2 -0
  780. package/types/shared/endpoints/sources/types.d.ts +27 -0
  781. package/types/shared/endpoints/types.d.ts +14 -0
  782. package/types/shared/endpoints/utils.d.ts +1 -0
  783. package/types/shared/index.d.ts +6 -0
  784. package/types/shared/modules/bi-api/index.d.ts +1 -0
  785. package/types/shared/modules/bi-api/mappers/index.d.ts +1 -0
  786. package/types/shared/modules/bi-api/mappers/v2.d.ts +14 -0
  787. package/types/shared/modules/charts-shared.d.ts +71 -0
  788. package/types/shared/modules/colors/common-helpers.d.ts +7 -0
  789. package/types/shared/modules/colors/distincts-helpers.d.ts +2 -0
  790. package/types/shared/modules/config/ql/index.d.ts +1 -0
  791. package/types/shared/modules/config/ql/mapQlConfigToLatestVersion.d.ts +7 -0
  792. package/types/shared/modules/config/ql/v1/mapUndefinedConfigToV1.d.ts +3 -0
  793. package/types/shared/modules/config/ql/v2/mapV1ConfigToV2.d.ts +4 -0
  794. package/types/shared/modules/config/ql/v3/mapV2ConfigToV3.d.ts +3 -0
  795. package/types/shared/modules/config/ql/v4/mapV3ConfigToV4.d.ts +3 -0
  796. package/types/shared/modules/config/ql/v5/mapV4ConfigToV5.d.ts +3 -0
  797. package/types/shared/modules/config/ql/v6/mapV5ConfigToV6.d.ts +3 -0
  798. package/types/shared/modules/config/ql/v7/mapV6ConfigToV7.d.ts +3 -0
  799. package/types/shared/modules/config/utils.d.ts +1 -0
  800. package/types/shared/modules/config/wizard/index.d.ts +1 -0
  801. package/types/shared/modules/config/wizard/mapChartsConfigToLatestVersion.d.ts +4 -0
  802. package/types/shared/modules/config/wizard/mocks/v4.mock.d.ts +21 -0
  803. package/types/shared/modules/config/wizard/v1/mapV1ConfigToV2.d.ts +3 -0
  804. package/types/shared/modules/config/wizard/v10/mapV10ConfigToV11.d.ts +2 -0
  805. package/types/shared/modules/config/wizard/v11/mapV11ConfigToV12.d.ts +2 -0
  806. package/types/shared/modules/config/wizard/v12/mapV12ConfigToV13.d.ts +2 -0
  807. package/types/shared/modules/config/wizard/v13/mapV13ConfigToV14.d.ts +3 -0
  808. package/types/shared/modules/config/wizard/v14/mapV14ConfigToV15.d.ts +3 -0
  809. package/types/shared/modules/config/wizard/v2/mapV2ConfigToV3.d.ts +3 -0
  810. package/types/shared/modules/config/wizard/v3/mapV3ConfigToV4.d.ts +4 -0
  811. package/types/shared/modules/config/wizard/v4/mapV4ConfigToV5.d.ts +2 -0
  812. package/types/shared/modules/config/wizard/v5/mapV5ConfigToV6.d.ts +2 -0
  813. package/types/shared/modules/config/wizard/v6/mapV6ConfigToV7.d.ts +2 -0
  814. package/types/shared/modules/config/wizard/v7/mapV7ConfigToV8.d.ts +2 -0
  815. package/types/shared/modules/config/wizard/v8/mapV8ConfigToV9.d.ts +2 -0
  816. package/types/shared/modules/config/wizard/v9/mapV9ConfigToV10.d.ts +2 -0
  817. package/types/shared/modules/control/typed-query-helpers.d.ts +2 -0
  818. package/types/shared/modules/dash-scheme-converter.d.ts +15 -0
  819. package/types/shared/modules/entry.d.ts +6 -0
  820. package/types/shared/modules/fields.d.ts +12 -0
  821. package/types/shared/modules/format-units/formatUnit.d.ts +5 -0
  822. package/types/shared/modules/format-units/i18n/en.json.d.ts +20 -0
  823. package/types/shared/modules/format-units/i18n/i18n.d.ts +5 -0
  824. package/types/shared/modules/format-units/i18n/ru.json.d.ts +20 -0
  825. package/types/shared/modules/format-units/index.d.ts +1 -0
  826. package/types/shared/modules/format-units/types.d.ts +14 -0
  827. package/types/shared/modules/helpers.d.ts +38 -0
  828. package/types/shared/modules/index.d.ts +19 -0
  829. package/types/shared/modules/language.d.ts +2 -0
  830. package/types/shared/modules/markdown/emoji-defs.d.ts +1 -0
  831. package/types/shared/modules/markdown/markdown-plugins/unify-terms.d.ts +4 -0
  832. package/types/shared/modules/markdown/markdown.d.ts +12 -0
  833. package/types/shared/modules/markup.d.ts +2 -0
  834. package/types/shared/modules/qa-helpers.d.ts +5 -0
  835. package/types/shared/modules/ql-helpers.d.ts +22 -0
  836. package/types/shared/modules/sleep.d.ts +1 -0
  837. package/types/shared/modules/slugify.d.ts +3 -0
  838. package/types/shared/modules/tenant.d.ts +3 -0
  839. package/types/shared/modules/transliterate.d.ts +1 -0
  840. package/types/shared/modules/typed-query-api/helpers/parameters.d.ts +2 -0
  841. package/types/shared/modules/typed-query-api/index.d.ts +1 -0
  842. package/types/shared/modules/typed-query-api/mappers/parameters.d.ts +3 -0
  843. package/types/shared/modules/url.d.ts +1 -0
  844. package/types/shared/modules/user.d.ts +4 -0
  845. package/types/shared/modules/visualization/placeholder.d.ts +3 -0
  846. package/types/shared/modules/wizard/axis-mode.d.ts +8 -0
  847. package/types/shared/modules/wizard/axis-settings.d.ts +2 -0
  848. package/types/shared/modules/wizard/config.d.ts +2 -0
  849. package/types/shared/modules/wizard/index.d.ts +3 -0
  850. package/types/shared/modules/wizard-helpers.d.ts +51 -0
  851. package/types/shared/old-schema/charts.d.ts +131 -0
  852. package/types/shared/old-schema/index.d.ts +113 -0
  853. package/types/shared/schema/auth/actions.d.ts +22 -0
  854. package/types/shared/schema/auth/index.d.ts +27 -0
  855. package/types/shared/schema/auth/types/common.d.ts +3 -0
  856. package/types/shared/schema/auth/types/users.d.ts +86 -0
  857. package/types/shared/schema/auth-schema/auth/actions.d.ts +12 -0
  858. package/types/shared/schema/auth-schema/auth/index.d.ts +17 -0
  859. package/types/shared/schema/auth-schema/auth/types.d.ts +11 -0
  860. package/types/shared/schema/auth-schema/index.d.ts +18 -0
  861. package/types/shared/schema/bi/actions/connections.d.ts +31 -0
  862. package/types/shared/schema/bi/actions/datasets.d.ts +43 -0
  863. package/types/shared/schema/bi/actions/index.d.ts +66 -0
  864. package/types/shared/schema/bi/actions/oauth.d.ts +10 -0
  865. package/types/shared/schema/bi/helpers/datasets.d.ts +58 -0
  866. package/types/shared/schema/bi/helpers/index.d.ts +1 -0
  867. package/types/shared/schema/bi/index.d.ts +71 -0
  868. package/types/shared/schema/bi/schemas/connections.d.ts +20 -0
  869. package/types/shared/schema/bi/schemas/datasets.d.ts +24 -0
  870. package/types/shared/schema/bi/schemas/index.d.ts +1 -0
  871. package/types/shared/schema/bi/types/common.d.ts +5 -0
  872. package/types/shared/schema/bi/types/connections.d.ts +145 -0
  873. package/types/shared/schema/bi/types/datasets.d.ts +246 -0
  874. package/types/shared/schema/bi/types/forms.d.ts +182 -0
  875. package/types/shared/schema/bi/types/index.d.ts +4 -0
  876. package/types/shared/schema/bi/types/oauth.d.ts +18 -0
  877. package/types/shared/schema/bi-converter/actions/index.d.ts +18 -0
  878. package/types/shared/schema/bi-converter/index.d.ts +23 -0
  879. package/types/shared/schema/bi-converter/types/index.d.ts +181 -0
  880. package/types/shared/schema/extensions/actions/iam-access-dialog.d.ts +100 -0
  881. package/types/shared/schema/extensions/actions/index.d.ts +100 -0
  882. package/types/shared/schema/extensions/index.d.ts +104 -0
  883. package/types/shared/schema/extensions/types/iam-access-dialog.d.ts +123 -0
  884. package/types/shared/schema/extensions/types/index.d.ts +1 -0
  885. package/types/shared/schema/gateway-utils.d.ts +34 -0
  886. package/types/shared/schema/googleapis/actions.d.ts +1 -0
  887. package/types/shared/schema/index.d.ts +3363 -0
  888. package/types/shared/schema/meta-manager/actions/export.d.ts +12 -0
  889. package/types/shared/schema/meta-manager/actions/import.d.ts +10 -0
  890. package/types/shared/schema/meta-manager/actions/index.d.ts +14 -0
  891. package/types/shared/schema/meta-manager/index.d.ts +19 -0
  892. package/types/shared/schema/meta-manager/types/export.d.ts +33 -0
  893. package/types/shared/schema/meta-manager/types/import.d.ts +21 -0
  894. package/types/shared/schema/meta-manager/types/index.d.ts +2 -0
  895. package/types/shared/schema/mix/actions/dash/create-dashboard-v1.d.ts +723 -0
  896. package/types/shared/schema/mix/actions/dash/delete-dashboard.d.ts +9 -0
  897. package/types/shared/schema/mix/actions/dash/get-dashboard-v1.d.ts +515 -0
  898. package/types/shared/schema/mix/actions/dash/index.d.ts +1959 -0
  899. package/types/shared/schema/mix/actions/dash/update-dashboard-v1.d.ts +722 -0
  900. package/types/shared/schema/mix/actions/editor.d.ts +10 -0
  901. package/types/shared/schema/mix/actions/entries.d.ts +18 -0
  902. package/types/shared/schema/mix/actions/index.d.ts +2067 -0
  903. package/types/shared/schema/mix/actions/markdown.d.ts +11 -0
  904. package/types/shared/schema/mix/actions/navigation.d.ts +9 -0
  905. package/types/shared/schema/mix/actions/ql/create-ql-chart.d.ts +23 -0
  906. package/types/shared/schema/mix/actions/ql/delete-ql-chart.d.ts +8 -0
  907. package/types/shared/schema/mix/actions/ql/get-ql-chart.d.ts +14 -0
  908. package/types/shared/schema/mix/actions/ql/index.d.ts +54 -0
  909. package/types/shared/schema/mix/actions/ql/update-ql-chart.d.ts +22 -0
  910. package/types/shared/schema/mix/actions/wizard/create-wizard-chart.d.ts +23 -0
  911. package/types/shared/schema/mix/actions/wizard/delete-wizard-chart.d.ts +8 -0
  912. package/types/shared/schema/mix/actions/wizard/get-wizard-chart.d.ts +14 -0
  913. package/types/shared/schema/mix/actions/wizard/index.d.ts +54 -0
  914. package/types/shared/schema/mix/actions/wizard/update-wizard-chart.d.ts +22 -0
  915. package/types/shared/schema/mix/helpers/dash/index.d.ts +69 -0
  916. package/types/shared/schema/mix/helpers/dash/migrate-dash-to-v1.d.ts +2 -0
  917. package/types/shared/schema/mix/helpers/editor/index.d.ts +6 -0
  918. package/types/shared/schema/mix/helpers/editor/validation.d.ts +2 -0
  919. package/types/shared/schema/mix/helpers/entries.d.ts +54 -0
  920. package/types/shared/schema/mix/helpers/index.d.ts +2 -0
  921. package/types/shared/schema/mix/helpers/validation.d.ts +1 -0
  922. package/types/shared/schema/mix/index.d.ts +2071 -0
  923. package/types/shared/schema/mix/schemas/dash/create-dashboard-v1.d.ts +497 -0
  924. package/types/shared/schema/mix/schemas/dash/dash-v1.d.ts +255 -0
  925. package/types/shared/schema/mix/schemas/dash/delete-dashboard.d.ts +6 -0
  926. package/types/shared/schema/mix/schemas/dash/get-dashboard-v1.d.ts +275 -0
  927. package/types/shared/schema/mix/schemas/dash/update-dashboard-v1.d.ts +496 -0
  928. package/types/shared/schema/mix/schemas/ql.d.ts +18 -0
  929. package/types/shared/schema/mix/schemas/wizard.d.ts +18 -0
  930. package/types/shared/schema/mix/types/dash/index.d.ts +53 -0
  931. package/types/shared/schema/mix/types/entries.d.ts +91 -0
  932. package/types/shared/schema/mix/types/index.d.ts +6 -0
  933. package/types/shared/schema/mix/types/markdown.d.ts +15 -0
  934. package/types/shared/schema/mix/types/navigation.d.ts +12 -0
  935. package/types/shared/schema/mix/types/ql.d.ts +4 -0
  936. package/types/shared/schema/mix/types/wizard.d.ts +4 -0
  937. package/types/shared/schema/stat-api/types/index.d.ts +11 -0
  938. package/types/shared/schema/types.d.ts +5 -0
  939. package/types/shared/schema/us/actions/collections/create-collection.d.ts +93 -0
  940. package/types/shared/schema/us/actions/collections/delete-collection.d.ts +52 -0
  941. package/types/shared/schema/us/actions/collections/delete-collections.d.ts +52 -0
  942. package/types/shared/schema/us/actions/collections/get-collection-breadcrumbs.d.ts +86 -0
  943. package/types/shared/schema/us/actions/collections/get-collection.d.ts +90 -0
  944. package/types/shared/schema/us/actions/collections/get-root-collection-permissions.d.ts +17 -0
  945. package/types/shared/schema/us/actions/collections/get-structure-items.d.ts +7 -0
  946. package/types/shared/schema/us/actions/collections/index.d.ts +335 -0
  947. package/types/shared/schema/us/actions/collections/move-collection.d.ts +48 -0
  948. package/types/shared/schema/us/actions/collections/move-collections.d.ts +53 -0
  949. package/types/shared/schema/us/actions/collections/update-collection.d.ts +48 -0
  950. package/types/shared/schema/us/actions/color-palettes.d.ts +13 -0
  951. package/types/shared/schema/us/actions/editor.d.ts +10 -0
  952. package/types/shared/schema/us/actions/embeds.d.ts +11 -0
  953. package/types/shared/schema/us/actions/entries/create-entry.d.ts +7 -0
  954. package/types/shared/schema/us/actions/entries/get-entries-relations.d.ts +78 -0
  955. package/types/shared/schema/us/actions/entries/get-entries.d.ts +100 -0
  956. package/types/shared/schema/us/actions/entries/get-entry.d.ts +7 -0
  957. package/types/shared/schema/us/actions/entries/index.d.ts +298 -0
  958. package/types/shared/schema/us/actions/entries/list-directory.d.ts +101 -0
  959. package/types/shared/schema/us/actions/entries/update-entry.d.ts +7 -0
  960. package/types/shared/schema/us/actions/favorites.d.ts +12 -0
  961. package/types/shared/schema/us/actions/index.d.ts +1064 -0
  962. package/types/shared/schema/us/actions/locks.d.ts +11 -0
  963. package/types/shared/schema/us/actions/operations.d.ts +37 -0
  964. package/types/shared/schema/us/actions/presets.d.ts +10 -0
  965. package/types/shared/schema/us/actions/private.d.ts +9 -0
  966. package/types/shared/schema/us/actions/state.d.ts +10 -0
  967. package/types/shared/schema/us/actions/template.d.ts +9 -0
  968. package/types/shared/schema/us/actions/tenant.d.ts +9 -0
  969. package/types/shared/schema/us/actions/user.d.ts +20 -0
  970. package/types/shared/schema/us/actions/workbooks/copy-workbook.d.ts +7 -0
  971. package/types/shared/schema/us/actions/workbooks/create-workbook.d.ts +106 -0
  972. package/types/shared/schema/us/actions/workbooks/delete-workbook.d.ts +59 -0
  973. package/types/shared/schema/us/actions/workbooks/delete-workbooks.d.ts +65 -0
  974. package/types/shared/schema/us/actions/workbooks/get-workbook-entries.d.ts +7 -0
  975. package/types/shared/schema/us/actions/workbooks/get-workbook-shared-entries.d.ts +7 -0
  976. package/types/shared/schema/us/actions/workbooks/get-workbook.d.ts +100 -0
  977. package/types/shared/schema/us/actions/workbooks/get-workbooks-list.d.ts +75 -0
  978. package/types/shared/schema/us/actions/workbooks/index.d.ts +384 -0
  979. package/types/shared/schema/us/actions/workbooks/migrate-entries-to-workbook-by-copy.d.ts +7 -0
  980. package/types/shared/schema/us/actions/workbooks/migrate-entries-to-workbook-by-transfer.d.ts +7 -0
  981. package/types/shared/schema/us/actions/workbooks/move-workbook.d.ts +61 -0
  982. package/types/shared/schema/us/actions/workbooks/move-workbooks.d.ts +66 -0
  983. package/types/shared/schema/us/actions/workbooks/update-workbook.d.ts +61 -0
  984. package/types/shared/schema/us/index.d.ts +1069 -0
  985. package/types/shared/schema/us/schemas/collections/index.d.ts +27 -0
  986. package/types/shared/schema/us/schemas/entries/get-entries.d.ts +172 -0
  987. package/types/shared/schema/us/schemas/entries/list-directory.d.ts +171 -0
  988. package/types/shared/schema/us/schemas/operation/index.d.ts +16 -0
  989. package/types/shared/schema/us/schemas/workbooks/index.d.ts +33 -0
  990. package/types/shared/schema/us/types/access-bindings.d.ts +0 -0
  991. package/types/shared/schema/us/types/collections.d.ts +80 -0
  992. package/types/shared/schema/us/types/color-palettes.d.ts +24 -0
  993. package/types/shared/schema/us/types/common.d.ts +16 -0
  994. package/types/shared/schema/us/types/editor.d.ts +32 -0
  995. package/types/shared/schema/us/types/embeds.d.ts +37 -0
  996. package/types/shared/schema/us/types/entries.d.ts +292 -0
  997. package/types/shared/schema/us/types/favorites.d.ts +48 -0
  998. package/types/shared/schema/us/types/fields.d.ts +133 -0
  999. package/types/shared/schema/us/types/index.d.ts +17 -0
  1000. package/types/shared/schema/us/types/locks.d.ts +34 -0
  1001. package/types/shared/schema/us/types/operations.d.ts +6 -0
  1002. package/types/shared/schema/us/types/presets.d.ts +5 -0
  1003. package/types/shared/schema/us/types/private.d.ts +2 -0
  1004. package/types/shared/schema/us/types/sort.d.ts +3 -0
  1005. package/types/shared/schema/us/types/state.d.ts +18 -0
  1006. package/types/shared/schema/us/types/template.d.ts +13 -0
  1007. package/types/shared/schema/us/types/tenant.d.ts +14 -0
  1008. package/types/shared/schema/us/types/workbooks.d.ts +95 -0
  1009. package/types/shared/schema/us-private/actions/entries.d.ts +12 -0
  1010. package/types/shared/schema/us-private/actions/index.d.ts +13 -0
  1011. package/types/shared/schema/us-private/actions/tenant.d.ts +10 -0
  1012. package/types/shared/schema/us-private/index.d.ts +20 -0
  1013. package/types/shared/schema/us-private/types/entries.d.ts +18 -0
  1014. package/types/shared/schema/us-private/types/index.d.ts +1 -0
  1015. package/types/shared/schema/utils.d.ts +14 -0
  1016. package/types/shared/server/axios.d.ts +8 -0
  1017. package/types/shared/types/bi-api/index.d.ts +1 -0
  1018. package/types/shared/types/bi-api/v2.d.ts +178 -0
  1019. package/types/shared/types/chartkit/common.d.ts +34 -0
  1020. package/types/shared/types/chartkit/dl-chartkit.d.ts +30 -0
  1021. package/types/shared/types/chartkit/gravity-charts/index.d.ts +9 -0
  1022. package/types/shared/types/chartkit/gravity-charts/scatter.d.ts +24 -0
  1023. package/types/shared/types/chartkit/index.d.ts +4 -0
  1024. package/types/shared/types/chartkit/table.d.ts +134 -0
  1025. package/types/shared/types/charts.d.ts +273 -0
  1026. package/types/shared/types/color-palettes.d.ts +7 -0
  1027. package/types/shared/types/common-update.d.ts +13 -0
  1028. package/types/shared/types/common.d.ts +301 -0
  1029. package/types/shared/types/config/ql/index.d.ts +22 -0
  1030. package/types/shared/types/config/ql/v1.d.ts +78 -0
  1031. package/types/shared/types/config/ql/v2.d.ts +79 -0
  1032. package/types/shared/types/config/ql/v3.d.ts +79 -0
  1033. package/types/shared/types/config/ql/v4.d.ts +80 -0
  1034. package/types/shared/types/config/ql/v5.d.ts +80 -0
  1035. package/types/shared/types/config/ql/v6.d.ts +80 -0
  1036. package/types/shared/types/config/ql/v7.d.ts +80 -0
  1037. package/types/shared/types/config/wizard/index.d.ts +58 -0
  1038. package/types/shared/types/config/wizard/v10.d.ts +262 -0
  1039. package/types/shared/types/config/wizard/v11.d.ts +276 -0
  1040. package/types/shared/types/config/wizard/v12.d.ts +283 -0
  1041. package/types/shared/types/config/wizard/v13.d.ts +282 -0
  1042. package/types/shared/types/config/wizard/v14.d.ts +283 -0
  1043. package/types/shared/types/config/wizard/v15.d.ts +283 -0
  1044. package/types/shared/types/config/wizard/v2.d.ts +239 -0
  1045. package/types/shared/types/config/wizard/v3.d.ts +242 -0
  1046. package/types/shared/types/config/wizard/v4.d.ts +253 -0
  1047. package/types/shared/types/config/wizard/v5.d.ts +253 -0
  1048. package/types/shared/types/config/wizard/v6.d.ts +253 -0
  1049. package/types/shared/types/config/wizard/v7.d.ts +254 -0
  1050. package/types/shared/types/config/wizard/v8.d.ts +258 -0
  1051. package/types/shared/types/config/wizard/v9.d.ts +260 -0
  1052. package/types/shared/types/configs/index.d.ts +1 -0
  1053. package/types/shared/types/connections.d.ts +21 -0
  1054. package/types/shared/types/dash.d.ts +324 -0
  1055. package/types/shared/types/dataset.d.ts +325 -0
  1056. package/types/shared/types/entry.d.ts +14 -0
  1057. package/types/shared/types/feature.d.ts +102 -0
  1058. package/types/shared/types/formatting.d.ts +22 -0
  1059. package/types/shared/types/index.d.ts +28 -0
  1060. package/types/shared/types/language.d.ts +1 -0
  1061. package/types/shared/types/menu.d.ts +27 -0
  1062. package/types/shared/types/meta-manager.d.ts +11 -0
  1063. package/types/shared/types/metrica.d.ts +5 -0
  1064. package/types/shared/types/notification.d.ts +5 -0
  1065. package/types/shared/types/permissions.d.ts +3 -0
  1066. package/types/shared/types/ql/common.d.ts +158 -0
  1067. package/types/shared/types/ql/versions.d.ts +9 -0
  1068. package/types/shared/types/typed-query-api/index.d.ts +1 -0
  1069. package/types/shared/types/typed-query-api/v1.d.ts +29 -0
  1070. package/types/shared/types/ui-sandbox.d.ts +5 -0
  1071. package/types/shared/types/utility-types.d.ts +28 -0
  1072. package/types/shared/types/widget.d.ts +47 -0
  1073. package/types/shared/types/wizard/background-settings.d.ts +14 -0
  1074. package/types/shared/types/wizard/bars.d.ts +54 -0
  1075. package/types/shared/types/wizard/column.d.ts +14 -0
  1076. package/types/shared/types/wizard/export.d.ts +10 -0
  1077. package/types/shared/types/wizard/field.d.ts +112 -0
  1078. package/types/shared/types/wizard/index.d.ts +421 -0
  1079. package/types/shared/types/wizard/misc.d.ts +58 -0
  1080. package/types/shared/types/wizard/placeholder.d.ts +50 -0
  1081. package/types/shared/types/wizard/sub-totals.d.ts +3 -0
  1082. package/types/shared/types/wizard/versions.d.ts +17 -0
  1083. package/types/shared/utils/array/assert-non-empty-array.d.ts +1 -0
  1084. package/types/shared/utils/array/index.d.ts +1 -0
  1085. package/types/shared/utils/dash.d.ts +6 -0
  1086. package/types/shared/utils/dataset.d.ts +12 -0
  1087. package/types/shared/utils/date-time.d.ts +2 -0
  1088. package/types/shared/utils/entry.d.ts +3 -0
  1089. package/types/shared/utils/feature.d.ts +8 -0
  1090. package/types/shared/utils/functions-registry.d.ts +5 -0
  1091. package/types/shared/utils/index.d.ts +8 -0
  1092. package/types/shared/utils/makeFunctionTemplate.d.ts +3 -0
  1093. package/types/shared/utils/manualError.d.ts +23 -0
  1094. package/types/shared/utils/markdown.d.ts +4 -0
  1095. package/types/shared/utils/markup.d.ts +4 -0
  1096. package/types/shared/utils/openapi/index.d.ts +1 -0
  1097. package/types/shared/utils/palettes.d.ts +6 -0
  1098. package/types/shared/utils/ui-sandbox.d.ts +5 -0
  1099. package/types/shared/utils/visualization-check.d.ts +12 -0
  1100. package/types/shared/utils/wizard.d.ts +4 -0
  1101. package/types/shared/zod-schemas/dash.d.ts +231 -0
  1102. package/types/shared/zod-schemas/entry.d.ts +6 -0
  1103. package/types/shared/zod-schemas/permissions.d.ts +7 -0
  1104. package/types/shared/zod-schemas/shared-entry-permissions.d.ts +13 -0
  1105. package/types/ui/capabilities/capabilities.d.ts +13 -0
  1106. package/types/ui/capabilities/index.d.ts +9 -0
  1107. package/types/ui/components/AccessRights/AccessRightsUrlOpen.d.ts +2 -0
  1108. package/types/ui/components/ActionPanel/ActionPanel.d.ts +101 -0
  1109. package/types/ui/components/ActionPanel/ActionPanelHelpers.d.ts +5 -0
  1110. package/types/ui/components/ActionPanel/components/ChartSaveControls/ChartSaveControl.d.ts +24 -0
  1111. package/types/ui/components/ActionPanel/components/ChartSaveControls/components/SaveButton/SaveButton.d.ts +10 -0
  1112. package/types/ui/components/ActionPanel/components/ChartSaveControls/components/SaveDropdown/SaveDropdown.d.ts +8 -0
  1113. package/types/ui/components/ActionPanel/components/ChartSaveControls/types.d.ts +20 -0
  1114. package/types/ui/components/ActionPanel/components/ChartSaveControls/useAdditionalItems.d.ts +6 -0
  1115. package/types/ui/components/ActionPanel/components/EntryPanel/EntryPanel.d.ts +199 -0
  1116. package/types/ui/components/ActionPanel/index.d.ts +2 -0
  1117. package/types/ui/components/ActionPanel/utils.d.ts +4 -0
  1118. package/types/ui/components/AdaptiveDialog/AdaptiveDialog.d.ts +19 -0
  1119. package/types/ui/components/AnimateBlock/AnimateBlock.d.ts +8 -0
  1120. package/types/ui/components/AnimateBlock/index.d.ts +1 -0
  1121. package/types/ui/components/AsideHeaderAdapter/AsideHeaderAdapter.d.ts +19 -0
  1122. package/types/ui/components/AsideHeaderAdapter/LogoText/LogoText.d.ts +7 -0
  1123. package/types/ui/components/AsideHeaderAdapter/Settings/Appearance/HighcontrastSettings.d.ts +7 -0
  1124. package/types/ui/components/AsideHeaderAdapter/Settings/Appearance/ThemeSettings.d.ts +6 -0
  1125. package/types/ui/components/AsideHeaderAdapter/Settings/ItemField/ItemField.d.ts +9 -0
  1126. package/types/ui/components/AsideHeaderAdapter/Settings/LanguageSettings.d.ts +3 -0
  1127. package/types/ui/components/AsideHeaderAdapter/Settings/Settings.d.ts +1 -0
  1128. package/types/ui/components/AsideHeaderAdapter/Settings/types.d.ts +9 -0
  1129. package/types/ui/components/AsideHeaderAdapter/Settings/utils.d.ts +16 -0
  1130. package/types/ui/components/AsideHeaderAdapter/VersionDialog/VersionDialog.d.ts +12 -0
  1131. package/types/ui/components/AsideHeaderAdapter/constants.d.ts +1 -0
  1132. package/types/ui/components/AsideHeaderAdapter/helpers.d.ts +1 -0
  1133. package/types/ui/components/AsideHeaderAdapter/index.d.ts +2 -0
  1134. package/types/ui/components/AsyncImage/AsyncImage.d.ts +11 -0
  1135. package/types/ui/components/AutogeneratedPaletteIcon/AutogeneratedPaletteIcon.d.ts +9 -0
  1136. package/types/ui/components/BetaMark/BetaMark.d.ts +6 -0
  1137. package/types/ui/components/Breadcrumbs/CollectionsStructureBreadcrumbs/CollectionsStructureBreadcrumbs.d.ts +6 -0
  1138. package/types/ui/components/BreadcrumbsItemLink/BreadcrumbsItemLink.d.ts +6 -0
  1139. package/types/ui/components/ButtonAttach/ButtonAttach.d.ts +14 -0
  1140. package/types/ui/components/Collapse/Collapse.d.ts +2 -0
  1141. package/types/ui/components/Collapse/types.d.ts +22 -0
  1142. package/types/ui/components/CollectionFilters/CollectionFilters.d.ts +31 -0
  1143. package/types/ui/components/CollectionFilters/index.d.ts +1 -0
  1144. package/types/ui/components/CollectionIcon/CollectionIcon.d.ts +8 -0
  1145. package/types/ui/components/CollectionsStructure/CollectionDialog/CollectionDialog.d.ts +20 -0
  1146. package/types/ui/components/CollectionsStructure/CollectionDialog/index.d.ts +1 -0
  1147. package/types/ui/components/CollectionsStructure/CollectionNoCreatePermissionDialog/CollectionNoCreatePermissionDialog.d.ts +13 -0
  1148. package/types/ui/components/CollectionsStructure/CollectionNoCreatePermissionDialog/index.d.ts +1 -0
  1149. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/CollectionStructureDialog.d.ts +30 -0
  1150. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/CreateEntityDialog/CreateEntityDialog.d.ts +10 -0
  1151. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/NewTitleDialog/NewTitleDialog.d.ts +10 -0
  1152. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/Item.d.ts +10 -0
  1153. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/Item/index.d.ts +1 -0
  1154. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/StructureItemSelect.d.ts +24 -0
  1155. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/StructureItemSelect/index.d.ts +1 -0
  1156. package/types/ui/components/CollectionsStructure/CollectionStructureDialog/index.d.ts +1 -0
  1157. package/types/ui/components/CollectionsStructure/CopyEntriesDialog.d.ts +13 -0
  1158. package/types/ui/components/CollectionsStructure/CopyWorkbookDialog.d.ts +15 -0
  1159. package/types/ui/components/CollectionsStructure/CreateCollectionDialog.d.ts +15 -0
  1160. package/types/ui/components/CollectionsStructure/CreateEntryInWorkbookDialog.d.ts +15 -0
  1161. package/types/ui/components/CollectionsStructure/CreateWorkbookDialog/CreateWorkbookDialog.d.ts +26 -0
  1162. package/types/ui/components/CollectionsStructure/CreateWorkbookDialog/ImportFileField/ImportFileField.d.ts +9 -0
  1163. package/types/ui/components/CollectionsStructure/CreateWorkbookDialog/ImportWorkbookView/ImportWorkbookView.d.ts +7 -0
  1164. package/types/ui/components/CollectionsStructure/CreateWorkbookDialog/utils.d.ts +4 -0
  1165. package/types/ui/components/CollectionsStructure/DeleteCollectionDialog.d.ts +15 -0
  1166. package/types/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/DeleteCollectionsWorkbooksContent.d.ts +5 -0
  1167. package/types/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksContent/index.d.ts +1 -0
  1168. package/types/ui/components/CollectionsStructure/DeleteCollectionsWorkbooksDialog.d.ts +16 -0
  1169. package/types/ui/components/CollectionsStructure/DeleteDialog/DeleteDialog.d.ts +11 -0
  1170. package/types/ui/components/CollectionsStructure/DeleteDialog/index.d.ts +1 -0
  1171. package/types/ui/components/CollectionsStructure/DeleteWorkbookDialog.d.ts +15 -0
  1172. package/types/ui/components/CollectionsStructure/EditCollectionDialog.d.ts +17 -0
  1173. package/types/ui/components/CollectionsStructure/EditSharedEntryDialog.d.ts +15 -0
  1174. package/types/ui/components/CollectionsStructure/EditWorkbookDialog.d.ts +17 -0
  1175. package/types/ui/components/CollectionsStructure/ExportWorkbookDialog/ExportInfo/ExportInfo.d.ts +1 -0
  1176. package/types/ui/components/CollectionsStructure/ExportWorkbookDialog/ExportWorkbookDialog.d.ts +13 -0
  1177. package/types/ui/components/CollectionsStructure/ExportWorkbookDialog/utils.d.ts +5 -0
  1178. package/types/ui/components/CollectionsStructure/MigrateEntryToWorkbookDialog.d.ts +12 -0
  1179. package/types/ui/components/CollectionsStructure/MoveCollectionDialog.d.ts +15 -0
  1180. package/types/ui/components/CollectionsStructure/MoveCollectionsWorkbooksDialog.d.ts +15 -0
  1181. package/types/ui/components/CollectionsStructure/MoveSharedEntryDialog.d.ts +15 -0
  1182. package/types/ui/components/CollectionsStructure/MoveWorkbookDialog.d.ts +15 -0
  1183. package/types/ui/components/CollectionsStructure/WorkbookDialog/WorkbookDialog.d.ts +26 -0
  1184. package/types/ui/components/CollectionsStructure/WorkbookDialog/index.d.ts +2 -0
  1185. package/types/ui/components/CollectionsStructure/WorkbookDialog/types.d.ts +4 -0
  1186. package/types/ui/components/CollectionsStructure/components/EntriesNotificationCut/EntriesNotificationCut.d.ts +27 -0
  1187. package/types/ui/components/CollectionsStructure/components/EntriesNotificationCut/helpers.d.ts +7 -0
  1188. package/types/ui/components/CollectionsStructure/components/EntriesNotificationCut/types.d.ts +12 -0
  1189. package/types/ui/components/CollectionsStructure/hooks/useCollectionEntityDialogState.d.ts +8 -0
  1190. package/types/ui/components/CollectionsStructure/hooks/useCollectionStructureDialogState.d.ts +19 -0
  1191. package/types/ui/components/CollectionsStructure/hooks/useNotificationsAndDetails.d.ts +12 -0
  1192. package/types/ui/components/CollectionsStructure/index.d.ts +17 -0
  1193. package/types/ui/components/CollectionsStructure/types.d.ts +7 -0
  1194. package/types/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/ColorPaletteChartkitPreview.d.ts +3 -0
  1195. package/types/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/types.d.ts +4 -0
  1196. package/types/ui/components/ColorPaletteEditorContainer/ColorPaletteCharkitPreview/utils.d.ts +3 -0
  1197. package/types/ui/components/ColorPaletteEditorContainer/ColorPaletteEditorContainer.d.ts +52 -0
  1198. package/types/ui/components/ColorPaletteEditorContainer/ColorPalettesCard/ColorPalettesCard.d.ts +16 -0
  1199. package/types/ui/components/ColorPaletteEditorContainer/ColorPalettesCard/DefaultPaletteSelect/DefaultPaletteSelect.d.ts +7 -0
  1200. package/types/ui/components/ColorPaletteEditorContainer/ColorTextInput/ColorTextInput.d.ts +11 -0
  1201. package/types/ui/components/ColorPaletteEditorContainer/GradientPaletteEditor/GradientPaletteEditor.d.ts +46 -0
  1202. package/types/ui/components/ColorPaletteEditorContainer/PaletteEditor/PaletteEditor.d.ts +49 -0
  1203. package/types/ui/components/ColorPaletteSelect/ColorPaletteSelect.d.ts +12 -0
  1204. package/types/ui/components/ColorPickerInput/ColorPickerInput.d.ts +22 -0
  1205. package/types/ui/components/ColorPickerInput/utils.d.ts +11 -0
  1206. package/types/ui/components/ConnectorIcon/ConnectorIcon.d.ts +7 -0
  1207. package/types/ui/components/ControlComponents/BackButton/BackButton.d.ts +3 -0
  1208. package/types/ui/components/ControlComponents/Dialog/Dialog.d.ts +11 -0
  1209. package/types/ui/components/ControlComponents/Sections/AppearanceSection/AppearanceSection.d.ts +2 -0
  1210. package/types/ui/components/ControlComponents/Sections/AppearanceSection/Rows/ColorAccentRow/ColorAccentRow.d.ts +3 -0
  1211. package/types/ui/components/ControlComponents/Sections/AppearanceSection/Rows/HintRow/HintRow.d.ts +3 -0
  1212. package/types/ui/components/ControlComponents/Sections/AppearanceSection/Rows/InnerTitleRow/InnerTitleRow.d.ts +3 -0
  1213. package/types/ui/components/ControlComponents/Sections/AppearanceSection/Rows/TitlePlacementRow/TitlePlacementRow.d.ts +3 -0
  1214. package/types/ui/components/ControlComponents/Sections/AppearanceSection/Rows/TitleRow/TitleRow.d.ts +3 -0
  1215. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/CommonGroupSettingsSection.d.ts +6 -0
  1216. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/ConnectionSettings.d.ts +6 -0
  1217. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/ConnectionSelector.d.ts +5 -0
  1218. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/ConnectionSelector/helpers.d.ts +5 -0
  1219. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/QueryTypeControl.d.ts +7 -0
  1220. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditLabelControl/EditLabelControl.d.ts +1 -0
  1221. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/components/EditQueryControl/EditQueryControl.d.ts +2 -0
  1222. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/components/QueryTypeControl/helpers.d.ts +5 -0
  1223. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ConnectionSettings/helpers/get-distincts-by-typed-query.d.ts +12 -0
  1224. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/DatasetSelectorSettings/DatasetSelectorSettings.d.ts +7 -0
  1225. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/EntrySelector/EntrySelector.d.ts +23 -0
  1226. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ExternalSelectorSettings/ExternalSelectorSettings.d.ts +9 -0
  1227. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/CurrentTabOption/CurrentTabOption.d.ts +9 -0
  1228. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/ImpactTypeSelect.d.ts +11 -0
  1229. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/SelectedTabsOption/SelectedTabsOption.d.ts +4 -0
  1230. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/constants.d.ts +5 -0
  1231. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/helpers.d.ts +18 -0
  1232. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ImpactTypeSelect/useTabVisibilityValidation.d.ts +13 -0
  1233. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/InputTypeSelector/InputTypeSelector.d.ts +4 -0
  1234. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/ParameterNameInput/ParameterNameInput.d.ts +7 -0
  1235. package/types/ui/components/ControlComponents/Sections/CommonSettingsSection/helpers/input-type-select.d.ts +2 -0
  1236. package/types/ui/components/ControlComponents/Sections/Date/Acceptable/Acceptable.d.ts +24 -0
  1237. package/types/ui/components/ControlComponents/Sections/Date/Default/Default.d.ts +40 -0
  1238. package/types/ui/components/ControlComponents/Sections/OperationSelector/OperationSelector.d.ts +4 -0
  1239. package/types/ui/components/ControlComponents/Sections/ParametersSection/ParametersSection.d.ts +1 -0
  1240. package/types/ui/components/ControlComponents/Sections/Switchers/Button/Button.d.ts +10 -0
  1241. package/types/ui/components/ControlComponents/Sections/Switchers/DatasetField/DatasetField.d.ts +40 -0
  1242. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/Acceptable.d.ts +1 -0
  1243. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/Acceptable/SelectorValuesDialogBody.d.ts +13 -0
  1244. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ListValueControl.d.ts +12 -0
  1245. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/MultiselectableCheckbox.d.ts +3 -0
  1246. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/DynamicValueSelect.d.ts +6 -0
  1247. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/StaticValueSelect.d.ts +2 -0
  1248. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/hooks.d.ts +4 -0
  1249. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/types.d.ts +19 -0
  1250. package/types/ui/components/ControlComponents/Sections/ValueSelector/ListValueControl/ValueSelector/utils.d.ts +1 -0
  1251. package/types/ui/components/ControlComponents/Sections/ValueSelector/RequiredValueCheckbox/RequiredValueCheckbox.d.ts +3 -0
  1252. package/types/ui/components/ControlComponents/Sections/ValueSelector/ValueSelector.d.ts +5 -0
  1253. package/types/ui/components/ControlComponents/Sections/ValueSelector/helpers/get-distincts-by-dataset-field.d.ts +22 -0
  1254. package/types/ui/components/ControlComponents/Sections/Wrapper/Wrapper.d.ts +7 -0
  1255. package/types/ui/components/ControlComponents/SelectorPreview/SelectorPreview.d.ts +2 -0
  1256. package/types/ui/components/ControlComponents/SelectorTypeSelect/SelectorTypeSelect.d.ts +6 -0
  1257. package/types/ui/components/CopyEntriesToWorkbookDialog/CopyEntriesToWorkbookDialog.d.ts +13 -0
  1258. package/types/ui/components/CopyEntriesToWorkbookDialog/components/Body/Body.d.ts +7 -0
  1259. package/types/ui/components/CopyEntriesToWorkbookDialog/components/Body/index.d.ts +1 -0
  1260. package/types/ui/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/EntriesGroup.d.ts +10 -0
  1261. package/types/ui/components/CopyEntriesToWorkbookDialog/components/EntriesGroup/index.d.ts +1 -0
  1262. package/types/ui/components/CopyEntriesToWorkbookDialog/components/EntryRow/EntryRow.d.ts +16 -0
  1263. package/types/ui/components/CopyEntriesToWorkbookDialog/components/EntryRow/index.d.ts +1 -0
  1264. package/types/ui/components/CopyEntriesToWorkbookDialog/index.d.ts +1 -0
  1265. package/types/ui/components/CopyEntriesToWorkbookDialog/utils.d.ts +4 -0
  1266. package/types/ui/components/DNDPane/DNDItem/DNDItem.d.ts +2 -0
  1267. package/types/ui/components/DNDPane/DNDPane.d.ts +13 -0
  1268. package/types/ui/components/DashKit/DashKit.d.ts +32 -0
  1269. package/types/ui/components/DashKit/constants.d.ts +22 -0
  1270. package/types/ui/components/DashKit/context/WidgetContext.d.ts +17 -0
  1271. package/types/ui/components/DashKit/helpers.d.ts +27 -0
  1272. package/types/ui/components/DashKit/plugins/Control/Control.d.ts +20 -0
  1273. package/types/ui/components/DashKit/plugins/Control/ControlItems/ControlItemSelect.d.ts +30 -0
  1274. package/types/ui/components/DashKit/plugins/Control/Error/Error.d.ts +7 -0
  1275. package/types/ui/components/DashKit/plugins/Control/constants.d.ts +9 -0
  1276. package/types/ui/components/DashKit/plugins/Control/prerenderMiddleware.d.ts +2 -0
  1277. package/types/ui/components/DashKit/plugins/Control/types.d.ts +134 -0
  1278. package/types/ui/components/DashKit/plugins/Control/utils.d.ts +75 -0
  1279. package/types/ui/components/DashKit/plugins/DebugInfoTool/DebugInfoTool.d.ts +12 -0
  1280. package/types/ui/components/DashKit/plugins/GroupControl/Control/Control.d.ts +27 -0
  1281. package/types/ui/components/DashKit/plugins/GroupControl/Control/store/reducer.d.ts +3 -0
  1282. package/types/ui/components/DashKit/plugins/GroupControl/Control/store/types.d.ts +75 -0
  1283. package/types/ui/components/DashKit/plugins/GroupControl/GroupControl.d.ts +18 -0
  1284. package/types/ui/components/DashKit/plugins/GroupControl/types.d.ts +28 -0
  1285. package/types/ui/components/DashKit/plugins/GroupControl/utils.d.ts +19 -0
  1286. package/types/ui/components/DashKit/plugins/Image/Image.d.ts +12 -0
  1287. package/types/ui/components/DashKit/plugins/RendererWrapper/RendererWrapper.d.ts +13 -0
  1288. package/types/ui/components/DashKit/plugins/Text/Text.d.ts +9 -0
  1289. package/types/ui/components/DashKit/plugins/Title/AnchorLink/AnchorLink.d.ts +6 -0
  1290. package/types/ui/components/DashKit/plugins/Title/Title.d.ts +14 -0
  1291. package/types/ui/components/DashKit/plugins/Title/constants.d.ts +2 -0
  1292. package/types/ui/components/DashKit/plugins/Title/utils.d.ts +12 -0
  1293. package/types/ui/components/DashKit/plugins/Widget/WidgetPlugin.d.ts +10 -0
  1294. package/types/ui/components/DashKit/plugins/Widget/components/Footer.d.ts +7 -0
  1295. package/types/ui/components/DashKit/plugins/Widget/components/Header.d.ts +15 -0
  1296. package/types/ui/components/DashKit/plugins/Widget/components/helpers.d.ts +3 -0
  1297. package/types/ui/components/DashKit/plugins/Widget/store/actions.d.ts +17 -0
  1298. package/types/ui/components/DashKit/plugins/Widget/store/reducer.d.ts +3 -0
  1299. package/types/ui/components/DashKit/plugins/Widget/types.d.ts +50 -0
  1300. package/types/ui/components/DashKit/plugins/types.d.ts +41 -0
  1301. package/types/ui/components/DashKit/utils.d.ts +39 -0
  1302. package/types/ui/components/DataTypeIcon/DataTypeIcon.d.ts +10 -0
  1303. package/types/ui/components/DatasetFieldList/DatasetFieldList.d.ts +10 -0
  1304. package/types/ui/components/DebouncedInput/DebouncedInput.d.ts +28 -0
  1305. package/types/ui/components/DebouncedInput/index.d.ts +1 -0
  1306. package/types/ui/components/DialogAddSharedEntryFromLink/DialogAddSharedEntryFromLink.d.ts +15 -0
  1307. package/types/ui/components/DialogChartWidget/DialogChartWidget.d.ts +30 -0
  1308. package/types/ui/components/DialogCommon/DialogCommon.d.ts +74 -0
  1309. package/types/ui/components/DialogConfirm/DialogConfirm.d.ts +84 -0
  1310. package/types/ui/components/DialogDefault/DialogDefault.d.ts +23 -0
  1311. package/types/ui/components/DialogEditItem/DialogEditItem.d.ts +69 -0
  1312. package/types/ui/components/DialogEntryDescription/DialogEntryDescription.d.ts +3 -0
  1313. package/types/ui/components/DialogEntryDescription/DialogEntryDescriptionWrapper.d.ts +7 -0
  1314. package/types/ui/components/DialogEntryDescription/EntryDescriptionButton.d.ts +13 -0
  1315. package/types/ui/components/DialogEntryDescription/index.d.ts +3 -0
  1316. package/types/ui/components/DialogErrorWithTabs/DebugInfo/DebugInfo.d.ts +9 -0
  1317. package/types/ui/components/DialogErrorWithTabs/DialogErrorWithTabs.d.ts +20 -0
  1318. package/types/ui/components/DialogErrorWithTabs/ErrorText/ErrorText.d.ts +7 -0
  1319. package/types/ui/components/DialogErrorWithTabs/Tabs/DatabaseRequestTab/DatabaseRequestTab.d.ts +6 -0
  1320. package/types/ui/components/DialogErrorWithTabs/Tabs/DatabaseResponseTab/DatabaseResponseTab.d.ts +6 -0
  1321. package/types/ui/components/DialogErrorWithTabs/Tabs/DebugTab/DebugTab.d.ts +8 -0
  1322. package/types/ui/components/DialogErrorWithTabs/Tabs/DebugTab/utils.d.ts +1 -0
  1323. package/types/ui/components/DialogErrorWithTabs/Tabs/DocumentationTab/DocumentationTab.d.ts +6 -0
  1324. package/types/ui/components/DialogExternalControl/DialogExternalControl.d.ts +66 -0
  1325. package/types/ui/components/DialogFieldEditor/DialogFieldEditor.d.ts +24 -0
  1326. package/types/ui/components/DialogFilter/BooleanFilter/BooleanFilter.d.ts +8 -0
  1327. package/types/ui/components/DialogFilter/DateFilter/DateFilter.d.ts +12 -0
  1328. package/types/ui/components/DialogFilter/DialogFilter.d.ts +88 -0
  1329. package/types/ui/components/DialogFilter/InputFilter/InputFilter.d.ts +9 -0
  1330. package/types/ui/components/DialogFilter/SelectFilter/SelectFilter.d.ts +35 -0
  1331. package/types/ui/components/DialogFilter/constants.d.ts +15 -0
  1332. package/types/ui/components/DialogFilter/typings.d.ts +8 -0
  1333. package/types/ui/components/DialogFilter/utils.d.ts +6 -0
  1334. package/types/ui/components/DialogGroupControl/DialogGroupControl.d.ts +19 -0
  1335. package/types/ui/components/DialogGroupControl/GroupControlBody/GroupControlBody.d.ts +7 -0
  1336. package/types/ui/components/DialogGroupControl/GroupControlBody/SimilarSelectorsBlock/SimilarSelectorsBlock.d.ts +1 -0
  1337. package/types/ui/components/DialogGroupControl/GroupControlFooter/GroupControlFooter.d.ts +7 -0
  1338. package/types/ui/components/DialogGroupControl/GroupControlSidebar/GroupControlSidebar.d.ts +6 -0
  1339. package/types/ui/components/DialogGroupControl/GroupControlSidebar/TabItemWrapper/TabItemWrapper.d.ts +6 -0
  1340. package/types/ui/components/DialogGroupControl/GroupExtendedSettings/ControlPlacementRow.d.ts +13 -0
  1341. package/types/ui/components/DialogGroupControl/GroupExtendedSettings/GroupExtendedSettings.d.ts +11 -0
  1342. package/types/ui/components/DialogGroupControl/hooks/useSimilarSelectorsActions.d.ts +12 -0
  1343. package/types/ui/components/DialogImageWidget/DialogImageWidget.d.ts +18 -0
  1344. package/types/ui/components/DialogImageWidget/index.d.ts +1 -0
  1345. package/types/ui/components/DialogManager/DialogManager.d.ts +6 -0
  1346. package/types/ui/components/DialogManager/DialogManagerContainer.d.ts +2 -0
  1347. package/types/ui/components/DialogNoRights/DialogNoRights.d.ts +11 -0
  1348. package/types/ui/components/DialogParameter/DefaultValueSection.d.ts +9 -0
  1349. package/types/ui/components/DialogParameter/DialogParameter.d.ts +15 -0
  1350. package/types/ui/components/DialogParameter/TemplateSection.d.ts +8 -0
  1351. package/types/ui/components/DialogParameter/helpers.d.ts +7 -0
  1352. package/types/ui/components/DialogParameter/useParameterForm.d.ts +20 -0
  1353. package/types/ui/components/DialogParameter/useParameterTooltipMarkdown.d.ts +5 -0
  1354. package/types/ui/components/DialogParameter/useValidationErrors.d.ts +8 -0
  1355. package/types/ui/components/DialogQLParameter/DialogQLParameter.d.ts +27 -0
  1356. package/types/ui/components/DialogRelatedEntities/DialogRelatedEntities.d.ts +7 -0
  1357. package/types/ui/components/DialogRelatedEntities/constants.d.ts +5 -0
  1358. package/types/ui/components/DialogRelations/DialogRelations.d.ts +21 -0
  1359. package/types/ui/components/DialogRelations/components/Content/Content.d.ts +17 -0
  1360. package/types/ui/components/DialogRelations/components/Content/Row.d.ts +35 -0
  1361. package/types/ui/components/DialogRelations/components/Content/helpers.d.ts +7 -0
  1362. package/types/ui/components/DialogRelations/components/DialogAliases/DialogAliases.d.ts +12 -0
  1363. package/types/ui/components/DialogRelations/components/DialogAliases/components/AddAliases/AddAliases.d.ts +14 -0
  1364. package/types/ui/components/DialogRelations/components/DialogAliases/components/AddAliases/helpers.d.ts +26 -0
  1365. package/types/ui/components/DialogRelations/components/DialogAliases/components/AliasesDetail/AliasesDetail.d.ts +11 -0
  1366. package/types/ui/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesInvalidList.d.ts +10 -0
  1367. package/types/ui/components/DialogRelations/components/DialogAliases/components/AliasesList/AliasesList.d.ts +32 -0
  1368. package/types/ui/components/DialogRelations/components/Filters/Filters.d.ts +6 -0
  1369. package/types/ui/components/DialogRelations/constants.d.ts +26 -0
  1370. package/types/ui/components/DialogRelations/helpers.d.ts +37 -0
  1371. package/types/ui/components/DialogRelations/hooks/helpers.d.ts +109 -0
  1372. package/types/ui/components/DialogRelations/hooks/helpersChart.d.ts +30 -0
  1373. package/types/ui/components/DialogRelations/hooks/helpersControls.d.ts +25 -0
  1374. package/types/ui/components/DialogRelations/hooks/helpersDatasets.d.ts +6 -0
  1375. package/types/ui/components/DialogRelations/hooks/useFilteredRelations.d.ts +11 -0
  1376. package/types/ui/components/DialogRelations/hooks/useRelations.d.ts +20 -0
  1377. package/types/ui/components/DialogRelations/types.d.ts +81 -0
  1378. package/types/ui/components/DialogSelectSharedEntry/DialogSelectSharedEntry.d.ts +16 -0
  1379. package/types/ui/components/DialogSharedEntryBindings/DialogSharedEntryBindings.d.ts +16 -0
  1380. package/types/ui/components/DialogSharedEntryBindings/components/DeleteAlert.d.ts +11 -0
  1381. package/types/ui/components/DialogSharedEntryBindings/components/DirectionControl.d.ts +7 -0
  1382. package/types/ui/components/DialogSharedEntryBindings/components/Relations.d.ts +18 -0
  1383. package/types/ui/components/DialogSharedEntryBindings/components/SharedBindingsFooter.d.ts +9 -0
  1384. package/types/ui/components/DialogSharedEntryBindings/components/SharedBindingsHeader.d.ts +7 -0
  1385. package/types/ui/components/DialogSharedEntryBindings/constants.d.ts +9 -0
  1386. package/types/ui/components/DialogSharedEntryBindings/hooks/useSharedEntryBindings.d.ts +21 -0
  1387. package/types/ui/components/DialogSharedEntryBindings/types.d.ts +9 -0
  1388. package/types/ui/components/DialogSharedEntryBindings/utils.d.ts +5 -0
  1389. package/types/ui/components/DialogSharedEntryPermissions/DialogSharedEntryPermissions.d.ts +18 -0
  1390. package/types/ui/components/DialogSharedEntryPermissions/components/PermissionButton/PermissionButton.d.ts +11 -0
  1391. package/types/ui/components/DialogSharedEntryUnbind/DialogSharedEntryUnbind.d.ts +17 -0
  1392. package/types/ui/components/DialogSharedEntryUnbind/constants.d.ts +21 -0
  1393. package/types/ui/components/DialogSharedRelatedEntities/DialogSharedRelatedEntities.d.ts +21 -0
  1394. package/types/ui/components/DialogSuccessWithAction/DialogSuccessWithAction.d.ts +8 -0
  1395. package/types/ui/components/DialogTextWidget/DialogTextWidget.d.ts +19 -0
  1396. package/types/ui/components/DialogTextWidget/index.d.ts +2 -0
  1397. package/types/ui/components/DialogTitleWidget/DialogTitleWidget.d.ts +22 -0
  1398. package/types/ui/components/DialogTitleWidget/useColorSettings.d.ts +41 -0
  1399. package/types/ui/components/DialogWarning/DialogWarning.d.ts +80 -0
  1400. package/types/ui/components/DragAndDrop/DragAndDrop.d.ts +6 -0
  1401. package/types/ui/components/DropdownAction/DropdownAction.d.ts +9 -0
  1402. package/types/ui/components/DropdownNavigation/DropdownNavigation.d.ts +44 -0
  1403. package/types/ui/components/EditableText/EditableText.d.ts +8 -0
  1404. package/types/ui/components/EntitiesList/EntitiesList.d.ts +2 -0
  1405. package/types/ui/components/EntitiesList/types.d.ts +27 -0
  1406. package/types/ui/components/EntityIcon/EntityIcon.d.ts +33 -0
  1407. package/types/ui/components/EntityLink/EntityLink.d.ts +8 -0
  1408. package/types/ui/components/EntityRow/EntityRow.d.ts +11 -0
  1409. package/types/ui/components/EntriesList/EntriesList.d.ts +7 -0
  1410. package/types/ui/components/EntriesList/Item/Item.d.ts +8 -0
  1411. package/types/ui/components/EntriesList/types.d.ts +5 -0
  1412. package/types/ui/components/EntryBreadcrumbs/EntryBreadcrumbs.d.ts +2 -0
  1413. package/types/ui/components/EntryBreadcrumbs/helpers.d.ts +11 -0
  1414. package/types/ui/components/EntryContextMenu/EntryContextMenu.d.ts +65 -0
  1415. package/types/ui/components/EntryContextMenu/EntryContextMenuBase/EntryContextMenuBase.d.ts +17 -0
  1416. package/types/ui/components/EntryContextMenu/constants.d.ts +32 -0
  1417. package/types/ui/components/EntryContextMenu/helpers.d.ts +48 -0
  1418. package/types/ui/components/EntryContextMenu/index.d.ts +3 -0
  1419. package/types/ui/components/EntryContextMenu/types.d.ts +37 -0
  1420. package/types/ui/components/EntryContextMenu/utils.d.ts +2 -0
  1421. package/types/ui/components/EntryContextMenu/withConfiguredEntryContextMenu/helpers.d.ts +2 -0
  1422. package/types/ui/components/EntryContextMenu/withConfiguredEntryContextMenu/withConfiguredEntryContextMenu.d.ts +14 -0
  1423. package/types/ui/components/EntryDialogues/DialogAccess/DialogAccess.d.ts +8 -0
  1424. package/types/ui/components/EntryDialogues/DialogAccessDescription/DialogAccessDescription.d.ts +16 -0
  1425. package/types/ui/components/EntryDialogues/DialogCopyEntry/DialogCopyEntry.d.ts +42 -0
  1426. package/types/ui/components/EntryDialogues/DialogCopyEntry/index.d.ts +2 -0
  1427. package/types/ui/components/EntryDialogues/DialogCreateDashboard/DialogCreateDashboard.d.ts +32 -0
  1428. package/types/ui/components/EntryDialogues/DialogCreateDashboard/index.d.ts +2 -0
  1429. package/types/ui/components/EntryDialogues/DialogCreateEditorChart/DialogCreateEditorChart.d.ts +33 -0
  1430. package/types/ui/components/EntryDialogues/DialogCreateEditorChart/index.d.ts +2 -0
  1431. package/types/ui/components/EntryDialogues/DialogCreateFolder/DialogCreateFolder.d.ts +27 -0
  1432. package/types/ui/components/EntryDialogues/DialogCreateFolder/index.d.ts +2 -0
  1433. package/types/ui/components/EntryDialogues/DialogCreateQLChart/DialogCreateQLChart.d.ts +35 -0
  1434. package/types/ui/components/EntryDialogues/DialogCreateQLChart/index.d.ts +2 -0
  1435. package/types/ui/components/EntryDialogues/DialogCreateWizardChart/DialogCreateWizardChart.d.ts +35 -0
  1436. package/types/ui/components/EntryDialogues/DialogCreateWizardChart/index.d.ts +2 -0
  1437. package/types/ui/components/EntryDialogues/DialogCreateWorkbookEntry/DialogCreateWorkbookEntry.d.ts +51 -0
  1438. package/types/ui/components/EntryDialogues/DialogDeleteEntry/DialogDeleteEntry.d.ts +38 -0
  1439. package/types/ui/components/EntryDialogues/DialogDeleteEntry/index.d.ts +2 -0
  1440. package/types/ui/components/EntryDialogues/DialogEditFavoritesAlias/DialogEditFavoritesAlias.d.ts +7 -0
  1441. package/types/ui/components/EntryDialogues/DialogEditFavoritesAlias/index.d.ts +1 -0
  1442. package/types/ui/components/EntryDialogues/DialogEditWarning/DialogEditWarning.d.ts +22 -0
  1443. package/types/ui/components/EntryDialogues/DialogEntrySaveAsNew/DialogEntrySaveAsNew.d.ts +33 -0
  1444. package/types/ui/components/EntryDialogues/DialogEntrySaveAsNew/index.d.ts +2 -0
  1445. package/types/ui/components/EntryDialogues/DialogMakeActualConfirm/DialogMakeActualConfirm.d.ts +25 -0
  1446. package/types/ui/components/EntryDialogues/DialogMigrateToWorkbook/DialogMigrateToWorkbook.d.ts +6 -0
  1447. package/types/ui/components/EntryDialogues/DialogMigrateToWorkbook/index.d.ts +1 -0
  1448. package/types/ui/components/EntryDialogues/DialogMoveEntry/DialogMoveEntry.d.ts +28 -0
  1449. package/types/ui/components/EntryDialogues/DialogMoveEntry/index.d.ts +2 -0
  1450. package/types/ui/components/EntryDialogues/DialogRenameEntry/DialogRenameEntry.d.ts +40 -0
  1451. package/types/ui/components/EntryDialogues/DialogRenameEntry/index.d.ts +2 -0
  1452. package/types/ui/components/EntryDialogues/DialogShareEntry/DialogShareEntry.d.ts +6 -0
  1453. package/types/ui/components/EntryDialogues/DialogShareEntry/index.d.ts +1 -0
  1454. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AlertTooltip/AlertTooltip.d.ts +8 -0
  1455. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/AuthorSection/AuthorSection.d.ts +15 -0
  1456. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentError/ContentError.d.ts +9 -0
  1457. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/ContentLoader/ContentLoader.d.ts +4 -0
  1458. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/CurrentEntrySection/CurrentEntrySection.d.ts +12 -0
  1459. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogAlert/DialogAlert.d.ts +67 -0
  1460. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/DialogPublic.d.ts +8 -0
  1461. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/RelationsList/RelationsList.d.ts +13 -0
  1462. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/SharedLink/SharedLink.d.ts +8 -0
  1463. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/constants.d.ts +9 -0
  1464. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/helpers.d.ts +1 -0
  1465. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/types.d.ts +111 -0
  1466. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogPublic/useDialogPublicState.d.ts +36 -0
  1467. package/types/ui/components/EntryDialogues/DialogSwitchPublic/DialogSwitchPublic.d.ts +7 -0
  1468. package/types/ui/components/EntryDialogues/DialogSwitchPublic/index.d.ts +2 -0
  1469. package/types/ui/components/EntryDialogues/DialogUnlock/DialogUnlock.d.ts +8 -0
  1470. package/types/ui/components/EntryDialogues/DialogUnlock/index.d.ts +2 -0
  1471. package/types/ui/components/EntryDialogues/EntryDialogBase/EntryDialogBase.d.ts +62 -0
  1472. package/types/ui/components/EntryDialogues/EntryDialogues.d.ts +95 -0
  1473. package/types/ui/components/EntryDialogues/constants.d.ts +4 -0
  1474. package/types/ui/components/EntryDialogues/index.d.ts +6 -0
  1475. package/types/ui/components/EntryDialogues/types.d.ts +12 -0
  1476. package/types/ui/components/EntryDialogues/utils.d.ts +1 -0
  1477. package/types/ui/components/EntryIcon/EntryIcon.d.ts +17 -0
  1478. package/types/ui/components/EntryRow/EntryRow.d.ts +31 -0
  1479. package/types/ui/components/EntrySuggest/EntrySuggest.d.ts +10 -0
  1480. package/types/ui/components/EntrySuggest/types.d.ts +12 -0
  1481. package/types/ui/components/EntryTitle/EntryTitle.d.ts +13 -0
  1482. package/types/ui/components/EntryTitle/index.d.ts +2 -0
  1483. package/types/ui/components/EntryTitle/types.d.ts +6 -0
  1484. package/types/ui/components/EntryTitle/utils.d.ts +2 -0
  1485. package/types/ui/components/ErrorBoundary/ErrorBoundary.d.ts +17 -0
  1486. package/types/ui/components/ErrorContent/DebugInfo/DebugInfo.d.ts +7 -0
  1487. package/types/ui/components/ErrorContent/ErrorContent.d.ts +70 -0
  1488. package/types/ui/components/ErrorPage/ErrorPage.d.ts +13 -0
  1489. package/types/ui/components/ErrorPage/withErrorPage.d.ts +63 -0
  1490. package/types/ui/components/ExpandablePanel/ExpandablePanel.d.ts +10 -0
  1491. package/types/ui/components/FieldEditor/FieldEditor.d.ts +81 -0
  1492. package/types/ui/components/FieldEditor/components/DocSection.d.ts +44 -0
  1493. package/types/ui/components/FieldEditor/components/FormulaSection.d.ts +39 -0
  1494. package/types/ui/components/FieldEditor/components/NameHeader.d.ts +6 -0
  1495. package/types/ui/components/FieldEditor/components/Settings.d.ts +15 -0
  1496. package/types/ui/components/FieldEditor/components/SourceSection.d.ts +14 -0
  1497. package/types/ui/components/FieldEditor/components/helpers.d.ts +4 -0
  1498. package/types/ui/components/FieldEditor/constants.d.ts +18 -0
  1499. package/types/ui/components/FieldEditor/index.d.ts +17 -0
  1500. package/types/ui/components/FieldEditor/typings.d.ts +13 -0
  1501. package/types/ui/components/FieldEditor/utils.d.ts +8 -0
  1502. package/types/ui/components/FieldWrapper/FieldWrapper.d.ts +7 -0
  1503. package/types/ui/components/FloatMenu/FloatMenu.d.ts +8 -0
  1504. package/types/ui/components/FormSection/FormSection.d.ts +9 -0
  1505. package/types/ui/components/FormattedValue/FormattedValue.d.ts +18 -0
  1506. package/types/ui/components/IamAccessDialog/AccessList/AccessList.d.ts +18 -0
  1507. package/types/ui/components/IamAccessDialog/AccessList/ActionPanel/ActionPanel.d.ts +11 -0
  1508. package/types/ui/components/IamAccessDialog/AccessList/Block/Block.d.ts +10 -0
  1509. package/types/ui/components/IamAccessDialog/AccessList/DirectAccessesTable/Controls/Controls.d.ts +15 -0
  1510. package/types/ui/components/IamAccessDialog/AccessList/DirectAccessesTable/DirectAccessesTable.d.ts +17 -0
  1511. package/types/ui/components/IamAccessDialog/AccessList/DirectAccessesTable/utils.d.ts +2 -0
  1512. package/types/ui/components/IamAccessDialog/AccessList/Filters/Filters.d.ts +11 -0
  1513. package/types/ui/components/IamAccessDialog/AccessList/InheritedAccessesTable/InheritedAccessesTable.d.ts +13 -0
  1514. package/types/ui/components/IamAccessDialog/AddSubjects/ActionPanel/ActionPanel.d.ts +14 -0
  1515. package/types/ui/components/IamAccessDialog/AddSubjects/AddSubjects.d.ts +12 -0
  1516. package/types/ui/components/IamAccessDialog/AddSubjects/SubjectsList/SubjectsList.d.ts +7 -0
  1517. package/types/ui/components/IamAccessDialog/IamAccessDialog.d.ts +8 -0
  1518. package/types/ui/components/IamAccessDialog/IamAccessDialogComponent.d.ts +3 -0
  1519. package/types/ui/components/IamAccessDialog/ResourceInfo/ResourceInfo.d.ts +8 -0
  1520. package/types/ui/components/IamAccessDialog/constants.d.ts +1 -0
  1521. package/types/ui/components/IamAccessDialog/index.d.ts +1 -0
  1522. package/types/ui/components/IamAccessDialog/utils.d.ts +10 -0
  1523. package/types/ui/components/IconById/IconById.d.ts +6 -0
  1524. package/types/ui/components/Illustration/Illustration.d.ts +2 -0
  1525. package/types/ui/components/Illustration/context.d.ts +2 -0
  1526. package/types/ui/components/Illustration/getIllustrationStore.d.ts +28 -0
  1527. package/types/ui/components/Illustration/getRebrandingIllustrationStore.d.ts +28 -0
  1528. package/types/ui/components/Illustration/types.d.ts +14 -0
  1529. package/types/ui/components/Illustration/utils.d.ts +2 -0
  1530. package/types/ui/components/InaccessibleOnMobileInset/InaccessibleOnMobileInset.d.ts +1 -0
  1531. package/types/ui/components/Interpolate/Interpolate.d.ts +8 -0
  1532. package/types/ui/components/Interpolate/index.d.ts +2 -0
  1533. package/types/ui/components/Interpolate/utils.d.ts +3 -0
  1534. package/types/ui/components/InterpolatedText/InterpolatedText.d.ts +11 -0
  1535. package/types/ui/components/LandingPage/LandingPage.d.ts +1 -0
  1536. package/types/ui/components/ListWithMenu/ListWithMenu.d.ts +22 -0
  1537. package/types/ui/components/ListWithRemove/ListWithRemove.d.ts +10 -0
  1538. package/types/ui/components/LocationChange/LocationChange.d.ts +6 -0
  1539. package/types/ui/components/MarkdownControl/MarkdownControl.d.ts +2 -0
  1540. package/types/ui/components/MarkdownHelpPopover/Content.d.ts +6 -0
  1541. package/types/ui/components/MarkdownHelpPopover/MarkdownHelpPopover.d.ts +10 -0
  1542. package/types/ui/components/Markup/Markup.d.ts +9 -0
  1543. package/types/ui/components/Markup/components/MarkupTooltip/MarkupTooltip.d.ts +11 -0
  1544. package/types/ui/components/Markup/components/UserInfo/UserInfo.d.ts +9 -0
  1545. package/types/ui/components/Markup/components/index.d.ts +2 -0
  1546. package/types/ui/components/Markup/index.d.ts +1 -0
  1547. package/types/ui/components/Markup/types.d.ts +9 -0
  1548. package/types/ui/components/Markup/utils.d.ts +1 -0
  1549. package/types/ui/components/MigrateToWorkbookDialog/MigrateToWorkbookDialog.d.ts +14 -0
  1550. package/types/ui/components/MigrateToWorkbookDialog/components/Body/Body.d.ts +10 -0
  1551. package/types/ui/components/MigrateToWorkbookDialog/components/Body/index.d.ts +1 -0
  1552. package/types/ui/components/MigrateToWorkbookDialog/components/EntriesGroup/EntriesGroup.d.ts +10 -0
  1553. package/types/ui/components/MigrateToWorkbookDialog/components/EntriesGroup/index.d.ts +1 -0
  1554. package/types/ui/components/MigrateToWorkbookDialog/components/EntryRow/EntryRow.d.ts +15 -0
  1555. package/types/ui/components/MigrateToWorkbookDialog/components/EntryRow/index.d.ts +1 -0
  1556. package/types/ui/components/MigrateToWorkbookDialog/index.d.ts +1 -0
  1557. package/types/ui/components/MobileHeader/MobileHeader.d.ts +1 -0
  1558. package/types/ui/components/MobileHeader/MobileHeaderComponent/BurgerMenuFooter/BurgerMenuFooter.d.ts +1 -0
  1559. package/types/ui/components/MobileHeader/MobileHeaderComponent/MobileHeaderComponent.d.ts +2 -0
  1560. package/types/ui/components/MobileHeader/MobileHeaderComponent/UserPanel/UserPanel.d.ts +1 -0
  1561. package/types/ui/components/MobileHeader/constants.d.ts +1 -0
  1562. package/types/ui/components/MobileTocToggle/MobileTocToggle.d.ts +3 -0
  1563. package/types/ui/components/Monaco/LazyMonaco.d.ts +5 -0
  1564. package/types/ui/components/Monaco/Monaco.d.ts +19 -0
  1565. package/types/ui/components/Navigation/Base/NavigationBase.d.ts +85 -0
  1566. package/types/ui/components/Navigation/Base/configure.d.ts +133 -0
  1567. package/types/ui/components/Navigation/Base/types.d.ts +8 -0
  1568. package/types/ui/components/Navigation/Base/utils.d.ts +1 -0
  1569. package/types/ui/components/Navigation/Core/CreateEntry/CreateEntry.d.ts +18 -0
  1570. package/types/ui/components/Navigation/Core/CreateEntry/getCreateEntryItems.d.ts +3 -0
  1571. package/types/ui/components/Navigation/Core/EntryContextButton/EntryContextButton.d.ts +14 -0
  1572. package/types/ui/components/Navigation/Core/ErrorView/ErrorView.d.ts +7 -0
  1573. package/types/ui/components/Navigation/Core/FavoritesNameWithAliasItem/FavoritesNameWithAliasItem.d.ts +11 -0
  1574. package/types/ui/components/Navigation/Core/NavigationBreadcrumbs/BreadcrumbMenu.d.ts +17 -0
  1575. package/types/ui/components/Navigation/Core/NavigationBreadcrumbs/NavigationBreadcrumbs.d.ts +25 -0
  1576. package/types/ui/components/Navigation/Core/NavigationEntries.d.ts +113 -0
  1577. package/types/ui/components/Navigation/Core/NavigationInline.d.ts +33 -0
  1578. package/types/ui/components/Navigation/Core/NavigationMinimal.d.ts +43 -0
  1579. package/types/ui/components/Navigation/Core/NavigationModal.d.ts +54 -0
  1580. package/types/ui/components/Navigation/Core/OrderSelect/OrderSelect.d.ts +9 -0
  1581. package/types/ui/components/Navigation/Core/SearchInput/SearchInput.d.ts +13 -0
  1582. package/types/ui/components/Navigation/Core/Sidebar/Sidebar.d.ts +22 -0
  1583. package/types/ui/components/Navigation/Core/TableView/BatchDialog/BatchDialog.d.ts +12 -0
  1584. package/types/ui/components/Navigation/Core/TableView/List/List.d.ts +15 -0
  1585. package/types/ui/components/Navigation/Core/TableView/Row/Row.d.ts +25 -0
  1586. package/types/ui/components/Navigation/Core/TableView/Row/RowHeader.d.ts +4 -0
  1587. package/types/ui/components/Navigation/Core/TableView/TableView.d.ts +2 -0
  1588. package/types/ui/components/Navigation/Core/TableView/types.d.ts +47 -0
  1589. package/types/ui/components/Navigation/Core/TableView/useBatchSelect.d.ts +4 -0
  1590. package/types/ui/components/Navigation/NavigationMinimal.d.ts +32 -0
  1591. package/types/ui/components/Navigation/NavigationModal.d.ts +13 -0
  1592. package/types/ui/components/Navigation/PlaceSelect/PlaceSelect.d.ts +21 -0
  1593. package/types/ui/components/Navigation/components/BatchPanel/BatchPanel.d.ts +8 -0
  1594. package/types/ui/components/Navigation/components/EmptyState/EmptyState.d.ts +9 -0
  1595. package/types/ui/components/Navigation/components/EmptyState/utils.d.ts +2 -0
  1596. package/types/ui/components/Navigation/constants.d.ts +24 -0
  1597. package/types/ui/components/Navigation/dialogs/BatchMove/AccessError/AccessError.d.ts +9 -0
  1598. package/types/ui/components/Navigation/dialogs/BatchMove/BatchMove.d.ts +9 -0
  1599. package/types/ui/components/Navigation/dialogs/BatchMove/MoveError/MoveError.d.ts +9 -0
  1600. package/types/ui/components/Navigation/dialogs/BatchMove/SelectDestination/SelectDestination.d.ts +7 -0
  1601. package/types/ui/components/Navigation/dialogs/BatchMove/types.d.ts +5 -0
  1602. package/types/ui/components/Navigation/hoc/resolveNavigationPath.d.ts +10 -0
  1603. package/types/ui/components/Navigation/index.d.ts +4 -0
  1604. package/types/ui/components/Navigation/settings.d.ts +11 -0
  1605. package/types/ui/components/Navigation/types.d.ts +48 -0
  1606. package/types/ui/components/Navigation/util.d.ts +10 -0
  1607. package/types/ui/components/NavigationPrompt/NavigationPrompt.d.ts +6 -0
  1608. package/types/ui/components/NavigationTabs/NavigationTabs.d.ts +12 -0
  1609. package/types/ui/components/NumberFormatSettings/NumberFormatSettings.d.ts +10 -0
  1610. package/types/ui/components/NumberFormatSettings/NumberInput/NumberInput.d.ts +10 -0
  1611. package/types/ui/components/OpenDialogNeedReset/OpenDialogNeedReset.d.ts +5 -0
  1612. package/types/ui/components/OrderBySelect/OrderBySelect.d.ts +12 -0
  1613. package/types/ui/components/OrderBySelect/constants.d.ts +6 -0
  1614. package/types/ui/components/OrderBySelect/index.d.ts +3 -0
  1615. package/types/ui/components/OrderBySelect/types.d.ts +10 -0
  1616. package/types/ui/components/PageTitle/PageTitle.d.ts +11 -0
  1617. package/types/ui/components/PageTitle/index.d.ts +2 -0
  1618. package/types/ui/components/PageTitle/usePageTitle.d.ts +13 -0
  1619. package/types/ui/components/PaletteIcon/PaletteIcon.d.ts +12 -0
  1620. package/types/ui/components/PaletteItem/PaletteItem.d.ts +15 -0
  1621. package/types/ui/components/PathSelect/PathSelect.d.ts +34 -0
  1622. package/types/ui/components/Picture/Picture.d.ts +7 -0
  1623. package/types/ui/components/PlaceholderIllustration/PlaceholderIllustration.d.ts +2 -0
  1624. package/types/ui/components/PlaceholderIllustration/types.d.ts +11 -0
  1625. package/types/ui/components/Progress/DialogCounterProgress.d.ts +10 -0
  1626. package/types/ui/components/ProgressBar/ProgressBar.d.ts +8 -0
  1627. package/types/ui/components/RelativeDatesPicker/RelativeDatesPicker.d.ts +29 -0
  1628. package/types/ui/components/RelativeDatesPicker/constants.d.ts +27 -0
  1629. package/types/ui/components/RelativeDatesPicker/types.d.ts +42 -0
  1630. package/types/ui/components/RelativeDatesPicker/utils.d.ts +42 -0
  1631. package/types/ui/components/RevisionStatusPoint/RevisionStatusPoint.d.ts +5 -0
  1632. package/types/ui/components/Revisions/Revisions.d.ts +75 -0
  1633. package/types/ui/components/Revisions/RevisionsList/RevisionsList.d.ts +27 -0
  1634. package/types/ui/components/Revisions/helpers.d.ts +7 -0
  1635. package/types/ui/components/Revisions/types.d.ts +14 -0
  1636. package/types/ui/components/RevisionsPanel/RevisionsPanel.d.ts +30 -0
  1637. package/types/ui/components/RevisionsPanel/components/RevisionsControls.d.ts +13 -0
  1638. package/types/ui/components/RevisionsPanel/utils.d.ts +10 -0
  1639. package/types/ui/components/ScrollableWithShadow/ScrollableWithShadow.d.ts +13 -0
  1640. package/types/ui/components/SectionWrapper/SectionWrapper.d.ts +14 -0
  1641. package/types/ui/components/Select/constants/SelectStyles.d.ts +3 -0
  1642. package/types/ui/components/Select/hooks/useSelectAsyncFetch/useIntersection.d.ts +6 -0
  1643. package/types/ui/components/Select/hooks/useSelectAsyncFetch/useSelectAsyncFetch.d.ts +15 -0
  1644. package/types/ui/components/Select/hooks/useSelectInfinityFetch/types.d.ts +5 -0
  1645. package/types/ui/components/Select/hooks/useSelectInfinityFetch/useSelectInfinityFetch.d.ts +11 -0
  1646. package/types/ui/components/Select/hooks/useSelectOptionsEnhancer.d.ts +2 -0
  1647. package/types/ui/components/Select/hooks/useSelectRenderEmptyOptions/useSelectRenderEmptyOptions.d.ts +8 -0
  1648. package/types/ui/components/Select/hooks/useSelectRenderError.d.ts +8 -0
  1649. package/types/ui/components/Select/hooks/useSelectRenderFilter/useSelectRenderFilter.d.ts +16 -0
  1650. package/types/ui/components/Select/wrappers/SelectAsync.d.ts +5 -0
  1651. package/types/ui/components/Select/wrappers/SelectFeatured.d.ts +10 -0
  1652. package/types/ui/components/Select/wrappers/SelectFeaturedAsync.d.ts +7 -0
  1653. package/types/ui/components/SelectComponents/components/SelectOptionWithIcon/SelectOptionWithIcon.d.ts +10 -0
  1654. package/types/ui/components/SelectComponents/index.d.ts +1 -0
  1655. package/types/ui/components/SelectMigrationToWorkbookDialog/Body/Body.d.ts +18 -0
  1656. package/types/ui/components/SelectMigrationToWorkbookDialog/SelectMigrationToWorkbookDialog.d.ts +13 -0
  1657. package/types/ui/components/SelectMigrationToWorkbookDialog/constants.d.ts +25 -0
  1658. package/types/ui/components/SelectMigrationToWorkbookDialog/index.d.ts +1 -0
  1659. package/types/ui/components/SharedBindingsList/ListSearch.d.ts +11 -0
  1660. package/types/ui/components/SharedBindingsList/SharedBindingsList.d.ts +14 -0
  1661. package/types/ui/components/SharedEntryIcon/SharedEntryIcon.d.ts +9 -0
  1662. package/types/ui/components/SlugifyUrl/SlugifyUrl.d.ts +6 -0
  1663. package/types/ui/components/SlugifyUrl/index.d.ts +1 -0
  1664. package/types/ui/components/SmartLoader/SmartLoader.d.ts +8 -0
  1665. package/types/ui/components/TabMenu/TabMenu.d.ts +2 -0
  1666. package/types/ui/components/TabMenu/types.d.ts +46 -0
  1667. package/types/ui/components/Tabs/Tabs.d.ts +7 -0
  1668. package/types/ui/components/Tabs/withDatalensSpecific.d.ts +9 -0
  1669. package/types/ui/components/TagInput/TagInput.d.ts +13 -0
  1670. package/types/ui/components/TemplateTextPaper/TemplateTextPaper.d.ts +7 -0
  1671. package/types/ui/components/TextEditor/TextEditor.d.ts +11 -0
  1672. package/types/ui/components/UserAvatar/UserAvatarById.d.ts +2 -0
  1673. package/types/ui/components/UserMenu/UserAvatar.d.ts +4 -0
  1674. package/types/ui/components/UserMenu/UserMenu.d.ts +3 -0
  1675. package/types/ui/components/UsersSuggest/UsersSuggest.d.ts +9 -0
  1676. package/types/ui/components/UsersSuggest/types.d.ts +10 -0
  1677. package/types/ui/components/ValuesList/ValuesList.d.ts +12 -0
  1678. package/types/ui/components/Veil/Veil.d.ts +14 -0
  1679. package/types/ui/components/ViewAsync/ViewAsync.d.ts +23 -0
  1680. package/types/ui/components/ViewError/ViewError.d.ts +22 -0
  1681. package/types/ui/components/ViewLoader/ViewLoader.d.ts +8 -0
  1682. package/types/ui/components/WidgetRoundingsInput/WidgetRoundingsInput.d.ts +6 -0
  1683. package/types/ui/components/Widgets/Chart/Chart.d.ts +7 -0
  1684. package/types/ui/components/Widgets/Chart/ChartAlert.d.ts +7 -0
  1685. package/types/ui/components/Widgets/Chart/ChartSelector.d.ts +7 -0
  1686. package/types/ui/components/Widgets/Chart/ChartWidget.d.ts +7 -0
  1687. package/types/ui/components/Widgets/Chart/ChartWidgetWithProvider.d.ts +8 -0
  1688. package/types/ui/components/Widgets/Chart/components/ChartInfoIcon.d.ts +5 -0
  1689. package/types/ui/components/Widgets/Chart/components/Content.d.ts +2 -0
  1690. package/types/ui/components/Widgets/Chart/components/Header.d.ts +13 -0
  1691. package/types/ui/components/Widgets/Chart/components/WidgetFooter.d.ts +10 -0
  1692. package/types/ui/components/Widgets/Chart/components/WidgetHeader.d.ts +53 -0
  1693. package/types/ui/components/Widgets/Chart/helpers/helpers.d.ts +139 -0
  1694. package/types/ui/components/Widgets/Chart/helpers/yandex-map.d.ts +12 -0
  1695. package/types/ui/components/Widgets/Chart/hooks/useAutoHeightResizeObserver.d.ts +12 -0
  1696. package/types/ui/components/Widgets/Chart/hooks/useChartActivities.d.ts +15 -0
  1697. package/types/ui/components/Widgets/Chart/hooks/useIntersectionObserver.d.ts +8 -0
  1698. package/types/ui/components/Widgets/Chart/hooks/useLoadingChart.d.ts +203 -0
  1699. package/types/ui/components/Widgets/Chart/hooks/useLoadingChartSelector.d.ts +184 -0
  1700. package/types/ui/components/Widgets/Chart/hooks/useLoadingChartWidget.d.ts +195 -0
  1701. package/types/ui/components/Widgets/Chart/hooks/useMemoCallback.d.ts +6 -0
  1702. package/types/ui/components/Widgets/Chart/store/reducer.d.ts +3 -0
  1703. package/types/ui/components/Widgets/Chart/store/types.d.ts +58 -0
  1704. package/types/ui/components/Widgets/Chart/types.d.ts +260 -0
  1705. package/types/ui/components/Widgets/Chart/utils.d.ts +5 -0
  1706. package/types/ui/components/WorkbookIcon/WorkbookIcon.d.ts +8 -0
  1707. package/types/ui/components/WorkbookNavigationMinimal/WorkbookNavigationMinimal.d.ts +47 -0
  1708. package/types/ui/components/WorkbookNavigationMinimal/components/ListWithSharedEntries.d.ts +13 -0
  1709. package/types/ui/components/WorkbookNavigationMinimal/constants.d.ts +1 -0
  1710. package/types/ui/components/WorkbookNavigationMinimal/types.d.ts +10 -0
  1711. package/types/ui/components/YfmWrapper/YfmWrapper.d.ts +3 -0
  1712. package/types/ui/components/YfmWrapper/YfmWrapperContent.d.ts +8 -0
  1713. package/types/ui/components/common/Datepicker/Calendar/Calendar.d.ts +51 -0
  1714. package/types/ui/components/common/Datepicker/Datepicker.d.ts +36 -0
  1715. package/types/ui/components/common/Datepicker/Month/Month.d.ts +61 -0
  1716. package/types/ui/components/common/Datepicker/Months/Months.d.ts +29 -0
  1717. package/types/ui/components/common/Datepicker/PopupContent/PopupContent.d.ts +25 -0
  1718. package/types/ui/components/common/Datepicker/Presets/Presets.d.ts +18 -0
  1719. package/types/ui/components/common/Datepicker/Quarters/Quarters.d.ts +28 -0
  1720. package/types/ui/components/common/Datepicker/YearSwitcher/YearSwitcher.d.ts +21 -0
  1721. package/types/ui/components/common/Datepicker/Years/Years.d.ts +27 -0
  1722. package/types/ui/components/common/Datepicker/constants.d.ts +46 -0
  1723. package/types/ui/components/common/Datepicker/index.d.ts +4 -0
  1724. package/types/ui/components/common/Datepicker/utils.d.ts +34 -0
  1725. package/types/ui/components/common/DatepickerControl/DatepickerControl.d.ts +5 -0
  1726. package/types/ui/components/common/RangeInputPicker/RangeInputPicker.d.ts +60 -0
  1727. package/types/ui/components/common/RangeInputPicker/constants.d.ts +3 -0
  1728. package/types/ui/components/common/RangeInputPicker/index.d.ts +1 -0
  1729. package/types/ui/components/common/RangeInputPicker/types.d.ts +32 -0
  1730. package/types/ui/components/common/RangeInputPicker/utils.d.ts +15 -0
  1731. package/types/ui/components/common/YCSelect/Item/Item.d.ts +52 -0
  1732. package/types/ui/components/common/YCSelect/Items/Items.d.ts +76 -0
  1733. package/types/ui/components/common/YCSelect/Search/Search.d.ts +20 -0
  1734. package/types/ui/components/common/YCSelect/YCSelect.d.ts +96 -0
  1735. package/types/ui/components/common/YCSelect/constants.d.ts +2 -0
  1736. package/types/ui/components/common/YCSelect/index.d.ts +4 -0
  1737. package/types/ui/components/common/YCSelect/isBothEmpty.d.ts +1 -0
  1738. package/types/ui/components/common/YCSelect/utils.d.ts +16 -0
  1739. package/types/ui/configs/common/icons.d.ts +25 -0
  1740. package/types/ui/configs/index.d.ts +27 -0
  1741. package/types/ui/constants/common.d.ts +197 -0
  1742. package/types/ui/constants/connections.d.ts +6 -0
  1743. package/types/ui/constants/dialogs.d.ts +24 -0
  1744. package/types/ui/constants/embedded.d.ts +4 -0
  1745. package/types/ui/constants/index.d.ts +6 -0
  1746. package/types/ui/constants/misc.d.ts +77 -0
  1747. package/types/ui/constants/mobile.d.ts +8 -0
  1748. package/types/ui/constants/navigation.d.ts +1 -0
  1749. package/types/ui/constants/operations.d.ts +37 -0
  1750. package/types/ui/constants/visualizations/combined-chart.d.ts +2 -0
  1751. package/types/ui/constants/visualizations/donut.d.ts +2 -0
  1752. package/types/ui/constants/visualizations/flatTable.d.ts +9 -0
  1753. package/types/ui/constants/visualizations/geolayer.d.ts +2 -0
  1754. package/types/ui/constants/visualizations/geopoint.d.ts +3 -0
  1755. package/types/ui/constants/visualizations/geopolygon.d.ts +2 -0
  1756. package/types/ui/constants/visualizations/heatmap.d.ts +2 -0
  1757. package/types/ui/constants/visualizations/index.d.ts +347 -0
  1758. package/types/ui/constants/visualizations/line.d.ts +8 -0
  1759. package/types/ui/constants/visualizations/metric.d.ts +2 -0
  1760. package/types/ui/constants/visualizations/pie.d.ts +2 -0
  1761. package/types/ui/constants/visualizations/pivotTable.d.ts +2 -0
  1762. package/types/ui/constants/visualizations/polyline.d.ts +2 -0
  1763. package/types/ui/constants/visualizations/scatter.d.ts +2 -0
  1764. package/types/ui/constants/visualizations/treemap.d.ts +13 -0
  1765. package/types/ui/constants/visualizations/utils.d.ts +2 -0
  1766. package/types/ui/constants/workbooks.d.ts +2 -0
  1767. package/types/ui/constants/yfm.d.ts +4 -0
  1768. package/types/ui/datalens/helpers.d.ts +2 -0
  1769. package/types/ui/datalens/hooks.d.ts +1 -0
  1770. package/types/ui/datalens/index.d.ts +9 -0
  1771. package/types/ui/datalens/pages/AuthPage/AuthPage.d.ts +3 -0
  1772. package/types/ui/datalens/pages/CollectionsNavigationPage/CollectionsNavigationPage.d.ts +2 -0
  1773. package/types/ui/datalens/pages/ConnectionsPage/ConnectionsPage.d.ts +2 -0
  1774. package/types/ui/datalens/pages/DashAndWizardQLPages/DashAndWizardQLPages.d.ts +29 -0
  1775. package/types/ui/datalens/pages/DashPage/DashPage.d.ts +2 -0
  1776. package/types/ui/datalens/pages/DatasetPage/DatasetPage.d.ts +2 -0
  1777. package/types/ui/datalens/pages/FallbackPage/FallbackPage.d.ts +5 -0
  1778. package/types/ui/datalens/pages/LandingPage/LandingPage.d.ts +2 -0
  1779. package/types/ui/datalens/pages/MainPage/MainPage.d.ts +2 -0
  1780. package/types/ui/datalens/pages/OwnUserProfilePage/OwnUserProfilePage.d.ts +2 -0
  1781. package/types/ui/datalens/pages/PreviewPage/PreviewPage.d.ts +2 -0
  1782. package/types/ui/datalens/pages/QLPage/QLPage.d.ts +5 -0
  1783. package/types/ui/datalens/pages/ServiceSettingsPage/ServiceSettingsPage.d.ts +2 -0
  1784. package/types/ui/datalens/pages/WizardPage/WizardPage.d.ts +2 -0
  1785. package/types/ui/datalens/render.d.ts +8 -0
  1786. package/types/ui/entries/dl-main.d.ts +0 -0
  1787. package/types/ui/entries/main.d.ts +3 -0
  1788. package/types/ui/hoc/index.d.ts +1 -0
  1789. package/types/ui/hoc/withEnabledFeature.d.ts +5 -0
  1790. package/types/ui/hoc/withHiddenUnmount.d.ts +59 -0
  1791. package/types/ui/hoc/withHotkeysContext.d.ts +5 -0
  1792. package/types/ui/hoc/withInaccessibleOnMobile.d.ts +61 -0
  1793. package/types/ui/hoc/withPromiseOpen.d.ts +66 -0
  1794. package/types/ui/hooks/index.d.ts +7 -0
  1795. package/types/ui/hooks/useBeforeLoad.d.ts +1 -0
  1796. package/types/ui/hooks/useBindHotkey.d.ts +17 -0
  1797. package/types/ui/hooks/useChangedProp.d.ts +1 -0
  1798. package/types/ui/hooks/useEffectOnce.d.ts +2 -0
  1799. package/types/ui/hooks/useEnterClick.d.ts +2 -0
  1800. package/types/ui/hooks/useHover.d.ts +7 -0
  1801. package/types/ui/hooks/useLocalStorageFallback.d.ts +9 -0
  1802. package/types/ui/hooks/useMarkdown.d.ts +9 -0
  1803. package/types/ui/hooks/useMountedState.d.ts +2 -0
  1804. package/types/ui/hooks/useOutsideClick.d.ts +2 -0
  1805. package/types/ui/hooks/usePrevious.d.ts +1 -0
  1806. package/types/ui/hooks/useRefMounted.d.ts +2 -0
  1807. package/types/ui/hooks/useSetState.d.ts +1 -0
  1808. package/types/ui/hooks/useShallowEqualSelector.d.ts +2 -0
  1809. package/types/ui/hooks/useSyncedState.d.ts +2 -0
  1810. package/types/ui/hooks/useTitle.d.ts +1 -0
  1811. package/types/ui/index.d.ts +76 -0
  1812. package/types/ui/libs/DatalensChartkit/ChartKit/ChartKit.d.ts +34 -0
  1813. package/types/ui/libs/DatalensChartkit/ChartKit/ChartKitAdapter.d.ts +27 -0
  1814. package/types/ui/libs/DatalensChartkit/ChartKit/components/ChartKitTooltip/ChartKitTooltip.d.ts +5 -0
  1815. package/types/ui/libs/DatalensChartkit/ChartKit/components/Error/Error.d.ts +2 -0
  1816. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/IconRenderer.d.ts +9 -0
  1817. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/CirclePointIcon.d.ts +3 -0
  1818. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashDotLineIcon.d.ts +4 -0
  1819. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DashLineIcon.d.ts +4 -0
  1820. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DiamondPointIcon.d.ts +3 -0
  1821. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/DotLineIcon.d.ts +4 -0
  1822. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotDotLineIcon.d.ts +4 -0
  1823. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashDotLineIcon.d.ts +4 -0
  1824. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/LongDashLineIcon.d.ts +4 -0
  1825. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotDotLineIcon.d.ts +4 -0
  1826. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashDotLineIcon.d.ts +4 -0
  1827. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDashLineIcon.d.ts +4 -0
  1828. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/ShortDotLineIcon.d.ts +4 -0
  1829. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SolidLineIcon.d.ts +3 -0
  1830. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/SquarePointIcon.d.ts +3 -0
  1831. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TriangleDownPointIcon.d.ts +3 -0
  1832. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/Icons/TrianglePointIcon.d.ts +3 -0
  1833. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/constants.d.ts +2 -0
  1834. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/renderTooltipIcon.d.ts +6 -0
  1835. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashDotLineIcon.d.ts +2 -0
  1836. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DashLineIcon.d.ts +2 -0
  1837. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/DotLineIcon.d.ts +2 -0
  1838. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotDotLineIcon.d.ts +2 -0
  1839. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashDotLineIcon.d.ts +2 -0
  1840. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/LongDashLineIcon.d.ts +2 -0
  1841. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotDotLineIcon.d.ts +2 -0
  1842. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashDotLineIcon.d.ts +2 -0
  1843. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDashLineIcon.d.ts +2 -0
  1844. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/ShortDotLineIcon.d.ts +2 -0
  1845. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/SolidLineIcon.d.ts +2 -0
  1846. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/template-icons/index.d.ts +11 -0
  1847. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/types.d.ts +4 -0
  1848. package/types/ui/libs/DatalensChartkit/ChartKit/components/IconRenderer/utils.d.ts +7 -0
  1849. package/types/ui/libs/DatalensChartkit/ChartKit/components/Loader/Loader.d.ts +7 -0
  1850. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/Widget.d.ts +29 -0
  1851. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/AlertWidget.d.ts +38 -0
  1852. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/AlertWidget/utils.d.ts +76 -0
  1853. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Markdown/Markdown.d.ts +6 -0
  1854. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/Bar.d.ts +2 -0
  1855. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/types.d.ts +55 -0
  1856. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Bar/utils.d.ts +13 -0
  1857. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Paginator/Paginator.d.ts +11 -0
  1858. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/Table.d.ts +24 -0
  1859. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/WrappedHTMLNode.d.ts +9 -0
  1860. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/types.d.ts +6 -0
  1861. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/action-params.d.ts +32 -0
  1862. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/event-handlers.d.ts +19 -0
  1863. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/index.d.ts +4 -0
  1864. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/misc.d.ts +28 -0
  1865. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/render.d.ts +39 -0
  1866. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/types.d.ts +5 -0
  1867. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/Table/utils/validation.d.ts +2 -0
  1868. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/constants.d.ts +6 -0
  1869. package/types/ui/libs/DatalensChartkit/ChartKit/components/Widget/components/index.d.ts +3 -0
  1870. package/types/ui/libs/DatalensChartkit/ChartKit/components/index.d.ts +5 -0
  1871. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/action-params-handlers.d.ts +28 -0
  1872. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/apply-hc-handlers.d.ts +19 -0
  1873. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/chartkit-adapter.d.ts +59 -0
  1874. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/chartkitAdapter.d.ts +1 -0
  1875. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/constants.d.ts +4 -0
  1876. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/getRandomCKId.d.ts +1 -0
  1877. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chart-to-table.d.ts +7 -0
  1878. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/chartkit-adapter.d.ts +15 -0
  1879. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/comments.d.ts +13 -0
  1880. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/event-handlers.d.ts +12 -0
  1881. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/holidays.d.ts +8 -0
  1882. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/gravity-charts/utils.d.ts +15 -0
  1883. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/tooltip.d.ts +15 -0
  1884. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/types.d.ts +5 -0
  1885. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/utils.d.ts +12 -0
  1886. package/types/ui/libs/DatalensChartkit/ChartKit/helpers/wait-for-content.d.ts +1 -0
  1887. package/types/ui/libs/DatalensChartkit/ChartKit/init.d.ts +1 -0
  1888. package/types/ui/libs/DatalensChartkit/ChartKit/modules/chartkit-custom-error/chartkit-custom-error.d.ts +34 -0
  1889. package/types/ui/libs/DatalensChartkit/ChartKit/modules/comments/drawing.d.ts +11 -0
  1890. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/config.d.ts +576 -0
  1891. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/handleLegendItemClick.d.ts +1 -0
  1892. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/options.d.ts +465 -0
  1893. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/addShowInNavigatorToSeries.d.ts +10 -0
  1894. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/buildNavigatorFallback.d.ts +1 -0
  1895. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/calculatePrecision.d.ts +5 -0
  1896. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/concatStrings.d.ts +1 -0
  1897. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getChartKitFormattedValue.d.ts +2 -0
  1898. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getFormatOptionsFromLine.d.ts +3 -0
  1899. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/getXAxisThresholdValue.d.ts +1 -0
  1900. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/index.d.ts +11 -0
  1901. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isSafari.d.ts +1 -0
  1902. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/isTooltipShared.d.ts +1 -0
  1903. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/localStorage.d.ts +5 -0
  1904. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/mergeArrayWithObject.d.ts +1 -0
  1905. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/numberFormat.d.ts +2 -0
  1906. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/config/utils/setNavigatorDefaultPeriod.d.ts +13 -0
  1907. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/graph.d.ts +541 -0
  1908. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/prepare-data.d.ts +1 -0
  1909. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/helpers.d.ts +1 -0
  1910. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/tooltip.d.ts +12 -0
  1911. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/tooltip/types.d.ts +102 -0
  1912. package/types/ui/libs/DatalensChartkit/ChartKit/modules/graph/types/index.d.ts +35 -0
  1913. package/types/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/colors.d.ts +2 -0
  1914. package/types/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/calcucalteClosestPointManually.d.ts +1 -0
  1915. package/types/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/helpers/index.d.ts +1 -0
  1916. package/types/ui/libs/DatalensChartkit/ChartKit/modules/highcharts/highcharts.d.ts +4 -0
  1917. package/types/ui/libs/DatalensChartkit/ChartKit/modules/i18n/i18n.d.ts +4 -0
  1918. package/types/ui/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/en.d.ts +58 -0
  1919. package/types/ui/libs/DatalensChartkit/ChartKit/modules/i18n/keysets/ru.d.ts +59 -0
  1920. package/types/ui/libs/DatalensChartkit/ChartKit/modules/map/map.d.ts +84 -0
  1921. package/types/ui/libs/DatalensChartkit/ChartKit/modules/map/options.d.ts +38 -0
  1922. package/types/ui/libs/DatalensChartkit/ChartKit/modules/map/tooltip/tooltip.d.ts +2 -0
  1923. package/types/ui/libs/DatalensChartkit/ChartKit/modules/perfomance.d.ts +5 -0
  1924. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/fetch-script.d.ts +1 -0
  1925. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/index.d.ts +2 -0
  1926. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/helpers/number-format.d.ts +1 -0
  1927. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Canvas.d.ts +2 -0
  1928. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/DataConverter.d.ts +2 -0
  1929. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/Heatmap.d.ts +2 -0
  1930. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/TileUrlsGenerator.d.ts +2 -0
  1931. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/Gridmap.d.ts +2 -0
  1932. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/index.d.ts +0 -0
  1933. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/hexagonGrid.d.ts +28 -0
  1934. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/gridmap/utils/squareGrid.d.ts +14 -0
  1935. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/Polygonmap.d.ts +2 -0
  1936. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorLegend.d.ts +21 -0
  1937. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.d.ts +44 -0
  1938. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/colorize.test.d.ts +1 -0
  1939. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultBalloonContent.d.ts +7 -0
  1940. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.d.ts +9 -0
  1941. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultFilter.test.d.ts +1 -0
  1942. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.d.ts +9 -0
  1943. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultMapper.test.d.ts +1 -0
  1944. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnClick.d.ts +13 -0
  1945. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseEnter.d.ts +8 -0
  1946. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/defaultOnMouseLeave.d.ts +8 -0
  1947. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.d.ts +9 -0
  1948. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/inside.test.d.ts +1 -0
  1949. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.d.ts +10 -0
  1950. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/components/polygonmap/utils/normalizeFeature.test.d.ts +1 -0
  1951. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/modules/modules.d.ts +2 -0
  1952. package/types/ui/libs/DatalensChartkit/ChartKit/modules/yandex-map/yandex-map.d.ts +30 -0
  1953. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/index.d.ts +2 -0
  1954. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/AdvancedChartWidget.d.ts +3 -0
  1955. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/components/Tooltip/Tooltip.d.ts +9 -0
  1956. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/types.d.ts +5 -0
  1957. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/renderer/utils.d.ts +1 -0
  1958. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/AdvancedChart/types.d.ts +31 -0
  1959. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/index.d.ts +2 -0
  1960. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapComponent.d.ts +108 -0
  1961. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/renderer/HighchartsMapWidget.d.ts +11 -0
  1962. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/HighchartsMap/types.d.ts +24 -0
  1963. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/index.d.ts +2 -0
  1964. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/renderer/MarkupWidget.d.ts +20 -0
  1965. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Markup/types.d.ts +8 -0
  1966. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/index.d.ts +2 -0
  1967. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricTile.d.ts +7 -0
  1968. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/MetricWidget.d.ts +5 -0
  1969. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/renderer/metricHelpers.d.ts +89 -0
  1970. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Metric/types.d.ts +54 -0
  1971. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/index.d.ts +2 -0
  1972. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/TableWidget.d.ts +4 -0
  1973. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/BarCell/BarCell.d.ts +7 -0
  1974. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/DiffCell/DiffCell.d.ts +9 -0
  1975. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/HtmlCell/HtmlCell.d.ts +8 -0
  1976. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/MarkupCell/MarkupCell.d.ts +6 -0
  1977. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/SortIcon/SortIcon.d.ts +4 -0
  1978. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/BackgroundTable.d.ts +14 -0
  1979. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/Table.d.ts +15 -0
  1980. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableBody.d.ts +10 -0
  1981. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableFooter.d.ts +8 -0
  1982. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/TableHead.d.ts +9 -0
  1983. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/cell-width.d.ts +7 -0
  1984. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/types.d.ts +150 -0
  1985. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/usePreparedTableData.d.ts +19 -0
  1986. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/Table/utils.d.ts +20 -0
  1987. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TableTitleView/TableTitleView.d.ts +6 -0
  1988. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/components/TreeCell/TreeCell.d.ts +6 -0
  1989. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/types.d.ts +4 -0
  1990. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/action-params.d.ts +29 -0
  1991. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/drill-down.d.ts +12 -0
  1992. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/index.d.ts +5 -0
  1993. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/math.d.ts +6 -0
  1994. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/migrate-to-old-format.d.ts +8 -0
  1995. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/renderer.d.ts +26 -0
  1996. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/renderer/utils/tree.d.ts +12 -0
  1997. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/Table/types.d.ts +16 -0
  1998. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/index.d.ts +2 -0
  1999. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/EyeSlashIcon.d.ts +3 -0
  2000. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Icons/SizeIcon.d.ts +3 -0
  2001. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Layer/Layer.d.ts +21 -0
  2002. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/Legend/Legend.d.ts +8 -0
  2003. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapComponent.d.ts +68 -0
  2004. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/YandexMapWidget.d.ts +17 -0
  2005. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/events.d.ts +12 -0
  2006. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/types.d.ts +51 -0
  2007. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/renderer/utils.d.ts +11 -0
  2008. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/YandexMap/types.d.ts +24 -0
  2009. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/chart-storage.d.ts +1 -0
  2010. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/components/StyledSplitPane/StyledSplitPane.d.ts +9 -0
  2011. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/components/index.d.ts +3 -0
  2012. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/components/withSplitPane/withSplitPane.d.ts +9 -0
  2013. package/types/ui/libs/DatalensChartkit/ChartKit/plugins/index.d.ts +9 -0
  2014. package/types/ui/libs/DatalensChartkit/ChartKit/types.d.ts +56 -0
  2015. package/types/ui/libs/DatalensChartkit/DatalensChartKitOld.d.ts +4 -0
  2016. package/types/ui/libs/DatalensChartkit/Error/Error.d.ts +3 -0
  2017. package/types/ui/libs/DatalensChartkit/Error/getAdditionalChartkitErrorContent.d.ts +2 -0
  2018. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/ChartKitBase.d.ts +130 -0
  2019. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Chart/Chart.d.ts +13 -0
  2020. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/ChartkitError/ChartkitError.d.ts +10 -0
  2021. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Content/store/reducer.d.ts +3 -0
  2022. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Content/store/types.d.ts +43 -0
  2023. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Control/Control.d.ts +5 -0
  2024. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/Header.d.ts +26 -0
  2025. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/ChartsInsights.d.ts +6 -0
  2026. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/ChartsInsightsIcon.d.ts +7 -0
  2027. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/ChartsInsightsIcon/getIconData.d.ts +3 -0
  2028. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/components/TooltipContent/TooltipContent.d.ts +10 -0
  2029. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/ChartsInsights/helpers/getIconLevel.d.ts +2 -0
  2030. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ButtonSpin/ButtonSpin.d.ts +19 -0
  2031. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ButtonSpinInput/ButtonSpinInput.d.ts +35 -0
  2032. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ChartsModal/ChartsModal.d.ts +60 -0
  2033. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/ChartsModalMenu/ChartsModalMenu.d.ts +16 -0
  2034. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/DownloadCsv/DownloadCsv.d.ts +16 -0
  2035. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/CsvExport/CsvExport.d.ts +3 -0
  2036. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/Export.d.ts +14 -0
  2037. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/ToastContent/ToastContent.d.ts +3 -0
  2038. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/types.d.ts +32 -0
  2039. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Export/utils.d.ts +12 -0
  2040. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Inspector.d.ts +14 -0
  2041. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/SourceMeta/Datalens.d.ts +8 -0
  2042. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Source/Source.d.ts +18 -0
  2043. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceError/SourceError.d.ts +9 -0
  2044. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/SourceSuccess/SourceSuccess.d.ts +9 -0
  2045. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Sources/Sources.d.ts +7 -0
  2046. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/Timings/Timings.d.ts +7 -0
  2047. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Inspector/types.d.ts +5 -0
  2048. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Body/Body.d.ts +12 -0
  2049. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Context/Context.d.ts +12 -0
  2050. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Footer/Footer.d.ts +17 -0
  2051. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Header/Header.d.ts +12 -0
  2052. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/Modal/Modal.d.ts +18 -0
  2053. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/PopupMessage/PopupMessage.d.ts +26 -0
  2054. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/constants.d.ts +6 -0
  2055. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Items/helpers.d.ts +11 -0
  2056. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/Menu/Menu.d.ts +71 -0
  2057. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/MenuWithErrorBoundary/MenuWithErrorBoundary.d.ts +1 -0
  2058. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Header/components/index.d.ts +2 -0
  2059. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/components/Loader/Loader.d.ts +12 -0
  2060. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/helpers.d.ts +7 -0
  2061. package/types/ui/libs/DatalensChartkit/components/ChartKitBase/types.d.ts +105 -0
  2062. package/types/ui/libs/DatalensChartkit/components/ChartKitIcon/ChartKitIcon.d.ts +25 -0
  2063. package/types/ui/libs/DatalensChartkit/components/Control/Control.d.ts +38 -0
  2064. package/types/ui/libs/DatalensChartkit/components/Control/Items/Items.d.ts +28 -0
  2065. package/types/ui/libs/DatalensChartkit/components/Control/Items/withWrapForControls.d.ts +5 -0
  2066. package/types/ui/libs/DatalensChartkit/components/Control/types.d.ts +38 -0
  2067. package/types/ui/libs/DatalensChartkit/components/DeferredInitializer/DeferredInitializer.d.ts +26 -0
  2068. package/types/ui/libs/DatalensChartkit/components/Drill/Drill.d.ts +24 -0
  2069. package/types/ui/libs/DatalensChartkit/components/Error/Error.d.ts +11 -0
  2070. package/types/ui/libs/DatalensChartkit/components/Error/More/More.d.ts +18 -0
  2071. package/types/ui/libs/DatalensChartkit/components/ErrorBoundary/ErrorBoundary.d.ts +18 -0
  2072. package/types/ui/libs/DatalensChartkit/components/ErrorBoundary/withErrorBoundary.d.ts +2 -0
  2073. package/types/ui/libs/DatalensChartkit/components/Palette/Attach/Attach.d.ts +6 -0
  2074. package/types/ui/libs/DatalensChartkit/components/Palette/ColorItem/ColorItem.d.ts +15 -0
  2075. package/types/ui/libs/DatalensChartkit/components/Palette/DraggableModalHOC/DraggableModalHOC.d.ts +5 -0
  2076. package/types/ui/libs/DatalensChartkit/components/Palette/PaletteEditor/PaletteEditor.d.ts +26 -0
  2077. package/types/ui/libs/DatalensChartkit/components/Palette/PaletteSettings/PaletteSettings.d.ts +16 -0
  2078. package/types/ui/libs/DatalensChartkit/components/SideMarkdown/SideMarkdown.d.ts +5 -0
  2079. package/types/ui/libs/DatalensChartkit/extensions/alert.d.ts +6 -0
  2080. package/types/ui/libs/DatalensChartkit/extensions/control.d.ts +6 -0
  2081. package/types/ui/libs/DatalensChartkit/extensions/markdown.d.ts +6 -0
  2082. package/types/ui/libs/DatalensChartkit/extensions/table.d.ts +6 -0
  2083. package/types/ui/libs/DatalensChartkit/helpers/convert-data-to-table.d.ts +7 -0
  2084. package/types/ui/libs/DatalensChartkit/helpers/helpers.d.ts +8 -0
  2085. package/types/ui/libs/DatalensChartkit/index.d.ts +11 -0
  2086. package/types/ui/libs/DatalensChartkit/menu/Menu.d.ts +31 -0
  2087. package/types/ui/libs/DatalensChartkit/menu/MenuItems.d.ts +55 -0
  2088. package/types/ui/libs/DatalensChartkit/menu/constants.d.ts +9 -0
  2089. package/types/ui/libs/DatalensChartkit/menu/helpers.d.ts +37 -0
  2090. package/types/ui/libs/DatalensChartkit/modules/axios/axios.d.ts +5 -0
  2091. package/types/ui/libs/DatalensChartkit/modules/axios/axiosConcurrency.d.ts +23 -0
  2092. package/types/ui/libs/DatalensChartkit/modules/constants/constants.d.ts +31 -0
  2093. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/chartkit-handlers.d.ts +34 -0
  2094. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/get-graph.d.ts +37 -0
  2095. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-config.d.ts +38 -0
  2096. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/get-graph/prepare-data.d.ts +1 -0
  2097. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/helpers/getChartsInsightsData.d.ts +16 -0
  2098. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/helpers/index.d.ts +1 -0
  2099. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/index.d.ts +125 -0
  2100. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/node.d.ts +9 -0
  2101. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/types.d.ts +478 -0
  2102. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox-runtime.d.ts +38 -0
  2103. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/ui-sandbox.d.ts +29 -0
  2104. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/utils.d.ts +2 -0
  2105. package/types/ui/libs/DatalensChartkit/modules/data-provider/charts/wizard.d.ts +17 -0
  2106. package/types/ui/libs/DatalensChartkit/modules/data-provider/example.d.ts +5 -0
  2107. package/types/ui/libs/DatalensChartkit/modules/data-provider/helpers.d.ts +2 -0
  2108. package/types/ui/libs/DatalensChartkit/modules/data-provider/withDataProvider.d.ts +12 -0
  2109. package/types/ui/libs/DatalensChartkit/modules/datalens-chartkit-custom-error/datalens-chartkit-custom-error.d.ts +61 -0
  2110. package/types/ui/libs/DatalensChartkit/modules/export/export.d.ts +35 -0
  2111. package/types/ui/libs/DatalensChartkit/modules/extensions-manager/extensions-manager.d.ts +8 -0
  2112. package/types/ui/libs/DatalensChartkit/modules/html-generator/constants.d.ts +12 -0
  2113. package/types/ui/libs/DatalensChartkit/modules/html-generator/index.d.ts +9 -0
  2114. package/types/ui/libs/DatalensChartkit/modules/html-generator/utils.d.ts +4 -0
  2115. package/types/ui/libs/DatalensChartkit/modules/localStorage.d.ts +5 -0
  2116. package/types/ui/libs/DatalensChartkit/modules/menu/menu.d.ts +8 -0
  2117. package/types/ui/libs/DatalensChartkit/modules/perfomance.d.ts +5 -0
  2118. package/types/ui/libs/DatalensChartkit/modules/settings/settings.d.ts +21 -0
  2119. package/types/ui/libs/DatalensChartkit/modules/table.d.ts +2 -0
  2120. package/types/ui/libs/DatalensChartkit/types/common.d.ts +4 -0
  2121. package/types/ui/libs/DatalensChartkit/types/control.d.ts +73 -0
  2122. package/types/ui/libs/DatalensChartkit/types/dataProvider.d.ts +43 -0
  2123. package/types/ui/libs/DatalensChartkit/types/index.d.ts +4 -0
  2124. package/types/ui/libs/DatalensChartkit/types/menu.d.ts +37 -0
  2125. package/types/ui/libs/DatalensChartkit/types/widget.d.ts +324 -0
  2126. package/types/ui/libs/auth/refreshToken.d.ts +1 -0
  2127. package/types/ui/libs/axios/axios.d.ts +5 -0
  2128. package/types/ui/libs/axios/interceptors.d.ts +4 -0
  2129. package/types/ui/libs/datasetHelper/index.d.ts +3 -0
  2130. package/types/ui/libs/datasetSdk/index.d.ts +35 -0
  2131. package/types/ui/libs/google-analytics/index.d.ts +1 -0
  2132. package/types/ui/libs/index.d.ts +7 -0
  2133. package/types/ui/libs/logger/index.d.ts +5 -0
  2134. package/types/ui/libs/metrica/index.d.ts +21 -0
  2135. package/types/ui/libs/monaco/constants.d.ts +2 -0
  2136. package/types/ui/libs/monaco/dl-lang/constants.d.ts +17 -0
  2137. package/types/ui/libs/monaco/dl-lang/index.d.ts +3 -0
  2138. package/types/ui/libs/monaco/index.d.ts +6 -0
  2139. package/types/ui/libs/monaco/load-monaco-core.d.ts +18 -0
  2140. package/types/ui/libs/monaco/ql-lang/constants.d.ts +3 -0
  2141. package/types/ui/libs/monaco/ql-lang/index.d.ts +8 -0
  2142. package/types/ui/libs/monaco/theme-mappers.d.ts +5 -0
  2143. package/types/ui/libs/monaco/types.d.ts +4 -0
  2144. package/types/ui/libs/monaco/utils.d.ts +23 -0
  2145. package/types/ui/libs/navigateHelper/index.d.ts +16 -0
  2146. package/types/ui/libs/schematic-sdk/decorator.d.ts +10 -0
  2147. package/types/ui/libs/schematic-sdk/index.d.ts +32 -0
  2148. package/types/ui/libs/schematic-sdk/parse-error.d.ts +17 -0
  2149. package/types/ui/libs/sdk/index.d.ts +69 -0
  2150. package/types/ui/libs/sdk/types.d.ts +22 -0
  2151. package/types/ui/libs/userSettings/index.d.ts +8 -0
  2152. package/types/ui/modules/index.d.ts +1 -0
  2153. package/types/ui/modules/markdownProvider.d.ts +13 -0
  2154. package/types/ui/navigation/history.d.ts +3 -0
  2155. package/types/ui/navigation/index.d.ts +7 -0
  2156. package/types/ui/navigation/router.d.ts +58 -0
  2157. package/types/ui/registry/components/DefaultEmpty.d.ts +2 -0
  2158. package/types/ui/registry/functions/example-function.d.ts +1 -0
  2159. package/types/ui/registry/index.d.ts +1071 -0
  2160. package/types/ui/registry/libs/index.d.ts +9 -0
  2161. package/types/ui/registry/libs/registryLibsPlugins.d.ts +7 -0
  2162. package/types/ui/registry/libs/schematic-sdk/index.d.ts +6 -0
  2163. package/types/ui/registry/units/auth/components-map.d.ts +9 -0
  2164. package/types/ui/registry/units/auth/functions-map.d.ts +10 -0
  2165. package/types/ui/registry/units/auth/index.d.ts +51 -0
  2166. package/types/ui/registry/units/auth/register.d.ts +1 -0
  2167. package/types/ui/registry/units/auth/types/components/AdditionalProfileSections.d.ts +4 -0
  2168. package/types/ui/registry/units/auth/types/components/AdditionalUsersFilters.d.ts +4 -0
  2169. package/types/ui/registry/units/auth/types/components/Signin.d.ts +3 -0
  2170. package/types/ui/registry/units/auth/types/functions/getAdditionalAddProfileFields.d.ts +14 -0
  2171. package/types/ui/registry/units/auth/types/functions/getAdditionalProfileFields.d.ts +6 -0
  2172. package/types/ui/registry/units/auth/types/functions/getUsersListColumns.d.ts +3 -0
  2173. package/types/ui/registry/units/auth/types/functions/getUsersRoles.d.ts +2 -0
  2174. package/types/ui/registry/units/chart/components-map.d.ts +7 -0
  2175. package/types/ui/registry/units/chart/functions-map.d.ts +26 -0
  2176. package/types/ui/registry/units/chart/index.d.ts +79 -0
  2177. package/types/ui/registry/units/chart/register.d.ts +1 -0
  2178. package/types/ui/registry/units/chart/types/components/AlertDialog.d.ts +7 -0
  2179. package/types/ui/registry/units/chart/types/components/ChartActionPanelButton.d.ts +11 -0
  2180. package/types/ui/registry/units/chart/types/functions/get-chartkit-holidays.d.ts +2 -0
  2181. package/types/ui/registry/units/chart/types/functions/getChartkitMenuByType.d.ts +22 -0
  2182. package/types/ui/registry/units/chart/types/functions/getDefaultChartMenu.d.ts +9 -0
  2183. package/types/ui/registry/units/chart/types/functions/getPanePreviewChartMenu.d.ts +4 -0
  2184. package/types/ui/registry/units/chart/types/functions/getVisualSelectorBottomPlaceholder.d.ts +5 -0
  2185. package/types/ui/registry/units/chart/types/functions/getWizardChartMenu.d.ts +8 -0
  2186. package/types/ui/registry/units/collections/components-map.d.ts +5 -0
  2187. package/types/ui/registry/units/collections/functionts-map.d.ts +10 -0
  2188. package/types/ui/registry/units/collections/index.d.ts +47 -0
  2189. package/types/ui/registry/units/collections/register.d.ts +1 -0
  2190. package/types/ui/registry/units/collections/types/customizeEmptyPlaceholder.d.ts +17 -0
  2191. package/types/ui/registry/units/collections/types/customizeNoCreatePermissionDialog.d.ts +6 -0
  2192. package/types/ui/registry/units/collections/types/index.d.ts +3 -0
  2193. package/types/ui/registry/units/collections/types/useCreateWorkbookDialogHandlers.d.ts +16 -0
  2194. package/types/ui/registry/units/common/components/Example/Example.d.ts +12 -0
  2195. package/types/ui/registry/units/common/components-map.d.ts +68 -0
  2196. package/types/ui/registry/units/common/constants/components.d.ts +1 -0
  2197. package/types/ui/registry/units/common/constants/functions.d.ts +1 -0
  2198. package/types/ui/registry/units/common/functions-map.d.ts +128 -0
  2199. package/types/ui/registry/units/common/index.d.ts +452 -0
  2200. package/types/ui/registry/units/common/register.d.ts +1 -0
  2201. package/types/ui/registry/units/common/types/components/AccessRights.d.ts +9 -0
  2202. package/types/ui/registry/units/common/types/components/AccessRightsUrlOpen.d.ts +4 -0
  2203. package/types/ui/registry/units/common/types/components/AclSubject.d.ts +4 -0
  2204. package/types/ui/registry/units/common/types/components/AclSubjectSuggest.d.ts +11 -0
  2205. package/types/ui/registry/units/common/types/components/ActionPanelEntrySelect.d.ts +3 -0
  2206. package/types/ui/registry/units/common/types/components/AsideHeaderAdapter.d.ts +4 -0
  2207. package/types/ui/registry/units/common/types/components/ButtonFavorite.d.ts +5 -0
  2208. package/types/ui/registry/units/common/types/components/DialogAddParticipants.d.ts +11 -0
  2209. package/types/ui/registry/units/common/types/components/DialogEntryDescription.d.ts +13 -0
  2210. package/types/ui/registry/units/common/types/components/DialogImageWidgetLinkHint.d.ts +4 -0
  2211. package/types/ui/registry/units/common/types/components/DialogRelatedEntitiesRadioHint.d.ts +5 -0
  2212. package/types/ui/registry/units/common/types/components/DialogShare.d.ts +20 -0
  2213. package/types/ui/registry/units/common/types/components/DownloadScreenshot.d.ts +6 -0
  2214. package/types/ui/registry/units/common/types/components/EntryBreadcrumbs.d.ts +16 -0
  2215. package/types/ui/registry/units/common/types/components/IamAccessDialog.d.ts +16 -0
  2216. package/types/ui/registry/units/common/types/components/LoginById.d.ts +5 -0
  2217. package/types/ui/registry/units/common/types/components/MarkdownControl.d.ts +7 -0
  2218. package/types/ui/registry/units/common/types/components/MarkupShareLink.d.ts +5 -0
  2219. package/types/ui/registry/units/common/types/components/MarkupUserInfo.d.ts +6 -0
  2220. package/types/ui/registry/units/common/types/components/MobileHeaderComponent.d.ts +7 -0
  2221. package/types/ui/registry/units/common/types/components/OAuthTokenButton.d.ts +6 -0
  2222. package/types/ui/registry/units/common/types/components/PlaceholderIllustrationImage.d.ts +7 -0
  2223. package/types/ui/registry/units/common/types/components/RangeInputPicker.d.ts +1 -0
  2224. package/types/ui/registry/units/common/types/components/ReportButton.d.ts +11 -0
  2225. package/types/ui/registry/units/common/types/components/UserAvatarById.d.ts +5 -0
  2226. package/types/ui/registry/units/common/types/components/YfmWrapper.d.ts +10 -0
  2227. package/types/ui/registry/units/common/types/functions/GetUsersById.d.ts +2 -0
  2228. package/types/ui/registry/units/common/types/functions/checkCreateEntryButtonVisibility.d.ts +1 -0
  2229. package/types/ui/registry/units/common/types/functions/fetchDocumentation.d.ts +9 -0
  2230. package/types/ui/registry/units/common/types/functions/fetchFunctionsDocumentation.d.ts +4 -0
  2231. package/types/ui/registry/units/common/types/functions/getAdditionalChartkitErrorContent.d.ts +8 -0
  2232. package/types/ui/registry/units/common/types/functions/getBasicActionPanelItems.d.ts +6 -0
  2233. package/types/ui/registry/units/common/types/functions/getFunctionsDocumentation.d.ts +35 -0
  2234. package/types/ui/registry/units/common/types/functions/getGloballyEntrySettings.d.ts +4 -0
  2235. package/types/ui/registry/units/common/types/functions/getHeaderWithoutHelpCenterErrorContentTypes.d.ts +1 -0
  2236. package/types/ui/registry/units/common/types/functions/getHeaderWithoutNavigationErrorContentTypes.d.ts +1 -0
  2237. package/types/ui/registry/units/common/types/functions/getIllustrationStore.d.ts +2 -0
  2238. package/types/ui/registry/units/common/types/functions/getImageNameFromErrorContentType.d.ts +2 -0
  2239. package/types/ui/registry/units/common/types/functions/getLoginById.d.ts +2 -0
  2240. package/types/ui/registry/units/common/types/functions/getLogoIcon.d.ts +4 -0
  2241. package/types/ui/registry/units/common/types/functions/getNotAuthenticatedErrorContentTypes.d.ts +1 -0
  2242. package/types/ui/registry/units/common/types/functions/getShouldShowAIAssistant.d.ts +4 -0
  2243. package/types/ui/registry/units/common/types/functions/getUIEntryRoute.d.ts +8 -0
  2244. package/types/ui/registry/units/common/types/functions/isValidLogoUrl.d.ts +5 -0
  2245. package/types/ui/registry/units/common/types/functions/openDialogOrganizationInvite.d.ts +2 -0
  2246. package/types/ui/registry/units/common/types/functions/openDialogOrganizationInviteUsers.d.ts +2 -0
  2247. package/types/ui/registry/units/common/types/functions/renderDialogRelatedEntitiesAlertHint.d.ts +6 -0
  2248. package/types/ui/registry/units/common/types/functions/resolveUsersByIds.d.ts +3 -0
  2249. package/types/ui/registry/units/common/types/functions/setEntryKey.d.ts +7 -0
  2250. package/types/ui/registry/units/common/types/functions/useSubjectsListId.d.ts +4 -0
  2251. package/types/ui/registry/units/connections/components-map.d.ts +7 -0
  2252. package/types/ui/registry/units/connections/functions-map.d.ts +19 -0
  2253. package/types/ui/registry/units/connections/index.d.ts +66 -0
  2254. package/types/ui/registry/units/connections/register.d.ts +1 -0
  2255. package/types/ui/registry/units/connections/types/CreateEditorChartButtonProps.d.ts +5 -0
  2256. package/types/ui/registry/units/connections/types/PreparedRowItem.d.ts +4 -0
  2257. package/types/ui/registry/units/connections/types/beforeConnectorFormUnmount.d.ts +2 -0
  2258. package/types/ui/registry/units/connections/types/getConnectionItemRender.d.ts +2 -0
  2259. package/types/ui/registry/units/connections/types/getFakeEntry.d.ts +3 -0
  2260. package/types/ui/registry/units/connections/types/getIsShowCreateConnectionButton.d.ts +2 -0
  2261. package/types/ui/registry/units/connections/types/getMockedForm.d.ts +4 -0
  2262. package/types/ui/registry/units/connections/types/getNewConnectionDestination.d.ts +4 -0
  2263. package/types/ui/registry/units/connections/types/getRenderConnectionSettingsPopup.d.ts +2 -0
  2264. package/types/ui/registry/units/dash/components-map.d.ts +13 -0
  2265. package/types/ui/registry/units/dash/functions-map.d.ts +17 -0
  2266. package/types/ui/registry/units/dash/index.d.ts +77 -0
  2267. package/types/ui/registry/units/dash/register.d.ts +1 -0
  2268. package/types/ui/registry/units/dash/types/BeforeCloseDialogItem.d.ts +3 -0
  2269. package/types/ui/registry/units/dash/types/BeforeOpenDialogItem.d.ts +4 -0
  2270. package/types/ui/registry/units/dash/types/DashActionPanelAdditionalButtons.d.ts +5 -0
  2271. package/types/ui/registry/units/dash/types/DialogDashOtherSettingsPrepend.d.ts +6 -0
  2272. package/types/ui/registry/units/dash/types/GetExtendedItemData.d.ts +4 -0
  2273. package/types/ui/registry/units/datasets/functions-map.d.ts +6 -0
  2274. package/types/ui/registry/units/datasets/index.d.ts +19 -0
  2275. package/types/ui/registry/units/datasets/register.d.ts +1 -0
  2276. package/types/ui/registry/units/datasets/types/functions/getRenderDatasetSettingsPopup.d.ts +2 -0
  2277. package/types/ui/registry/units/datasets/types/functions/renderRLSDialog.d.ts +3 -0
  2278. package/types/ui/registry/units/docs/functions-map.d.ts +3 -0
  2279. package/types/ui/registry/units/docs/index.d.ts +23 -0
  2280. package/types/ui/registry/units/docs/register.d.ts +1 -0
  2281. package/types/ui/registry/units/editor/components-map.d.ts +5 -0
  2282. package/types/ui/registry/units/editor/constants/components.d.ts +1 -0
  2283. package/types/ui/registry/units/editor/constants/functions.d.ts +1 -0
  2284. package/types/ui/registry/units/editor/functions-map.d.ts +6 -0
  2285. package/types/ui/registry/units/editor/index.d.ts +35 -0
  2286. package/types/ui/registry/units/editor/types/components/ActionPanelButton.d.ts +9 -0
  2287. package/types/ui/registry/units/editor/types/functions/fetchEditorDocumentation.d.ts +4 -0
  2288. package/types/ui/registry/units/editor/types/functions/getEditorTemplates.d.ts +10 -0
  2289. package/types/ui/registry/units/fieldEditor/components-map.d.ts +21 -0
  2290. package/types/ui/registry/units/fieldEditor/index.d.ts +24 -0
  2291. package/types/ui/registry/units/main/components-map.d.ts +4 -0
  2292. package/types/ui/registry/units/main/index.d.ts +23 -0
  2293. package/types/ui/registry/units/main/register.d.ts +1 -0
  2294. package/types/ui/registry/units/preview/components-map.d.ts +4 -0
  2295. package/types/ui/registry/units/preview/index.d.ts +23 -0
  2296. package/types/ui/registry/units/preview/register.d.ts +1 -0
  2297. package/types/ui/registry/units/public/components-map.d.ts +5 -0
  2298. package/types/ui/registry/units/public/index.d.ts +24 -0
  2299. package/types/ui/registry/units/public/register.d.ts +1 -0
  2300. package/types/ui/registry/units/public/types/components/Header.d.ts +4 -0
  2301. package/types/ui/registry/units/ql/components-map.d.ts +5 -0
  2302. package/types/ui/registry/units/ql/functions-map.d.ts +5 -0
  2303. package/types/ui/registry/units/ql/index.d.ts +36 -0
  2304. package/types/ui/registry/units/ql/register.d.ts +1 -0
  2305. package/types/ui/registry/units/wizard/components-map.d.ts +5 -0
  2306. package/types/ui/registry/units/wizard/index.d.ts +24 -0
  2307. package/types/ui/registry/units/wizard/register.d.ts +1 -0
  2308. package/types/ui/registry/units/wizard/types/components/WizardActionPanelExtension.d.ts +3 -0
  2309. package/types/ui/registry/units/workbooks/components-map.d.ts +6 -0
  2310. package/types/ui/registry/units/workbooks/functions-map.d.ts +30 -0
  2311. package/types/ui/registry/units/workbooks/index.d.ts +98 -0
  2312. package/types/ui/registry/units/workbooks/register.d.ts +1 -0
  2313. package/types/ui/registry/units/workbooks/types/components/workbookTableRowExtendedContent.d.ts +7 -0
  2314. package/types/ui/registry/units/workbooks/types/functions/checkWbCreateEntryButtonVisibility.d.ts +3 -0
  2315. package/types/ui/registry/utils/components-registry.d.ts +11 -0
  2316. package/types/ui/registry/utils/register-app-plugins.d.ts +5 -0
  2317. package/types/ui/store/actions/asideHeader/index.d.ts +46 -0
  2318. package/types/ui/store/actions/asideHeader/navigation.d.ts +15 -0
  2319. package/types/ui/store/actions/chartWidget.d.ts +38 -0
  2320. package/types/ui/store/actions/collectionsStructure/common.d.ts +531 -0
  2321. package/types/ui/store/actions/collectionsStructure/export.d.ts +108 -0
  2322. package/types/ui/store/actions/collectionsStructure/index.d.ts +10 -0
  2323. package/types/ui/store/actions/collectionsStructure/showCollectionEntityErrorToast.d.ts +2 -0
  2324. package/types/ui/store/actions/collectionsStructure/templates.d.ts +23 -0
  2325. package/types/ui/store/actions/colorPaletteEditor.d.ts +23 -0
  2326. package/types/ui/store/actions/controlDialog/controlDialog.d.ts +123 -0
  2327. package/types/ui/store/actions/controlDialog/helpers.d.ts +12 -0
  2328. package/types/ui/store/actions/copyEntriesToWorkbook.d.ts +51 -0
  2329. package/types/ui/store/actions/dialog.d.ts +75 -0
  2330. package/types/ui/store/actions/editHistory.d.ts +66 -0
  2331. package/types/ui/store/actions/entryContent.d.ts +74 -0
  2332. package/types/ui/store/actions/iamAccessDialog.d.ts +143 -0
  2333. package/types/ui/store/actions/landing.d.ts +8 -0
  2334. package/types/ui/store/actions/localStorageFallback.d.ts +11 -0
  2335. package/types/ui/store/actions/migrationToWorkbook.d.ts +65 -0
  2336. package/types/ui/store/actions/openDialogTypes.d.ts +65 -0
  2337. package/types/ui/store/actions/toaster.d.ts +16 -0
  2338. package/types/ui/store/actions/user.d.ts +30 -0
  2339. package/types/ui/store/actions/usersByIds.d.ts +2 -0
  2340. package/types/ui/store/configure.d.ts +4 -0
  2341. package/types/ui/store/constants/collectionsStructure.d.ts +80 -0
  2342. package/types/ui/store/constants/controlDialog.d.ts +50 -0
  2343. package/types/ui/store/constants/copyEntriesToWorkbook.d.ts +10 -0
  2344. package/types/ui/store/constants/editHistory.d.ts +5 -0
  2345. package/types/ui/store/constants/iamAccessDialog.d.ts +17 -0
  2346. package/types/ui/store/constants/migrationToWorkbook.d.ts +13 -0
  2347. package/types/ui/store/index.d.ts +7 -0
  2348. package/types/ui/store/reducer-registry.d.ts +19 -0
  2349. package/types/ui/store/reducers/asideHeader.d.ts +7 -0
  2350. package/types/ui/store/reducers/collectionsStructure.d.ts +128 -0
  2351. package/types/ui/store/reducers/colorPaletteEditor.d.ts +8 -0
  2352. package/types/ui/store/reducers/controlDialog/controlDialog.d.ts +58 -0
  2353. package/types/ui/store/reducers/controlDialog/helpers.d.ts +18 -0
  2354. package/types/ui/store/reducers/copyEntriesToWorkbook.d.ts +36 -0
  2355. package/types/ui/store/reducers/dialog.d.ts +9 -0
  2356. package/types/ui/store/reducers/editHistory.d.ts +19 -0
  2357. package/types/ui/store/reducers/entryContent.d.ts +14 -0
  2358. package/types/ui/store/reducers/iamAccessDialog.d.ts +33 -0
  2359. package/types/ui/store/reducers/index.d.ts +280 -0
  2360. package/types/ui/store/reducers/landing.d.ts +10 -0
  2361. package/types/ui/store/reducers/localStorageFallback.d.ts +3 -0
  2362. package/types/ui/store/reducers/migrationToWorkbook.d.ts +25 -0
  2363. package/types/ui/store/reducers/user.d.ts +4 -0
  2364. package/types/ui/store/selectors/asideHeader.d.ts +11 -0
  2365. package/types/ui/store/selectors/collectionsStructure.d.ts +564 -0
  2366. package/types/ui/store/selectors/colorPaletteEditor.d.ts +14 -0
  2367. package/types/ui/store/selectors/controlDialog.d.ts +49 -0
  2368. package/types/ui/store/selectors/copyEntriesToWorkbook.d.ts +81 -0
  2369. package/types/ui/store/selectors/editHistory.d.ts +7 -0
  2370. package/types/ui/store/selectors/entryContent.d.ts +27 -0
  2371. package/types/ui/store/selectors/iamAccessDialog.d.ts +142 -0
  2372. package/types/ui/store/selectors/landing.d.ts +2 -0
  2373. package/types/ui/store/selectors/localStorageFallback.d.ts +2 -0
  2374. package/types/ui/store/selectors/migrationToWorkbook.d.ts +113 -0
  2375. package/types/ui/store/selectors/user.d.ts +47 -0
  2376. package/types/ui/store/toolkit/chartkit/api.d.ts +8 -0
  2377. package/types/ui/store/toolkit/chartkit/types.d.ts +4 -0
  2378. package/types/ui/store/toolkit/index.d.ts +1 -0
  2379. package/types/ui/store/typings/asideHeader.d.ts +23 -0
  2380. package/types/ui/store/typings/controlDialog.d.ts +129 -0
  2381. package/types/ui/store/typings/entryContent.d.ts +19 -0
  2382. package/types/ui/store/typings/iamAccessDialog.d.ts +7 -0
  2383. package/types/ui/store/typings/user.d.ts +12 -0
  2384. package/types/ui/store/utils/asideHeader.d.ts +3 -0
  2385. package/types/ui/store/utils/collectionStructure.d.ts +14 -0
  2386. package/types/ui/store/utils/controlDialog.d.ts +44 -0
  2387. package/types/ui/store/utils/jdp.d.ts +5 -0
  2388. package/types/ui/store/utils/user.d.ts +3 -0
  2389. package/types/ui/typings/common.d.ts +38 -0
  2390. package/types/ui/typings/components.d.ts +7 -0
  2391. package/types/ui/typings/error.d.ts +25 -0
  2392. package/types/ui/typings/index.d.ts +3 -0
  2393. package/types/ui/units/auth/components/AuthPage/AuthPage.d.ts +7 -0
  2394. package/types/ui/units/auth/components/AuthPage/useAuthPageInit.d.ts +1 -0
  2395. package/types/ui/units/auth/components/ChangePasswordDialog/ChangePasswordDialog.d.ts +9 -0
  2396. package/types/ui/units/auth/components/ChangeUserRoleDialog/ChangeUserRoleDialog.d.ts +10 -0
  2397. package/types/ui/units/auth/components/DeleteUserDialog/DeleteUserDialog.d.ts +8 -0
  2398. package/types/ui/units/auth/components/EditUserProfileDialog/EditUserProfileDialog.d.ts +11 -0
  2399. package/types/ui/units/auth/components/LoginById/LoginById.d.ts +2 -0
  2400. package/types/ui/units/auth/components/LoginById/utils.d.ts +2 -0
  2401. package/types/ui/units/auth/components/Logout/Logout.d.ts +1 -0
  2402. package/types/ui/units/auth/components/Reload/Reload.d.ts +1 -0
  2403. package/types/ui/units/auth/components/Signin/Signin.d.ts +2 -0
  2404. package/types/ui/units/auth/components/Signin/components/Login.d.ts +5 -0
  2405. package/types/ui/units/auth/components/Signin/components/Password.d.ts +5 -0
  2406. package/types/ui/units/auth/components/Signup/Signup.d.ts +1 -0
  2407. package/types/ui/units/auth/components/Signup/components/Back.d.ts +1 -0
  2408. package/types/ui/units/auth/components/UserProfile/UserProfile.d.ts +14 -0
  2409. package/types/ui/units/auth/components/UserRoleLabel/UserRoleLabel.d.ts +8 -0
  2410. package/types/ui/units/auth/components/formControls/CustomRow.d.ts +7 -0
  2411. package/types/ui/units/auth/components/formControls/Email.d.ts +2 -0
  2412. package/types/ui/units/auth/components/formControls/FirstName.d.ts +2 -0
  2413. package/types/ui/units/auth/components/formControls/GeneratePasswordButton.d.ts +3 -0
  2414. package/types/ui/units/auth/components/formControls/LastName.d.ts +2 -0
  2415. package/types/ui/units/auth/components/formControls/Login.d.ts +2 -0
  2416. package/types/ui/units/auth/components/formControls/Password.d.ts +8 -0
  2417. package/types/ui/units/auth/components/formControls/RepeatPassword.d.ts +2 -0
  2418. package/types/ui/units/auth/components/formControls/Roles.d.ts +2 -0
  2419. package/types/ui/units/auth/components/formControls/RowButton.d.ts +2 -0
  2420. package/types/ui/units/auth/components/formControls/types.d.ts +8 -0
  2421. package/types/ui/units/auth/components/formControls/utils.d.ts +1 -0
  2422. package/types/ui/units/auth/constants/errors.d.ts +3 -0
  2423. package/types/ui/units/auth/constants/routes.d.ts +7 -0
  2424. package/types/ui/units/auth/containers/UserProfile/UserProfile.d.ts +4 -0
  2425. package/types/ui/units/auth/hooks/useClearReloadedQuery.d.ts +1 -0
  2426. package/types/ui/units/auth/hooks/useUserById.d.ts +10 -0
  2427. package/types/ui/units/auth/store/actions/common.d.ts +15 -0
  2428. package/types/ui/units/auth/store/actions/index.d.ts +6 -0
  2429. package/types/ui/units/auth/store/actions/logout.d.ts +9 -0
  2430. package/types/ui/units/auth/store/actions/signin.d.ts +20 -0
  2431. package/types/ui/units/auth/store/actions/userInfoForm.d.ts +32 -0
  2432. package/types/ui/units/auth/store/actions/userProfile.d.ts +95 -0
  2433. package/types/ui/units/auth/store/actions/usersByIds.d.ts +21 -0
  2434. package/types/ui/units/auth/store/constants/common.d.ts +2 -0
  2435. package/types/ui/units/auth/store/constants/signin.d.ts +1 -0
  2436. package/types/ui/units/auth/store/constants/userInfoForm.d.ts +4 -0
  2437. package/types/ui/units/auth/store/constants/userProfile.d.ts +17 -0
  2438. package/types/ui/units/auth/store/constants/usersByIds.d.ts +2 -0
  2439. package/types/ui/units/auth/store/reducers/common.d.ts +6 -0
  2440. package/types/ui/units/auth/store/reducers/index.d.ts +41 -0
  2441. package/types/ui/units/auth/store/reducers/signin.d.ts +6 -0
  2442. package/types/ui/units/auth/store/reducers/userInfoForm.d.ts +8 -0
  2443. package/types/ui/units/auth/store/reducers/userProfile.d.ts +28 -0
  2444. package/types/ui/units/auth/store/reducers/usersByIds.d.ts +3 -0
  2445. package/types/ui/units/auth/store/selectors/common.d.ts +3 -0
  2446. package/types/ui/units/auth/store/selectors/signin.d.ts +5 -0
  2447. package/types/ui/units/auth/store/selectors/userInfoForm.d.ts +16 -0
  2448. package/types/ui/units/auth/store/selectors/userProfile.d.ts +9 -0
  2449. package/types/ui/units/auth/store/selectors/usersByIds.d.ts +14 -0
  2450. package/types/ui/units/auth/store/typings/userInfoForm.d.ts +11 -0
  2451. package/types/ui/units/auth/store/typings/usersByIds.d.ts +39 -0
  2452. package/types/ui/units/auth/utils/fields.d.ts +1 -0
  2453. package/types/ui/units/auth/utils/getUsersRoles.d.ts +1 -0
  2454. package/types/ui/units/auth/utils/userProfile.d.ts +4 -0
  2455. package/types/ui/units/auth/utils/validation.d.ts +39 -0
  2456. package/types/ui/units/collections/components/CollectionActions/CollectionActions.d.ts +11 -0
  2457. package/types/ui/units/collections/components/CollectionActions/components/SharedEntryNotice/SharedEntryNotice.d.ts +1 -0
  2458. package/types/ui/units/collections/components/CollectionActions/index.d.ts +1 -0
  2459. package/types/ui/units/collections/components/CollectionActions/utils.d.ts +23 -0
  2460. package/types/ui/units/collections/components/CollectionBatchPanel/CollectionBatchPanel.d.ts +9 -0
  2461. package/types/ui/units/collections/components/CollectionContent/CollectionContent.d.ts +31 -0
  2462. package/types/ui/units/collections/components/CollectionContent/hooks/index.d.ts +1 -0
  2463. package/types/ui/units/collections/components/CollectionContent/hooks/useActions.d.ts +8 -0
  2464. package/types/ui/units/collections/components/CollectionContent/index.d.ts +1 -0
  2465. package/types/ui/units/collections/components/CollectionContent/utils.d.ts +8 -0
  2466. package/types/ui/units/collections/components/CollectionContentGrid/CollectionContentGrid.d.ts +12 -0
  2467. package/types/ui/units/collections/components/CollectionContentGrid/CollectionItemIcon.d.ts +6 -0
  2468. package/types/ui/units/collections/components/CollectionContentGrid/index.d.ts +1 -0
  2469. package/types/ui/units/collections/components/CollectionContentTable/CollectionContentTable.d.ts +14 -0
  2470. package/types/ui/units/collections/components/CollectionContentTable/TableComponents/CollectionCheckboxCell.d.ts +10 -0
  2471. package/types/ui/units/collections/components/CollectionContentTable/TableComponents/CollectionLinkRow.d.ts +10 -0
  2472. package/types/ui/units/collections/components/CollectionContentTable/TableComponents/CollectionTitleCell.d.ts +6 -0
  2473. package/types/ui/units/collections/components/CollectionContentTable/helpers.d.ts +7 -0
  2474. package/types/ui/units/collections/components/CollectionContentTable/index.d.ts +1 -0
  2475. package/types/ui/units/collections/components/CollectionPage/CollectionPage.d.ts +2 -0
  2476. package/types/ui/units/collections/components/CollectionPage/hooks/index.d.ts +5 -0
  2477. package/types/ui/units/collections/components/CollectionPage/hooks/useCreateWorkbookDialogHandlers.d.ts +2 -0
  2478. package/types/ui/units/collections/components/CollectionPage/hooks/useData.d.ts +14 -0
  2479. package/types/ui/units/collections/components/CollectionPage/hooks/useFilters.d.ts +11 -0
  2480. package/types/ui/units/collections/components/CollectionPage/hooks/useLayout.d.ts +22 -0
  2481. package/types/ui/units/collections/components/CollectionPage/hooks/useOpenCreateWorkbookDialog.d.ts +7 -0
  2482. package/types/ui/units/collections/components/CollectionPage/hooks/useSelection.d.ts +28 -0
  2483. package/types/ui/units/collections/components/CollectionPage/hooks/useViewMode.d.ts +12 -0
  2484. package/types/ui/units/collections/components/CollectionPage/index.d.ts +1 -0
  2485. package/types/ui/units/collections/components/CollectionPage/utils.d.ts +9 -0
  2486. package/types/ui/units/collections/components/constants.d.ts +111 -0
  2487. package/types/ui/units/collections/components/helpers.d.ts +6 -0
  2488. package/types/ui/units/collections/components/types.d.ts +7 -0
  2489. package/types/ui/units/collections/hooks/useRefreshPageAfterImport.d.ts +9 -0
  2490. package/types/ui/units/collections/store/actions/index.d.ts +125 -0
  2491. package/types/ui/units/collections/store/constants/index.d.ts +16 -0
  2492. package/types/ui/units/collections/store/reducers/index.d.ts +21 -0
  2493. package/types/ui/units/collections/store/selectors/index.d.ts +82 -0
  2494. package/types/ui/units/collections-navigation/components/CollectionBreadcrumbs/CollectionBreadcrumbs.d.ts +14 -0
  2495. package/types/ui/units/collections-navigation/components/CollectionBreadcrumbs/index.d.ts +2 -0
  2496. package/types/ui/units/collections-navigation/components/CollectionBreadcrumbs/utils.d.ts +27 -0
  2497. package/types/ui/units/collections-navigation/components/CollectionsNavigationApp/CollectionsNavigationApp.d.ts +1 -0
  2498. package/types/ui/units/collections-navigation/components/CollectionsNavigationApp/index.d.ts +1 -0
  2499. package/types/ui/units/collections-navigation/components/CollectionsNavigationLayout/CollectionsNavigationLayout.d.ts +9 -0
  2500. package/types/ui/units/collections-navigation/components/CollectionsNavigationLayout/index.d.ts +1 -0
  2501. package/types/ui/units/collections-navigation/constants/index.d.ts +2 -0
  2502. package/types/ui/units/collections-navigation/contexts/LayoutContext.d.ts +31 -0
  2503. package/types/ui/units/collections-navigation/store/actions/index.d.ts +91 -0
  2504. package/types/ui/units/collections-navigation/store/constants/index.d.ts +5 -0
  2505. package/types/ui/units/collections-navigation/store/reducers/index.d.ts +10 -0
  2506. package/types/ui/units/collections-navigation/store/selectors/index.d.ts +80 -0
  2507. package/types/ui/units/collections-navigation/utils/index.d.ts +2 -0
  2508. package/types/ui/units/connections/components/ConnectorForm/ConnectorForm.d.ts +7 -0
  2509. package/types/ui/units/connections/components/ConnectorForm/ErrorActions/ErrorActions.d.ts +8 -0
  2510. package/types/ui/units/connections/components/ConnectorForm/FormActions/CheckParamsButton/CheckParamsButton.d.ts +9 -0
  2511. package/types/ui/units/connections/components/ConnectorForm/FormActions/FormActions.d.ts +35 -0
  2512. package/types/ui/units/connections/components/ConnectorForm/FormActions/SubmitButton/SubmitButton.d.ts +6 -0
  2513. package/types/ui/units/connections/components/ConnectorForm/FormActions/selectors.d.ts +3 -0
  2514. package/types/ui/units/connections/components/ConnectorForm/FormActions/utils.d.ts +3 -0
  2515. package/types/ui/units/connections/components/ConnectorForm/FormRow/FormItem.d.ts +5 -0
  2516. package/types/ui/units/connections/components/ConnectorForm/FormRow/FormRow.d.ts +56 -0
  2517. package/types/ui/units/connections/components/ConnectorForm/FormRow/PreparedRowItem.d.ts +2 -0
  2518. package/types/ui/units/connections/components/ConnectorForm/components/Checkbox/Checkbox.d.ts +29 -0
  2519. package/types/ui/units/connections/components/ConnectorForm/components/Datepicker/Datepicker.d.ts +518 -0
  2520. package/types/ui/units/connections/components/ConnectorForm/components/Description/Description.d.ts +4 -0
  2521. package/types/ui/units/connections/components/ConnectorForm/components/FileInput/FileInput.d.ts +602 -0
  2522. package/types/ui/units/connections/components/ConnectorForm/components/FileInput/utils.d.ts +6 -0
  2523. package/types/ui/units/connections/components/ConnectorForm/components/Input/Input.d.ts +549 -0
  2524. package/types/ui/units/connections/components/ConnectorForm/components/KeyValue/KeyValue.d.ts +2 -0
  2525. package/types/ui/units/connections/components/ConnectorForm/components/KeyValue/hooks.d.ts +24 -0
  2526. package/types/ui/units/connections/components/ConnectorForm/components/KeyValue/types.d.ts +8 -0
  2527. package/types/ui/units/connections/components/ConnectorForm/components/Label/Label.d.ts +4 -0
  2528. package/types/ui/units/connections/components/ConnectorForm/components/MarkdownItem/MarkdownItem.d.ts +29 -0
  2529. package/types/ui/units/connections/components/ConnectorForm/components/PlainText/PlainText.d.ts +6 -0
  2530. package/types/ui/units/connections/components/ConnectorForm/components/RadioButton/RadioButton.d.ts +487 -0
  2531. package/types/ui/units/connections/components/ConnectorForm/components/RadioGroup/RadioGroup.d.ts +29 -0
  2532. package/types/ui/units/connections/components/ConnectorForm/components/Select/Select.d.ts +550 -0
  2533. package/types/ui/units/connections/components/ConnectorForm/components/index.d.ts +13 -0
  2534. package/types/ui/units/connections/components/ConnectorForm/components/withControlWrap/withControlWrap.d.ts +64 -0
  2535. package/types/ui/units/connections/components/ConnectorForm/preparedRows/CacheTtlRow/CacheTtlRow.d.ts +29 -0
  2536. package/types/ui/units/connections/components/ConnectorForm/preparedRows/CollapseRow/CollapseRow.d.ts +25 -0
  2537. package/types/ui/units/connections/components/ConnectorForm/preparedRows/RawSQLLevelRow/RawSQLLevelRow.d.ts +4 -0
  2538. package/types/ui/units/connections/components/ConnectorForm/preparedRows/index.d.ts +3 -0
  2539. package/types/ui/units/connections/components/ConnectorForm/utils/index.d.ts +9 -0
  2540. package/types/ui/units/connections/components/ConnectorsList/ConnectorsList.d.ts +9 -0
  2541. package/types/ui/units/connections/components/ConnectorsList/ListItem.d.ts +43 -0
  2542. package/types/ui/units/connections/components/ConnectorsList/utils/index.d.ts +8 -0
  2543. package/types/ui/units/connections/components/ConnectorsList/utils/listItemRender.d.ts +2 -0
  2544. package/types/ui/units/connections/components/ErrorView/ErrorView.d.ts +21 -0
  2545. package/types/ui/units/connections/components/FormTitle/FormTitle.d.ts +11 -0
  2546. package/types/ui/units/connections/components/Page/ConnPanelActions.d.ts +9 -0
  2547. package/types/ui/units/connections/components/Page/Page.d.ts +2 -0
  2548. package/types/ui/units/connections/components/Page/components/ConnSettings.d.ts +4 -0
  2549. package/types/ui/units/connections/components/Page/components/CreateDatasetButton.d.ts +33 -0
  2550. package/types/ui/units/connections/components/Page/components/CreateQlChartButton.d.ts +24 -0
  2551. package/types/ui/units/connections/components/Page/components/DescriptionButton.d.ts +3 -0
  2552. package/types/ui/units/connections/components/Page/components/S3BasedConnButton.d.ts +28 -0
  2553. package/types/ui/units/connections/components/Page/components/UnloadConfirmation.d.ts +1 -0
  2554. package/types/ui/units/connections/components/Page/components/index.d.ts +5 -0
  2555. package/types/ui/units/connections/components/Page/constants.d.ts +2 -0
  2556. package/types/ui/units/connections/components/Page/filterContextMenuItems.d.ts +9 -0
  2557. package/types/ui/units/connections/components/Page/useAdditionalContextMenuItems.d.ts +11 -0
  2558. package/types/ui/units/connections/components/Page/useApiErrors.d.ts +12 -0
  2559. package/types/ui/units/connections/components/Page/utils.d.ts +11 -0
  2560. package/types/ui/units/connections/components/Router/Router.d.ts +9 -0
  2561. package/types/ui/units/connections/components/WrappedLoader/WrappedLoader.d.ts +6 -0
  2562. package/types/ui/units/connections/components/custom-forms/ChOverYT/ChOverYT.d.ts +6 -0
  2563. package/types/ui/units/connections/components/custom-forms/ChOverYT/ChoicePage.d.ts +6 -0
  2564. package/types/ui/units/connections/components/custom-forms/ChOverYT/ConnectorCard.d.ts +8 -0
  2565. package/types/ui/units/connections/components/custom-forms/ChOverYT/Notification.d.ts +5 -0
  2566. package/types/ui/units/connections/components/custom-forms/ChOverYT/constants.d.ts +5 -0
  2567. package/types/ui/units/connections/components/custom-forms/File/File.d.ts +32 -0
  2568. package/types/ui/units/connections/components/custom-forms/File/components/AddFileButton.d.ts +1 -0
  2569. package/types/ui/units/connections/components/custom-forms/File/components/FilesList.d.ts +10 -0
  2570. package/types/ui/units/connections/components/custom-forms/File/components/ListItem/FileItem.d.ts +3 -0
  2571. package/types/ui/units/connections/components/custom-forms/File/components/ListItem/ListItem.d.ts +3 -0
  2572. package/types/ui/units/connections/components/custom-forms/File/components/ListItem/SourceItem.d.ts +2 -0
  2573. package/types/ui/units/connections/components/custom-forms/File/components/ReplaceSourceButton.d.ts +1 -0
  2574. package/types/ui/units/connections/components/custom-forms/File/components/Workspace/ColumnFilter.d.ts +6 -0
  2575. package/types/ui/units/connections/components/custom-forms/File/components/Workspace/FileSettings.d.ts +8 -0
  2576. package/types/ui/units/connections/components/custom-forms/File/components/Workspace/TypeSelect.d.ts +8 -0
  2577. package/types/ui/units/connections/components/custom-forms/File/components/Workspace/Workspace.d.ts +7 -0
  2578. package/types/ui/units/connections/components/custom-forms/File/components/index.d.ts +3 -0
  2579. package/types/ui/units/connections/components/custom-forms/File/context.d.ts +22 -0
  2580. package/types/ui/units/connections/components/custom-forms/File/types.d.ts +20 -0
  2581. package/types/ui/units/connections/components/custom-forms/File/useHandlers.d.ts +22 -0
  2582. package/types/ui/units/connections/components/custom-forms/File/utils.d.ts +25 -0
  2583. package/types/ui/units/connections/components/custom-forms/GSheetsV2/GSheetsV2.d.ts +1 -0
  2584. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/AddSection.d.ts +11 -0
  2585. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/GAuthButton.d.ts +7 -0
  2586. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/AdditionalTitleContent/index.d.ts +13 -0
  2587. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceInfoView.d.ts +10 -0
  2588. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/GSheetSourceView.d.ts +12 -0
  2589. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/UploadedGSheetView.d.ts +10 -0
  2590. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/GSheetListItemView/index.d.ts +10 -0
  2591. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/SheetsList.d.ts +16 -0
  2592. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/EmptyWorkspace.d.ts +1 -0
  2593. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceInfoWorkspace.d.ts +7 -0
  2594. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetSourceWorkspace.d.ts +11 -0
  2595. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/GSheetWorkspace.d.ts +7 -0
  2596. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/Workspace.d.ts +12 -0
  2597. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/Workspace/utils.d.ts +9 -0
  2598. package/types/ui/units/connections/components/custom-forms/GSheetsV2/components/index.d.ts +3 -0
  2599. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/ActionBarContainer.d.ts +1 -0
  2600. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/SheetsListContainer.d.ts +1 -0
  2601. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/WorkspaceContainer.d.ts +1 -0
  2602. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/index.d.ts +3 -0
  2603. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/useGSheetDialogs.d.ts +26 -0
  2604. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/useGoogleAuth.d.ts +4 -0
  2605. package/types/ui/units/connections/components/custom-forms/GSheetsV2/containers/utils.d.ts +6 -0
  2606. package/types/ui/units/connections/components/custom-forms/GSheetsV2/types.d.ts +7 -0
  2607. package/types/ui/units/connections/components/custom-forms/Yadocs/Yadocs.d.ts +1 -0
  2608. package/types/ui/units/connections/components/custom-forms/Yadocs/components/AdditionalTitleContent.d.ts +11 -0
  2609. package/types/ui/units/connections/components/custom-forms/Yadocs/components/DialogAddDocument/DialogAddDocument.d.ts +22 -0
  2610. package/types/ui/units/connections/components/custom-forms/Yadocs/components/DocsList.d.ts +14 -0
  2611. package/types/ui/units/connections/components/custom-forms/Yadocs/components/Workspace.d.ts +16 -0
  2612. package/types/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/UploadedYadocView.d.ts +11 -0
  2613. package/types/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceInfoView.d.ts +10 -0
  2614. package/types/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/YadocSourceView.d.ts +13 -0
  2615. package/types/ui/units/connections/components/custom-forms/Yadocs/components/YadocListItemView/index.d.ts +11 -0
  2616. package/types/ui/units/connections/components/custom-forms/Yadocs/components/index.d.ts +4 -0
  2617. package/types/ui/units/connections/components/custom-forms/Yadocs/containers/ActionBarContainer.d.ts +1 -0
  2618. package/types/ui/units/connections/components/custom-forms/Yadocs/containers/DocsListContainer.d.ts +1 -0
  2619. package/types/ui/units/connections/components/custom-forms/Yadocs/containers/WorkspaceContainer.d.ts +1 -0
  2620. package/types/ui/units/connections/components/custom-forms/Yadocs/containers/index.d.ts +3 -0
  2621. package/types/ui/units/connections/components/custom-forms/Yadocs/containers/useYadocsDialogs.d.ts +26 -0
  2622. package/types/ui/units/connections/components/custom-forms/Yadocs/types.d.ts +4 -0
  2623. package/types/ui/units/connections/components/custom-forms/components/ButtonLogout/ButtonLogout.d.ts +7 -0
  2624. package/types/ui/units/connections/components/custom-forms/components/ColumnFilter/ColumnFilter.d.ts +6 -0
  2625. package/types/ui/units/connections/components/custom-forms/components/ColumnsHeaderSwitcher/ColumnsHeaderSwitcher.d.ts +6 -0
  2626. package/types/ui/units/connections/components/custom-forms/components/DialogWithInput/DialogWithInput.d.ts +2 -0
  2627. package/types/ui/units/connections/components/custom-forms/components/DialogWithInput/index.d.ts +6 -0
  2628. package/types/ui/units/connections/components/custom-forms/components/DialogWithInput/types.d.ts +22 -0
  2629. package/types/ui/units/connections/components/custom-forms/components/ListItem/ActionDeleteView.d.ts +4 -0
  2630. package/types/ui/units/connections/components/custom-forms/components/ListItem/ActionErrorView.d.ts +4 -0
  2631. package/types/ui/units/connections/components/custom-forms/components/ListItem/ActionMoreView.d.ts +3 -0
  2632. package/types/ui/units/connections/components/custom-forms/components/ListItem/ListItem.d.ts +2 -0
  2633. package/types/ui/units/connections/components/custom-forms/components/ListItem/ListItemActions.d.ts +6 -0
  2634. package/types/ui/units/connections/components/custom-forms/components/ListItem/types.d.ts +25 -0
  2635. package/types/ui/units/connections/components/custom-forms/components/index.d.ts +6 -0
  2636. package/types/ui/units/connections/components/custom-forms/hooks/useFileSourceTableWidgetData.d.ts +18 -0
  2637. package/types/ui/units/connections/components/custom-forms/index.d.ts +4 -0
  2638. package/types/ui/units/connections/components/custom-forms/utils/render.d.ts +12 -0
  2639. package/types/ui/units/connections/components/dialogs/Confirm/Confirm.d.ts +2 -0
  2640. package/types/ui/units/connections/components/dialogs/Confirm/index.d.ts +6 -0
  2641. package/types/ui/units/connections/components/dialogs/Confirm/types.d.ts +10 -0
  2642. package/types/ui/units/connections/components/dialogs/CreateConnection/CreateConnection.d.ts +9 -0
  2643. package/types/ui/units/connections/components/dialogs/CreateConnectionInWbOrCollection/CreateConnectionInWbOrCollection.d.ts +11 -0
  2644. package/types/ui/units/connections/components/dialogs/S3Source/DialogS3Source.d.ts +2 -0
  2645. package/types/ui/units/connections/components/dialogs/S3Source/ListHeader.d.ts +10 -0
  2646. package/types/ui/units/connections/components/dialogs/S3Source/ListItem.d.ts +9 -0
  2647. package/types/ui/units/connections/components/dialogs/S3Source/index.d.ts +6 -0
  2648. package/types/ui/units/connections/components/dialogs/S3Source/types.d.ts +12 -0
  2649. package/types/ui/units/connections/components/dialogs/S3Source/utils.d.ts +13 -0
  2650. package/types/ui/units/connections/components/dialogs/index.d.ts +4 -0
  2651. package/types/ui/units/connections/components/hooks/index.d.ts +1 -0
  2652. package/types/ui/units/connections/components/hooks/useCreationHandler/index.d.ts +10 -0
  2653. package/types/ui/units/connections/components/index.d.ts +9 -0
  2654. package/types/ui/units/connections/constants/form.d.ts +43 -0
  2655. package/types/ui/units/connections/constants/index.d.ts +11 -0
  2656. package/types/ui/units/connections/constants/validation.d.ts +6 -0
  2657. package/types/ui/units/connections/index.d.ts +108 -0
  2658. package/types/ui/units/connections/store/actions/api.d.ts +103 -0
  2659. package/types/ui/units/connections/store/actions/base.d.ts +74 -0
  2660. package/types/ui/units/connections/store/actions/file.d.ts +13 -0
  2661. package/types/ui/units/connections/store/actions/gsheet/index.d.ts +14 -0
  2662. package/types/ui/units/connections/store/actions/gsheet/misc-actions.d.ts +29 -0
  2663. package/types/ui/units/connections/store/actions/gsheet/utils.d.ts +33 -0
  2664. package/types/ui/units/connections/store/actions/index.d.ts +34 -0
  2665. package/types/ui/units/connections/store/actions/s3-based.d.ts +9 -0
  2666. package/types/ui/units/connections/store/actions/yadoc/index.d.ts +14 -0
  2667. package/types/ui/units/connections/store/actions/yadoc/misc-actions.d.ts +29 -0
  2668. package/types/ui/units/connections/store/actions/yadoc/utils.d.ts +29 -0
  2669. package/types/ui/units/connections/store/constants.d.ts +2 -0
  2670. package/types/ui/units/connections/store/index.d.ts +4 -0
  2671. package/types/ui/units/connections/store/reducers/index.d.ts +3 -0
  2672. package/types/ui/units/connections/store/selectors/connection-data.d.ts +7 -0
  2673. package/types/ui/units/connections/store/selectors/form.d.ts +10 -0
  2674. package/types/ui/units/connections/store/selectors/gsheet.d.ts +8 -0
  2675. package/types/ui/units/connections/store/selectors/index.d.ts +26 -0
  2676. package/types/ui/units/connections/store/selectors/initial-form.d.ts +3 -0
  2677. package/types/ui/units/connections/store/selectors/inner-form.d.ts +4 -0
  2678. package/types/ui/units/connections/store/selectors/yadocs.d.ts +7 -0
  2679. package/types/ui/units/connections/store/typings/file.d.ts +34 -0
  2680. package/types/ui/units/connections/store/typings/gsheet.d.ts +74 -0
  2681. package/types/ui/units/connections/store/typings/index.d.ts +293 -0
  2682. package/types/ui/units/connections/store/typings/s3-based.d.ts +15 -0
  2683. package/types/ui/units/connections/store/typings/yadocs.d.ts +75 -0
  2684. package/types/ui/units/connections/store/utils/connectors.d.ts +12 -0
  2685. package/types/ui/units/connections/store/utils/entry.d.ts +2 -0
  2686. package/types/ui/units/connections/store/utils/file.d.ts +6 -0
  2687. package/types/ui/units/connections/store/utils/forms.d.ts +26 -0
  2688. package/types/ui/units/connections/store/utils/index.d.ts +5 -0
  2689. package/types/ui/units/connections/store/utils/validation.d.ts +11 -0
  2690. package/types/ui/units/connections/typings/common.d.ts +1 -0
  2691. package/types/ui/units/connections/typings/form.d.ts +7 -0
  2692. package/types/ui/units/connections/typings/index.d.ts +2 -0
  2693. package/types/ui/units/connections/utils/common.d.ts +4 -0
  2694. package/types/ui/units/connections/utils/connectors.d.ts +10 -0
  2695. package/types/ui/units/connections/utils/entry.d.ts +4 -0
  2696. package/types/ui/units/connections/utils/gsheet.d.ts +9 -0
  2697. package/types/ui/units/connections/utils/i18n.d.ts +2 -0
  2698. package/types/ui/units/connections/utils/index.d.ts +7 -0
  2699. package/types/ui/units/connections/utils/validation.d.ts +4 -0
  2700. package/types/ui/units/connections/utils/yadocs.d.ts +9 -0
  2701. package/types/ui/units/dash/components/DashActionPanel/DashActionPanel.d.ts +118 -0
  2702. package/types/ui/units/dash/components/DashActionPanel/DashActionPanelMobile.d.ts +10 -0
  2703. package/types/ui/units/dash/components/DashActionPanel/Description/Description.d.ts +8 -0
  2704. package/types/ui/units/dash/components/DashActionPanel/EditControls/EditControls.d.ts +25 -0
  2705. package/types/ui/units/dash/components/DashActionPanel/SaveDropDown/SaveDropDown.d.ts +8 -0
  2706. package/types/ui/units/dash/components/DashActionPanel/ViewControls/ViewControls.d.ts +14 -0
  2707. package/types/ui/units/dash/components/DashActionPanel/helpers.d.ts +9 -0
  2708. package/types/ui/units/dash/components/EmptyState/EmptyState.d.ts +12 -0
  2709. package/types/ui/units/dash/components/GlobalSelectorIcon/GlobalSelectorIcon.d.ts +9 -0
  2710. package/types/ui/units/dash/components/Loader/Loader.d.ts +8 -0
  2711. package/types/ui/units/dash/components/NavigationInput/InputLink/InputLink.d.ts +29 -0
  2712. package/types/ui/units/dash/components/NavigationInput/NavigationInput.d.ts +41 -0
  2713. package/types/ui/units/dash/components/ParamsSettings/ParamsRow.d.ts +15 -0
  2714. package/types/ui/units/dash/components/ParamsSettings/ParamsSettings.d.ts +2 -0
  2715. package/types/ui/units/dash/components/ParamsSettings/helpers.d.ts +8 -0
  2716. package/types/ui/units/dash/components/ParamsSettings/types.d.ts +15 -0
  2717. package/types/ui/units/dash/components/ShareButton/ShareButton.d.ts +15 -0
  2718. package/types/ui/units/dash/containers/App/App.d.ts +2 -0
  2719. package/types/ui/units/dash/containers/Body/Body.d.ts +25 -0
  2720. package/types/ui/units/dash/containers/Body/LazyBody.d.ts +3 -0
  2721. package/types/ui/units/dash/containers/Body/components/Content/Content.d.ts +49 -0
  2722. package/types/ui/units/dash/containers/Body/components/Content/hooks/useCopiedData.d.ts +5 -0
  2723. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/DashkitWrapper.d.ts +37 -0
  2724. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useConfig.d.ts +2 -0
  2725. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashKitContext.d.ts +14 -0
  2726. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDashkitRef.d.ts +3 -0
  2727. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useDataProviderContext.d.ts +3 -0
  2728. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useHashStates.d.ts +11 -0
  2729. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/getGearGlobalIcon.d.ts +9 -0
  2730. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/helpers.d.ts +5 -0
  2731. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/useOverlay/useOverlay.d.ts +23 -0
  2732. package/types/ui/units/dash/containers/Body/components/DashkitWrapper/hooks/usePreparedCopyItemOptions.d.ts +5 -0
  2733. package/types/ui/units/dash/containers/Body/context.d.ts +20 -0
  2734. package/types/ui/units/dash/containers/Dash/Dash.d.ts +146 -0
  2735. package/types/ui/units/dash/containers/DashError/DashError.d.ts +5 -0
  2736. package/types/ui/units/dash/containers/DashHotkes/DashHotkeys.d.ts +10 -0
  2737. package/types/ui/units/dash/containers/Dialogs/DialogEditQuery/DialogEditQuery.d.ts +5 -0
  2738. package/types/ui/units/dash/containers/Dialogs/DialogEditQuery/QueryEditor/QueryEditor.d.ts +7 -0
  2739. package/types/ui/units/dash/containers/Dialogs/DialogEditQuery/QueryError/QueryError.d.ts +6 -0
  2740. package/types/ui/units/dash/containers/Dialogs/DialogEditQuery/helpers/validate-query.d.ts +2 -0
  2741. package/types/ui/units/dash/containers/Dialogs/Dialogs.d.ts +2 -0
  2742. package/types/ui/units/dash/containers/Dialogs/Settings/Settings.d.ts +2 -0
  2743. package/types/ui/units/dash/containers/Dialogs/Settings/components/AutoRefresh.d.ts +13 -0
  2744. package/types/ui/units/dash/containers/Dialogs/Settings/components/Display.d.ts +14 -0
  2745. package/types/ui/units/dash/containers/Dialogs/Settings/components/LoadPriority.d.ts +7 -0
  2746. package/types/ui/units/dash/containers/Dialogs/Settings/components/MaxConnection.d.ts +7 -0
  2747. package/types/ui/units/dash/containers/Dialogs/Settings/components/OtherSettings.d.ts +20 -0
  2748. package/types/ui/units/dash/containers/Dialogs/Settings/components/Params.d.ts +7 -0
  2749. package/types/ui/units/dash/containers/Dialogs/Settings/components/Row.d.ts +6 -0
  2750. package/types/ui/units/dash/containers/Dialogs/Settings/components/Title.d.ts +7 -0
  2751. package/types/ui/units/dash/containers/Dialogs/Settings/utils.d.ts +1 -0
  2752. package/types/ui/units/dash/containers/Dialogs/Tabs/EditedTabItem.d.ts +8 -0
  2753. package/types/ui/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/PopupWidgetsOrder.d.ts +15 -0
  2754. package/types/ui/units/dash/containers/Dialogs/Tabs/PopupWidgetsOrder/helpers.d.ts +91 -0
  2755. package/types/ui/units/dash/containers/Dialogs/Tabs/TabItem.d.ts +75 -0
  2756. package/types/ui/units/dash/containers/Dialogs/Tabs/Tabs.d.ts +51 -0
  2757. package/types/ui/units/dash/containers/Dialogs/components/ColorInputsGroup/ColorInputsGroup.d.ts +15 -0
  2758. package/types/ui/units/dash/containers/Dialogs/components/ColorPalette/ColorItem/ColorItem.d.ts +10 -0
  2759. package/types/ui/units/dash/containers/Dialogs/components/ColorPalette/ColorPalette.d.ts +13 -0
  2760. package/types/ui/units/dash/containers/Dialogs/components/ColorPicker/ColorPicker.d.ts +12 -0
  2761. package/types/ui/units/dash/containers/Dialogs/components/ColorPickerInputWithPreset/ColorPickerInputWithPreset.d.ts +7 -0
  2762. package/types/ui/units/dash/containers/Dialogs/components/PaletteBackground/PaletteBackground.d.ts +16 -0
  2763. package/types/ui/units/dash/containers/Dialogs/components/PaletteText/PaletteText.d.ts +14 -0
  2764. package/types/ui/units/dash/containers/Dialogs/constants.d.ts +23 -0
  2765. package/types/ui/units/dash/containers/Dialogs/utils.d.ts +2 -0
  2766. package/types/ui/units/dash/containers/FixedHeader/FixedHeader.d.ts +27 -0
  2767. package/types/ui/units/dash/containers/FixedHeader/FixedHeaderMobile.d.ts +7 -0
  2768. package/types/ui/units/dash/containers/Header/Header.d.ts +53 -0
  2769. package/types/ui/units/dash/containers/MobileFloatMenu/MobileFloatMenu.d.ts +15 -0
  2770. package/types/ui/units/dash/containers/TableOfContent/TableOfContent.d.ts +6 -0
  2771. package/types/ui/units/dash/containers/TableOfContent/helpers.d.ts +5 -0
  2772. package/types/ui/units/dash/containers/Tabs/Tabs.d.ts +32 -0
  2773. package/types/ui/units/dash/hooks/useIframeFeatures.d.ts +7 -0
  2774. package/types/ui/units/dash/modules/constants.d.ts +70 -0
  2775. package/types/ui/units/dash/modules/helpers.d.ts +199 -0
  2776. package/types/ui/units/dash/modules/markdownProvider.d.ts +11 -0
  2777. package/types/ui/units/dash/modules/postMessage.d.ts +16 -0
  2778. package/types/ui/units/dash/modules/pushStats.d.ts +4 -0
  2779. package/types/ui/units/dash/store/actions/base/actions.d.ts +28 -0
  2780. package/types/ui/units/dash/store/actions/base/helpers.d.ts +7 -0
  2781. package/types/ui/units/dash/store/actions/dash.d.ts +2 -0
  2782. package/types/ui/units/dash/store/actions/dashTyped.d.ts +337 -0
  2783. package/types/ui/units/dash/store/actions/dialogs/actions.d.ts +35 -0
  2784. package/types/ui/units/dash/store/actions/dialogs/dialog-edit-query.d.ts +2 -0
  2785. package/types/ui/units/dash/store/actions/helpers.d.ts +60 -0
  2786. package/types/ui/units/dash/store/actions/index.d.ts +10 -0
  2787. package/types/ui/units/dash/store/actions/relations/actions.d.ts +12 -0
  2788. package/types/ui/units/dash/store/constants/dashActionTypes.d.ts +5 -0
  2789. package/types/ui/units/dash/store/constants/index.d.ts +2 -0
  2790. package/types/ui/units/dash/store/reducers/dash.d.ts +61 -0
  2791. package/types/ui/units/dash/store/reducers/dashHelpers.d.ts +48 -0
  2792. package/types/ui/units/dash/store/reducers/dashTypedReducer.d.ts +48 -0
  2793. package/types/ui/units/dash/store/selectors/dash.d.ts +0 -0
  2794. package/types/ui/units/dash/store/selectors/dashTypedSelectors.d.ts +232 -0
  2795. package/types/ui/units/dash/store/typings/dash.d.ts +43 -0
  2796. package/types/ui/units/dash/store/utils.d.ts +28 -0
  2797. package/types/ui/units/dash/typings/context.d.ts +16 -0
  2798. package/types/ui/units/dash/typings/dash.d.ts +20 -0
  2799. package/types/ui/units/dash/typings/entry.d.ts +3 -0
  2800. package/types/ui/units/dash/utils/context.d.ts +3 -0
  2801. package/types/ui/units/dash/utils/customEvents.d.ts +1 -0
  2802. package/types/ui/units/dash/utils/dashkitProps.d.ts +3 -0
  2803. package/types/ui/units/dash/utils/getTabId.d.ts +2 -0
  2804. package/types/ui/units/dash/utils/scrollUtils.d.ts +1 -0
  2805. package/types/ui/units/dash/utils/selectors.d.ts +35 -0
  2806. package/types/ui/units/dash/utils/url.d.ts +6 -0
  2807. package/types/ui/units/datasets/components/Avatar/Avatar.d.ts +29 -0
  2808. package/types/ui/units/datasets/components/ColorsDialog/ColorsDialog.d.ts +15 -0
  2809. package/types/ui/units/datasets/components/ContainerLoader/ContainerLoader.d.ts +23 -0
  2810. package/types/ui/units/datasets/components/DatasetPanel/DatasetPanel.d.ts +51 -0
  2811. package/types/ui/units/datasets/components/DatasetPanel/helpers.d.ts +5 -0
  2812. package/types/ui/units/datasets/components/DatasetRouter/DatasetRouter.d.ts +406 -0
  2813. package/types/ui/units/datasets/components/DatasetRouter/UnloadConfirmation.d.ts +1 -0
  2814. package/types/ui/units/datasets/components/DatasetTabFieldList/DatasetTabFieldList.d.ts +15 -0
  2815. package/types/ui/units/datasets/components/DatasetTabFieldList/components/FieldRow/FieldRow.d.ts +14 -0
  2816. package/types/ui/units/datasets/components/DatasetTabFieldList/components/TitleColumn/TitleColumn.d.ts +7 -0
  2817. package/types/ui/units/datasets/components/DatasetTabFieldList/components/TypeColumn/TypeColumn.d.ts +7 -0
  2818. package/types/ui/units/datasets/components/DatasetTabFieldList/components/ValidationColumn/ValidationColumn.d.ts +4 -0
  2819. package/types/ui/units/datasets/components/DatasetTabFieldList/components/ValueColumn/ValueColumn.d.ts +5 -0
  2820. package/types/ui/units/datasets/components/DatasetTabFieldList/constants.d.ts +8 -0
  2821. package/types/ui/units/datasets/components/DatasetTabFieldList/helpers.d.ts +4 -0
  2822. package/types/ui/units/datasets/components/DatasetTabFieldList/types.d.ts +76 -0
  2823. package/types/ui/units/datasets/components/DatasetTabSection/DatasetTabSection.d.ts +22 -0
  2824. package/types/ui/units/datasets/components/DatasetTable/DatasetTable.d.ts +81 -0
  2825. package/types/ui/units/datasets/components/DatasetTable/columns/Aggregation.d.ts +9 -0
  2826. package/types/ui/units/datasets/components/DatasetTable/columns/Cast.d.ts +9 -0
  2827. package/types/ui/units/datasets/components/DatasetTable/columns/Description.d.ts +10 -0
  2828. package/types/ui/units/datasets/components/DatasetTable/columns/FieldSettings.d.ts +8 -0
  2829. package/types/ui/units/datasets/components/DatasetTable/columns/Hidden.d.ts +8 -0
  2830. package/types/ui/units/datasets/components/DatasetTable/columns/Id.d.ts +11 -0
  2831. package/types/ui/units/datasets/components/DatasetTable/columns/IndexColumn.d.ts +12 -0
  2832. package/types/ui/units/datasets/components/DatasetTable/columns/More.d.ts +11 -0
  2833. package/types/ui/units/datasets/components/DatasetTable/columns/Rls.d.ts +9 -0
  2834. package/types/ui/units/datasets/components/DatasetTable/columns/Source.d.ts +10 -0
  2835. package/types/ui/units/datasets/components/DatasetTable/columns/Title.d.ts +11 -0
  2836. package/types/ui/units/datasets/components/DatasetTable/columns/index.d.ts +10 -0
  2837. package/types/ui/units/datasets/components/DatasetTable/components/AggregationSelect/AggregationSelect.d.ts +44 -0
  2838. package/types/ui/units/datasets/components/DatasetTable/components/BatchActionPanel/BatchActionPanel.d.ts +8 -0
  2839. package/types/ui/units/datasets/components/DatasetTable/components/BatchActionPanel/components/DialogChangeDatasetFields/DialogChangeDatasetFields.d.ts +21 -0
  2840. package/types/ui/units/datasets/components/DatasetTable/components/DisplaySettings.d.ts +2 -0
  2841. package/types/ui/units/datasets/components/DatasetTable/components/FieldActionsPopup.d.ts +14 -0
  2842. package/types/ui/units/datasets/components/DatasetTable/components/ObservedDataTable.d.ts +9 -0
  2843. package/types/ui/units/datasets/components/DatasetTable/components/TableTextInput.d.ts +10 -0
  2844. package/types/ui/units/datasets/components/DatasetTable/components/TypeSelect/TypeSelect.d.ts +30 -0
  2845. package/types/ui/units/datasets/components/DatasetTable/components/index.d.ts +5 -0
  2846. package/types/ui/units/datasets/components/DatasetTable/constants.d.ts +21 -0
  2847. package/types/ui/units/datasets/components/DatasetTable/types.d.ts +23 -0
  2848. package/types/ui/units/datasets/components/DatasetTable/utils.d.ts +44 -0
  2849. package/types/ui/units/datasets/components/DescriptionButton/DescriptionButton.d.ts +3 -0
  2850. package/types/ui/units/datasets/components/DialogCreateDataset/DialogCreateDataset.d.ts +20 -0
  2851. package/types/ui/units/datasets/components/DragAndDrop/DragAndDrop.d.ts +6 -0
  2852. package/types/ui/units/datasets/components/ErrorView/ErrorView.d.ts +12 -0
  2853. package/types/ui/units/datasets/components/FieldSettingsDialog/FieldSettingsDialog.d.ts +13 -0
  2854. package/types/ui/units/datasets/components/FilterSection/FilterSection.d.ts +18 -0
  2855. package/types/ui/units/datasets/components/FilterSection/helpers.d.ts +10 -0
  2856. package/types/ui/units/datasets/components/FilterSection/types.d.ts +3 -0
  2857. package/types/ui/units/datasets/components/FilterSection/useFilterSection.d.ts +24 -0
  2858. package/types/ui/units/datasets/components/ParametersSection/ParametersSection.d.ts +10 -0
  2859. package/types/ui/units/datasets/components/ParametersSection/components/CopyToClipboard/CopyToClipboardMenuItem.d.ts +2 -0
  2860. package/types/ui/units/datasets/components/ParametersSection/components/HeaderWithTooltip/HeaderWithTooltip.d.ts +1 -0
  2861. package/types/ui/units/datasets/components/ParametersSection/helpers.d.ts +5 -0
  2862. package/types/ui/units/datasets/components/ParametersSection/useParametersSection.d.ts +12 -0
  2863. package/types/ui/units/datasets/components/PreviewHeader/PreviewHeader.d.ts +24 -0
  2864. package/types/ui/units/datasets/components/PreviewHeader/constants.d.ts +1 -0
  2865. package/types/ui/units/datasets/components/PreviewHeader/utils.d.ts +1 -0
  2866. package/types/ui/units/datasets/components/PreviewTable/PreviewTable.d.ts +35 -0
  2867. package/types/ui/units/datasets/components/RLSDialog/RLSDialog.d.ts +51 -0
  2868. package/types/ui/units/datasets/components/RelationDialog/RelationDialog.d.ts +69 -0
  2869. package/types/ui/units/datasets/components/RelationsMap/RelationsMap.d.ts +5 -0
  2870. package/types/ui/units/datasets/components/SelectSourcePrototypes/SelectSourcePrototypes.d.ts +63 -0
  2871. package/types/ui/units/datasets/components/SelectSourcePrototypes/SourcesTable.d.ts +21 -0
  2872. package/types/ui/units/datasets/components/SelectSourcePrototypes/constants.d.ts +3 -0
  2873. package/types/ui/units/datasets/components/SelectSourcePrototypes/utils.d.ts +2 -0
  2874. package/types/ui/units/datasets/components/Source/Source.d.ts +27 -0
  2875. package/types/ui/units/datasets/components/SourceEditorDialog/SourceEditorDialog.d.ts +32 -0
  2876. package/types/ui/units/datasets/components/SourceEditorDialog/components/EditorFormItem.d.ts +12 -0
  2877. package/types/ui/units/datasets/components/SourceEditorDialog/components/Form.d.ts +14 -0
  2878. package/types/ui/units/datasets/components/SourceEditorDialog/components/InputFormItem.d.ts +13 -0
  2879. package/types/ui/units/datasets/components/SourceEditorDialog/components/ParamSelector.d.ts +17 -0
  2880. package/types/ui/units/datasets/components/SourceEditorDialog/components/SelectFormItem.d.ts +10 -0
  2881. package/types/ui/units/datasets/components/SourceEditorDialog/components/SourceError.d.ts +9 -0
  2882. package/types/ui/units/datasets/components/SourceEditorDialog/components/SourceHelpTooltip.d.ts +7 -0
  2883. package/types/ui/units/datasets/components/SourceEditorDialog/components/SourceSwitcher.d.ts +10 -0
  2884. package/types/ui/units/datasets/components/SourceEditorDialog/components/index.d.ts +5 -0
  2885. package/types/ui/units/datasets/components/SourceEditorDialog/types.d.ts +8 -0
  2886. package/types/ui/units/datasets/components/SourceEditorDialog/utils/helpers.d.ts +19 -0
  2887. package/types/ui/units/datasets/components/SourceEditorDialog/utils/index.d.ts +2 -0
  2888. package/types/ui/units/datasets/components/SourceEditorDialog/utils/validation.d.ts +7 -0
  2889. package/types/ui/units/datasets/components/UserName/UserName.d.ts +9 -0
  2890. package/types/ui/units/datasets/components/Veil/Veil.d.ts +10 -0
  2891. package/types/ui/units/datasets/components/dialogs/DatasetFieldInspector/DatasetFieldInspector.d.ts +10 -0
  2892. package/types/ui/units/datasets/components/dialogs/index.d.ts +1 -0
  2893. package/types/ui/units/datasets/components/hoc/AvatarDnD.d.ts +12 -0
  2894. package/types/ui/units/datasets/constants/datasets.d.ts +22 -0
  2895. package/types/ui/units/datasets/constants/index.d.ts +138 -0
  2896. package/types/ui/units/datasets/containers/Dataset/ActionPanelRightItems.d.ts +9 -0
  2897. package/types/ui/units/datasets/containers/Dataset/Dataset.d.ts +475 -0
  2898. package/types/ui/units/datasets/containers/Dataset/constants.d.ts +1 -0
  2899. package/types/ui/units/datasets/containers/Dataset/getAdditionalContextMenuItems.d.ts +18 -0
  2900. package/types/ui/units/datasets/containers/Dataset/useHistoryActions.d.ts +1 -0
  2901. package/types/ui/units/datasets/containers/DatasetEditor/DatasetEditor.d.ts +101 -0
  2902. package/types/ui/units/datasets/containers/DatasetEditor/utils.d.ts +9 -0
  2903. package/types/ui/units/datasets/containers/DatasetError/DatasetError.d.ts +41 -0
  2904. package/types/ui/units/datasets/containers/DatasetFilters/DatasetFilters.d.ts +6 -0
  2905. package/types/ui/units/datasets/containers/DatasetPage/DatasetPage.d.ts +27 -0
  2906. package/types/ui/units/datasets/containers/DatasetPage/createDatasetPageContext.d.ts +7 -0
  2907. package/types/ui/units/datasets/containers/DatasetParameters/DatasetParameters.d.ts +5 -0
  2908. package/types/ui/units/datasets/containers/DatasetPreview/DatasetPreview.d.ts +3 -0
  2909. package/types/ui/units/datasets/containers/DatasetSources/DatasetSources.d.ts +546 -0
  2910. package/types/ui/units/datasets/containers/DatasetTabViewer/DatasetTabViewer.d.ts +15 -0
  2911. package/types/ui/units/datasets/helpers/dataset-error-helpers.d.ts +8 -0
  2912. package/types/ui/units/datasets/helpers/datasets.d.ts +5 -0
  2913. package/types/ui/units/datasets/helpers/utils.d.ts +52 -0
  2914. package/types/ui/units/datasets/helpers/validation.d.ts +10 -0
  2915. package/types/ui/units/datasets/store/actions/creators/datasetTyped.d.ts +215 -0
  2916. package/types/ui/units/datasets/store/actions/creators/dialogs.d.ts +11 -0
  2917. package/types/ui/units/datasets/store/actions/creators/index.d.ts +2 -0
  2918. package/types/ui/units/datasets/store/actions/creators/utils.d.ts +9 -0
  2919. package/types/ui/units/datasets/store/actions/types/dataset.d.ts +83 -0
  2920. package/types/ui/units/datasets/store/constants.d.ts +11 -0
  2921. package/types/ui/units/datasets/store/edit-history-middleware.d.ts +2 -0
  2922. package/types/ui/units/datasets/store/reducers/dataset.d.ts +1544 -0
  2923. package/types/ui/units/datasets/store/reducers/index.d.ts +1544 -0
  2924. package/types/ui/units/datasets/store/reducers/utils/index.d.ts +8 -0
  2925. package/types/ui/units/datasets/store/reducers/utils/mocks.d.ts +2 -0
  2926. package/types/ui/units/datasets/store/selectors/dataset.d.ts +240 -0
  2927. package/types/ui/units/datasets/store/selectors/datasetTyped.d.ts +3 -0
  2928. package/types/ui/units/datasets/store/selectors/index.d.ts +2 -0
  2929. package/types/ui/units/datasets/store/types/dataset.d.ts +681 -0
  2930. package/types/ui/units/datasets/store/types/index.d.ts +1 -0
  2931. package/types/ui/units/datasets/typings/dataset.d.ts +20 -0
  2932. package/types/ui/units/datasets/typings/redux.d.ts +20 -0
  2933. package/types/ui/units/preview/components/App/App.d.ts +24 -0
  2934. package/types/ui/units/preview/components/IndexPage/IndexPage.d.ts +2 -0
  2935. package/types/ui/units/preview/components/Preview/Preview.d.ts +14 -0
  2936. package/types/ui/units/preview/hooks/useChartAutoupdate.d.ts +4 -0
  2937. package/types/ui/units/preview/modules/constants/constants.d.ts +2 -0
  2938. package/types/ui/units/preview/modules/helpers.d.ts +1 -0
  2939. package/types/ui/units/ql/components/DND/DNDContainer.d.ts +33 -0
  2940. package/types/ui/units/ql/components/DND/DNDItem.d.ts +2 -0
  2941. package/types/ui/units/ql/components/DND/DNDLayer.d.ts +61 -0
  2942. package/types/ui/units/ql/components/Dialogs/Settings/Settings.d.ts +67 -0
  2943. package/types/ui/units/ql/components/Grid/Grid.d.ts +26 -0
  2944. package/types/ui/units/ql/components/Grid/GridPane/GridPane.d.ts +11 -0
  2945. package/types/ui/units/ql/components/Grid/GridPane/GridPaneView/GridPaneView.d.ts +36 -0
  2946. package/types/ui/units/ql/components/Grid/GridPane/GridPaneView/GridPaneViewContent.d.ts +16 -0
  2947. package/types/ui/units/ql/configs/chart-types.d.ts +10 -0
  2948. package/types/ui/units/ql/constants/index.d.ts +47 -0
  2949. package/types/ui/units/ql/containers/App/App.d.ts +302 -0
  2950. package/types/ui/units/ql/containers/PaneMain/PaneMain.d.ts +13 -0
  2951. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/ScreenEditor.d.ts +9 -0
  2952. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/DefaultValue.d.ts +25 -0
  2953. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/OverridenValue.d.ts +7 -0
  2954. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/TabParams.d.ts +6 -0
  2955. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabParams/utils.d.ts +8 -0
  2956. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenPromQL/ScreenPromQL.d.ts +13 -0
  2957. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/ScreenSQL/ScreenSQL.d.ts +9 -0
  2958. package/types/ui/units/ql/containers/PaneMain/ScreenEditor/TabQuery/TabQuery.d.ts +11 -0
  2959. package/types/ui/units/ql/containers/PanePreview/PanePreview.d.ts +12 -0
  2960. package/types/ui/units/ql/containers/PaneTablePreview/PaneTablePreview.d.ts +12 -0
  2961. package/types/ui/units/ql/containers/PaneVisualization/PaneVisualization.d.ts +7 -0
  2962. package/types/ui/units/ql/containers/QL/QL.d.ts +12 -0
  2963. package/types/ui/units/ql/containers/QL/QLActionPanel/QLActionPanel.d.ts +15 -0
  2964. package/types/ui/units/ql/containers/QL/QLActionPanel/useQLActionPanel.d.ts +6 -0
  2965. package/types/ui/units/ql/containers/QL/ViewSetup/ViewSetup.d.ts +3 -0
  2966. package/types/ui/units/ql/modules/helpers.d.ts +4 -0
  2967. package/types/ui/units/ql/store/actions/dialog.d.ts +13 -0
  2968. package/types/ui/units/ql/store/actions/ql.d.ts +284 -0
  2969. package/types/ui/units/ql/store/reducers/index.d.ts +219 -0
  2970. package/types/ui/units/ql/store/reducers/ql.d.ts +873 -0
  2971. package/types/ui/units/ql/store/typings/index.d.ts +1 -0
  2972. package/types/ui/units/ql/store/typings/ql.d.ts +289 -0
  2973. package/types/ui/units/ql/store/utils/grid.d.ts +81 -0
  2974. package/types/ui/units/ql/store/utils/monitoring.d.ts +572 -0
  2975. package/types/ui/units/ql/utils/chart-settings.d.ts +3 -0
  2976. package/types/ui/units/ql/utils/connectionts.d.ts +2 -0
  2977. package/types/ui/units/ql/utils/query.d.ts +3 -0
  2978. package/types/ui/units/ql/utils/visualization/getAvailableQlVisualizations.d.ts +2 -0
  2979. package/types/ui/units/ql/utils/visualization/getDefaultQlVisualization.d.ts +2 -0
  2980. package/types/ui/units/ql/utils/visualization/getQlVisualization.d.ts +2 -0
  2981. package/types/ui/units/ql/utils/visualization/index.d.ts +3 -0
  2982. package/types/ui/units/service-settings/components/AppearanceSettings/AppearanceSettings.d.ts +7 -0
  2983. package/types/ui/units/service-settings/components/CreateUserForm/CreateUserForm.d.ts +1 -0
  2984. package/types/ui/units/service-settings/components/SectionGroup/SectionGroup.d.ts +7 -0
  2985. package/types/ui/units/service-settings/components/UsersList/LabelsList/LabelsList.d.ts +9 -0
  2986. package/types/ui/units/service-settings/components/UsersList/UsersFilters/UsersFilters.d.ts +5 -0
  2987. package/types/ui/units/service-settings/components/UsersList/UsersList.d.ts +2 -0
  2988. package/types/ui/units/service-settings/components/UsersList/constants.d.ts +7 -0
  2989. package/types/ui/units/service-settings/components/UsersList/utils.d.ts +3 -0
  2990. package/types/ui/units/service-settings/containers/AccessErrorPage/AccessErrorPage.d.ts +2 -0
  2991. package/types/ui/units/service-settings/containers/App/App.d.ts +7 -0
  2992. package/types/ui/units/service-settings/containers/CreateProfilePage/CreateProfilePage.d.ts +2 -0
  2993. package/types/ui/units/service-settings/containers/MainPage/MainPage.d.ts +18 -0
  2994. package/types/ui/units/service-settings/containers/UserProfilePage/UserProfilePage.d.ts +2 -0
  2995. package/types/ui/units/service-settings/store/actions/serviceSettings.d.ts +64 -0
  2996. package/types/ui/units/service-settings/store/constants/serviceSettings.d.ts +10 -0
  2997. package/types/ui/units/service-settings/store/reducers/serviceSettings.d.ts +34 -0
  2998. package/types/ui/units/service-settings/store/selectors/serviceSettings.d.ts +10 -0
  2999. package/types/ui/units/service-settings/store/typings/serviceSettings.d.ts +17 -0
  3000. package/types/ui/units/wizard/actions/dataset.d.ts +106 -0
  3001. package/types/ui/units/wizard/actions/dialog.d.ts +70 -0
  3002. package/types/ui/units/wizard/actions/dialogColor.d.ts +58 -0
  3003. package/types/ui/units/wizard/actions/dndItems.d.ts +68 -0
  3004. package/types/ui/units/wizard/actions/hierarchyEditor.d.ts +14 -0
  3005. package/types/ui/units/wizard/actions/index.d.ts +714 -0
  3006. package/types/ui/units/wizard/actions/placeholder.d.ts +31 -0
  3007. package/types/ui/units/wizard/actions/preview.d.ts +88 -0
  3008. package/types/ui/units/wizard/actions/settings.d.ts +36 -0
  3009. package/types/ui/units/wizard/actions/tooltip.d.ts +7 -0
  3010. package/types/ui/units/wizard/actions/utils/getDatasetUpdates.d.ts +25 -0
  3011. package/types/ui/units/wizard/actions/utils/index.d.ts +3 -0
  3012. package/types/ui/units/wizard/actions/utils/mutateAndValidateItem.d.ts +6 -0
  3013. package/types/ui/units/wizard/actions/utils/placeholders.d.ts +2 -0
  3014. package/types/ui/units/wizard/actions/visualization.d.ts +199 -0
  3015. package/types/ui/units/wizard/actions/widget.d.ts +60 -0
  3016. package/types/ui/units/wizard/components/AddField/AddField.d.ts +22 -0
  3017. package/types/ui/units/wizard/components/DND/DNDContainer.d.ts +33 -0
  3018. package/types/ui/units/wizard/components/DND/DNDItem.d.ts +32 -0
  3019. package/types/ui/units/wizard/components/DND/DragAndDrop.d.ts +6 -0
  3020. package/types/ui/units/wizard/components/DatasetSelect/DatasetSelect.d.ts +31 -0
  3021. package/types/ui/units/wizard/components/DatasetSelect/DatasetSelectItem.d.ts +17 -0
  3022. package/types/ui/units/wizard/components/Dialogs/DialogColor/ColorSettingsContainer/ColorSettingsContainer.d.ts +55 -0
  3023. package/types/ui/units/wizard/components/Dialogs/DialogColor/DialogColor.d.ts +249 -0
  3024. package/types/ui/units/wizard/components/Dialogs/DialogColor/DialogColorGradient/DialogColorGradient.d.ts +38 -0
  3025. package/types/ui/units/wizard/components/Dialogs/DialogColor/DialogColorPalette/DialogColorPalette.d.ts +35 -0
  3026. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/DialogColumnSettings.d.ts +28 -0
  3027. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSetting/ColumnWidthSetting.d.ts +11 -0
  3028. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/ColumnWidthSettingsSection/ColumnWidthSettingsSection.d.ts +13 -0
  3029. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/FieldInfo/FieldInfo.d.ts +9 -0
  3030. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/components/Subheader/Subheader.d.ts +6 -0
  3031. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/hooks/useDialogColumnSettingsState.d.ts +28 -0
  3032. package/types/ui/units/wizard/components/Dialogs/DialogColumnSettings/utils/index.d.ts +14 -0
  3033. package/types/ui/units/wizard/components/Dialogs/DialogField/DialogField.d.ts +44 -0
  3034. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/BackgroundSettings.d.ts +11 -0
  3035. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/helpers.d.ts +18 -0
  3036. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgrounColorFieldSelect.d.ts +17 -0
  3037. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundColorModeRadioButtons.d.ts +20 -0
  3038. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundNullModeSettings.d.ts +8 -0
  3039. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettings.d.ts +14 -0
  3040. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsButtonColorDialog.d.ts +24 -0
  3041. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BackgroundSettings/hooks/useBackgroundSettingsSwitch.d.ts +9 -0
  3042. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/BarsSettings.d.ts +9 -0
  3043. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/ColorControls/ColorsControl.d.ts +13 -0
  3044. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/GradientColorControl/GradientColorControl.d.ts +11 -0
  3045. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/MinMaxInputs/MinMaxInputs.d.ts +19 -0
  3046. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/components/PaletteColorControl/PaletteColorControl.d.ts +16 -0
  3047. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/helpers.d.ts +4 -0
  3048. package/types/ui/units/wizard/components/Dialogs/DialogField/components/BarsSettings/useBarsSettings/useBarsSettings.d.ts +16 -0
  3049. package/types/ui/units/wizard/components/Dialogs/DialogField/components/ButtonColorDialog/ButtonColorDialog.d.ts +16 -0
  3050. package/types/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldInput/DialogFieldInput.d.ts +9 -0
  3051. package/types/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldMainSection/DialogFieldMainSection.d.ts +46 -0
  3052. package/types/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldRow/DialogFieldRow.d.ts +10 -0
  3053. package/types/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldSelect/DialogFieldSelect.d.ts +13 -0
  3054. package/types/ui/units/wizard/components/Dialogs/DialogField/components/DialogFieldSettingTitle/DialogFieldSettingTitle.d.ts +6 -0
  3055. package/types/ui/units/wizard/components/Dialogs/DialogField/components/SubTotalsSettings/SubTotalsSettings.d.ts +8 -0
  3056. package/types/ui/units/wizard/components/Dialogs/DialogField/utils/backgroundSettings.d.ts +9 -0
  3057. package/types/ui/units/wizard/components/Dialogs/DialogField/utils/barsSettings.d.ts +2 -0
  3058. package/types/ui/units/wizard/components/Dialogs/DialogField/utils/misc.d.ts +12 -0
  3059. package/types/ui/units/wizard/components/Dialogs/DialogField/utils/subTotals.d.ts +4 -0
  3060. package/types/ui/units/wizard/components/Dialogs/DialogFieldInspector/DialogFieldInspector.d.ts +10 -0
  3061. package/types/ui/units/wizard/components/Dialogs/DialogGeolayer/DialogGeolayer.d.ts +63 -0
  3062. package/types/ui/units/wizard/components/Dialogs/DialogLabelSettings/DialogLabelSettings.d.ts +18 -0
  3063. package/types/ui/units/wizard/components/Dialogs/DialogLink.d.ts +67 -0
  3064. package/types/ui/units/wizard/components/Dialogs/DialogMetricSettings/DialogMetricSettings.d.ts +14 -0
  3065. package/types/ui/units/wizard/components/Dialogs/DialogMultidataset.d.ts +16 -0
  3066. package/types/ui/units/wizard/components/Dialogs/DialogNoRights.d.ts +11 -0
  3067. package/types/ui/units/wizard/components/Dialogs/DialogPlaceholder/DialogPlaceholder.d.ts +19 -0
  3068. package/types/ui/units/wizard/components/Dialogs/DialogPlaceholder/components/DialogPlaceholderRow/DialogPlaceholderRow.d.ts +5 -0
  3069. package/types/ui/units/wizard/components/Dialogs/DialogPlaceholder/constants/radio-buttons.d.ts +15 -0
  3070. package/types/ui/units/wizard/components/Dialogs/DialogPlaceholder/utils.d.ts +2 -0
  3071. package/types/ui/units/wizard/components/Dialogs/DialogPointsSize.d.ts +14 -0
  3072. package/types/ui/units/wizard/components/Dialogs/DialogShapes/DialogShapes.d.ts +27 -0
  3073. package/types/ui/units/wizard/components/Dialogs/DialogShapes/DialogShapesPalette/DialogShapesPalette.d.ts +21 -0
  3074. package/types/ui/units/wizard/components/Dialogs/DialogTooltipSettings/DialogTooltipSettings.d.ts +12 -0
  3075. package/types/ui/units/wizard/components/Dialogs/Settings/CenterSetting/CenterSetting.d.ts +11 -0
  3076. package/types/ui/units/wizard/components/Dialogs/Settings/IndicatorTitleSetting/IndicatorTitleSetting.d.ts +12 -0
  3077. package/types/ui/units/wizard/components/Dialogs/Settings/LimitInput/LimitInput.d.ts +9 -0
  3078. package/types/ui/units/wizard/components/Dialogs/Settings/SettingFeed/SettingFeed.d.ts +7 -0
  3079. package/types/ui/units/wizard/components/Dialogs/Settings/SettingNavigator/NavigatorSubSettings/NavigatorSubSettings.d.ts +18 -0
  3080. package/types/ui/units/wizard/components/Dialogs/Settings/SettingNavigator/SettingNavigator.d.ts +8 -0
  3081. package/types/ui/units/wizard/components/Dialogs/Settings/SettingPagination/SettingPagination.d.ts +17 -0
  3082. package/types/ui/units/wizard/components/Dialogs/Settings/SettingSwitcher/SettingSwitcher.d.ts +22 -0
  3083. package/types/ui/units/wizard/components/Dialogs/Settings/SettingTitleMode/SettingTitleMode.d.ts +9 -0
  3084. package/types/ui/units/wizard/components/Dialogs/Settings/Settings.d.ts +24 -0
  3085. package/types/ui/units/wizard/components/Dialogs/Settings/ZoomSetting/ZoomSetting.d.ts +11 -0
  3086. package/types/ui/units/wizard/components/Dialogs/components/DialogRadioButtons/DialogRadioButtons.d.ts +12 -0
  3087. package/types/ui/units/wizard/components/Dialogs/components/DialogRow/DialogRow.d.ts +10 -0
  3088. package/types/ui/units/wizard/components/Dialogs/components/TitleWithTooltip/TitleWithTooltip.d.ts +7 -0
  3089. package/types/ui/units/wizard/components/GeolayersSelect/GeolayersSelect.d.ts +37 -0
  3090. package/types/ui/units/wizard/components/GradientPalettePreview/GradientPalettePreview.d.ts +6 -0
  3091. package/types/ui/units/wizard/components/HierarchyEditor/HierarchyEditor.d.ts +25 -0
  3092. package/types/ui/units/wizard/components/MinifiedPalette/MinifiedPalette.d.ts +17 -0
  3093. package/types/ui/units/wizard/components/Palette/Palette.d.ts +18 -0
  3094. package/types/ui/units/wizard/components/PlaceholderActionIcon/PlaceholderActionIcon.d.ts +17 -0
  3095. package/types/ui/units/wizard/components/SearchInput/SearchInput.d.ts +10 -0
  3096. package/types/ui/units/wizard/components/ValuesList/ValuesList.d.ts +62 -0
  3097. package/types/ui/units/wizard/components/VisualizationItemTitleWithAggregation/VisualizationItemTitleWithAggregation.d.ts +7 -0
  3098. package/types/ui/units/wizard/constants/aggregations.d.ts +12 -0
  3099. package/types/ui/units/wizard/constants/dialogColor.d.ts +30 -0
  3100. package/types/ui/units/wizard/constants/formats.d.ts +11 -0
  3101. package/types/ui/units/wizard/constants/grouping.d.ts +3 -0
  3102. package/types/ui/units/wizard/constants/index.d.ts +9 -0
  3103. package/types/ui/units/wizard/constants/paletteTypes.d.ts +5 -0
  3104. package/types/ui/units/wizard/constants/placeholders.d.ts +2 -0
  3105. package/types/ui/units/wizard/containers/App.d.ts +109 -0
  3106. package/types/ui/units/wizard/containers/Wizard/SectionDataset/DatasetItem/DatasetItem.d.ts +80 -0
  3107. package/types/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/FieldsContainer.d.ts +9 -0
  3108. package/types/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/ParametersContainer/ParametersContainer.d.ts +5 -0
  3109. package/types/ui/units/wizard/containers/Wizard/SectionDataset/FieldsContainer/components/SectionContainer/SectionContainer.d.ts +10 -0
  3110. package/types/ui/units/wizard/containers/Wizard/SectionDataset/HierarchyEditor/HierarchyEditor.d.ts +261 -0
  3111. package/types/ui/units/wizard/containers/Wizard/SectionDataset/SectionDataset.d.ts +336 -0
  3112. package/types/ui/units/wizard/containers/Wizard/SectionPreview/SectionPreview.d.ts +57 -0
  3113. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/AddField/AddField.d.ts +28 -0
  3114. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/AvailablePlaceholder/AvailablePlaceholder.d.ts +32 -0
  3115. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ColorsPlaceholder/ColorsPlaceholder.d.ts +47 -0
  3116. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardFiltersPlaceholder/DashboardFiltersPlaceholder.d.ts +56 -0
  3117. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/DashboardParametersPlaceholder/DashboardParametersPlaceholder.d.ts +51 -0
  3118. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/FiltersPlaceholder/FiltersPlaceholder.d.ts +40 -0
  3119. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LabelsPlaceholder/LabelsPlaceholder.d.ts +50 -0
  3120. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/LayerFiltersPlaceholder/LayerFiltersPlaceholder.d.ts +40 -0
  3121. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/Placeholder/Placeholder.d.ts +478 -0
  3122. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/PlaceholdersContainer.d.ts +58 -0
  3123. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SegmentsPlaceholder/SegmentsPlaceholder.d.ts +34 -0
  3124. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/ShapesPlaceholder/ShapesPlaceholder.d.ts +40 -0
  3125. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/SortPlaceholder/SortPlaceholder.d.ts +408 -0
  3126. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/TooltipsPlaceholder/TooltipsPlaceholder.d.ts +38 -0
  3127. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/VisualizationPlaceholder.d.ts +462 -0
  3128. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/VisualizationPlaceholder/constants.d.ts +2 -0
  3129. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/PlaceholdersContainer/utils.d.ts +186 -0
  3130. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/SectionVisualization.d.ts +381 -0
  3131. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationItem/VisualizationItem.d.ts +82 -0
  3132. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/CombinedChartLayerTypeSwitcher.d.ts +4 -0
  3133. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationLayersControl/VisualizationLayersControl.d.ts +31 -0
  3134. package/types/ui/units/wizard/containers/Wizard/SectionVisualization/VisualizationSelector/VisualizationSelector.d.ts +45 -0
  3135. package/types/ui/units/wizard/containers/Wizard/Wizard.d.ts +8 -0
  3136. package/types/ui/units/wizard/containers/Wizard/WizardActionPanel/WizardActionPanel.d.ts +20 -0
  3137. package/types/ui/units/wizard/containers/Wizard/WizardActionPanel/useWizardActionPanel.d.ts +11 -0
  3138. package/types/ui/units/wizard/reducers/dataset.d.ts +19 -0
  3139. package/types/ui/units/wizard/reducers/dialogColor.d.ts +6 -0
  3140. package/types/ui/units/wizard/reducers/hierarchyEditor.d.ts +8 -0
  3141. package/types/ui/units/wizard/reducers/index.d.ts +31 -0
  3142. package/types/ui/units/wizard/reducers/preview.d.ts +38 -0
  3143. package/types/ui/units/wizard/reducers/revisions/reducers.d.ts +8 -0
  3144. package/types/ui/units/wizard/reducers/settings.d.ts +10 -0
  3145. package/types/ui/units/wizard/reducers/utils/checkTableColor.d.ts +2 -0
  3146. package/types/ui/units/wizard/reducers/utils/clearUnusedVisualizationItems.d.ts +21 -0
  3147. package/types/ui/units/wizard/reducers/utils/getConfigData.d.ts +3 -0
  3148. package/types/ui/units/wizard/reducers/utils/getPlaceholdersWithMergedSettings.d.ts +14 -0
  3149. package/types/ui/units/wizard/reducers/utils/index.d.ts +2 -0
  3150. package/types/ui/units/wizard/reducers/utils/updateColorHierarchies.d.ts +189 -0
  3151. package/types/ui/units/wizard/reducers/visualization.d.ts +26 -0
  3152. package/types/ui/units/wizard/reducers/widget.d.ts +12 -0
  3153. package/types/ui/units/wizard/selectors/dataset.d.ts +41 -0
  3154. package/types/ui/units/wizard/selectors/dialogColor.d.ts +10 -0
  3155. package/types/ui/units/wizard/selectors/gradient.d.ts +3 -0
  3156. package/types/ui/units/wizard/selectors/index.d.ts +11 -0
  3157. package/types/ui/units/wizard/selectors/preview.d.ts +40 -0
  3158. package/types/ui/units/wizard/selectors/settings.d.ts +15 -0
  3159. package/types/ui/units/wizard/selectors/visualization.d.ts +705 -0
  3160. package/types/ui/units/wizard/selectors/widget.d.ts +9 -0
  3161. package/types/ui/units/wizard/typings/index.d.ts +1 -0
  3162. package/types/ui/units/wizard/typings/wizard.d.ts +33 -0
  3163. package/types/ui/units/wizard/utils/colors.d.ts +2 -0
  3164. package/types/ui/units/wizard/utils/filters.d.ts +7 -0
  3165. package/types/ui/units/wizard/utils/helpers.d.ts +224 -0
  3166. package/types/ui/units/wizard/utils/mappers/mapChartsToClientConfig.d.ts +4 -0
  3167. package/types/ui/units/wizard/utils/mappers/mapClientToChartsConfig.d.ts +4 -0
  3168. package/types/ui/units/wizard/utils/palette.d.ts +5 -0
  3169. package/types/ui/units/wizard/utils/placeholder.d.ts +21 -0
  3170. package/types/ui/units/wizard/utils/shapes.d.ts +2 -0
  3171. package/types/ui/units/wizard/utils/table.d.ts +2 -0
  3172. package/types/ui/units/wizard/utils/visualization.d.ts +232 -0
  3173. package/types/ui/units/wizard/utils/wizard.d.ts +150 -0
  3174. package/types/ui/units/workbooks/components/CreateEntry/CreateEntry.d.ts +13 -0
  3175. package/types/ui/units/workbooks/components/CreateEntry/utils.d.ts +13 -0
  3176. package/types/ui/units/workbooks/components/CreateEntryDialog/CreateEntryDialog.d.ts +2 -0
  3177. package/types/ui/units/workbooks/components/CreateEntryDialog/utils.d.ts +3 -0
  3178. package/types/ui/units/workbooks/components/DeleteEntryDialog/DeleteEntryDialog.d.ts +11 -0
  3179. package/types/ui/units/workbooks/components/DuplicateEntryDialog/DuplicateEntryDialog.d.ts +13 -0
  3180. package/types/ui/units/workbooks/components/EmptyWorkbook/EmptyWorkbook.d.ts +11 -0
  3181. package/types/ui/units/workbooks/components/EmptyWorkbook/EmptyWorkbookContainer.d.ts +5 -0
  3182. package/types/ui/units/workbooks/components/EmptyWorkbook/utils.d.ts +5 -0
  3183. package/types/ui/units/workbooks/components/EntryActions/EntryActions.d.ts +15 -0
  3184. package/types/ui/units/workbooks/components/EntryActions/utils.d.ts +2 -0
  3185. package/types/ui/units/workbooks/components/RenameEntryDialog/RenameEntryDialog.d.ts +11 -0
  3186. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/ChunkGroup/ChunkGroup.d.ts +7 -0
  3187. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/MainTabContent/MainTabContent.d.ts +20 -0
  3188. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/Row/Row.d.ts +20 -0
  3189. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTable.d.ts +27 -0
  3190. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/WorkbookEntriesTableTabs.d.ts +29 -0
  3191. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/constants.d.ts +8 -0
  3192. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/types.d.ts +13 -0
  3193. package/types/ui/units/workbooks/components/Table/WorkbookEntriesTable/utils.d.ts +3 -0
  3194. package/types/ui/units/workbooks/components/WorkbookActions/WorkbookActions.d.ts +8 -0
  3195. package/types/ui/units/workbooks/components/WorkbookActions/utils.d.ts +2 -0
  3196. package/types/ui/units/workbooks/components/WorkbookFilters/WorkbookFilters.d.ts +8 -0
  3197. package/types/ui/units/workbooks/components/WorkbookMainTabContent/WorkbookMainTabContent.d.ts +10 -0
  3198. package/types/ui/units/workbooks/components/WorkbookMainTabContent/useChunkedEntries.d.ts +7 -0
  3199. package/types/ui/units/workbooks/components/WorkbookPage/WorkbookPage.d.ts +1 -0
  3200. package/types/ui/units/workbooks/components/WorkbookPage/hooks/useLayout.d.ts +6 -0
  3201. package/types/ui/units/workbooks/components/WorkbookTabContent/WorkbookTabContent.d.ts +12 -0
  3202. package/types/ui/units/workbooks/components/WorkbookTabContent/useChunkedEntries.d.ts +7 -0
  3203. package/types/ui/units/workbooks/components/WorkbookTabs/WorkbookTabs.d.ts +6 -0
  3204. package/types/ui/units/workbooks/components/WorkbookTabs/constants.d.ts +1 -0
  3205. package/types/ui/units/workbooks/components/WorkbookTabs/types.d.ts +7 -0
  3206. package/types/ui/units/workbooks/components/WorkbookTabs/utils.d.ts +3 -0
  3207. package/types/ui/units/workbooks/constants/index.d.ts +10 -0
  3208. package/types/ui/units/workbooks/store/actions/index.d.ts +246 -0
  3209. package/types/ui/units/workbooks/store/constants/index.d.ts +39 -0
  3210. package/types/ui/units/workbooks/store/reducers/index.d.ts +230 -0
  3211. package/types/ui/units/workbooks/store/reducers/workbook-page.d.ts +278 -0
  3212. package/types/ui/units/workbooks/store/selectors/index.d.ts +242 -0
  3213. package/types/ui/units/workbooks/types/index.d.ts +25 -0
  3214. package/types/ui/units/workbooks/utils/entry.d.ts +2 -0
  3215. package/types/ui/utils/absurd.d.ts +26 -0
  3216. package/types/ui/utils/collectionFiltersStorage.d.ts +13 -0
  3217. package/types/ui/utils/colors.d.ts +6 -0
  3218. package/types/ui/utils/connections/icons.d.ts +4 -0
  3219. package/types/ui/utils/connections/index.d.ts +1 -0
  3220. package/types/ui/utils/copyItems.d.ts +47 -0
  3221. package/types/ui/utils/copyText.d.ts +6 -0
  3222. package/types/ui/utils/custom-export-menu-item.d.ts +8 -0
  3223. package/types/ui/utils/date.d.ts +3 -0
  3224. package/types/ui/utils/docs/helpers.d.ts +1 -0
  3225. package/types/ui/utils/docs/index.d.ts +4 -0
  3226. package/types/ui/utils/embedded.d.ts +5 -0
  3227. package/types/ui/utils/errorContentTypes.d.ts +6 -0
  3228. package/types/ui/utils/errors/errorByCode.d.ts +17 -0
  3229. package/types/ui/utils/errors/manual.d.ts +1 -0
  3230. package/types/ui/utils/errors/parse.d.ts +13 -0
  3231. package/types/ui/utils/getActionPanelItems.d.ts +23 -0
  3232. package/types/ui/utils/getAllEntryScopes.d.ts +2 -0
  3233. package/types/ui/utils/getBasicActionPanelItems.d.ts +10 -0
  3234. package/types/ui/utils/getCurrentUserRights.d.ts +3 -0
  3235. package/types/ui/utils/getOverridedTheme.d.ts +2 -0
  3236. package/types/ui/utils/getRestrictedParamNames.d.ts +1 -0
  3237. package/types/ui/utils/getRevisionsPanelEntryScopesTexts.d.ts +22 -0
  3238. package/types/ui/utils/getScopeTypeIcon.d.ts +1 -0
  3239. package/types/ui/utils/getTopLevelEntryScopes.d.ts +2 -0
  3240. package/types/ui/utils/getTypeSelectOptions.d.ts +3 -0
  3241. package/types/ui/utils/gridStorage.d.ts +18 -0
  3242. package/types/ui/utils/helpers.d.ts +17 -0
  3243. package/types/ui/utils/icons.d.ts +2 -0
  3244. package/types/ui/utils/index.d.ts +18 -0
  3245. package/types/ui/utils/isEnabledFeature.d.ts +1 -0
  3246. package/types/ui/utils/markdown/get-render-markdown-fn.d.ts +1 -0
  3247. package/types/ui/utils/markdown/get-render-yfm-fn.d.ts +2 -0
  3248. package/types/ui/utils/markdown/index.d.ts +2 -0
  3249. package/types/ui/utils/markup.d.ts +2 -0
  3250. package/types/ui/utils/migrateItemDataOnPaste.d.ts +17 -0
  3251. package/types/ui/utils/mobile.d.ts +15 -0
  3252. package/types/ui/utils/os.d.ts +14 -0
  3253. package/types/ui/utils/palettes.d.ts +2 -0
  3254. package/types/ui/utils/readOnly.d.ts +1 -0
  3255. package/types/ui/utils/revisions.d.ts +13 -0
  3256. package/types/ui/utils/scrollableContainerContext.d.ts +10 -0
  3257. package/types/ui/utils/sdkRequests.d.ts +8 -0
  3258. package/types/ui/utils/setEntryKey.d.ts +2 -0
  3259. package/types/ui/utils/shared-entries/get-is-shared-entry.d.ts +2 -0
  3260. package/types/ui/utils/shared-entries/index.d.ts +1 -0
  3261. package/types/ui/utils/stringUtils.d.ts +2 -0
  3262. package/types/ui/utils/urlUtils.d.ts +4 -0
  3263. package/types/ui/utils/utils.d.ts +62 -0
  3264. package/types/ui/utils/validation.d.ts +8 -0
  3265. package/types/ui/utils/visualizations/line.d.ts +22 -0
  3266. package/types/ui/utils/visualizations/placeholders/colors.d.ts +16 -0
  3267. package/types/ui/utils/visualizations/placeholders/common-measures.d.ts +11 -0
  3268. package/types/ui/utils/waitOperation.d.ts +24 -0
  3269. package/types/ui/utils/widgetColors.d.ts +9 -0
  3270. package/types/ui/utils/workbooks.d.ts +1 -0
@@ -0,0 +1,3363 @@
1
+ import { authSchema } from './auth-schema';
2
+ import { ApiServiceActionConfig, EndpointsConfig, GetAuthHeadersParams, ContextApiWithRoot } from '@gravity-ui/gateway';
3
+ import { AppContext } from '@gravity-ui/nodekit';
4
+ import { Request, Response } from 'express';
5
+ import { ParamsDictionary } from 'express-serve-static-core';
6
+ import { ParsedQs } from 'qs';
7
+ import { TenantFields, SetDefaultColorPaletteArgs, GetDatalensOperationArgs, Embed, CreateEmbedArgs, ListEmbedsResponse, ListEmbedsArgs, DeleteEmbedResponse, DeleteEmbedArgs, CreateColorPaletteArgs, GetColorPalettesListResponse, UpdateColorPaletteArgs, DeleteColorPaletteResponse, DeleteColorPaletteArgs, CopyWorkbookResponse, CopyWorkbookArgs, GetWorkbookEntriesResponse, GetWorkbookEntriesArgs, GetWorkbookSharedEntriesResponse, MigrateEntriesToWorkbookResponse, MigrateEntriesToWorkbookArgs, GetStructureItemsResponse, GetStructureItemsArgs, EntryFields, CopyTemplateResponse, CopyTemplateArgs, GetDashStateResponse, GetDashStateArgs, CreateDashStateResponse, CreateDashStateArgs, CreateEditorChartResponse, CreateEditorChartArgs, UpdateEditorChartResponse, UpdateEditorChartArgs, AddFavoriteResponse, AddFavoriteArgs, DeleteFavoriteResponse, DeleteFavoriteArgs, RenameFavoriteResponse, RenameFavoriteArgs, GetFavoritesOutput, GetFavoritesArgs, GetFavoritesResponse, CreateLockResponse, CreateLockArgs, ExtendLockResponse, ExtendLockArgs, DeleteLockResponse, DeleteLockArgs, GetPresetArgs, CreateEntryResponse, CreateEntryArgs, UpdateEntryResponse, UpdateEntryArgs, GetEntryResponse, GetEntryArgs, GetEntryByKeyResponse, GetEntryByKeyArgs, GetEntryMetaResponse, GetEntryMetaArgs, GetRevisionsOutput, GetRevisionsArgs, GetRevisionsResponse, GetRelationsOutput, GetRelationsArgs, GetRelationsResponse, MoveEntryResponse, MoveEntryArgs, CopyEntryResponse, CopyEntryArgs, CopyWorkbookEntryArgs, CopyEntriesToWorkbookResponse, CopyEntriesToWorkbookArgs, RenameEntryResponse, RenameEntryArgs, CreateFolderResponse, CreateFolderArgs, DeleteUSEntryResponse, DeleteUSEntryArgs, SwitchPublicationStatusResponse, SwitchPublicationStatusArgs, GetEntriesByKeyPatternResponse, GetEntriesByKeyPatternArgs, GetRelationsGraphResponse, GetRelationsGraphArgs, GetEntriesAnnotationResponse, GetEntriesAnnotationArgs, EntityBindingsResponse, EntityBindingsArgs, GetSharedEntryBindingsResponse, GetSharedEntryBindingsArgs, GetSharedEntryWorkbookRelationsResponse, GetSharedEntryWorkbookRelationsArgs, MoveSharedEntryArgs, GetTenantDetailsArgs, GetOAuthUriResponse, GetOAuthUriArgs, GetOAuthTokenResponse, GetOAuthTokenArgs, GetSourceResponse, GetSourceArgs, GetDatasetByVersionArgs, GetDbNamesResponse, GetFieldTypesResponse, GetDataSetFieldsByIdResponse, GetDataSetFieldsByIdArgs, CheckDatasetsForPublicationResponse, CheckDatasetsForPublicationArgs, CheckConnectionsForPublicationResponse, CheckConnectionsForPublicationArgs, CreateDatasetResponse, CreateDatasetArgs, ValidateDatasetResponse, ValidateDatasetArgs, UpdateDatasetArgs, DistinctResult, DistinctRegularResult, GetPreviewArgs, ValidateDatasetFormulaResponse, ValidateDatasetFormulaArgs, CopyDatasetArgs, GetDistinctsApiV2Args, GetDistinctsApiV2TransformedResponse, ExportDatasetResponse, ExportDatasetArgs, ImportDatasetResponse, ImportDatasetArgs, EnsureUploadRobotResponse, GetAvailableCountersResponse, GetConnectorsResponse, GetConnectionArgs, CreateConnectionResponse, VerifyConnectionResponse, VerifyConnectionArgs, VerifyConnectionParamsResponse, UpdateConnectionResponse, UpdateConnectionArgs, GetConnectionSourcesResponse, GetConnectionSourcesArgs, GetConnectionSourceSchemaResponse, GetConnectionSourceSchemaArgs, GetConnectorSchemaResponse, GetConnectorSchemaArgs, GetConnectionTypedQueryDataArgs, ListConnectorIconsResponse, ExportConnectionResponse, ExportConnectionArgs, ImportConnectionResponse, ImportConnectionArgs, GetFileStatusResponse, GetFileStatusArgs, GetFileSourcesResponse, GetFileSourcesArgs, GetFileSourceStatusResponse, GetFileSourceStatusArgs, UpdateFileSourceResponse, UpdateFileSourceArgs, ApplySourceSettingsResponse, ApplySourceSettingsArgs, AddGoogleSheetResponse, AddGoogleSheetArgs, UpdateS3BasedConnectionDataResponse, UpdateS3BasedConnectionDataArgs, AddYandexDocumentResponse, AddYandexDocumentArgs, GetPresignedUrlResponse, DownloadPresignedUrlResponse, DownloadPresignedUrlArgs, StartWorkbookImportResponse, StartWorkbookImportArgs, GetWorkbookImportStatusResponse, GetWorkbookImportStatusArgs, StartWorkbookExportResponse, StartWorkbookExportArgs, GetWorkbookExportStatusResponse, GetWorkbookExportStatusArgs, GetWorkbookExportResultResponse, GetWorkbookExportResultArgs, CancelWorkbookExportResponse, CancelWorkbookExportArgs, CollectDashStatsResponse, CollectChartkitStatsResponse, CollectChartkitStatsArgs, GetEntriesDatasetsFieldsResponse, GetEntriesDatasetsFieldsArgs, GetWidgetsDatasetsFieldsResponse, GetWidgetsDatasetsFieldsArgs, RenderMarkdownArgs, BatchRenderMarkdownResponse, BatchRenderMarkdownArgs, DeleteEntryArgs, GetPublicationPreviewResponse, GetPublicationPreviewArgs, MixedSwitchPublicationStatusArgs, ResolveEntryByLinkComponentResponse, ResolveEntryByLinkArgs, GetEntryMetaStatusResponse, GetEntryMetaStatusArgs, GetEntriesInFolderResponse, GetEntriesInFolderArgs, GetEntryRelationsResponse, GetEntryRelationsArgs, GetBatchEntriesByIdsResponse, GetBatchEntriesByIdsArgs, GetEnrichedLinksTreeResponse, GetEnrichedLinksTreeArgs, GetNavigationListResponse, GetNavigationListArgs } from '.';
8
+ import { ColorPalette, DLUserSettings, MonitoringPreset, EntryScope, Dataset, SourceListingOptions, ApiV2ResultData, ConnectionData, ConnectionTypedQueryApiResponse, EntryUpdateMode, DashTabItemType, DashTabItemControlSourceType, DashTabItemControlElementType, DashLoadPriority, DashStats } from '..';
9
+ import { PrivateGetEntryArgs, ProxyCreateEntryArgs } from './us-private/types';
10
+ import { ListCollectionAccessBindingsResponse, ListCollectionAccessBindingsArgs, UpdateCollectionAccessBindingsArgs, ListWorkbookAccessBindingsResponse, ListWorkbookAccessBindingsArgs, UpdateWorkbookAccessBindingsArgs, ListSharedEntryAccessBindingsResponse, ListSharedEntryAccessBindingsArgs, UpdateSharedEntryAccessBindingsArgs, GetClaimsResponse, GetClaimsArgs, BatchListMembersResponse, BatchListMembersArgs } from './extensions/types';
11
+ import { SuccessResponse } from './auth/types/common';
12
+ import { AddUsersRolesArgs, UpdateUsersRolesArgs, RemoveUsersRolesArgs, CreateUserResponse, CreateUserArgs, DeleteUserArgs, GetUserProfileResponse, GetUserProfileArgs, UpdateUserProfileArgs, UpdateUserPasswordArgs, UpdateMyUserProfileArgs, UpdateMyUserPasswordArgs, GetUsersListResponse, GetUsersListArgs, GetUsersByIdsResponse, GetUsersByIdsArgs } from './auth/types/users';
13
+ import { RenderHtmlOutput } from '../modules/markdown/markdown';
14
+ export { authSchema } from './auth-schema';
15
+ export declare const schema: {
16
+ us: {
17
+ actions: {
18
+ setDefaultColorPalette: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, TenantFields, SetDefaultColorPaletteArgs, TenantFields>;
19
+ getOperation: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
20
+ id: string;
21
+ description: string;
22
+ createdBy: string;
23
+ createdAt: {
24
+ seconds: string;
25
+ nanos?: number | undefined;
26
+ };
27
+ modifiedAt: {
28
+ seconds: string;
29
+ nanos?: number | undefined;
30
+ };
31
+ metadata: Record<string, never>;
32
+ done: boolean;
33
+ }, GetDatalensOperationArgs, {
34
+ id: string;
35
+ description: string;
36
+ createdBy: string;
37
+ createdAt: {
38
+ seconds: string;
39
+ nanos?: number | undefined;
40
+ };
41
+ modifiedAt: {
42
+ seconds: string;
43
+ nanos?: number | undefined;
44
+ };
45
+ metadata: Record<string, never>;
46
+ done: boolean;
47
+ }>;
48
+ createEmbed: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, Embed, CreateEmbedArgs, Embed>;
49
+ listEmbeds: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ListEmbedsResponse, ListEmbedsArgs, ListEmbedsResponse>;
50
+ deleteEmbed: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, DeleteEmbedResponse, DeleteEmbedArgs, DeleteEmbedResponse>;
51
+ createColorPalette: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ColorPalette, CreateColorPaletteArgs, ColorPalette>;
52
+ getColorPalettesList: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetColorPalettesListResponse, undefined, GetColorPalettesListResponse>;
53
+ updateColorPalette: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ColorPalette, UpdateColorPaletteArgs, ColorPalette>;
54
+ deleteColorPalette: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, DeleteColorPaletteResponse, DeleteColorPaletteArgs, DeleteColorPaletteResponse>;
55
+ createWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
56
+ workbookId: string;
57
+ collectionId: string | null;
58
+ title: string;
59
+ description: string | null;
60
+ tenantId: string;
61
+ projectId: string | null;
62
+ meta: {
63
+ importId?: string | undefined;
64
+ } & Record<string, unknown>;
65
+ createdBy: string;
66
+ createdAt: string;
67
+ updatedBy: string;
68
+ updatedAt: string;
69
+ operation: {
70
+ id: string;
71
+ description: string;
72
+ createdBy: string;
73
+ createdAt: {
74
+ seconds: string;
75
+ nanos?: number | undefined;
76
+ };
77
+ modifiedAt: {
78
+ seconds: string;
79
+ nanos?: number | undefined;
80
+ };
81
+ metadata: Record<string, never>;
82
+ done: boolean;
83
+ };
84
+ status?: "active" | "creating" | "deleting" | undefined;
85
+ }>, NoInfer<{
86
+ title: string;
87
+ collectionId?: string | null | undefined;
88
+ description?: string | undefined;
89
+ }>, NoInfer<{
90
+ workbookId: string;
91
+ collectionId: string | null;
92
+ title: string;
93
+ description: string | null;
94
+ tenantId: string;
95
+ projectId: string | null;
96
+ meta: {
97
+ importId?: string | undefined;
98
+ } & Record<string, unknown>;
99
+ createdBy: string;
100
+ createdAt: string;
101
+ updatedBy: string;
102
+ updatedAt: string;
103
+ operation: {
104
+ id: string;
105
+ description: string;
106
+ createdBy: string;
107
+ createdAt: {
108
+ seconds: string;
109
+ nanos?: number | undefined;
110
+ };
111
+ modifiedAt: {
112
+ seconds: string;
113
+ nanos?: number | undefined;
114
+ };
115
+ metadata: Record<string, never>;
116
+ done: boolean;
117
+ };
118
+ status?: "active" | "creating" | "deleting" | undefined;
119
+ }>>;
120
+ getWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
121
+ workbookId: string;
122
+ collectionId: string | null;
123
+ title: string;
124
+ description: string | null;
125
+ tenantId: string;
126
+ projectId: string | null;
127
+ meta: {
128
+ importId?: string | undefined;
129
+ } & Record<string, unknown>;
130
+ createdBy: string;
131
+ createdAt: string;
132
+ updatedBy: string;
133
+ updatedAt: string;
134
+ permissions: {
135
+ listAccessBindings: boolean;
136
+ updateAccessBindings: boolean;
137
+ limitedView: boolean;
138
+ view: boolean;
139
+ update: boolean;
140
+ copy: boolean;
141
+ move: boolean;
142
+ publish: boolean;
143
+ embed: boolean;
144
+ delete: boolean;
145
+ };
146
+ status?: "active" | "creating" | "deleting" | undefined;
147
+ }>, NoInfer<{
148
+ workbookId: string;
149
+ includePermissionsInfo?: boolean | undefined;
150
+ }>, NoInfer<{
151
+ workbookId: string;
152
+ collectionId: string | null;
153
+ title: string;
154
+ description: string | null;
155
+ tenantId: string;
156
+ projectId: string | null;
157
+ meta: {
158
+ importId?: string | undefined;
159
+ } & Record<string, unknown>;
160
+ createdBy: string;
161
+ createdAt: string;
162
+ updatedBy: string;
163
+ updatedAt: string;
164
+ permissions: {
165
+ listAccessBindings: boolean;
166
+ updateAccessBindings: boolean;
167
+ limitedView: boolean;
168
+ view: boolean;
169
+ update: boolean;
170
+ copy: boolean;
171
+ move: boolean;
172
+ publish: boolean;
173
+ embed: boolean;
174
+ delete: boolean;
175
+ };
176
+ status?: "active" | "creating" | "deleting" | undefined;
177
+ }>>;
178
+ getWorkbooksList: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
179
+ workbooks: {
180
+ workbookId: string;
181
+ collectionId: string | null;
182
+ title: string;
183
+ description: string | null;
184
+ tenantId: string;
185
+ projectId: string | null;
186
+ meta: {
187
+ importId?: string | undefined;
188
+ } & Record<string, unknown>;
189
+ createdBy: string;
190
+ createdAt: string;
191
+ updatedBy: string;
192
+ updatedAt: string;
193
+ status?: "active" | "creating" | "deleting" | undefined;
194
+ permissions?: {
195
+ listAccessBindings: boolean;
196
+ updateAccessBindings: boolean;
197
+ limitedView: boolean;
198
+ view: boolean;
199
+ update: boolean;
200
+ copy: boolean;
201
+ move: boolean;
202
+ publish: boolean;
203
+ embed: boolean;
204
+ delete: boolean;
205
+ } | undefined;
206
+ }[];
207
+ nextPageToken?: string | undefined;
208
+ }>, NoInfer<{
209
+ collectionId?: string | null | undefined;
210
+ includePermissionsInfo?: boolean | undefined;
211
+ filterString?: string | undefined;
212
+ page?: number | undefined;
213
+ pageSize?: number | undefined;
214
+ orderField?: "title" | "createdAt" | "updatedAt" | undefined;
215
+ orderDirection?: "asc" | "desc" | undefined;
216
+ onlyMy?: boolean | undefined;
217
+ } | undefined>, NoInfer<{
218
+ workbooks: {
219
+ workbookId: string;
220
+ collectionId: string | null;
221
+ title: string;
222
+ description: string | null;
223
+ tenantId: string;
224
+ projectId: string | null;
225
+ meta: {
226
+ importId?: string | undefined;
227
+ } & Record<string, unknown>;
228
+ createdBy: string;
229
+ createdAt: string;
230
+ updatedBy: string;
231
+ updatedAt: string;
232
+ status?: "active" | "creating" | "deleting" | undefined;
233
+ permissions?: {
234
+ listAccessBindings: boolean;
235
+ updateAccessBindings: boolean;
236
+ limitedView: boolean;
237
+ view: boolean;
238
+ update: boolean;
239
+ copy: boolean;
240
+ move: boolean;
241
+ publish: boolean;
242
+ embed: boolean;
243
+ delete: boolean;
244
+ } | undefined;
245
+ }[];
246
+ nextPageToken?: string | undefined;
247
+ }>>;
248
+ updateWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
249
+ workbookId: string;
250
+ collectionId: string | null;
251
+ title: string;
252
+ description: string | null;
253
+ tenantId: string;
254
+ projectId: string | null;
255
+ meta: {
256
+ importId?: string | undefined;
257
+ } & Record<string, unknown>;
258
+ createdBy: string;
259
+ createdAt: string;
260
+ updatedBy: string;
261
+ updatedAt: string;
262
+ status?: "active" | "creating" | "deleting" | undefined;
263
+ }>, NoInfer<{
264
+ workbookId: string;
265
+ title?: string | undefined;
266
+ description?: string | undefined;
267
+ }>, NoInfer<{
268
+ workbookId: string;
269
+ collectionId: string | null;
270
+ title: string;
271
+ description: string | null;
272
+ tenantId: string;
273
+ projectId: string | null;
274
+ meta: {
275
+ importId?: string | undefined;
276
+ } & Record<string, unknown>;
277
+ createdBy: string;
278
+ createdAt: string;
279
+ updatedBy: string;
280
+ updatedAt: string;
281
+ status?: "active" | "creating" | "deleting" | undefined;
282
+ }>>;
283
+ moveWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
284
+ workbookId: string;
285
+ collectionId: string | null;
286
+ title: string;
287
+ description: string | null;
288
+ tenantId: string;
289
+ projectId: string | null;
290
+ meta: {
291
+ importId?: string | undefined;
292
+ } & Record<string, unknown>;
293
+ createdBy: string;
294
+ createdAt: string;
295
+ updatedBy: string;
296
+ updatedAt: string;
297
+ status?: "active" | "creating" | "deleting" | undefined;
298
+ }>, NoInfer<{
299
+ workbookId: string;
300
+ collectionId: string | null;
301
+ title?: string | undefined;
302
+ }>, NoInfer<{
303
+ workbookId: string;
304
+ collectionId: string | null;
305
+ title: string;
306
+ description: string | null;
307
+ tenantId: string;
308
+ projectId: string | null;
309
+ meta: {
310
+ importId?: string | undefined;
311
+ } & Record<string, unknown>;
312
+ createdBy: string;
313
+ createdAt: string;
314
+ updatedBy: string;
315
+ updatedAt: string;
316
+ status?: "active" | "creating" | "deleting" | undefined;
317
+ }>>;
318
+ moveWorkbooks: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
319
+ workbooks: {
320
+ workbookId: string;
321
+ collectionId: string | null;
322
+ title: string;
323
+ description: string | null;
324
+ tenantId: string;
325
+ projectId: string | null;
326
+ meta: {
327
+ importId?: string | undefined;
328
+ } & Record<string, unknown>;
329
+ createdBy: string;
330
+ createdAt: string;
331
+ updatedBy: string;
332
+ updatedAt: string;
333
+ status?: "active" | "creating" | "deleting" | undefined;
334
+ }[];
335
+ }>, NoInfer<{
336
+ workbookIds: string[];
337
+ collectionId: string | null;
338
+ }>, NoInfer<{
339
+ workbooks: {
340
+ workbookId: string;
341
+ collectionId: string | null;
342
+ title: string;
343
+ description: string | null;
344
+ tenantId: string;
345
+ projectId: string | null;
346
+ meta: {
347
+ importId?: string | undefined;
348
+ } & Record<string, unknown>;
349
+ createdBy: string;
350
+ createdAt: string;
351
+ updatedBy: string;
352
+ updatedAt: string;
353
+ status?: "active" | "creating" | "deleting" | undefined;
354
+ }[];
355
+ }>>;
356
+ deleteWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
357
+ workbookId: string;
358
+ collectionId: string | null;
359
+ title: string;
360
+ description: string | null;
361
+ tenantId: string;
362
+ projectId: string | null;
363
+ meta: {
364
+ importId?: string | undefined;
365
+ } & Record<string, unknown>;
366
+ createdBy: string;
367
+ createdAt: string;
368
+ updatedBy: string;
369
+ updatedAt: string;
370
+ status?: "active" | "creating" | "deleting" | undefined;
371
+ }>, NoInfer<{
372
+ workbookId: string;
373
+ }>, NoInfer<{
374
+ workbookId: string;
375
+ collectionId: string | null;
376
+ title: string;
377
+ description: string | null;
378
+ tenantId: string;
379
+ projectId: string | null;
380
+ meta: {
381
+ importId?: string | undefined;
382
+ } & Record<string, unknown>;
383
+ createdBy: string;
384
+ createdAt: string;
385
+ updatedBy: string;
386
+ updatedAt: string;
387
+ status?: "active" | "creating" | "deleting" | undefined;
388
+ }>>;
389
+ copyWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CopyWorkbookResponse, CopyWorkbookArgs, CopyWorkbookResponse>;
390
+ deleteWorkbooks: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
391
+ workbooks: {
392
+ workbookId: string;
393
+ collectionId: string | null;
394
+ title: string;
395
+ description: string | null;
396
+ tenantId: string;
397
+ projectId: string | null;
398
+ meta: {
399
+ importId?: string | undefined;
400
+ } & Record<string, unknown>;
401
+ createdBy: string;
402
+ createdAt: string;
403
+ updatedBy: string;
404
+ updatedAt: string;
405
+ status?: "active" | "creating" | "deleting" | undefined;
406
+ }[];
407
+ }>, NoInfer<{
408
+ workbookIds: string[];
409
+ }>, NoInfer<{
410
+ workbooks: {
411
+ workbookId: string;
412
+ collectionId: string | null;
413
+ title: string;
414
+ description: string | null;
415
+ tenantId: string;
416
+ projectId: string | null;
417
+ meta: {
418
+ importId?: string | undefined;
419
+ } & Record<string, unknown>;
420
+ createdBy: string;
421
+ createdAt: string;
422
+ updatedBy: string;
423
+ updatedAt: string;
424
+ status?: "active" | "creating" | "deleting" | undefined;
425
+ }[];
426
+ }>>;
427
+ getWorkbookEntries: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetWorkbookEntriesResponse, GetWorkbookEntriesArgs, GetWorkbookEntriesResponse>;
428
+ getWorkbookSharedEntries: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetWorkbookSharedEntriesResponse, GetWorkbookEntriesArgs, GetWorkbookSharedEntriesResponse>;
429
+ migrateEntriesToWorkbookByTransfer: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, MigrateEntriesToWorkbookResponse, MigrateEntriesToWorkbookArgs, MigrateEntriesToWorkbookResponse>;
430
+ migrateEntriesToWorkbookByCopy: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, MigrateEntriesToWorkbookResponse, MigrateEntriesToWorkbookArgs, MigrateEntriesToWorkbookResponse>;
431
+ getRootCollectionPermissions: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
432
+ createCollectionInRoot: boolean;
433
+ createWorkbookInRoot: boolean;
434
+ }>, unknown, NoInfer<{
435
+ createCollectionInRoot: boolean;
436
+ createWorkbookInRoot: boolean;
437
+ }>>;
438
+ createCollection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
439
+ collectionId: string;
440
+ title: string;
441
+ description: string | null;
442
+ parentId: string | null;
443
+ projectId: string | null;
444
+ tenantId: string;
445
+ createdBy: string;
446
+ createdAt: string;
447
+ updatedBy: string;
448
+ updatedAt: string;
449
+ meta: Record<string, unknown>;
450
+ operation?: {
451
+ id: string;
452
+ description: string;
453
+ createdBy: string;
454
+ createdAt: {
455
+ seconds: string;
456
+ nanos?: number | undefined;
457
+ };
458
+ modifiedAt: {
459
+ seconds: string;
460
+ nanos?: number | undefined;
461
+ };
462
+ metadata: Record<string, never>;
463
+ done: boolean;
464
+ } | undefined;
465
+ }>, NoInfer<{
466
+ title: string;
467
+ parentId: string | null;
468
+ description?: string | undefined;
469
+ }>, NoInfer<{
470
+ collectionId: string;
471
+ title: string;
472
+ description: string | null;
473
+ parentId: string | null;
474
+ projectId: string | null;
475
+ tenantId: string;
476
+ createdBy: string;
477
+ createdAt: string;
478
+ updatedBy: string;
479
+ updatedAt: string;
480
+ meta: Record<string, unknown>;
481
+ operation?: {
482
+ id: string;
483
+ description: string;
484
+ createdBy: string;
485
+ createdAt: {
486
+ seconds: string;
487
+ nanos?: number | undefined;
488
+ };
489
+ modifiedAt: {
490
+ seconds: string;
491
+ nanos?: number | undefined;
492
+ };
493
+ metadata: Record<string, never>;
494
+ done: boolean;
495
+ } | undefined;
496
+ }>>;
497
+ getCollection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
498
+ collectionId: string;
499
+ title: string;
500
+ description: string | null;
501
+ parentId: string | null;
502
+ projectId: string | null;
503
+ tenantId: string;
504
+ createdBy: string;
505
+ createdAt: string;
506
+ updatedBy: string;
507
+ updatedAt: string;
508
+ meta: Record<string, unknown>;
509
+ permissions?: {
510
+ listAccessBindings: boolean;
511
+ updateAccessBindings: boolean;
512
+ createSharedEntry: boolean;
513
+ createCollection: boolean;
514
+ createWorkbook: boolean;
515
+ limitedView: boolean;
516
+ view: boolean;
517
+ update: boolean;
518
+ copy: boolean;
519
+ move: boolean;
520
+ delete: boolean;
521
+ } | undefined;
522
+ }>, NoInfer<{
523
+ collectionId: string;
524
+ includePermissionsInfo?: boolean | undefined;
525
+ }>, NoInfer<{
526
+ collectionId: string;
527
+ title: string;
528
+ description: string | null;
529
+ parentId: string | null;
530
+ projectId: string | null;
531
+ tenantId: string;
532
+ createdBy: string;
533
+ createdAt: string;
534
+ updatedBy: string;
535
+ updatedAt: string;
536
+ meta: Record<string, unknown>;
537
+ permissions?: {
538
+ listAccessBindings: boolean;
539
+ updateAccessBindings: boolean;
540
+ createSharedEntry: boolean;
541
+ createCollection: boolean;
542
+ createWorkbook: boolean;
543
+ limitedView: boolean;
544
+ view: boolean;
545
+ update: boolean;
546
+ copy: boolean;
547
+ move: boolean;
548
+ delete: boolean;
549
+ } | undefined;
550
+ }>>;
551
+ getStructureItems: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetStructureItemsResponse, GetStructureItemsArgs, GetStructureItemsResponse>;
552
+ getCollectionBreadcrumbs: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
553
+ collectionId: string;
554
+ title: string;
555
+ description: string | null;
556
+ parentId: string | null;
557
+ projectId: string | null;
558
+ tenantId: string;
559
+ createdBy: string;
560
+ createdAt: string;
561
+ updatedBy: string;
562
+ updatedAt: string;
563
+ meta: Record<string, unknown>;
564
+ permissions?: {
565
+ listAccessBindings: boolean;
566
+ updateAccessBindings: boolean;
567
+ createSharedEntry: boolean;
568
+ createCollection: boolean;
569
+ createWorkbook: boolean;
570
+ limitedView: boolean;
571
+ view: boolean;
572
+ update: boolean;
573
+ copy: boolean;
574
+ move: boolean;
575
+ delete: boolean;
576
+ } | undefined;
577
+ }[]>, NoInfer<{
578
+ collectionId: string;
579
+ includePermissionsInfo?: boolean | undefined;
580
+ }>, NoInfer<{
581
+ collectionId: string;
582
+ title: string;
583
+ description: string | null;
584
+ parentId: string | null;
585
+ projectId: string | null;
586
+ tenantId: string;
587
+ createdBy: string;
588
+ createdAt: string;
589
+ updatedBy: string;
590
+ updatedAt: string;
591
+ meta: Record<string, unknown>;
592
+ permissions?: {
593
+ listAccessBindings: boolean;
594
+ updateAccessBindings: boolean;
595
+ createSharedEntry: boolean;
596
+ createCollection: boolean;
597
+ createWorkbook: boolean;
598
+ limitedView: boolean;
599
+ view: boolean;
600
+ update: boolean;
601
+ copy: boolean;
602
+ move: boolean;
603
+ delete: boolean;
604
+ } | undefined;
605
+ }[]>>;
606
+ deleteCollection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
607
+ collections: {
608
+ collectionId: string;
609
+ title: string;
610
+ description: string | null;
611
+ parentId: string | null;
612
+ projectId: string | null;
613
+ tenantId: string;
614
+ createdBy: string;
615
+ createdAt: string;
616
+ updatedBy: string;
617
+ updatedAt: string;
618
+ meta: Record<string, unknown>;
619
+ }[];
620
+ }>, NoInfer<{
621
+ collectionId: string;
622
+ }>, NoInfer<{
623
+ collections: {
624
+ collectionId: string;
625
+ title: string;
626
+ description: string | null;
627
+ parentId: string | null;
628
+ projectId: string | null;
629
+ tenantId: string;
630
+ createdBy: string;
631
+ createdAt: string;
632
+ updatedBy: string;
633
+ updatedAt: string;
634
+ meta: Record<string, unknown>;
635
+ }[];
636
+ }>>;
637
+ updateCollection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
638
+ collectionId: string;
639
+ title: string;
640
+ description: string | null;
641
+ parentId: string | null;
642
+ projectId: string | null;
643
+ tenantId: string;
644
+ createdBy: string;
645
+ createdAt: string;
646
+ updatedBy: string;
647
+ updatedAt: string;
648
+ meta: Record<string, unknown>;
649
+ }>, NoInfer<{
650
+ collectionId: string;
651
+ title?: string | undefined;
652
+ description?: string | undefined;
653
+ }>, NoInfer<{
654
+ collectionId: string;
655
+ title: string;
656
+ description: string | null;
657
+ parentId: string | null;
658
+ projectId: string | null;
659
+ tenantId: string;
660
+ createdBy: string;
661
+ createdAt: string;
662
+ updatedBy: string;
663
+ updatedAt: string;
664
+ meta: Record<string, unknown>;
665
+ }>>;
666
+ moveCollection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
667
+ collectionId: string;
668
+ title: string;
669
+ description: string | null;
670
+ parentId: string | null;
671
+ projectId: string | null;
672
+ tenantId: string;
673
+ createdBy: string;
674
+ createdAt: string;
675
+ updatedBy: string;
676
+ updatedAt: string;
677
+ meta: Record<string, unknown>;
678
+ }>, NoInfer<{
679
+ collectionId: string;
680
+ parentId: string | null;
681
+ title?: string | undefined;
682
+ }>, NoInfer<{
683
+ collectionId: string;
684
+ title: string;
685
+ description: string | null;
686
+ parentId: string | null;
687
+ projectId: string | null;
688
+ tenantId: string;
689
+ createdBy: string;
690
+ createdAt: string;
691
+ updatedBy: string;
692
+ updatedAt: string;
693
+ meta: Record<string, unknown>;
694
+ }>>;
695
+ moveCollections: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
696
+ collections: {
697
+ collectionId: string;
698
+ title: string;
699
+ description: string | null;
700
+ parentId: string | null;
701
+ projectId: string | null;
702
+ tenantId: string;
703
+ createdBy: string;
704
+ createdAt: string;
705
+ updatedBy: string;
706
+ updatedAt: string;
707
+ meta: Record<string, unknown>;
708
+ }[];
709
+ }>, NoInfer<{
710
+ collectionIds: string[];
711
+ parentId: string | null;
712
+ }>, NoInfer<{
713
+ collections: {
714
+ collectionId: string;
715
+ title: string;
716
+ description: string | null;
717
+ parentId: string | null;
718
+ projectId: string | null;
719
+ tenantId: string;
720
+ createdBy: string;
721
+ createdAt: string;
722
+ updatedBy: string;
723
+ updatedAt: string;
724
+ meta: Record<string, unknown>;
725
+ }[];
726
+ }>>;
727
+ deleteCollections: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
728
+ collections: {
729
+ collectionId: string;
730
+ title: string;
731
+ description: string | null;
732
+ parentId: string | null;
733
+ projectId: string | null;
734
+ tenantId: string;
735
+ createdBy: string;
736
+ createdAt: string;
737
+ updatedBy: string;
738
+ updatedAt: string;
739
+ meta: Record<string, unknown>;
740
+ }[];
741
+ }>, NoInfer<{
742
+ collectionIds: string[];
743
+ }>, NoInfer<{
744
+ collections: {
745
+ collectionId: string;
746
+ title: string;
747
+ description: string | null;
748
+ parentId: string | null;
749
+ projectId: string | null;
750
+ tenantId: string;
751
+ createdBy: string;
752
+ createdAt: string;
753
+ updatedBy: string;
754
+ updatedAt: string;
755
+ meta: Record<string, unknown>;
756
+ }[];
757
+ }>>;
758
+ _ensurePersonalFolderIsPresent: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EntryFields, undefined, EntryFields>;
759
+ copyTemplate: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CopyTemplateResponse, CopyTemplateArgs, CopyTemplateResponse>;
760
+ updateUserSettings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
761
+ userSettings: DLUserSettings;
762
+ }, {
763
+ newSettings: Partial< DLUserSettings>;
764
+ }, {
765
+ userSettings: DLUserSettings;
766
+ }>;
767
+ getUserSettings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
768
+ userSettings: DLUserSettings;
769
+ }, undefined, {
770
+ userSettings: DLUserSettings;
771
+ }>;
772
+ getDashState: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetDashStateResponse, GetDashStateArgs, GetDashStateResponse>;
773
+ createDashState: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateDashStateResponse, CreateDashStateArgs, CreateDashStateResponse>;
774
+ _createEditorChart: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateEditorChartResponse, CreateEditorChartArgs, CreateEditorChartResponse>;
775
+ _updateEditorChart: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, UpdateEditorChartResponse, UpdateEditorChartArgs, UpdateEditorChartResponse>;
776
+ addFavorite: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, AddFavoriteResponse, AddFavoriteArgs, AddFavoriteResponse>;
777
+ deleteFavorite: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, DeleteFavoriteResponse, DeleteFavoriteArgs, DeleteFavoriteResponse>;
778
+ renameFavorite: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, RenameFavoriteResponse, RenameFavoriteArgs, RenameFavoriteResponse>;
779
+ getFavorites: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetFavoritesOutput, GetFavoritesArgs, GetFavoritesResponse>;
780
+ createLock: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateLockResponse, CreateLockArgs, CreateLockResponse>;
781
+ extendLock: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ExtendLockResponse, ExtendLockArgs, ExtendLockResponse>;
782
+ deleteLock: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, DeleteLockResponse, DeleteLockArgs, DeleteLockResponse>;
783
+ getPreset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, MonitoringPreset, GetPresetArgs, MonitoringPreset>;
784
+ _createEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateEntryResponse, CreateEntryArgs, CreateEntryResponse>;
785
+ _updateEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, UpdateEntryResponse, UpdateEntryArgs, UpdateEntryResponse>;
786
+ getEntriesRelations: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
787
+ relations: {
788
+ entryId: string;
789
+ key: string | null;
790
+ scope: EntryScope;
791
+ type: string;
792
+ createdAt: string;
793
+ public: boolean;
794
+ tenantId: string | null;
795
+ workbookId: string | null;
796
+ collectionId: string | null;
797
+ isLocked?: boolean | undefined;
798
+ permissions?: {
799
+ execute: boolean;
800
+ read: boolean;
801
+ edit: boolean;
802
+ admin: boolean;
803
+ } | undefined;
804
+ fullPermissions?: {
805
+ listAccessBindings: boolean;
806
+ updateAccessBindings: boolean;
807
+ limitedView: boolean;
808
+ view: boolean;
809
+ update: boolean;
810
+ copy: boolean;
811
+ move: boolean;
812
+ delete: boolean;
813
+ createEntryBinding: boolean;
814
+ createLimitedEntryBinding: boolean;
815
+ } | undefined;
816
+ }[];
817
+ nextPageToken?: string | undefined;
818
+ }>, NoInfer<{
819
+ entryIds: string[];
820
+ linkDirection?: "from" | "to" | undefined;
821
+ includePermissionsInfo?: boolean | undefined;
822
+ limit?: number | undefined;
823
+ pageToken?: string | undefined;
824
+ scope?: EntryScope | undefined;
825
+ }>, NoInfer<{
826
+ relations: {
827
+ entryId: string;
828
+ key: string | null;
829
+ scope: EntryScope;
830
+ type: string;
831
+ createdAt: string;
832
+ public: boolean;
833
+ tenantId: string | null;
834
+ workbookId: string | null;
835
+ collectionId: string | null;
836
+ isLocked?: boolean | undefined;
837
+ permissions?: {
838
+ execute: boolean;
839
+ read: boolean;
840
+ edit: boolean;
841
+ admin: boolean;
842
+ } | undefined;
843
+ fullPermissions?: {
844
+ listAccessBindings: boolean;
845
+ updateAccessBindings: boolean;
846
+ limitedView: boolean;
847
+ view: boolean;
848
+ update: boolean;
849
+ copy: boolean;
850
+ move: boolean;
851
+ delete: boolean;
852
+ createEntryBinding: boolean;
853
+ createLimitedEntryBinding: boolean;
854
+ } | undefined;
855
+ }[];
856
+ nextPageToken?: string | undefined;
857
+ }>>;
858
+ listDirectory: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
859
+ nextPageToken: boolean;
860
+ breadCrumbs: {
861
+ title: string;
862
+ path: string;
863
+ entryId: string;
864
+ isLocked: boolean;
865
+ permissions: {
866
+ execute: boolean;
867
+ read: boolean;
868
+ edit: boolean;
869
+ admin: boolean;
870
+ };
871
+ }[];
872
+ entries: {
873
+ entryId: string;
874
+ key: string;
875
+ scope: string;
876
+ type: string;
877
+ meta: Record<string, unknown> | null;
878
+ createdAt: string;
879
+ updatedAt: string;
880
+ createdBy: string;
881
+ updatedBy: string;
882
+ savedId: string;
883
+ publishedId: string | null;
884
+ hidden: boolean;
885
+ workbookId: string;
886
+ collectionId: string | null;
887
+ isFavorite: boolean;
888
+ isLocked: boolean;
889
+ name: string;
890
+ workbookTitle?: string | null | undefined;
891
+ collectionTitle?: string | null | undefined;
892
+ permissions?: {
893
+ execute: boolean;
894
+ read: boolean;
895
+ edit: boolean;
896
+ admin: boolean;
897
+ } | undefined;
898
+ }[];
899
+ }>, NoInfer<{
900
+ path?: string | undefined;
901
+ createdBy?: string | string[] | undefined;
902
+ orderBy?: {
903
+ field: "name" | "createdAt";
904
+ direction: "asc" | "desc";
905
+ } | undefined;
906
+ filters?: {
907
+ name?: string | undefined;
908
+ } | undefined;
909
+ page?: number | undefined;
910
+ pageSize?: number | undefined;
911
+ includePermissionsInfo?: boolean | undefined;
912
+ }>, NoInfer<{
913
+ hasNextPage: boolean;
914
+ breadCrumbs: {
915
+ title: string;
916
+ path: string;
917
+ entryId: string;
918
+ isLocked: boolean;
919
+ permissions: {
920
+ execute: boolean;
921
+ read: boolean;
922
+ edit: boolean;
923
+ admin: boolean;
924
+ };
925
+ }[];
926
+ entries: {
927
+ entryId: string;
928
+ key: string;
929
+ scope: string;
930
+ type: string;
931
+ meta: Record<string, unknown> | null;
932
+ createdAt: string;
933
+ updatedAt: string;
934
+ createdBy: string;
935
+ updatedBy: string;
936
+ savedId: string;
937
+ publishedId: string | null;
938
+ hidden: boolean;
939
+ workbookId: string;
940
+ collectionId: string | null;
941
+ isFavorite: boolean;
942
+ isLocked: boolean;
943
+ name: string;
944
+ workbookTitle?: string | null | undefined;
945
+ collectionTitle?: string | null | undefined;
946
+ permissions?: {
947
+ execute: boolean;
948
+ read: boolean;
949
+ edit: boolean;
950
+ admin: boolean;
951
+ } | undefined;
952
+ }[];
953
+ }>>;
954
+ getEntries: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
955
+ entries: ({
956
+ isLocked: true;
957
+ entryId: string;
958
+ scope: string;
959
+ type: string;
960
+ } | {
961
+ entryId: string;
962
+ key: string;
963
+ scope: string;
964
+ type: string;
965
+ meta: Record<string, unknown> | null;
966
+ createdAt: string;
967
+ updatedAt: string;
968
+ createdBy: string;
969
+ updatedBy: string;
970
+ savedId: string;
971
+ publishedId: string | null;
972
+ hidden: boolean;
973
+ workbookId: string | null;
974
+ collectionId: string | null;
975
+ isFavorite: boolean;
976
+ links: Record<string, string> | null;
977
+ workbookTitle?: string | null | undefined;
978
+ collectionTitle?: string | null | undefined;
979
+ isLocked?: false | undefined;
980
+ permissions?: {
981
+ execute: boolean;
982
+ read: boolean;
983
+ edit: boolean;
984
+ admin: boolean;
985
+ } | undefined;
986
+ data?: Record<string, unknown> | undefined;
987
+ })[];
988
+ nextPageToken?: string | undefined;
989
+ }>, NoInfer<{
990
+ excludeLocked?: boolean | undefined;
991
+ includeData?: boolean | undefined;
992
+ includeLinks?: boolean | undefined;
993
+ filters?: {
994
+ name?: string | undefined;
995
+ } | undefined;
996
+ orderBy?: {
997
+ field: "name" | "createdAt";
998
+ direction: "asc" | "desc";
999
+ } | undefined;
1000
+ createdBy?: string | string[] | undefined;
1001
+ page?: number | undefined;
1002
+ pageSize?: number | undefined;
1003
+ includePermissionsInfo?: boolean | undefined;
1004
+ ignoreWorkbookEntries?: boolean | undefined;
1005
+ } & ({
1006
+ scope: string;
1007
+ ids?: string | string[] | undefined;
1008
+ } | {
1009
+ ids: string | string[];
1010
+ scope?: string | undefined;
1011
+ })>, NoInfer<{
1012
+ hasNextPage: boolean;
1013
+ entries: ({
1014
+ isLocked: true;
1015
+ entryId: string;
1016
+ scope: string;
1017
+ type: string;
1018
+ name: string;
1019
+ } | {
1020
+ entryId: string;
1021
+ key: string;
1022
+ scope: string;
1023
+ type: string;
1024
+ meta: Record<string, unknown> | null;
1025
+ createdAt: string;
1026
+ updatedAt: string;
1027
+ createdBy: string;
1028
+ updatedBy: string;
1029
+ savedId: string;
1030
+ publishedId: string | null;
1031
+ hidden: boolean;
1032
+ workbookId: string | null;
1033
+ collectionId: string | null;
1034
+ isFavorite: boolean;
1035
+ links: Record<string, string> | null;
1036
+ name: string;
1037
+ workbookTitle?: string | null | undefined;
1038
+ collectionTitle?: string | null | undefined;
1039
+ isLocked?: false | undefined;
1040
+ permissions?: {
1041
+ execute: boolean;
1042
+ read: boolean;
1043
+ edit: boolean;
1044
+ admin: boolean;
1045
+ } | undefined;
1046
+ data?: Record<string, unknown> | undefined;
1047
+ })[];
1048
+ }>>;
1049
+ getEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryResponse, GetEntryArgs, GetEntryResponse>;
1050
+ _getEntryWithAudit: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryResponse, GetEntryArgs, GetEntryResponse>;
1051
+ getEntryByKey: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryByKeyResponse, GetEntryByKeyArgs, GetEntryByKeyResponse>;
1052
+ getEntryMeta: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryMetaResponse, GetEntryMetaArgs, GetEntryMetaResponse>;
1053
+ getRevisions: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetRevisionsOutput, GetRevisionsArgs, GetRevisionsResponse>;
1054
+ getRelations: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetRelationsOutput, GetRelationsArgs, GetRelationsResponse>;
1055
+ moveEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, MoveEntryResponse, MoveEntryArgs, MoveEntryResponse>;
1056
+ copyEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CopyEntryResponse, CopyEntryArgs, CopyEntryResponse>;
1057
+ copyWorkbookEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EntryFields, CopyWorkbookEntryArgs, EntryFields>;
1058
+ copyEntriesToWorkbook: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CopyEntriesToWorkbookResponse, CopyEntriesToWorkbookArgs, CopyEntriesToWorkbookResponse>;
1059
+ renameEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, RenameEntryResponse, RenameEntryArgs, RenameEntryResponse>;
1060
+ createFolder: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateFolderResponse, CreateFolderArgs, CreateFolderResponse>;
1061
+ _deleteUSEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, DeleteUSEntryResponse, DeleteUSEntryArgs, DeleteUSEntryResponse>;
1062
+ _switchPublicationStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SwitchPublicationStatusResponse, SwitchPublicationStatusArgs, SwitchPublicationStatusResponse>;
1063
+ _getEntriesByKeyPattern: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntriesByKeyPatternResponse, GetEntriesByKeyPatternArgs, GetEntriesByKeyPatternResponse>;
1064
+ getRelationsGraph: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetRelationsGraphResponse, GetRelationsGraphArgs, GetRelationsGraphResponse>;
1065
+ getEntriesAnnotation: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntriesAnnotationResponse, GetEntriesAnnotationArgs, GetEntriesAnnotationResponse>;
1066
+ getSharedEntryDelegation: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EntityBindingsResponse, Omit< EntityBindingsArgs, "delegation">, EntityBindingsResponse>;
1067
+ createSharedEntryBinding: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EntityBindingsResponse, EntityBindingsArgs, EntityBindingsResponse>;
1068
+ updateSharedEntryBinding: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EntityBindingsResponse, EntityBindingsArgs, EntityBindingsResponse>;
1069
+ deleteSharedEntryBinding: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EntityBindingsResponse, Omit< EntityBindingsArgs, "delegation">, EntityBindingsResponse>;
1070
+ getSharedEntryBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetSharedEntryBindingsResponse, GetSharedEntryBindingsArgs, GetSharedEntryBindingsResponse>;
1071
+ getSharedEntryWorkbookRelations: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetSharedEntryWorkbookRelationsResponse, GetSharedEntryWorkbookRelationsArgs, GetSharedEntryWorkbookRelationsResponse>;
1072
+ moveSharedEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, MoveEntryResponse, MoveSharedEntryArgs, MoveEntryResponse>;
1073
+ };
1074
+ endpoints: Record<string, Record<string, EndpointsConfig>>;
1075
+ serviceName: string;
1076
+ };
1077
+ usPrivate: {
1078
+ actions: {
1079
+ _getTenantDetails: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, TenantFields, GetTenantDetailsArgs, TenantFields>;
1080
+ _getEntryMeta: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryMetaResponse, GetEntryMetaArgs, GetEntryMetaResponse>;
1081
+ _proxyGetEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryResponse, PrivateGetEntryArgs, GetEntryResponse>;
1082
+ _proxyCreateEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryResponse, ProxyCreateEntryArgs, GetEntryResponse>;
1083
+ };
1084
+ endpoints: Record<string, Record<string, EndpointsConfig>>;
1085
+ serviceName: string;
1086
+ getAuthArgs: (req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, res: Response<any, Record<string, any>>) => Record<string, string>;
1087
+ getAuthHeaders: (params: GetAuthHeadersParams<Record<string, unknown>>) => Record<string, string> | undefined;
1088
+ };
1089
+ bi: {
1090
+ actions: {
1091
+ getOAuthUri: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetOAuthUriResponse, GetOAuthUriArgs, GetOAuthUriResponse>;
1092
+ getOAuthToken: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetOAuthTokenResponse, GetOAuthTokenArgs, GetOAuthTokenResponse>;
1093
+ getSources: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetSourceResponse, GetSourceArgs, GetSourceResponse>;
1094
+ getDatasetByVersion: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer< Dataset>, NoInfer< GetDatasetByVersionArgs>, NoInfer< Dataset>>;
1095
+ getDbNames: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetDbNamesResponse, Pick< GetSourceArgs, "connectionId">, GetDbNamesResponse>;
1096
+ getSourceListingOptions: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SourceListingOptions, Pick< GetSourceArgs, "connectionId">, SourceListingOptions>;
1097
+ getFieldTypes: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetFieldTypesResponse, undefined, GetFieldTypesResponse>;
1098
+ getDataSetFieldsById: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetDataSetFieldsByIdResponse, GetDataSetFieldsByIdArgs, GetDataSetFieldsByIdResponse>;
1099
+ embedsGetDataSetFieldsById: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetDataSetFieldsByIdResponse, Omit< GetDataSetFieldsByIdArgs, "workbookId">, GetDataSetFieldsByIdResponse>;
1100
+ publicGetDataSetFieldsById: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetDataSetFieldsByIdResponse, Omit< GetDataSetFieldsByIdArgs, "workbookId">, GetDataSetFieldsByIdResponse>;
1101
+ checkDatasetsForPublication: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CheckDatasetsForPublicationResponse, CheckDatasetsForPublicationArgs, CheckDatasetsForPublicationResponse>;
1102
+ checkConnectionsForPublication: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CheckConnectionsForPublicationResponse, CheckConnectionsForPublicationArgs, CheckConnectionsForPublicationResponse>;
1103
+ createDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer< CreateDatasetResponse>, NoInfer< CreateDatasetArgs>, NoInfer< CreateDatasetResponse>>;
1104
+ validateDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer< ValidateDatasetResponse>, NoInfer< ValidateDatasetArgs>, NoInfer< ValidateDatasetResponse>>;
1105
+ updateDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1106
+ dataset: Dataset["dataset"];
1107
+ options: Dataset["options"];
1108
+ }>, NoInfer< UpdateDatasetArgs>, NoInfer<{
1109
+ dataset: Dataset["dataset"];
1110
+ options: Dataset["options"];
1111
+ }>>;
1112
+ getPreview: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, Partial< DistinctResult & DistinctRegularResult>, GetPreviewArgs, Partial< DistinctResult & DistinctRegularResult>>;
1113
+ validateDatasetFormula: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ValidateDatasetFormulaResponse, ValidateDatasetFormulaArgs, ValidateDatasetFormulaResponse>;
1114
+ copyDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
1115
+ id: string;
1116
+ }, CopyDatasetArgs, {
1117
+ id: string;
1118
+ }>;
1119
+ getDistinctsApiV2: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ApiV2ResultData, GetDistinctsApiV2Args, GetDistinctsApiV2TransformedResponse>;
1120
+ getPublicDistinctsApiV2: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ApiV2ResultData, GetDistinctsApiV2Args, GetDistinctsApiV2TransformedResponse>;
1121
+ deleteDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, unknown, NoInfer<{
1122
+ datasetId: string;
1123
+ }>, unknown>;
1124
+ _proxyExportDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ExportDatasetResponse, ExportDatasetArgs, ExportDatasetResponse>;
1125
+ _proxyImportDataset: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ImportDatasetResponse, ImportDatasetArgs, ImportDatasetResponse>;
1126
+ ensureUploadRobot: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, EnsureUploadRobotResponse, {
1127
+ connectionId: string;
1128
+ }, EnsureUploadRobotResponse>;
1129
+ getAvailableCounters: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetAvailableCountersResponse, {
1130
+ connectionId: string;
1131
+ }, GetAvailableCountersResponse>;
1132
+ getConnectors: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetConnectorsResponse, undefined, GetConnectorsResponse>;
1133
+ getConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer< ConnectionData>, NoInfer< GetConnectionArgs>, NoInfer< ConnectionData>>;
1134
+ createConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer< CreateConnectionResponse>, NoInfer< ConnectionData>, NoInfer< CreateConnectionResponse>>;
1135
+ verifyConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, VerifyConnectionResponse, VerifyConnectionArgs, VerifyConnectionResponse>;
1136
+ verifyConnectionParams: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, VerifyConnectionParamsResponse, ConnectionData, VerifyConnectionParamsResponse>;
1137
+ updateConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, UpdateConnectionResponse, NoInfer< UpdateConnectionArgs>, UpdateConnectionResponse>;
1138
+ deleteConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, unknown, NoInfer<{
1139
+ connectionId: string;
1140
+ }>, unknown>;
1141
+ getConnectionSources: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetConnectionSourcesResponse, GetConnectionSourcesArgs, GetConnectionSourcesResponse>;
1142
+ getConnectionSourceSchema: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetConnectionSourceSchemaResponse, GetConnectionSourceSchemaArgs, GetConnectionSourceSchemaResponse>;
1143
+ getConnectorSchema: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetConnectorSchemaResponse, GetConnectorSchemaArgs, GetConnectorSchemaResponse>;
1144
+ getConnectionTypedQueryData: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ConnectionTypedQueryApiResponse, GetConnectionTypedQueryDataArgs, ConnectionTypedQueryApiResponse>;
1145
+ listConnectorIcons: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ListConnectorIconsResponse, undefined, ListConnectorIconsResponse>;
1146
+ _proxyExportConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ExportConnectionResponse, ExportConnectionArgs, ExportConnectionResponse>;
1147
+ _proxyImportConnection: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ImportConnectionResponse, ImportConnectionArgs, ImportConnectionResponse>;
1148
+ };
1149
+ endpoints: Record<string, Record<string, EndpointsConfig>>;
1150
+ serviceName: string;
1151
+ };
1152
+ biConverter: {
1153
+ actions: {
1154
+ getFileStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetFileStatusResponse, GetFileStatusArgs, GetFileStatusResponse>;
1155
+ getFileSources: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetFileSourcesResponse, GetFileSourcesArgs, GetFileSourcesResponse>;
1156
+ getFileSourceStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetFileSourceStatusResponse, GetFileSourceStatusArgs, GetFileSourceStatusResponse>;
1157
+ updateFileSource: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, UpdateFileSourceResponse, UpdateFileSourceArgs, UpdateFileSourceResponse>;
1158
+ applySourceSettings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ApplySourceSettingsResponse, ApplySourceSettingsArgs, ApplySourceSettingsResponse>;
1159
+ addGoogleSheet: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, AddGoogleSheetResponse, AddGoogleSheetArgs, AddGoogleSheetResponse>;
1160
+ updateS3BasedConnectionData: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, UpdateS3BasedConnectionDataResponse, UpdateS3BasedConnectionDataArgs, UpdateS3BasedConnectionDataResponse>;
1161
+ addYandexDocument: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, AddYandexDocumentResponse, AddYandexDocumentArgs, AddYandexDocumentResponse>;
1162
+ getPresignedUrl: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetPresignedUrlResponse, undefined, GetPresignedUrlResponse>;
1163
+ downloadPresignedUrl: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, DownloadPresignedUrlResponse, DownloadPresignedUrlArgs, DownloadPresignedUrlResponse>;
1164
+ };
1165
+ endpoints: Record<string, Record<string, EndpointsConfig>>;
1166
+ serviceName: string;
1167
+ };
1168
+ extensions: {
1169
+ actions: {
1170
+ listCollectionAccessBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ListCollectionAccessBindingsResponse, ListCollectionAccessBindingsArgs, ListCollectionAccessBindingsResponse>;
1171
+ updateCollectionAccessBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
1172
+ id: string;
1173
+ description: string;
1174
+ createdBy: string;
1175
+ createdAt: {
1176
+ seconds: string;
1177
+ nanos?: number | undefined;
1178
+ };
1179
+ modifiedAt: {
1180
+ seconds: string;
1181
+ nanos?: number | undefined;
1182
+ };
1183
+ metadata: Record<string, never>;
1184
+ done: boolean;
1185
+ }, UpdateCollectionAccessBindingsArgs, {
1186
+ id: string;
1187
+ description: string;
1188
+ createdBy: string;
1189
+ createdAt: {
1190
+ seconds: string;
1191
+ nanos?: number | undefined;
1192
+ };
1193
+ modifiedAt: {
1194
+ seconds: string;
1195
+ nanos?: number | undefined;
1196
+ };
1197
+ metadata: Record<string, never>;
1198
+ done: boolean;
1199
+ }>;
1200
+ listWorkbookAccessBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ListWorkbookAccessBindingsResponse, ListWorkbookAccessBindingsArgs, ListWorkbookAccessBindingsResponse>;
1201
+ updateWorkbookAccessBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
1202
+ id: string;
1203
+ description: string;
1204
+ createdBy: string;
1205
+ createdAt: {
1206
+ seconds: string;
1207
+ nanos?: number | undefined;
1208
+ };
1209
+ modifiedAt: {
1210
+ seconds: string;
1211
+ nanos?: number | undefined;
1212
+ };
1213
+ metadata: Record<string, never>;
1214
+ done: boolean;
1215
+ }, UpdateWorkbookAccessBindingsArgs, {
1216
+ id: string;
1217
+ description: string;
1218
+ createdBy: string;
1219
+ createdAt: {
1220
+ seconds: string;
1221
+ nanos?: number | undefined;
1222
+ };
1223
+ modifiedAt: {
1224
+ seconds: string;
1225
+ nanos?: number | undefined;
1226
+ };
1227
+ metadata: Record<string, never>;
1228
+ done: boolean;
1229
+ }>;
1230
+ listSharedEntryAccessBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ListSharedEntryAccessBindingsResponse, ListSharedEntryAccessBindingsArgs, ListSharedEntryAccessBindingsResponse>;
1231
+ updateSharedEntryAccessBindings: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, {
1232
+ id: string;
1233
+ description: string;
1234
+ createdBy: string;
1235
+ createdAt: {
1236
+ seconds: string;
1237
+ nanos?: number | undefined;
1238
+ };
1239
+ modifiedAt: {
1240
+ seconds: string;
1241
+ nanos?: number | undefined;
1242
+ };
1243
+ metadata: Record<string, never>;
1244
+ done: boolean;
1245
+ }, UpdateSharedEntryAccessBindingsArgs, {
1246
+ id: string;
1247
+ description: string;
1248
+ createdBy: string;
1249
+ createdAt: {
1250
+ seconds: string;
1251
+ nanos?: number | undefined;
1252
+ };
1253
+ modifiedAt: {
1254
+ seconds: string;
1255
+ nanos?: number | undefined;
1256
+ };
1257
+ metadata: Record<string, never>;
1258
+ done: boolean;
1259
+ }>;
1260
+ getClaims: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetClaimsResponse, GetClaimsArgs, GetClaimsResponse>;
1261
+ batchListMembers: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, BatchListMembersResponse, BatchListMembersArgs, BatchListMembersResponse>;
1262
+ };
1263
+ serviceName: string;
1264
+ };
1265
+ auth: {
1266
+ actions: {
1267
+ addUsersRoles: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, AddUsersRolesArgs, SuccessResponse>;
1268
+ updateUsersRoles: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, UpdateUsersRolesArgs, SuccessResponse>;
1269
+ removeUsersRoles: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, RemoveUsersRolesArgs, SuccessResponse>;
1270
+ createUser: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateUserResponse, CreateUserArgs, CreateUserResponse>;
1271
+ deleteUser: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, DeleteUserArgs, SuccessResponse>;
1272
+ getUserProfile: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetUserProfileResponse, GetUserProfileArgs, GetUserProfileResponse>;
1273
+ updateUserProfile: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, UpdateUserProfileArgs, SuccessResponse>;
1274
+ updateUserPassword: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, UpdateUserPasswordArgs, SuccessResponse>;
1275
+ getMyUserProfile: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetUserProfileResponse, undefined, GetUserProfileResponse>;
1276
+ updateMyUserProfile: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, UpdateMyUserProfileArgs, SuccessResponse>;
1277
+ updateMyUserPassword: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SuccessResponse, UpdateMyUserPasswordArgs, SuccessResponse>;
1278
+ getUsersList: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetUsersListResponse, GetUsersListArgs, GetUsersListResponse>;
1279
+ getUsersByIds: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetUsersByIdsResponse, GetUsersByIdsArgs, GetUsersByIdsResponse>;
1280
+ };
1281
+ endpoints: Record<string, Record<string, EndpointsConfig>>;
1282
+ serviceName: string;
1283
+ };
1284
+ metaManager: {
1285
+ actions: {
1286
+ startWorkbookImport: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, StartWorkbookImportResponse, StartWorkbookImportArgs, StartWorkbookImportResponse>;
1287
+ getWorkbookImportStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetWorkbookImportStatusResponse, GetWorkbookImportStatusArgs, GetWorkbookImportStatusResponse>;
1288
+ startWorkbookExport: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, StartWorkbookExportResponse, StartWorkbookExportArgs, StartWorkbookExportResponse>;
1289
+ getWorkbookExportStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetWorkbookExportStatusResponse, GetWorkbookExportStatusArgs, GetWorkbookExportStatusResponse>;
1290
+ getWorkbookExportResult: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetWorkbookExportResultResponse, GetWorkbookExportResultArgs, GetWorkbookExportResultResponse>;
1291
+ cancelWorkbookExport: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CancelWorkbookExportResponse, CancelWorkbookExportArgs, CancelWorkbookExportResponse>;
1292
+ };
1293
+ endpoints: Record<string, Record<string, EndpointsConfig>>;
1294
+ serviceName: string;
1295
+ };
1296
+ mix: {
1297
+ actions: {
1298
+ __getQLChart__: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, unknown, NoInfer<{
1299
+ chartId: string;
1300
+ workbookId?: string | null | undefined;
1301
+ revId?: string | undefined;
1302
+ includePermissions?: boolean | undefined;
1303
+ includeLinks?: boolean | undefined;
1304
+ includeFavorite?: boolean | undefined;
1305
+ branch?: "saved" | "published" | undefined;
1306
+ }>, unknown>;
1307
+ deleteQLChart: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<Record<string, never>>, NoInfer<{
1308
+ chartId: string;
1309
+ }>, NoInfer<Record<string, never>>>;
1310
+ __createQLChart__: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1311
+ [x: string]: unknown;
1312
+ }>, NoInfer<{
1313
+ [x: string]: unknown;
1314
+ template: "ql";
1315
+ data: {
1316
+ [x: string]: unknown;
1317
+ };
1318
+ annotation?: {
1319
+ description: string;
1320
+ } | undefined;
1321
+ } & {
1322
+ key?: string | undefined;
1323
+ workbookId?: string | undefined;
1324
+ name?: string | undefined;
1325
+ }>, NoInfer<{
1326
+ [x: string]: unknown;
1327
+ }>>;
1328
+ __updateQLChart__: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1329
+ [x: string]: unknown;
1330
+ }>, NoInfer<{
1331
+ [x: string]: unknown;
1332
+ entryId: string;
1333
+ template: "ql";
1334
+ mode: EntryUpdateMode;
1335
+ data: {
1336
+ [x: string]: unknown;
1337
+ };
1338
+ annotation?: {
1339
+ description: string;
1340
+ } | undefined;
1341
+ }>, NoInfer<{
1342
+ [x: string]: unknown;
1343
+ }>>;
1344
+ __getWizardChart__: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, unknown, NoInfer<{
1345
+ chartId: string;
1346
+ workbookId?: string | null | undefined;
1347
+ revId?: string | undefined;
1348
+ includePermissions?: boolean | undefined;
1349
+ includeLinks?: boolean | undefined;
1350
+ includeFavorite?: boolean | undefined;
1351
+ branch?: "saved" | "published" | undefined;
1352
+ }>, unknown>;
1353
+ deleteWizardChart: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<Record<string, never>>, NoInfer<{
1354
+ chartId: string;
1355
+ }>, NoInfer<Record<string, never>>>;
1356
+ __updateWizardChart__: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1357
+ [x: string]: unknown;
1358
+ }>, NoInfer<{
1359
+ [x: string]: unknown;
1360
+ entryId: string;
1361
+ template: "datalens";
1362
+ mode: EntryUpdateMode;
1363
+ data: {
1364
+ [x: string]: unknown;
1365
+ };
1366
+ annotation?: {
1367
+ description: string;
1368
+ } | undefined;
1369
+ }>, NoInfer<{
1370
+ [x: string]: unknown;
1371
+ }>>;
1372
+ __createWizardChart__: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1373
+ [x: string]: unknown;
1374
+ }>, NoInfer<{
1375
+ [x: string]: unknown;
1376
+ template: "datalens";
1377
+ data: {
1378
+ [x: string]: unknown;
1379
+ };
1380
+ annotation?: {
1381
+ description: string;
1382
+ } | undefined;
1383
+ } & {
1384
+ key?: string | undefined;
1385
+ workbookId?: string | undefined;
1386
+ name?: string | undefined;
1387
+ }>, NoInfer<{
1388
+ [x: string]: unknown;
1389
+ }>>;
1390
+ createEditorChart: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CreateEditorChartResponse, CreateEditorChartArgs, CreateEditorChartResponse>;
1391
+ updateEditorChart: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, UpdateEditorChartResponse, UpdateEditorChartArgs, UpdateEditorChartResponse>;
1392
+ getDashboardV1: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1393
+ entry: {
1394
+ createdAt: string;
1395
+ createdBy: string;
1396
+ data: {
1397
+ counter: number;
1398
+ salt: string;
1399
+ schemeVersion: 8;
1400
+ tabs: {
1401
+ id: string;
1402
+ title: string;
1403
+ items: ({
1404
+ id: string;
1405
+ namespace: "default";
1406
+ type: DashTabItemType;
1407
+ } & ({
1408
+ type: import("..").DashTabItemType.Text;
1409
+ data: {
1410
+ text: string;
1411
+ };
1412
+ } | {
1413
+ type: import("..").DashTabItemType.Title;
1414
+ data: {
1415
+ text: string;
1416
+ size: "l" | "m" | "s" | "xl" | "xs";
1417
+ showInTOC: boolean;
1418
+ };
1419
+ } | {
1420
+ type: import("..").DashTabItemType.Widget;
1421
+ data: {
1422
+ hideTitle: boolean;
1423
+ tabs: {
1424
+ id: string;
1425
+ title: string;
1426
+ description: string;
1427
+ chartId: string;
1428
+ isDefault: boolean;
1429
+ params: Record<any, any>;
1430
+ autoHeight?: boolean | undefined;
1431
+ }[];
1432
+ };
1433
+ } | {
1434
+ type: import("..").DashTabItemType.Control;
1435
+ data: {
1436
+ id: string;
1437
+ namespace: "default";
1438
+ title: string;
1439
+ sourceType: DashTabItemControlSourceType;
1440
+ } & ({
1441
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
1442
+ source: ({
1443
+ showTitle: boolean;
1444
+ elementType: DashTabItemControlElementType;
1445
+ required?: boolean | undefined;
1446
+ showHint?: boolean | undefined;
1447
+ } & ({
1448
+ elementType: import("..").DashTabItemControlElementType.Select;
1449
+ defaultValue: string | string[];
1450
+ multiselectable: boolean;
1451
+ } | {
1452
+ elementType: import("..").DashTabItemControlElementType.Date;
1453
+ defaultValue: string;
1454
+ isRange: boolean;
1455
+ } | {
1456
+ elementType: import("..").DashTabItemControlElementType.Input;
1457
+ defaultValue: string;
1458
+ } | {
1459
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1460
+ defaultValue: string;
1461
+ })) & {
1462
+ datasetId: string;
1463
+ datasetFieldId: string;
1464
+ };
1465
+ } | {
1466
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
1467
+ source: ({
1468
+ showTitle: boolean;
1469
+ elementType: DashTabItemControlElementType;
1470
+ required?: boolean | undefined;
1471
+ showHint?: boolean | undefined;
1472
+ } & ({
1473
+ elementType: import("..").DashTabItemControlElementType.Select;
1474
+ defaultValue: string | string[];
1475
+ multiselectable: boolean;
1476
+ } | {
1477
+ elementType: import("..").DashTabItemControlElementType.Date;
1478
+ defaultValue: string;
1479
+ isRange: boolean;
1480
+ } | {
1481
+ elementType: import("..").DashTabItemControlElementType.Input;
1482
+ defaultValue: string;
1483
+ } | {
1484
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1485
+ defaultValue: string;
1486
+ })) & {
1487
+ fieldName: string;
1488
+ fieldType: string;
1489
+ acceptableValues: {
1490
+ value: string;
1491
+ title: string;
1492
+ }[] | {
1493
+ from: string;
1494
+ to: string;
1495
+ };
1496
+ };
1497
+ } | {
1498
+ sourceType: import("..").DashTabItemControlSourceType.External;
1499
+ source: {
1500
+ chartId: string;
1501
+ text?: string | undefined;
1502
+ autoHeight?: boolean | undefined;
1503
+ };
1504
+ });
1505
+ defaults: Record<any, any>;
1506
+ } | {
1507
+ type: import("..").DashTabItemType.GroupControl;
1508
+ data: {
1509
+ group: ({
1510
+ id: string;
1511
+ title: string;
1512
+ namespace: "default";
1513
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
1514
+ defaults: Record<any, any>;
1515
+ placementMode?: "auto" | "%" | "px" | undefined;
1516
+ width?: string | undefined;
1517
+ } & ({
1518
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
1519
+ source: ({
1520
+ showTitle: boolean;
1521
+ elementType: DashTabItemControlElementType;
1522
+ required?: boolean | undefined;
1523
+ showHint?: boolean | undefined;
1524
+ } & ({
1525
+ elementType: import("..").DashTabItemControlElementType.Select;
1526
+ defaultValue: string | string[];
1527
+ multiselectable: boolean;
1528
+ } | {
1529
+ elementType: import("..").DashTabItemControlElementType.Date;
1530
+ defaultValue: string;
1531
+ isRange: boolean;
1532
+ } | {
1533
+ elementType: import("..").DashTabItemControlElementType.Input;
1534
+ defaultValue: string;
1535
+ } | {
1536
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1537
+ defaultValue: string;
1538
+ })) & {
1539
+ datasetId: string;
1540
+ datasetFieldId: string;
1541
+ };
1542
+ } | {
1543
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
1544
+ source: ({
1545
+ showTitle: boolean;
1546
+ elementType: DashTabItemControlElementType;
1547
+ required?: boolean | undefined;
1548
+ showHint?: boolean | undefined;
1549
+ } & ({
1550
+ elementType: import("..").DashTabItemControlElementType.Select;
1551
+ defaultValue: string | string[];
1552
+ multiselectable: boolean;
1553
+ } | {
1554
+ elementType: import("..").DashTabItemControlElementType.Date;
1555
+ defaultValue: string;
1556
+ isRange: boolean;
1557
+ } | {
1558
+ elementType: import("..").DashTabItemControlElementType.Input;
1559
+ defaultValue: string;
1560
+ } | {
1561
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1562
+ defaultValue: string;
1563
+ })) & {
1564
+ fieldName: string;
1565
+ fieldType: string;
1566
+ acceptableValues: {
1567
+ value: string;
1568
+ title: string;
1569
+ }[] | {
1570
+ from: string;
1571
+ to: string;
1572
+ };
1573
+ };
1574
+ }))[];
1575
+ autoHeight: boolean;
1576
+ buttonApply: boolean;
1577
+ buttonReset: boolean;
1578
+ showGroupName: boolean;
1579
+ updateControlsOnChange?: boolean | undefined;
1580
+ };
1581
+ defaults: Record<any, string | string[]>;
1582
+ }))[];
1583
+ layout: {
1584
+ i: string;
1585
+ h: number;
1586
+ w: number;
1587
+ x: number;
1588
+ y: number;
1589
+ parent?: string | undefined;
1590
+ }[];
1591
+ connections: {
1592
+ from: string;
1593
+ to: string;
1594
+ kind: import("..").DashTabConnectionKind.Ignore;
1595
+ }[];
1596
+ aliases: {
1597
+ default?: string[][] | undefined;
1598
+ };
1599
+ }[];
1600
+ settings: {
1601
+ autoupdateInterval: number | null;
1602
+ maxConcurrentRequests: number | null;
1603
+ silentLoading: boolean;
1604
+ dependentSelectors: boolean;
1605
+ hideTabs: boolean;
1606
+ expandTOC: boolean;
1607
+ loadPriority?: DashLoadPriority | undefined;
1608
+ globalParams?: Record<any, any> | undefined;
1609
+ hideDashTitle?: boolean | undefined;
1610
+ assistantEnabled?: boolean | undefined;
1611
+ };
1612
+ supportDescription?: string | undefined;
1613
+ accessDescription?: string | undefined;
1614
+ };
1615
+ entryId: string;
1616
+ hidden: boolean;
1617
+ key: string | null;
1618
+ meta: Record<string, string> | null;
1619
+ public: boolean;
1620
+ publishedId: string | null;
1621
+ revId: string;
1622
+ savedId: string;
1623
+ scope: import("..").EntryScope.Dash;
1624
+ tenantId: string;
1625
+ type: "";
1626
+ updatedAt: string;
1627
+ updatedBy: string;
1628
+ version: 1;
1629
+ workbookId: string | null;
1630
+ annotation?: {
1631
+ description?: string | undefined;
1632
+ } | null | undefined;
1633
+ links?: Record<string, string> | null | undefined;
1634
+ };
1635
+ isFavorite?: boolean | undefined;
1636
+ permissions?: {
1637
+ execute: boolean;
1638
+ read: boolean;
1639
+ edit: boolean;
1640
+ admin: boolean;
1641
+ } | undefined;
1642
+ }>, NoInfer<{
1643
+ dashboardId: string;
1644
+ revId?: string | undefined;
1645
+ includePermissions?: boolean | undefined;
1646
+ includeLinks?: boolean | undefined;
1647
+ includeFavorite?: boolean | undefined;
1648
+ branch?: "saved" | "published" | undefined;
1649
+ workbookId?: string | undefined;
1650
+ }>, NoInfer<{
1651
+ entry: {
1652
+ createdAt: string;
1653
+ createdBy: string;
1654
+ data: {
1655
+ counter: number;
1656
+ salt: string;
1657
+ schemeVersion: 8;
1658
+ tabs: {
1659
+ id: string;
1660
+ title: string;
1661
+ items: ({
1662
+ id: string;
1663
+ namespace: "default";
1664
+ type: DashTabItemType;
1665
+ } & ({
1666
+ type: import("..").DashTabItemType.Text;
1667
+ data: {
1668
+ text: string;
1669
+ };
1670
+ } | {
1671
+ type: import("..").DashTabItemType.Title;
1672
+ data: {
1673
+ text: string;
1674
+ size: "l" | "m" | "s" | "xl" | "xs";
1675
+ showInTOC: boolean;
1676
+ };
1677
+ } | {
1678
+ type: import("..").DashTabItemType.Widget;
1679
+ data: {
1680
+ hideTitle: boolean;
1681
+ tabs: {
1682
+ id: string;
1683
+ title: string;
1684
+ description: string;
1685
+ chartId: string;
1686
+ isDefault: boolean;
1687
+ params: Record<any, any>;
1688
+ autoHeight?: boolean | undefined;
1689
+ }[];
1690
+ };
1691
+ } | {
1692
+ type: import("..").DashTabItemType.Control;
1693
+ data: {
1694
+ id: string;
1695
+ namespace: "default";
1696
+ title: string;
1697
+ sourceType: DashTabItemControlSourceType;
1698
+ } & ({
1699
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
1700
+ source: ({
1701
+ showTitle: boolean;
1702
+ elementType: DashTabItemControlElementType;
1703
+ required?: boolean | undefined;
1704
+ showHint?: boolean | undefined;
1705
+ } & ({
1706
+ elementType: import("..").DashTabItemControlElementType.Select;
1707
+ defaultValue: string | string[];
1708
+ multiselectable: boolean;
1709
+ } | {
1710
+ elementType: import("..").DashTabItemControlElementType.Date;
1711
+ defaultValue: string;
1712
+ isRange: boolean;
1713
+ } | {
1714
+ elementType: import("..").DashTabItemControlElementType.Input;
1715
+ defaultValue: string;
1716
+ } | {
1717
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1718
+ defaultValue: string;
1719
+ })) & {
1720
+ datasetId: string;
1721
+ datasetFieldId: string;
1722
+ };
1723
+ } | {
1724
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
1725
+ source: ({
1726
+ showTitle: boolean;
1727
+ elementType: DashTabItemControlElementType;
1728
+ required?: boolean | undefined;
1729
+ showHint?: boolean | undefined;
1730
+ } & ({
1731
+ elementType: import("..").DashTabItemControlElementType.Select;
1732
+ defaultValue: string | string[];
1733
+ multiselectable: boolean;
1734
+ } | {
1735
+ elementType: import("..").DashTabItemControlElementType.Date;
1736
+ defaultValue: string;
1737
+ isRange: boolean;
1738
+ } | {
1739
+ elementType: import("..").DashTabItemControlElementType.Input;
1740
+ defaultValue: string;
1741
+ } | {
1742
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1743
+ defaultValue: string;
1744
+ })) & {
1745
+ fieldName: string;
1746
+ fieldType: string;
1747
+ acceptableValues: {
1748
+ value: string;
1749
+ title: string;
1750
+ }[] | {
1751
+ from: string;
1752
+ to: string;
1753
+ };
1754
+ };
1755
+ } | {
1756
+ sourceType: import("..").DashTabItemControlSourceType.External;
1757
+ source: {
1758
+ chartId: string;
1759
+ text?: string | undefined;
1760
+ autoHeight?: boolean | undefined;
1761
+ };
1762
+ });
1763
+ defaults: Record<any, any>;
1764
+ } | {
1765
+ type: import("..").DashTabItemType.GroupControl;
1766
+ data: {
1767
+ group: ({
1768
+ id: string;
1769
+ title: string;
1770
+ namespace: "default";
1771
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
1772
+ defaults: Record<any, any>;
1773
+ placementMode?: "auto" | "%" | "px" | undefined;
1774
+ width?: string | undefined;
1775
+ } & ({
1776
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
1777
+ source: ({
1778
+ showTitle: boolean;
1779
+ elementType: DashTabItemControlElementType;
1780
+ required?: boolean | undefined;
1781
+ showHint?: boolean | undefined;
1782
+ } & ({
1783
+ elementType: import("..").DashTabItemControlElementType.Select;
1784
+ defaultValue: string | string[];
1785
+ multiselectable: boolean;
1786
+ } | {
1787
+ elementType: import("..").DashTabItemControlElementType.Date;
1788
+ defaultValue: string;
1789
+ isRange: boolean;
1790
+ } | {
1791
+ elementType: import("..").DashTabItemControlElementType.Input;
1792
+ defaultValue: string;
1793
+ } | {
1794
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1795
+ defaultValue: string;
1796
+ })) & {
1797
+ datasetId: string;
1798
+ datasetFieldId: string;
1799
+ };
1800
+ } | {
1801
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
1802
+ source: ({
1803
+ showTitle: boolean;
1804
+ elementType: DashTabItemControlElementType;
1805
+ required?: boolean | undefined;
1806
+ showHint?: boolean | undefined;
1807
+ } & ({
1808
+ elementType: import("..").DashTabItemControlElementType.Select;
1809
+ defaultValue: string | string[];
1810
+ multiselectable: boolean;
1811
+ } | {
1812
+ elementType: import("..").DashTabItemControlElementType.Date;
1813
+ defaultValue: string;
1814
+ isRange: boolean;
1815
+ } | {
1816
+ elementType: import("..").DashTabItemControlElementType.Input;
1817
+ defaultValue: string;
1818
+ } | {
1819
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1820
+ defaultValue: string;
1821
+ })) & {
1822
+ fieldName: string;
1823
+ fieldType: string;
1824
+ acceptableValues: {
1825
+ value: string;
1826
+ title: string;
1827
+ }[] | {
1828
+ from: string;
1829
+ to: string;
1830
+ };
1831
+ };
1832
+ }))[];
1833
+ autoHeight: boolean;
1834
+ buttonApply: boolean;
1835
+ buttonReset: boolean;
1836
+ showGroupName: boolean;
1837
+ updateControlsOnChange?: boolean | undefined;
1838
+ };
1839
+ defaults: Record<any, string | string[]>;
1840
+ }))[];
1841
+ layout: {
1842
+ i: string;
1843
+ h: number;
1844
+ w: number;
1845
+ x: number;
1846
+ y: number;
1847
+ parent?: string | undefined;
1848
+ }[];
1849
+ connections: {
1850
+ from: string;
1851
+ to: string;
1852
+ kind: import("..").DashTabConnectionKind.Ignore;
1853
+ }[];
1854
+ aliases: {
1855
+ default?: string[][] | undefined;
1856
+ };
1857
+ }[];
1858
+ settings: {
1859
+ autoupdateInterval: number | null;
1860
+ maxConcurrentRequests: number | null;
1861
+ silentLoading: boolean;
1862
+ dependentSelectors: boolean;
1863
+ hideTabs: boolean;
1864
+ expandTOC: boolean;
1865
+ loadPriority?: DashLoadPriority | undefined;
1866
+ globalParams?: Record<any, any> | undefined;
1867
+ hideDashTitle?: boolean | undefined;
1868
+ assistantEnabled?: boolean | undefined;
1869
+ };
1870
+ supportDescription?: string | undefined;
1871
+ accessDescription?: string | undefined;
1872
+ };
1873
+ entryId: string;
1874
+ hidden: boolean;
1875
+ key: string | null;
1876
+ meta: Record<string, string> | null;
1877
+ public: boolean;
1878
+ publishedId: string | null;
1879
+ revId: string;
1880
+ savedId: string;
1881
+ scope: import("..").EntryScope.Dash;
1882
+ tenantId: string;
1883
+ type: "";
1884
+ updatedAt: string;
1885
+ updatedBy: string;
1886
+ version: 1;
1887
+ workbookId: string | null;
1888
+ annotation?: {
1889
+ description?: string | undefined;
1890
+ } | null | undefined;
1891
+ links?: Record<string, string> | null | undefined;
1892
+ };
1893
+ isFavorite?: boolean | undefined;
1894
+ permissions?: {
1895
+ execute: boolean;
1896
+ read: boolean;
1897
+ edit: boolean;
1898
+ admin: boolean;
1899
+ } | undefined;
1900
+ }>>;
1901
+ createDashboardV1: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
1902
+ entry: {
1903
+ createdAt: string;
1904
+ createdBy: string;
1905
+ data: {
1906
+ counter: number;
1907
+ salt: string;
1908
+ schemeVersion: 8;
1909
+ tabs: {
1910
+ id: string;
1911
+ title: string;
1912
+ items: ({
1913
+ id: string;
1914
+ namespace: "default";
1915
+ type: DashTabItemType;
1916
+ } & ({
1917
+ type: import("..").DashTabItemType.Text;
1918
+ data: {
1919
+ text: string;
1920
+ };
1921
+ } | {
1922
+ type: import("..").DashTabItemType.Title;
1923
+ data: {
1924
+ text: string;
1925
+ size: "l" | "m" | "s" | "xl" | "xs";
1926
+ showInTOC: boolean;
1927
+ };
1928
+ } | {
1929
+ type: import("..").DashTabItemType.Widget;
1930
+ data: {
1931
+ hideTitle: boolean;
1932
+ tabs: {
1933
+ id: string;
1934
+ title: string;
1935
+ description: string;
1936
+ chartId: string;
1937
+ isDefault: boolean;
1938
+ params: Record<any, any>;
1939
+ autoHeight?: boolean | undefined;
1940
+ }[];
1941
+ };
1942
+ } | {
1943
+ type: import("..").DashTabItemType.Control;
1944
+ data: {
1945
+ id: string;
1946
+ namespace: "default";
1947
+ title: string;
1948
+ sourceType: DashTabItemControlSourceType;
1949
+ } & ({
1950
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
1951
+ source: ({
1952
+ showTitle: boolean;
1953
+ elementType: DashTabItemControlElementType;
1954
+ required?: boolean | undefined;
1955
+ showHint?: boolean | undefined;
1956
+ } & ({
1957
+ elementType: import("..").DashTabItemControlElementType.Select;
1958
+ defaultValue: string | string[];
1959
+ multiselectable: boolean;
1960
+ } | {
1961
+ elementType: import("..").DashTabItemControlElementType.Date;
1962
+ defaultValue: string;
1963
+ isRange: boolean;
1964
+ } | {
1965
+ elementType: import("..").DashTabItemControlElementType.Input;
1966
+ defaultValue: string;
1967
+ } | {
1968
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1969
+ defaultValue: string;
1970
+ })) & {
1971
+ datasetId: string;
1972
+ datasetFieldId: string;
1973
+ };
1974
+ } | {
1975
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
1976
+ source: ({
1977
+ showTitle: boolean;
1978
+ elementType: DashTabItemControlElementType;
1979
+ required?: boolean | undefined;
1980
+ showHint?: boolean | undefined;
1981
+ } & ({
1982
+ elementType: import("..").DashTabItemControlElementType.Select;
1983
+ defaultValue: string | string[];
1984
+ multiselectable: boolean;
1985
+ } | {
1986
+ elementType: import("..").DashTabItemControlElementType.Date;
1987
+ defaultValue: string;
1988
+ isRange: boolean;
1989
+ } | {
1990
+ elementType: import("..").DashTabItemControlElementType.Input;
1991
+ defaultValue: string;
1992
+ } | {
1993
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
1994
+ defaultValue: string;
1995
+ })) & {
1996
+ fieldName: string;
1997
+ fieldType: string;
1998
+ acceptableValues: {
1999
+ value: string;
2000
+ title: string;
2001
+ }[] | {
2002
+ from: string;
2003
+ to: string;
2004
+ };
2005
+ };
2006
+ } | {
2007
+ sourceType: import("..").DashTabItemControlSourceType.External;
2008
+ source: {
2009
+ chartId: string;
2010
+ text?: string | undefined;
2011
+ autoHeight?: boolean | undefined;
2012
+ };
2013
+ });
2014
+ defaults: Record<any, any>;
2015
+ } | {
2016
+ type: import("..").DashTabItemType.GroupControl;
2017
+ data: {
2018
+ group: ({
2019
+ id: string;
2020
+ title: string;
2021
+ namespace: "default";
2022
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
2023
+ defaults: Record<any, any>;
2024
+ placementMode?: "auto" | "%" | "px" | undefined;
2025
+ width?: string | undefined;
2026
+ } & ({
2027
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2028
+ source: ({
2029
+ showTitle: boolean;
2030
+ elementType: DashTabItemControlElementType;
2031
+ required?: boolean | undefined;
2032
+ showHint?: boolean | undefined;
2033
+ } & ({
2034
+ elementType: import("..").DashTabItemControlElementType.Select;
2035
+ defaultValue: string | string[];
2036
+ multiselectable: boolean;
2037
+ } | {
2038
+ elementType: import("..").DashTabItemControlElementType.Date;
2039
+ defaultValue: string;
2040
+ isRange: boolean;
2041
+ } | {
2042
+ elementType: import("..").DashTabItemControlElementType.Input;
2043
+ defaultValue: string;
2044
+ } | {
2045
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2046
+ defaultValue: string;
2047
+ })) & {
2048
+ datasetId: string;
2049
+ datasetFieldId: string;
2050
+ };
2051
+ } | {
2052
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2053
+ source: ({
2054
+ showTitle: boolean;
2055
+ elementType: DashTabItemControlElementType;
2056
+ required?: boolean | undefined;
2057
+ showHint?: boolean | undefined;
2058
+ } & ({
2059
+ elementType: import("..").DashTabItemControlElementType.Select;
2060
+ defaultValue: string | string[];
2061
+ multiselectable: boolean;
2062
+ } | {
2063
+ elementType: import("..").DashTabItemControlElementType.Date;
2064
+ defaultValue: string;
2065
+ isRange: boolean;
2066
+ } | {
2067
+ elementType: import("..").DashTabItemControlElementType.Input;
2068
+ defaultValue: string;
2069
+ } | {
2070
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2071
+ defaultValue: string;
2072
+ })) & {
2073
+ fieldName: string;
2074
+ fieldType: string;
2075
+ acceptableValues: {
2076
+ value: string;
2077
+ title: string;
2078
+ }[] | {
2079
+ from: string;
2080
+ to: string;
2081
+ };
2082
+ };
2083
+ }))[];
2084
+ autoHeight: boolean;
2085
+ buttonApply: boolean;
2086
+ buttonReset: boolean;
2087
+ showGroupName: boolean;
2088
+ updateControlsOnChange?: boolean | undefined;
2089
+ };
2090
+ defaults: Record<any, string | string[]>;
2091
+ }))[];
2092
+ layout: {
2093
+ i: string;
2094
+ h: number;
2095
+ w: number;
2096
+ x: number;
2097
+ y: number;
2098
+ parent?: string | undefined;
2099
+ }[];
2100
+ connections: {
2101
+ from: string;
2102
+ to: string;
2103
+ kind: import("..").DashTabConnectionKind.Ignore;
2104
+ }[];
2105
+ aliases: {
2106
+ default?: string[][] | undefined;
2107
+ };
2108
+ }[];
2109
+ settings: {
2110
+ autoupdateInterval: number | null;
2111
+ maxConcurrentRequests: number | null;
2112
+ silentLoading: boolean;
2113
+ dependentSelectors: boolean;
2114
+ hideTabs: boolean;
2115
+ expandTOC: boolean;
2116
+ loadPriority?: DashLoadPriority | undefined;
2117
+ globalParams?: Record<any, any> | undefined;
2118
+ hideDashTitle?: boolean | undefined;
2119
+ assistantEnabled?: boolean | undefined;
2120
+ };
2121
+ supportDescription?: string | undefined;
2122
+ accessDescription?: string | undefined;
2123
+ };
2124
+ entryId: string;
2125
+ hidden: boolean;
2126
+ key: string | null;
2127
+ meta: Record<string, string> | null;
2128
+ public: boolean;
2129
+ publishedId: string | null;
2130
+ revId: string;
2131
+ savedId: string;
2132
+ scope: import("..").EntryScope.Dash;
2133
+ tenantId: string;
2134
+ type: "";
2135
+ updatedAt: string;
2136
+ updatedBy: string;
2137
+ version: 1;
2138
+ workbookId: string | null;
2139
+ annotation?: {
2140
+ description?: string | undefined;
2141
+ } | null | undefined;
2142
+ links?: Record<string, string> | null | undefined;
2143
+ };
2144
+ }>, NoInfer<{
2145
+ entry: {
2146
+ data: {
2147
+ settings: {
2148
+ autoupdateInterval: number | null;
2149
+ maxConcurrentRequests: number | null;
2150
+ silentLoading: boolean;
2151
+ dependentSelectors: boolean;
2152
+ hideTabs: boolean;
2153
+ expandTOC: boolean;
2154
+ loadPriority?: DashLoadPriority | undefined;
2155
+ globalParams?: Record<any, any> | undefined;
2156
+ hideDashTitle?: boolean | undefined;
2157
+ assistantEnabled?: boolean | undefined;
2158
+ };
2159
+ counter: number;
2160
+ salt: string;
2161
+ tabs: {
2162
+ id: string;
2163
+ title: string;
2164
+ items: ({
2165
+ id: string;
2166
+ namespace: "default";
2167
+ type: DashTabItemType;
2168
+ } & ({
2169
+ type: import("..").DashTabItemType.Text;
2170
+ data: {
2171
+ text: string;
2172
+ };
2173
+ } | {
2174
+ type: import("..").DashTabItemType.Title;
2175
+ data: {
2176
+ text: string;
2177
+ size: "l" | "m" | "s" | "xl" | "xs";
2178
+ showInTOC: boolean;
2179
+ };
2180
+ } | {
2181
+ type: import("..").DashTabItemType.Widget;
2182
+ data: {
2183
+ hideTitle: boolean;
2184
+ tabs: {
2185
+ id: string;
2186
+ title: string;
2187
+ description: string;
2188
+ chartId: string;
2189
+ isDefault: boolean;
2190
+ params: Record<any, any>;
2191
+ autoHeight?: boolean | undefined;
2192
+ }[];
2193
+ };
2194
+ } | {
2195
+ type: import("..").DashTabItemType.Control;
2196
+ data: {
2197
+ id: string;
2198
+ namespace: "default";
2199
+ title: string;
2200
+ sourceType: DashTabItemControlSourceType;
2201
+ } & ({
2202
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2203
+ source: ({
2204
+ showTitle: boolean;
2205
+ elementType: DashTabItemControlElementType;
2206
+ required?: boolean | undefined;
2207
+ showHint?: boolean | undefined;
2208
+ } & ({
2209
+ elementType: import("..").DashTabItemControlElementType.Select;
2210
+ defaultValue: string | string[];
2211
+ multiselectable: boolean;
2212
+ } | {
2213
+ elementType: import("..").DashTabItemControlElementType.Date;
2214
+ defaultValue: string;
2215
+ isRange: boolean;
2216
+ } | {
2217
+ elementType: import("..").DashTabItemControlElementType.Input;
2218
+ defaultValue: string;
2219
+ } | {
2220
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2221
+ defaultValue: string;
2222
+ })) & {
2223
+ datasetId: string;
2224
+ datasetFieldId: string;
2225
+ };
2226
+ } | {
2227
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2228
+ source: ({
2229
+ showTitle: boolean;
2230
+ elementType: DashTabItemControlElementType;
2231
+ required?: boolean | undefined;
2232
+ showHint?: boolean | undefined;
2233
+ } & ({
2234
+ elementType: import("..").DashTabItemControlElementType.Select;
2235
+ defaultValue: string | string[];
2236
+ multiselectable: boolean;
2237
+ } | {
2238
+ elementType: import("..").DashTabItemControlElementType.Date;
2239
+ defaultValue: string;
2240
+ isRange: boolean;
2241
+ } | {
2242
+ elementType: import("..").DashTabItemControlElementType.Input;
2243
+ defaultValue: string;
2244
+ } | {
2245
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2246
+ defaultValue: string;
2247
+ })) & {
2248
+ fieldName: string;
2249
+ fieldType: string;
2250
+ acceptableValues: {
2251
+ value: string;
2252
+ title: string;
2253
+ }[] | {
2254
+ from: string;
2255
+ to: string;
2256
+ };
2257
+ };
2258
+ } | {
2259
+ sourceType: import("..").DashTabItemControlSourceType.External;
2260
+ source: {
2261
+ chartId: string;
2262
+ text?: string | undefined;
2263
+ autoHeight?: boolean | undefined;
2264
+ };
2265
+ });
2266
+ defaults: Record<any, any>;
2267
+ } | {
2268
+ type: import("..").DashTabItemType.GroupControl;
2269
+ data: {
2270
+ group: ({
2271
+ id: string;
2272
+ title: string;
2273
+ namespace: "default";
2274
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
2275
+ defaults: Record<any, any>;
2276
+ placementMode?: "auto" | "%" | "px" | undefined;
2277
+ width?: string | undefined;
2278
+ } & ({
2279
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2280
+ source: ({
2281
+ showTitle: boolean;
2282
+ elementType: DashTabItemControlElementType;
2283
+ required?: boolean | undefined;
2284
+ showHint?: boolean | undefined;
2285
+ } & ({
2286
+ elementType: import("..").DashTabItemControlElementType.Select;
2287
+ defaultValue: string | string[];
2288
+ multiselectable: boolean;
2289
+ } | {
2290
+ elementType: import("..").DashTabItemControlElementType.Date;
2291
+ defaultValue: string;
2292
+ isRange: boolean;
2293
+ } | {
2294
+ elementType: import("..").DashTabItemControlElementType.Input;
2295
+ defaultValue: string;
2296
+ } | {
2297
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2298
+ defaultValue: string;
2299
+ })) & {
2300
+ datasetId: string;
2301
+ datasetFieldId: string;
2302
+ };
2303
+ } | {
2304
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2305
+ source: ({
2306
+ showTitle: boolean;
2307
+ elementType: DashTabItemControlElementType;
2308
+ required?: boolean | undefined;
2309
+ showHint?: boolean | undefined;
2310
+ } & ({
2311
+ elementType: import("..").DashTabItemControlElementType.Select;
2312
+ defaultValue: string | string[];
2313
+ multiselectable: boolean;
2314
+ } | {
2315
+ elementType: import("..").DashTabItemControlElementType.Date;
2316
+ defaultValue: string;
2317
+ isRange: boolean;
2318
+ } | {
2319
+ elementType: import("..").DashTabItemControlElementType.Input;
2320
+ defaultValue: string;
2321
+ } | {
2322
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2323
+ defaultValue: string;
2324
+ })) & {
2325
+ fieldName: string;
2326
+ fieldType: string;
2327
+ acceptableValues: {
2328
+ value: string;
2329
+ title: string;
2330
+ }[] | {
2331
+ from: string;
2332
+ to: string;
2333
+ };
2334
+ };
2335
+ }))[];
2336
+ autoHeight: boolean;
2337
+ buttonApply: boolean;
2338
+ buttonReset: boolean;
2339
+ showGroupName: boolean;
2340
+ updateControlsOnChange?: boolean | undefined;
2341
+ };
2342
+ defaults: Record<any, string | string[]>;
2343
+ }))[];
2344
+ layout: {
2345
+ i: string;
2346
+ h: number;
2347
+ w: number;
2348
+ x: number;
2349
+ y: number;
2350
+ parent?: string | undefined;
2351
+ }[];
2352
+ connections: {
2353
+ from: string;
2354
+ to: string;
2355
+ kind: import("..").DashTabConnectionKind.Ignore;
2356
+ }[];
2357
+ aliases: {
2358
+ default?: string[][] | undefined;
2359
+ };
2360
+ }[];
2361
+ supportDescription?: string | undefined;
2362
+ accessDescription?: string | undefined;
2363
+ };
2364
+ meta: Record<string, string> | null;
2365
+ annotation?: {
2366
+ description: string;
2367
+ } | undefined;
2368
+ } & {
2369
+ key?: string | undefined;
2370
+ workbookId?: string | undefined;
2371
+ name?: string | undefined;
2372
+ };
2373
+ mode: EntryUpdateMode;
2374
+ }>, NoInfer<{
2375
+ entry: {
2376
+ createdAt: string;
2377
+ createdBy: string;
2378
+ data: {
2379
+ counter: number;
2380
+ salt: string;
2381
+ schemeVersion: 8;
2382
+ tabs: {
2383
+ id: string;
2384
+ title: string;
2385
+ items: ({
2386
+ id: string;
2387
+ namespace: "default";
2388
+ type: DashTabItemType;
2389
+ } & ({
2390
+ type: import("..").DashTabItemType.Text;
2391
+ data: {
2392
+ text: string;
2393
+ };
2394
+ } | {
2395
+ type: import("..").DashTabItemType.Title;
2396
+ data: {
2397
+ text: string;
2398
+ size: "l" | "m" | "s" | "xl" | "xs";
2399
+ showInTOC: boolean;
2400
+ };
2401
+ } | {
2402
+ type: import("..").DashTabItemType.Widget;
2403
+ data: {
2404
+ hideTitle: boolean;
2405
+ tabs: {
2406
+ id: string;
2407
+ title: string;
2408
+ description: string;
2409
+ chartId: string;
2410
+ isDefault: boolean;
2411
+ params: Record<any, any>;
2412
+ autoHeight?: boolean | undefined;
2413
+ }[];
2414
+ };
2415
+ } | {
2416
+ type: import("..").DashTabItemType.Control;
2417
+ data: {
2418
+ id: string;
2419
+ namespace: "default";
2420
+ title: string;
2421
+ sourceType: DashTabItemControlSourceType;
2422
+ } & ({
2423
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2424
+ source: ({
2425
+ showTitle: boolean;
2426
+ elementType: DashTabItemControlElementType;
2427
+ required?: boolean | undefined;
2428
+ showHint?: boolean | undefined;
2429
+ } & ({
2430
+ elementType: import("..").DashTabItemControlElementType.Select;
2431
+ defaultValue: string | string[];
2432
+ multiselectable: boolean;
2433
+ } | {
2434
+ elementType: import("..").DashTabItemControlElementType.Date;
2435
+ defaultValue: string;
2436
+ isRange: boolean;
2437
+ } | {
2438
+ elementType: import("..").DashTabItemControlElementType.Input;
2439
+ defaultValue: string;
2440
+ } | {
2441
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2442
+ defaultValue: string;
2443
+ })) & {
2444
+ datasetId: string;
2445
+ datasetFieldId: string;
2446
+ };
2447
+ } | {
2448
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2449
+ source: ({
2450
+ showTitle: boolean;
2451
+ elementType: DashTabItemControlElementType;
2452
+ required?: boolean | undefined;
2453
+ showHint?: boolean | undefined;
2454
+ } & ({
2455
+ elementType: import("..").DashTabItemControlElementType.Select;
2456
+ defaultValue: string | string[];
2457
+ multiselectable: boolean;
2458
+ } | {
2459
+ elementType: import("..").DashTabItemControlElementType.Date;
2460
+ defaultValue: string;
2461
+ isRange: boolean;
2462
+ } | {
2463
+ elementType: import("..").DashTabItemControlElementType.Input;
2464
+ defaultValue: string;
2465
+ } | {
2466
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2467
+ defaultValue: string;
2468
+ })) & {
2469
+ fieldName: string;
2470
+ fieldType: string;
2471
+ acceptableValues: {
2472
+ value: string;
2473
+ title: string;
2474
+ }[] | {
2475
+ from: string;
2476
+ to: string;
2477
+ };
2478
+ };
2479
+ } | {
2480
+ sourceType: import("..").DashTabItemControlSourceType.External;
2481
+ source: {
2482
+ chartId: string;
2483
+ text?: string | undefined;
2484
+ autoHeight?: boolean | undefined;
2485
+ };
2486
+ });
2487
+ defaults: Record<any, any>;
2488
+ } | {
2489
+ type: import("..").DashTabItemType.GroupControl;
2490
+ data: {
2491
+ group: ({
2492
+ id: string;
2493
+ title: string;
2494
+ namespace: "default";
2495
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
2496
+ defaults: Record<any, any>;
2497
+ placementMode?: "auto" | "%" | "px" | undefined;
2498
+ width?: string | undefined;
2499
+ } & ({
2500
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2501
+ source: ({
2502
+ showTitle: boolean;
2503
+ elementType: DashTabItemControlElementType;
2504
+ required?: boolean | undefined;
2505
+ showHint?: boolean | undefined;
2506
+ } & ({
2507
+ elementType: import("..").DashTabItemControlElementType.Select;
2508
+ defaultValue: string | string[];
2509
+ multiselectable: boolean;
2510
+ } | {
2511
+ elementType: import("..").DashTabItemControlElementType.Date;
2512
+ defaultValue: string;
2513
+ isRange: boolean;
2514
+ } | {
2515
+ elementType: import("..").DashTabItemControlElementType.Input;
2516
+ defaultValue: string;
2517
+ } | {
2518
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2519
+ defaultValue: string;
2520
+ })) & {
2521
+ datasetId: string;
2522
+ datasetFieldId: string;
2523
+ };
2524
+ } | {
2525
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2526
+ source: ({
2527
+ showTitle: boolean;
2528
+ elementType: DashTabItemControlElementType;
2529
+ required?: boolean | undefined;
2530
+ showHint?: boolean | undefined;
2531
+ } & ({
2532
+ elementType: import("..").DashTabItemControlElementType.Select;
2533
+ defaultValue: string | string[];
2534
+ multiselectable: boolean;
2535
+ } | {
2536
+ elementType: import("..").DashTabItemControlElementType.Date;
2537
+ defaultValue: string;
2538
+ isRange: boolean;
2539
+ } | {
2540
+ elementType: import("..").DashTabItemControlElementType.Input;
2541
+ defaultValue: string;
2542
+ } | {
2543
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2544
+ defaultValue: string;
2545
+ })) & {
2546
+ fieldName: string;
2547
+ fieldType: string;
2548
+ acceptableValues: {
2549
+ value: string;
2550
+ title: string;
2551
+ }[] | {
2552
+ from: string;
2553
+ to: string;
2554
+ };
2555
+ };
2556
+ }))[];
2557
+ autoHeight: boolean;
2558
+ buttonApply: boolean;
2559
+ buttonReset: boolean;
2560
+ showGroupName: boolean;
2561
+ updateControlsOnChange?: boolean | undefined;
2562
+ };
2563
+ defaults: Record<any, string | string[]>;
2564
+ }))[];
2565
+ layout: {
2566
+ i: string;
2567
+ h: number;
2568
+ w: number;
2569
+ x: number;
2570
+ y: number;
2571
+ parent?: string | undefined;
2572
+ }[];
2573
+ connections: {
2574
+ from: string;
2575
+ to: string;
2576
+ kind: import("..").DashTabConnectionKind.Ignore;
2577
+ }[];
2578
+ aliases: {
2579
+ default?: string[][] | undefined;
2580
+ };
2581
+ }[];
2582
+ settings: {
2583
+ autoupdateInterval: number | null;
2584
+ maxConcurrentRequests: number | null;
2585
+ silentLoading: boolean;
2586
+ dependentSelectors: boolean;
2587
+ hideTabs: boolean;
2588
+ expandTOC: boolean;
2589
+ loadPriority?: DashLoadPriority | undefined;
2590
+ globalParams?: Record<any, any> | undefined;
2591
+ hideDashTitle?: boolean | undefined;
2592
+ assistantEnabled?: boolean | undefined;
2593
+ };
2594
+ supportDescription?: string | undefined;
2595
+ accessDescription?: string | undefined;
2596
+ };
2597
+ entryId: string;
2598
+ hidden: boolean;
2599
+ key: string | null;
2600
+ meta: Record<string, string> | null;
2601
+ public: boolean;
2602
+ publishedId: string | null;
2603
+ revId: string;
2604
+ savedId: string;
2605
+ scope: import("..").EntryScope.Dash;
2606
+ tenantId: string;
2607
+ type: "";
2608
+ updatedAt: string;
2609
+ updatedBy: string;
2610
+ version: 1;
2611
+ workbookId: string | null;
2612
+ annotation?: {
2613
+ description?: string | undefined;
2614
+ } | null | undefined;
2615
+ links?: Record<string, string> | null | undefined;
2616
+ };
2617
+ }>>;
2618
+ updateDashboardV1: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<{
2619
+ entry: {
2620
+ createdAt: string;
2621
+ createdBy: string;
2622
+ data: {
2623
+ counter: number;
2624
+ salt: string;
2625
+ schemeVersion: 8;
2626
+ tabs: {
2627
+ id: string;
2628
+ title: string;
2629
+ items: ({
2630
+ id: string;
2631
+ namespace: "default";
2632
+ type: DashTabItemType;
2633
+ } & ({
2634
+ type: import("..").DashTabItemType.Text;
2635
+ data: {
2636
+ text: string;
2637
+ };
2638
+ } | {
2639
+ type: import("..").DashTabItemType.Title;
2640
+ data: {
2641
+ text: string;
2642
+ size: "l" | "m" | "s" | "xl" | "xs";
2643
+ showInTOC: boolean;
2644
+ };
2645
+ } | {
2646
+ type: import("..").DashTabItemType.Widget;
2647
+ data: {
2648
+ hideTitle: boolean;
2649
+ tabs: {
2650
+ id: string;
2651
+ title: string;
2652
+ description: string;
2653
+ chartId: string;
2654
+ isDefault: boolean;
2655
+ params: Record<any, any>;
2656
+ autoHeight?: boolean | undefined;
2657
+ }[];
2658
+ };
2659
+ } | {
2660
+ type: import("..").DashTabItemType.Control;
2661
+ data: {
2662
+ id: string;
2663
+ namespace: "default";
2664
+ title: string;
2665
+ sourceType: DashTabItemControlSourceType;
2666
+ } & ({
2667
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2668
+ source: ({
2669
+ showTitle: boolean;
2670
+ elementType: DashTabItemControlElementType;
2671
+ required?: boolean | undefined;
2672
+ showHint?: boolean | undefined;
2673
+ } & ({
2674
+ elementType: import("..").DashTabItemControlElementType.Select;
2675
+ defaultValue: string | string[];
2676
+ multiselectable: boolean;
2677
+ } | {
2678
+ elementType: import("..").DashTabItemControlElementType.Date;
2679
+ defaultValue: string;
2680
+ isRange: boolean;
2681
+ } | {
2682
+ elementType: import("..").DashTabItemControlElementType.Input;
2683
+ defaultValue: string;
2684
+ } | {
2685
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2686
+ defaultValue: string;
2687
+ })) & {
2688
+ datasetId: string;
2689
+ datasetFieldId: string;
2690
+ };
2691
+ } | {
2692
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2693
+ source: ({
2694
+ showTitle: boolean;
2695
+ elementType: DashTabItemControlElementType;
2696
+ required?: boolean | undefined;
2697
+ showHint?: boolean | undefined;
2698
+ } & ({
2699
+ elementType: import("..").DashTabItemControlElementType.Select;
2700
+ defaultValue: string | string[];
2701
+ multiselectable: boolean;
2702
+ } | {
2703
+ elementType: import("..").DashTabItemControlElementType.Date;
2704
+ defaultValue: string;
2705
+ isRange: boolean;
2706
+ } | {
2707
+ elementType: import("..").DashTabItemControlElementType.Input;
2708
+ defaultValue: string;
2709
+ } | {
2710
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2711
+ defaultValue: string;
2712
+ })) & {
2713
+ fieldName: string;
2714
+ fieldType: string;
2715
+ acceptableValues: {
2716
+ value: string;
2717
+ title: string;
2718
+ }[] | {
2719
+ from: string;
2720
+ to: string;
2721
+ };
2722
+ };
2723
+ } | {
2724
+ sourceType: import("..").DashTabItemControlSourceType.External;
2725
+ source: {
2726
+ chartId: string;
2727
+ text?: string | undefined;
2728
+ autoHeight?: boolean | undefined;
2729
+ };
2730
+ });
2731
+ defaults: Record<any, any>;
2732
+ } | {
2733
+ type: import("..").DashTabItemType.GroupControl;
2734
+ data: {
2735
+ group: ({
2736
+ id: string;
2737
+ title: string;
2738
+ namespace: "default";
2739
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
2740
+ defaults: Record<any, any>;
2741
+ placementMode?: "auto" | "%" | "px" | undefined;
2742
+ width?: string | undefined;
2743
+ } & ({
2744
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2745
+ source: ({
2746
+ showTitle: boolean;
2747
+ elementType: DashTabItemControlElementType;
2748
+ required?: boolean | undefined;
2749
+ showHint?: boolean | undefined;
2750
+ } & ({
2751
+ elementType: import("..").DashTabItemControlElementType.Select;
2752
+ defaultValue: string | string[];
2753
+ multiselectable: boolean;
2754
+ } | {
2755
+ elementType: import("..").DashTabItemControlElementType.Date;
2756
+ defaultValue: string;
2757
+ isRange: boolean;
2758
+ } | {
2759
+ elementType: import("..").DashTabItemControlElementType.Input;
2760
+ defaultValue: string;
2761
+ } | {
2762
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2763
+ defaultValue: string;
2764
+ })) & {
2765
+ datasetId: string;
2766
+ datasetFieldId: string;
2767
+ };
2768
+ } | {
2769
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2770
+ source: ({
2771
+ showTitle: boolean;
2772
+ elementType: DashTabItemControlElementType;
2773
+ required?: boolean | undefined;
2774
+ showHint?: boolean | undefined;
2775
+ } & ({
2776
+ elementType: import("..").DashTabItemControlElementType.Select;
2777
+ defaultValue: string | string[];
2778
+ multiselectable: boolean;
2779
+ } | {
2780
+ elementType: import("..").DashTabItemControlElementType.Date;
2781
+ defaultValue: string;
2782
+ isRange: boolean;
2783
+ } | {
2784
+ elementType: import("..").DashTabItemControlElementType.Input;
2785
+ defaultValue: string;
2786
+ } | {
2787
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2788
+ defaultValue: string;
2789
+ })) & {
2790
+ fieldName: string;
2791
+ fieldType: string;
2792
+ acceptableValues: {
2793
+ value: string;
2794
+ title: string;
2795
+ }[] | {
2796
+ from: string;
2797
+ to: string;
2798
+ };
2799
+ };
2800
+ }))[];
2801
+ autoHeight: boolean;
2802
+ buttonApply: boolean;
2803
+ buttonReset: boolean;
2804
+ showGroupName: boolean;
2805
+ updateControlsOnChange?: boolean | undefined;
2806
+ };
2807
+ defaults: Record<any, string | string[]>;
2808
+ }))[];
2809
+ layout: {
2810
+ i: string;
2811
+ h: number;
2812
+ w: number;
2813
+ x: number;
2814
+ y: number;
2815
+ parent?: string | undefined;
2816
+ }[];
2817
+ connections: {
2818
+ from: string;
2819
+ to: string;
2820
+ kind: import("..").DashTabConnectionKind.Ignore;
2821
+ }[];
2822
+ aliases: {
2823
+ default?: string[][] | undefined;
2824
+ };
2825
+ }[];
2826
+ settings: {
2827
+ autoupdateInterval: number | null;
2828
+ maxConcurrentRequests: number | null;
2829
+ silentLoading: boolean;
2830
+ dependentSelectors: boolean;
2831
+ hideTabs: boolean;
2832
+ expandTOC: boolean;
2833
+ loadPriority?: DashLoadPriority | undefined;
2834
+ globalParams?: Record<any, any> | undefined;
2835
+ hideDashTitle?: boolean | undefined;
2836
+ assistantEnabled?: boolean | undefined;
2837
+ };
2838
+ supportDescription?: string | undefined;
2839
+ accessDescription?: string | undefined;
2840
+ };
2841
+ entryId: string;
2842
+ hidden: boolean;
2843
+ key: string | null;
2844
+ meta: Record<string, string> | null;
2845
+ public: boolean;
2846
+ publishedId: string | null;
2847
+ revId: string;
2848
+ savedId: string;
2849
+ scope: import("..").EntryScope.Dash;
2850
+ tenantId: string;
2851
+ type: "";
2852
+ updatedAt: string;
2853
+ updatedBy: string;
2854
+ version: 1;
2855
+ workbookId: string | null;
2856
+ annotation?: {
2857
+ description?: string | undefined;
2858
+ } | null | undefined;
2859
+ links?: Record<string, string> | null | undefined;
2860
+ };
2861
+ }>, NoInfer<{
2862
+ entry: {
2863
+ entryId: string;
2864
+ data: {
2865
+ counter: number;
2866
+ salt: string;
2867
+ schemeVersion: 8;
2868
+ tabs: {
2869
+ id: string;
2870
+ title: string;
2871
+ items: ({
2872
+ id: string;
2873
+ namespace: "default";
2874
+ type: DashTabItemType;
2875
+ } & ({
2876
+ type: import("..").DashTabItemType.Text;
2877
+ data: {
2878
+ text: string;
2879
+ };
2880
+ } | {
2881
+ type: import("..").DashTabItemType.Title;
2882
+ data: {
2883
+ text: string;
2884
+ size: "l" | "m" | "s" | "xl" | "xs";
2885
+ showInTOC: boolean;
2886
+ };
2887
+ } | {
2888
+ type: import("..").DashTabItemType.Widget;
2889
+ data: {
2890
+ hideTitle: boolean;
2891
+ tabs: {
2892
+ id: string;
2893
+ title: string;
2894
+ description: string;
2895
+ chartId: string;
2896
+ isDefault: boolean;
2897
+ params: Record<any, any>;
2898
+ autoHeight?: boolean | undefined;
2899
+ }[];
2900
+ };
2901
+ } | {
2902
+ type: import("..").DashTabItemType.Control;
2903
+ data: {
2904
+ id: string;
2905
+ namespace: "default";
2906
+ title: string;
2907
+ sourceType: DashTabItemControlSourceType;
2908
+ } & ({
2909
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2910
+ source: ({
2911
+ showTitle: boolean;
2912
+ elementType: DashTabItemControlElementType;
2913
+ required?: boolean | undefined;
2914
+ showHint?: boolean | undefined;
2915
+ } & ({
2916
+ elementType: import("..").DashTabItemControlElementType.Select;
2917
+ defaultValue: string | string[];
2918
+ multiselectable: boolean;
2919
+ } | {
2920
+ elementType: import("..").DashTabItemControlElementType.Date;
2921
+ defaultValue: string;
2922
+ isRange: boolean;
2923
+ } | {
2924
+ elementType: import("..").DashTabItemControlElementType.Input;
2925
+ defaultValue: string;
2926
+ } | {
2927
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2928
+ defaultValue: string;
2929
+ })) & {
2930
+ datasetId: string;
2931
+ datasetFieldId: string;
2932
+ };
2933
+ } | {
2934
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
2935
+ source: ({
2936
+ showTitle: boolean;
2937
+ elementType: DashTabItemControlElementType;
2938
+ required?: boolean | undefined;
2939
+ showHint?: boolean | undefined;
2940
+ } & ({
2941
+ elementType: import("..").DashTabItemControlElementType.Select;
2942
+ defaultValue: string | string[];
2943
+ multiselectable: boolean;
2944
+ } | {
2945
+ elementType: import("..").DashTabItemControlElementType.Date;
2946
+ defaultValue: string;
2947
+ isRange: boolean;
2948
+ } | {
2949
+ elementType: import("..").DashTabItemControlElementType.Input;
2950
+ defaultValue: string;
2951
+ } | {
2952
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
2953
+ defaultValue: string;
2954
+ })) & {
2955
+ fieldName: string;
2956
+ fieldType: string;
2957
+ acceptableValues: {
2958
+ value: string;
2959
+ title: string;
2960
+ }[] | {
2961
+ from: string;
2962
+ to: string;
2963
+ };
2964
+ };
2965
+ } | {
2966
+ sourceType: import("..").DashTabItemControlSourceType.External;
2967
+ source: {
2968
+ chartId: string;
2969
+ text?: string | undefined;
2970
+ autoHeight?: boolean | undefined;
2971
+ };
2972
+ });
2973
+ defaults: Record<any, any>;
2974
+ } | {
2975
+ type: import("..").DashTabItemType.GroupControl;
2976
+ data: {
2977
+ group: ({
2978
+ id: string;
2979
+ title: string;
2980
+ namespace: "default";
2981
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
2982
+ defaults: Record<any, any>;
2983
+ placementMode?: "auto" | "%" | "px" | undefined;
2984
+ width?: string | undefined;
2985
+ } & ({
2986
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
2987
+ source: ({
2988
+ showTitle: boolean;
2989
+ elementType: DashTabItemControlElementType;
2990
+ required?: boolean | undefined;
2991
+ showHint?: boolean | undefined;
2992
+ } & ({
2993
+ elementType: import("..").DashTabItemControlElementType.Select;
2994
+ defaultValue: string | string[];
2995
+ multiselectable: boolean;
2996
+ } | {
2997
+ elementType: import("..").DashTabItemControlElementType.Date;
2998
+ defaultValue: string;
2999
+ isRange: boolean;
3000
+ } | {
3001
+ elementType: import("..").DashTabItemControlElementType.Input;
3002
+ defaultValue: string;
3003
+ } | {
3004
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
3005
+ defaultValue: string;
3006
+ })) & {
3007
+ datasetId: string;
3008
+ datasetFieldId: string;
3009
+ };
3010
+ } | {
3011
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
3012
+ source: ({
3013
+ showTitle: boolean;
3014
+ elementType: DashTabItemControlElementType;
3015
+ required?: boolean | undefined;
3016
+ showHint?: boolean | undefined;
3017
+ } & ({
3018
+ elementType: import("..").DashTabItemControlElementType.Select;
3019
+ defaultValue: string | string[];
3020
+ multiselectable: boolean;
3021
+ } | {
3022
+ elementType: import("..").DashTabItemControlElementType.Date;
3023
+ defaultValue: string;
3024
+ isRange: boolean;
3025
+ } | {
3026
+ elementType: import("..").DashTabItemControlElementType.Input;
3027
+ defaultValue: string;
3028
+ } | {
3029
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
3030
+ defaultValue: string;
3031
+ })) & {
3032
+ fieldName: string;
3033
+ fieldType: string;
3034
+ acceptableValues: {
3035
+ value: string;
3036
+ title: string;
3037
+ }[] | {
3038
+ from: string;
3039
+ to: string;
3040
+ };
3041
+ };
3042
+ }))[];
3043
+ autoHeight: boolean;
3044
+ buttonApply: boolean;
3045
+ buttonReset: boolean;
3046
+ showGroupName: boolean;
3047
+ updateControlsOnChange?: boolean | undefined;
3048
+ };
3049
+ defaults: Record<any, string | string[]>;
3050
+ }))[];
3051
+ layout: {
3052
+ i: string;
3053
+ h: number;
3054
+ w: number;
3055
+ x: number;
3056
+ y: number;
3057
+ parent?: string | undefined;
3058
+ }[];
3059
+ connections: {
3060
+ from: string;
3061
+ to: string;
3062
+ kind: import("..").DashTabConnectionKind.Ignore;
3063
+ }[];
3064
+ aliases: {
3065
+ default?: string[][] | undefined;
3066
+ };
3067
+ }[];
3068
+ settings: {
3069
+ autoupdateInterval: number | null;
3070
+ maxConcurrentRequests: number | null;
3071
+ silentLoading: boolean;
3072
+ dependentSelectors: boolean;
3073
+ hideTabs: boolean;
3074
+ expandTOC: boolean;
3075
+ loadPriority?: DashLoadPriority | undefined;
3076
+ globalParams?: Record<any, any> | undefined;
3077
+ hideDashTitle?: boolean | undefined;
3078
+ assistantEnabled?: boolean | undefined;
3079
+ };
3080
+ supportDescription?: string | undefined;
3081
+ accessDescription?: string | undefined;
3082
+ };
3083
+ meta: Record<string, string> | null;
3084
+ revId?: string | undefined;
3085
+ annotation?: {
3086
+ description: string;
3087
+ } | undefined;
3088
+ };
3089
+ mode: EntryUpdateMode;
3090
+ }>, NoInfer<{
3091
+ entry: {
3092
+ createdAt: string;
3093
+ createdBy: string;
3094
+ data: {
3095
+ counter: number;
3096
+ salt: string;
3097
+ schemeVersion: 8;
3098
+ tabs: {
3099
+ id: string;
3100
+ title: string;
3101
+ items: ({
3102
+ id: string;
3103
+ namespace: "default";
3104
+ type: DashTabItemType;
3105
+ } & ({
3106
+ type: import("..").DashTabItemType.Text;
3107
+ data: {
3108
+ text: string;
3109
+ };
3110
+ } | {
3111
+ type: import("..").DashTabItemType.Title;
3112
+ data: {
3113
+ text: string;
3114
+ size: "l" | "m" | "s" | "xl" | "xs";
3115
+ showInTOC: boolean;
3116
+ };
3117
+ } | {
3118
+ type: import("..").DashTabItemType.Widget;
3119
+ data: {
3120
+ hideTitle: boolean;
3121
+ tabs: {
3122
+ id: string;
3123
+ title: string;
3124
+ description: string;
3125
+ chartId: string;
3126
+ isDefault: boolean;
3127
+ params: Record<any, any>;
3128
+ autoHeight?: boolean | undefined;
3129
+ }[];
3130
+ };
3131
+ } | {
3132
+ type: import("..").DashTabItemType.Control;
3133
+ data: {
3134
+ id: string;
3135
+ namespace: "default";
3136
+ title: string;
3137
+ sourceType: DashTabItemControlSourceType;
3138
+ } & ({
3139
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
3140
+ source: ({
3141
+ showTitle: boolean;
3142
+ elementType: DashTabItemControlElementType;
3143
+ required?: boolean | undefined;
3144
+ showHint?: boolean | undefined;
3145
+ } & ({
3146
+ elementType: import("..").DashTabItemControlElementType.Select;
3147
+ defaultValue: string | string[];
3148
+ multiselectable: boolean;
3149
+ } | {
3150
+ elementType: import("..").DashTabItemControlElementType.Date;
3151
+ defaultValue: string;
3152
+ isRange: boolean;
3153
+ } | {
3154
+ elementType: import("..").DashTabItemControlElementType.Input;
3155
+ defaultValue: string;
3156
+ } | {
3157
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
3158
+ defaultValue: string;
3159
+ })) & {
3160
+ datasetId: string;
3161
+ datasetFieldId: string;
3162
+ };
3163
+ } | {
3164
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
3165
+ source: ({
3166
+ showTitle: boolean;
3167
+ elementType: DashTabItemControlElementType;
3168
+ required?: boolean | undefined;
3169
+ showHint?: boolean | undefined;
3170
+ } & ({
3171
+ elementType: import("..").DashTabItemControlElementType.Select;
3172
+ defaultValue: string | string[];
3173
+ multiselectable: boolean;
3174
+ } | {
3175
+ elementType: import("..").DashTabItemControlElementType.Date;
3176
+ defaultValue: string;
3177
+ isRange: boolean;
3178
+ } | {
3179
+ elementType: import("..").DashTabItemControlElementType.Input;
3180
+ defaultValue: string;
3181
+ } | {
3182
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
3183
+ defaultValue: string;
3184
+ })) & {
3185
+ fieldName: string;
3186
+ fieldType: string;
3187
+ acceptableValues: {
3188
+ value: string;
3189
+ title: string;
3190
+ }[] | {
3191
+ from: string;
3192
+ to: string;
3193
+ };
3194
+ };
3195
+ } | {
3196
+ sourceType: import("..").DashTabItemControlSourceType.External;
3197
+ source: {
3198
+ chartId: string;
3199
+ text?: string | undefined;
3200
+ autoHeight?: boolean | undefined;
3201
+ };
3202
+ });
3203
+ defaults: Record<any, any>;
3204
+ } | {
3205
+ type: import("..").DashTabItemType.GroupControl;
3206
+ data: {
3207
+ group: ({
3208
+ id: string;
3209
+ title: string;
3210
+ namespace: "default";
3211
+ sourceType: import("..").DashTabItemControlSourceType.Dataset | import("..").DashTabItemControlSourceType.Manual;
3212
+ defaults: Record<any, any>;
3213
+ placementMode?: "auto" | "%" | "px" | undefined;
3214
+ width?: string | undefined;
3215
+ } & ({
3216
+ sourceType: import("..").DashTabItemControlSourceType.Dataset;
3217
+ source: ({
3218
+ showTitle: boolean;
3219
+ elementType: DashTabItemControlElementType;
3220
+ required?: boolean | undefined;
3221
+ showHint?: boolean | undefined;
3222
+ } & ({
3223
+ elementType: import("..").DashTabItemControlElementType.Select;
3224
+ defaultValue: string | string[];
3225
+ multiselectable: boolean;
3226
+ } | {
3227
+ elementType: import("..").DashTabItemControlElementType.Date;
3228
+ defaultValue: string;
3229
+ isRange: boolean;
3230
+ } | {
3231
+ elementType: import("..").DashTabItemControlElementType.Input;
3232
+ defaultValue: string;
3233
+ } | {
3234
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
3235
+ defaultValue: string;
3236
+ })) & {
3237
+ datasetId: string;
3238
+ datasetFieldId: string;
3239
+ };
3240
+ } | {
3241
+ sourceType: import("..").DashTabItemControlSourceType.Manual;
3242
+ source: ({
3243
+ showTitle: boolean;
3244
+ elementType: DashTabItemControlElementType;
3245
+ required?: boolean | undefined;
3246
+ showHint?: boolean | undefined;
3247
+ } & ({
3248
+ elementType: import("..").DashTabItemControlElementType.Select;
3249
+ defaultValue: string | string[];
3250
+ multiselectable: boolean;
3251
+ } | {
3252
+ elementType: import("..").DashTabItemControlElementType.Date;
3253
+ defaultValue: string;
3254
+ isRange: boolean;
3255
+ } | {
3256
+ elementType: import("..").DashTabItemControlElementType.Input;
3257
+ defaultValue: string;
3258
+ } | {
3259
+ elementType: import("..").DashTabItemControlElementType.Checkbox;
3260
+ defaultValue: string;
3261
+ })) & {
3262
+ fieldName: string;
3263
+ fieldType: string;
3264
+ acceptableValues: {
3265
+ value: string;
3266
+ title: string;
3267
+ }[] | {
3268
+ from: string;
3269
+ to: string;
3270
+ };
3271
+ };
3272
+ }))[];
3273
+ autoHeight: boolean;
3274
+ buttonApply: boolean;
3275
+ buttonReset: boolean;
3276
+ showGroupName: boolean;
3277
+ updateControlsOnChange?: boolean | undefined;
3278
+ };
3279
+ defaults: Record<any, string | string[]>;
3280
+ }))[];
3281
+ layout: {
3282
+ i: string;
3283
+ h: number;
3284
+ w: number;
3285
+ x: number;
3286
+ y: number;
3287
+ parent?: string | undefined;
3288
+ }[];
3289
+ connections: {
3290
+ from: string;
3291
+ to: string;
3292
+ kind: import("..").DashTabConnectionKind.Ignore;
3293
+ }[];
3294
+ aliases: {
3295
+ default?: string[][] | undefined;
3296
+ };
3297
+ }[];
3298
+ settings: {
3299
+ autoupdateInterval: number | null;
3300
+ maxConcurrentRequests: number | null;
3301
+ silentLoading: boolean;
3302
+ dependentSelectors: boolean;
3303
+ hideTabs: boolean;
3304
+ expandTOC: boolean;
3305
+ loadPriority?: DashLoadPriority | undefined;
3306
+ globalParams?: Record<any, any> | undefined;
3307
+ hideDashTitle?: boolean | undefined;
3308
+ assistantEnabled?: boolean | undefined;
3309
+ };
3310
+ supportDescription?: string | undefined;
3311
+ accessDescription?: string | undefined;
3312
+ };
3313
+ entryId: string;
3314
+ hidden: boolean;
3315
+ key: string | null;
3316
+ meta: Record<string, string> | null;
3317
+ public: boolean;
3318
+ publishedId: string | null;
3319
+ revId: string;
3320
+ savedId: string;
3321
+ scope: import("..").EntryScope.Dash;
3322
+ tenantId: string;
3323
+ type: "";
3324
+ updatedAt: string;
3325
+ updatedBy: string;
3326
+ version: 1;
3327
+ workbookId: string | null;
3328
+ annotation?: {
3329
+ description?: string | undefined;
3330
+ } | null | undefined;
3331
+ links?: Record<string, string> | null | undefined;
3332
+ };
3333
+ }>>;
3334
+ deleteDashboard: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, NoInfer<Record<string, never>>, NoInfer<{
3335
+ dashboardId: string;
3336
+ lockToken?: string | undefined;
3337
+ }>, NoInfer<Record<string, never>>>;
3338
+ collectDashStats: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CollectDashStatsResponse, DashStats, CollectDashStatsResponse>;
3339
+ collectChartkitStats: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, CollectChartkitStatsResponse, CollectChartkitStatsArgs, CollectChartkitStatsResponse>;
3340
+ getEntriesDatasetsFields: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntriesDatasetsFieldsResponse, GetEntriesDatasetsFieldsArgs, GetEntriesDatasetsFieldsResponse>;
3341
+ getWidgetsDatasetsFields: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetWidgetsDatasetsFieldsResponse, GetWidgetsDatasetsFieldsArgs, GetWidgetsDatasetsFieldsResponse>;
3342
+ renderMarkdown: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, RenderHtmlOutput, RenderMarkdownArgs, RenderHtmlOutput>;
3343
+ batchRenderMarkdown: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, BatchRenderMarkdownResponse, BatchRenderMarkdownArgs, BatchRenderMarkdownResponse>;
3344
+ deleteEntry: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, unknown, DeleteEntryArgs, unknown>;
3345
+ getPublicationPreview: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetPublicationPreviewResponse, GetPublicationPreviewArgs, GetPublicationPreviewResponse>;
3346
+ switchPublicationStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, SwitchPublicationStatusResponse, MixedSwitchPublicationStatusArgs, SwitchPublicationStatusResponse>;
3347
+ resolveEntryByLink: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, ResolveEntryByLinkComponentResponse, ResolveEntryByLinkArgs, ResolveEntryByLinkComponentResponse>;
3348
+ getEntryMetaStatus: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryMetaStatusResponse, GetEntryMetaStatusArgs, GetEntryMetaStatusResponse>;
3349
+ getEntriesInFolder: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntriesInFolderResponse, GetEntriesInFolderArgs, GetEntriesInFolderResponse>;
3350
+ getEntryRelations: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEntryRelationsResponse, GetEntryRelationsArgs, GetEntryRelationsResponse>;
3351
+ getBatchEntriesByIds: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetBatchEntriesByIdsResponse, GetBatchEntriesByIdsArgs, GetBatchEntriesByIdsResponse>;
3352
+ getEnrichedLinksTree: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetEnrichedLinksTreeResponse, GetEnrichedLinksTreeArgs, GetEnrichedLinksTreeResponse>;
3353
+ getNavigationList: ApiServiceActionConfig<AppContext, Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>, Response<any, Record<string, any>>, GetNavigationListResponse, GetNavigationListArgs, GetNavigationListResponse>;
3354
+ };
3355
+ serviceName: string;
3356
+ };
3357
+ };
3358
+ export * from './types';
3359
+ export declare const getTypedApi: (api: unknown) => ContextApiWithRoot<{
3360
+ root: typeof schema;
3361
+ auth: typeof authSchema;
3362
+ }>;
3363
+ export type TypedApi = ReturnType<typeof getTypedApi>;