@itentialopensource/adapter-utils 5.0.1 → 5.0.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
+ ## 5.0.2 [07-17-2023]
3
+
4
+ * remove ds files and fix to expanded generic
5
+
6
+ See merge request itentialopensource/adapter-utils!262
7
+
8
+ ---
9
+
2
10
  ## 5.0.1 [07-14-2023]
3
11
 
4
12
  * Update file CHANGELOG.md
@@ -62,10 +62,10 @@ class GenericHandler {
62
62
 
63
63
  // if metadata says not to use BasePath
64
64
  if (metadata && metadata.basepath && metadata.basepath.toUpperCase() === 'NOBASE') {
65
- this.genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
65
+ return this.genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
66
66
  }
67
67
  // use BasePath
68
- this.genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
68
+ return this.genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback);
69
69
  }
70
70
 
71
71
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-utils",
3
- "version": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "Itential Adapter Utility Libraries",
5
5
  "scripts": {
6
6
  "postinstall": "node utils/setup.js",
Binary file