orb-billing 1.28.0 → 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 CHANGED
@@ -1,5 +1,32 @@
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
+
17
+ ## 1.28.1 (2023-11-20)
18
+
19
+ Full Changelog: [v1.28.0...v1.28.1](https://github.com/orbcorp/orb-node/compare/v1.28.0...v1.28.1)
20
+
21
+ ### Chores
22
+
23
+ * **internal:** update some test values ([#36](https://github.com/orbcorp/orb-node/issues/36)) ([5fbb843](https://github.com/orbcorp/orb-node/commit/5fbb8434dae21355c7ef55981212b254c71291d9))
24
+
25
+
26
+ ### Documentation
27
+
28
+ * **readme:** fix link to docs website ([#34](https://github.com/orbcorp/orb-node/issues/34)) ([3f8f962](https://github.com/orbcorp/orb-node/commit/3f8f962deb0771ccfda27de253035016fe298356))
29
+
3
30
  ## 1.28.0 (2023-11-16)
4
31
 
5
32
  Full Changelog: [v1.27.0...v1.28.0](https://github.com/orbcorp/orb-node/compare/v1.27.0...v1.28.0)
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  This library provides convenient access to the Orb REST API from server-side TypeScript or JavaScript.
6
6
 
7
- The API documentation can be found [here](https://www.withorb.com/https://docs.withorb.com/reference/api-reference).
7
+ The API documentation can be found [here](https://docs.withorb.com/reference/api-reference).
8
8
 
9
9
  ## Installation
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "orb-billing",
3
- "version": "1.28.0",
4
- "description": "Client library for the Orb API",
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.28.0'; // x-release-please-version
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.28.0";
1
+ export declare const VERSION = "1.29.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.28.0'; // x-release-please-version
4
+ exports.VERSION = '1.29.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.28.0'; // x-release-please-version
1
+ export const VERSION = '1.29.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map