@mongodb-js/compass-aggregations 0.0.0-next-f9347a106881d77aa4b1f7f37daed25d73c5f92c → 0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a
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/pipeline-builder-workspace/pipeline-as-text-workspace/pipeline-editor.d.ts +2 -1
- package/dist/src/components/pipeline-builder-workspace/pipeline-as-text-workspace/pipeline-editor.d.ts.map +1 -1
- package/package.json +28 -28
@@ -3,6 +3,7 @@ import type { CompletionWithServerInfo } from '@mongodb-js/compass-editor';
|
|
3
3
|
import type { MongoServerError } from 'mongodb';
|
4
4
|
import type { PipelineParserError } from '../../../modules/pipeline-builder/pipeline-parser/utils';
|
5
5
|
declare type PipelineEditorProps = {
|
6
|
+
num_stages: number;
|
6
7
|
pipelineText: string;
|
7
8
|
syntaxErrors: PipelineParserError[];
|
8
9
|
serverError: MongoServerError | null;
|
@@ -11,6 +12,6 @@ declare type PipelineEditorProps = {
|
|
11
12
|
onChangePipelineText: (value: string) => void;
|
12
13
|
};
|
13
14
|
export declare const PipelineEditor: React.FunctionComponent<PipelineEditorProps>;
|
14
|
-
declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<PipelineEditorProps>, Omit<PipelineEditorProps, "fields" | "pipelineText" | "serverVersion" | "syntaxErrors" | "serverError" | "onChangePipelineText"> & import("react-redux").ConnectProps>;
|
15
|
+
declare const _default: import("react-redux").ConnectedComponent<React.FunctionComponent<PipelineEditorProps>, Omit<PipelineEditorProps, "fields" | "pipelineText" | "serverVersion" | "syntaxErrors" | "num_stages" | "serverError" | "onChangePipelineText"> & import("react-redux").ConnectProps>;
|
15
16
|
export default _default;
|
16
17
|
//# sourceMappingURL=pipeline-editor.d.ts.map
|
@@ -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,KAAyC,MAAM,OAAO,CAAC;AAS9D,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAS3E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;
|
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,KAAyC,MAAM,OAAO,CAAC;AAS9D,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAS3E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAEhD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yDAAyD,CAAC;AA4BnG,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;AAoBF,eAAO,MAAM,cAAc,EAAE,KAAK,CAAC,iBAAiB,CAAC,mBAAmB,CAoFvE,CAAC;;AA6BF,wBAA8D"}
|
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-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
5
5
|
"apiVersion": "3.0.0",
|
6
6
|
"description": "Compass Aggregation Pipeline Builder",
|
7
7
|
"main": "dist/index.js",
|
@@ -37,19 +37,19 @@
|
|
37
37
|
},
|
38
38
|
"license": "SSPL",
|
39
39
|
"peerDependencies": {
|
40
|
-
"@mongodb-js/compass-components": "^1.
|
41
|
-
"@mongodb-js/compass-crud": "^13.
|
42
|
-
"@mongodb-js/compass-editor": "^0.
|
40
|
+
"@mongodb-js/compass-components": "^1.4.0",
|
41
|
+
"@mongodb-js/compass-crud": "^13.4.0",
|
42
|
+
"@mongodb-js/compass-editor": "^0.3.0",
|
43
43
|
"@mongodb-js/compass-logging": "^1.1.1",
|
44
|
-
"@mongodb-js/compass-utils": "^0.1.
|
44
|
+
"@mongodb-js/compass-utils": "^0.1.2",
|
45
45
|
"@mongodb-js/explain-plan-helper": "^1.0.1",
|
46
46
|
"@mongodb-js/mongodb-constants": "^0.1.4",
|
47
|
-
"@mongodb-js/mongodb-redux-common": "^2.0.
|
47
|
+
"@mongodb-js/mongodb-redux-common": "^2.0.3",
|
48
48
|
"bson": "^4.4.1",
|
49
|
-
"compass-preferences-model": "^2.
|
50
|
-
"hadron-document": "^8.0.
|
49
|
+
"compass-preferences-model": "^2.4.0",
|
50
|
+
"hadron-document": "^8.0.2",
|
51
51
|
"hadron-react-buttons": "^6.0.2",
|
52
|
-
"hadron-react-components": "^6.
|
52
|
+
"hadron-react-components": "^6.4.0",
|
53
53
|
"react": "^16.14.0"
|
54
54
|
},
|
55
55
|
"devDependencies": {
|
@@ -57,11 +57,11 @@
|
|
57
57
|
"@babel/parser": "^7.19.4",
|
58
58
|
"@babel/types": "^7.19.4",
|
59
59
|
"@electron/remote": "^2.0.8",
|
60
|
-
"@mongodb-js/eslint-config-compass": "0.0.0-next-
|
61
|
-
"@mongodb-js/mocha-config-compass": "0.0.0-next-
|
62
|
-
"@mongodb-js/prettier-config-compass": "0.0.0-next-
|
63
|
-
"@mongodb-js/tsconfig-compass": "0.0.0-next-
|
64
|
-
"@mongodb-js/webpack-config-compass": "0.0.0-next-
|
60
|
+
"@mongodb-js/eslint-config-compass": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
61
|
+
"@mongodb-js/mocha-config-compass": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
62
|
+
"@mongodb-js/prettier-config-compass": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
63
|
+
"@mongodb-js/tsconfig-compass": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
64
|
+
"@mongodb-js/webpack-config-compass": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
65
65
|
"@testing-library/react": "^12.1.4",
|
66
66
|
"@testing-library/user-event": "^13.5.0",
|
67
67
|
"@types/lodash": "^4.14.188",
|
@@ -75,12 +75,12 @@
|
|
75
75
|
"electron": "^15.5.7",
|
76
76
|
"enzyme": "^3.11.0",
|
77
77
|
"eslint": "^7.25.0",
|
78
|
-
"hadron-app-registry": "0.0.0-next-
|
78
|
+
"hadron-app-registry": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
79
79
|
"is-electron-renderer": "^2.0.1",
|
80
80
|
"lodash": "^4.17.21",
|
81
81
|
"mocha": "^8.4.0",
|
82
82
|
"mongodb": "^4.10.0",
|
83
|
-
"mongodb-data-service": "0.0.0-next-
|
83
|
+
"mongodb-data-service": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
84
84
|
"mongodb-ns": "^2.4.0",
|
85
85
|
"mongodb-query-parser": "^2.4.6",
|
86
86
|
"nyc": "^15.1.0",
|
@@ -97,19 +97,19 @@
|
|
97
97
|
"xvfb-maybe": "^0.2.1"
|
98
98
|
},
|
99
99
|
"dependencies": {
|
100
|
-
"@mongodb-js/compass-components": "0.0.0-next-
|
101
|
-
"@mongodb-js/compass-crud": "0.0.0-next-
|
102
|
-
"@mongodb-js/compass-editor": "0.0.0-next-
|
103
|
-
"@mongodb-js/compass-logging": "0.0.0-next-
|
104
|
-
"@mongodb-js/compass-utils": "0.0.0-next-
|
105
|
-
"@mongodb-js/explain-plan-helper": "0.0.0-next-
|
100
|
+
"@mongodb-js/compass-components": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
101
|
+
"@mongodb-js/compass-crud": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
102
|
+
"@mongodb-js/compass-editor": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
103
|
+
"@mongodb-js/compass-logging": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
104
|
+
"@mongodb-js/compass-utils": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
105
|
+
"@mongodb-js/explain-plan-helper": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
106
106
|
"@mongodb-js/mongodb-constants": "^0.1.4",
|
107
|
-
"@mongodb-js/mongodb-redux-common": "0.0.0-next-
|
107
|
+
"@mongodb-js/mongodb-redux-common": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
108
108
|
"bson": "^4.4.1",
|
109
|
-
"compass-preferences-model": "0.0.0-next-
|
110
|
-
"hadron-document": "0.0.0-next-
|
111
|
-
"hadron-react-buttons": "0.0.0-next-
|
112
|
-
"hadron-react-components": "0.0.0-next-
|
109
|
+
"compass-preferences-model": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
110
|
+
"hadron-document": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
111
|
+
"hadron-react-buttons": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
112
|
+
"hadron-react-components": "0.0.0-next-9ee9b0963df24390835a677f1a9081d9bc53ca2a",
|
113
113
|
"react": "^16.14.0"
|
114
114
|
},
|
115
115
|
"homepage": "https://github.com/mongodb-js/compass",
|
@@ -121,5 +121,5 @@
|
|
121
121
|
"type": "git",
|
122
122
|
"url": "https://github.com/mongodb-js/compass.git"
|
123
123
|
},
|
124
|
-
"gitHead": "
|
124
|
+
"gitHead": "9ee9b0963df24390835a677f1a9081d9bc53ca2a"
|
125
125
|
}
|