@deeplinknow/react-native
Version:
React Native + Expo SDK for the Deeplink Now deferred deep linking platform
65 lines (52 loc) • 1.21 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CONFIDENCE_THRESHOLDS = void 0;
/**
* 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
*/
const CONFIDENCE_THRESHOLDS = exports.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