Skip to content

Commit

Permalink
fix: enable apple pay for bankofamerica
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevaRamu0104 committed Dec 14, 2023
1 parent c8c28de commit ed9a0e3
Show file tree
Hide file tree
Showing 6 changed files with 243 additions and 75 deletions.
40 changes: 38 additions & 2 deletions public/hyperswitch/wasm/euclid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ export function getAllKeys(): any;
*/
export function getKeyType(key: string): string;
/**
* @returns {any}
*/
export function getThreeDsKeys(): any;
/**
* @returns {any}
*/
export function getSurchargeKeys(): any;
/**
* @param {string} val
* @returns {string}
*/
Expand All @@ -75,9 +83,31 @@ export function getVariantValues(key: string): any;
*/
export function addTwo(n1: bigint, n2: bigint): bigint;
/**
* @param {string} key
* @returns {any}
*/
export function getConnectorConfig(key: string): any;
/**
* @param {string} key
* @returns {any}
*/
export function getPayoutConnectorConfig(key: string): any;
/**
* @param {any} input
* @param {any} response
* @returns {any}
*/
export function getRequestPayload(input: any, response: any): any;
/**
* @param {any} input
* @returns {any}
*/
export function getResponsePayload(input: any): any;
/**
* @param {string} key
* @returns {any}
*/
export function getDescriptionCategory(): any;
export function getDescriptionCategory(key: string): any;
/**
*
* Function exposed as `wasm` function in js `parse`. Allowing use to extend the functionality and
Expand All @@ -100,9 +130,15 @@ export interface InitOutput {
readonly getAllConnectors: (a: number) => void;
readonly getAllKeys: (a: number) => void;
readonly getKeyType: (a: number, b: number, c: number) => void;
readonly getThreeDsKeys: (a: number) => void;
readonly getSurchargeKeys: (a: number) => void;
readonly getVariantValues: (a: number, b: number, c: number) => void;
readonly addTwo: (a: number, b: number) => number;
readonly getDescriptionCategory: (a: number) => void;
readonly getConnectorConfig: (a: number, b: number, c: number) => void;
readonly getPayoutConnectorConfig: (a: number, b: number, c: number) => void;
readonly getRequestPayload: (a: number, b: number, c: number) => void;
readonly getResponsePayload: (a: number, b: number) => void;
readonly getDescriptionCategory: (a: number, b: number, c: number) => void;
readonly parse: (a: number, b: number, c: number) => void;
readonly parseToString: (a: number, b: number, c: number) => void;
readonly __wbindgen_export_0: (a: number, b: number) => number;
Expand Down
Loading

0 comments on commit ed9a0e3

Please sign in to comment.