@openfn/language-maximo 0.3.3 → 0.3.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.
@@ -1,41 +1,31 @@
1
1
  {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "properties": {
4
- "baseUrl": {
5
- "title": "Base URL",
6
- "type": "string",
7
- "description": "Maximo instance base URL",
8
- "format": "uri",
9
- "minLength": 1,
10
- "examples": [
11
- "https://maximo-demo76.mro.com"
12
- ]
13
- },
14
- "username": {
15
- "title": "Username",
16
- "type": "string",
17
- "description": "Maximo instance username",
18
- "minLength": 1,
19
- "examples": [
20
- "test@openfn.org"
21
- ]
22
- },
23
- "password": {
24
- "title": "Password",
25
- "type": "string",
26
- "description": "Maximo instance password",
27
- "writeOnly": true,
28
- "minLength": 1,
29
- "examples": [
30
- "@some(!)passowrd"
31
- ]
32
- }
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "properties": {
4
+ "baseUrl": {
5
+ "title": "Base URL",
6
+ "type": "string",
7
+ "description": "Maximo instance base URL",
8
+ "format": "uri",
9
+ "minLength": 1,
10
+ "examples": ["https://maximo-demo76.mro.com"]
33
11
  },
34
- "type": "object",
35
- "additionalProperties": true,
36
- "required": [
37
- "server",
38
- "username",
39
- "password"
40
- ]
12
+ "username": {
13
+ "title": "Username",
14
+ "type": "string",
15
+ "description": "Maximo instance username",
16
+ "minLength": 1,
17
+ "examples": ["test@openfn.org"]
18
+ },
19
+ "password": {
20
+ "title": "Password",
21
+ "type": "string",
22
+ "description": "Maximo instance password",
23
+ "writeOnly": true,
24
+ "minLength": 1,
25
+ "examples": ["@some(!)passowrd"]
26
+ }
27
+ },
28
+ "type": "object",
29
+ "additionalProperties": true,
30
+ "required": ["baseUrl", "username", "password"]
41
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfn/language-maximo",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "An IBM Maximo EAM Language Pack for OpenFn",
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.7.5",
15
+ "@openfn/language-common": "^1.7.6",
16
16
  "base-64": "^0.1.0",
17
17
  "request": "^2.88.2",
18
18
  "utf8": "^2.1.2"
@@ -6,7 +6,7 @@
6
6
  * create('foo'),
7
7
  * delete('bar')
8
8
  * )(state)
9
- * @function
9
+ * @private
10
10
  * @param {Operations} operations - Operations to be performed.
11
11
  * @returns {Operation}
12
12
  */