connect-react-native-sdk
Version:
React Native SDK for Mastercard Open Banking Connect
23 lines (19 loc) • 488 B
text/typescript
import { SDK_VERSION } from './version';
export const CONNECT_SDK_VERSION = SDK_VERSION;
export const SDK_PLATFORM = 'reactNative';
export const PING_TIMEOUT = 1000;
export enum ConnectEvents {
// Internal events used by Connect
ACK = 'ack',
CLOSE_POPUP = 'closePopup',
PING = 'ping',
URL = 'url',
// App events exposed to developers
CANCEL = 'cancel',
DONE = 'done',
ERROR = 'error',
LOADED = 'loaded',
ROUTE = 'route',
SUCCESS = 'success',
USER = 'user',
}