UNPKG

@deeplinknow/react-native

Version:

React Native + Expo SDK for the Deeplink Now deferred deep linking platform

61 lines (48 loc) 1.08 kB
"use strict"; /** * Base fingerprint type containing all possible fingerprint properties */ /** * Type for fingerprint data used in matching */ /** * Detailed match information for each component of the fingerprint */ /** * Device match component details */ /** * Locale match component details */ /** * Time proximity details with actual time difference */ /** * Complete match details for all components */ /** * Request body for the match endpoint - exactly matches API requirements */ /** * Deeplink information returned in a match */ /** * Individual match result with confidence score and details */ /** * Complete response from the match endpoint */ /** * Response from the init endpoint */ /** * Confidence score thresholds for match quality */ export const CONFIDENCE_THRESHOLDS = { HIGH: 75, // Strong match: Same IP, recent, matching device and locale MEDIUM: 50, // Moderate match: Same IP, longer time gap or some mismatches LOW: 25 // Weak match: Different IP but other factors match }; //# sourceMappingURL=types.js.map