Skip to content

Commit 3da692c

Browse files
authored
Merge pull request #181 from moneytree/release-4.2.0
chore(release): bump to version 4.2.0 🎉
2 parents 00f3cc9 + 78a407f commit 3da692c

File tree

60 files changed

+367
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+367
-218
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 4.2.0 (2025-04-18)
2+
3+
* added affiliate_code in authorize url ([129e607](https://github.com/moneytree/mt-link-javascript-sdk/commit/129e607))
4+
* Clean up `cv` in `localStorage` after `exchangeToken` succeeds ([32e8fbf](https://github.com/moneytree/mt-link-javascript-sdk/commit/32e8fbf))
5+
* Fix `authnMethod` typo in docs ([3287d10](https://github.com/moneytree/mt-link-javascript-sdk/commit/3287d10))
6+
* fix(docs) fix broken hyperlink ([471583b](https://github.com/moneytree/mt-link-javascript-sdk/commit/471583b))
7+
* Replace `sessionStorage` with `localStorage` ([6602ea2](https://github.com/moneytree/mt-link-javascript-sdk/commit/6602ea2))
8+
* Setup Dependabot ([64e4b55](https://github.com/moneytree/mt-link-javascript-sdk/commit/64e4b55))
9+
* fix(config): run npm pkg fix ([22873e2](https://github.com/moneytree/mt-link-javascript-sdk/commit/22873e2))
10+
* docs: update version bump instructions in readme ([06c5f1e](https://github.com/moneytree/mt-link-javascript-sdk/commit/06c5f1e))
11+
* chore(ci): Fix linting job in CircleCI ([f1b4812](https://github.com/moneytree/mt-link-javascript-sdk/commit/f1b4812))
12+
* chore(lint): Ignore auto-generated doc files when linting with eslint ([cc244c6](https://github.com/moneytree/mt-link-javascript-sdk/commit/cc244c6))
13+
* chore(release): bump to version 4.1.0 :tada: ([84db1ae](https://github.com/moneytree/mt-link-javascript-sdk/commit/84db1ae))
14+
* chore(release): bump to version 4.1.1 :tada: ([00f7c29](https://github.com/moneytree/mt-link-javascript-sdk/commit/00f7c29))
15+
* build(deps): bump @babel/traverse from 7.10.5 to 7.23.2 ([1d08d4c](https://github.com/moneytree/mt-link-javascript-sdk/commit/1d08d4c))
16+
* build(deps): bump browserify-sign from 4.2.1 to 4.2.2 ([6e35321](https://github.com/moneytree/mt-link-javascript-sdk/commit/6e35321))
17+
* build(deps): bump browserify-sign from 4.2.1 to 4.2.2 in /sample ([ffc6d2a](https://github.com/moneytree/mt-link-javascript-sdk/commit/ffc6d2a))
18+
* build(deps): bump docsify from 4.12.1 to 4.13.1 ([2e2e12c](https://github.com/moneytree/mt-link-javascript-sdk/commit/2e2e12c))
19+
* build(deps): bump dompurify from 2.2.7 to 2.5.7 ([5c49346](https://github.com/moneytree/mt-link-javascript-sdk/commit/5c49346))
20+
* build(deps): bump elliptic from 6.5.4 to 6.6.0 ([254fdbc](https://github.com/moneytree/mt-link-javascript-sdk/commit/254fdbc))
21+
* build(deps): bump express from 4.18.2 to 4.21.1 in /sample ([815245a](https://github.com/moneytree/mt-link-javascript-sdk/commit/815245a))
22+
* build(deps): bump follow-redirects from 1.14.8 to 1.15.9 in /sample ([6eedb71](https://github.com/moneytree/mt-link-javascript-sdk/commit/6eedb71))
23+
* build(deps): bump serve-static from 1.14.1 to 1.16.2 ([1043b28](https://github.com/moneytree/mt-link-javascript-sdk/commit/1043b28))
24+
* feat(sdk): Add option to open vault directly in the update and delete connection view ([0a5d61d](https://github.com/moneytree/mt-link-javascript-sdk/commit/0a5d61d))
25+
26+
27+
128
## <small>4.1.1 (2025-03-04)</small>
229

330
* Clean up `cv` in `localStorage` after `exchangeToken` succeeds ([32e8fbf](https://github.com/moneytree/mt-link-javascript-sdk/commit/32e8fbf))

dist/index.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/typings.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ export interface OAuthSharedParams {
7676
state?: string;
7777
redirectUri?: string;
7878
}
79-
export interface AuthorizeOptions extends OAuthSharedParams, ConfigsOptions, AuthorizeConfigsOptions {
79+
export interface AffiliateTrackingParams {
80+
affiliateCode?: string;
81+
}
82+
export interface AuthorizeOptions extends OAuthSharedParams, ConfigsOptions, AuthorizeConfigsOptions, AffiliateTrackingParams {
8083
scopes?: Scopes;
8184
codeChallenge?: string;
8285
}

docs/types/assets/navigation.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)