@konplit-services/common 1.0.183 → 1.0.184
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/build/helper/keys.d.ts +2 -2
- package/package.json +1 -1
package/build/helper/keys.d.ts
CHANGED
|
@@ -10,13 +10,13 @@ declare const hashingKey: (secret: string) => Buffer;
|
|
|
10
10
|
* @param data - the data to sign
|
|
11
11
|
* @returns MD5 hash of the data
|
|
12
12
|
*/
|
|
13
|
-
declare const generateSignMD5: (data: Record<string,
|
|
13
|
+
declare const generateSignMD5: (data: Record<string, any>) => string;
|
|
14
14
|
/**
|
|
15
15
|
* Generates an Hmac signatur
|
|
16
16
|
* @param data - the data to sign
|
|
17
17
|
* @returns MD5 hash of the data
|
|
18
18
|
*/
|
|
19
|
-
declare const generateOpaySign: (data: Record<string,
|
|
19
|
+
declare const generateOpaySign: (data: Record<string, any>) => string;
|
|
20
20
|
/**
|
|
21
21
|
* Generates an MD5 signature for Fidelity transactions
|
|
22
22
|
* @param request_ref - the request reference
|