orb-billing 1.28.1 → 1.29.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 +23 -23
- 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
|
+
## 1.29.0 (2023-11-22)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.28.1...v1.29.0](https://github.com/orbcorp/orb-node/compare/v1.28.1...v1.29.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* allow installing package directly from github ([#37](https://github.com/orbcorp/orb-node/issues/37)) ([8791b26](https://github.com/orbcorp/orb-node/commit/8791b26c93d33807434ad51f40f4e998567216f7))
|
|
10
|
+
* **api:** updates ([#40](https://github.com/orbcorp/orb-node/issues/40)) ([2a17035](https://github.com/orbcorp/orb-node/commit/2a1703539b5c4df7c2b1dc6a5a10b720fa53fa0d))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Chores
|
|
14
|
+
|
|
15
|
+
* **internal:** don't call prepare in dist ([#39](https://github.com/orbcorp/orb-node/issues/39)) ([986847c](https://github.com/orbcorp/orb-node/commit/986847ce30bdf30bb5e8b8f5e7269b146e726a9c))
|
|
16
|
+
|
|
3
17
|
## 1.28.1 (2023-11-20)
|
|
4
18
|
|
|
5
19
|
Full Changelog: [v1.28.0...v1.28.1](https://github.com/orbcorp/orb-node/compare/v1.28.0...v1.28.1)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orb-billing",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.29.0",
|
|
4
|
+
"description": "The official TypeScript library for the Orb API",
|
|
5
5
|
"author": "Orb <team@withorb.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"main": "./index.js",
|
|
@@ -9,6 +9,27 @@
|
|
|
9
9
|
"repository": "github:orbcorp/orb-node",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"private": false,
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "bin/check-test-server && yarn jest",
|
|
14
|
+
"build": "bash ./build",
|
|
15
|
+
"format": "prettier --write --cache --cache-strategy metadata . !dist",
|
|
16
|
+
"tsn": "ts-node -r tsconfig-paths/register",
|
|
17
|
+
"lint": "eslint --ext ts,js .",
|
|
18
|
+
"fix": "eslint --fix --ext ts,js ."
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@types/node": "^18.11.18",
|
|
22
|
+
"@types/node-fetch": "^2.6.4",
|
|
23
|
+
"@types/qs": "^6.9.7",
|
|
24
|
+
"abort-controller": "^3.0.0",
|
|
25
|
+
"agentkeepalive": "^4.2.1",
|
|
26
|
+
"digest-fetch": "^1.3.0",
|
|
27
|
+
"form-data-encoder": "1.7.2",
|
|
28
|
+
"formdata-node": "^4.3.2",
|
|
29
|
+
"node-fetch": "^2.6.7",
|
|
30
|
+
"qs": "^6.10.3",
|
|
31
|
+
"web-streams-polyfill": "^3.2.1"
|
|
32
|
+
},
|
|
12
33
|
"sideEffects": [
|
|
13
34
|
"./_shims/index.js",
|
|
14
35
|
"./_shims/index.mjs",
|
|
@@ -74,26 +95,5 @@
|
|
|
74
95
|
"require": "./*.js",
|
|
75
96
|
"default": "./*.mjs"
|
|
76
97
|
}
|
|
77
|
-
},
|
|
78
|
-
"scripts": {
|
|
79
|
-
"test": "bin/check-test-server && yarn jest",
|
|
80
|
-
"build": "bash ./build",
|
|
81
|
-
"format": "prettier --write --cache --cache-strategy metadata . !dist",
|
|
82
|
-
"tsn": "ts-node -r tsconfig-paths/register",
|
|
83
|
-
"lint": "eslint --ext ts,js .",
|
|
84
|
-
"fix": "eslint --fix --ext ts,js ."
|
|
85
|
-
},
|
|
86
|
-
"dependencies": {
|
|
87
|
-
"@types/node": "^18.11.18",
|
|
88
|
-
"@types/node-fetch": "^2.6.4",
|
|
89
|
-
"@types/qs": "^6.9.7",
|
|
90
|
-
"abort-controller": "^3.0.0",
|
|
91
|
-
"agentkeepalive": "^4.2.1",
|
|
92
|
-
"digest-fetch": "^1.3.0",
|
|
93
|
-
"form-data-encoder": "1.7.2",
|
|
94
|
-
"formdata-node": "^4.3.2",
|
|
95
|
-
"node-fetch": "^2.6.7",
|
|
96
|
-
"qs": "^6.10.3",
|
|
97
|
-
"web-streams-polyfill": "^3.2.1"
|
|
98
98
|
}
|
|
99
99
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.29.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.29.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.29.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|