@itentialopensource/adapter-db_mssql 1.0.3 → 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/CHANGELOG.md CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## 1.0.5 [08-25-2024]
3
+
4
+ * update dependencies and metadata
5
+
6
+ See merge request itentialopensource/adapters/adapter-db_mssql!14
7
+
8
+ ---
9
+
10
+ ## 1.0.4 [08-14-2024]
11
+
12
+ * Changes made at 2024.08.14_19:17PM
13
+
14
+ See merge request itentialopensource/adapters/adapter-db_mssql!13
15
+
16
+ ---
17
+
2
18
  ## 1.0.3 [08-07-2024]
3
19
 
4
20
  * Changes made at 2024.08.07_10:51AM
package/TAB2.md CHANGED
@@ -48,8 +48,8 @@ Sample Properties can be used to help you configure the adapter in the Itential
48
48
  "authentication": {
49
49
  "dbAuth": false,
50
50
  "domain": "",
51
- "username": "sa",
52
- "password": "Password"
51
+ "username": "username",
52
+ "password": "password"
53
53
  },
54
54
  "ssl": {
55
55
  "enabled": false,
package/metadata.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "adapter-db_mssql",
3
3
  "webName": "Adapter for Integration to Microsoft SQL Database",
4
+ "supportLevel": "community",
4
5
  "vendor": "Microsoft",
5
6
  "product": "MSSQL",
7
+ "techAlliance": false,
6
8
  "osVersion": [],
7
9
  "apiVersions": [],
8
10
  "iapVersions": [
@@ -38,7 +40,7 @@
38
40
  "storeLink": "",
39
41
  "npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-db_mssql",
40
42
  "repoLink": "https://gitlab.com/itentialopensource/adapters/adapter-db_mssql",
41
- "docLink": "",
43
+ "docLink": "https://gitlab.com/itentialopensource/adapters/adapter-db_mssql/-/blob/master/README.md?ref_type=heads",
42
44
  "demoLinks": [],
43
45
  "trainingLinks": [
44
46
  {
@@ -58,7 +60,9 @@
58
60
  "link": "https://www.npmjs.com/package/mssql",
59
61
  "public": true
60
62
  }
61
- ]
63
+ ],
64
+ "workshopLinks": [],
65
+ "workshopHomePage": "https://www.itential.com/get-started/"
62
66
  },
63
67
  "assets": [],
64
68
  "relatedItems": {
@@ -68,6 +72,5 @@
68
72
  "workflowProjects": [],
69
73
  "transformationProjects": [],
70
74
  "exampleProjects": []
71
- },
72
- "supportLevel": "community"
75
+ }
73
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-db_mssql",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Itential adapter to connect to mssql",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
Binary file
@@ -9,8 +9,8 @@
9
9
  "authentication": {
10
10
  "dbAuth": false,
11
11
  "domain": "",
12
- "username": "sa",
13
- "password": "Password"
12
+ "username": "username",
13
+ "password": "password"
14
14
  },
15
15
  "ssl": {
16
16
  "enabled": false,
@@ -25,7 +25,7 @@ const attemptTimeout = 10000;
25
25
  // always check these in with bogus data!!!
26
26
  const host = 'localhost';
27
27
  const username = 'your username';
28
- const password = 'your password';
28
+ const usepass = 'your password';
29
29
  const port = 1433;
30
30
  const sslenable = false;
31
31
  const sslinvalid = false;
@@ -46,7 +46,7 @@ global.pronghornProps = {
46
46
  port,
47
47
  authentication: {
48
48
  username,
49
- password
49
+ password: usepass
50
50
  },
51
51
  ssl: {
52
52
  enabled: sslenable,