@tryfinch/finch-api 5.9.0 → 5.9.1

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.9.1 (2023-11-10)
4
+
5
+ Full Changelog: [v5.9.0...v5.9.1](https://github.com/Finch-API/finch-api-node/compare/v5.9.0...v5.9.1)
6
+
7
+ ### Chores
8
+
9
+ * **ci:** update release-please config ([#220](https://github.com/Finch-API/finch-api-node/issues/220)) ([07f9e0f](https://github.com/Finch-API/finch-api-node/commit/07f9e0f9738bff822feec6066bb7e7058cafe751))
10
+ * **docs:** fix github links ([#223](https://github.com/Finch-API/finch-api-node/issues/223)) ([9621b0e](https://github.com/Finch-API/finch-api-node/commit/9621b0e7313d514434847ff330d2df19454c7e76))
11
+ * **docs:** fix some typos ([#222](https://github.com/Finch-API/finch-api-node/issues/222)) ([5eb553b](https://github.com/Finch-API/finch-api-node/commit/5eb553b89ca72c8fdbc9d1c9e9e5edf191274e0b))
12
+ * **internal:** update jest config ([#225](https://github.com/Finch-API/finch-api-node/issues/225)) ([9cc65d2](https://github.com/Finch-API/finch-api-node/commit/9cc65d23ce328242798886d7a1a334be9341db94))
13
+ * **internal:** update tsconfig ([#224](https://github.com/Finch-API/finch-api-node/issues/224)) ([e7e60e2](https://github.com/Finch-API/finch-api-node/commit/e7e60e2610fa259959f916ab33c8afb3d9d7dd9d))
14
+
3
15
  ## 5.9.0 (2023-11-05)
4
16
 
5
17
  Full Changelog: [v5.8.0...v5.9.0](https://github.com/Finch-API/finch-api-node/compare/v5.8.0...v5.9.0)
package/README.md CHANGED
@@ -248,7 +248,7 @@ import Finch from "@tryfinch/finch-api";
248
248
  ```
249
249
 
250
250
  To do the inverse, add `import "@tryfinch/finch-api/shims/node"` (which does import polyfills).
251
- This can also be useful if you are getting the wrong TypeScript types for `Response` - more details [here](https://github.com/Finch-API/finch-api-node/src/_shims#readme).
251
+ This can also be useful if you are getting the wrong TypeScript types for `Response` - more details [here](https://github.com/Finch-API/finch-api-node/tree/main/src/_shims#readme).
252
252
 
253
253
  You may also provide a custom `fetch` function when instantiating the client,
254
254
  which can be used to inspect or alter the `Request` or `Response` before/after each request:
package/index.d.mts CHANGED
@@ -104,7 +104,7 @@ export declare class Finch extends Core.APIClient {
104
104
  }): Promise<string>;
105
105
  /**
106
106
  * Returns the authorization url which can be visited in order to obtain an
107
- * authorization code from Finch. The autorization code can then be exchanged for
107
+ * authorization code from Finch. The authorization code can then be exchanged for
108
108
  * an access token for the Finch api by calling get_access_token().
109
109
  */
110
110
  getAuthURL({ products, redirectUri, sandbox, }: {
package/index.d.ts CHANGED
@@ -104,7 +104,7 @@ export declare class Finch extends Core.APIClient {
104
104
  }): Promise<string>;
105
105
  /**
106
106
  * Returns the authorization url which can be visited in order to obtain an
107
- * authorization code from Finch. The autorization code can then be exchanged for
107
+ * authorization code from Finch. The authorization code can then be exchanged for
108
108
  * an access token for the Finch api by calling get_access_token().
109
109
  */
110
110
  getAuthURL({ products, redirectUri, sandbox, }: {
package/index.js CHANGED
@@ -101,7 +101,7 @@ class Finch extends Core.APIClient {
101
101
  }
102
102
  /**
103
103
  * Returns the authorization url which can be visited in order to obtain an
104
- * authorization code from Finch. The autorization code can then be exchanged for
104
+ * authorization code from Finch. The authorization code can then be exchanged for
105
105
  * an access token for the Finch api by calling get_access_token().
106
106
  */
107
107
  getAuthURL({ products, redirectUri, sandbox, }) {
package/index.mjs CHANGED
@@ -75,7 +75,7 @@ export class Finch extends Core.APIClient {
75
75
  }
76
76
  /**
77
77
  * Returns the authorization url which can be visited in order to obtain an
78
- * authorization code from Finch. The autorization code can then be exchanged for
78
+ * authorization code from Finch. The authorization code can then be exchanged for
79
79
  * an access token for the Finch api by calling get_access_token().
80
80
  */
81
81
  getAuthURL({ products, redirectUri, sandbox, }) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tryfinch/finch-api",
3
- "version": "5.9.0",
3
+ "version": "5.9.1",
4
4
  "description": "Client library for the Finch API",
5
5
  "author": "Finch <founders@tryfinch.com>",
6
6
  "types": "./index.d.ts",
package/src/index.ts CHANGED
@@ -168,7 +168,7 @@ export class Finch extends Core.APIClient {
168
168
 
169
169
  /**
170
170
  * Returns the authorization url which can be visited in order to obtain an
171
- * authorization code from Finch. The autorization code can then be exchanged for
171
+ * authorization code from Finch. The authorization code can then be exchanged for
172
172
  * an access token for the Finch api by calling get_access_token().
173
173
  */
174
174
  getAuthURL({
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '5.9.0'; // x-release-please-version
1
+ export const VERSION = '5.9.1'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "5.9.0";
1
+ export declare const VERSION = "5.9.1";
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 = '5.9.0'; // x-release-please-version
4
+ exports.VERSION = '5.9.1'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '5.9.0'; // x-release-please-version
1
+ export const VERSION = '5.9.1'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map