@openfn/language-mongodb 1.0.5 → 1.1.1
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/README.md +6 -9
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -4,15 +4,12 @@ Language Pack for building expressions and operations for use with MongoDB.
|
|
|
4
4
|
|
|
5
5
|
## Documentation
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"clusterUrl": "yourCluster-xxxyzzz.mongodb.net"
|
|
14
|
-
}
|
|
15
|
-
```
|
|
7
|
+
### Configuration
|
|
8
|
+
|
|
9
|
+
View all the required and optional properties for `state.configuration` in the
|
|
10
|
+
official
|
|
11
|
+
[configuration-schema](https://docs.openfn.org/adaptors/packages/mongodb-configuration-schema/)
|
|
12
|
+
definition.
|
|
16
13
|
|
|
17
14
|
### insertDocuments
|
|
18
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfn/language-mongodb",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A language package for working with MongoDb",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"author": "Open Function Group",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"configuration-schema.json"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@openfn/language-common": "^1.
|
|
15
|
+
"@openfn/language-common": "^1.8.1",
|
|
16
16
|
"mongodb": "^3.7.3"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"test": "mocha --experimental-specifier-resolution=node --no-warnings",
|
|
45
45
|
"test:watch": "mocha -w --experimental-specifier-resolution=node --no-warnings",
|
|
46
46
|
"clean": "rimraf dist types docs",
|
|
47
|
-
"pack": "pnpm pack --pack-destination ../../dist"
|
|
47
|
+
"pack": "pnpm pack --pack-destination ../../dist",
|
|
48
|
+
"lint": "eslint src"
|
|
48
49
|
}
|
|
49
50
|
}
|