aba-pos-sdk-node 1.0.6 → 1.0.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/README.md +28 -1
- package/package.json +2 -3
- package/CHANGELOG.md +0 -23
package/README.md
CHANGED
|
@@ -228,6 +228,33 @@ try {
|
|
|
228
228
|
| -10003 | Memory error |
|
|
229
229
|
| -10004 | Illegal state error |
|
|
230
230
|
|
|
231
|
-
|
|
232
231
|
## Other Available Functionalities
|
|
233
232
|
To know more about other functionalities offered by ABA POS and more details about the request and response, please see the document ```ABA POS Integration Specification.pdf``` provided by the ABA Team. Please do not hesitate to contact us if you have any questions.
|
|
233
|
+
|
|
234
|
+
## Changelog
|
|
235
|
+
## [1.0.7]
|
|
236
|
+
- Added Changelog in README.md and remove CHANGELOG.md from package. NPM doesn't support it.
|
|
237
|
+
|
|
238
|
+
## [1.0.6]
|
|
239
|
+
- Fixed: Missing CHANGELOG.md file.
|
|
240
|
+
|
|
241
|
+
## [1.0.5]
|
|
242
|
+
- Added CHANGELOG.md to see what's new in each release
|
|
243
|
+
|
|
244
|
+
## [1.0.4]
|
|
245
|
+
- Support macOS Arm64 and Windows Arm64
|
|
246
|
+
- Breaking changes: _waitForResponse() is private now. You should get response from sendDataByUsb and sendDataByIp directly.
|
|
247
|
+
- Remove broken Linux core library. The new core library will be available in the next release.
|
|
248
|
+
- Fixed: Never receive response after sending data.
|
|
249
|
+
|
|
250
|
+
## [1.0.3]
|
|
251
|
+
- Bug fixes
|
|
252
|
+
|
|
253
|
+
## [1.0.2]
|
|
254
|
+
- Bug fixes
|
|
255
|
+
|
|
256
|
+
## [1.0.1]
|
|
257
|
+
- Bug fixes
|
|
258
|
+
|
|
259
|
+
## [1.0.0]
|
|
260
|
+
- Initial release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aba-pos-sdk-node",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "Node.js Addons for ABA POS SDK developed by ABA Bank. This package allows you to connect with the ABA POS terminal.",
|
|
5
5
|
"main": "aba_pos_sdk.min.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"aba_pos_sdk.min.js",
|
|
34
34
|
"addons/",
|
|
35
|
-
"README.md"
|
|
36
|
-
"CHANGELOG.md"
|
|
35
|
+
"README.md"
|
|
37
36
|
]
|
|
38
37
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
## [1.0.6]
|
|
2
|
-
- Fixed: Missing CHANGELOG.md file.
|
|
3
|
-
|
|
4
|
-
## [1.0.5]
|
|
5
|
-
- Added CHANGELOG.md to see what's new in each release
|
|
6
|
-
|
|
7
|
-
## [1.0.4]
|
|
8
|
-
- Support macOS Arm64 and Windows Arm64
|
|
9
|
-
- Breaking changes: _waitForResponse() is private now. You should get response from sendDataByUsb and sendDataByIp directly.
|
|
10
|
-
- Remove broken Linux core library. The new core library will be available in the next release.
|
|
11
|
-
- Fixed: Never receive response after sending data.
|
|
12
|
-
|
|
13
|
-
## [1.0.3]
|
|
14
|
-
- Bug fixes
|
|
15
|
-
|
|
16
|
-
## [1.0.2]
|
|
17
|
-
- Bug fixes
|
|
18
|
-
|
|
19
|
-
## [1.0.1]
|
|
20
|
-
- Bug fixes
|
|
21
|
-
|
|
22
|
-
## [1.0.0]
|
|
23
|
-
- Initial release
|