alphatheta-connect 0.21.3 → 0.21.5

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.
@@ -65,7 +65,7 @@ export declare const UInt8: {
65
65
  data: Buffer;
66
66
  };
67
67
  type: NumberFieldType;
68
- bytesToRead: 1 | 2 | 4;
68
+ bytesToRead: 1 | 4 | 2;
69
69
  };
70
70
  /**
71
71
  * Field representing a UInt16
@@ -81,7 +81,7 @@ export declare const UInt16: {
81
81
  data: Buffer;
82
82
  };
83
83
  type: NumberFieldType;
84
- bytesToRead: 1 | 2 | 4;
84
+ bytesToRead: 1 | 4 | 2;
85
85
  };
86
86
  /**
87
87
  * Field representing a UInt32
@@ -97,7 +97,7 @@ export declare const UInt32: {
97
97
  data: Buffer;
98
98
  };
99
99
  type: NumberFieldType;
100
- bytesToRead: 1 | 2 | 4;
100
+ bytesToRead: 1 | 4 | 2;
101
101
  };
102
102
  /**
103
103
  * Field representing a null-terminated big endian UTF-16 string
@@ -131,7 +131,7 @@ declare const fieldMap: {
131
131
  data: Buffer;
132
132
  };
133
133
  type: NumberFieldType;
134
- bytesToRead: 1 | 2 | 4;
134
+ bytesToRead: 1 | 4 | 2;
135
135
  };
136
136
  readonly 16: {
137
137
  new (value: number | Buffer): {
@@ -144,7 +144,7 @@ declare const fieldMap: {
144
144
  data: Buffer;
145
145
  };
146
146
  type: NumberFieldType;
147
- bytesToRead: 1 | 2 | 4;
147
+ bytesToRead: 1 | 4 | 2;
148
148
  };
149
149
  readonly 17: {
150
150
  new (value: number | Buffer): {
@@ -157,7 +157,7 @@ declare const fieldMap: {
157
157
  data: Buffer;
158
158
  };
159
159
  type: NumberFieldType;
160
- bytesToRead: 1 | 2 | 4;
160
+ bytesToRead: 1 | 4 | 2;
161
161
  };
162
162
  readonly 20: typeof Binary;
163
163
  readonly 38: typeof String;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alphatheta-connect",
3
- "version": "0.21.3",
3
+ "version": "0.21.5",
4
4
  "main": "lib/index.js",
5
5
  "author": "Evan Purkhiser <evanpurkhiser@gmail.com>",
6
6
  "contributors": [
@@ -58,7 +58,7 @@
58
58
  "@types/promise-timeout": "^1.3.3",
59
59
  "@types/signale": "^1.4.7",
60
60
  "async-mutex": "^0.5.0",
61
- "better-sqlite3-multiple-ciphers": "^12.5.0",
61
+ "better-sqlite3-multiple-ciphers": "^12.9.0",
62
62
  "iconv-lite": "^0.6.3",
63
63
  "ip-address": "^10.1.0",
64
64
  "js-xdr": "^3.1.2",
@@ -105,10 +105,14 @@
105
105
  },
106
106
  "overrides": {
107
107
  "rollup": ">=4.59.0",
108
- "serialize-javascript": ">=7.0.3"
108
+ "serialize-javascript": ">=7.0.3",
109
+ "nan": "^2.28.0"
109
110
  },
110
111
  "volta": {
111
112
  "node": "22.13.0",
112
113
  "yarn": "1.22.22"
114
+ },
115
+ "resolutions": {
116
+ "nan": "^2.28.0"
113
117
  }
114
118
  }