Files
inji-wallet/shared/InitialConfig.ts
Kiruthika Jeyashankar 41755bcda7 feat(INJI-205): use openId4VCIDownloadVCTimeout from config
Co-authored-by: Harsh Vardhan <harsh59v@gmail.com>
Signed-off-by: Kiruthika Jeyashankar <81218987+KiruthikaJeyashankar@users.noreply.github.com>
2023-10-10 18:38:07 +05:30

23 lines
937 B
TypeScript

// Initial configs used by app if network is not available when app is opened for first time. once network is available response is cached and used from then
// Note: Need to keep this config in sync with actual mimoto response.
export const INITIAL_CONFIG = {
// These properties are stored in mosip-config github repo / inji-default.properties
allProperties: {
modelDownloadMaxRetry: '10',
audience: 'ida-binding',
allowedInternalAuthType: 'otp,bio-Finger,bio-Iris,bio-Face',
vcDownloadMaxRetry: '10',
minStorageRequiredForAuditEntry: '2',
minStorageRequired: '2',
vcDownloadPoolInterval: '6000',
issuer: 'residentapp',
allowedAuthType: 'demo,otp,bio-Finger,bio-Iris,bio-Face',
allowedEkycAuthType: 'demo,otp,bio-Finger,bio-Iris,bio-Face',
warningDomainName: '',
aboutInjiUrl: 'https://docs.mosip.io/inji',
faceSdkModelUrl: '',
openId4VCIDownloadVCTimeout: '30000',
},
};