@iblai/data-layer 1.1.17 → 1.2.0
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/dist/index.d.ts +11 -11
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/src/utils/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -43362,10 +43362,11 @@ const skillsMiddleware = [
|
|
|
43362
43362
|
retirementApiSlice.middleware,
|
|
43363
43363
|
];
|
|
43364
43364
|
|
|
43365
|
-
const initializeDataLayer = (dmUrl, lmsUrl, storageService, httpErrorHandler = {}) => {
|
|
43365
|
+
const initializeDataLayer = (dmUrl, lmsUrl, legacyLmsUrl, storageService, httpErrorHandler = {}) => {
|
|
43366
43366
|
IblDataLayer.storage = storageService;
|
|
43367
43367
|
Config.dmUrl = dmUrl;
|
|
43368
43368
|
Config.lmsUrl = lmsUrl;
|
|
43369
|
+
Config.legacyLmsUrl = legacyLmsUrl;
|
|
43369
43370
|
Config.httpErrorHandlers = httpErrorHandler;
|
|
43370
43371
|
};
|
|
43371
43372
|
|