@or-sdk/files 3.8.0-beta.3859.0 → 3.8.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.8.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/files@3.7.3...@or-sdk/files@3.8.0) (2025-10-24)
7
+
8
+
9
+ ### Features
10
+
11
+ * **files:** allow to upload files as ReadStream in Node.js ([7c7462e](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/7c7462e76376f6d5bdb8a82573674669a0a10108))
12
+
13
+
14
+
6
15
  ## [3.7.3](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/files@3.7.2...@or-sdk/files@3.7.3) (2025-10-14)
7
16
 
8
17
  **Note:** Version bump only for package @or-sdk/files
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@or-sdk/files",
3
- "version": "3.8.0-beta.3859.0",
3
+ "version": "3.8.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
+ "browser": {
8
+ "form-data": false
9
+ },
7
10
  "types": "dist/types/index.d.ts",
8
11
  "scripts": {
9
12
  "build": "pnpm clean && pnpm build:esm & pnpm build:cjs",
@@ -29,7 +32,5 @@
29
32
  "publishConfig": {
30
33
  "access": "public"
31
34
  },
32
- "browser": {
33
- "form-data": false
34
- }
35
+ "gitHead": "7f70ce6acaa0706c95d410017ee120a21e752d4f"
35
36
  }