@tryfinch/finch-api 5.22.3 → 5.22.5
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 +18 -0
- package/package.json +3 -3
- 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,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.22.5 (2024-05-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.22.4...v5.22.5](https://github.com/Finch-API/finch-api-node/compare/v5.22.4...v5.22.5)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **internal:** forward arguments in scripts/test ([#355](https://github.com/Finch-API/finch-api-node/issues/355)) ([b17aadc](https://github.com/Finch-API/finch-api-node/commit/b17aadc62f2803b97da79f1a67fd701255e74050))
|
|
10
|
+
|
|
11
|
+
## 5.22.4 (2024-04-30)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v5.22.3...v5.22.4](https://github.com/Finch-API/finch-api-node/compare/v5.22.3...v5.22.4)
|
|
14
|
+
|
|
15
|
+
### Chores
|
|
16
|
+
|
|
17
|
+
* **internal:** add link to openapi spec ([#353](https://github.com/Finch-API/finch-api-node/issues/353)) ([f165e11](https://github.com/Finch-API/finch-api-node/commit/f165e11411a78cabf9cf99f8be4168290773738a))
|
|
18
|
+
* **internal:** add scripts/test, scripts/mock and add ci job ([#354](https://github.com/Finch-API/finch-api-node/issues/354)) ([e33e4af](https://github.com/Finch-API/finch-api-node/commit/e33e4afc2cb1c2f2bdb41d1857f921b288a1f9c9))
|
|
19
|
+
* **internal:** refactor scripts ([#351](https://github.com/Finch-API/finch-api-node/issues/351)) ([2c6d68a](https://github.com/Finch-API/finch-api-node/commit/2c6d68a1f010d7f93bb63232741a88f0e39cd711))
|
|
20
|
+
|
|
3
21
|
## 5.22.3 (2024-04-26)
|
|
4
22
|
|
|
5
23
|
Full Changelog: [v5.22.2...v5.22.3](https://github.com/Finch-API/finch-api-node/compare/v5.22.2...v5.22.3)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tryfinch/finch-api",
|
|
3
|
-
"version": "5.22.
|
|
3
|
+
"version": "5.22.5",
|
|
4
4
|
"description": "The official TypeScript library for the Finch API",
|
|
5
5
|
"author": "Finch <founders@tryfinch.com>",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"private": false,
|
|
16
16
|
"scripts": {
|
|
17
17
|
"test": "./scripts/test",
|
|
18
|
-
"build": "
|
|
18
|
+
"build": "./scripts/build",
|
|
19
19
|
"format": "prettier --write --cache --cache-strategy metadata . !dist",
|
|
20
20
|
"tsn": "ts-node -r tsconfig-paths/register",
|
|
21
|
-
"lint": "
|
|
21
|
+
"lint": "./scripts/lint",
|
|
22
22
|
"fix": "eslint --fix --ext ts,js ."
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '5.22.
|
|
1
|
+
export const VERSION = '5.22.5'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "5.22.
|
|
1
|
+
export declare const VERSION = "5.22.5";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '5.22.
|
|
1
|
+
export const VERSION = '5.22.5'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|