utilitas 1995.2.16 → 1995.2.18
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 +6 -3
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/bot.mjs +7 -10
- package/lib/dbio.mjs +19 -5
- package/lib/manifest.mjs +8 -7
- package/lib/speech.mjs +13 -8
- package/lib/storage.mjs +32 -34
- package/lib/vision.mjs +24 -5
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Works in Node.js and modern browsers.
|
|
|
20
20
|
|
|
21
21
|
| symbol | type | params / value |
|
|
22
22
|
| :--- | :--- | :--- |
|
|
23
|
-
| _NEED | Array |
|
|
23
|
+
| _NEED | Array | telegraf |
|
|
24
24
|
| default | AsyncFunction | options |
|
|
25
25
|
| BINARY_STRINGS | Array | off,on |
|
|
26
26
|
| COMMAND_DESCRIPTION_LENGTH | Number | 256 |
|
|
@@ -124,9 +124,11 @@ Works in Node.js and modern browsers.
|
|
|
124
124
|
| deleteByKeyValue | AsyncFunction | table, key, value, options |
|
|
125
125
|
| desc | AsyncFunction | table, options |
|
|
126
126
|
| drop | AsyncFunction | table, options |
|
|
127
|
-
| enableVector | AsyncFunction |
|
|
127
|
+
| enableVector | AsyncFunction | |
|
|
128
|
+
| encodeVector | AsyncFunction | |
|
|
128
129
|
| end | AsyncFunction | options |
|
|
129
130
|
| execute | AsyncFunction | ...args |
|
|
131
|
+
| getPgvector | AsyncFunction | |
|
|
130
132
|
| getProvider | AsyncFunction | |
|
|
131
133
|
| indexes | AsyncFunction | table, options |
|
|
132
134
|
| init | AsyncFunction | options |
|
|
@@ -512,7 +514,7 @@ Works in Node.js and modern browsers.
|
|
|
512
514
|
|
|
513
515
|
| symbol | type | params / value |
|
|
514
516
|
| :--- | :--- | :--- |
|
|
515
|
-
| _NEED | Array | @google-cloud/vision,pdfjs-dist,tesseract.js |
|
|
517
|
+
| _NEED | Array | @google-cloud/vision,office-text-extractor,pdfjs-dist,tesseract.js |
|
|
516
518
|
| annotateImage | AsyncFunction | image, options |
|
|
517
519
|
| getPdfInfo | AsyncFunction | file, options |
|
|
518
520
|
| getPdfPage | AsyncFunction | doc, pageNum |
|
|
@@ -521,6 +523,7 @@ Works in Node.js and modern browsers.
|
|
|
521
523
|
| ocrImage | AsyncFunction | image, options |
|
|
522
524
|
| ocrImageGoogle | AsyncFunction | image, options |
|
|
523
525
|
| ocrImageTesseract | AsyncFunction | image, options |
|
|
526
|
+
| parseOfficeFile | AsyncFunction | input, options |
|
|
524
527
|
| read | AsyncFunction | image, options |
|
|
525
528
|
| readAll | AsyncFunction | image, options |
|
|
526
529
|
| see | AsyncFunction | image, options |
|