@hello.nrfcloud.com/proto-map 5.6.1 → 5.6.3

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.
Files changed (68) hide show
  1. package/api/Context.ts +1 -1
  2. package/api/{ResourceUpdate.spec.ts → ObjectUpdate.spec.ts} +5 -5
  3. package/api/{ResourceUpdate.ts → ObjectUpdate.ts} +6 -6
  4. package/dist/api/Context.js +1 -1
  5. package/dist/api/DeviceId.js +7 -7
  6. package/dist/api/Devices.js +11 -11
  7. package/dist/api/History.js +10 -10
  8. package/dist/api/History.spec.js +17 -17
  9. package/dist/api/LwM2M.js +11 -11
  10. package/dist/api/ObjectUpdate.js +17 -0
  11. package/dist/api/ObjectUpdate.spec.js +26 -0
  12. package/dist/api/ShareDeviceOwnershipConfirmed.js +4 -4
  13. package/dist/api/ShareDeviceRequest.js +4 -4
  14. package/dist/api/Timestamp.js +3 -3
  15. package/dist/api/Timestamp.spec.js +9 -9
  16. package/dist/api/index.js +8 -8
  17. package/dist/generator/addDocBlock.js +2 -2
  18. package/dist/generator/generateLwM2MDefinitions.js +27 -27
  19. package/dist/generator/generateLwM2MDefinitions.spec.js +32 -32
  20. package/dist/generator/generateLwm2mTimestampResources.js +7 -7
  21. package/dist/generator/generateModels.js +37 -37
  22. package/dist/generator/generateType.js +21 -21
  23. package/dist/generator/generateValidator.js +29 -29
  24. package/dist/generator/generateValidators.js +9 -9
  25. package/dist/generator/isDir.js +1 -1
  26. package/dist/generator/isDir.spec.js +13 -13
  27. package/dist/generator/lwm2m.js +23 -23
  28. package/dist/generator/models.js +23 -23
  29. package/dist/generator/printNode.js +2 -2
  30. package/dist/generator/tokenizeName.js +2 -2
  31. package/dist/generator/tokenizeName.spec.js +20 -20
  32. package/dist/generator/types.js +37 -37
  33. package/dist/lwm2m/LWM2MObjectDefinition.js +30 -30
  34. package/dist/lwm2m/check-lwm2m-rules.js +34 -34
  35. package/dist/lwm2m/definitions.js +4 -4
  36. package/dist/lwm2m/fromXML2JSON.js +4 -4
  37. package/dist/lwm2m/instanceTs.js +2 -2
  38. package/dist/lwm2m/instanceTs.spec.js +10 -10
  39. package/dist/lwm2m/isRegisteredLwM2MObject.js +2 -2
  40. package/dist/lwm2m/isRegisteredLwM2MObject.spec.js +12 -12
  41. package/dist/lwm2m/parseRangeEnumeration.js +1 -1
  42. package/dist/lwm2m/parseRangeEnumeration.spec.js +11 -11
  43. package/dist/lwm2m/unwrapNestedArray.js +2 -2
  44. package/dist/lwm2m/unwrapNestedArray.spec.js +155 -155
  45. package/dist/lwm2m/validate.js +1 -1
  46. package/dist/lwm2m/validation.js +16 -16
  47. package/dist/markdown/getCodeBlock.js +5 -5
  48. package/dist/markdown/getFrontMatter.js +6 -6
  49. package/dist/markdown/parseREADME.js +5 -5
  50. package/dist/models/asset_tracker_v2+AWS/examples/examples.spec.js +21 -21
  51. package/dist/models/check-model-rules.js +42 -42
  52. package/dist/models/models.js +20 -20
  53. package/dist/models/types.js +3 -3
  54. package/dist/senml/SenMLSchema.js +16 -16
  55. package/dist/senml/SenMLSchema.spec.js +11 -11
  56. package/dist/senml/hasValue.js +2 -2
  57. package/dist/senml/hasValue.spec.js +4 -4
  58. package/dist/senml/lwm2mToSenML.js +8 -8
  59. package/dist/senml/lwm2mToSenML.spec.js +42 -42
  60. package/dist/senml/parseResourceId.js +1 -1
  61. package/dist/senml/parseResourceId.spec.js +6 -6
  62. package/dist/senml/senMLtoLwM2M.js +14 -14
  63. package/dist/senml/senMLtoLwM2M.spec.js +53 -53
  64. package/dist/senml/validateSenML.js +2 -2
  65. package/dist/senml/validateSenML.spec.js +11 -11
  66. package/package.json +4 -8
  67. package/dist/api/ResourceUpdate.js +0 -17
  68. package/dist/api/ResourceUpdate.spec.js +0 -26
