@or-sdk/idw 8.1.1 → 8.2.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.
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
+ ## [8.2.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/idw@8.1.1...@or-sdk/idw@8.2.0) (2026-02-24)
7
+
8
+
9
+ ### Features
10
+
11
+ * **deployer:** Add methods 'fetchFlowLogsChunk' and 'fetchAllFlowLogs' to fetch flow logs ([6b70992](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/6b70992ce3d1e4f308db69df700528f6eeffafcf))
12
+
13
+
14
+
6
15
  ## [8.1.1](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/idw@8.1.0...@or-sdk/idw@8.1.1) (2026-01-15)
7
16
 
8
17
  **Note:** Version bump only for package @or-sdk/idw
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@or-sdk/idw",
3
- "version": "8.1.1",
3
+ "version": "8.2.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/types/index.d.ts",
8
8
  "scripts": {
9
- "build": "pnpm clean && pnpm build:esm & pnpm build:cjs",
9
+ "build": "pnpm clean && concurrently 'pnpm:build:*(!watch)'",
10
10
  "build:cjs": "tsc --project tsconfig.json",
11
11
  "build:esm": "tsc --project tsconfig.esm.json",
12
12
  "build:types": "tsc --project tsconfig.types.json",
13
- "build:watch": "concurrently -r --hide 1,2 \"pnpm build:watch:cjs\" \"pnpm build:watch:esm\" \"pnpm build:watch:types\"",
13
+ "build:watch": "concurrently 'pnpm:build:watch:*'",
14
14
  "build:watch:cjs": "tsc --project tsconfig.json -w",
15
15
  "build:watch:esm": "tsc --project tsconfig.esm.json -w",
16
16
  "build:watch:types": "tsc --project tsconfig.types.json -w",
@@ -18,9 +18,9 @@
18
18
  "dev": "pnpm build:watch:esm"
19
19
  },
20
20
  "dependencies": {
21
- "@or-sdk/base": "^0.42.5",
22
- "@or-sdk/deployer": "^1.5.6",
23
- "@or-sdk/providers": "^0.2.55"
21
+ "@or-sdk/base": "^0.43.0",
22
+ "@or-sdk/deployer": "^1.6.0",
23
+ "@or-sdk/providers": "^0.3.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "concurrently": "9.0.1",
@@ -29,5 +29,5 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "c6887f491665f09fe3588ef5384d0d3f2d42412d"
32
+ "gitHead": "ce62679c119c54ef41fd0d8f7084c563c3b21b24"
33
33
  }
@@ -5,6 +5,7 @@
5
5
  "rootDir": "./src",
6
6
  "declaration": true,
7
7
  "declarationMap": true,
8
- "emitDeclarationOnly": true
8
+ "emitDeclarationOnly": true,
9
+ "removeComments": false
9
10
  }
10
- }
11
+ }