@c8y/devicemanagement 1021.0.4 → 1021.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/cumulocity.config.ts +11 -1
- package/package.json +8 -8
- package/public/favicon.ico +0 -0
- package/src/app/app.module.ts +2 -3
package/cumulocity.config.ts
CHANGED
|
@@ -44,8 +44,18 @@ export default {
|
|
|
44
44
|
description:
|
|
45
45
|
'The Services plugin provides a device tab that lists all services running on a device with their status, name, type and date of the last update.',
|
|
46
46
|
scope: 'self' as any
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: 'LWM2M plugin',
|
|
50
|
+
module: 'LWM2Module',
|
|
51
|
+
path: '@c8y/ngx-components/protocol-lwm2m',
|
|
52
|
+
description: 'Self scoped LWM2M plugin. Serves Post-operations, configuration and more...',
|
|
53
|
+
scope: 'self' as any
|
|
47
54
|
}
|
|
48
|
-
]
|
|
55
|
+
],
|
|
56
|
+
remotes: {
|
|
57
|
+
[`lwm2m-ui-plugin@${version.split('.')[0]}-stable`]: ['Lwm2mModuleWrapper']
|
|
58
|
+
}
|
|
49
59
|
},
|
|
50
60
|
buildTime: {
|
|
51
61
|
federation: [
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/devicemanagement",
|
|
3
|
-
"version": "1021.0
|
|
3
|
+
"version": "1021.2.0",
|
|
4
4
|
"description": "This package is used to scaffold a Device Management application for Cumulocity IoT.",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@c8y/style": "1021.0
|
|
7
|
-
"@c8y/ng1-modules": "1021.0
|
|
8
|
-
"@c8y/ngx-components": "1021.0
|
|
9
|
-
"@c8y/client": "1021.0
|
|
10
|
-
"@c8y/bootstrap": "1021.0
|
|
6
|
+
"@c8y/style": "1021.2.0",
|
|
7
|
+
"@c8y/ng1-modules": "1021.2.0",
|
|
8
|
+
"@c8y/ngx-components": "1021.2.0",
|
|
9
|
+
"@c8y/client": "1021.2.0",
|
|
10
|
+
"@c8y/bootstrap": "1021.2.0",
|
|
11
11
|
"@angular/cdk": "^18.2.10",
|
|
12
12
|
"@angular/upgrade": "^18.2.9",
|
|
13
13
|
"angular": "1.8.3",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"rxjs": "^7.8.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@c8y/options": "1021.0
|
|
19
|
-
"@c8y/devkit": "1021.0
|
|
18
|
+
"@c8y/options": "1021.2.0",
|
|
19
|
+
"@c8y/devkit": "1021.2.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@angular/common": ">=18 <19"
|
package/public/favicon.ico
CHANGED
|
Binary file
|
package/src/app/app.module.ts
CHANGED
|
@@ -20,7 +20,7 @@ import { AddLocationModule, LocationTabModule } from '@c8y/ngx-components/locati
|
|
|
20
20
|
import { LoriotDeviceRegistrationModule } from '@c8y/ngx-components/loriot-device-registration';
|
|
21
21
|
import { OperationsModule } from '@c8y/ngx-components/operations';
|
|
22
22
|
import { LpwanProtocolModule } from '@c8y/ngx-components/protocol-lpwan';
|
|
23
|
-
import {
|
|
23
|
+
import { Lwm2mPluginCheckerService } from '@c8y/ngx-components/protocol-lwm2m';
|
|
24
24
|
import { OpcuaProtocolModule } from '@c8y/ngx-components/protocol-opcua';
|
|
25
25
|
import { RegisterDeviceModule } from '@c8y/ngx-components/register-device';
|
|
26
26
|
import { RepositoryModule } from '@c8y/ngx-components/repository';
|
|
@@ -73,13 +73,12 @@ import { alarmsDeviceManagementRouteAndNodeConfig } from '@c8y/ngx-components/al
|
|
|
73
73
|
DeviceProtocolsModule,
|
|
74
74
|
DiagnosticsModule,
|
|
75
75
|
DeviceListModule,
|
|
76
|
-
Lwm2mModule.forRoot(),
|
|
77
76
|
BookmarksModule,
|
|
78
77
|
LocationTabModule,
|
|
79
78
|
AddLocationModule,
|
|
80
79
|
alarmsDeviceManagementRouteAndNodeConfig()
|
|
81
80
|
],
|
|
82
|
-
providers: [trackingFeatureProvider]
|
|
81
|
+
providers: [trackingFeatureProvider, Lwm2mPluginCheckerService]
|
|
83
82
|
})
|
|
84
83
|
export class AppModule extends HybridAppModule {
|
|
85
84
|
constructor(protected override upgrade: NgUpgradeModule) {
|