ydb-embedded-ui 16.0.0 → 16.2.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 (199) hide show
  1. package/dist/components/MetricChart/reducer.d.ts +2 -2
  2. package/dist/components/VDisk/VDisk.d.ts +2 -1
  3. package/dist/components/VDisk/VDisk.js +5 -2
  4. package/dist/components/VDisk/VDisk.js.map +1 -1
  5. package/dist/components/VDisk/VDisk.scss +5 -1
  6. package/dist/components/VDisk/VDiskWithDonorsStack.d.ts +1 -1
  7. package/dist/components/VDisk/VDiskWithDonorsStack.js +2 -1
  8. package/dist/components/VDisk/VDiskWithDonorsStack.js.map +1 -1
  9. package/dist/containers/Cluster/ClusterOverview/ClusterOverview.js +1 -1
  10. package/dist/containers/Cluster/ClusterOverview/ClusterOverview.js.map +1 -1
  11. package/dist/containers/Cluster/ClusterOverview/components/BridgeInfoTable.js +148 -29
  12. package/dist/containers/Cluster/ClusterOverview/components/BridgeInfoTable.js.map +1 -1
  13. package/dist/containers/Cluster/ClusterOverview/components/BridgeInfoTable.scss +106 -10
  14. package/dist/containers/Cluster/i18n/en.json +23 -0
  15. package/dist/containers/Cluster/i18n/index.d.ts +1 -1
  16. package/dist/containers/Clusters/Clusters.js +40 -3
  17. package/dist/containers/Clusters/Clusters.js.map +1 -1
  18. package/dist/containers/Clusters/columns.js +9 -0
  19. package/dist/containers/Clusters/columns.js.map +1 -1
  20. package/dist/containers/Clusters/constants.d.ts +2 -0
  21. package/dist/containers/Clusters/constants.js +4 -0
  22. package/dist/containers/Clusters/constants.js.map +1 -1
  23. package/dist/containers/Clusters/i18n/en.json +1 -0
  24. package/dist/containers/Clusters/i18n/index.d.ts +1 -1
  25. package/dist/containers/Operations/Operations.js +2 -2
  26. package/dist/containers/Operations/Operations.js.map +1 -1
  27. package/dist/containers/Operations/columns.d.ts +1 -2
  28. package/dist/containers/Operations/columns.js +3 -5
  29. package/dist/containers/Operations/columns.js.map +1 -1
  30. package/dist/containers/Operations/useOperationsInfiniteQuery.d.ts +0 -5
  31. package/dist/containers/Operations/useOperationsInfiniteQuery.js +14 -11
  32. package/dist/containers/Operations/useOperationsInfiniteQuery.js.map +1 -1
  33. package/dist/containers/Storage/PaginatedStorageGroupsTable/columns/hooks.d.ts +1 -0
  34. package/dist/containers/Storage/PaginatedStorageNodes/useStorageNodesColumnsToSelect.d.ts +1 -0
  35. package/dist/containers/Storage/PaginatedStorageNodesTable/columns/hooks.d.ts +1 -0
  36. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/CompactTableAction/CompactTableAction.d.ts +15 -3
  37. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/CompactTableAction/CompactTableAction.js +41 -22
  38. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/CompactTableAction/CompactTableAction.js.map +1 -1
  39. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/TableInfo.js +36 -45
  40. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/TableInfo.js.map +1 -1
  41. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/components/TableInfoSection.d.ts +17 -0
  42. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/components/TableInfoSection.js +19 -0
  43. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/components/TableInfoSection.js.map +1 -0
  44. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTableCompaction.d.ts +16 -0
  45. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTableCompaction.js +33 -0
  46. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTableCompaction.js.map +1 -0
  47. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTablePartitioning.d.ts +14 -0
  48. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTablePartitioning.js +39 -0
  49. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTablePartitioning.js.map +1 -0
  50. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/i18n/en.json +6 -3
  51. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/i18n/index.d.ts +1 -1
  52. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/index.d.ts +27 -0
  53. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/index.js +64 -0
  54. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/index.js.map +1 -0
  55. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareColumnTableInfo.d.ts +6 -0
  56. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareColumnTableInfo.js +38 -0
  57. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareColumnTableInfo.js.map +1 -0
  58. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareCommonTableInfo.d.ts +32 -0
  59. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareCommonTableInfo.js +94 -0
  60. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareCommonTableInfo.js.map +1 -0
  61. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/preparePartitionConfig.d.ts +11 -0
  62. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/preparePartitionConfig.js +45 -0
  63. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/preparePartitionConfig.js.map +1 -0
  64. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareRowTableInfo.d.ts +10 -0
  65. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareRowTableInfo.js +53 -0
  66. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareRowTableInfo.js.map +1 -0
  67. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareTTL.d.ts +10 -0
  68. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareTTL.js +19 -0
  69. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareTTL.js.map +1 -0
  70. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/renderHelpers.d.ts +18 -0
  71. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/renderHelpers.js +41 -0
  72. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/renderHelpers.js.map +1 -0
  73. package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/useTenantStorageNewData.d.ts +5 -5
  74. package/dist/containers/Tenant/Diagnostics/TopicData/TopicMessageDetails/components/TopicMessageGeneralInfo.js +1 -0
  75. package/dist/containers/Tenant/Diagnostics/TopicData/TopicMessageDetails/components/TopicMessageGeneralInfo.js.map +1 -1
  76. package/dist/containers/Tenant/Diagnostics/TopicData/TopicMessageDetails/components/fields.js +8 -0
  77. package/dist/containers/Tenant/Diagnostics/TopicData/TopicMessageDetails/components/fields.js.map +1 -1
  78. package/dist/containers/Tenant/Diagnostics/TopicData/columns/columns.d.ts +1 -0
  79. package/dist/containers/Tenant/Diagnostics/TopicData/columns/columns.js +8 -0
  80. package/dist/containers/Tenant/Diagnostics/TopicData/columns/columns.js.map +1 -1
  81. package/dist/containers/Tenant/Diagnostics/TopicData/i18n/en.json +1 -0
  82. package/dist/containers/Tenant/Diagnostics/TopicData/i18n/index.d.ts +1 -1
  83. package/dist/containers/Tenant/Diagnostics/TopicData/utils/constants.js +3 -0
  84. package/dist/containers/Tenant/Diagnostics/TopicData/utils/constants.js.map +1 -1
  85. package/dist/containers/Tenant/Diagnostics/TopicData/utils/types.d.ts +1 -0
  86. package/dist/containers/Tenant/Diagnostics/TopicData/utils/types.js +1 -0
  87. package/dist/containers/Tenant/Diagnostics/TopicData/utils/types.js.map +1 -1
  88. package/dist/containers/Tenant/ObjectSummary/SchemaTree/SchemaTree.js +39 -1
  89. package/dist/containers/Tenant/ObjectSummary/SchemaTree/SchemaTree.js.map +1 -1
  90. package/dist/containers/Tenant/Query/NewSQL/NewSQL.js +4 -0
  91. package/dist/containers/Tenant/Query/NewSQL/NewSQL.js.map +1 -1
  92. package/dist/containers/Tenant/Query/NewSQL/i18n/en.json +1 -0
  93. package/dist/containers/Tenant/Query/NewSQL/i18n/index.d.ts +1 -1
  94. package/dist/containers/Tenant/i18n/en.json +2 -0
  95. package/dist/containers/Tenant/i18n/index.d.ts +1 -1
  96. package/dist/containers/Tenant/utils/newSQLQueryActions.d.ts +1 -0
  97. package/dist/containers/Tenant/utils/newSQLQueryActions.js +2 -1
  98. package/dist/containers/Tenant/utils/newSQLQueryActions.js.map +1 -1
  99. package/dist/containers/Tenant/utils/schema.d.ts +1 -0
  100. package/dist/containers/Tenant/utils/schema.js +3 -0
  101. package/dist/containers/Tenant/utils/schema.js.map +1 -1
  102. package/dist/containers/Tenant/utils/schemaActions.d.ts +3 -0
  103. package/dist/containers/Tenant/utils/schemaActions.js +26 -7
  104. package/dist/containers/Tenant/utils/schemaActions.js.map +1 -1
  105. package/dist/containers/Tenant/utils/schemaQueryTemplates.d.ts +1 -0
  106. package/dist/containers/Tenant/utils/schemaQueryTemplates.js +9 -0
  107. package/dist/containers/Tenant/utils/schemaQueryTemplates.js.map +1 -1
  108. package/dist/containers/Versions/NodesTreeTitle/NodesTreeTitle.js +9 -17
  109. package/dist/containers/Versions/NodesTreeTitle/NodesTreeTitle.js.map +1 -1
  110. package/dist/store/configureStore.d.ts +4 -4
  111. package/dist/store/defaultStore.d.ts +2 -2
  112. package/dist/store/reducers/api.d.ts +1 -1
  113. package/dist/store/reducers/api.js +1 -1
  114. package/dist/store/reducers/api.js.map +1 -1
  115. package/dist/store/reducers/authentication/authentication.d.ts +4 -4
  116. package/dist/store/reducers/cancelQuery.d.ts +2 -2
  117. package/dist/store/reducers/capabilities/capabilities.d.ts +39 -39
  118. package/dist/store/reducers/capabilities/hooks.d.ts +5 -5
  119. package/dist/store/reducers/cluster/cluster.d.ts +5 -5
  120. package/dist/store/reducers/cluster/cluster.js +3 -2
  121. package/dist/store/reducers/cluster/cluster.js.map +1 -1
  122. package/dist/store/reducers/cluster/utils.d.ts +2 -1
  123. package/dist/store/reducers/cluster/utils.js +28 -0
  124. package/dist/store/reducers/cluster/utils.js.map +1 -1
  125. package/dist/store/reducers/clusters/clusters.d.ts +2 -2
  126. package/dist/store/reducers/codeAssist/codeAssist.d.ts +6 -6
  127. package/dist/store/reducers/configs.d.ts +3 -3
  128. package/dist/store/reducers/environments/environments.d.ts +2 -2
  129. package/dist/store/reducers/executeTopQueries/executeTopQueries.d.ts +4 -4
  130. package/dist/store/reducers/healthcheckInfo/healthcheckInfo.d.ts +111 -111
  131. package/dist/store/reducers/heatmap.d.ts +2 -2
  132. package/dist/store/reducers/hotKeys/hotKeys.d.ts +2 -2
  133. package/dist/store/reducers/index.d.ts +3 -3
  134. package/dist/store/reducers/network/network.d.ts +2 -2
  135. package/dist/store/reducers/node/node.d.ts +3 -3
  136. package/dist/store/reducers/node/selectors.d.ts +1 -1
  137. package/dist/store/reducers/nodes/nodes.d.ts +2 -2
  138. package/dist/store/reducers/nodesList.d.ts +12 -12
  139. package/dist/store/reducers/operations.d.ts +6 -9
  140. package/dist/store/reducers/operations.js +5 -24
  141. package/dist/store/reducers/operations.js.map +1 -1
  142. package/dist/store/reducers/overview/overview.d.ts +2 -2
  143. package/dist/store/reducers/partitions/partitions.d.ts +3 -3
  144. package/dist/store/reducers/pdisk/pdisk.d.ts +2 -2
  145. package/dist/store/reducers/planToSvg.d.ts +2 -2
  146. package/dist/store/reducers/preview.d.ts +2 -2
  147. package/dist/store/reducers/query/api.d.ts +4 -4
  148. package/dist/store/reducers/replication.d.ts +2 -2
  149. package/dist/store/reducers/schema/schema.d.ts +16 -16
  150. package/dist/store/reducers/schemaAcl/schemaAcl.d.ts +39 -39
  151. package/dist/store/reducers/settings/api.d.ts +4 -4
  152. package/dist/store/reducers/settings/settings.d.ts +1 -1
  153. package/dist/store/reducers/shardsWorkload/shardsWorkload.d.ts +2 -2
  154. package/dist/store/reducers/showCreateTable/showCreateTable.d.ts +2 -2
  155. package/dist/store/reducers/storage/storage.d.ts +3 -3
  156. package/dist/store/reducers/storageUsage/StorageUsage.d.ts +2 -2
  157. package/dist/store/reducers/streamingQuery/streamingQuery.d.ts +2 -2
  158. package/dist/store/reducers/tableData.d.ts +1 -1
  159. package/dist/store/reducers/tablePartitioning/tablePartitioning.d.ts +2 -2
  160. package/dist/store/reducers/tableSchemaData.d.ts +2 -2
  161. package/dist/store/reducers/tablet.d.ts +7 -7
  162. package/dist/store/reducers/tablets.d.ts +3 -3
  163. package/dist/store/reducers/tenant/tenant.d.ts +2 -2
  164. package/dist/store/reducers/tenantOverview/executeTopTables/executeTopTables.d.ts +2 -2
  165. package/dist/store/reducers/tenantOverview/storage/tenantOverviewStorage.d.ts +2 -2
  166. package/dist/store/reducers/tenantOverview/topShards/tenantOverviewTopShards.d.ts +2 -2
  167. package/dist/store/reducers/tenants/tenants.d.ts +2 -2
  168. package/dist/store/reducers/topic.d.ts +45 -45
  169. package/dist/store/reducers/vdisk/vdisk.d.ts +3 -3
  170. package/dist/store/reducers/viewSchema/viewSchema.d.ts +2 -2
  171. package/dist/types/api/cluster.d.ts +10 -1
  172. package/dist/types/api/cluster.js +8 -0
  173. package/dist/types/api/cluster.js.map +1 -1
  174. package/dist/types/api/topic.d.ts +1 -0
  175. package/dist/utils/balancer.d.ts +1 -0
  176. package/dist/utils/balancer.js +5 -0
  177. package/dist/utils/balancer.js.map +1 -0
  178. package/dist/utils/clusterLinks/resolveClusterLinks.d.ts +6 -4
  179. package/dist/utils/clusterLinks/resolveClusterLinks.js +22 -6
  180. package/dist/utils/clusterLinks/resolveClusterLinks.js.map +1 -1
  181. package/dist/utils/hooks/index.d.ts +1 -0
  182. package/dist/utils/hooks/index.js +1 -0
  183. package/dist/utils/hooks/index.js.map +1 -1
  184. package/dist/utils/hooks/useCompactionFeature.d.ts +13 -0
  185. package/dist/utils/hooks/useCompactionFeature.js +20 -0
  186. package/dist/utils/hooks/useCompactionFeature.js.map +1 -0
  187. package/dist/utils/hooks/useSelectedColumns.d.ts +1 -0
  188. package/dist/utils/hooks/useSelectedColumns.js +5 -0
  189. package/dist/utils/hooks/useSelectedColumns.js.map +1 -1
  190. package/dist/utils/hooks/useStartCompaction.d.ts +7 -0
  191. package/dist/utils/hooks/useStartCompaction.js +22 -0
  192. package/dist/utils/hooks/useStartCompaction.js.map +1 -0
  193. package/dist/utils/parseBalancer.d.ts +0 -1
  194. package/dist/utils/parseBalancer.js +3 -6
  195. package/dist/utils/parseBalancer.js.map +1 -1
  196. package/package.json +1 -1
  197. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo.d.ts +0 -42
  198. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo.js +0 -252
  199. package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo.js.map +0 -1
