@onecx/angular-integration-interface 6.0.0-rc.18 → 6.0.0-rc.19
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.json +12 -0
- package/package.json +8 -5
package/migrations.json
CHANGED
@@ -11,6 +11,18 @@
|
|
11
11
|
"version": "6.0.0",
|
12
12
|
"description": "Removes all occurrences of addInitializeModuleGuard.",
|
13
13
|
"factory": "migrations/v6/remove-add-initialize-module-guard"
|
14
|
+
},
|
15
|
+
"replace-provide-app-service-mock": {
|
16
|
+
"cli": "nx",
|
17
|
+
"version": "6.0.0",
|
18
|
+
"description": "Detects and replaces all occurrences of provideAppServiceMock with provideAppStateServiceMock.",
|
19
|
+
"factory": "migrations/v6/replace-provide-app-service-mock"
|
20
|
+
},
|
21
|
+
"remove-auth-service": {
|
22
|
+
"cli": "nx",
|
23
|
+
"version": "6.0.0",
|
24
|
+
"description": "Removes all imports of IAuthService and AUTH_SERVICE and warns for usage.",
|
25
|
+
"factory": "migrations/v6/remove-auth-service"
|
14
26
|
}
|
15
27
|
},
|
16
28
|
"packageJsonUpdates": {
|
package/package.json
CHANGED
@@ -1,16 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@onecx/angular-integration-interface",
|
3
|
-
"version": "6.0.0-rc.
|
3
|
+
"version": "6.0.0-rc.19",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"peerDependencies": {
|
6
6
|
"@angular/core": "^19.0.0",
|
7
|
-
"@onecx/integration-interface": "^6.0.0-rc.
|
8
|
-
"@onecx/accelerator": "^6.0.0-rc.
|
9
|
-
"@onecx/nx-migration-utils": "^6.0.0-rc.
|
7
|
+
"@onecx/integration-interface": "^6.0.0-rc.19",
|
8
|
+
"@onecx/accelerator": "^6.0.0-rc.19",
|
9
|
+
"@onecx/nx-migration-utils": "^6.0.0-rc.19",
|
10
10
|
"rxjs": "~7.8.1",
|
11
11
|
"@nx/devkit": "^20.3.0",
|
12
12
|
"@phenomnomnominal/tsquery": "^6",
|
13
|
-
"ts-semaphore": "^1.0.0"
|
13
|
+
"ts-semaphore": "^1.0.0",
|
14
|
+
"@jest/globals": "29.7.0",
|
15
|
+
"jest-extended": "^6.0.0",
|
16
|
+
"typescript": "^5.5.4"
|
14
17
|
},
|
15
18
|
"dependencies": {
|
16
19
|
"tslib": "^2.3.0"
|