@openfn/language-maximo 0.3.1 → 0.3.3

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
@@ -4,17 +4,14 @@ Language Pack for building expressions and operations to access IBM Maximo EAM.
4
4
 
5
5
  ## Documentation
6
6
 
7
- ## Fetch
7
+ ### Configuration
8
8
 
9
- #### sample configuration
9
+ View all the required and optional properties for `state.configuration` in the
10
+ official
11
+ [configuration-schema](https://docs.openfn.org/adaptors/packages/maximo-configuration-schema/)
12
+ definition.
10
13
 
11
- ```json
12
- {
13
- "username": "taylor",
14
- "password": "supersecret",
15
- "baseUrl": "https://maximo-demo76.mro.com"
16
- }
17
- ```
14
+ ### Fetch
18
15
 
19
16
  #### sample 'fetch' expression
20
17
 
@@ -6,20 +6,29 @@
6
6
  "type": "string",
7
7
  "description": "Maximo instance base URL",
8
8
  "format": "uri",
9
- "minLength": 1
9
+ "minLength": 1,
10
+ "examples": [
11
+ "https://maximo-demo76.mro.com"
12
+ ]
10
13
  },
11
14
  "username": {
12
15
  "title": "Username",
13
16
  "type": "string",
14
17
  "description": "Maximo instance username",
15
- "minLength": 1
18
+ "minLength": 1,
19
+ "examples": [
20
+ "test@openfn.org"
21
+ ]
16
22
  },
17
23
  "password": {
18
24
  "title": "Password",
19
25
  "type": "string",
20
26
  "description": "Maximo instance password",
21
27
  "writeOnly": true,
22
- "minLength": 1
28
+ "minLength": 1,
29
+ "examples": [
30
+ "@some(!)passowrd"
31
+ ]
23
32
  }
24
33
  },
25
34
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfn/language-maximo",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "An IBM Maximo EAM Language Pack for OpenFn",
5
5
  "main": "dist/index.cjs",
6
6
  "author": "Open Function Group",