utilitas 1995.2.7 → 1995.2.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.
- package/README.md +5 -2
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/dbio.mjs +114 -38
- package/lib/manifest.mjs +10 -8
- package/lib/shot.mjs +1 -3
- package/lib/vision.mjs +45 -4
- package/package.json +10 -8
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ Works in Node.js and modern browsers.
|
|
|
108
108
|
|
|
109
109
|
| symbol | type | params / value |
|
|
110
110
|
| :--- | :--- | :--- |
|
|
111
|
-
| _NEED | Array | mysql2 |
|
|
111
|
+
| _NEED | Array | mysql2,pg |
|
|
112
112
|
| default | AsyncFunction | options |
|
|
113
113
|
| assembleInsert | Function | table, data, options |
|
|
114
114
|
| assembleQuery | Function | table, options |
|
|
@@ -506,8 +506,11 @@ Works in Node.js and modern browsers.
|
|
|
506
506
|
|
|
507
507
|
| symbol | type | params / value |
|
|
508
508
|
| :--- | :--- | :--- |
|
|
509
|
-
| _NEED | Array | @google-cloud/vision,tesseract.js |
|
|
509
|
+
| _NEED | Array | @google-cloud/vision,pdfjs-dist,tesseract.js |
|
|
510
510
|
| annotateImage | AsyncFunction | image, options |
|
|
511
|
+
| getPdfInfo | AsyncFunction | file, options |
|
|
512
|
+
| getPdfPage | AsyncFunction | doc, pageNum |
|
|
513
|
+
| getPdfPages | AsyncFunction | doc |
|
|
511
514
|
| init | AsyncFunction | options |
|
|
512
515
|
| ocrImage | AsyncFunction | image, options |
|
|
513
516
|
| ocrImageGoogle | AsyncFunction | image, options |
|