@tripian/core 9.1.68 → 9.1.70
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/index.d.ts +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/providers/victory/API.d.ts +2 -2
- package/tcore.umd.js +2 -2
- package/tcore.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/core",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.70",
|
|
4
4
|
"description": "Tripian Inc Web SDK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@tripian/model": "9.1.
|
|
8
|
+
"@tripian/model": "9.1.70",
|
|
9
9
|
"adyen-encryption": "^0.1.1",
|
|
10
10
|
"axios": "^0.19.1",
|
|
11
11
|
"cross-fetch": "^3.1.6",
|
|
@@ -8,8 +8,8 @@ declare class API {
|
|
|
8
8
|
private apiSecret;
|
|
9
9
|
private static cache;
|
|
10
10
|
private readonly CACHE_DURATION;
|
|
11
|
-
constructor(apiUrl: string, apiToken: string, proxyURL: string);
|
|
12
|
-
static getInstance(apiUrl: string, apiToken: string, proxyURL: string): API;
|
|
11
|
+
constructor(apiUrl: string, apiToken: string, apiSecret: string, proxyURL: string);
|
|
12
|
+
static getInstance(apiUrl: string, apiToken: string, apiSecret: string, proxyURL: string): API;
|
|
13
13
|
/**
|
|
14
14
|
* Generates an HMAC-SHA256 signature for authentication.
|
|
15
15
|
*/
|