@@ -261,16 +261,16 @@ function _ts_values(o) {
261
261
  };
262
262
  throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
263
263
  }
264
- import chalk from "chalk";
265
- import { readFile, readdir, stat } from "node:fs/promises";
266
- import path, { parse } from "node:path";
267
- import assert from "node:assert/strict";
268
- import xml2js from "xml2js";
269
- import { exec } from "node:child_process";
270
- import { unwrapNestedArray } from "./unwrapNestedArray.js";
271
- import { LWM2MObjectDefinition } from "./LWM2MObjectDefinition.js";
272
- import { validate } from "../validate.js";
273
- import { parseRangeEnumeration } from "./parseRangeEnumeration.js";
264
+ import chalk from 'chalk';
265
+ import { readFile, readdir, stat } from 'node:fs/promises';
266
+ import path, { parse } from 'node:path';
267
+ import assert from 'node:assert/strict';
268
+ import xml2js from 'xml2js';
269
+ import { exec } from 'node:child_process';
270
+ import { unwrapNestedArray } from './unwrapNestedArray.js';
271
+ import { LWM2MObjectDefinition } from './LWM2MObjectDefinition.js';
272
+ import { validate } from '../validate.js';
273
+ import { parseRangeEnumeration } from './parseRangeEnumeration.js';
274
274
  var v = validate(LWM2MObjectDefinition);
