orb-billing 5.5.0 → 5.5.1
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 +8 -0
- package/package.json +1 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.5.1 (2025-07-29)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.5.0...v5.5.1](https://github.com/orbcorp/orb-node/compare/v5.5.0...v5.5.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **internal:** remove redundant imports config ([349e78c](https://github.com/orbcorp/orb-node/commit/349e78ca322b95500f1e5ee5e0eb917040fcfb25))
|
|
10
|
+
|
|
3
11
|
## 5.5.0 (2025-07-26)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.4.0...v5.5.0](https://github.com/orbcorp/orb-node/compare/v5.4.0...v5.5.0)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orb-billing",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.1",
|
|
4
4
|
"description": "The official TypeScript library for the Orb API",
|
|
5
5
|
"author": "Orb <team@withorb.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -38,10 +38,6 @@
|
|
|
38
38
|
"./shims/web.js",
|
|
39
39
|
"./shims/web.mjs"
|
|
40
40
|
],
|
|
41
|
-
"imports": {
|
|
42
|
-
"orb-billing": ".",
|
|
43
|
-
"orb-billing/*": "./src/*"
|
|
44
|
-
},
|
|
45
41
|
"exports": {
|
|
46
42
|
"./_shims/auto/*": {
|
|
47
43
|
"deno": {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.5.
|
|
1
|
+
export const VERSION = '5.5.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.5.
|
|
1
|
+
export declare const VERSION = "5.5.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.5.
|
|
1
|
+
export const VERSION = '5.5.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|