orb-billing 4.70.0 → 4.71.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 +14 -0
- package/package.json +8 -29
- package/resources.d.ts +2 -0
- package/resources.d.ts.map +1 -0
- package/resources.js +18 -0
- package/resources.js.map +1 -0
- package/resources.mjs +2 -0
- package/resources.mjs.map +1 -0
- package/src/resources.ts +1 -0
- 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,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.71.0 (2025-03-20)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.70.0...v4.71.0](https://github.com/orbcorp/orb-node/compare/v4.70.0...v4.71.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([#570](https://github.com/orbcorp/orb-node/issues/570)) ([f25a699](https://github.com/orbcorp/orb-node/commit/f25a699c95a6f4322d819f82be3cace18e4fd913))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **exports:** cleaner resource index imports ([#567](https://github.com/orbcorp/orb-node/issues/567)) ([1249541](https://github.com/orbcorp/orb-node/commit/12495411c10b12fb432ed5ea2db13cf9fcc43c82))
|
|
15
|
+
* **exports:** stop using path fallbacks ([#569](https://github.com/orbcorp/orb-node/issues/569)) ([5c55f33](https://github.com/orbcorp/orb-node/commit/5c55f33931a4814bc5bf623ccc6d892627479168))
|
|
16
|
+
|
|
3
17
|
## 4.70.0 (2025-03-14)
|
|
4
18
|
|
|
5
19
|
Full Changelog: [v4.69.1...v4.70.0](https://github.com/orbcorp/orb-node/compare/v4.69.1...v4.70.0)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orb-billing",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.71.0",
|
|
4
4
|
"description": "The official TypeScript library for the Orb API",
|
|
5
5
|
"author": "Orb <team@withorb.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -87,38 +87,17 @@
|
|
|
87
87
|
"default": "./index.mjs"
|
|
88
88
|
},
|
|
89
89
|
"./*.mjs": {
|
|
90
|
-
"types":
|
|
91
|
-
|
|
92
|
-
"./*/index.d.ts"
|
|
93
|
-
],
|
|
94
|
-
"default": [
|
|
95
|
-
"./*.mjs",
|
|
96
|
-
"./*/index.mjs"
|
|
97
|
-
]
|
|
90
|
+
"types": "./*.d.ts",
|
|
91
|
+
"default": "./*.mjs"
|
|
98
92
|
},
|
|
99
93
|
"./*.js": {
|
|
100
|
-
"types":
|
|
101
|
-
|
|
102
|
-
"./*/index.d.ts"
|
|
103
|
-
],
|
|
104
|
-
"default": [
|
|
105
|
-
"./*.js",
|
|
106
|
-
"./*/index.js"
|
|
107
|
-
]
|
|
94
|
+
"types": "./*.d.ts",
|
|
95
|
+
"default": "./*.js"
|
|
108
96
|
},
|
|
109
97
|
"./*": {
|
|
110
|
-
"types":
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
],
|
|
114
|
-
"require": [
|
|
115
|
-
"./*.js",
|
|
116
|
-
"./*/index.js"
|
|
117
|
-
],
|
|
118
|
-
"default": [
|
|
119
|
-
"./*.mjs",
|
|
120
|
-
"./*/index.mjs"
|
|
121
|
-
]
|
|
98
|
+
"types": "./*.d.ts",
|
|
99
|
+
"require": "./*.js",
|
|
100
|
+
"default": "./*.mjs"
|
|
122
101
|
}
|
|
123
102
|
}
|
|
124
103
|
}
|
package/resources.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["src/resources.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
package/resources.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./resources/index.js"), exports);
|
|
18
|
+
//# sourceMappingURL=resources.js.map
|
package/resources.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resources.js","sourceRoot":"","sources":["src/resources.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAkC"}
|
package/resources.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resources.mjs","sourceRoot":"","sources":["src/resources.ts"],"names":[],"mappings":""}
|
package/src/resources.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './resources/index';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.71.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.71.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.71.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|