@engine9-io/input-tools 1.8.6 → 1.8.7

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.
@@ -781,7 +781,8 @@ Worker.prototype.moveAll = async function (options) {
781
781
  };
782
782
  Worker.prototype.moveAll.metadata = {
783
783
  options: {
784
- directory: { required: true }
784
+ directory: { required: true },
785
+ targetDirectory: { required: true }
785
786
  }
786
787
  };
787
788
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engine9-io/input-tools",
3
- "version": "1.8.6",
3
+ "version": "1.8.7",
4
4
  "description": "Tools for dealing with Engine9 inputs",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/timelineTypes.js CHANGED
@@ -76,7 +76,13 @@ const EXPORT = 80;
76
76
  const EXPORT_FOR_REMOTE = 81;
77
77
 
78
78
  // Export specifically for sending out messages
79
- const EXPORT_FOR_MESSAGING = 81;
79
+ const EXPORT_FOR_MESSAGING = 82;
80
+
81
+ //These are for actions we may not have exact
82
+ // details on, but are useful for modeling, etc
83
+ const INFERRED_ENTRY = 91;
84
+ const INFERRED_MESSAGE = 92;
85
+ const INFERRED_FORM = 93;
80
86
 
81
87
  // DO. NOT. CHANGE. (once finalized)
82
88
  // should probably have offsets between types
@@ -140,7 +146,10 @@ const TIMELINE_ENTRY_TYPES = {
140
146
  FILE_IMPORT,
141
147
  EXPORT,
142
148
  EXPORT_FOR_REMOTE,
143
- EXPORT_FOR_MESSAGING
149
+ EXPORT_FOR_MESSAGING,
150
+ INFERRED_ENTRY,
151
+ INFERRED_MESSAGE,
152
+ INFERRED_FORM
144
153
  };
145
154
  Object.entries(TIMELINE_ENTRY_TYPES).forEach(([k, v]) => {
146
155
  TIMELINE_ENTRY_TYPES[v] = k;