ydb-embedded-ui 15.8.0 → 16.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/EvictVDiskButton/i18n/en.json +2 -2
- package/dist/components/MetricChart/reducer.d.ts +2 -2
- package/dist/components/PDiskInfo/PDiskInfo.js +4 -1
- package/dist/components/PDiskInfo/PDiskInfo.js.map +1 -1
- package/dist/components/PDiskInfo/i18n/en.json +1 -0
- package/dist/components/PDiskInfo/i18n/index.d.ts +1 -1
- package/dist/components/StorageGroupInfo/StorageGroupInfo.js +6 -2
- package/dist/components/StorageGroupInfo/StorageGroupInfo.js.map +1 -1
- package/dist/components/StorageGroupInfo/i18n/en.json +1 -0
- package/dist/components/StorageGroupInfo/i18n/index.d.ts +1 -1
- package/dist/components/VDiskInfo/VDiskInfo.js +2 -2
- package/dist/components/VDiskInfo/VDiskInfo.js.map +1 -1
- package/dist/containers/App/NavigationWrapper.js +4 -2
- package/dist/containers/App/NavigationWrapper.js.map +1 -1
- package/dist/containers/Cluster/ClusterOverview/components/BridgeInfoTable.js +148 -29
- package/dist/containers/Cluster/ClusterOverview/components/BridgeInfoTable.js.map +1 -1
- package/dist/containers/Cluster/ClusterOverview/components/BridgeInfoTable.scss +106 -10
- package/dist/containers/Cluster/i18n/en.json +23 -0
- package/dist/containers/Cluster/i18n/index.d.ts +1 -1
- package/dist/containers/Clusters/Clusters.js +17 -5
- package/dist/containers/Clusters/Clusters.js.map +1 -1
- package/dist/containers/Clusters/i18n/en.json +1 -0
- package/dist/containers/Clusters/i18n/index.d.ts +1 -1
- package/dist/containers/Header/hooks/useClusterData.d.ts +1 -0
- package/dist/containers/Operations/Operations.js +2 -2
- package/dist/containers/Operations/Operations.js.map +1 -1
- package/dist/containers/Operations/columns.d.ts +1 -2
- package/dist/containers/Operations/columns.js +3 -5
- package/dist/containers/Operations/columns.js.map +1 -1
- package/dist/containers/Operations/useOperationsInfiniteQuery.d.ts +0 -5
- package/dist/containers/Operations/useOperationsInfiniteQuery.js +14 -11
- package/dist/containers/Operations/useOperationsInfiniteQuery.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/CompactTableAction/CompactTableAction.d.ts +15 -3
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/CompactTableAction/CompactTableAction.js +41 -22
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/CompactTableAction/CompactTableAction.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/TableInfo.js +36 -45
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/TableInfo.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/components/TableInfoSection.d.ts +17 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/components/TableInfoSection.js +19 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/components/TableInfoSection.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTableCompaction.d.ts +16 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTableCompaction.js +33 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTableCompaction.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTablePartitioning.d.ts +14 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTablePartitioning.js +39 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/hooks/useTablePartitioning.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/i18n/en.json +6 -3
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/i18n/index.d.ts +1 -1
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/index.d.ts +27 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/index.js +64 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/index.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareColumnTableInfo.d.ts +6 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareColumnTableInfo.js +38 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareColumnTableInfo.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareCommonTableInfo.d.ts +32 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareCommonTableInfo.js +94 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareCommonTableInfo.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/preparePartitionConfig.d.ts +11 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/preparePartitionConfig.js +45 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/preparePartitionConfig.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareRowTableInfo.d.ts +10 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareRowTableInfo.js +53 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareRowTableInfo.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareTTL.d.ts +10 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareTTL.js +19 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/prepareTTL.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/renderHelpers.d.ts +18 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/renderHelpers.js +41 -0
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo/renderHelpers.js.map +1 -0
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageNew.js +16 -5
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageNew.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSegments.d.ts +4 -2
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSegments.js +8 -5
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSegments.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummaryCard.d.ts +4 -2
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummaryCard.js +23 -15
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummaryCard.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummaryCard.scss +6 -3
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummarySections.d.ts +9 -4
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummarySections.js +15 -10
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TenantStorageSummarySections.js.map +1 -1
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/i18n/en.json +2 -0
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/i18n/index.d.ts +1 -1
- package/dist/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/useTenantStorageNewData.d.ts +5 -5
- package/dist/containers/Tenant/Healthcheck/Healthcheck.d.ts +3 -8
- package/dist/containers/Tenant/Healthcheck/Healthcheck.js +10 -10
- package/dist/containers/Tenant/Healthcheck/Healthcheck.js.map +1 -1
- package/dist/containers/Tenant/Healthcheck/components/HealthcheckIssues.js +1 -14
- package/dist/containers/Tenant/Healthcheck/components/HealthcheckIssues.js.map +1 -1
- package/dist/containers/Tenant/Healthcheck/components/HealthcheckView.d.ts +2 -1
- package/dist/containers/Tenant/Healthcheck/components/HealthcheckView.js +11 -27
- package/dist/containers/Tenant/Healthcheck/components/HealthcheckView.js.map +1 -1
- package/dist/containers/Tenant/Healthcheck/shared.d.ts +9 -4
- package/dist/containers/Tenant/Healthcheck/shared.js +15 -26
- package/dist/containers/Tenant/Healthcheck/shared.js.map +1 -1
- package/dist/containers/Tenant/Healthcheck/utils.d.ts +3 -0
- package/dist/containers/Tenant/Healthcheck/utils.js +16 -0
- package/dist/containers/Tenant/Healthcheck/utils.js.map +1 -0
- package/dist/containers/Tenant/ObjectSummary/SchemaTree/SchemaTree.js +39 -1
- package/dist/containers/Tenant/ObjectSummary/SchemaTree/SchemaTree.js.map +1 -1
- package/dist/containers/Tenant/i18n/en.json +1 -0
- package/dist/containers/Tenant/i18n/index.d.ts +1 -1
- package/dist/containers/Tenant/utils/schema.d.ts +1 -0
- package/dist/containers/Tenant/utils/schema.js +3 -0
- package/dist/containers/Tenant/utils/schema.js.map +1 -1
- package/dist/containers/Tenant/utils/schemaActions.d.ts +3 -0
- package/dist/containers/Tenant/utils/schemaActions.js +23 -6
- package/dist/containers/Tenant/utils/schemaActions.js.map +1 -1
- package/dist/containers/UserSettings/Setting.d.ts +7 -1
- package/dist/containers/UserSettings/Setting.js +4 -3
- package/dist/containers/UserSettings/Setting.js.map +1 -1
- package/dist/containers/UserSettings/UserSettings.js +3 -1
- package/dist/containers/UserSettings/UserSettings.js.map +1 -1
- package/dist/containers/UserSettings/settings.d.ts +1 -0
- package/dist/containers/UserSettings/settings.js +17 -6
- package/dist/containers/UserSettings/settings.js.map +1 -1
- package/dist/store/configureStore.d.ts +5 -4
- package/dist/store/configureStore.js +3 -1
- package/dist/store/configureStore.js.map +1 -1
- package/dist/store/defaultStore.d.ts +2 -2
- package/dist/store/reducers/api.d.ts +1 -1
- package/dist/store/reducers/api.js +1 -1
- package/dist/store/reducers/api.js.map +1 -1
- package/dist/store/reducers/authentication/authentication.d.ts +4 -4
- package/dist/store/reducers/cancelQuery.d.ts +2 -2
- package/dist/store/reducers/capabilities/capabilities.d.ts +39 -39
- package/dist/store/reducers/capabilities/hooks.d.ts +7 -6
- package/dist/store/reducers/capabilities/hooks.js +8 -1
- package/dist/store/reducers/capabilities/hooks.js.map +1 -1
- package/dist/store/reducers/cluster/cluster.d.ts +6 -5
- package/dist/store/reducers/cluster/cluster.js +3 -2
- package/dist/store/reducers/cluster/cluster.js.map +1 -1
- package/dist/store/reducers/cluster/utils.d.ts +2 -1
- package/dist/store/reducers/cluster/utils.js +28 -0
- package/dist/store/reducers/cluster/utils.js.map +1 -1
- package/dist/store/reducers/clusters/clusters.d.ts +2 -2
- package/dist/store/reducers/clusters/clusters.js +1 -0
- package/dist/store/reducers/clusters/clusters.js.map +1 -1
- package/dist/store/reducers/clusters/selectors.d.ts +1 -0
- package/dist/store/reducers/clusters/selectors.js +7 -1
- package/dist/store/reducers/clusters/selectors.js.map +1 -1
- package/dist/store/reducers/clusters/types.d.ts +1 -0
- package/dist/store/reducers/codeAssist/codeAssist.d.ts +6 -6
- package/dist/store/reducers/configs.d.ts +3 -3
- package/dist/store/reducers/environments/environments.d.ts +2 -2
- package/dist/store/reducers/executeTopQueries/executeTopQueries.d.ts +4 -4
- package/dist/store/reducers/healthcheckInfo/healthcheckInfo.d.ts +119 -119
- package/dist/store/reducers/healthcheckInfo/healthcheckInfo.js.map +1 -1
- package/dist/store/reducers/healthcheckInfo/types.d.ts +1 -1
- package/dist/store/reducers/healthcheckInfo/utils.js +18 -12
- package/dist/store/reducers/healthcheckInfo/utils.js.map +1 -1
- package/dist/store/reducers/heatmap.d.ts +2 -2
- package/dist/store/reducers/hotKeys/hotKeys.d.ts +2 -2
- package/dist/store/reducers/index.d.ts +3 -3
- package/dist/store/reducers/network/network.d.ts +2 -2
- package/dist/store/reducers/node/node.d.ts +3 -3
- package/dist/store/reducers/node/selectors.d.ts +1 -1
- package/dist/store/reducers/nodes/nodes.d.ts +2 -2
- package/dist/store/reducers/nodesList.d.ts +12 -12
- package/dist/store/reducers/operations.d.ts +6 -9
- package/dist/store/reducers/operations.js +5 -24
- package/dist/store/reducers/operations.js.map +1 -1
- package/dist/store/reducers/overview/overview.d.ts +2 -2
- package/dist/store/reducers/partitions/partitions.d.ts +3 -3
- package/dist/store/reducers/pdisk/pdisk.d.ts +2 -2
- package/dist/store/reducers/planToSvg.d.ts +2 -2
- package/dist/store/reducers/preview.d.ts +2 -2
- package/dist/store/reducers/query/api.d.ts +4 -4
- package/dist/store/reducers/replication.d.ts +2 -2
- package/dist/store/reducers/schema/schema.d.ts +16 -16
- package/dist/store/reducers/schemaAcl/schemaAcl.d.ts +39 -39
- package/dist/store/reducers/settings/api.d.ts +4 -4
- package/dist/store/reducers/settings/settings.d.ts +1 -1
- package/dist/store/reducers/shardsWorkload/shardsWorkload.d.ts +2 -2
- package/dist/store/reducers/showCreateTable/showCreateTable.d.ts +2 -2
- package/dist/store/reducers/storage/storage.d.ts +3 -3
- package/dist/store/reducers/storageUsage/StorageUsage.d.ts +2 -2
- package/dist/store/reducers/streamingQuery/streamingQuery.d.ts +2 -2
- package/dist/store/reducers/tableData.d.ts +1 -1
- package/dist/store/reducers/tablePartitioning/tablePartitioning.d.ts +2 -2
- package/dist/store/reducers/tableSchemaData.d.ts +2 -2
- package/dist/store/reducers/tablet.d.ts +7 -7
- package/dist/store/reducers/tablets.d.ts +3 -3
- package/dist/store/reducers/tenant/tenant.d.ts +2 -2
- package/dist/store/reducers/tenantOverview/executeTopTables/executeTopTables.d.ts +2 -2
- package/dist/store/reducers/tenantOverview/storage/tenantOverviewStorage.d.ts +4 -2
- package/dist/store/reducers/tenantOverview/storage/tenantOverviewStorage.js +28 -5
- package/dist/store/reducers/tenantOverview/storage/tenantOverviewStorage.js.map +1 -1
- package/dist/store/reducers/tenantOverview/topShards/tenantOverviewTopShards.d.ts +2 -2
- package/dist/store/reducers/tenants/tenants.d.ts +2 -2
- package/dist/store/reducers/topic.d.ts +45 -45
- package/dist/store/reducers/vdisk/vdisk.d.ts +3 -3
- package/dist/store/reducers/viewSchema/viewSchema.d.ts +2 -2
- package/dist/types/api/cluster.d.ts +10 -1
- package/dist/types/api/cluster.js +8 -0
- package/dist/types/api/cluster.js.map +1 -1
- package/dist/types/api/meta.d.ts +1 -0
- package/dist/types/api/storage.d.ts +4 -0
- package/dist/types/api/storage.js +4 -1
- package/dist/types/api/storage.js.map +1 -1
- package/dist/uiFactory/types.d.ts +8 -4
- package/dist/uiFactory/uiFactory.d.ts +6 -2
- package/dist/uiFactory/uiFactory.js +17 -3
- package/dist/uiFactory/uiFactory.js.map +1 -1
- package/dist/utils/clusterLinks/resolveClusterLinks.d.ts +6 -4
- package/dist/utils/clusterLinks/resolveClusterLinks.js +14 -6
- package/dist/utils/clusterLinks/resolveClusterLinks.js.map +1 -1
- package/dist/utils/hooks/index.d.ts +1 -0
- package/dist/utils/hooks/index.js +1 -0
- package/dist/utils/hooks/index.js.map +1 -1
- package/dist/utils/hooks/useCompactionFeature.d.ts +13 -0
- package/dist/utils/hooks/useCompactionFeature.js +20 -0
- package/dist/utils/hooks/useCompactionFeature.js.map +1 -0
- package/dist/utils/hooks/useStartCompaction.d.ts +7 -0
- package/dist/utils/hooks/useStartCompaction.js +22 -0
- package/dist/utils/hooks/useStartCompaction.js.map +1 -0
- package/package.json +2 -2
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo.d.ts +0 -42
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo.js +0 -252
- package/dist/containers/Tenant/Diagnostics/Overview/TableInfo/prepareTableInfo.js.map +0 -1
|
@@ -7,11 +7,11 @@ export declare const topicApi: import("@reduxjs/toolkit/query").Api<import("@red
|
|
|
7
7
|
database: string;
|
|
8
8
|
databaseFullPath: string;
|
|
9
9
|
useMetaProxy?: boolean;
|
|
10
|
-
}, 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" | "
|
|
11
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
12
|
-
}, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
10
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
11
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
12
|
+
}, "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
|
export declare const selectConsumersNames: ((state: {
|
|
14
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
14
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
15
15
|
singleClusterMode: boolean;
|
|
16
16
|
cluster: import("./cluster/types").ClusterState;
|
|
17
17
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -47,7 +47,7 @@ export declare const selectConsumersNames: ((state: {
|
|
|
47
47
|
};
|
|
48
48
|
lastResult: () => string[] | undefined;
|
|
49
49
|
dependencies: [((state: {
|
|
50
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
50
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
51
51
|
singleClusterMode: boolean;
|
|
52
52
|
cluster: import("./cluster/types").ClusterState;
|
|
53
53
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -76,7 +76,7 @@ export declare const selectConsumersNames: ((state: {
|
|
|
76
76
|
resetResultsCount: () => void;
|
|
77
77
|
} & {
|
|
78
78
|
resultFunc: (resultFuncArgs_0: {
|
|
79
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
79
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
80
80
|
singleClusterMode: boolean;
|
|
81
81
|
cluster: import("./cluster/types").ClusterState;
|
|
82
82
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -105,9 +105,9 @@ export declare const selectConsumersNames: ((state: {
|
|
|
105
105
|
database: string;
|
|
106
106
|
databaseFullPath: string;
|
|
107
107
|
useMetaProxy?: boolean;
|
|
108
|
-
}, 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" | "
|
|
109
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
110
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
108
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
109
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
110
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
111
111
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
112
112
|
originalArgs?: undefined | undefined;
|
|
113
113
|
data?: undefined | undefined;
|
|
@@ -184,7 +184,7 @@ export declare const selectConsumersNames: ((state: {
|
|
|
184
184
|
isError: true;
|
|
185
185
|
})) => import("../../types/api/consumer").Consumer[] | undefined;
|
|
186
186
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
187
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
187
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
188
188
|
singleClusterMode: boolean;
|
|
189
189
|
cluster: import("./cluster/types").ClusterState;
|
|
190
190
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -213,9 +213,9 @@ export declare const selectConsumersNames: ((state: {
|
|
|
213
213
|
database: string;
|
|
214
214
|
databaseFullPath: string;
|
|
215
215
|
useMetaProxy?: boolean;
|
|
216
|
-
}, 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" | "
|
|
217
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
218
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
216
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
217
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
218
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
219
219
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
220
220
|
originalArgs?: undefined | undefined;
|
|
221
221
|
data?: undefined | undefined;
|
|
@@ -297,7 +297,7 @@ export declare const selectConsumersNames: ((state: {
|
|
|
297
297
|
};
|
|
298
298
|
lastResult: () => import("../../types/api/consumer").Consumer[] | undefined;
|
|
299
299
|
dependencies: [(state: RootState) => {
|
|
300
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
300
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
301
301
|
singleClusterMode: boolean;
|
|
302
302
|
cluster: import("./cluster/types").ClusterState;
|
|
303
303
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -326,9 +326,9 @@ export declare const selectConsumersNames: ((state: {
|
|
|
326
326
|
database: string;
|
|
327
327
|
databaseFullPath: string;
|
|
328
328
|
useMetaProxy?: boolean;
|
|
329
|
-
}, 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" | "
|
|
330
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
331
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
329
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
330
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
331
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
332
332
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
333
333
|
originalArgs?: undefined | undefined;
|
|
334
334
|
data?: undefined | undefined;
|
|
@@ -421,7 +421,7 @@ export declare const selectConsumersNames: ((state: {
|
|
|
421
421
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
422
422
|
};
|
|
423
423
|
export declare const selectPreparedTopicStats: ((state: {
|
|
424
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
424
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
425
425
|
singleClusterMode: boolean;
|
|
426
426
|
cluster: import("./cluster/types").ClusterState;
|
|
427
427
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -477,7 +477,7 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
477
477
|
writeSpeed: import("../../utils/bytesParsers").ProcessSpeedStats;
|
|
478
478
|
} | undefined;
|
|
479
479
|
dependencies: [((state: {
|
|
480
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
480
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
481
481
|
singleClusterMode: boolean;
|
|
482
482
|
cluster: import("./cluster/types").ClusterState;
|
|
483
483
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -506,7 +506,7 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
506
506
|
resetResultsCount: () => void;
|
|
507
507
|
} & {
|
|
508
508
|
resultFunc: (resultFuncArgs_0: {
|
|
509
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
509
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
510
510
|
singleClusterMode: boolean;
|
|
511
511
|
cluster: import("./cluster/types").ClusterState;
|
|
512
512
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -535,9 +535,9 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
535
535
|
database: string;
|
|
536
536
|
databaseFullPath: string;
|
|
537
537
|
useMetaProxy?: boolean;
|
|
538
|
-
}, 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" | "
|
|
539
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
540
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
538
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
539
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
540
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
541
541
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
542
542
|
originalArgs?: undefined | undefined;
|
|
543
543
|
data?: undefined | undefined;
|
|
@@ -614,7 +614,7 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
614
614
|
isError: true;
|
|
615
615
|
})) => import("../../types/api/topic").TopicStats | undefined;
|
|
616
616
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
617
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
617
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
618
618
|
singleClusterMode: boolean;
|
|
619
619
|
cluster: import("./cluster/types").ClusterState;
|
|
620
620
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -643,9 +643,9 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
643
643
|
database: string;
|
|
644
644
|
databaseFullPath: string;
|
|
645
645
|
useMetaProxy?: boolean;
|
|
646
|
-
}, 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" | "
|
|
647
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
648
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
646
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
647
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
648
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
649
649
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
650
650
|
originalArgs?: undefined | undefined;
|
|
651
651
|
data?: undefined | undefined;
|
|
@@ -727,7 +727,7 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
727
727
|
};
|
|
728
728
|
lastResult: () => import("../../types/api/topic").TopicStats | undefined;
|
|
729
729
|
dependencies: [(state: RootState) => {
|
|
730
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
730
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
731
731
|
singleClusterMode: boolean;
|
|
732
732
|
cluster: import("./cluster/types").ClusterState;
|
|
733
733
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -756,9 +756,9 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
756
756
|
database: string;
|
|
757
757
|
databaseFullPath: string;
|
|
758
758
|
useMetaProxy?: boolean;
|
|
759
|
-
}, 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" | "
|
|
760
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
761
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
759
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
760
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
761
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
762
762
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
763
763
|
originalArgs?: undefined | undefined;
|
|
764
764
|
data?: undefined | undefined;
|
|
@@ -851,7 +851,7 @@ export declare const selectPreparedTopicStats: ((state: {
|
|
|
851
851
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
852
852
|
};
|
|
853
853
|
export declare const selectPreparedConsumersData: ((state: {
|
|
854
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
854
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
855
855
|
singleClusterMode: boolean;
|
|
856
856
|
cluster: import("./cluster/types").ClusterState;
|
|
857
857
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -911,7 +911,7 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
911
911
|
readIdleTime: number;
|
|
912
912
|
}[] | undefined;
|
|
913
913
|
dependencies: [((state: {
|
|
914
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
914
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
915
915
|
singleClusterMode: boolean;
|
|
916
916
|
cluster: import("./cluster/types").ClusterState;
|
|
917
917
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -940,7 +940,7 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
940
940
|
resetResultsCount: () => void;
|
|
941
941
|
} & {
|
|
942
942
|
resultFunc: (resultFuncArgs_0: {
|
|
943
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
943
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
944
944
|
singleClusterMode: boolean;
|
|
945
945
|
cluster: import("./cluster/types").ClusterState;
|
|
946
946
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -969,9 +969,9 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
969
969
|
database: string;
|
|
970
970
|
databaseFullPath: string;
|
|
971
971
|
useMetaProxy?: boolean;
|
|
972
|
-
}, 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" | "
|
|
973
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
974
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
972
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
973
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
974
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
975
975
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
976
976
|
originalArgs?: undefined | undefined;
|
|
977
977
|
data?: undefined | undefined;
|
|
@@ -1048,7 +1048,7 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
1048
1048
|
isError: true;
|
|
1049
1049
|
})) => import("../../types/api/consumer").Consumer[] | undefined;
|
|
1050
1050
|
memoizedResultFunc: ((resultFuncArgs_0: {
|
|
1051
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
1051
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
1052
1052
|
singleClusterMode: boolean;
|
|
1053
1053
|
cluster: import("./cluster/types").ClusterState;
|
|
1054
1054
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -1077,9 +1077,9 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
1077
1077
|
database: string;
|
|
1078
1078
|
databaseFullPath: string;
|
|
1079
1079
|
useMetaProxy?: boolean;
|
|
1080
|
-
}, 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" | "
|
|
1081
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
1082
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
1080
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
1081
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
1082
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
1083
1083
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1084
1084
|
originalArgs?: undefined | undefined;
|
|
1085
1085
|
data?: undefined | undefined;
|
|
@@ -1161,7 +1161,7 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
1161
1161
|
};
|
|
1162
1162
|
lastResult: () => import("../../types/api/consumer").Consumer[] | undefined;
|
|
1163
1163
|
dependencies: [(state: RootState) => {
|
|
1164
|
-
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
1164
|
+
api: import("@reduxjs/toolkit/query").CombinedState<{}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">;
|
|
1165
1165
|
singleClusterMode: boolean;
|
|
1166
1166
|
cluster: import("./cluster/types").ClusterState;
|
|
1167
1167
|
tenant: import("./tenant/types").TenantState;
|
|
@@ -1190,9 +1190,9 @@ export declare const selectPreparedConsumersData: ((state: {
|
|
|
1190
1190
|
database: string;
|
|
1191
1191
|
databaseFullPath: string;
|
|
1192
1192
|
useMetaProxy?: boolean;
|
|
1193
|
-
}, 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" | "
|
|
1194
|
-
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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" | "
|
|
1195
|
-
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
1193
|
+
}, 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/topic").DescribeTopicResult | undefined, "api", any>;
|
|
1194
|
+
getTopicData: import("@reduxjs/toolkit/query").QueryDefinition<TopicDataRequest, 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/topic").TopicDataResponse | undefined, "api", any>;
|
|
1195
|
+
}, "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "OperationList", "api">) => ({
|
|
1196
1196
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1197
1197
|
originalArgs?: undefined | undefined;
|
|
1198
1198
|
data?: undefined | undefined;
|
|
@@ -14,7 +14,7 @@ export type VDiskBlobIndexStatParams = VDiskBlobIndexStatBasicParams & {
|
|
|
14
14
|
database?: string;
|
|
15
15
|
};
|
|
16
16
|
export declare const vDiskApi: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, typeof import("../api")._NEVER, unknown, {}>, {
|
|
17
|
-
getVDiskData: import("@reduxjs/toolkit/query").QueryDefinition<VDiskDataRequestParams, 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" | "
|
|
18
|
-
getVDiskBlobIndexStat: import("@reduxjs/toolkit/query").QueryDefinition<VDiskBlobIndexStatParams, 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" | "
|
|
19
|
-
}, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
17
|
+
getVDiskData: import("@reduxjs/toolkit/query").QueryDefinition<VDiskDataRequestParams, 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").VDiskData | undefined, "api", any>;
|
|
18
|
+
getVDiskBlobIndexStat: import("@reduxjs/toolkit/query").QueryDefinition<VDiskBlobIndexStatParams, 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/vdiskBlobIndex").VDiskBlobIndexResponse | undefined, "api", any>;
|
|
19
|
+
}, "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>;
|
|
20
20
|
export {};
|
|
@@ -4,5 +4,5 @@ export declare const viewSchemaApi: import("@reduxjs/toolkit/query").Api<import(
|
|
|
4
4
|
path: string;
|
|
5
5
|
databaseFullPath: string;
|
|
6
6
|
timeout?: number;
|
|
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" | "
|
|
8
|
-
}, "api", "Events" | "All" | "Conversations" | "PDiskData" | "PreviewData" | "SchemaTree" | "StorageData" | "TableData" | "Partitions" | "Tablet" | "UserData" | "VDiskData" | "VDiskBlobIndexStat" | "AccessRights" | "Backups" | "BackupsSchedule" | "
|
|
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", import("../../../types/api/query").ColumnType[] | undefined, "api", any>;
|
|
8
|
+
}, "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>;
|
|
@@ -88,15 +88,24 @@ export declare enum BridgePileState {
|
|
|
88
88
|
SUSPENDED = "SUSPENDED",
|
|
89
89
|
DISCONNECTED = "DISCONNECTED"
|
|
90
90
|
}
|
|
91
|
+
export declare enum BridgePileGroupStatus {
|
|
92
|
+
UNKNOWN = "UNKNOWN",
|
|
93
|
+
FULL = "FULL",
|
|
94
|
+
PARTIAL = "PARTIAL",
|
|
95
|
+
DEGRADED = "DEGRADED",
|
|
96
|
+
DISINTEGRATED = "DISINTEGRATED"
|
|
97
|
+
}
|
|
91
98
|
export interface TBridgePile {
|
|
92
99
|
/** unique pile identifier */
|
|
93
100
|
PileId?: number;
|
|
94
101
|
/** pile name, e.g., r1 */
|
|
95
102
|
Name?: string;
|
|
96
103
|
/** pile state from backend */
|
|
97
|
-
State?:
|
|
104
|
+
State?: BridgePileState;
|
|
98
105
|
/** number of nodes in the pile */
|
|
99
106
|
Nodes?: number;
|
|
107
|
+
/** storage group statuses in the pile */
|
|
108
|
+
GroupStatuses?: Partial<Record<BridgePileGroupStatus, number>>;
|
|
100
109
|
}
|
|
101
110
|
export interface TBridgeInfo {
|
|
102
111
|
Piles?: TBridgePile[];
|
|
@@ -17,4 +17,12 @@ export var BridgePileState;
|
|
|
17
17
|
BridgePileState["SUSPENDED"] = "SUSPENDED";
|
|
18
18
|
BridgePileState["DISCONNECTED"] = "DISCONNECTED";
|
|
19
19
|
})(BridgePileState || (BridgePileState = {}));
|
|
20
|
+
export var BridgePileGroupStatus;
|
|
21
|
+
(function (BridgePileGroupStatus) {
|
|
22
|
+
BridgePileGroupStatus["UNKNOWN"] = "UNKNOWN";
|
|
23
|
+
BridgePileGroupStatus["FULL"] = "FULL";
|
|
24
|
+
BridgePileGroupStatus["PARTIAL"] = "PARTIAL";
|
|
25
|
+
BridgePileGroupStatus["DEGRADED"] = "DEGRADED";
|
|
26
|
+
BridgePileGroupStatus["DISINTEGRATED"] = "DISINTEGRATED";
|
|
27
|
+
})(BridgePileGroupStatus || (BridgePileGroupStatus = {}));
|
|
20
28
|
//# sourceMappingURL=cluster.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../../src/types/api/cluster.ts"],"names":[],"mappings":"AAsFA,MAAM,UAAU,eAAe,CAAC,IAAmB;IAC/C,OAAO,kCAAkC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvD,CAAC;AACD,MAAM,UAAU,eAAe,CAAC,IAAmB;IAC/C,OAAO,kCAAkC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvD,CAAC;AAED,SAAS,kCAAkC,CAAC,IAA8B,EAAE,OAAe;IACvF,OAAO,OAAO,CACV,IAAI,IAAI,SAAS,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,IAAI,IAAI,CAAC,OAAO,IAAI,OAAO,CAC3F,CAAC;AACN,CAAC;AAED,MAAM,CAAN,IAAY,eAQX;AARD,WAAY,eAAe;IACvB,8CAA2B,CAAA;IAC3B,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,gDAA6B,CAAA;IAC7B,wDAAqC,CAAA;IACrC,0CAAuB,CAAA;IACvB,gDAA6B,CAAA;AACjC,CAAC,EARW,eAAe,KAAf,eAAe,QAQ1B"}
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../../src/types/api/cluster.ts"],"names":[],"mappings":"AAsFA,MAAM,UAAU,eAAe,CAAC,IAAmB;IAC/C,OAAO,kCAAkC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvD,CAAC;AACD,MAAM,UAAU,eAAe,CAAC,IAAmB;IAC/C,OAAO,kCAAkC,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC;AACvD,CAAC;AAED,SAAS,kCAAkC,CAAC,IAA8B,EAAE,OAAe;IACvF,OAAO,OAAO,CACV,IAAI,IAAI,SAAS,IAAI,IAAI,IAAI,OAAO,IAAI,CAAC,OAAO,KAAK,QAAQ,IAAI,IAAI,CAAC,OAAO,IAAI,OAAO,CAC3F,CAAC;AACN,CAAC;AAED,MAAM,CAAN,IAAY,eAQX;AARD,WAAY,eAAe;IACvB,8CAA2B,CAAA;IAC3B,sCAAmB,CAAA;IACnB,wCAAqB,CAAA;IACrB,gDAA6B,CAAA;IAC7B,wDAAqC,CAAA;IACrC,0CAAuB,CAAA;IACvB,gDAA6B,CAAA;AACjC,CAAC,EARW,eAAe,KAAf,eAAe,QAQ1B;AAED,MAAM,CAAN,IAAY,qBAMX;AAND,WAAY,qBAAqB;IAC7B,4CAAmB,CAAA;IACnB,sCAAa,CAAA;IACb,4CAAmB,CAAA;IACnB,8CAAqB,CAAA;IACrB,wDAA+B,CAAA;AACnC,CAAC,EANW,qBAAqB,KAArB,qBAAqB,QAMhC"}
|
package/dist/types/api/meta.d.ts
CHANGED
|
@@ -306,7 +306,11 @@ export interface TStorageStatsTabletTypeEntry extends TStorageStatsSizeEntry {
|
|
|
306
306
|
Groups?: number | TStorageStatsGroupEntry[];
|
|
307
307
|
Media?: number | TStorageStatsMediaEntry[];
|
|
308
308
|
}
|
|
309
|
+
export declare enum EStorageStatsProblem {
|
|
310
|
+
DataIncomplete = "data-incomplete"
|
|
311
|
+
}
|
|
309
312
|
export interface StorageStatsResponse {
|
|
313
|
+
Problems?: string[];
|
|
310
314
|
Paths?: TStorageStatsPathEntry[];
|
|
311
315
|
Tablets?: TStorageStatsTabletTypeEntry[];
|
|
312
316
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"storage.js","sourceRoot":"","sources":["../../../src/types/api/storage.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"storage.js","sourceRoot":"","sources":["../../../src/types/api/storage.ts"],"names":[],"mappings":"AAiaA,MAAM,CAAN,IAAY,oBAEX;AAFD,WAAY,oBAAoB;IAC5B,0DAAkC,CAAA;AACtC,CAAC,EAFW,oBAAoB,KAApB,oBAAoB,QAE/B"}
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import type React from 'react';
|
|
2
2
|
import type { EmptyStateProps } from '../components/EmptyState';
|
|
3
|
-
import type {
|
|
3
|
+
import type { CommonIssueCategory, GetHealthcheckViewTitles, GetHealthcheckViewsOrder } from '../containers/Tenant/Healthcheck/shared';
|
|
4
4
|
import type { ClusterInfo } from '../store/reducers/cluster/cluster';
|
|
5
|
-
import type { IssuesTree } from '../store/reducers/healthcheckInfo/types';
|
|
6
5
|
import type { PreparedStorageNode } from '../store/reducers/storage/types';
|
|
7
6
|
import type { PreparedTenant } from '../store/reducers/tenants/types';
|
|
8
7
|
import type { ClusterLink, DatabaseLink } from '../types/additionalProps';
|
|
@@ -12,7 +11,7 @@ import type { GetLogsLink } from '../utils/logs';
|
|
|
12
11
|
import type { GetMonitoringClusterLink, GetMonitoringLink } from '../utils/monitoring';
|
|
13
12
|
export type IllustrationComponent = React.ComponentType<React.SVGProps<SVGSVGElement>>;
|
|
14
13
|
export type IllustrationName = 'InternalError' | 'AccessDenied' | 'Unauthenticated' | 'NoSearchResults' | 'SuccessOperation';
|
|
15
|
-
export interface UIFactory<H extends string =
|
|
14
|
+
export interface UIFactory<H extends string = CommonIssueCategory, T extends string = string> {
|
|
16
15
|
onCreateDB?: HandleCreateDB;
|
|
17
16
|
onEditDB?: HandleEditDB;
|
|
18
17
|
onDeleteDB?: HandleDeleteDB;
|
|
@@ -32,9 +31,10 @@ export interface UIFactory<H extends string = CommonIssueType, T extends string
|
|
|
32
31
|
clusterOrDatabaseAccessError?: Partial<EmptyStateProps>;
|
|
33
32
|
enableMultiTabQueryEditor?: boolean;
|
|
34
33
|
healthcheck: {
|
|
34
|
+
issueCategories: ReadonlyArray<H>;
|
|
35
|
+
isIssueTypeOfCategory: (type: string, category: H) => boolean;
|
|
35
36
|
getHealthckechViewTitles: GetHealthcheckViewTitles<H>;
|
|
36
37
|
getHealthcheckViewsOrder: GetHealthcheckViewsOrder<H>;
|
|
37
|
-
countHealthcheckIssuesByType: (issueTrees: IssuesTree[]) => Record<H, number>;
|
|
38
38
|
};
|
|
39
39
|
hasAccess?: boolean;
|
|
40
40
|
hideGrantAccess?: boolean;
|
|
@@ -61,6 +61,7 @@ export interface UIFactory<H extends string = CommonIssueType, T extends string
|
|
|
61
61
|
};
|
|
62
62
|
databasesEnvironmentsConfig?: DatabasesEnvironmentsConfig;
|
|
63
63
|
getReportProblemUrl?: GetReportProblemUrl;
|
|
64
|
+
isDetailedStorageViewAvailable?: IsDetailedStorageViewAvailable;
|
|
64
65
|
illustrations?: Partial<Record<IllustrationName, IllustrationComponent>>;
|
|
65
66
|
hideNewFeaturesNotifications?: {
|
|
66
67
|
navigationV2?: boolean;
|
|
@@ -98,6 +99,9 @@ export type GetDatabaseLinks = (params: {
|
|
|
98
99
|
export type GetClusterLinks = (params: {
|
|
99
100
|
clusterInfo: ClusterInfo;
|
|
100
101
|
}) => ClusterLink[];
|
|
102
|
+
export type IsDetailedStorageViewAvailable = (params: {
|
|
103
|
+
clusterInfo: ClusterInfo;
|
|
104
|
+
}) => boolean;
|
|
101
105
|
export type RenderBackups = (props: {
|
|
102
106
|
database: string;
|
|
103
107
|
scrollContainerRef: React.RefObject<HTMLDivElement>;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
import type { UIFactory } from './types';
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
type UIFactoryOverrides<H extends string, T extends string> = Omit<Partial<UIFactory<H, T>>, 'healthcheck'> & {
|
|
3
|
+
healthcheck?: Partial<UIFactory<H, T>['healthcheck']>;
|
|
4
|
+
};
|
|
5
|
+
export declare function configureUIFactory<H extends string, T extends string = string>(overrides: UIFactoryOverrides<H, T>): void;
|
|
6
|
+
export declare const uiFactory: UIFactory<import("../containers/Tenant/Healthcheck/shared").CommonIssueCategory, string>;
|
|
7
|
+
export {};
|
|
@@ -1,21 +1,35 @@
|
|
|
1
|
-
import
|
|
1
|
+
import isEqual from 'lodash/isEqual';
|
|
2
|
+
import { getHealthcheckViewsOrder, getHealthckechViewTitles, isIssueTypeOfCategory, issueCategories, } from '../containers/Tenant/Healthcheck/shared';
|
|
2
3
|
import { getMonitoringClusterLink as getMonitoringClusterLinkDefault, getMonitoringLink as getMonitoringLinkDefault, } from '../utils/monitoring';
|
|
3
4
|
const uiFactoryBase = {
|
|
4
5
|
getMonitoringLink: getMonitoringLinkDefault,
|
|
5
6
|
getMonitoringClusterLink: getMonitoringClusterLinkDefault,
|
|
6
7
|
healthcheck: {
|
|
8
|
+
issueCategories,
|
|
9
|
+
isIssueTypeOfCategory,
|
|
7
10
|
getHealthckechViewTitles,
|
|
8
11
|
getHealthcheckViewsOrder,
|
|
9
|
-
countHealthcheckIssuesByType,
|
|
10
12
|
},
|
|
11
13
|
hasAccess: true,
|
|
12
14
|
useDatabaseId: false,
|
|
13
15
|
settingsBackend: undefined,
|
|
14
16
|
enableMultiTabQueryEditor: false,
|
|
15
17
|
hasDeveloperUi: true,
|
|
18
|
+
isDetailedStorageViewAvailable: () => true,
|
|
16
19
|
};
|
|
17
20
|
export function configureUIFactory(overrides) {
|
|
18
|
-
|
|
21
|
+
const { healthcheck, ...restOverrides } = overrides;
|
|
22
|
+
Object.assign(uiFactoryBase, restOverrides);
|
|
23
|
+
if (healthcheck) {
|
|
24
|
+
const merged = { ...uiFactoryBase.healthcheck, ...healthcheck };
|
|
25
|
+
if (merged.issueCategories.some((c) => c.toLowerCase() === 'unknown')) {
|
|
26
|
+
throw new Error('Healthcheck misconfiguration: issueCategories contains the `unknown` category. This category is reserved and calculated automatically.');
|
|
27
|
+
}
|
|
28
|
+
if (!isEqual(merged.issueCategories.toSorted(), merged.getHealthcheckViewsOrder().toSorted())) {
|
|
29
|
+
throw new Error('Healthcheck misconfiguration: the `viewsOrder` should contain the same category as the `issueCategories`.');
|
|
30
|
+
}
|
|
31
|
+
Object.assign(uiFactoryBase.healthcheck, healthcheck);
|
|
32
|
+
}
|
|
19
33
|
}
|
|
20
34
|
export const uiFactory = new Proxy(uiFactoryBase, {
|
|
21
35
|
set: () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uiFactory.js","sourceRoot":"","sources":["../../src/uiFactory/uiFactory.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"uiFactory.js","sourceRoot":"","sources":["../../src/uiFactory/uiFactory.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,gBAAgB,CAAC;AAErC,OAAO,EACH,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,eAAe,GAClB,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACH,wBAAwB,IAAI,+BAA+B,EAC3D,iBAAiB,IAAI,wBAAwB,GAChD,MAAM,qBAAqB,CAAC;AAI7B,MAAM,aAAa,GAAc;IAC7B,iBAAiB,EAAE,wBAAwB;IAC3C,wBAAwB,EAAE,+BAA+B;IACzD,WAAW,EAAE;QACT,eAAe;QACf,qBAAqB;QACrB,wBAAwB;QACxB,wBAAwB;KAC3B;IACD,SAAS,EAAE,IAAI;IACf,aAAa,EAAE,KAAK;IACpB,eAAe,EAAE,SAAS;IAC1B,yBAAyB,EAAE,KAAK;IAChC,cAAc,EAAE,IAAI;IACpB,8BAA8B,EAAE,GAAG,EAAE,CAAC,IAAI;CAC7C,CAAC;AASF,MAAM,UAAU,kBAAkB,CAC9B,SAAmC;IAEnC,MAAM,EAAC,WAAW,EAAE,GAAG,aAAa,EAAC,GAAG,SAAS,CAAC;IAElD,MAAM,CAAC,MAAM,CAAC,aAAa,EAAE,aAAa,CAAC,CAAC;IAC5C,IAAI,WAAW,EAAE,CAAC;QACd,MAAM,MAAM,GAAG,EAAC,GAAG,aAAa,CAAC,WAAW,EAAE,GAAG,WAAW,EAAC,CAAC;QAE9D,IAAI,MAAM,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,EAAE,CAAC;YACpE,MAAM,IAAI,KAAK,CACX,wIAAwI,CAC3I,CAAC;QACN,CAAC;QAED,IACI,CAAC,OAAO,CACJ,MAAM,CAAC,eAAe,CAAC,QAAQ,EAAE,EACjC,MAAM,CAAC,wBAAwB,EAAE,CAAC,QAAQ,EAAE,CAC/C,EACH,CAAC;YACC,MAAM,IAAI,KAAK,CACX,2GAA2G,CAC9G,CAAC;QACN,CAAC;QAED,MAAM,CAAC,MAAM,CAAC,aAAa,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;IAC1D,CAAC;AACL,CAAC;AAED,MAAM,CAAC,MAAM,SAAS,GAAG,IAAI,KAAK,CAAC,aAAa,EAAE;IAC9C,GAAG,EAAE,GAAG,EAAE;QACN,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;IAC1F,CAAC;CACJ,CAAC,CAAC"}
|
|
@@ -24,10 +24,12 @@ export interface SubstitutionNamespaces {
|
|
|
24
24
|
* Lowercase and kebab-case segments are normalised to PascalCase as a fallback
|
|
25
25
|
* (see {@link resolveParam} for details).
|
|
26
26
|
* Only string and number leaf values are used for substitution.
|
|
27
|
-
* Substituted values are treated as URL component values and are
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
27
|
+
* Substituted values are treated as URL component values and are encoded with
|
|
28
|
+
* `encodeURIComponent(value)`, except when the value is a complete URL
|
|
29
|
+
* (starts with `http://` or `https://`) at the very start of the template.
|
|
30
|
+
* This allows placeholders like `{balancer}` to be used as full URL bases in
|
|
31
|
+
* patterns like `{balancer}/path`, while still encoding them everywhere else,
|
|
32
|
+
* including query strings like `?url={balancer}`.
|
|
31
33
|
* Returns `undefined` if any placeholder remains unresolved after substitution.
|
|
32
34
|
*/
|
|
33
35
|
export declare function substituteUrlParams(template: string, source: string, namespaces?: SubstitutionNamespaces): string | undefined;
|