@mongosh/autocomplete 2.2.5 → 2.2.6
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/lib/index.d.ts +4 -4
- package/package.json +6 -6
package/lib/index.d.ts
CHANGED
|
@@ -1113,8 +1113,8 @@ export declare const BASE_COMPLETIONS: ({
|
|
|
1113
1113
|
readonly version: "4.0.0";
|
|
1114
1114
|
readonly apiVersions: readonly [1];
|
|
1115
1115
|
readonly namespaces: readonly ["db", "coll", "view", "timeseries"];
|
|
1116
|
-
readonly description: "Writes the result of a pipeline to an Atlas cluster or
|
|
1117
|
-
readonly comment: "/**\n * Use any one of the following:\n * s3: Parameters to save the data to S3.\n * atlas: Parameters to save the data to Atlas. Example:\n * {\n * atlas: {\n * db: 'string',\n * coll: 'string',\n * projectId: 'string',\n * clusterName: 'string'\n * }\n * }\n */\n";
|
|
1116
|
+
readonly description: "Writes the result of a pipeline to an Atlas cluster, S3 bucket, or Azure Blob Storage.";
|
|
1117
|
+
readonly comment: "/**\n * Use any one of the following:\n * s3: Parameters to save the data to S3.\n * atlas: Parameters to save the data to Atlas. Example:\n * {\n * atlas: {\n * db: 'string',\n * coll: 'string',\n * projectId: 'string',\n * clusterName: 'string'\n * }\n * },\n * azure: Parameters to save the data to Azure. Example:\n * {\n * azure: {\n * serviceURL: 'string',\n * containerName: 'string',\n * region: 'string,\n * filename: 'string',\n * format: {\n * name: 'string',\n * maxFileSize: 'string',\n * maxRowGroupSize: 'string',\n * columnCompression: 'string'\n * },\n * errorMode: 'string'\n * }\n * }\n */\n";
|
|
1118
1118
|
readonly snippet: "{\n s3: {\n bucket: '${1:string}',\n region: '${2:string}',\n filename: '${3:string}',\n format: {\n name: '${4:string}',\n maxFileSize: '${5:bytes}',\n maxRowGroupSize: '${6:string}',\n columnCompression: '${7:string}'\n },\n errorMode: '${8:string}'\n }\n}";
|
|
1119
1119
|
} | {
|
|
1120
1120
|
readonly name: "$project";
|
|
@@ -3015,8 +3015,8 @@ export declare const MATCH_COMPLETIONS: ({
|
|
|
3015
3015
|
readonly version: "4.0.0";
|
|
3016
3016
|
readonly apiVersions: readonly [1];
|
|
3017
3017
|
readonly namespaces: readonly ["db", "coll", "view", "timeseries"];
|
|
3018
|
-
readonly description: "Writes the result of a pipeline to an Atlas cluster or
|
|
3019
|
-
readonly comment: "/**\n * Use any one of the following:\n * s3: Parameters to save the data to S3.\n * atlas: Parameters to save the data to Atlas. Example:\n * {\n * atlas: {\n * db: 'string',\n * coll: 'string',\n * projectId: 'string',\n * clusterName: 'string'\n * }\n * }\n */\n";
|
|
3018
|
+
readonly description: "Writes the result of a pipeline to an Atlas cluster, S3 bucket, or Azure Blob Storage.";
|
|
3019
|
+
readonly comment: "/**\n * Use any one of the following:\n * s3: Parameters to save the data to S3.\n * atlas: Parameters to save the data to Atlas. Example:\n * {\n * atlas: {\n * db: 'string',\n * coll: 'string',\n * projectId: 'string',\n * clusterName: 'string'\n * }\n * },\n * azure: Parameters to save the data to Azure. Example:\n * {\n * azure: {\n * serviceURL: 'string',\n * containerName: 'string',\n * region: 'string,\n * filename: 'string',\n * format: {\n * name: 'string',\n * maxFileSize: 'string',\n * maxRowGroupSize: 'string',\n * columnCompression: 'string'\n * },\n * errorMode: 'string'\n * }\n * }\n */\n";
|
|
3020
3020
|
readonly snippet: "{\n s3: {\n bucket: '${1:string}',\n region: '${2:string}',\n filename: '${3:string}',\n format: {\n name: '${4:string}',\n maxFileSize: '${5:bytes}',\n maxRowGroupSize: '${6:string}',\n columnCompression: '${7:string}'\n },\n errorMode: '${8:string}'\n }\n}";
|
|
3021
3021
|
} | {
|
|
3022
3022
|
readonly name: "$project";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mongosh/autocomplete",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.6",
|
|
4
4
|
"description": "MongoDB Shell Autocomplete Package",
|
|
5
5
|
"homepage": "https://github.com/mongodb-js/mongosh",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"unitTestsOnly": true
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@mongodb-js/eslint-config-mongosh": "2.2.
|
|
37
|
+
"@mongodb-js/eslint-config-mongosh": "2.2.6",
|
|
38
38
|
"@mongodb-js/prettier-config-devtools": "^1.0.1",
|
|
39
|
-
"@mongodb-js/tsconfig-mongosh": "2.2.
|
|
39
|
+
"@mongodb-js/tsconfig-mongosh": "2.2.6",
|
|
40
40
|
"depcheck": "^1.4.3",
|
|
41
41
|
"eslint": "^7.25.0",
|
|
42
42
|
"mocha": "^10.2.0",
|
|
43
43
|
"prettier": "^2.8.8"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@mongodb-js/mongodb-constants": "^0.
|
|
47
|
-
"@mongosh/shell-api": "2.2.
|
|
46
|
+
"@mongodb-js/mongodb-constants": "^0.10.1",
|
|
47
|
+
"@mongosh/shell-api": "2.2.6",
|
|
48
48
|
"semver": "^7.5.4"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "6d11de2ccf5cdb827d7c170d0e7d1778aa98a0bc"
|
|
51
51
|
}
|