increase 0.94.1 → 0.95.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 +8 -0
- package/README.md +2 -2
- package/_shims/web-runtime.js +1 -1
- package/_shims/web-runtime.mjs +1 -1
- package/package.json +2 -2
- package/src/_shims/web-runtime.ts +1 -1
- 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
|
+
## 0.95.0 (2024-09-03)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.94.1...v0.95.0](https://github.com/Increase/increase-node/compare/v0.94.1...v0.95.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** OpenAPI spec update via Stainless API ([#562](https://github.com/Increase/increase-node/issues/562)) ([1b1c9e0](https://github.com/Increase/increase-node/commit/1b1c9e0316500630f052e4980f30ce08808f74db))
|
|
10
|
+
|
|
3
11
|
## 0.94.1 (2024-09-03)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.94.0...v0.94.1](https://github.com/Increase/increase-node/compare/v0.94.0...v0.94.1)
|
package/README.md
CHANGED
|
@@ -303,7 +303,7 @@ import Increase from 'increase';
|
|
|
303
303
|
```
|
|
304
304
|
|
|
305
305
|
To do the inverse, add `import "increase/shims/node"` (which does import polyfills).
|
|
306
|
-
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/
|
|
306
|
+
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/increase/increase-node/tree/main/src/_shims#readme)).
|
|
307
307
|
|
|
308
308
|
### Logging and middleware
|
|
309
309
|
|
|
@@ -366,7 +366,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
|
|
|
366
366
|
|
|
367
367
|
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
|
|
368
368
|
|
|
369
|
-
We are keen for your feedback; please open an [issue](https://www.github.com/
|
|
369
|
+
We are keen for your feedback; please open an [issue](https://www.github.com/increase/increase-node/issues) with questions, bugs, or suggestions.
|
|
370
370
|
|
|
371
371
|
## Requirements
|
|
372
372
|
|
package/_shims/web-runtime.js
CHANGED
|
@@ -69,7 +69,7 @@ function getRuntime({ manuallyImported } = {}) {
|
|
|
69
69
|
}),
|
|
70
70
|
getDefaultAgent: (url) => undefined,
|
|
71
71
|
fileFromPath: () => {
|
|
72
|
-
throw new Error('The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/
|
|
72
|
+
throw new Error('The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/increase/increase-node#file-uploads');
|
|
73
73
|
},
|
|
74
74
|
isFsReadStream: (value) => false,
|
|
75
75
|
};
|
package/_shims/web-runtime.mjs
CHANGED
|
@@ -63,7 +63,7 @@ export function getRuntime({ manuallyImported } = {}) {
|
|
|
63
63
|
}),
|
|
64
64
|
getDefaultAgent: (url) => undefined,
|
|
65
65
|
fileFromPath: () => {
|
|
66
|
-
throw new Error('The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/
|
|
66
|
+
throw new Error('The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/increase/increase-node#file-uploads');
|
|
67
67
|
},
|
|
68
68
|
isFsReadStream: (value) => false,
|
|
69
69
|
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "increase",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.95.0",
|
|
4
4
|
"description": "The official TypeScript library for the Increase API",
|
|
5
5
|
"author": "Increase <dev-feedback@increase.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"type": "commonjs",
|
|
9
|
-
"repository": "github:
|
|
9
|
+
"repository": "github:increase/increase-node",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"packageManager": "yarn@1.22.22",
|
|
12
12
|
"files": [
|
|
@@ -95,7 +95,7 @@ export function getRuntime({ manuallyImported }: { manuallyImported?: boolean }
|
|
|
95
95
|
getDefaultAgent: (url: string) => undefined,
|
|
96
96
|
fileFromPath: () => {
|
|
97
97
|
throw new Error(
|
|
98
|
-
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/
|
|
98
|
+
'The `fileFromPath` function is only supported in Node. See the README for more details: https://www.github.com/increase/increase-node#file-uploads',
|
|
99
99
|
);
|
|
100
100
|
},
|
|
101
101
|
isFsReadStream: (value: any) => false,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.95.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.95.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.95.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|