@hello.nrfcloud.com/proto-map 16.2.6 → 16.3.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/LwM2MObjectID.js +7 -1
- package/dist/lwm2m/definitions.js +67 -0
- package/dist/lwm2m/object/14501.d.js +5 -0
- package/dist/lwm2m/object/validate14501.js +14 -0
- package/dist/lwm2m/objects.js +1 -0
- package/dist/lwm2m/timestampResources.js +4 -0
- package/dist/lwm2m/validators.js +2 -0
- package/lwm2m/14501.xml +54 -0
- package/lwm2m/LwM2MObjectID.ts +10 -2
- package/lwm2m/definitions.ts +31 -1
- package/lwm2m/object/14501.d.ts +40 -0
- package/lwm2m/object/validate14501.ts +14 -0
- package/lwm2m/objects.ts +3 -1
- package/lwm2m/timestampResources.ts +1 -1
- package/lwm2m/validators.ts +3 -1
- package/package.json +3 -3
|
@@ -61,6 +61,11 @@
|
|
|
61
61
|
*
|
|
62
62
|
* Describes the services supported by the device.
|
|
63
63
|
*/ LwM2MObjectID[LwM2MObjectID["NRFCloudServiceInfo_14401"] = 14401] = "NRFCloudServiceInfo_14401";
|
|
64
|
+
/**
|
|
65
|
+
* Connection Quality (14501)
|
|
66
|
+
*
|
|
67
|
+
* Information about the connection quality.
|
|
68
|
+
*/ LwM2MObjectID[LwM2MObjectID["ConnectionQuality_14501"] = 14501] = "ConnectionQuality_14501";
|
|
64
69
|
return LwM2MObjectID;
|
|
65
70
|
}({});
|
|
66
71
|
/**
|
|
@@ -77,5 +82,6 @@
|
|
|
77
82
|
14240,
|
|
78
83
|
14250,
|
|
79
84
|
14301,
|
|
80
|
-
14401
|
|
85
|
+
14401,
|
|
86
|
+
14501
|
|
81
87
|
];
|
|
@@ -850,4 +850,71 @@ var _obj;
|
|
|
850
850
|
Description: "The timestamp of when the service info was updated."
|
|
851
851
|
}
|
|
852
852
|
}
|
|
853
|
+
}), /**
|
|
854
|
+
* Connection Quality (14501)
|
|
855
|
+
*
|
|
856
|
+
* Information about the connection quality.
|
|
857
|
+
*/ _define_property(_obj, LwM2MObjectID.ConnectionQuality_14501, {
|
|
858
|
+
ObjectID: LwM2MObjectID.ConnectionQuality_14501,
|
|
859
|
+
ObjectVersion: "1.0",
|
|
860
|
+
Name: "Connection Quality",
|
|
861
|
+
Description: "Information about the connection quality.",
|
|
862
|
+
Resources: {
|
|
863
|
+
0: {
|
|
864
|
+
ResourceID: 0,
|
|
865
|
+
Name: "Latency",
|
|
866
|
+
Mandatory: false,
|
|
867
|
+
Type: ResourceType.Integer,
|
|
868
|
+
Multiple: false,
|
|
869
|
+
Description: "The latency in milliseconds. Example: 52, 2708.",
|
|
870
|
+
Units: "ms"
|
|
871
|
+
},
|
|
872
|
+
/**
|
|
873
|
+
* Packet loss (Integer)
|
|
874
|
+
*
|
|
875
|
+
* Packet loss in percent. Examples: 3, 97.
|
|
876
|
+
*
|
|
877
|
+
* Minimum: 0
|
|
878
|
+
* Maximum: 100
|
|
879
|
+
*/ 1: {
|
|
880
|
+
ResourceID: 1,
|
|
881
|
+
Name: "Packet loss",
|
|
882
|
+
Mandatory: false,
|
|
883
|
+
Type: ResourceType.Integer,
|
|
884
|
+
Multiple: false,
|
|
885
|
+
Description: "Packet loss in percent. Examples: 3, 97.",
|
|
886
|
+
RangeEnumeration: {
|
|
887
|
+
min: 0,
|
|
888
|
+
max: 100
|
|
889
|
+
},
|
|
890
|
+
Units: "V"
|
|
891
|
+
},
|
|
892
|
+
/**
|
|
893
|
+
* Throughput (Integer)
|
|
894
|
+
*
|
|
895
|
+
* The throughput in bytes per second. Example: 11, 275.
|
|
896
|
+
*/ 2: {
|
|
897
|
+
ResourceID: 2,
|
|
898
|
+
Name: "Throughput",
|
|
899
|
+
Mandatory: false,
|
|
900
|
+
Type: ResourceType.Integer,
|
|
901
|
+
Multiple: false,
|
|
902
|
+
Description: "The throughput in bytes per second. Example: 11, 275.",
|
|
903
|
+
Units: "bytes/s"
|
|
904
|
+
},
|
|
905
|
+
/**
|
|
906
|
+
* Timestamp (Time)
|
|
907
|
+
*
|
|
908
|
+
* The timestamp of when the measurement was performed.
|
|
909
|
+
*
|
|
910
|
+
* Time resources in LwM2M are represented as a signed integer representing the number of seconds since Jan 1, 1970 in the UTC time zone.
|
|
911
|
+
*/ 99: {
|
|
912
|
+
ResourceID: 99,
|
|
913
|
+
Name: "Timestamp",
|
|
914
|
+
Mandatory: true,
|
|
915
|
+
Type: ResourceType.Time,
|
|
916
|
+
Multiple: false,
|
|
917
|
+
Description: "The timestamp of when the measurement was performed."
|
|
918
|
+
}
|
|
919
|
+
}
|
|
853
920
|
}), _obj);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TimeResource, NumberResource, OptionalResource, validateInstance } from "../validation.js";
|
|
2
|
+
import { LwM2MObjectID } from "../LwM2MObjectID.js";
|
|
3
|
+
/**
|
|
4
|
+
* Validate Connection Quality (14501)
|
|
5
|
+
*
|
|
6
|
+
* Ensures the given object is an LwM2M object according to the schema 14501.xml.
|
|
7
|
+
*/ export var validate14501 = function(o) {
|
|
8
|
+
return validateInstance(LwM2MObjectID.ConnectionQuality_14501, "1.0", {
|
|
9
|
+
99: TimeResource,
|
|
10
|
+
0: OptionalResource(NumberResource),
|
|
11
|
+
1: OptionalResource(NumberResource),
|
|
12
|
+
2: OptionalResource(NumberResource)
|
|
13
|
+
})(o);
|
|
14
|
+
};
|
package/dist/lwm2m/objects.js
CHANGED
|
@@ -10,3 +10,4 @@ export { validate14240 } from "./object/validate14240.js";
|
|
|
10
10
|
export { validate14250 } from "./object/validate14250.js";
|
|
11
11
|
export { validate14301 } from "./object/validate14301.js";
|
|
12
12
|
export { validate14401 } from "./object/validate14401.js";
|
|
13
|
+
export { validate14501 } from "./object/validate14501.js";
|
package/dist/lwm2m/validators.js
CHANGED
|
@@ -11,6 +11,7 @@ import { validate14240 } from "./object/validate14240.js";
|
|
|
11
11
|
import { validate14250 } from "./object/validate14250.js";
|
|
12
12
|
import { validate14301 } from "./object/validate14301.js";
|
|
13
13
|
import { validate14401 } from "./object/validate14401.js";
|
|
14
|
+
import { validate14501 } from "./object/validate14501.js";
|
|
14
15
|
/**
|
|
15
16
|
* Contains the validators for all registered LwM2M objects.
|
|
16
17
|
*/ export var validators = new Map();
|
|
@@ -26,3 +27,4 @@ validators.set(LwM2MObjectID.RGBLED_14240, validate14240);
|
|
|
26
27
|
validators.set(LwM2MObjectID.Reboot_14250, validate14250);
|
|
27
28
|
validators.set(LwM2MObjectID.ApplicationConfiguration_14301, validate14301);
|
|
28
29
|
validators.set(LwM2MObjectID.NRFCloudServiceInfo_14401, validate14401);
|
|
30
|
+
validators.set(LwM2MObjectID.ConnectionQuality_14501, validate14501);
|
package/lwm2m/14501.xml
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<LWM2M xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://openmobilealliance.org/tech/profiles/LWM2M-v1_1.xsd">
|
|
3
|
+
<Object ObjectType="MODefinition">
|
|
4
|
+
<Name>Connection Quality</Name>
|
|
5
|
+
<Description1><![CDATA[Information about the connection quality.]]></Description1>
|
|
6
|
+
<ObjectID>14501</ObjectID>
|
|
7
|
+
<ObjectURN>urn:oma:lwm2m:x:14501</ObjectURN>
|
|
8
|
+
<MultipleInstances>Multiple</MultipleInstances>
|
|
9
|
+
<Mandatory>Optional</Mandatory>
|
|
10
|
+
<Resources>
|
|
11
|
+
<Item ID="0">
|
|
12
|
+
<Name>Latency</Name>
|
|
13
|
+
<Operations>R</Operations>
|
|
14
|
+
<MultipleInstances>Single</MultipleInstances>
|
|
15
|
+
<Mandatory>Optional</Mandatory>
|
|
16
|
+
<Type>Integer</Type>
|
|
17
|
+
<RangeEnumeration/>
|
|
18
|
+
<Units>ms</Units>
|
|
19
|
+
<Description><![CDATA[The latency in milliseconds. Example: 52, 2708.]]></Description>
|
|
20
|
+
</Item>
|
|
21
|
+
<Item ID="1">
|
|
22
|
+
<Name>Packet loss</Name>
|
|
23
|
+
<Operations>R</Operations>
|
|
24
|
+
<MultipleInstances>Single</MultipleInstances>
|
|
25
|
+
<Mandatory>Optional</Mandatory>
|
|
26
|
+
<Type>Integer</Type>
|
|
27
|
+
<RangeEnumeration>0..100</RangeEnumeration>
|
|
28
|
+
<Units>V</Units>
|
|
29
|
+
<Description><![CDATA[Packet loss in percent. Examples: 3, 97.]]></Description>
|
|
30
|
+
</Item>
|
|
31
|
+
<Item ID="2">
|
|
32
|
+
<Name>Throughput</Name>
|
|
33
|
+
<Operations>R</Operations>
|
|
34
|
+
<MultipleInstances>Single</MultipleInstances>
|
|
35
|
+
<Mandatory>Optional</Mandatory>
|
|
36
|
+
<Type>Integer</Type>
|
|
37
|
+
<RangeEnumeration/>
|
|
38
|
+
<Units>bytes/s</Units>
|
|
39
|
+
<Description><![CDATA[The throughput in bytes per second. Example: 11, 275.]]></Description>
|
|
40
|
+
</Item>
|
|
41
|
+
<Item ID="99">
|
|
42
|
+
<Name>Timestamp</Name>
|
|
43
|
+
<Operations>R</Operations>
|
|
44
|
+
<MultipleInstances>Single</MultipleInstances>
|
|
45
|
+
<Mandatory>Mandatory</Mandatory>
|
|
46
|
+
<Type>Time</Type>
|
|
47
|
+
<RangeEnumeration/>
|
|
48
|
+
<Units/>
|
|
49
|
+
<Description><![CDATA[The timestamp of when the measurement was performed.]]></Description>
|
|
50
|
+
</Item>
|
|
51
|
+
</Resources>
|
|
52
|
+
<Description2/>
|
|
53
|
+
</Object>
|
|
54
|
+
</LWM2M>
|
package/lwm2m/LwM2MObjectID.ts
CHANGED
|
@@ -73,7 +73,13 @@ export enum LwM2MObjectID {
|
|
|
73
73
|
*
|
|
74
74
|
* Describes the services supported by the device.
|
|
75
75
|
*/
|
|
76
|
-
NRFCloudServiceInfo_14401 = 14401
|
|
76
|
+
NRFCloudServiceInfo_14401 = 14401,
|
|
77
|
+
/**
|
|
78
|
+
* Connection Quality (14501)
|
|
79
|
+
*
|
|
80
|
+
* Information about the connection quality.
|
|
81
|
+
*/
|
|
82
|
+
ConnectionQuality_14501 = 14501
|
|
77
83
|
}
|
|
78
84
|
/**
|
|
79
85
|
* The LwM2M Object IDs defined in this repo.
|
|
@@ -102,4 +108,6 @@ export const LwM2MObjectIDs = [
|
|
|
102
108
|
// Application Configuration (14301)
|
|
103
109
|
LwM2MObjectID.ApplicationConfiguration_14301,
|
|
104
110
|
// nRF Cloud Service Info (14401)
|
|
105
|
-
LwM2MObjectID.NRFCloudServiceInfo_14401
|
|
111
|
+
LwM2MObjectID.NRFCloudServiceInfo_14401,
|
|
112
|
+
// Connection Quality (14501)
|
|
113
|
+
LwM2MObjectID.ConnectionQuality_14501];
|
package/lwm2m/definitions.ts
CHANGED
|
@@ -390,4 +390,34 @@ export const definitions: Record<LwM2MObjectID, LWM2MObjectInfo> = { /**
|
|
|
390
390
|
*
|
|
391
391
|
* Time resources in LwM2M are represented as a signed integer representing the number of seconds since Jan 1, 1970 in the UTC time zone.
|
|
392
392
|
*/
|
|
393
|
-
99: { ResourceID: 99, Name: "Timestamp", Mandatory: true, Type: ResourceType.Time, Multiple: false, Description: "The timestamp of when the service info was updated." } } }
|
|
393
|
+
99: { ResourceID: 99, Name: "Timestamp", Mandatory: true, Type: ResourceType.Time, Multiple: false, Description: "The timestamp of when the service info was updated." } } }, /**
|
|
394
|
+
* Connection Quality (14501)
|
|
395
|
+
*
|
|
396
|
+
* Information about the connection quality.
|
|
397
|
+
*/
|
|
398
|
+
[LwM2MObjectID.ConnectionQuality_14501]: { ObjectID: LwM2MObjectID.ConnectionQuality_14501, ObjectVersion: "1.0", Name: "Connection Quality", Description: "Information about the connection quality.", Resources: { /**
|
|
399
|
+
* Latency (Integer)
|
|
400
|
+
*
|
|
401
|
+
* The latency in milliseconds. Example: 52, 2708.
|
|
402
|
+
*/
|
|
403
|
+
0: { ResourceID: 0, Name: "Latency", Mandatory: false, Type: ResourceType.Integer, Multiple: false, Description: "The latency in milliseconds. Example: 52, 2708.", Units: "ms" }, /**
|
|
404
|
+
* Packet loss (Integer)
|
|
405
|
+
*
|
|
406
|
+
* Packet loss in percent. Examples: 3, 97.
|
|
407
|
+
*
|
|
408
|
+
* Minimum: 0
|
|
409
|
+
* Maximum: 100
|
|
410
|
+
*/
|
|
411
|
+
1: { ResourceID: 1, Name: "Packet loss", Mandatory: false, Type: ResourceType.Integer, Multiple: false, Description: "Packet loss in percent. Examples: 3, 97.", RangeEnumeration: { min: 0, max: 100 }, Units: "V" }, /**
|
|
412
|
+
* Throughput (Integer)
|
|
413
|
+
*
|
|
414
|
+
* The throughput in bytes per second. Example: 11, 275.
|
|
415
|
+
*/
|
|
416
|
+
2: { ResourceID: 2, Name: "Throughput", Mandatory: false, Type: ResourceType.Integer, Multiple: false, Description: "The throughput in bytes per second. Example: 11, 275.", Units: "bytes/s" }, /**
|
|
417
|
+
* Timestamp (Time)
|
|
418
|
+
*
|
|
419
|
+
* The timestamp of when the measurement was performed.
|
|
420
|
+
*
|
|
421
|
+
* Time resources in LwM2M are represented as a signed integer representing the number of seconds since Jan 1, 1970 in the UTC time zone.
|
|
422
|
+
*/
|
|
423
|
+
99: { ResourceID: 99, Name: "Timestamp", Mandatory: true, Type: ResourceType.Time, Multiple: false, Description: "The timestamp of when the measurement was performed." } } } };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import type { LwM2MObject } from "../LwM2MObject.js";
|
|
2
|
+
import { LwM2MObjectID } from "../LwM2MObjectID.js";
|
|
3
|
+
/**
|
|
4
|
+
* Connection Quality (14501)
|
|
5
|
+
*
|
|
6
|
+
* Information about the connection quality.
|
|
7
|
+
*/
|
|
8
|
+
export type ConnectionQuality_14501 = LwM2MObject<{
|
|
9
|
+
ObjectID: LwM2MObjectID.ConnectionQuality_14501;
|
|
10
|
+
ObjectVersion: "1.0";
|
|
11
|
+
Resources: {
|
|
12
|
+
/**
|
|
13
|
+
* Timestamp
|
|
14
|
+
*
|
|
15
|
+
* The timestamp of when the measurement was performed.
|
|
16
|
+
*/
|
|
17
|
+
99: number;
|
|
18
|
+
/**
|
|
19
|
+
* Latency (ms)
|
|
20
|
+
*
|
|
21
|
+
* The latency in milliseconds. Example: 52, 2708.
|
|
22
|
+
*/
|
|
23
|
+
0?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Packet loss (V)
|
|
26
|
+
*
|
|
27
|
+
* Packet loss in percent. Examples: 3, 97.
|
|
28
|
+
*
|
|
29
|
+
* Minimum: 0
|
|
30
|
+
* Maximum: 100
|
|
31
|
+
*/
|
|
32
|
+
1?: number;
|
|
33
|
+
/**
|
|
34
|
+
* Throughput (bytes/s)
|
|
35
|
+
*
|
|
36
|
+
* The throughput in bytes per second. Example: 11, 275.
|
|
37
|
+
*/
|
|
38
|
+
2?: number;
|
|
39
|
+
};
|
|
40
|
+
}>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { LwM2MObjectInstance } from "../LwM2MObjectInstance.js";
|
|
2
|
+
import { TimeResource, NumberResource, OptionalResource, validateInstance } from "../validation.js";
|
|
3
|
+
import type { ConnectionQuality_14501 } from "../objects.js";
|
|
4
|
+
import { LwM2MObjectID } from "../LwM2MObjectID.js";
|
|
5
|
+
/**
|
|
6
|
+
* Validate Connection Quality (14501)
|
|
7
|
+
*
|
|
8
|
+
* Ensures the given object is an LwM2M object according to the schema 14501.xml.
|
|
9
|
+
*/
|
|
10
|
+
export const validate14501 = (o: unknown): {
|
|
11
|
+
error: Error;
|
|
12
|
+
} | {
|
|
13
|
+
object: LwM2MObjectInstance<ConnectionQuality_14501>;
|
|
14
|
+
} => validateInstance<ConnectionQuality_14501>(LwM2MObjectID.ConnectionQuality_14501, "1.0", { 99: TimeResource, 0: OptionalResource(NumberResource), 1: OptionalResource(NumberResource), 2: OptionalResource(NumberResource) })(o);
|
package/lwm2m/objects.ts
CHANGED
|
@@ -21,4 +21,6 @@ export { validate14250 } from "./object/validate14250.js";
|
|
|
21
21
|
export type { ApplicationConfiguration_14301 } from "./object/14301.js";
|
|
22
22
|
export { validate14301 } from "./object/validate14301.js";
|
|
23
23
|
export type { NRFCloudServiceInfo_14401 } from "./object/14401.js";
|
|
24
|
-
export { validate14401 } from "./object/validate14401.js";
|
|
24
|
+
export { validate14401 } from "./object/validate14401.js";
|
|
25
|
+
export type { ConnectionQuality_14501 } from "./object/14501.js";
|
|
26
|
+
export { validate14501 } from "./object/validate14501.js";
|
|
@@ -2,4 +2,4 @@ import { LwM2MObjectID } from "./LwM2MObjectID.js";
|
|
|
2
2
|
/**
|
|
3
3
|
* Contains the ID of the resource that defines the timestamp for each LwM2M object definition
|
|
4
4
|
*/
|
|
5
|
-
export const timestampResources: Readonly<Map<LwM2MObjectID, number>> = new Map<LwM2MObjectID, number>([[LwM2MObjectID.Geolocation_14201, 99], [LwM2MObjectID.BatteryAndPower_14202, 99], [LwM2MObjectID.ConnectionInformation_14203, 99], [LwM2MObjectID.DeviceInformation_14204, 99], [LwM2MObjectID.Environment_14205, 99], [LwM2MObjectID.SolarCharge_14210, 99], [LwM2MObjectID.ButtonPress_14220, 99], [LwM2MObjectID.SeaWaterLevel_14230, 99], [LwM2MObjectID.RGBLED_14240, 99], [LwM2MObjectID.Reboot_14250, 99], [LwM2MObjectID.ApplicationConfiguration_14301, 99], [LwM2MObjectID.NRFCloudServiceInfo_14401, 99]]);
|
|
5
|
+
export const timestampResources: Readonly<Map<LwM2MObjectID, number>> = new Map<LwM2MObjectID, number>([[LwM2MObjectID.Geolocation_14201, 99], [LwM2MObjectID.BatteryAndPower_14202, 99], [LwM2MObjectID.ConnectionInformation_14203, 99], [LwM2MObjectID.DeviceInformation_14204, 99], [LwM2MObjectID.Environment_14205, 99], [LwM2MObjectID.SolarCharge_14210, 99], [LwM2MObjectID.ButtonPress_14220, 99], [LwM2MObjectID.SeaWaterLevel_14230, 99], [LwM2MObjectID.RGBLED_14240, 99], [LwM2MObjectID.Reboot_14250, 99], [LwM2MObjectID.ApplicationConfiguration_14301, 99], [LwM2MObjectID.NRFCloudServiceInfo_14401, 99], [LwM2MObjectID.ConnectionQuality_14501, 99]]);
|
package/lwm2m/validators.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { validate14240 } from "./object/validate14240.js";
|
|
|
12
12
|
import { validate14250 } from "./object/validate14250.js";
|
|
13
13
|
import { validate14301 } from "./object/validate14301.js";
|
|
14
14
|
import { validate14401 } from "./object/validate14401.js";
|
|
15
|
+
import { validate14501 } from "./object/validate14501.js";
|
|
15
16
|
/**
|
|
16
17
|
* Contains the validators for all registered LwM2M objects.
|
|
17
18
|
*/
|
|
@@ -31,4 +32,5 @@ validators.set(LwM2MObjectID.SeaWaterLevel_14230, validate14230)
|
|
|
31
32
|
validators.set(LwM2MObjectID.RGBLED_14240, validate14240)
|
|
32
33
|
validators.set(LwM2MObjectID.Reboot_14250, validate14250)
|
|
33
34
|
validators.set(LwM2MObjectID.ApplicationConfiguration_14301, validate14301)
|
|
34
|
-
validators.set(LwM2MObjectID.NRFCloudServiceInfo_14401, validate14401)
|
|
35
|
+
validators.set(LwM2MObjectID.NRFCloudServiceInfo_14401, validate14401)
|
|
36
|
+
validators.set(LwM2MObjectID.ConnectionQuality_14501, validate14501)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hello.nrfcloud.com/proto-map",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.3.1",
|
|
4
4
|
"description": "Documents the communication protocol between devices, the hello.nrfcloud.com/map backend and web application",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@bifravst/prettier-config": "1.1.7",
|
|
40
40
|
"@commitlint/config-conventional": "19.7.1",
|
|
41
41
|
"@swc/cli": "0.6.0",
|
|
42
|
-
"@swc/core": "1.
|
|
42
|
+
"@swc/core": "1.11.4",
|
|
43
43
|
"@types/node": "22.13.5",
|
|
44
44
|
"@types/xml2js": "0.4.14",
|
|
45
45
|
"chalk": "5.4.1",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"lwm2m"
|
|
99
99
|
],
|
|
100
100
|
"peerDependencies": {
|
|
101
|
-
"@aws-sdk/client-timestream-write": "^3.
|
|
101
|
+
"@aws-sdk/client-timestream-write": "^3.758.0",
|
|
102
102
|
"@sinclair/typebox": "^0.34.28"
|
|
103
103
|
}
|
|
104
104
|
}
|