@moneytree/mt-link-javascript-sdk 4.1.0 → 4.2.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/README.md +1 -1
- package/dist/index.js +5 -5
- package/dist/typings.d.ts +4 -1
- package/package.json +5 -2
package/dist/typings.d.ts
CHANGED
|
@@ -76,7 +76,10 @@ export interface OAuthSharedParams {
|
|
|
76
76
|
state?: string;
|
|
77
77
|
redirectUri?: string;
|
|
78
78
|
}
|
|
79
|
-
export interface
|
|
79
|
+
export interface AffiliateTrackingParams {
|
|
80
|
+
affiliateCode?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface AuthorizeOptions extends OAuthSharedParams, ConfigsOptions, AuthorizeConfigsOptions, AffiliateTrackingParams {
|
|
80
83
|
scopes?: Scopes;
|
|
81
84
|
codeChallenge?: string;
|
|
82
85
|
}
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moneytree/mt-link-javascript-sdk",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Moneytree Link JavaScript SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/"
|
|
8
8
|
],
|
|
9
|
-
"repository":
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/moneytree/mt-link-javascript-sdk.git"
|
|
12
|
+
},
|
|
10
13
|
"author": "Moneytree",
|
|
11
14
|
"license": "MIT",
|
|
12
15
|
"scripts": {
|