@itentialopensource/adapter-snowflake_sql 0.1.1 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 0.1.2 [04-11-2023]
3
+
4
+ * Update adapter-utils version and baseunit test
5
+
6
+ See merge request itentialopensource/adapters/persistence/adapter-snowflake_sql!1
7
+
8
+ ---
9
+
2
10
  ## 0.1.1 [04-04-2023]
3
11
 
4
12
  * Bug fixes and performance improvements
@@ -6,4 +14,3 @@
6
14
  See commit 79976f3
7
15
 
8
16
  ---
9
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-snowflake_sql",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "This adapter integrates with system described as: snowflakeSqlApi.",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.15",
@@ -54,7 +54,7 @@
54
54
  "author": "Itential",
55
55
  "homepage": "https://gitlab.com/itentialopensource/adapters/persistence/adapter-snowflake_sql#readme",
56
56
  "dependencies": {
57
- "@itentialopensource/adapter-utils": "^4.48.11",
57
+ "@itentialopensource/adapter-utils": "^4.48.13",
58
58
  "ajv": "^6.12.0",
59
59
  "axios": "^0.21.0",
60
60
  "commander": "^2.20.0",
Binary file
@@ -1,10 +1,10 @@
1
1
  {
2
- "version": "0.1.0",
2
+ "version": "0.1.1",
3
3
  "configLines": 2368,
4
4
  "scriptLines": 1795,
5
5
  "codeLines": 2937,
6
- "testLines": 2981,
6
+ "testLines": 2982,
7
7
  "testCases": 127,
8
- "totalCodeLines": 7713,
8
+ "totalCodeLines": 7714,
9
9
  "wfTasks": 20
10
10
  }
@@ -831,9 +831,10 @@ describe('[unit] Adapter Base Test', () => {
831
831
  assert.equal('patchGenericNoBase', expectedCapabilities[0].actions[8]);
832
832
  assert.equal('deleteGenericNoBase', expectedCapabilities[0].actions[9]);
833
833
  assert.equal('.system', expectedCapabilities[1].entity);
834
- assert.equal(2, expectedCapabilities[1].actions.length);
835
- assert.equal('getToken', expectedCapabilities[1].actions[0]);
836
- assert.equal('healthcheck', expectedCapabilities[1].actions[1]);
834
+ assert.equal(3, expectedCapabilities[1].actions.length);
835
+ assert.equal('MFA_Step_1', expectedCapabilities[1].actions[0]);
836
+ assert.equal('MFA_Step_2', expectedCapabilities[1].actions[1]);
837
+ assert.equal('healthcheck', expectedCapabilities[1].actions[2]);
837
838
  for (let e = 1; e < expectedCapabilities.length; e += 1) {
838
839
  assert.notEqual('', expectedCapabilities[e].entity);
839
840
  assert.notEqual(null, expectedCapabilities[e].actions);