@izara_frontend/service-schemas 1.0.2 → 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/index.js +1 -1
- package/package.json +1 -1
- package/src/getObjectSchema.js +3 -3
package/index.js
CHANGED
package/package.json
CHANGED
package/src/getObjectSchema.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
getRefObjectRelationshipEndpoint,
|
|
18
18
|
getRelationshipSchemaEndpoint,
|
|
19
19
|
getLinkConfigEndpoint
|
|
20
|
-
} from './endpoint'
|
|
20
|
+
} from './endpoint.js'
|
|
21
21
|
|
|
22
22
|
let schemaInitTools = null;
|
|
23
23
|
let cachedEndpoints = {};
|
|
@@ -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
|
|