@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.
- package/file/FileUtilities.js +2 -1
- package/package.json +1 -1
- package/timelineTypes.js +11 -2
package/file/FileUtilities.js
CHANGED
package/package.json
CHANGED
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 =
|
|
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;
|