@openfn/language-mongodb 1.0.4 → 1.0.5

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 CHANGED
@@ -42,8 +42,6 @@ findDocuments({
42
42
  });
43
43
  ```
44
44
 
45
- [Docs](docs/index)
46
-
47
45
  ## Development
48
46
 
49
47
  Clone the [adaptors monorepo](https://github.com/OpenFn/adaptors). Follow the
@@ -6,20 +6,29 @@
6
6
  "type": "string",
7
7
  "description": "Your MongoDB cluster / host URL",
8
8
  "format": "uri",
9
- "minLength": 1
9
+ "minLength": 1,
10
+ "examples": [
11
+ "yourCluster-xxxyzzz.mongodb.net"
12
+ ]
10
13
  },
11
14
  "username": {
12
15
  "title": "Username",
13
16
  "type": "string",
14
17
  "description": "Your MongoDB instance username",
15
- "minLength": 1
18
+ "minLength": 1,
19
+ "examples": [
20
+ "admin"
21
+ ]
16
22
  },
17
23
  "password": {
18
24
  "title": "Password",
19
25
  "type": "string",
20
26
  "description": "Your MongoDB instance password",
21
27
  "writeOnly": true,
22
- "minLength": 1
28
+ "minLength": 1,
29
+ "examples": [
30
+ "@secret(!)Pass"
31
+ ]
23
32
  }
24
33
  },
25
34
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfn/language-mongodb",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A language package for working with MongoDb",
5
5
  "main": "dist/index.cjs",
6
6
  "author": "Open Function Group",