@engine9-io/input-tools 1.6.8 → 1.6.9

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/package.json +1 -1
  2. package/timelineTypes.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@engine9-io/input-tools",
3
- "version": "1.6.8",
3
+ "version": "1.6.9",
4
4
  "description": "Tools for dealing with Engine9 inputs",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/timelineTypes.js CHANGED
@@ -60,6 +60,9 @@ const MESSAGE_CONVERSION_ADVOCACY = 64;
60
60
  // unknown transaction conversion on a message
61
61
  const MESSAGE_CONVERSION_TRANSACTION = 65;
62
62
 
63
+ const MESSAGE_DELIVERY_FAILURE_SHOULD_RETRY = 66;
64
+ const MESSAGE_DELIVERY_FAILURE_SHOULD_NOT_RETRY = 66;
65
+
63
66
  const FORM_ADVOCACY = 66;
64
67
 
65
68
  const FILE_IMPORT = 70;
@@ -129,6 +132,8 @@ const TIMELINE_ENTRY_TYPES = {
129
132
  MESSAGE_CONVERSION,
130
133
  MESSAGE_CONVERSION_ADVOCACY,
131
134
  MESSAGE_CONVERSION_TRANSACTION,
135
+ MESSAGE_DELIVERY_FAILURE_SHOULD_RETRY,
136
+ MESSAGE_DELIVERY_FAILURE_SHOULD_NOT_RETRY,
132
137
 
133
138
  FILE_IMPORT,
134
139
  EXPORT,