@unito/integration-api 0.46.2 → 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.
@@ -1,4 +1,4 @@
1
- import stream from 'node:stream';
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: stream.Readable;
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.2",
3
+ "version": "0.46.3",
4
4
  "description": "The Unito Integration API",
5
5
  "type": "module",
6
6
  "types": "./dist/src/index.d.ts",