Skip to content

Commit 4f3cfe4

Browse files
release: 4.57.0
1 parent 2497be4 commit 4f3cfe4

File tree

4 files changed

+45
-10
lines changed

4 files changed

+45
-10
lines changed

Diff for: .release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "4.56.0"
2+
".": "4.57.0"
33
}

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 4.57.0 (2025-02-15)
4+
5+
Full Changelog: [v4.56.0...v4.57.0](https://github.com/orbcorp/orb-node/compare/v4.56.0...v4.57.0)
6+
7+
### Features
8+
9+
* **api:** api update ([#506](https://github.com/orbcorp/orb-node/issues/506)) ([a8ca5ec](https://github.com/orbcorp/orb-node/commit/a8ca5ec2ac40fc2394b66040c747e53079518ddb))
10+
* **api:** api update ([#508](https://github.com/orbcorp/orb-node/issues/508)) ([e491b0e](https://github.com/orbcorp/orb-node/commit/e491b0ef6a2ac3138847b5dcdda888f5f90a9218))
11+
12+
13+
### Bug Fixes
14+
15+
* **client:** fix export map for index exports ([#509](https://github.com/orbcorp/orb-node/issues/509)) ([c994913](https://github.com/orbcorp/orb-node/commit/c9949137fca48db8aed4d430cff6dd934a99a220))
16+
317
## 4.56.0 (2025-02-11)
418

519
Full Changelog: [v4.55.0...v4.56.0](https://github.com/orbcorp/orb-node/compare/v4.55.0...v4.56.0)

Diff for: package.json

+29-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "orb-billing",
3-
"version": "4.56.0",
3+
"version": "4.57.0",
44
"description": "The official TypeScript library for the Orb API",
55
"author": "Orb <[email protected]>",
66
"types": "dist/index.d.ts",
@@ -107,17 +107,38 @@
107107
"default": "./dist/index.mjs"
108108
},
109109
"./*.mjs": {
110-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
111-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
110+
"types": [
111+
"./dist/*.d.ts",
112+
"./dist/*/index.d.ts"
113+
],
114+
"default": [
115+
"./dist/*.mjs",
116+
"./dist/*/index.mjs"
117+
]
112118
},
113119
"./*.js": {
114-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
115-
"default": ["./dist/*.js", "./dist/*/index.js"]
120+
"types": [
121+
"./dist/*.d.ts",
122+
"./dist/*/index.d.ts"
123+
],
124+
"default": [
125+
"./dist/*.js",
126+
"./dist/*/index.js"
127+
]
116128
},
117129
"./*": {
118-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
119-
"require": ["./dist/*.js", "./dist/*/index.js"],
120-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
130+
"types": [
131+
"./dist/*.d.ts",
132+
"./dist/*/index.d.ts"
133+
],
134+
"require": [
135+
"./dist/*.js",
136+
"./dist/*/index.js"
137+
],
138+
"default": [
139+
"./dist/*.mjs",
140+
"./dist/*/index.mjs"
141+
]
121142
}
122143
}
123144
}

Diff for: src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '4.56.0'; // x-release-please-version
1+
export const VERSION = '4.57.0'; // x-release-please-version

0 commit comments

Comments
 (0)