@openfn/language-mssql 7.0.3 → 7.0.4
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 +14 -33
- package/package.json +1 -1
|
@@ -6,28 +6,21 @@
|
|
|
6
6
|
"description": "The database instance server URL or IP address",
|
|
7
7
|
"type": "string",
|
|
8
8
|
"minLength": 1,
|
|
9
|
-
"examples": [
|
|
10
|
-
"something.database.windows.net",
|
|
11
|
-
"192.168.12.10"
|
|
12
|
-
]
|
|
9
|
+
"examples": ["something.database.windows.net", "192.168.12.10"]
|
|
13
10
|
},
|
|
14
11
|
"database": {
|
|
15
12
|
"title": "Database",
|
|
16
13
|
"type": "string",
|
|
17
14
|
"description": "The database name",
|
|
18
15
|
"minLength": 1,
|
|
19
|
-
"examples": [
|
|
20
|
-
"demo-db"
|
|
21
|
-
]
|
|
16
|
+
"examples": ["demo-db"]
|
|
22
17
|
},
|
|
23
18
|
"userName": {
|
|
24
19
|
"title": "Username",
|
|
25
20
|
"type": "string",
|
|
26
21
|
"description": "Username",
|
|
27
22
|
"minLength": 1,
|
|
28
|
-
"examples": [
|
|
29
|
-
"admin"
|
|
30
|
-
]
|
|
23
|
+
"examples": ["admin"]
|
|
31
24
|
},
|
|
32
25
|
"password": {
|
|
33
26
|
"title": "Password",
|
|
@@ -35,50 +28,38 @@
|
|
|
35
28
|
"description": "Password",
|
|
36
29
|
"writeOnly": true,
|
|
37
30
|
"minLength": 1,
|
|
38
|
-
"examples": [
|
|
39
|
-
"@super(!)Password"
|
|
40
|
-
]
|
|
31
|
+
"examples": ["@super(!)Password"]
|
|
41
32
|
},
|
|
42
33
|
"port": {
|
|
43
34
|
"title": "Port",
|
|
44
35
|
"description": "Database instance port",
|
|
45
36
|
"type": "integer",
|
|
46
37
|
"default": 1433,
|
|
47
|
-
"examples": [
|
|
48
|
-
1432
|
|
49
|
-
]
|
|
38
|
+
"examples": [1432]
|
|
50
39
|
},
|
|
51
40
|
"encrypt": {
|
|
52
41
|
"type": "boolean",
|
|
42
|
+
"title": "Encrypt",
|
|
43
|
+
"description": "Encrypt connection to database",
|
|
53
44
|
"default": true,
|
|
54
|
-
"examples": [
|
|
55
|
-
false
|
|
56
|
-
]
|
|
45
|
+
"examples": [false]
|
|
57
46
|
},
|
|
58
47
|
"trustServerCertificate": {
|
|
59
48
|
"type": "boolean",
|
|
49
|
+
"title": "Trust Server Certificate",
|
|
60
50
|
"default": false,
|
|
61
|
-
|
|
62
|
-
"examples": [
|
|
63
|
-
true
|
|
64
|
-
]
|
|
51
|
+
"description": "Trust self-signed certificates (not recommended for production)",
|
|
52
|
+
"examples": [true]
|
|
65
53
|
},
|
|
66
54
|
"requestTimeout": {
|
|
67
55
|
"title": "Request Timeout",
|
|
68
56
|
"description": "Number of milliseconds before a request times out. Default is 600000 (10 minutes). Set to 0 for no timeout.",
|
|
69
57
|
"type": "integer",
|
|
70
58
|
"default": 600000,
|
|
71
|
-
"examples": [
|
|
72
|
-
300000
|
|
73
|
-
]
|
|
59
|
+
"examples": [300000]
|
|
74
60
|
}
|
|
75
61
|
},
|
|
76
62
|
"type": "object",
|
|
77
63
|
"additionalProperties": true,
|
|
78
|
-
"required": [
|
|
79
|
-
|
|
80
|
-
"database",
|
|
81
|
-
"userName",
|
|
82
|
-
"password"
|
|
83
|
-
]
|
|
84
|
-
}
|
|
64
|
+
"required": ["server", "database", "userName", "password"]
|
|
65
|
+
}
|