utilitas 1993.3.21 → 1993.3.22
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 +9 -0
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/index.mjs +2 -1
- package/lib/bot.mjs +35 -8
- package/lib/encryption.mjs +12 -0
- package/lib/manifest.mjs +2 -1
- package/lib/speech.mjs +1 -10
- package/lib/vision.mjs +42 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -145,6 +145,7 @@ Works in Node.js and modern browsers.
|
|
|
145
145
|
| :--- | :--- | :--- |
|
|
146
146
|
| defaultAlgorithm | String | sha256 |
|
|
147
147
|
| digestObject | Function | object, algorithm |
|
|
148
|
+
| getApiKeyCredentials | AsyncFunction | options |
|
|
148
149
|
| getSortedQueryString | Function | obj |
|
|
149
150
|
| hash | Function | string, algorithm |
|
|
150
151
|
| hashFile | Function | filename, algorithm |
|
|
@@ -432,6 +433,14 @@ Works in Node.js and modern browsers.
|
|
|
432
433
|
| verifyUuid | Function | uuid |
|
|
433
434
|
| which | AsyncFunction | any |
|
|
434
435
|
|
|
436
|
+
### [vision](./lib/vision.mjs)
|
|
437
|
+
|
|
438
|
+
| symbol | type | params / value |
|
|
439
|
+
| :--- | :--- | :--- |
|
|
440
|
+
| _NEED | Array | @google-cloud/vision |
|
|
441
|
+
| init | AsyncFunction | options |
|
|
442
|
+
| ocrImage | AsyncFunction | image, options |
|
|
443
|
+
|
|
435
444
|
### [web](./lib/web.mjs)
|
|
436
445
|
|
|
437
446
|
| symbol | type | params / value |
|