@ricado/api-client 2.1.0 → 2.1.1
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 +5 -7
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +24 -2
- package/lib/Controllers/Packhouse/Site/SoftSortBeltController.js +453 -0
- package/lib/Controllers/Packhouse/Site/index.js +3 -0
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +260 -4
- package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +235 -0
- package/lib/Models/Packhouse/Site/index.js +3 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +471 -3
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +24 -2
- package/src/Controllers/Packhouse/Site/SoftSortBeltController.js +474 -0
- package/src/Controllers/Packhouse/Site/index.js +2 -0
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +297 -4
- package/src/Models/Packhouse/Site/SoftSortBeltModel.js +215 -0
- package/src/Models/Packhouse/Site/index.js +2 -0
- package/src/PackageVersion.js +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# RICADO Gen 4 API JS Client
|
|
4
4
|
|
|
5
|
-
RICADO Gen 4 API client for
|
|
5
|
+
RICADO Gen 4 API client for NodeJS and Browsers
|
|
6
6
|
|
|
7
|
-
- Written in modern JavaScript.
|
|
7
|
+
- Written in modern JavaScript. Tested for NodeJS 16+ and Browsers
|
|
8
|
+
- Includes Typings for Typescript
|
|
8
9
|
- Complete support for the RICADO Gen 4 API - [OpenAPI Documentation](https://ricado-group.github.io/php-rest-api-docs)
|
|
9
10
|
- Perfect symmetry: JS method signatures match the Web API Docs
|
|
10
|
-
-
|
|
11
|
+
- All methods return a `Promise`
|
|
11
12
|
- The Authentication Token is automatically handled on all methods
|
|
12
13
|
|
|
13
14
|
**NOTE:** All examples written in this README use the NodeJS (ES5) Specification.
|
|
@@ -340,7 +341,4 @@ In the mean-time, if you wish to contribute, please either create a new branch (
|
|
|
340
341
|
|
|
341
342
|
## TODO
|
|
342
343
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
- Support generating this README.md from a Template so we can inject some code examples and types automatically!
|
|
346
|
-
- Provide a ready-to-go pre-built version of this package as ricado-api-client.js in `dist`
|
|
344
|
+
- Support generating this README.md from a Template so we can inject some code examples and types automatically!
|