@@ -1,9 +1,9 @@
1
1
  import type { AcceptEvent, DeclineEvent, IgnoreEvent, PromptFile, Suggestions } from '@ydb-platform/monaco-ghost';
2
2
  import type { TelemetryOpenTabs } from '../../../types/api/codeAssist';
3
3
  export declare const codeAssistApi: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, {
4
- getCodeAssistSuggestions: import("@reduxjs/toolkit/query").QueryDefinition<PromptFile[], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", Suggestions, "api", typeof import("../api")._NEVER>;
5
- acceptSuggestion: import("@reduxjs/toolkit/query").MutationDefinition<AcceptEvent, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", any, "api", any>;
6
- discardSuggestion: import("@reduxjs/toolkit/query").MutationDefinition<DeclineEvent, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", any, "api", any>;
7
- ignoreSuggestion: import("@reduxjs/toolkit/query").MutationDefinition<IgnoreEvent, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", any, "api", any>;
8
- sendUserQueriesData: import("@reduxjs/toolkit/query").MutationDefinition<TelemetryOpenTabs, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", any, "api", any>;
9
- }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
4
+ getCodeAssistSuggestions: import("@reduxjs/toolkit/query").QueryDefinition<PromptFile[], import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", Suggestions, "api", typeof import("../api")._NEVER>;
5
+ acceptSuggestion: import("@reduxjs/toolkit/query").MutationDefinition<AcceptEvent, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", any, "api", any>;
6
+ discardSuggestion: import("@reduxjs/toolkit/query").MutationDefinition<DeclineEvent, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", any, "api", any>;
7
+ ignoreSuggestion: import("@reduxjs/toolkit/query").MutationDefinition<IgnoreEvent, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", any, "api", any>;
8
+ sendUserQueriesData: import("@reduxjs/toolkit/query").MutationDefinition<TelemetryOpenTabs, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", any, "api", any>;
9
+ }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
@@ -1,13 +1,13 @@
1
1
  export declare const configsApi: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("./api")._NEVER, unknown, {}>, {
2
2
  getFeatureFlags: import("@reduxjs/toolkit/query").QueryDefinition<{
3
3
  database?: string;
4
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("./api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", import("../../types/api/featureFlags").FeatureFlagConfig[] | undefined, "api", any>;
4
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("./api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", import("../../types/api/featureFlags").FeatureFlagConfig[] | undefined, "api", any>;
5
5
  getConfig: import("@reduxjs/toolkit/query").QueryDefinition<{
6
6
  database?: string;
7
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("./api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", {
7
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("./api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", {
8
8
  current: {
9
9
  [x: string]: unknown;
10
10
  };
11
11
  startup: string;
12
12
  } | undefined, "api", any>;
13
- }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
13
+ }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
@@ -1,3 +1,3 @@
1
1
  export declare const environmentsApi: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, {
2
- getMetaEnvironments: import("@reduxjs/toolkit/query").QueryDefinition<any, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", string[] | undefined, "api", any>;
3
- }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
2
+ getMetaEnvironments: import("@reduxjs/toolkit/query").QueryDefinition<any, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", string[] | undefined, "api", any>;
3
+ }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
@@ -13,13 +13,13 @@ type TopQueriesRequestParams = QueriesRequestParams & {
13
13
  timeFrame: TimeFrame;
14
14
  };
15
15
  export declare const topQueriesApi: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, {
16
- getTopQueries: import("@reduxjs/toolkit/query").QueryDefinition<TopQueriesRequestParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", import("../../../types/store/query").IQueryResult | undefined, "api", any>;
17
- getRunningQueries: import("@reduxjs/toolkit/query").QueryDefinition<QueriesRequestParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", import("../../../types/store/query").IQueryResult | undefined, "api", any>;
16
+ getTopQueries: import("@reduxjs/toolkit/query").QueryDefinition<TopQueriesRequestParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", import("../../../types/store/query").IQueryResult | undefined, "api", any>;
17
+ getRunningQueries: import("@reduxjs/toolkit/query").QueryDefinition<QueriesRequestParams, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", import("../../../types/store/query").IQueryResult | undefined, "api", any>;
18
18
  getRunningQueriesCount: import("@reduxjs/toolkit/query").QueryDefinition<{
19
19
  database: string;
20
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", {
20
+ }, import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", {
21
21
  runningQueriesCount: number;
22
22
  uniqueApplications: number;
23
23
  uniqueUsers: number;
24
24
  } | undefined, "api", any>;
25
- }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "CompactionList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
25
+ }, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;