@engine9-io/input-tools 2.0.2 → 2.0.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 (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -253,7 +253,7 @@ function getTimelineEntryUUID(inputObject, { defaults = {} } = {}) {
253
253
  // get a temp ID
254
254
  if (!o.input_id)
255
255
  throw new Error('Error generating timeline entry uuid -- remote_entry_id specified, but no input_id');
256
- const uuid = uuidv5(o.remote_entry_id, o.input_id);
256
+ const uuid = uuidv5(String(o.remote_entry_id), o.input_id);
257
257
  // Change out the ts to match the v7 sorting.
258
258
  // But because outside specified remote_entry_uuid
259
259
  // may not match this standard, uuid sorting isn't guaranteed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engine9-io/input-tools",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "type": "module",
5
5
  "description": "Tools for dealing with Engine9 inputs",
6
6
  "main": "index.js",