@onecx/angular-integration-interface 6.6.0 → 6.7.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/migrations/index.d.ts +5 -0
- package/migrations/index.js +9 -0
- package/migrations/index.js.map +1 -0
- package/migrations/test-utils/test-setup.d.ts +1 -0
- package/migrations/test-utils/test-setup.js +6 -0
- package/migrations/test-utils/test-setup.js.map +1 -0
- package/migrations/v6/migrate-onecx-to-v6.d.ts +2 -0
- package/migrations/v6/migrate-onecx-to-v6.js +8 -0
- package/migrations/v6/migrate-onecx-to-v6.js.map +1 -0
- package/migrations/v6/remove-add-initialize-module-guard.d.ts +2 -0
- package/migrations/v6/remove-add-initialize-module-guard.js +29 -0
- package/migrations/v6/remove-add-initialize-module-guard.js.map +1 -0
- package/migrations/v6/remove-auth-service.d.ts +2 -0
- package/migrations/v6/remove-auth-service.js +28 -0
- package/migrations/v6/remove-auth-service.js.map +1 -0
- package/migrations/v6/replace-provide-app-service-mock.d.ts +2 -0
- package/migrations/v6/replace-provide-app-service-mock.js +14 -0
- package/migrations/v6/replace-provide-app-service-mock.js.map +1 -0
- package/migrations/v6/utils/remove-and-track-import.d.ts +2 -0
- package/migrations/v6/utils/remove-and-track-import.js +14 -0
- package/migrations/v6/utils/remove-and-track-import.js.map +1 -0
- package/migrations/v6/warn-removed-properties-from-theme-service.d.ts +3 -0
- package/migrations/v6/warn-removed-properties-from-theme-service.js +24 -0
- package/migrations/v6/warn-removed-properties-from-theme-service.js.map +1 -0
- package/migrations.json +7 -1
- package/package.json +4 -4
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
const tslib_1 = require("tslib");
|
4
|
+
tslib_1.__exportStar(require("./v6/migrate-onecx-to-v6"), exports);
|
5
|
+
tslib_1.__exportStar(require("./v6/remove-add-initialize-module-guard"), exports);
|
6
|
+
tslib_1.__exportStar(require("./v6/replace-provide-app-service-mock"), exports);
|
7
|
+
tslib_1.__exportStar(require("./v6/remove-auth-service"), exports);
|
8
|
+
tslib_1.__exportStar(require("./v6/warn-removed-properties-from-theme-service"), exports);
|
9
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/angular-integration-interface/migrations/index.ts"],"names":[],"mappings":";;;AAAA,mEAAwC;AACxC,kFAAuD;AACvD,gFAAqD;AACrD,mEAAwC;AACxC,0FAA+D"}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"test-setup.js","sourceRoot":"","sources":["../../../../../libs/angular-integration-interface/migrations/test-utils/test-setup.ts"],"names":[],"mappings":";;AAAA,2CAAsC;AACtC,0CAAyC;AACzC,gBAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = migrateOnecxToV6;
|
4
|
+
const nx_migration_utils_1 = require("@onecx/nx-migration-utils");
|
5
|
+
async function migrateOnecxToV6(tree) {
|
6
|
+
await (0, nx_migration_utils_1.commonMigrateOnecxToV6)(tree);
|
7
|
+
}
|
8
|
+
//# sourceMappingURL=migrate-onecx-to-v6.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"migrate-onecx-to-v6.js","sourceRoot":"","sources":["../../../../../libs/angular-integration-interface/migrations/v6/migrate-onecx-to-v6.ts"],"names":[],"mappings":";;AAGA,mCAEC;AAJD,kEAAkE;AAEnD,KAAK,UAAU,gBAAgB,CAAC,IAAU;IACvD,MAAM,IAAA,2CAAsB,EAAC,IAAI,CAAC,CAAA;AACpC,CAAC"}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = removeAddInitializeModuleGuard;
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
5
|
+
const nx_migration_utils_1 = require("@onecx/nx-migration-utils");
|
6
|
+
const tsquery_1 = require("@phenomnomnominal/tsquery");
|
7
|
+
const typescript_1 = require("typescript");
|
8
|
+
async function removeAddInitializeModuleGuard(tree) {
|
9
|
+
const ngModuleQuery = 'Decorator > CallExpression:has(Identifier[name="NgModule"])';
|
10
|
+
(0, nx_migration_utils_1.removeImportValuesFromModule)(tree, 'src', '@onecx/angular-integration-interface', 'addInitializeModuleGuard', ngModuleQuery);
|
11
|
+
(0, nx_migration_utils_1.removeImportValuesFromModule)(tree, 'src', '@onecx/portal-integration-angular', 'addInitializeModuleGuard', ngModuleQuery);
|
12
|
+
(0, devkit_1.visitNotIgnoredFiles)(tree, 'src', (filePath) => {
|
13
|
+
if (!filePath.endsWith('.ts'))
|
14
|
+
return;
|
15
|
+
const content = tree.read(filePath, 'utf-8');
|
16
|
+
if (!content)
|
17
|
+
return;
|
18
|
+
const updated = (0, tsquery_1.replace)(content, 'CallExpression > CallExpression:has(Identifier[name="addInitializeModuleGuard"])', (node) => {
|
19
|
+
const callExpressionNode = node;
|
20
|
+
const [expression] = callExpressionNode.arguments;
|
21
|
+
return expression.getText();
|
22
|
+
}, typescript_1.ScriptKind.TS);
|
23
|
+
if (updated !== content) {
|
24
|
+
tree.write(filePath, updated);
|
25
|
+
}
|
26
|
+
});
|
27
|
+
await (0, devkit_1.formatFiles)(tree);
|
28
|
+
}
|
29
|
+
//# sourceMappingURL=remove-add-initialize-module-guard.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"remove-add-initialize-module-guard.js","sourceRoot":"","sources":["../../../../../libs/angular-integration-interface/migrations/v6/remove-add-initialize-module-guard.ts"],"names":[],"mappings":";;AAKA,iDAwCC;AA7CD,uCAAoE;AACpE,kEAAwE;AACxE,uDAAmD;AACnD,2CAAuD;AAExC,KAAK,UAAU,8BAA8B,CAAC,IAAU;IACrE,MAAM,aAAa,GAAG,6DAA6D,CAAA;IACnF,IAAA,iDAA4B,EAC1B,IAAI,EACJ,KAAK,EACL,sCAAsC,EACtC,0BAA0B,EAC1B,aAAa,CACd,CAAA;IACD,IAAA,iDAA4B,EAC1B,IAAI,EACJ,KAAK,EACL,mCAAmC,EACnC,0BAA0B,EAC1B,aAAa,CACd,CAAA;IAED,IAAA,6BAAoB,EAAC,IAAI,EAAE,KAAK,EAAE,CAAC,QAAQ,EAAE,EAAE;QAC7C,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC;YAAE,OAAM;QAErC,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;QAC5C,IAAI,CAAC,OAAO;YAAE,OAAM;QAEpB,MAAM,OAAO,GAAG,IAAA,iBAAO,EACrB,OAAO,EACP,kFAAkF,EAClF,CAAC,IAAI,EAAE,EAAE;YACP,MAAM,kBAAkB,GAAG,IAAsB,CAAA;YACjD,MAAM,CAAC,UAAU,CAAC,GAAG,kBAAkB,CAAC,SAAS,CAAA;YACjD,OAAO,UAAU,CAAC,OAAO,EAAE,CAAA;QAC7B,CAAC,EACD,uBAAU,CAAC,EAAE,CACd,CAAA;QAED,IAAI,OAAO,KAAK,OAAO,EAAE,CAAC;YACxB,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAA;QAC/B,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,MAAM,IAAA,oBAAW,EAAC,IAAI,CAAC,CAAA;AACzB,CAAC"}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = removeAuthService;
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
5
|
+
const nx_migration_utils_1 = require("@onecx/nx-migration-utils");
|
6
|
+
const remove_and_track_import_1 = require("./utils/remove-and-track-import");
|
7
|
+
const INTERFACE_NAME = 'IAuthService';
|
8
|
+
const AUTH_SERVICE_NAME = 'AUTH_SERVICE';
|
9
|
+
const IMPORT_PATHS = [
|
10
|
+
'@onecx/angular-integration-interface',
|
11
|
+
'@onecx/portal-integration-angular',
|
12
|
+
];
|
13
|
+
async function removeAuthService(tree) {
|
14
|
+
const affectedFiles = new Set();
|
15
|
+
const affectedAuthServiceFiles = new Set();
|
16
|
+
(0, devkit_1.visitNotIgnoredFiles)(tree, 'src', (filePath) => {
|
17
|
+
if (!filePath.endsWith('.ts'))
|
18
|
+
return;
|
19
|
+
const fileContent = tree.read(filePath, 'utf-8');
|
20
|
+
if (!fileContent)
|
21
|
+
return;
|
22
|
+
(0, remove_and_track_import_1.removeAndTrackImport)(tree, filePath, fileContent, IMPORT_PATHS, INTERFACE_NAME, affectedFiles);
|
23
|
+
(0, remove_and_track_import_1.removeAndTrackImport)(tree, filePath, fileContent, IMPORT_PATHS, AUTH_SERVICE_NAME, affectedAuthServiceFiles);
|
24
|
+
});
|
25
|
+
(0, nx_migration_utils_1.printWarnings)(`IAuthService is no longer available. Please adapt the usages accordingly.`, Array.from(affectedFiles));
|
26
|
+
(0, nx_migration_utils_1.printWarnings)(`AUTH_SERVICE is no longer available. Please adapt the usages accordingly and use permission service or user service instead.`, Array.from(affectedAuthServiceFiles));
|
27
|
+
}
|
28
|
+
//# sourceMappingURL=remove-auth-service.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"remove-auth-service.js","sourceRoot":"","sources":["../../../../../libs/angular-integration-interface/migrations/v6/remove-auth-service.ts"],"names":[],"mappings":";;AAWA,oCAsBC;AAjCD,uCAAuD;AACvD,kEAAyD;AACzD,6EAAsE;AAEtE,MAAM,cAAc,GAAG,cAAc,CAAC;AACtC,MAAM,iBAAiB,GAAG,cAAc,CAAC;AACzC,MAAM,YAAY,GAAG;IACnB,sCAAsC;IACtC,mCAAmC;CACpC,CAAC;AAEa,KAAK,UAAU,iBAAiB,CAAC,IAAU;IACxD,MAAM,aAAa,GAAG,IAAI,GAAG,EAAU,CAAA;IACvC,MAAM,wBAAwB,GAAG,IAAI,GAAG,EAAU,CAAA;IAElD,IAAA,6BAAoB,EAAC,IAAI,EAAE,KAAK,EAAE,CAAC,QAAQ,EAAE,EAAE;QAC7C,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC;YAAE,OAAO;QACtC,MAAM,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;QACjD,IAAI,CAAC,WAAW;YAAE,OAAO;QAEzB,IAAA,8CAAoB,EAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,YAAY,EAAE,cAAc,EAAE,aAAa,CAAC,CAAC;QAC/F,IAAA,8CAAoB,EAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,YAAY,EAAE,iBAAiB,EAAE,wBAAwB,CAAC,CAAC;IAC/G,CAAC,CAAC,CAAC;IAEH,IAAA,kCAAa,EACX,2EAA2E,EAC3E,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAC1B,CAAC;IAEF,IAAA,kCAAa,EACX,8HAA8H,EAC9H,KAAK,CAAC,IAAI,CAAC,wBAAwB,CAAC,CACrC,CAAC;AACJ,CAAC"}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = replaceProvideAppServiceMock;
|
4
|
+
const angular_1 = require("@onecx/nx-migration-utils/angular");
|
5
|
+
const PROVIDER_NAME = 'provideAppServiceMock';
|
6
|
+
const PROVIDER_NEW_NAME = 'provideAppStateServiceMock';
|
7
|
+
const PROVIDER_IMPORT_PATH = '@onecx/angular-integration-interface/mocks';
|
8
|
+
async function replaceProvideAppServiceMock(tree) {
|
9
|
+
const srcDirectoryPath = 'src';
|
10
|
+
// Replace all usages of provideAppServiceMock with provideAppStateServiceMock in all files that import provideAppServiceMock from @onecx/angular-integration-interface/mocks
|
11
|
+
const filterQuery = `ImportDeclaration:has(StringLiteral[value="${PROVIDER_IMPORT_PATH}"]) ImportSpecifier:has(Identifier[name="${PROVIDER_NAME}"])`;
|
12
|
+
(0, angular_1.replaceInFiles)(tree, srcDirectoryPath, `Identifier[name="${PROVIDER_NAME}"]`, PROVIDER_NEW_NAME, filterQuery);
|
13
|
+
}
|
14
|
+
//# sourceMappingURL=replace-provide-app-service-mock.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"replace-provide-app-service-mock.js","sourceRoot":"","sources":["../../../../../libs/angular-integration-interface/migrations/v6/replace-provide-app-service-mock.ts"],"names":[],"mappings":";;AAOA,+CAYC;AAlBD,+DAAmE;AAEnE,MAAM,aAAa,GAAG,uBAAuB,CAAC;AAC9C,MAAM,iBAAiB,GAAG,4BAA4B,CAAC;AACvD,MAAM,oBAAoB,GAAG,4CAA4C,CAAC;AAE3D,KAAK,UAAU,4BAA4B,CAAC,IAAU;IACnE,MAAM,gBAAgB,GAAG,KAAK,CAAC;IAE/B,6KAA6K;IAC7K,MAAM,WAAW,GAAG,8CAA8C,oBAAoB,4CAA4C,aAAa,KAAK,CAAC;IACrJ,IAAA,wBAAc,EACZ,IAAI,EACJ,gBAAgB,EAChB,oBAAoB,aAAa,IAAI,EACrC,iBAAiB,EACjB,WAAW,CACZ,CAAC;AACJ,CAAC"}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.removeAndTrackImport = removeAndTrackImport;
|
4
|
+
const nx_migration_utils_1 = require("@onecx/nx-migration-utils");
|
5
|
+
const nx_migration_utils_2 = require("@onecx/nx-migration-utils");
|
6
|
+
function removeAndTrackImport(tree, filePath, fileContent, importPaths, importName, affectedSet) {
|
7
|
+
for (const importPath of importPaths) {
|
8
|
+
if ((0, nx_migration_utils_2.isImportSpecifierInContent)(fileContent, importPath, importName)) {
|
9
|
+
(0, nx_migration_utils_1.removeImportSpecifierFromImport)(tree, filePath, importPath, importName);
|
10
|
+
affectedSet.add(filePath);
|
11
|
+
}
|
12
|
+
}
|
13
|
+
}
|
14
|
+
//# sourceMappingURL=remove-and-track-import.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"remove-and-track-import.js","sourceRoot":"","sources":["../../../../../../libs/angular-integration-interface/migrations/v6/utils/remove-and-track-import.ts"],"names":[],"mappings":";;AAIA,oDAOC;AAVD,kEAA4E;AAC5E,kEAAuE;AAEvE,SAAgB,oBAAoB,CAAC,IAAU,EAAE,QAAgB,EAAE,WAAmB,EAAE,WAAqB,EAAE,UAAkB,EAAE,WAAwB;IACzJ,KAAK,MAAM,UAAU,IAAI,WAAW,EAAE,CAAC;QACrC,IAAI,IAAA,+CAA0B,EAAC,WAAW,EAAE,UAAU,EAAE,UAAU,CAAC,EAAE,CAAC;YACpE,IAAA,oDAA+B,EAAC,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,UAAU,CAAC,CAAC;YACxE,WAAW,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QAC5B,CAAC;IACH,CAAC;AACH,CAAC"}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.warnThemeServiceRemovedProperties = warnThemeServiceRemovedProperties;
|
4
|
+
exports.warnThemeServiceRemovedMethods = warnThemeServiceRemovedMethods;
|
5
|
+
const nx_migration_utils_1 = require("@onecx/nx-migration-utils");
|
6
|
+
const THEME_SERVICE_REMOVED_PROPERTY = 'baseUrlV1';
|
7
|
+
const THEME_SERVICE_REMOVED_METHODS = ['getThemeRef', 'loadAndApplyTheme', 'apply'];
|
8
|
+
function warnThemeServiceRemovedProperties(tree, srcDirectoryPath) {
|
9
|
+
const detectedPropertyInFiles = (0, nx_migration_utils_1.detectMethodCallsInFiles)(tree, srcDirectoryPath, THEME_SERVICE_REMOVED_PROPERTY, 'ThemeService');
|
10
|
+
if (detectedPropertyInFiles.size > 0) {
|
11
|
+
const warningPropertyCalls = `ThemeService property ${THEME_SERVICE_REMOVED_PROPERTY} have been removed in v6. Please remove these usages and adapt your code accordingly.`;
|
12
|
+
(0, nx_migration_utils_1.printWarnings)(warningPropertyCalls, Array.from(detectedPropertyInFiles.keys()));
|
13
|
+
}
|
14
|
+
}
|
15
|
+
function warnThemeServiceRemovedMethods(tree, srcDirectoryPath) {
|
16
|
+
THEME_SERVICE_REMOVED_METHODS.forEach((method) => {
|
17
|
+
const detectedMethodCalls = (0, nx_migration_utils_1.detectMethodCallsInFiles)(tree, srcDirectoryPath, method, 'ThemeService');
|
18
|
+
if (detectedMethodCalls.size > 0) {
|
19
|
+
const warningMethodCall = `ThemeService method '${method}' has been removed in v6. Only currentTheme$ property is available. Please adapt your code accordingly.`;
|
20
|
+
(0, nx_migration_utils_1.printWarnings)(warningMethodCall, Array.from(detectedMethodCalls.keys()));
|
21
|
+
}
|
22
|
+
});
|
23
|
+
}
|
24
|
+
//# sourceMappingURL=warn-removed-properties-from-theme-service.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"warn-removed-properties-from-theme-service.js","sourceRoot":"","sources":["../../../../../libs/angular-integration-interface/migrations/v6/warn-removed-properties-from-theme-service.ts"],"names":[],"mappings":";;AAMA,8EAYC;AAED,wEAQC;AA3BD,kEAAmF;AAEnF,MAAM,8BAA8B,GAAG,WAAW,CAAA;AAClD,MAAM,6BAA6B,GAAG,CAAC,aAAa,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAEnF,SAAgB,iCAAiC,CAAC,IAAU,EAAE,gBAAwB;IACpF,MAAM,uBAAuB,GAAG,IAAA,6CAAwB,EACtD,IAAI,EACJ,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,CACf,CAAA;IAED,IAAI,uBAAuB,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;QACrC,MAAM,oBAAoB,GAAG,yBAAyB,8BAA8B,uFAAuF,CAAA;QAC3K,IAAA,kCAAa,EAAC,oBAAoB,EAAE,KAAK,CAAC,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,CAAC,CAAC,CAAA;IACjF,CAAC;AACH,CAAC;AAED,SAAgB,8BAA8B,CAAC,IAAU,EAAE,gBAAwB;IACjF,6BAA6B,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,EAAE;QAC/C,MAAM,mBAAmB,GAAG,IAAA,6CAAwB,EAAC,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,cAAc,CAAC,CAAA;QACpG,IAAI,mBAAmB,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;YACjC,MAAM,iBAAiB,GAAG,wBAAwB,MAAM,yGAAyG,CAAA;YACjK,IAAA,kCAAa,EAAC,iBAAiB,EAAE,KAAK,CAAC,IAAI,CAAC,mBAAmB,CAAC,IAAI,EAAE,CAAC,CAAC,CAAA;QAC1E,CAAC;IACH,CAAC,CAAC,CAAA;AACJ,CAAC"}
|
package/migrations.json
CHANGED
@@ -23,6 +23,12 @@
|
|
23
23
|
"version": "6.0.0",
|
24
24
|
"description": "Removes all imports of IAuthService and AUTH_SERVICE and warns for usage.",
|
25
25
|
"factory": "migrations/v6/remove-auth-service"
|
26
|
+
},
|
27
|
+
"warn-removed-properties-from-theme-service": {
|
28
|
+
"cli": "nx",
|
29
|
+
"version": "6.0.0",
|
30
|
+
"description": "Warns about the properties which were removed from themeService",
|
31
|
+
"factory": "migrations/v6/warn-removed-properties-from-theme-service"
|
26
32
|
}
|
27
33
|
},
|
28
34
|
"packageJsonUpdates": {
|
@@ -49,4 +55,4 @@
|
|
49
55
|
},
|
50
56
|
"version": "null"
|
51
57
|
}
|
52
|
-
}
|
58
|
+
}
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@onecx/angular-integration-interface",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.7.0",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"peerDependencies": {
|
6
6
|
"@angular/core": "^19.0.0",
|
7
|
-
"@onecx/accelerator": "^6.
|
8
|
-
"@onecx/nx-migration-utils": "^6.
|
9
|
-
"@onecx/integration-interface": "^6.
|
7
|
+
"@onecx/accelerator": "^6.7.0",
|
8
|
+
"@onecx/nx-migration-utils": "^6.7.0",
|
9
|
+
"@onecx/integration-interface": "^6.7.0",
|
10
10
|
"rxjs": "~7.8.1",
|
11
11
|
"@nx/devkit": "^20.3.0",
|
12
12
|
"@phenomnomnominal/tsquery": "^6",
|