@datarecce/ui 0.1.22 → 0.1.24
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/{RecceCheckContext-DNKi97uE.js → RecceCheckContext-Cb41gigE.js} +4 -3
- package/dist/RecceCheckContext-Cb41gigE.js.map +1 -0
- package/dist/{RecceCheckContext-BETsmiD5.mjs → RecceCheckContext-CzsuuXxT.mjs} +4 -3
- package/dist/RecceCheckContext-CzsuuXxT.mjs.map +1 -0
- package/dist/api.d.mts +2 -2
- package/dist/api.d.ts +2 -2
- package/dist/api.js +12 -37
- package/dist/api.mjs +3 -29
- package/dist/{components-C735_oqD.mjs → components-BHxcVq0D.mjs} +1353 -69
- package/dist/components-BHxcVq0D.mjs.map +1 -0
- package/dist/{components-DeA4kqxK.js → components-Bmc5X473.js} +1557 -248
- package/dist/components-Bmc5X473.js.map +1 -0
- package/dist/components.d.mts +2 -2
- package/dist/components.d.ts +2 -2
- package/dist/components.js +8 -4
- package/dist/components.mjs +5 -5
- package/dist/{hooks-Ba-AoxcK.mjs → hooks-B0XGswIh.mjs} +3 -3
- package/dist/{hooks-Ba-AoxcK.mjs.map → hooks-B0XGswIh.mjs.map} +1 -1
- package/dist/{hooks-D6xvNXEc.js → hooks-C99PZcmB.js} +3 -3
- package/dist/{hooks-D6xvNXEc.js.map → hooks-C99PZcmB.js.map} +1 -1
- package/dist/hooks.d.mts +2 -2
- package/dist/hooks.d.ts +2 -2
- package/dist/hooks.js +4 -3
- package/dist/hooks.mjs +4 -4
- package/dist/{index-Sj_wOmNH.d.mts → index-04n48ic2.d.mts} +129 -105
- package/dist/index-04n48ic2.d.mts.map +1 -0
- package/dist/{index-DYduBYD8.d.ts → index-CgyLTrll.d.ts} +129 -105
- package/dist/index-CgyLTrll.d.ts.map +1 -0
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +20 -14
- package/dist/index.mjs +7 -7
- package/dist/{state-BjKRZMwY.js → state-Ct-DP81O.js} +108 -79
- package/dist/state-Ct-DP81O.js.map +1 -0
- package/dist/{state-BySLlIE7.mjs → state-CwepO01b.mjs} +91 -80
- package/dist/state-CwepO01b.mjs.map +1 -0
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/{user-Dt_n5IJX.js → version-BgsW-hXj.js} +50 -10
- package/dist/version-BgsW-hXj.js.map +1 -0
- package/dist/version-Bz2CiMHD.mjs +93 -0
- package/dist/version-Bz2CiMHD.mjs.map +1 -0
- package/package.json +5 -4
- package/dist/RecceCheckContext-BETsmiD5.mjs.map +0 -1
- package/dist/RecceCheckContext-DNKi97uE.js.map +0 -1
- package/dist/api.js.map +0 -1
- package/dist/api.mjs.map +0 -1
- package/dist/components-C735_oqD.mjs.map +0 -1
- package/dist/components-DeA4kqxK.js.map +0 -1
- package/dist/index-DYduBYD8.d.ts.map +0 -1
- package/dist/index-Sj_wOmNH.d.mts.map +0 -1
- package/dist/state-BjKRZMwY.js.map +0 -1
- package/dist/state-BySLlIE7.mjs.map +0 -1
- package/dist/user-BHOgMaBf.mjs +0 -65
- package/dist/user-BHOgMaBf.mjs.map +0 -1
- package/dist/user-Dt_n5IJX.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import * as React$2 from "react";
|
|
3
3
|
import React$1, { CSSProperties, ComponentType, Dispatch, ForwardRefExoticComponent, ReactNode, Ref, RefAttributes, SetStateAction } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime16 from "react/jsx-runtime";
|
|
5
5
|
import { BoxProps } from "@mui/material/Box";
|
|
6
6
|
import { FallbackRender } from "@sentry/react";
|
|
7
7
|
import { SplitProps } from "react-split";
|
|
@@ -52,7 +52,7 @@ declare function MuiProvider({
|
|
|
52
52
|
children,
|
|
53
53
|
forcedTheme,
|
|
54
54
|
enableCssBaseline
|
|
55
|
-
}: MuiProviderProps):
|
|
55
|
+
}: MuiProviderProps): react_jsx_runtime16.JSX.Element;
|
|
56
56
|
//#endregion
|
|
57
57
|
//#region recce-source/js/src/components/ui/toaster.d.ts
|
|
58
58
|
/**
|
|
@@ -87,7 +87,7 @@ declare function ToasterProvider({
|
|
|
87
87
|
children
|
|
88
88
|
}: {
|
|
89
89
|
children: ReactNode;
|
|
90
|
-
}):
|
|
90
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
91
91
|
/**
|
|
92
92
|
* Hook to use the toaster
|
|
93
93
|
*/
|
|
@@ -95,7 +95,7 @@ declare function useToaster(): ToasterContextValue;
|
|
|
95
95
|
/**
|
|
96
96
|
* Toaster component that renders toasts from the standalone toaster
|
|
97
97
|
*/
|
|
98
|
-
declare function Toaster():
|
|
98
|
+
declare function Toaster(): react_jsx_runtime16.JSX.Element;
|
|
99
99
|
//#endregion
|
|
100
100
|
//#region recce-source/js/src/components/errorboundary/ErrorBoundary.d.ts
|
|
101
101
|
declare const ErrorBoundary$1: ({
|
|
@@ -104,11 +104,11 @@ declare const ErrorBoundary$1: ({
|
|
|
104
104
|
}: {
|
|
105
105
|
children: ReactNode;
|
|
106
106
|
fallback?: React$2.ReactElement | FallbackRender | undefined;
|
|
107
|
-
}) =>
|
|
107
|
+
}) => react_jsx_runtime16.JSX.Element;
|
|
108
108
|
//#endregion
|
|
109
109
|
//#region recce-source/js/src/components/split/Split.d.ts
|
|
110
|
-
declare const HSplit: (props: SplitProps) =>
|
|
111
|
-
declare const VSplit: (props: SplitProps) =>
|
|
110
|
+
declare const HSplit: (props: SplitProps) => react_jsx_runtime16.JSX.Element;
|
|
111
|
+
declare const VSplit: (props: SplitProps) => react_jsx_runtime16.JSX.Element;
|
|
112
112
|
//#endregion
|
|
113
113
|
//#region recce-source/js/src/components/screenshot/ScreenshotBox.d.ts
|
|
114
114
|
interface ScreenshotBoxProps extends BoxProps {
|
|
@@ -119,7 +119,7 @@ interface ScreenshotBoxProps extends BoxProps {
|
|
|
119
119
|
declare const ScreenshotBox: React$2.ForwardRefExoticComponent<Omit<ScreenshotBoxProps, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
120
120
|
//#endregion
|
|
121
121
|
//#region recce-source/js/src/components/lineage/LineagePage.d.ts
|
|
122
|
-
declare function LineagePage():
|
|
122
|
+
declare function LineagePage(): react_jsx_runtime16.JSX.Element;
|
|
123
123
|
//#endregion
|
|
124
124
|
//#region recce-source/js/src/lib/api/info.d.ts
|
|
125
125
|
/**
|
|
@@ -279,7 +279,7 @@ interface ColumnLineageData {
|
|
|
279
279
|
child_map: Record<string, Set<string>>;
|
|
280
280
|
};
|
|
281
281
|
}
|
|
282
|
-
declare function getCll(input: CllInput): Promise<ColumnLineageData>;
|
|
282
|
+
declare function getCll(input: CllInput, client?: AxiosInstance): Promise<ColumnLineageData>;
|
|
283
283
|
//#endregion
|
|
284
284
|
//#region recce-source/js/src/components/lineage/lineage.d.ts
|
|
285
285
|
/**
|
|
@@ -340,13 +340,13 @@ interface SubmitOptions {
|
|
|
340
340
|
nowait?: boolean;
|
|
341
341
|
trackProps?: SubmitRunTrackProps;
|
|
342
342
|
}
|
|
343
|
-
declare function submitRun(type: RunType, params?: RunParamTypes, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
344
|
-
declare function getRun(runId: string): Promise<Run>;
|
|
345
|
-
declare function waitRun(runId: string, timeout?: number): Promise<Run>;
|
|
346
|
-
declare function cancelRun(runId: string): Promise<AxiosResponse<never, any, {}>>;
|
|
347
|
-
declare function submitRunFromCheck(checkId: string, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
348
|
-
declare function searchRuns(type: string, params?: AxiosQueryParams, limit?: number): Promise<Run[]>;
|
|
349
|
-
declare function listRuns(): Promise<Run[]>;
|
|
343
|
+
declare function submitRun(type: RunType, params?: RunParamTypes, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
344
|
+
declare function getRun(runId: string, client?: AxiosInstance): Promise<Run>;
|
|
345
|
+
declare function waitRun(runId: string, timeout?: number, client?: AxiosInstance): Promise<Run>;
|
|
346
|
+
declare function cancelRun(runId: string, client?: AxiosInstance): Promise<AxiosResponse<never, any, {}>>;
|
|
347
|
+
declare function submitRunFromCheck(checkId: string, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
348
|
+
declare function searchRuns(type: string, params?: AxiosQueryParams, limit?: number, client?: AxiosInstance): Promise<Run[]>;
|
|
349
|
+
declare function listRuns(client?: AxiosInstance): Promise<Run[]>;
|
|
350
350
|
type RunsAggregated = Record<string, Record<"row_count_diff" | "value_diff" | "row_count", {
|
|
351
351
|
run_id: string;
|
|
352
352
|
result: unknown;
|
|
@@ -367,7 +367,7 @@ interface ProfileDiffViewOptions {
|
|
|
367
367
|
display_mode?: "side_by_side" | "inline";
|
|
368
368
|
columnsRenderMode?: Record<string, ColumnRenderMode>;
|
|
369
369
|
}
|
|
370
|
-
declare function submitProfileDiff(params: ProfileDiffParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
370
|
+
declare function submitProfileDiff(params: ProfileDiffParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
371
371
|
interface TopKDiffParams {
|
|
372
372
|
model: string;
|
|
373
373
|
column_name: string;
|
|
@@ -414,9 +414,9 @@ interface QueryRowCountResult {
|
|
|
414
414
|
runId: string;
|
|
415
415
|
result: RowCountDiffResult;
|
|
416
416
|
}
|
|
417
|
-
declare function fetchModelRowCount(modelName: string): Promise<RowCountDiff>;
|
|
418
|
-
declare function queryModelRowCount(modelName: string): Promise<RowCountDiff>;
|
|
419
|
-
declare function queryRowCount(modelNames: string[]): Promise<QueryRowCountResult>;
|
|
417
|
+
declare function fetchModelRowCount(modelName: string, client?: AxiosInstance): Promise<RowCountDiff>;
|
|
418
|
+
declare function queryModelRowCount(modelName: string, client?: AxiosInstance): Promise<RowCountDiff>;
|
|
419
|
+
declare function queryRowCount(modelNames: string[], client?: AxiosInstance): Promise<QueryRowCountResult>;
|
|
420
420
|
//#endregion
|
|
421
421
|
//#region recce-source/js/src/lib/api/rowcount.d.ts
|
|
422
422
|
interface RowCountParams {
|
|
@@ -427,7 +427,7 @@ interface RowCountDiffParams {
|
|
|
427
427
|
node_names: string[];
|
|
428
428
|
}
|
|
429
429
|
type RowCountDiffResult = Record<string, RowCountDiff>;
|
|
430
|
-
declare function submitRowCountDiff(params: RowCountDiffParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
430
|
+
declare function submitRowCountDiff(params: RowCountDiffParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
431
431
|
//#endregion
|
|
432
432
|
//#region recce-source/js/src/lib/api/valuediff.d.ts
|
|
433
433
|
interface ValueDiffResult {
|
|
@@ -443,7 +443,7 @@ interface ValueDiffParams {
|
|
|
443
443
|
primary_key: string | string[];
|
|
444
444
|
columns?: string[];
|
|
445
445
|
}
|
|
446
|
-
declare function submitValueDiff(params: ValueDiffParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
446
|
+
declare function submitValueDiff(params: ValueDiffParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
447
447
|
type ValueDiffDetailResult = DataFrame;
|
|
448
448
|
type ValueDiffDetailParams = ValueDiffParams;
|
|
449
449
|
interface ValueDiffDetailViewOptions {
|
|
@@ -452,7 +452,7 @@ interface ValueDiffDetailViewOptions {
|
|
|
452
452
|
display_mode?: "inline" | "side_by_side";
|
|
453
453
|
columnsRenderMode?: Record<string, ColumnRenderMode>;
|
|
454
454
|
}
|
|
455
|
-
declare function submitValueDiffDetail(params: ValueDiffParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
455
|
+
declare function submitValueDiffDetail(params: ValueDiffParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
456
456
|
//#endregion
|
|
457
457
|
//#region recce-source/js/src/lib/api/types.d.ts
|
|
458
458
|
type AxiosQueryParams = Record<string, string | string[] | number | number[] | undefined>;
|
|
@@ -628,7 +628,7 @@ interface RunToolbarProps<VO> extends RunResultViewProps<VO> {
|
|
|
628
628
|
declare const RunToolbar: ({
|
|
629
629
|
warnings,
|
|
630
630
|
children
|
|
631
|
-
}: RunToolbarProps<DiffViewOptions>) =>
|
|
631
|
+
}: RunToolbarProps<DiffViewOptions>) => react_jsx_runtime16.JSX.Element;
|
|
632
632
|
//#endregion
|
|
633
633
|
//#region recce-source/js/src/components/data-grid/ScreenshotDataGrid.d.ts
|
|
634
634
|
/**
|
|
@@ -676,7 +676,7 @@ declare function ProfileDiffForm({
|
|
|
676
676
|
params,
|
|
677
677
|
onParamsChanged,
|
|
678
678
|
setIsReadyToExecute
|
|
679
|
-
}: ProfileDiffFormProp):
|
|
679
|
+
}: ProfileDiffFormProp): react_jsx_runtime16.JSX.Element;
|
|
680
680
|
//#endregion
|
|
681
681
|
//#region recce-source/js/src/components/valuediff/ValueDiffForm.d.ts
|
|
682
682
|
interface ValueDiffFormParams {
|
|
@@ -689,7 +689,7 @@ declare function ValueDiffForm({
|
|
|
689
689
|
params,
|
|
690
690
|
onParamsChanged,
|
|
691
691
|
setIsReadyToExecute
|
|
692
|
-
}: ValueDiffFormProp):
|
|
692
|
+
}: ValueDiffFormProp): react_jsx_runtime16.JSX.Element;
|
|
693
693
|
//#endregion
|
|
694
694
|
//#region recce-source/js/src/components/run/registry.d.ts
|
|
695
695
|
type ViewOptionTypes = LineageDiffViewOptions | DiffViewOptions | QueryViewOptions | QueryDiffViewOptions | ProfileDiffViewOptions | ValueDiffDetailViewOptions;
|
|
@@ -724,18 +724,18 @@ interface CreateCheckBody {
|
|
|
724
724
|
view_options?: Record<string, string | boolean>;
|
|
725
725
|
track_props?: Record<string, string | boolean>;
|
|
726
726
|
}
|
|
727
|
-
declare function createSimpleCheck(): Promise<Check>;
|
|
728
|
-
declare function createCheckByRun(runId: string, viewOptions?: Record<string, unknown
|
|
729
|
-
declare function listChecks(): Promise<Check[]>;
|
|
727
|
+
declare function createSimpleCheck(client?: AxiosInstance): Promise<Check>;
|
|
728
|
+
declare function createCheckByRun(runId: string, viewOptions?: Record<string, unknown>, client?: AxiosInstance): Promise<Check>;
|
|
729
|
+
declare function listChecks(client?: AxiosInstance): Promise<Check[]>;
|
|
730
730
|
declare function useChecks(enabled: boolean): _tanstack_react_query0.UseQueryResult<Check<unknown, unknown>[], Error>;
|
|
731
|
-
declare function getCheck(checkId: string): Promise<Check<RunParamTypes>>;
|
|
732
|
-
declare function updateCheck(checkId: string, payload: Partial<Check
|
|
733
|
-
declare function deleteCheck(checkId: string): Promise<Pick<Check<unknown, unknown>, "check_id">>;
|
|
731
|
+
declare function getCheck(checkId: string, client?: AxiosInstance): Promise<Check<RunParamTypes>>;
|
|
732
|
+
declare function updateCheck(checkId: string, payload: Partial<Check>, client?: AxiosInstance): Promise<Check>;
|
|
733
|
+
declare function deleteCheck(checkId: string, client?: AxiosInstance): Promise<Pick<Check<unknown, unknown>, "check_id">>;
|
|
734
734
|
declare function reorderChecks(order: {
|
|
735
735
|
source: number;
|
|
736
736
|
destination: number;
|
|
737
|
-
}): Promise<AxiosResponse<unknown, any, {}>>;
|
|
738
|
-
declare function markAsPresetCheck(checkId: string): Promise<void>;
|
|
737
|
+
}, client?: AxiosInstance): Promise<AxiosResponse<unknown, any, {}>>;
|
|
738
|
+
declare function markAsPresetCheck(checkId: string, client?: AxiosInstance): Promise<void>;
|
|
739
739
|
//#endregion
|
|
740
740
|
//#region recce-source/js/src/lib/api/lineagecheck.d.ts
|
|
741
741
|
interface LineageDiffViewOptions {
|
|
@@ -746,7 +746,7 @@ interface LineageDiffViewOptions {
|
|
|
746
746
|
exclude?: string;
|
|
747
747
|
column_level_lineage?: CllInput;
|
|
748
748
|
}
|
|
749
|
-
declare function createLineageDiffCheck(viewOptions: LineageDiffViewOptions): Promise<Check>;
|
|
749
|
+
declare function createLineageDiffCheck(viewOptions: LineageDiffViewOptions, client?: AxiosInstance): Promise<Check>;
|
|
750
750
|
//#endregion
|
|
751
751
|
//#region recce-source/js/src/components/lineage/LineageView.d.ts
|
|
752
752
|
interface LineageViewProps {
|
|
@@ -813,19 +813,19 @@ declare const LineageViewContext: React$1.Context<LineageViewContextType>;
|
|
|
813
813
|
declare const useLineageViewContext: () => LineageViewContextType | undefined;
|
|
814
814
|
//#endregion
|
|
815
815
|
//#region recce-source/js/src/components/lineage/LineageViewTopBar.d.ts
|
|
816
|
-
declare const LineageViewTopBar: () =>
|
|
816
|
+
declare const LineageViewTopBar: () => react_jsx_runtime16.JSX.Element;
|
|
817
817
|
//#endregion
|
|
818
818
|
//#region recce-source/js/src/components/lineage/GraphNode.d.ts
|
|
819
819
|
type GraphNodeProps = NodeProps<LineageGraphNode>;
|
|
820
|
-
declare function GraphNode(nodeProps: GraphNodeProps):
|
|
820
|
+
declare function GraphNode(nodeProps: GraphNodeProps): react_jsx_runtime16.JSX.Element;
|
|
821
821
|
//#endregion
|
|
822
822
|
//#region recce-source/js/src/components/lineage/GraphEdge.d.ts
|
|
823
823
|
type GraphEdgeProps = EdgeProps<LineageGraphEdge>;
|
|
824
|
-
declare function GraphEdge(props: GraphEdgeProps):
|
|
824
|
+
declare function GraphEdge(props: GraphEdgeProps): react_jsx_runtime16.JSX.Element;
|
|
825
825
|
//#endregion
|
|
826
826
|
//#region recce-source/js/src/components/lineage/GraphColumnNode.d.ts
|
|
827
827
|
type GrapeColumnNodeProps = NodeProps<LineageGraphColumnNode>;
|
|
828
|
-
declare function GraphColumnNode(nodeProps: GrapeColumnNodeProps):
|
|
828
|
+
declare function GraphColumnNode(nodeProps: GrapeColumnNodeProps): react_jsx_runtime16.JSX.Element;
|
|
829
829
|
//#endregion
|
|
830
830
|
//#region recce-source/js/src/components/lineage/NodeView.d.ts
|
|
831
831
|
interface NodeViewProps {
|
|
@@ -835,7 +835,7 @@ interface NodeViewProps {
|
|
|
835
835
|
declare function NodeView({
|
|
836
836
|
node,
|
|
837
837
|
onCloseNode
|
|
838
|
-
}: NodeViewProps):
|
|
838
|
+
}: NodeViewProps): react_jsx_runtime16.JSX.Element;
|
|
839
839
|
//#endregion
|
|
840
840
|
//#region recce-source/js/src/components/lineage/NodeSqlView.d.ts
|
|
841
841
|
interface NodeSqlViewProps {
|
|
@@ -843,20 +843,20 @@ interface NodeSqlViewProps {
|
|
|
843
843
|
}
|
|
844
844
|
declare const NodeSqlView: ({
|
|
845
845
|
node
|
|
846
|
-
}: NodeSqlViewProps) =>
|
|
846
|
+
}: NodeSqlViewProps) => react_jsx_runtime16.JSX.Element | "Not available";
|
|
847
847
|
//#endregion
|
|
848
848
|
//#region recce-source/js/src/components/lineage/NodeTag.d.ts
|
|
849
849
|
declare function ResourceTypeTag({
|
|
850
850
|
node
|
|
851
851
|
}: {
|
|
852
852
|
node: LineageGraphNode;
|
|
853
|
-
}):
|
|
853
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
854
854
|
interface ModelRowCountProps {
|
|
855
855
|
rowCount?: RowCountDiff;
|
|
856
856
|
}
|
|
857
857
|
declare function ModelRowCount({
|
|
858
858
|
rowCount
|
|
859
|
-
}: ModelRowCountProps):
|
|
859
|
+
}: ModelRowCountProps): react_jsx_runtime16.JSX.Element;
|
|
860
860
|
interface RowCountDiffTagProps {
|
|
861
861
|
node: LineageGraphNode;
|
|
862
862
|
rowCount?: RowCountDiff;
|
|
@@ -869,7 +869,7 @@ declare function RowCountDiffTag({
|
|
|
869
869
|
node,
|
|
870
870
|
onRefresh,
|
|
871
871
|
isFetching
|
|
872
|
-
}: RowCountDiffTagProps):
|
|
872
|
+
}: RowCountDiffTagProps): react_jsx_runtime16.JSX.Element;
|
|
873
873
|
interface RowCountTagProps {
|
|
874
874
|
node: LineageGraphNode;
|
|
875
875
|
rowCount?: RowCount;
|
|
@@ -879,10 +879,10 @@ interface RowCountTagProps {
|
|
|
879
879
|
}
|
|
880
880
|
//#endregion
|
|
881
881
|
//#region recce-source/js/src/components/lineage/SetupConnectionBanner.d.ts
|
|
882
|
-
declare function SetupConnectionBanner():
|
|
882
|
+
declare function SetupConnectionBanner(): react_jsx_runtime16.JSX.Element;
|
|
883
883
|
//#endregion
|
|
884
884
|
//#region recce-source/js/src/components/query/QueryPage.d.ts
|
|
885
|
-
declare const QueryPage: () =>
|
|
885
|
+
declare const QueryPage: () => react_jsx_runtime16.JSX.Element;
|
|
886
886
|
//#endregion
|
|
887
887
|
//#region recce-source/js/src/components/query/QueryForm.d.ts
|
|
888
888
|
interface QueryFormProps extends BoxProps {
|
|
@@ -893,7 +893,7 @@ declare const QueryForm: ({
|
|
|
893
893
|
defaultPrimaryKeys,
|
|
894
894
|
onPrimaryKeysChange,
|
|
895
895
|
...props
|
|
896
|
-
}: QueryFormProps) =>
|
|
896
|
+
}: QueryFormProps) => react_jsx_runtime16.JSX.Element;
|
|
897
897
|
//#endregion
|
|
898
898
|
//#region recce-source/js/src/components/query/SqlEditor.d.ts
|
|
899
899
|
interface SqlEditorProps {
|
|
@@ -929,7 +929,7 @@ declare function SqlEditor({
|
|
|
929
929
|
manifestData,
|
|
930
930
|
schemas,
|
|
931
931
|
...props
|
|
932
|
-
}: SqlEditorProps):
|
|
932
|
+
}: SqlEditorProps): react_jsx_runtime16.JSX.Element;
|
|
933
933
|
//#endregion
|
|
934
934
|
//#region recce-source/js/src/components/query/QueryResultView.d.ts
|
|
935
935
|
interface QueryResultViewProp extends RunResultViewProps<QueryViewOptions> {
|
|
@@ -959,10 +959,10 @@ declare const DiffText: ({
|
|
|
959
959
|
grayOut,
|
|
960
960
|
noCopy,
|
|
961
961
|
fontSize
|
|
962
|
-
}: DiffTextProps) =>
|
|
962
|
+
}: DiffTextProps) => react_jsx_runtime16.JSX.Element;
|
|
963
963
|
//#endregion
|
|
964
964
|
//#region recce-source/js/src/components/query/SetupConnectionGuide.d.ts
|
|
965
|
-
declare function SetupConnectionGuide():
|
|
965
|
+
declare function SetupConnectionGuide(): react_jsx_runtime16.JSX.Element;
|
|
966
966
|
//#endregion
|
|
967
967
|
//#region recce-source/js/src/components/editor/CodeEditor.d.ts
|
|
968
968
|
type CodeEditorLanguage = "sql" | "yaml";
|
|
@@ -997,7 +997,7 @@ declare function CodeEditor({
|
|
|
997
997
|
className,
|
|
998
998
|
theme,
|
|
999
999
|
keyBindings
|
|
1000
|
-
}: CodeEditorProps):
|
|
1000
|
+
}: CodeEditorProps): react_jsx_runtime16.JSX.Element;
|
|
1001
1001
|
//#endregion
|
|
1002
1002
|
//#region recce-source/js/src/components/editor/DiffEditor.d.ts
|
|
1003
1003
|
type DiffEditorLanguage = "sql" | "yaml";
|
|
@@ -1027,7 +1027,7 @@ declare function DiffEditor({
|
|
|
1027
1027
|
className,
|
|
1028
1028
|
theme,
|
|
1029
1029
|
onModifiedChange
|
|
1030
|
-
}: DiffEditorProps):
|
|
1030
|
+
}: DiffEditorProps): react_jsx_runtime16.JSX.Element;
|
|
1031
1031
|
//#endregion
|
|
1032
1032
|
//#region recce-source/js/src/components/schema/SchemaView.d.ts
|
|
1033
1033
|
interface SchemaViewProps {
|
|
@@ -1061,7 +1061,7 @@ declare function ColumnNameCell({
|
|
|
1061
1061
|
singleEnv?: boolean;
|
|
1062
1062
|
cllRunning?: boolean;
|
|
1063
1063
|
showMenu?: boolean;
|
|
1064
|
-
}):
|
|
1064
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
1065
1065
|
//#endregion
|
|
1066
1066
|
//#region recce-source/js/src/components/check/CheckList.d.ts
|
|
1067
1067
|
declare const CheckList: ({
|
|
@@ -1074,7 +1074,7 @@ declare const CheckList: ({
|
|
|
1074
1074
|
selectedItem: string | null;
|
|
1075
1075
|
onCheckSelected: (checkId: string) => void;
|
|
1076
1076
|
onChecksReordered: (source: number, destination: number) => void;
|
|
1077
|
-
}) =>
|
|
1077
|
+
}) => react_jsx_runtime16.JSX.Element;
|
|
1078
1078
|
//#endregion
|
|
1079
1079
|
//#region recce-source/js/src/components/check/CheckDetail.d.ts
|
|
1080
1080
|
interface CheckDetailProps {
|
|
@@ -1094,7 +1094,7 @@ interface CheckBreadcrumbProps {
|
|
|
1094
1094
|
declare function CheckBreadcrumb({
|
|
1095
1095
|
name,
|
|
1096
1096
|
setName
|
|
1097
|
-
}: CheckBreadcrumbProps):
|
|
1097
|
+
}: CheckBreadcrumbProps): react_jsx_runtime16.JSX.Element;
|
|
1098
1098
|
//#endregion
|
|
1099
1099
|
//#region recce-source/js/src/components/check/CheckDescription.d.ts
|
|
1100
1100
|
interface CheckDescriptionProps {
|
|
@@ -1104,10 +1104,10 @@ interface CheckDescriptionProps {
|
|
|
1104
1104
|
declare function CheckDescription({
|
|
1105
1105
|
value,
|
|
1106
1106
|
onChange
|
|
1107
|
-
}: CheckDescriptionProps):
|
|
1107
|
+
}: CheckDescriptionProps): react_jsx_runtime16.JSX.Element;
|
|
1108
1108
|
//#endregion
|
|
1109
1109
|
//#region recce-source/js/src/components/check/CheckEmptyState.d.ts
|
|
1110
|
-
declare const CheckEmptyState: () =>
|
|
1110
|
+
declare const CheckEmptyState: () => react_jsx_runtime16.JSX.Element;
|
|
1111
1111
|
//#endregion
|
|
1112
1112
|
//#region recce-source/js/src/components/check/LineageDiffView.d.ts
|
|
1113
1113
|
interface LineageDiffViewProps {
|
|
@@ -1127,10 +1127,10 @@ interface RunPageProps$1 {
|
|
|
1127
1127
|
}
|
|
1128
1128
|
declare const RunPage: ({
|
|
1129
1129
|
runId
|
|
1130
|
-
}: RunPageProps$1) =>
|
|
1130
|
+
}: RunPageProps$1) => react_jsx_runtime16.JSX.Element;
|
|
1131
1131
|
//#endregion
|
|
1132
1132
|
//#region recce-source/js/src/components/run/RunList.d.ts
|
|
1133
|
-
declare const RunList: () =>
|
|
1133
|
+
declare const RunList: () => react_jsx_runtime16.JSX.Element;
|
|
1134
1134
|
//#endregion
|
|
1135
1135
|
//#region recce-source/js/src/components/run/RunView.d.ts
|
|
1136
1136
|
interface RunViewProps<VO = ViewOptionTypes> {
|
|
@@ -1168,7 +1168,7 @@ declare const RunModal: ({
|
|
|
1168
1168
|
title,
|
|
1169
1169
|
params: defaultParams,
|
|
1170
1170
|
RunForm
|
|
1171
|
-
}: RunModalProps) =>
|
|
1171
|
+
}: RunModalProps) => react_jsx_runtime16.JSX.Element;
|
|
1172
1172
|
//#endregion
|
|
1173
1173
|
//#region recce-source/js/src/components/run/RunResultPane.d.ts
|
|
1174
1174
|
interface RunPageProps {
|
|
@@ -1179,14 +1179,14 @@ interface RunPageProps {
|
|
|
1179
1179
|
declare const RunResultPane: ({
|
|
1180
1180
|
onClose,
|
|
1181
1181
|
isSingleEnvironment
|
|
1182
|
-
}: RunPageProps) =>
|
|
1182
|
+
}: RunPageProps) => react_jsx_runtime16.JSX.Element;
|
|
1183
1183
|
//#endregion
|
|
1184
1184
|
//#region recce-source/js/src/components/run/RunStatusAndDate.d.ts
|
|
1185
1185
|
declare const RunStatusAndDate: ({
|
|
1186
1186
|
run
|
|
1187
1187
|
}: {
|
|
1188
1188
|
run: Run;
|
|
1189
|
-
}) =>
|
|
1189
|
+
}) => react_jsx_runtime16.JSX.Element;
|
|
1190
1190
|
//#endregion
|
|
1191
1191
|
//#region recce-source/js/src/components/profile/ProfileDiffResultView.d.ts
|
|
1192
1192
|
type ProfileDiffResultViewProp = RunResultViewProps<ProfileDiffViewOptions>;
|
|
@@ -1208,7 +1208,7 @@ declare function HistogramDiffForm({
|
|
|
1208
1208
|
params,
|
|
1209
1209
|
onParamsChanged,
|
|
1210
1210
|
setIsReadyToExecute
|
|
1211
|
-
}: HistogramDiffEditProps):
|
|
1211
|
+
}: HistogramDiffEditProps): react_jsx_runtime16.JSX.Element;
|
|
1212
1212
|
//#endregion
|
|
1213
1213
|
//#region recce-source/js/src/components/histogram/HistogramDiffResultView.d.ts
|
|
1214
1214
|
type HistogramDiffResultViewProp = RunResultViewProps;
|
|
@@ -1220,7 +1220,7 @@ declare function TopKDiffForm({
|
|
|
1220
1220
|
params,
|
|
1221
1221
|
onParamsChanged,
|
|
1222
1222
|
setIsReadyToExecute
|
|
1223
|
-
}: TopKDiffFormProps):
|
|
1223
|
+
}: TopKDiffFormProps): react_jsx_runtime16.JSX.Element;
|
|
1224
1224
|
//#endregion
|
|
1225
1225
|
//#region recce-source/js/src/components/top-k/TopKDiffResultView.d.ts
|
|
1226
1226
|
type TopKDiffResultViewProp = RunResultViewProps;
|
|
@@ -1253,7 +1253,7 @@ declare function HistogramChart({
|
|
|
1253
1253
|
data,
|
|
1254
1254
|
hideAxis,
|
|
1255
1255
|
animation
|
|
1256
|
-
}: HistogramChartProps):
|
|
1256
|
+
}: HistogramChartProps): react_jsx_runtime16.JSX.Element;
|
|
1257
1257
|
//#endregion
|
|
1258
1258
|
//#region recce-source/js/src/components/charts/TopKSummaryList.d.ts
|
|
1259
1259
|
interface Props$2 {
|
|
@@ -1269,17 +1269,17 @@ declare function TopKSummaryList({
|
|
|
1269
1269
|
topk,
|
|
1270
1270
|
valids,
|
|
1271
1271
|
isDisplayTopTen
|
|
1272
|
-
}: Props$2):
|
|
1272
|
+
}: Props$2): react_jsx_runtime16.JSX.Element;
|
|
1273
1273
|
//#endregion
|
|
1274
1274
|
//#region recce-source/js/src/components/charts/SquareIcon.d.ts
|
|
1275
1275
|
declare function SquareIcon({
|
|
1276
1276
|
color
|
|
1277
1277
|
}: {
|
|
1278
1278
|
color: string;
|
|
1279
|
-
}):
|
|
1279
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
1280
1280
|
//#endregion
|
|
1281
1281
|
//#region recce-source/js/src/components/summary/SummaryView.d.ts
|
|
1282
|
-
declare function SummaryView():
|
|
1282
|
+
declare function SummaryView(): react_jsx_runtime16.JSX.Element;
|
|
1283
1283
|
//#endregion
|
|
1284
1284
|
//#region recce-source/js/src/components/summary/ChangeSummary.d.ts
|
|
1285
1285
|
interface Props$1 {
|
|
@@ -1287,7 +1287,7 @@ interface Props$1 {
|
|
|
1287
1287
|
}
|
|
1288
1288
|
declare function ChangeSummary({
|
|
1289
1289
|
lineageGraph
|
|
1290
|
-
}: Props$1):
|
|
1290
|
+
}: Props$1): react_jsx_runtime16.JSX.Element;
|
|
1291
1291
|
//#endregion
|
|
1292
1292
|
//#region recce-source/js/src/components/summary/SchemaSummary.d.ts
|
|
1293
1293
|
interface Props {
|
|
@@ -1295,10 +1295,28 @@ interface Props {
|
|
|
1295
1295
|
}
|
|
1296
1296
|
declare function SchemaSummary({
|
|
1297
1297
|
lineageGraph
|
|
1298
|
-
}: Props):
|
|
1298
|
+
}: Props): react_jsx_runtime16.JSX.Element;
|
|
1299
1299
|
//#endregion
|
|
1300
1300
|
//#region recce-source/js/src/components/app/EnvInfo.d.ts
|
|
1301
|
-
declare function EnvInfo$1():
|
|
1301
|
+
declare function EnvInfo$1(): react_jsx_runtime16.JSX.Element;
|
|
1302
|
+
//#endregion
|
|
1303
|
+
//#region recce-source/js/app/(mainComponents)/TopBar.d.ts
|
|
1304
|
+
declare function TopBar(): react_jsx_runtime16.JSX.Element;
|
|
1305
|
+
//#endregion
|
|
1306
|
+
//#region recce-source/js/app/(mainComponents)/NavBar.d.ts
|
|
1307
|
+
declare function NavBar(): react_jsx_runtime16.JSX.Element;
|
|
1308
|
+
//#endregion
|
|
1309
|
+
//#region recce-source/js/app/(mainComponents)/DisplayModeToggle.d.ts
|
|
1310
|
+
/**
|
|
1311
|
+
* Display Mode Toggle - switches between light and dark themes
|
|
1312
|
+
*
|
|
1313
|
+
* Uses next-themes to persist the user's preference.
|
|
1314
|
+
* Default is light theme, with future support for system preference.
|
|
1315
|
+
*/
|
|
1316
|
+
declare function DisplayModeToggle(): react_jsx_runtime16.JSX.Element;
|
|
1317
|
+
//#endregion
|
|
1318
|
+
//#region recce-source/js/app/(mainComponents)/RecceVersionBadge.d.ts
|
|
1319
|
+
declare function RecceVersionBadge(): react_jsx_runtime16.JSX.Element;
|
|
1302
1320
|
//#endregion
|
|
1303
1321
|
//#region recce-source/js/src/components/shared/HistoryToggle.d.ts
|
|
1304
1322
|
declare function HistoryToggle(): ReactNode;
|
|
@@ -1309,15 +1327,15 @@ declare function HistoryToggle(): ReactNode;
|
|
|
1309
1327
|
* Only shows when remaining time is below the warning threshold
|
|
1310
1328
|
* Styled as a warning indicator to draw user attention
|
|
1311
1329
|
*/
|
|
1312
|
-
declare function IdleTimeoutBadge():
|
|
1330
|
+
declare function IdleTimeoutBadge(): react_jsx_runtime16.JSX.Element;
|
|
1313
1331
|
//#endregion
|
|
1314
1332
|
//#region recce-source/js/src/components/icons/index.d.ts
|
|
1315
|
-
declare const IconSync: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1316
|
-
declare const IconExport: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1317
|
-
declare const IconImport: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1318
|
-
declare const IconSave: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1319
|
-
declare const IconEdit: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1320
|
-
declare const IconInfo: (props: React$1.SVGProps<SVGSVGElement>) =>
|
|
1333
|
+
declare const IconSync: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime16.JSX.Element;
|
|
1334
|
+
declare const IconExport: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime16.JSX.Element;
|
|
1335
|
+
declare const IconImport: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime16.JSX.Element;
|
|
1336
|
+
declare const IconSave: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime16.JSX.Element;
|
|
1337
|
+
declare const IconEdit: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime16.JSX.Element;
|
|
1338
|
+
declare const IconInfo: (props: React$1.SVGProps<SVGSVGElement>) => react_jsx_runtime16.JSX.Element;
|
|
1321
1339
|
//#endregion
|
|
1322
1340
|
//#region recce-source/js/src/lib/api/instanceInfo.d.ts
|
|
1323
1341
|
interface RecceInstanceInfo {
|
|
@@ -1350,7 +1368,7 @@ declare function useClipBoardToast(): {
|
|
|
1350
1368
|
//#region recce-source/js/src/components/lineage/useValueDiffAlertDialog.d.ts
|
|
1351
1369
|
declare function useValueDiffAlertDialog(): {
|
|
1352
1370
|
confirm: (nodeCount: number) => Promise<boolean>;
|
|
1353
|
-
AlertDialog:
|
|
1371
|
+
AlertDialog: react_jsx_runtime16.JSX.Element;
|
|
1354
1372
|
};
|
|
1355
1373
|
//#endregion
|
|
1356
1374
|
//#region recce-source/js/src/lib/hooks/RecceContextProvider.d.ts
|
|
@@ -1379,7 +1397,7 @@ interface RecceContextProps {
|
|
|
1379
1397
|
*/
|
|
1380
1398
|
declare function RecceContextProvider({
|
|
1381
1399
|
children
|
|
1382
|
-
}: RecceContextProps):
|
|
1400
|
+
}: RecceContextProps): react_jsx_runtime16.JSX.Element;
|
|
1383
1401
|
//#endregion
|
|
1384
1402
|
//#region recce-source/js/src/lib/hooks/RecceInstanceContext.d.ts
|
|
1385
1403
|
type RecceFeatureMode = "read only" | "metadata only" | null;
|
|
@@ -1406,7 +1424,7 @@ declare function RecceInstanceInfoProvider({
|
|
|
1406
1424
|
children
|
|
1407
1425
|
}: {
|
|
1408
1426
|
children: React.ReactNode;
|
|
1409
|
-
}):
|
|
1427
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
1410
1428
|
declare const useRecceInstanceContext: () => InstanceInfoType;
|
|
1411
1429
|
//#endregion
|
|
1412
1430
|
//#region recce-source/js/src/lib/hooks/LineageGraphContext.d.ts
|
|
@@ -1443,7 +1461,7 @@ interface LineageGraphProps {
|
|
|
1443
1461
|
}
|
|
1444
1462
|
declare function LineageGraphContextProvider({
|
|
1445
1463
|
children
|
|
1446
|
-
}: LineageGraphProps):
|
|
1464
|
+
}: LineageGraphProps): react_jsx_runtime16.JSX.Element;
|
|
1447
1465
|
declare const useLineageGraphContext: () => LineageGraphContextType;
|
|
1448
1466
|
declare const useRunsAggregated: () => [RunsAggregated | undefined, () => void];
|
|
1449
1467
|
//#endregion
|
|
@@ -1458,7 +1476,7 @@ declare function RecceShareStateContextProvider({
|
|
|
1458
1476
|
children
|
|
1459
1477
|
}: {
|
|
1460
1478
|
children: React$1.ReactNode;
|
|
1461
|
-
}):
|
|
1479
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
1462
1480
|
declare const useRecceShareStateContext: () => ShareStateProps;
|
|
1463
1481
|
//#endregion
|
|
1464
1482
|
//#region recce-source/js/src/lib/hooks/RecceQueryContext.d.ts
|
|
@@ -1477,7 +1495,7 @@ interface QueryContextProps {
|
|
|
1477
1495
|
}
|
|
1478
1496
|
declare function RecceQueryContextProvider({
|
|
1479
1497
|
children
|
|
1480
|
-
}: QueryContextProps):
|
|
1498
|
+
}: QueryContextProps): react_jsx_runtime16.JSX.Element;
|
|
1481
1499
|
declare const useRecceQueryContext: () => QueryContext;
|
|
1482
1500
|
interface RowCountStateContext {
|
|
1483
1501
|
isNodesFetching: string[];
|
|
@@ -1488,7 +1506,7 @@ interface RowCountStateContextProps {
|
|
|
1488
1506
|
}
|
|
1489
1507
|
declare function RowCountStateContextProvider({
|
|
1490
1508
|
children
|
|
1491
|
-
}: RowCountStateContextProps):
|
|
1509
|
+
}: RowCountStateContextProps): react_jsx_runtime16.JSX.Element;
|
|
1492
1510
|
declare const useRowCountStateContext: () => RowCountStateContext;
|
|
1493
1511
|
//#endregion
|
|
1494
1512
|
//#region recce-source/js/src/lib/hooks/RecceActionContext.d.ts
|
|
@@ -1509,12 +1527,13 @@ interface RecceActionContextType {
|
|
|
1509
1527
|
setHistoryOpen: Dispatch<SetStateAction<boolean>>;
|
|
1510
1528
|
clearRunResult: () => void;
|
|
1511
1529
|
}
|
|
1530
|
+
declare const RecceActionContext: React$1.Context<RecceActionContextType>;
|
|
1512
1531
|
interface RecceActionContextProviderProps {
|
|
1513
1532
|
children: React$1.ReactNode;
|
|
1514
1533
|
}
|
|
1515
1534
|
declare function RecceActionContextProvider({
|
|
1516
1535
|
children
|
|
1517
|
-
}: RecceActionContextProviderProps):
|
|
1536
|
+
}: RecceActionContextProviderProps): react_jsx_runtime16.JSX.Element;
|
|
1518
1537
|
declare const useRecceActionContext: () => RecceActionContextType;
|
|
1519
1538
|
//#endregion
|
|
1520
1539
|
//#region recce-source/js/src/lib/hooks/RecceCheckContext.d.ts
|
|
@@ -1527,7 +1546,7 @@ interface CheckContextProps {
|
|
|
1527
1546
|
}
|
|
1528
1547
|
declare function RecceCheckContextProvider({
|
|
1529
1548
|
children
|
|
1530
|
-
}: CheckContextProps):
|
|
1549
|
+
}: CheckContextProps): react_jsx_runtime16.JSX.Element;
|
|
1531
1550
|
declare const useRecceCheckContext: () => CheckContext;
|
|
1532
1551
|
//#endregion
|
|
1533
1552
|
//#region recce-source/js/src/lib/hooks/IdleTimeoutContext.d.ts
|
|
@@ -1562,7 +1581,7 @@ declare function IdleTimeoutProvider({
|
|
|
1562
1581
|
children
|
|
1563
1582
|
}: {
|
|
1564
1583
|
children: ReactNode;
|
|
1565
|
-
}):
|
|
1584
|
+
}): react_jsx_runtime16.JSX.Element;
|
|
1566
1585
|
/**
|
|
1567
1586
|
* Hook to access idle timeout context
|
|
1568
1587
|
* @throws Error if used outside IdleTimeoutProvider
|
|
@@ -1617,7 +1636,7 @@ declare function ApiConfigProvider({
|
|
|
1617
1636
|
apiPrefix,
|
|
1618
1637
|
authToken,
|
|
1619
1638
|
baseUrl
|
|
1620
|
-
}: ApiConfigProviderProps):
|
|
1639
|
+
}: ApiConfigProviderProps): react_jsx_runtime16.JSX.Element;
|
|
1621
1640
|
/**
|
|
1622
1641
|
* Hook to access the API configuration and configured axios client.
|
|
1623
1642
|
*
|
|
@@ -1704,15 +1723,15 @@ interface QueryDiffViewOptions {
|
|
|
1704
1723
|
display_mode?: "inline" | "side_by_side";
|
|
1705
1724
|
columnsRenderMode?: Record<string, ColumnRenderMode>;
|
|
1706
1725
|
}
|
|
1707
|
-
declare function submitQuery(params: QueryRunParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
1708
|
-
declare function submitQueryBase(params: QueryRunParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
1709
|
-
declare function submitQueryDiff(params: QueryDiffParams, options?: SubmitOptions): Promise<Run | Pick<Run, "run_id">>;
|
|
1726
|
+
declare function submitQuery(params: QueryRunParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
1727
|
+
declare function submitQueryBase(params: QueryRunParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
1728
|
+
declare function submitQueryDiff(params: QueryDiffParams, options?: SubmitOptions, client?: AxiosInstance): Promise<Run | Pick<Run, "run_id">>;
|
|
1710
1729
|
//#endregion
|
|
1711
1730
|
//#region recce-source/js/src/lib/api/connectToCloud.d.ts
|
|
1712
1731
|
interface ConnectToCloud {
|
|
1713
1732
|
connection_url: string;
|
|
1714
1733
|
}
|
|
1715
|
-
declare function connectToCloud(): Promise<ConnectToCloud>;
|
|
1734
|
+
declare function connectToCloud(client?: AxiosInstance): Promise<ConnectToCloud>;
|
|
1716
1735
|
//#endregion
|
|
1717
1736
|
//#region recce-source/js/src/lib/api/flag.d.ts
|
|
1718
1737
|
interface RecceServerFlags {
|
|
@@ -1731,7 +1750,7 @@ interface SchemaDiffViewParams {
|
|
|
1731
1750
|
view_mode?: "all" | "changed_models";
|
|
1732
1751
|
packages?: string[];
|
|
1733
1752
|
}
|
|
1734
|
-
declare function createSchemaDiffCheck(params: SchemaDiffViewParams): Promise<Check>;
|
|
1753
|
+
declare function createSchemaDiffCheck(params: SchemaDiffViewParams, client?: AxiosInstance): Promise<Check>;
|
|
1735
1754
|
//#endregion
|
|
1736
1755
|
//#region recce-source/js/src/lib/api/select.d.ts
|
|
1737
1756
|
interface SelectInput {
|
|
@@ -1743,7 +1762,7 @@ interface SelectInput {
|
|
|
1743
1762
|
interface SelectOutput {
|
|
1744
1763
|
nodes: string[];
|
|
1745
1764
|
}
|
|
1746
|
-
declare function select(input: SelectInput): Promise<SelectOutput>;
|
|
1765
|
+
declare function select(input: SelectInput, client?: AxiosInstance): Promise<SelectOutput>;
|
|
1747
1766
|
//#endregion
|
|
1748
1767
|
//#region recce-source/js/src/lib/api/state.d.ts
|
|
1749
1768
|
interface SaveAsInput {
|
|
@@ -1754,24 +1773,24 @@ interface ImportedState {
|
|
|
1754
1773
|
runs: number;
|
|
1755
1774
|
checks: number;
|
|
1756
1775
|
}
|
|
1757
|
-
declare function saveAs(input: SaveAsInput): Promise<void>;
|
|
1758
|
-
declare function rename(input: SaveAsInput): Promise<void>;
|
|
1759
|
-
declare function exportState(): Promise<string>;
|
|
1760
|
-
declare function importState(file: File, checksOnly?: boolean): Promise<ImportedState>;
|
|
1761
|
-
declare function isStateSyncing(): Promise<boolean>;
|
|
1776
|
+
declare function saveAs(input: SaveAsInput, client?: AxiosInstance): Promise<void>;
|
|
1777
|
+
declare function rename(input: SaveAsInput, client?: AxiosInstance): Promise<void>;
|
|
1778
|
+
declare function exportState(client?: AxiosInstance): Promise<string>;
|
|
1779
|
+
declare function importState(file: File, checksOnly?: boolean, client?: AxiosInstance): Promise<ImportedState>;
|
|
1780
|
+
declare function isStateSyncing(client?: AxiosInstance): Promise<boolean>;
|
|
1762
1781
|
interface SyncStateInput {
|
|
1763
1782
|
method?: "overwrite" | "revert" | "merge";
|
|
1764
1783
|
}
|
|
1765
1784
|
interface SyncStateResponse {
|
|
1766
1785
|
status: "accepted" | "conflict" | "syncing";
|
|
1767
1786
|
}
|
|
1768
|
-
declare function syncState(input: SyncStateInput): Promise<SyncStateResponse>;
|
|
1787
|
+
declare function syncState(input: SyncStateInput, client?: AxiosInstance): Promise<SyncStateResponse>;
|
|
1769
1788
|
interface ShareStateResponse {
|
|
1770
1789
|
status: string;
|
|
1771
1790
|
message: string;
|
|
1772
1791
|
share_url?: string;
|
|
1773
1792
|
}
|
|
1774
|
-
declare function shareState(): Promise<ShareStateResponse>;
|
|
1793
|
+
declare function shareState(client?: AxiosInstance): Promise<ShareStateResponse>;
|
|
1775
1794
|
//#endregion
|
|
1776
1795
|
//#region recce-source/js/src/lib/api/user.d.ts
|
|
1777
1796
|
interface User {
|
|
@@ -1781,10 +1800,15 @@ interface User {
|
|
|
1781
1800
|
email: string;
|
|
1782
1801
|
onboarding_state: string;
|
|
1783
1802
|
}
|
|
1784
|
-
declare function fetchUser(): Promise<User>;
|
|
1803
|
+
declare function fetchUser(client?: AxiosInstance): Promise<User>;
|
|
1785
1804
|
declare function fetchGitHubAvatar(userId: string): Promise<string | null>;
|
|
1786
1805
|
//#endregion
|
|
1787
1806
|
//#region recce-source/js/src/lib/api/version.d.ts
|
|
1807
|
+
interface VersionResponse {
|
|
1808
|
+
version: string;
|
|
1809
|
+
latestVersion: string;
|
|
1810
|
+
}
|
|
1811
|
+
declare function getVersion(client?: AxiosInstance): Promise<VersionResponse>;
|
|
1788
1812
|
declare function useVersionNumber(): {
|
|
1789
1813
|
version: string;
|
|
1790
1814
|
latestVersion: string;
|
|
@@ -1805,5 +1829,5 @@ declare const sessionStorageKeys: {
|
|
|
1805
1829
|
lineageNotificationDismissed: string;
|
|
1806
1830
|
};
|
|
1807
1831
|
//#endregion
|
|
1808
|
-
export {
|
|
1809
|
-
//# sourceMappingURL=index-
|
|
1832
|
+
export { ApiConfig as $, ValueDiffForm as $n, ProfileDiffViewOptions as $r, ValueDiffResultView as $t, connectToCloud as A, ServerInfoResult as Ai, RowCountTagProps as An, ValueDiffDetailParams as Ar, IconImport as At, submitQueryBase as B, ScreenshotBox as Bi, LineageDiffViewOptions as Bn, RowCountResult as Br, EnvInfo$1 as Bt, SchemaDiffViewParams as C, LineageDiffData as Ci, QueryForm as Cn, isRowCountDiffRun as Cr, RecceContextProvider as Ct, markOnboardingCompleted as D, NodeColumnData as Di, ResourceTypeTag as Dn, isTopKDiffRun as Dr, useRecceInstanceInfo as Dt, getServerFlag as E, ModelInfoResult as Ei, ModelRowCount as En, isSimpleRun as Er, useCheckToast as Et, QueryPreviewChangeParams as F, getServerInfo as Fi, GraphNode as Fn, submitValueDiff as Fr, HistoryToggle as Ft, DisableTooltipMessages as G, ToasterProvider as Gi, createSimpleCheck as Gn, fetchModelRowCount as Gr, TopKSummaryList as Gt, VERSION as H, VSplit as Hi, Check as Hn, QueryRowCountResult as Hr, ChangeSummary as Ht, QueryResult as I, gitInfo as Ii, LineageViewTopBar as In, submitValueDiffDetail as Ir, RecceVersionBadge as It, columnPrecisionSelectOptions as J, axiosClient as Ji, listChecks as Jn, HistogramDiffParams as Jr, TopKDiffResultView as Jt, RECCE_SUPPORT_CALENDAR_URL as K, useToaster as Ki, deleteCheck as Kn, queryModelRowCount as Kr, HistogramChart as Kt, QueryRunParams as L, pullRequestInfo as Li, LineageViewContext as Ln, RowCountDiffParams as Lr, DisplayModeToggle as Lt, QueryDiffResult as M, getLineageDiff as Mi, NodeView as Mn, ValueDiffDetailViewOptions as Mr, IconSave as Mt, QueryDiffViewOptions as N, getLineageWithError as Ni, GraphColumnNode as Nn, ValueDiffParams as Nr, IconSync as Nt, markRelaunchHintCompleted as O, NodeData as Oi, RowCountDiffTag as On, isValueDiffDetailRun as Or, IconEdit as Ot, QueryParams as P, getModelInfo as Pi, GraphEdge as Pn, ValueDiffResult as Pr, IdleTimeoutBadge as Pt, buildTitle as Q, useChecks as Qn, ProfileDiffResult as Qr, ValueDiffDetailResultView as Qt, QueryViewOptions as R, stateMetadata as Ri, useLineageViewContext as Rn, RowCountDiffResult as Rr, NavBar as Rt, select as S, LineageDataFromMetadata as Si, SqlEditor as Sn, isQueryRun as Sr, useRecceInstanceContext as St, RecceServerFlags as T, ManifestMetadata as Ti, SetupConnectionBanner as Tn, isSchemaDiffRun as Tr, useClipBoardToast as Tt, PUBLIC_API_URL as U, ErrorBoundary$1 as Ui, CreateCheckBody as Un, RowCount as Ur, SummaryView as Ut, submitQueryDiff as V, HSplit as Vi, createLineageDiffCheck as Vn, submitRowCountDiff as Vr, SchemaSummary as Vt, PUBLIC_CLOUD_WEB_URL as W, Toaster as Wi, createCheckByRun as Wn, RowCountDiff as Wr, SquareIcon as Wt, buildDescription as X, reorderChecks as Xn, HistogramResult as Xr, HistogramDiffResultView as Xt, isSchemaChanged as Y, reactQueryClient as Yi, markAsPresetCheck as Yn, HistogramDiffResult as Yr, TopKDiffForm as Yt, buildQuery as Z, updateCheck as Zn, ProfileDiffParams as Zr, HistogramDiffForm as Zt, saveAs as _, ColumnLineageData as _i, CodeEditor as _n, isLineageDiffRun as _r, useRecceShareStateContext as _t, User as a, SubmitOptions as ai, RunList as an, AxiosQueryParams as ar, useIdleTimeout as at, SelectInput as b, CatalogMetadata as bi, QueryDiffResultView as bn, isQueryBaseRun as br, useRunsAggregated as bt, ImportedState as c, cancelRun as ci, LineageDiffView as cn, DataFrame as cr, RecceActionContext as ct, SyncStateInput as d, searchRuns as di, CheckBreadcrumb as dn, RowDataTypes as dr, useRecceActionContext as dt, TopKDiffParams as ei, ProfileDiffResultView as en, ProfileDiffForm as er, ApiConfigProvider as et, SyncStateResponse as f, submitRun as fi, CheckDetail as fn, RowObjectType as fr, RecceQueryContextProvider as ft, rename as g, CllNodeData as gi, DiffEditor as gn, isHistogramDiffRun as gr, RecceShareStateContextProvider as gt, isStateSyncing as h, CllInput as hi, SchemaView as hn, SchemaDiffParams as hr, useRowCountStateContext as ht, useVersionNumber as i, RunsAggregated as ii, RunView as in, RunResultViewProps as ir, IdleTimeoutProvider as it, QueryDiffParams as j, getLineage as ji, NodeSqlView as jn, ValueDiffDetailResult as jr, IconInfo as jt, ConnectToCloud as k, SQLMeshInfo as ki, RowCountDiffTagProps as kn, isValueDiffRun as kr, IconExport as kt, SaveAsInput as l, getRun as li, CheckEmptyState as ln, LineageDiffParams as lr, RecceActionContextProvider as lt, importState as m, waitRun as mi, ColumnNameCell as mn, RunParamTypes as mr, useRecceQueryContext as mt, localStorageKeys as n, TopKResult as ni, RunResultPane as nn, RunToolbar as nr, useApiConfig as nt, fetchGitHubAvatar as o, SubmitRunTrackProps as oi, RunPage as on, ColumnRenderMode as or, RecceCheckContextProvider as ot, exportState as p, submitRunFromCheck as pi, CheckList as pn, Run as pr, RowCountStateContextProvider as pt, deltaPercentageString as q, MuiProvider as qi, getCheck as qn, queryRowCount as qr, RowCountDiffResultView as qt, getVersion as r, submitProfileDiff as ri, RunModal as rn, RunFormProps as rr, useApiConfigSafe as rt, fetchUser as s, aggregateRuns as si, SchemaDiffView as sn, ColumnType as sr, useRecceCheckContext as st, sessionStorageKeys as t, TopKDiffResult as ti, RunStatusAndDate as tn, ScreenshotDataGrid as tr, useApiClient as tt, ShareStateResponse as u, listRuns as ui, CheckDescription as un, RowData as ur, RecceActionContextType as ut, shareState as v, ImpactRadiusParams as vi, SetupConnectionGuide as vn, isProfileDiffRun as vr, LineageGraphContextProvider as vt, createSchemaDiffCheck as w, LineageDiffResult as wi, QueryPage as wn, isRowCountRun as wr, useValueDiffAlertDialog as wt, SelectOutput as x, LineageData as xi, QueryResultView as xn, isQueryDiffRun as xr, RecceInstanceInfoProvider as xt, syncState as y, getCll as yi, DiffText as yn, isProfileRun as yr, useLineageGraphContext as yt, submitQuery as z, LineagePage as zi, LineageView as zn, RowCountParams as zr, TopBar as zt };
|
|
1833
|
+
//# sourceMappingURL=index-04n48ic2.d.mts.map
|