275
275
  var listLwm2mDefinitions = function() {
276
276
  var _ref = _async_to_generator(function(modelDir) {
@@ -301,13 +301,13 @@ var listLwm2mDefinitions = function() {
301
301
  case 0:
302
302
  _ref = _step.value;
303
303
  file = _ref;
304
- if (!file.endsWith(".xml")) return [
304
+ if (!file.endsWith('.xml')) return [
305
305
  2,
306
306
  "continue"
307
307
  ];
308
- console.log(chalk.white("\xb7"), chalk.white.bold(file));
309
- assert.match(file, /^[0-9]+\.xml$/, "LwM2M object definition files must only have numbers in their file names");
310
- console.log(chalk.green(""), chalk.gray("File name is correct"));
308
+ console.log(chalk.white('·'), chalk.white.bold(file));
309
+ assert.match(file, /^[0-9]+\.xml$/, 'LwM2M object definition files must only have numbers in their file names');
310
+ console.log(chalk.green(''), chalk.gray('File name is correct'));
311
311
  objectDefinitionFile = path.join(modelDir, file);
312
312
  return [
313
313
  4,
@@ -321,7 +321,7 @@ var listLwm2mDefinitions = function() {
321
321
  return [
322
322
  4,
323
323
  new Promise(function(resolve) {
324
- return exec("xmllint --noout --schema ".concat(path.join(process.cwd(), "lwm2m", "LWM2M-v1_1.xsd"), " ").concat(objectDefinitionFile), function(error, _, stderr) {
324
+ return exec("xmllint --noout --schema ".concat(path.join(process.cwd(), 'lwm2m', 'LWM2M-v1_1.xsd'), " ").concat(objectDefinitionFile), function(error, _, stderr) {
325
325
  if (error) {
326
326
  console.error(stderr);
327
327
  return resolve(false);
@@ -332,16 +332,16 @@ var listLwm2mDefinitions = function() {
332
332
  ];
333
333
  case 2:
334
334
  schemaValidated = _state.sent();
335
- assert.equal(schemaValidated, true, "");
336
- console.log(chalk.green(""), chalk.gray("Is a valid LwM2M object definition"));
335
+ assert.equal(schemaValidated, true, '');
336
+ console.log(chalk.green(''), chalk.gray('Is a valid LwM2M object definition'));
337
337
  ObjectID = parseInt(parse(objectDefinitionFile).name, 10);
338
- assert.equal(ObjectID > 14200, true, "ObjectID must be greater than 14200");
339
- assert.equal(ObjectID < 15000, true, "ObjectID must be smaller than 15000");
338
+ assert.equal(ObjectID > 14200, true, 'ObjectID must be greater than 14200');
339
+ assert.equal(ObjectID < 15000, true, 'ObjectID must be smaller than 15000');
340
340
  ObjectURN = "urn:oma:lwm2m:x:".concat(ObjectID);
341
341
  _ = xml2js.parseStringPromise;
342
342
  return [
343
343
  4,
344
- readFile(objectDefinitionFile, "utf-8")
344
+ readFile(objectDefinitionFile, 'utf-8')
345
345
  ];
346
346
  case 3:
347
347
  return [
@@ -356,9 +356,9 @@ var listLwm2mDefinitions = function() {
356
356
  ]).LWM2M.Object;
357
357
  assert.equal(ObjectID.toString(), definition.ObjectID, "ObjectID must match filename");
358
358
  assert.equal(ObjectURN, definition.ObjectURN, "ObjectURN must follow schema");
359
- console.log(chalk.green(""), chalk.blue(ObjectURN), chalk.gray("ObjectID and URN match filename and schema"));
359
+ console.log(chalk.green(''), chalk.blue(ObjectURN), chalk.gray('ObjectID and URN match filename and schema'));
360
360
  objectDef = _object_spread_props(_object_spread({}, definition), {
361
- LWM2MVersion: "1.1",
361
+ LWM2MVersion: '1.1',
362
362
  Resources: definition.Resources.Item.reduce(function(resources, _param) {
363
363
  var $ = _param.$, item = _object_without_properties(_param, [
364
364
  "$"
@@ -366,33 +366,33 @@ var listLwm2mDefinitions = function() {
366
366
  if (resources[$.ID] !== undefined) throw new Error("Duplicate resource ID: ".concat($.ID));
367
367
  if (item.RangeEnumeration.length > 0) {
368
368
  var maybeRange = parseRangeEnumeration(item.RangeEnumeration);
369
- if ("error" in maybeRange) throw maybeRange.error;
369
+ if ('error' in maybeRange) throw maybeRange.error;
370
370
  }
371
371
  return _object_spread_props(_object_spread({}, resources), _define_property({}, $.ID, item));
372
372
  }, {})
373
373
  });
374
374
  maybeValid = v(objectDef);
375
- if ("errors" in maybeValid) {
375
+ if ('errors' in maybeValid) {
376
376
  console.error(maybeValid.errors);
377
377
  throw new Error("The definition should be valid!");
378
378
  }
379
- console.log(chalk.green(""), chalk.gray("LwM2M limitations are honored"));
379
+ console.log(chalk.green(''), chalk.gray('LwM2M limitations are honored'));
380
380
  defs.push(maybeValid.value);
381
381
  _maybeValid_value = maybeValid.value, Name = _maybeValid_value.Name, Resources = _maybeValid_value.Resources;
382
382
  TimeResources = Object.values(Resources).filter(function(param) {
383
383
  var Type = param.Type;
384
- return Type === "Time";
384
+ return Type === 'Time';
385
385
  });
386
- assert.equal(TimeResources.length, 1, "Objects must define one Time resource");
387
- assert.equal((_TimeResources_ = TimeResources[0]) === null || _TimeResources_ === void 0 ? void 0 : _TimeResources_.Mandatory, "Mandatory", "The Time resources must be mandatory.");
388
- console.log(chalk.green(""), chalk.gray("Object has one time resource (".concat((_TimeResources_1 = TimeResources[0]) === null || _TimeResources_1 === void 0 ? void 0 : _TimeResources_1.Name, ")")));
386
+ assert.equal(TimeResources.length, 1, 'Objects must define one Time resource');
387
+ assert.equal((_TimeResources_ = TimeResources[0]) === null || _TimeResources_ === void 0 ? void 0 : _TimeResources_.Mandatory, 'Mandatory', 'The Time resources must be mandatory.');
388
+ console.log(chalk.green(''), chalk.gray("Object has one time resource (".concat((_TimeResources_1 = TimeResources[0]) === null || _TimeResources_1 === void 0 ? void 0 : _TimeResources_1.Name, ")")));
389
389
  console.log("".concat(chalk.yellow(ObjectID), ":"), chalk.white(Name));
390
390
  _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
391
391
  try {
392
392
  for(_iterator = Object.entries(Resources)[Symbol.iterator](); !(_iteratorNormalCompletion = (_step1 = _iterator.next()).done); _iteratorNormalCompletion = true){
393
393
  _step_value = _sliced_to_array(_step1.value, 2), id = _step_value[0], resource = _step_value[1];
394
394
  ;
395
- console.log("".concat(chalk.gray(ObjectID), ".").concat(chalk.yellow(id), ":"), chalk.white(resource.Name), "".concat(chalk.gray(resource.Type), " ").concat(chalk.gray("(".concat((_resource_Units = resource.Units) !== null && _resource_Units !== void 0 ? _resource_Units : "no unit", ")"))));
395
+ console.log("".concat(chalk.gray(ObjectID), ".").concat(chalk.yellow(id), ":"), chalk.white(resource.Name), "".concat(chalk.gray(resource.Type), " ").concat(chalk.gray("(".concat((_resource_Units = resource.Units) !== null && _resource_Units !== void 0 ? _resource_Units : 'no unit', ")"))));
396
396
  }
397
397
  } catch (err) {
398
398
  _didIteratorError = true;
@@ -473,8 +473,8 @@ var listLwm2mDefinitions = function() {
473
473
  };
474
474
  }();
475
475
  // LwM2M
476
- console.log(chalk.gray("LwM2M rules check"));
477
- console.log("");
478
- var lwm2mDir = path.join(process.cwd(), "lwm2m");
476
+ console.log(chalk.gray('LwM2M rules check'));
477
+ console.log('');
478
+ var lwm2mDir = path.join(process.cwd(), 'lwm2m');
479
479
  var lwm2mDefinitions = await listLwm2mDefinitions(lwm2mDir);
480
- assert.equal(lwm2mDefinitions.length > 0, true, "LwM2M objects must be defined.");
480
+ assert.equal(lwm2mDefinitions.length > 0, true, 'LwM2M objects must be defined.');
@@ -32,7 +32,7 @@ var _obj;
32
32
  min: -90,
33
33
  max: 90
34
34
  },
35
- Units: "\xb0"
35
+ Units: "\u00B0"
36
36
  },
37
37
  /**
38
38
  * Longitude (Float)
@@ -51,7 +51,7 @@ var _obj;
51
51
  min: -180,
52
52
  max: 180
53
53
  },
54
- Units: "\xb0"
54
+ Units: "\u00B0"
55
55
  },
56
56
  /**
57
57
  * Altitude (Float)
@@ -106,7 +106,7 @@ var _obj;
106
106
  min: 0,
107
107
  max: 360
108
108
  },
109
- Units: "\xb0"
109
+ Units: "\u00B0"
110
110
  },
111
111
  /**
112
112
  * Source (String)
@@ -432,7 +432,7 @@ var _obj;
432
432
  Mandatory: false,
433
433
  Type: ResourceType.Float,
434
434
  Description: "Environmental temperature in Celsius. Examples: 23.5, -10.2.",
435
- Units: "\xb0C"
435
+ Units: "\u00B0C"
436
436
  },
437
437
  /**
438
438
  * Humidity (Float)
@@ -147,9 +147,9 @@ function _ts_generator(thisArg, body) {
147
147
  };
148
148
  }
149
149
  }
150
- import xml2js from "xml2js";
151
- import { readFile } from "node:fs/promises";
152
- import path from "node:path";
150
+ import xml2js from 'xml2js';
151
+ import { readFile } from 'node:fs/promises';
152
+ import path from 'node:path';
153
153
  /**
154
154
  * From XML to JSON
155
155
  */ export var fromXML2JSON = function() {
@@ -170,7 +170,7 @@ import path from "node:path";
170
170
  _ = xml2js.parseStringPromise;
171
171
  return [
172
172
  4,
173
- readFile(subDir("lwm2m", "".concat(id, ".xml")), "utf-8")
173
+ readFile(subDir('lwm2m', "".concat(id, ".xml")), 'utf-8')
174
174
  ];
175
175
  case 1:
176
176
  return [
@@ -1,5 +1,5 @@
1
- import { definitions } from "./definitions.js";
2
- import { timestampResources } from "./timestampResources.js";
1
+ import { definitions } from './definitions.js';
2
+ import { timestampResources } from './timestampResources.js';
3
3
  export var instanceTs = function(instance) {
4
4
  var definition = definitions[instance.ObjectID];
5
5
  var tsResourceId = timestampResources[definition.ObjectID]// All registered objects must have a timestamp resource
@@ -1,16 +1,16 @@
1
- import { describe, it } from "node:test";
2
- import assert from "node:assert/strict";
3
- import { instanceTs } from "./instanceTs.js";
4
- void describe("instanceTs()", function() {
5
- void it("should return the timestamp of the instance", function() {
1
+ import { describe, it } from 'node:test';
2
+ import assert from 'node:assert/strict';
3
+ import { instanceTs } from './instanceTs.js';
4
+ void describe('instanceTs()', function() {
5
+ void it('should return the timestamp of the instance', function() {
6
6
  return assert.equal(instanceTs({
7
7
  ObjectID: 14210,
8
- ObjectVersion: "1.0",
8
+ ObjectVersion: '1.0',
9
9
  Resources: {
10
- "0": 3.5399999618530273,
11
- "1": 4.168000221252441,
12
- "99": "2024-02-23T10:18:20.474Z"
10
+ '0': 3.5399999618530273,
11
+ '1': 4.168000221252441,
12
+ '99': '2024-02-23T10:18:20.474Z'
13
13
  }
14
- }).getTime(), new Date("2024-02-23T10:18:20.474Z").getTime());
14
+ }).getTime(), new Date('2024-02-23T10:18:20.474Z').getTime());
15
15
  });
16
16
  });
@@ -1,3 +1,3 @@
1
- import { validators } from "./validators.js";
2
- import { validate } from "./validate.js";
1
+ import { validators } from './validators.js';
2
+ import { validate } from './validate.js';
3
3
  export var isRegisteredLwM2MObject = validate(validators);
@@ -1,11 +1,11 @@
1
- import { describe, it } from "node:test";
2
- import assert from "node:assert/strict";
3
- import { isRegisteredLwM2MObject } from "./isRegisteredLwM2MObject.js";
4
- void describe("isRegisteredLwM2MObject()", function() {
5
- void it("should validate a LwM2M object", function() {
1
+ import { describe, it } from 'node:test';
2
+ import assert from 'node:assert/strict';
3
+ import { isRegisteredLwM2MObject } from './isRegisteredLwM2MObject.js';
4
+ void describe('isRegisteredLwM2MObject()', function() {
5
+ void it('should validate a LwM2M object', function() {
6
6
  var o = {
7
7
  ObjectID: 14201,
8
- ObjectVersion: "1.0",
8
+ ObjectVersion: '1.0',
9
9
  Resources: {
10
10
  0: 33.98771459323253,
11
11
  1: -84.50632147267358,
@@ -13,29 +13,29 @@ void describe("isRegisteredLwM2MObject()", function() {
13
13
  3: 11.317643165588379,
14
14
  4: 0.03478508070111275,
15
15
  5: 90.31222534179688,
16
- 6: "GNSS",
16
+ 6: 'GNSS',
17
17
  99: new Date(1699049744000)
18
18
  }
19
19
  };
20
20
  assert.equal(isRegisteredLwM2MObject(o), true);
21
21
  });
22
- void it("should validate a LwM2M object with optional resources", function() {
22
+ void it('should validate a LwM2M object with optional resources', function() {
23
23
  var o = {
24
24
  ObjectID: 14201,
25
- ObjectVersion: "1.0",
25
+ ObjectVersion: '1.0',
26
26
  Resources: {
27
27
  0: 33.98771459323253,
28
28
  1: -84.50632147267358,
29
- 6: "GNSS",
29
+ 6: 'GNSS',
30
30
  99: new Date(1699049744000)
31
31
  }
32
32
  };
33
33
  assert.equal(isRegisteredLwM2MObject(o), true);
34
34
  });
35
- void it("should not validate an unknown LwM2M object", function() {
35
+ void it('should not validate an unknown LwM2M object', function() {
36
36
  var o = {
37
37
  ObjectID: 666,
38
- ObjectVersion: "1.0",
38
+ ObjectVersion: '1.0',
39
39
  Resources: {
40
40
  0: 42
41
41
  }
@@ -1,4 +1,4 @@
1
- import { RangeEnumerationRegExp } from "./LWM2MObjectDefinition.js";
1
+ import { RangeEnumerationRegExp } from './LWM2MObjectDefinition.js';
2
2
  export var parseRangeEnumeration = function(re) {
3
3
  var match = RangeEnumerationRegExp.exec(re);
4
4
  if (match === null) return {
@@ -1,10 +1,10 @@
1
- import { describe, it } from "node:test";
2
- import assert from "node:assert/strict";
3
- import { parseRangeEnumeration } from "./parseRangeEnumeration.js";
4
- import { RangeEnumerationRegExp } from "./LWM2MObjectDefinition.js";
5
- void describe("parseRangeEnumeration()", function() {
6
- void it("should parse valid range enumeration", function() {
7
- var result = parseRangeEnumeration("1..10");
1
+ import { describe, it } from 'node:test';
2
+ import assert from 'node:assert/strict';
3
+ import { parseRangeEnumeration } from './parseRangeEnumeration.js';
4
+ import { RangeEnumerationRegExp } from './LWM2MObjectDefinition.js';
5
+ void describe('parseRangeEnumeration()', function() {
6
+ void it('should parse valid range enumeration', function() {
7
+ var result = parseRangeEnumeration('1..10');
8
8
  assert.deepEqual(result, {
9
9
  range: {
10
10
  min: 1,
@@ -12,14 +12,14 @@ void describe("parseRangeEnumeration()", function() {
12
12
  }
13
13
  });
14
14
  });
15
- void it("should handle invalid range enumeration", function() {
16
- var result = parseRangeEnumeration("10..1");
15
+ void it('should handle invalid range enumeration', function() {
16
+ var result = parseRangeEnumeration('10..1');
17
17
  assert.deepEqual(result, {
18
18
  error: new Error("'min' must be smaller than 'max' in RangeEnumeration '10..1'!")
19
19
  });
20
20
  });
21
- void it("should handle invalid input", function() {
22
- var result = parseRangeEnumeration("invalid");
21
+ void it('should handle invalid input', function() {
22
+ var result = parseRangeEnumeration('invalid');
23
23
  assert.deepEqual(result, {
24
24
  error: new Error("Could not match 'invalid' against ".concat(RangeEnumerationRegExp, "!"))
25
25
  });
@@ -99,10 +99,10 @@ function _unsupported_iterable_to_array(o, minLen) {
99
99
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
100
100
  }
101
101
  export var unwrapNestedArray = function(object) {
102
- if (typeof object === "string") return object;
102
+ if (typeof object === 'string') return object;
103
103
  return Object.entries(object).reduce(function(result, param) {
104
104
  var _param = _sliced_to_array(param, 2), k = _param[0], v = _param[1];
105
- if (typeof v === "string") return _object_spread_props(_object_spread({}, result), _define_property({}, k, v));
105
+ if (typeof v === 'string') return _object_spread_props(_object_spread({}, result), _define_property({}, k, v));
106
106
  if (Array.isArray(v)) {
107
107
  if (v.length === 1) {
108
108
  return _object_spread_props(_object_spread({}, result), _define_property({}, k, unwrapNestedArray(v[0])));