@openfn/language-mysql 1.3.1 → 1.3.2
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/configuration-schema.json +20 -5
- package/package.json +1 -1
|
@@ -6,33 +6,48 @@
|
|
|
6
6
|
"type": "string",
|
|
7
7
|
"description": "The database instance host URL",
|
|
8
8
|
"format": "uri",
|
|
9
|
-
"minLength": 1
|
|
9
|
+
"minLength": 1,
|
|
10
|
+
"examples": [
|
|
11
|
+
"some-host-url.compute-1.amazonaws.com"
|
|
12
|
+
]
|
|
10
13
|
},
|
|
11
14
|
"port": {
|
|
12
15
|
"title": "Port",
|
|
13
16
|
"type": "integer",
|
|
14
17
|
"default": 3306,
|
|
15
18
|
"description": "Database instance port",
|
|
16
|
-
"minLength": 1
|
|
19
|
+
"minLength": 1,
|
|
20
|
+
"examples": [
|
|
21
|
+
3306
|
|
22
|
+
]
|
|
17
23
|
},
|
|
18
24
|
"database": {
|
|
19
25
|
"title": "Database",
|
|
20
26
|
"type": "string",
|
|
21
27
|
"description": "The database name",
|
|
22
|
-
"minLength": 1
|
|
28
|
+
"minLength": 1,
|
|
29
|
+
"examples": [
|
|
30
|
+
"demo-db"
|
|
31
|
+
]
|
|
23
32
|
},
|
|
24
33
|
"user": {
|
|
25
34
|
"title": "Username",
|
|
26
35
|
"type": "string",
|
|
27
36
|
"description": "The username to log in the database",
|
|
28
|
-
"minLength": 1
|
|
37
|
+
"minLength": 1,
|
|
38
|
+
"examples": [
|
|
39
|
+
"admin-demo"
|
|
40
|
+
]
|
|
29
41
|
},
|
|
30
42
|
"password": {
|
|
31
43
|
"title": "Password",
|
|
32
44
|
"type": "string",
|
|
33
45
|
"description": "The password to log in the database",
|
|
34
46
|
"writeOnly": true,
|
|
35
|
-
"minLength": 1
|
|
47
|
+
"minLength": 1,
|
|
48
|
+
"examples": [
|
|
49
|
+
"@super(!)Secretpass"
|
|
50
|
+
]
|
|
36
51
|
}
|
|
37
52
|
},
|
|
38
53
|
"type": "object",
|