@carbonorm/carbonnode 1.6.2 → 1.6.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbonorm/carbonnode",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "browser": "dist/index.umd.js",
@@ -848,9 +848,7 @@ export default function restApi<
848
848
 
849
849
  console.groupCollapsed('%c API: fetchDependencies segment', 'color: #0c0')
850
850
 
851
- console.log('%c ' + requestMethod + ' ' + tableName, 'color: #0c0')
852
-
853
- console.trace();
851
+ console.log('%c ' + requestMethod + ' ' + tableName, 'color: #0c0')
854
852
 
855
853
  const fetchDependencies = async (fetchData: {
856
854
  [key: string]: iConstraint[]
@@ -873,6 +871,8 @@ export default function restApi<
873
871
 
874
872
  const RestApi = fetchTable.default
875
873
 
874
+ console.log(constraint, fetchTable)
875
+
876
876
  return RestApi.Get({
877
877
  [C6.WHERE]: {
878
878
  [constraint.COLUMN]: responseData.rest[column]
@@ -920,6 +920,8 @@ export default function restApi<
920
920
 
921
921
  }
922
922
 
923
+ console.trace();
924
+
923
925
  console.groupEnd()
924
926
 
925
927
  }