@unito/integration-api 0.46.1 → 0.46.3
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/dist/src/types.d.ts +2 -2
- package/package.json +2 -2
package/dist/src/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Readable } from 'node:stream';
|
|
2
2
|
/**
|
|
3
3
|
* A Collection represents a paginated list of ItemSummary available through a Relation.
|
|
4
4
|
*/
|
|
@@ -373,7 +373,7 @@ export type CreateItemRequestPayload = Record<string, unknown>;
|
|
|
373
373
|
* A CreateBlobRequestPayload describes the shape of a request on a blob creation endpoint.
|
|
374
374
|
*/
|
|
375
375
|
export type CreateBlobRequestPayload = {
|
|
376
|
-
file:
|
|
376
|
+
file: Readable;
|
|
377
377
|
mimeType: string;
|
|
378
378
|
encoding: string;
|
|
379
379
|
filename: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unito/integration-api",
|
|
3
|
-
"version": "0.46.
|
|
3
|
+
"version": "0.46.3",
|
|
4
4
|
"description": "The Unito Integration API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/src/index.d.ts",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"dist/schemas/**/*"
|
|
17
17
|
],
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": ">=
|
|
19
|
+
"node": ">=18",
|
|
20
20
|
"npm": ">=10"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|