@hello.nrfcloud.com/proto-map 10.0.0 → 10.0.1
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/lwm2m/definitions.js +5 -5
- package/lwm2m/14301.xml +4 -4
- package/lwm2m/definitions.ts +6 -6
- package/lwm2m/object/14301.d.ts +4 -4
- package/package.json +1 -1
|
@@ -681,22 +681,22 @@ var _obj;
|
|
|
681
681
|
Resources: {
|
|
682
682
|
0: {
|
|
683
683
|
ResourceID: 0,
|
|
684
|
-
Name: "
|
|
684
|
+
Name: "Update interval",
|
|
685
685
|
Mandatory: false,
|
|
686
686
|
Type: ResourceType.Integer,
|
|
687
|
-
Description: "The
|
|
687
|
+
Description: "The update interval in seconds. Examples: 10, 3600.",
|
|
688
688
|
RangeEnumeration: {
|
|
689
689
|
min: 0,
|
|
690
|
-
max:
|
|
690
|
+
max: 31622400
|
|
691
691
|
}
|
|
692
692
|
},
|
|
693
693
|
/**
|
|
694
|
-
*
|
|
694
|
+
* GNSS enabled (Boolean)
|
|
695
695
|
*
|
|
696
696
|
* Whether to enabled the device's GNSS receiver.
|
|
697
697
|
*/ 1: {
|
|
698
698
|
ResourceID: 1,
|
|
699
|
-
Name: "
|
|
699
|
+
Name: "GNSS enabled",
|
|
700
700
|
Mandatory: false,
|
|
701
701
|
Type: ResourceType.Boolean,
|
|
702
702
|
Description: "Whether to enabled the device's GNSS receiver."
|
package/lwm2m/14301.xml
CHANGED
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
<Mandatory>Optional</Mandatory>
|
|
10
10
|
<Resources>
|
|
11
11
|
<Item ID="0">
|
|
12
|
-
<Name>
|
|
12
|
+
<Name>Update interval</Name>
|
|
13
13
|
<Operations>RW</Operations>
|
|
14
14
|
<MultipleInstances>Single</MultipleInstances>
|
|
15
15
|
<Mandatory>Optional</Mandatory>
|
|
16
16
|
<Type>Integer</Type>
|
|
17
|
-
<RangeEnumeration>0..
|
|
17
|
+
<RangeEnumeration>0..31622400</RangeEnumeration>
|
|
18
18
|
<Units/>
|
|
19
|
-
<Description><![CDATA[The
|
|
19
|
+
<Description><![CDATA[The update interval in seconds. Examples: 10, 3600.]]></Description>
|
|
20
20
|
</Item>
|
|
21
21
|
<Item ID="1">
|
|
22
|
-
<Name>
|
|
22
|
+
<Name>GNSS enabled</Name>
|
|
23
23
|
<Operations>RW</Operations>
|
|
24
24
|
<MultipleInstances>Single</MultipleInstances>
|
|
25
25
|
<Mandatory>Optional</Mandatory>
|
package/lwm2m/definitions.ts
CHANGED
|
@@ -318,19 +318,19 @@ export const definitions: Record<LwM2MObjectID, LWM2MObjectInfo> = { /**
|
|
|
318
318
|
* Describes application configuration
|
|
319
319
|
*/
|
|
320
320
|
[LwM2MObjectID.ApplicationConfiguration_14301]: { ObjectID: LwM2MObjectID.ApplicationConfiguration_14301, ObjectVersion: "1.0", Name: "Application Configuration", Description: "Describes application configuration", Resources: { /**
|
|
321
|
-
*
|
|
321
|
+
* Update interval (Integer)
|
|
322
322
|
*
|
|
323
|
-
* The
|
|
323
|
+
* The update interval in seconds. Examples: 10, 3600.
|
|
324
324
|
*
|
|
325
325
|
* Minimum: 0
|
|
326
|
-
* Maximum:
|
|
326
|
+
* Maximum: 31622400
|
|
327
327
|
*/
|
|
328
|
-
0: { ResourceID: 0, Name: "
|
|
329
|
-
*
|
|
328
|
+
0: { ResourceID: 0, Name: "Update interval", Mandatory: false, Type: ResourceType.Integer, Description: "The update interval in seconds. Examples: 10, 3600.", RangeEnumeration: { min: 0, max: 31622400 } }, /**
|
|
329
|
+
* GNSS enabled (Boolean)
|
|
330
330
|
*
|
|
331
331
|
* Whether to enabled the device's GNSS receiver.
|
|
332
332
|
*/
|
|
333
|
-
1: { ResourceID: 1, Name: "
|
|
333
|
+
1: { ResourceID: 1, Name: "GNSS enabled", Mandatory: false, Type: ResourceType.Boolean, Description: "Whether to enabled the device's GNSS receiver." }, /**
|
|
334
334
|
* Timestamp (Time)
|
|
335
335
|
*
|
|
336
336
|
* The timestamp of when the configuration was updated.
|
package/lwm2m/object/14301.d.ts
CHANGED
|
@@ -16,16 +16,16 @@ export type ApplicationConfiguration_14301 = LwM2MObject<{
|
|
|
16
16
|
*/
|
|
17
17
|
99: number;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Update interval
|
|
20
20
|
*
|
|
21
|
-
* The
|
|
21
|
+
* The update interval in seconds. Examples: 10, 3600.
|
|
22
22
|
*
|
|
23
23
|
* Minimum: 0
|
|
24
|
-
* Maximum:
|
|
24
|
+
* Maximum: 31622400
|
|
25
25
|
*/
|
|
26
26
|
0?: number;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* GNSS enabled
|
|
29
29
|
*
|
|
30
30
|
* Whether to enabled the device's GNSS receiver.
|
|
31
31
|
*/
|
package/package.json
CHANGED