@mongodb-js/compass-aggregations 0.0.0-next-ed8f90bd71f084cb541f99b15caf3833ec6a953c → 0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321
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/browser.js +1 -1
- package/dist/index.js +1 -1
- package/dist/src/components/focus-mode/focus-mode-stage-editor.d.ts.map +1 -1
- package/dist/src/components/pipeline-builder-workspace/pipeline-as-text-workspace/pipeline-editor.d.ts.map +1 -1
- package/dist/src/components/stage-editor/stage-editor.d.ts +9 -6
- package/dist/src/components/stage-editor/stage-editor.d.ts.map +1 -1
- package/dist/src/components/stage-toolbar/index.d.ts +3 -4
- package/dist/src/components/stage-toolbar/index.d.ts.map +1 -1
- package/dist/src/components/stage-toolbar/stage-operator-select.d.ts +14 -20
- package/dist/src/components/stage-toolbar/stage-operator-select.d.ts.map +1 -1
- package/dist/src/components/stage.d.ts.map +1 -1
- package/dist/src/modules/pipeline-builder/pipeline-parser/utils.d.ts +1 -0
- package/dist/src/modules/pipeline-builder/pipeline-parser/utils.d.ts.map +1 -1
- package/dist/src/modules/pipeline-builder/stage-editor.d.ts +1 -1
- package/dist/src/modules/pipeline-builder/stage-editor.d.ts.map +1 -1
- package/dist/src/stores/store.d.ts.map +1 -1
- package/dist/src/utils/stage.d.ts +1 -1
- package/dist/src/utils/stage.d.ts.map +1 -1
- package/package.json +18 -18
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"focus-mode-stage-editor.d.ts","sourceRoot":"","sources":["../../../../src/components/focus-mode/focus-mode-stage-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;
|
1
|
+
{"version":3,"file":"focus-mode-stage-editor.d.ts","sourceRoot":"","sources":["../../../../src/components/focus-mode/focus-mode-stage-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;AAgCtC,eAAO,MAAM,oBAAoB;WAIxB,MAAM;cACH,MAAM,GAAG,IAAI;wBAgCxB,CAAC;;;;;;;;AAeF,wBAAuD"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"pipeline-editor.d.ts","sourceRoot":"","sources":["../../../../../src/components/pipeline-builder-workspace/pipeline-as-text-workspace/pipeline-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
1
|
+
{"version":3,"file":"pipeline-editor.d.ts","sourceRoot":"","sources":["../../../../../src/components/pipeline-builder-workspace/pipeline-as-text-workspace/pipeline-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAW5D,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAO3E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;AAwCnG,aAAK,mBAAmB,GAAG;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,mBAAmB,EAAE,CAAC;IACpC,WAAW,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACrC,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,wBAAwB,EAAE,CAAC;IACnC,oBAAoB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAC/C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,iBAAiB,CAAC,mBAAmB,CA0FvE,CAAC;;;;;AA6BF,wBAA8D"}
|
@@ -1,26 +1,29 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import type { MongoServerError } from 'mongodb';
|
3
|
-
import type {
|
3
|
+
import type { EditorRef } from '@mongodb-js/compass-editor';
|
4
4
|
import type { PipelineParserError } from '../../modules/pipeline-builder/pipeline-parser/utils';
|
5
5
|
declare type StageEditorProps = {
|
6
6
|
index: number;
|
7
7
|
stageOperator: string | null;
|
8
8
|
stageValue: string | null;
|
9
9
|
serverVersion: string;
|
10
|
-
autocompleteFields:
|
10
|
+
autocompleteFields: {
|
11
|
+
name: string;
|
12
|
+
description?: string;
|
13
|
+
}[];
|
11
14
|
syntaxError: PipelineParserError | null;
|
12
15
|
serverError: MongoServerError | null;
|
13
16
|
num_stages: number;
|
14
17
|
editor_view_type: string;
|
15
18
|
className?: string;
|
16
19
|
onChange: (index: number, value: string) => void;
|
17
|
-
|
20
|
+
editorRef?: React.Ref<EditorRef>;
|
18
21
|
};
|
19
|
-
export declare const StageEditor: ({ stageValue, stageOperator, index, onChange, serverError, syntaxError, className, autocompleteFields, serverVersion, num_stages, editor_view_type,
|
20
|
-
declare const _default: import("react-redux").ConnectedComponent<({ stageValue, stageOperator, index, onChange, serverError, syntaxError, className, autocompleteFields, serverVersion, num_stages, editor_view_type,
|
22
|
+
export declare const StageEditor: ({ stageValue, stageOperator, index, onChange, serverError, syntaxError, className, autocompleteFields, serverVersion, num_stages, editor_view_type, editorRef, }: StageEditorProps) => JSX.Element;
|
23
|
+
declare const _default: import("react-redux").ConnectedComponent<({ stageValue, stageOperator, index, onChange, serverError, syntaxError, className, autocompleteFields, serverVersion, num_stages, editor_view_type, editorRef, }: StageEditorProps) => JSX.Element, {
|
21
24
|
className?: string | undefined;
|
22
|
-
onLoad?: ((editor: import("ace-builds").Ace.Editor) => void) | undefined;
|
23
25
|
index: number;
|
26
|
+
editorRef?: React.Ref<EditorRef> | undefined;
|
24
27
|
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
25
28
|
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
26
29
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage-editor.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor/stage-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
1
|
+
{"version":3,"file":"stage-editor.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-editor/stage-editor.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAE5D,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAKhD,OAAO,KAAK,EAAc,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAaxE,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AA6ChG,aAAK,gBAAgB,GAAG;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC7D,WAAW,EAAE,mBAAmB,GAAG,IAAI,CAAC;IACxC,WAAW,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACjD,SAAS,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;CAClC,CAAC;AAEF,eAAO,MAAM,WAAW,qKAarB,gBAAgB,gBAmGlB,CAAC;;;WAGsC,MAAM;;;;;AAD9C,wBAoBe"}
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { type AceEditor } from '@mongodb-js/compass-editor';
|
3
2
|
declare type StageToolbarProps = {
|
4
3
|
index: number;
|
5
4
|
isAutoPreviewing?: boolean;
|
@@ -9,12 +8,12 @@ declare type StageToolbarProps = {
|
|
9
8
|
isDisabled?: boolean;
|
10
9
|
onFocusModeClicked: () => void;
|
11
10
|
onOpenFocusMode: () => void;
|
12
|
-
|
11
|
+
onStageOperatorChange?: (index: number, name: string | null, snippet?: string) => void;
|
13
12
|
};
|
14
|
-
export declare function StageToolbar({ index, hasSyntaxError, hasServerError, isCollapsed, isDisabled, onOpenFocusMode,
|
13
|
+
export declare function StageToolbar({ index, hasSyntaxError, hasServerError, isCollapsed, isDisabled, onOpenFocusMode, onStageOperatorChange, }: StageToolbarProps): JSX.Element;
|
15
14
|
declare const _default: import("react-redux").ConnectedComponent<typeof StageToolbar, {
|
16
15
|
index: number;
|
17
|
-
|
16
|
+
onStageOperatorChange?: ((index: number, name: string | null, snippet?: string | undefined) => void) | undefined;
|
18
17
|
onFocusModeClicked: () => void;
|
19
18
|
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
20
19
|
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-toolbar/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-toolbar/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAoF1B,aAAK,iBAAiB,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,kBAAkB,EAAE,MAAM,IAAI,CAAC;IAC/B,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,qBAAqB,CAAC,EAAE,CACtB,KAAK,EAAE,MAAM,EACb,IAAI,EAAE,MAAM,GAAG,IAAI,EACnB,OAAO,CAAC,EAAE,MAAM,KACb,IAAI,CAAC;CACX,CAAC;AAMF,wBAAgB,YAAY,CAAC,EAC3B,KAAK,EACL,cAAc,EACd,cAAc,EACd,WAAW,EACX,UAAU,EACV,eAAe,EACf,qBAAqB,GACtB,EAAE,iBAAiB,eAsCnB;;;;;;;;AAOD,wBAiBgB"}
|
@@ -1,7 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { type AceEditor } from '@mongodb-js/compass-editor';
|
3
2
|
declare type StageOperatorSelectProps = {
|
4
|
-
onChange: (index: number, name: string | null) => void;
|
3
|
+
onChange: (index: number, name: string | null, snippet?: string) => void;
|
5
4
|
index: number;
|
6
5
|
selectedStage: string | null;
|
7
6
|
isDisabled: boolean;
|
@@ -12,27 +11,22 @@ declare type StageOperatorSelectProps = {
|
|
12
11
|
}[];
|
13
12
|
};
|
14
13
|
export declare const StageOperatorSelect: ({ onChange, index, selectedStage, isDisabled, stages, }: StageOperatorSelectProps) => JSX.Element;
|
15
|
-
declare
|
16
|
-
envInfo: {
|
17
|
-
serverVersion: string;
|
18
|
-
env: string;
|
19
|
-
isTimeSeries: boolean;
|
20
|
-
sourceName: string;
|
21
|
-
};
|
22
|
-
stage: {
|
23
|
-
stageOperator: string | null;
|
24
|
-
disabled: boolean;
|
25
|
-
};
|
26
|
-
onChange: (index: number, name: string) => void;
|
14
|
+
declare const _default: (props: Omit<{
|
27
15
|
index: number;
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
16
|
+
readOnly: boolean;
|
17
|
+
onChange?: ((index: number, name: string | null, snippet?: string) => void) | undefined;
|
18
|
+
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
19
|
+
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
20
|
+
} & {
|
21
|
+
children?: React.ReactNode;
|
22
|
+
}, "readOnly"> & Partial<Pick<{
|
32
23
|
index: number;
|
33
|
-
|
24
|
+
readOnly: boolean;
|
25
|
+
onChange?: ((index: number, name: string | null, snippet?: string) => void) | undefined;
|
34
26
|
context?: React.Context<import("react-redux").ReactReduxContextValue<any, import("redux").AnyAction>> | undefined;
|
35
27
|
store?: import("redux").Store<any, import("redux").AnyAction> | undefined;
|
36
|
-
}
|
28
|
+
} & {
|
29
|
+
children?: React.ReactNode;
|
30
|
+
}, "readOnly">>) => React.ReactElement<{}, string | React.JSXElementConstructor<any>>;
|
37
31
|
export default _default;
|
38
32
|
//# sourceMappingURL=stage-operator-select.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage-operator-select.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-toolbar/stage-operator-select.tsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"stage-operator-select.d.ts","sourceRoot":"","sources":["../../../../src/components/stage-toolbar/stage-operator-select.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAmC3C,aAAK,wBAAwB,GAAG;IAC9B,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI,EAAE,OAAO,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACzE,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,UAAU,EAAE,OAAO,CAAC;IACpB,MAAM,EAAE;QACN,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,EAAE,MAAM,CAAC;QACZ,WAAW,EAAE,MAAM,CAAC;KACrB,EAAE,CAAC;CACL,CAAC;AAGF,eAAO,MAAM,mBAAmB,4DAM7B,wBAAwB,gBAkC1B,CAAC;;WAOa,MAAM;cACH,OAAO;wBAER,MAAM,QACP,MAAM,GAAG,IAAI,YACT,MAAM,KACb,IAAI;;;;;;WANF,MAAM;cACH,OAAO;wBAER,MAAM,QACP,MAAM,GAAG,IAAI,YACT,MAAM,KACb,IAAI;;;;;;AAXjB,wBAuCE"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../../src/components/stage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;
|
1
|
+
{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../../src/components/stage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmD,MAAM,OAAO,CAAC;AAyIxE,oBAAY,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,cAAc,EAAE,OAAO,CAAC;IACxB,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,EAAE,OAAO,CAAC;CAC3B,CAAC;AA0BF,iBAAS,KAAK,CAAC,EACb,EAAE,EACF,KAAK,EACL,SAAS,EACT,UAAU,EACV,cAAc,EACd,cAAc,EACd,gBAAgB,GACjB,EAAE,UAAU,eA6FZ;;;;;;AAMD,wBAUU"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/modules/pipeline-builder/pipeline-parser/utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAEhE,aAAK,QAAQ,GAAG;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/modules/pipeline-builder/pipeline-parser/utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEzC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAEhE,aAAK,QAAQ,GAAG;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,qBAAa,mBAAoB,SAAQ,WAAW;IACd,GAAG,CAAC;IAAmB,IAAI,CAAC;gBAApD,OAAO,EAAE,MAAM,EAAS,GAAG,CAAC,sBAAU,EAAS,IAAI,CAAC,oBAAQ;CAGzE;AAED,wBAAgB,QAAQ,CAAC,GAAG,EAAE,IAAI,EAAE,aAAa,CAAC,EAAE,aAAa,UAMhE;AAMD,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,QAAQ,EAAE,CAQzD;AAED,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAC"}
|
@@ -89,7 +89,7 @@ export declare const loadStagePreview: (idx: number) => PipelineBuilderThunkActi
|
|
89
89
|
export declare const loadPreviewForStagesFrom: (from: number) => PipelineBuilderThunkAction<void>;
|
90
90
|
export declare const runStage: (idx: number) => PipelineBuilderThunkAction<Promise<void>>;
|
91
91
|
export declare const changeStageValue: (id: number, newVal: string) => PipelineBuilderThunkAction<void, ChangeStageValueAction>;
|
92
|
-
export declare const changeStageOperator: (id: number, newVal: string) => PipelineBuilderThunkAction<
|
92
|
+
export declare const changeStageOperator: (id: number, newVal: string) => PipelineBuilderThunkAction<string | undefined, ChangeStageOperatorAction>;
|
93
93
|
export declare const changeStageDisabled: (id: number, newVal: boolean) => PipelineBuilderThunkAction<void, ChangeStageDisabledAction>;
|
94
94
|
export declare const changeStageCollapsed: (id: number, newVal: boolean) => ChangeStageCollapsedAction;
|
95
95
|
export declare const addStage: (after?: number) => PipelineBuilderThunkAction<void, StageAddAction>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage-editor.d.ts","sourceRoot":"","sources":["../../../../src/modules/pipeline-builder/stage-editor.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"stage-editor.d.ts","sourceRoot":"","sources":["../../../../src/modules/pipeline-builder/stage-editor.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../src/stores/store.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAWnC,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAG5D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,KAAK,WAAW,MAAM,qBAAqB,CAAC;AACnD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAE1D,oBAAY,qBAAqB,GAAG;IAIlC,YAAY,EAAE;QACZ,YAAY,EAAE,IAAI,CAChB,WAAW,EACX,eAAe,GAAG,gBAAgB,GAAG,WAAW,GAAG,qBAAqB,CACzE,CAAC;QACF,KAAK,CAAC,EAAE,KAAK,CAAC;KACf,CAAC;IAIF,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,OAAO,CAAC;IAMV,gBAAgB,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,GAAG,MAAM,GAAG,UAAU,CAAC,CAAC;IAMhE,iBAAiB,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,GAAG,MAAM,GAAG,UAAU,CAAC,CAAC;IAIjE,UAAU,EAAE,MAAM,CAAC;IAInB,aAAa,EAAE,MAAM,CAAC;IAKtB,YAAY,EAAE,OAAO,CAAC;IAKtB,UAAU,EAAE,OAAO,CAAC;IAKpB,GAAG,EAAE,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAIhC,eAAe,EAAE,OAAO,GAAG,IAAI,CAAC;IAIhC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAM3B,YAAY,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAK1C,WAAW,EAAE,cAAc,CAAC;IAM5B,YAAY,EAAE,MAAM,CAAC;IAMrB,cAAc,EAAE,OAAO,EAAE,CAAC;IAK1B,QAAQ,EAAE,OAAO,EAAE,CAAC;IAIpB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC,CAAC;AAEH,QAAA,MAAM,cAAc,YAAa,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../../src/stores/store.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAWnC,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAChE,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAG5D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,KAAK,WAAW,MAAM,qBAAqB,CAAC;AACnD,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,+BAA+B,CAAC;AAE1D,oBAAY,qBAAqB,GAAG;IAIlC,YAAY,EAAE;QACZ,YAAY,EAAE,IAAI,CAChB,WAAW,EACX,eAAe,GAAG,gBAAgB,GAAG,WAAW,GAAG,qBAAqB,CACzE,CAAC;QACF,KAAK,CAAC,EAAE,KAAK,CAAC;KACf,CAAC;IAIF,SAAS,EAAE,MAAM,CAAC;CACnB,GAAG,OAAO,CAAC;IAMV,gBAAgB,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,GAAG,MAAM,GAAG,UAAU,CAAC,CAAC;IAMhE,iBAAiB,EAAE,IAAI,CAAC,WAAW,EAAE,IAAI,GAAG,MAAM,GAAG,UAAU,CAAC,CAAC;IAIjE,UAAU,EAAE,MAAM,CAAC;IAInB,aAAa,EAAE,MAAM,CAAC;IAKtB,YAAY,EAAE,OAAO,CAAC;IAKtB,UAAU,EAAE,OAAO,CAAC;IAKpB,GAAG,EAAE,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAIhC,eAAe,EAAE,OAAO,GAAG,IAAI,CAAC;IAIhC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAM3B,YAAY,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAC;IAK1C,WAAW,EAAE,cAAc,CAAC;IAM5B,YAAY,EAAE,MAAM,CAAC;IAMrB,cAAc,EAAE,OAAO,EAAE,CAAC;IAK1B,QAAQ,EAAE,OAAO,EAAE,CAAC;IAIpB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC,CAAC;AAEH,QAAA,MAAM,cAAc,YAAa,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwJrD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
@@ -9,7 +9,7 @@ export function getStageInfo(namespace: string, stageOperator: string | undefine
|
|
9
9
|
destination?: string;
|
10
10
|
};
|
11
11
|
export function hasSyntaxError(stage: any): boolean;
|
12
|
-
export function filterStageOperators(
|
12
|
+
export function filterStageOperators(options: Object): any[];
|
13
13
|
export function getStageHelpLink(stageOperator: any): string | null;
|
14
14
|
export function getLastStageOperator(pipeline: import('mongodb').Document[]): string;
|
15
15
|
export function isLastStageOutputStage(pipeline: import('mongodb').Document[]): boolean;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../../src/utils/stage.js"],"names":[],"mappings":"AA2BA,mDAEC;
|
1
|
+
{"version":3,"file":"stage.d.ts","sourceRoot":"","sources":["../../../src/utils/stage.js"],"names":[],"mappings":"AA2BA,mDAEC;AAkED,wCAHW,OAAO,GACL,MAAM,GAAG,SAAS,CAI9B;AAcD,4DAJW,MAAM,SACN,OAAO,SAAS,EAAE,QAAQ,GACxB,MAAM,CAoBlB;AAyDD,6CAHW,MAAM,GACJ,OAAO,CAInB;AAOD,gDAHW,MAAM,GACJ,OAAO,CAInB;AAmBD,wCALW,MAAM,iBACN,MAAM,GAAG,SAAS,GAAG,IAAI,cACzB,MAAM,GAAG,SAAS,GAAG,IAAI,GACvB;IAAE,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,CA2BzE;AA+CD,oDAEC;AA9OM,8CARI,MAAM,SA6ChB;AAkHM,oEAKN;AAuCM,+CAHI,OAAO,SAAS,EAAE,QAAQ,EAAE,GAC1B,MAAM,CAKlB;AAMM,iDAHI,OAAO,SAAS,EAAE,QAAQ,EAAE,GAC1B,OAAO,CAInB;AAOM,gDAJI,MAAM,GAAG,IAAI,GAAG,SAAS,YACzB,MAAM,GAAG,IAAI,GAAG,SAAS,eACzB,OAAO,SAAS,EAAE,gBAAgB,GAAG,IAAI,GAAG,SAAS,WAe/D;AAMM,6CAFI,MAAM,EAAE,sBAIlB"}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mongodb-js/compass-aggregations",
|
3
3
|
"productName": "Aggregations plugin",
|
4
|
-
"version": "0.0.0-next-
|
4
|
+
"version": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
5
5
|
"apiVersion": "3.0.0",
|
6
6
|
"description": "Compass Aggregation Pipeline Builder",
|
7
7
|
"main": "dist/index.js",
|
@@ -60,11 +60,11 @@
|
|
60
60
|
"@dnd-kit/sortable": "^7.0.2",
|
61
61
|
"@dnd-kit/utilities": "^3.2.1",
|
62
62
|
"@electron/remote": "^2.0.9",
|
63
|
-
"@mongodb-js/eslint-config-compass": "0.0.0-next-
|
64
|
-
"@mongodb-js/mocha-config-compass": "0.0.0-next-
|
65
|
-
"@mongodb-js/prettier-config-compass": "0.0.0-next-
|
66
|
-
"@mongodb-js/tsconfig-compass": "0.0.0-next-
|
67
|
-
"@mongodb-js/webpack-config-compass": "0.0.0-next-
|
63
|
+
"@mongodb-js/eslint-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
64
|
+
"@mongodb-js/mocha-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
65
|
+
"@mongodb-js/prettier-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
66
|
+
"@mongodb-js/tsconfig-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
67
|
+
"@mongodb-js/webpack-config-compass": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
68
68
|
"@testing-library/react": "^12.1.4",
|
69
69
|
"@testing-library/user-event": "^13.5.0",
|
70
70
|
"@types/lodash": "^4.14.188",
|
@@ -76,11 +76,11 @@
|
|
76
76
|
"electron": "^22.0.2",
|
77
77
|
"enzyme": "^3.11.0",
|
78
78
|
"eslint": "^7.25.0",
|
79
|
-
"hadron-app-registry": "0.0.0-next-
|
79
|
+
"hadron-app-registry": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
80
80
|
"lodash": "^4.17.21",
|
81
81
|
"mocha": "^10.2.0",
|
82
82
|
"mongodb": "^5.1.0",
|
83
|
-
"mongodb-data-service": "0.0.0-next-
|
83
|
+
"mongodb-data-service": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
84
84
|
"mongodb-ns": "^2.4.0",
|
85
85
|
"mongodb-query-parser": "^2.4.8",
|
86
86
|
"nyc": "^15.1.0",
|
@@ -99,17 +99,17 @@
|
|
99
99
|
"xvfb-maybe": "^0.2.1"
|
100
100
|
},
|
101
101
|
"dependencies": {
|
102
|
-
"@mongodb-js/compass-components": "0.0.0-next-
|
103
|
-
"@mongodb-js/compass-crud": "0.0.0-next-
|
104
|
-
"@mongodb-js/compass-editor": "0.0.0-next-
|
105
|
-
"@mongodb-js/compass-logging": "0.0.0-next-
|
106
|
-
"@mongodb-js/compass-utils": "0.0.0-next-
|
107
|
-
"@mongodb-js/explain-plan-helper": "0.0.0-next-
|
102
|
+
"@mongodb-js/compass-components": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
103
|
+
"@mongodb-js/compass-crud": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
104
|
+
"@mongodb-js/compass-editor": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
105
|
+
"@mongodb-js/compass-logging": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
106
|
+
"@mongodb-js/compass-utils": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
107
|
+
"@mongodb-js/explain-plan-helper": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
108
108
|
"@mongodb-js/mongodb-constants": "^0.2.1",
|
109
|
-
"@mongodb-js/mongodb-redux-common": "0.0.0-next-
|
109
|
+
"@mongodb-js/mongodb-redux-common": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
110
110
|
"bson": "^5.0.1",
|
111
|
-
"compass-preferences-model": "0.0.0-next-
|
112
|
-
"hadron-document": "0.0.0-next-
|
111
|
+
"compass-preferences-model": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321",
|
112
|
+
"hadron-document": "0.0.0-next-c3291a871fc2c07d3e2038cc1ad275c102e1d321"
|
113
113
|
},
|
114
114
|
"homepage": "https://github.com/mongodb-js/compass",
|
115
115
|
"bugs": {
|
@@ -120,5 +120,5 @@
|
|
120
120
|
"type": "git",
|
121
121
|
"url": "https://github.com/mongodb-js/compass.git"
|
122
122
|
},
|
123
|
-
"gitHead": "
|
123
|
+
"gitHead": "c3291a871fc2c07d3e2038cc1ad275c102e1d321"
|
124
124
|
}
|