@izara_frontend/service-schemas 1.0.3 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@izara_frontend/service-schemas",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -231,7 +231,7 @@ export function getObjectLinks() {
231
231
 
232
232
  let mainErrorsFound = [];
233
233
 
234
- const mainObjTypeConcat = createObjTypeConcat(objType);
234
+ const [mainObjTypeConcat] = createObjTypeConcat(objType);
235
235
 
236
236
  const [objectSchemaHierarChy, getSchemaErrors] = await getObjectSchemaWithAllHierarchyFn().initiate(objType);
237
237
 
@@ -1096,7 +1096,7 @@ export function getObjectLinksWithRequestProperties() {
1096
1096
  let returnLinks = [];
1097
1097
  let mainErrorsFound = [];
1098
1098
 
1099
- const mainObjTypeConcat = createObjTypeConcat(objType);
1099
+ const [mainObjTypeConcat] = createObjTypeConcat(objType);
1100
1100
 
1101
1101
  const [objectLinks, getSchemaErrors] = await getObjectLinksFn().initiate(objType);
1102
1102