mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 14:48:06 -05:00
* Improve demo app safe area handling * refactor: centralize mobile demo screen navigation * update lock * update podfile lock * fix pipelines * fix tests * save wip polish * polish app * simplify and standardize screens * small fixes * fix tests * Use SDK SelfClientProvider in demo (#1162) * fix types * Fix mobile SDK demo Jest mock * force react-native-svg to 15.12.1 * fix tests * add types script * fix document list * fix types and metro config * add ignore files to speed up watchman and eslint * save wip tweaks * save mock doc screen wip * use persistant document store * save polish work in progress * add polish to screens * save wip secure storage * allow cursor to examine react configs * convert tests to vitest and fix * fix tests * prettier * cr feedback * fix tests and remove skipped
107 lines
2.7 KiB
TypeScript
107 lines
2.7 KiB
TypeScript
// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
|
|
|
|
// Types
|
|
export type {
|
|
Adapters,
|
|
AnalyticsAdapter,
|
|
AuthAdapter,
|
|
ClockAdapter,
|
|
Config,
|
|
CryptoAdapter,
|
|
DocumentsAdapter,
|
|
HttpAdapter,
|
|
LogLevel,
|
|
LoggerAdapter,
|
|
MRZInfo,
|
|
MRZValidation,
|
|
NetworkAdapter,
|
|
Progress,
|
|
ScanMode,
|
|
ScanOpts,
|
|
ScanResult,
|
|
ScannerAdapter,
|
|
SelfClient,
|
|
StorageAdapter,
|
|
TrackEventParams,
|
|
Unsubscribe,
|
|
WsAdapter,
|
|
WsConn,
|
|
} from './types/public';
|
|
|
|
// LogEvent Types
|
|
export type { BaseContext, NFCScanContext, ProofContext } from './proving/internal/logging';
|
|
|
|
// MRZ module
|
|
export type { DG1, DG2, NFCScanOptions, ParsedNFCResponse } from './nfc';
|
|
|
|
export type { DocumentData, DocumentMetadata, PassportCameraProps, ScreenProps } from './types/ui';
|
|
|
|
export type { MRZScanOptions } from './mrz';
|
|
|
|
// QR module
|
|
export type { PassportValidationCallbacks } from './validation/document';
|
|
|
|
export type { QRProofOptions } from './qr';
|
|
|
|
// Error handling
|
|
export type { SdkErrorCategory } from './errors';
|
|
|
|
export {
|
|
InitError,
|
|
LivenessError,
|
|
MrzParseError,
|
|
NfcParseError,
|
|
SCANNER_ERROR_CODES,
|
|
SdkError,
|
|
notImplemented,
|
|
sdkError,
|
|
} from './errors';
|
|
|
|
// Screen Components (React Native-based)
|
|
export { NFCScannerScreen } from './components/screens/NFCScannerScreen';
|
|
export { PassportCameraScreen } from './components/screens/PassportCameraScreen';
|
|
export { QRCodeScreen } from './components/screens/QRCodeScreen';
|
|
|
|
// Context and Client
|
|
export { SdkEvents } from './types/events';
|
|
|
|
// Components
|
|
export { SelfClientContext, SelfClientProvider, useSelfClient } from './context';
|
|
|
|
// Documents utils
|
|
export { SelfMobileSdk } from './entry';
|
|
|
|
export {
|
|
clearPassportData,
|
|
getAllDocuments,
|
|
hasAnyValidRegisteredDocument,
|
|
loadSelectedDocument,
|
|
markCurrentDocumentAsRegistered,
|
|
reStorePassportDataWithRightCSCA,
|
|
} from './documents/utils';
|
|
|
|
export { createListenersMap, createSelfClient } from './client';
|
|
|
|
/** @deprecated Use createSelfClient().extractMRZInfo or import from './mrz' */
|
|
export { defaultConfig } from './config/defaults';
|
|
|
|
export { extractMRZInfo, extractNameFromMRZ, formatDateToYYMMDD, scanMRZ } from './mrz';
|
|
|
|
export { generateMockDocument, signatureAlgorithmToStrictSignatureAlgorithm } from './mock/generator';
|
|
|
|
// Core functions
|
|
export { isPassportDataValid } from './validation/document';
|
|
|
|
// Document validation
|
|
export { mergeConfig } from './config/merge';
|
|
|
|
export { parseNFCResponse, scanNFC } from './nfc';
|
|
|
|
export { reactNativeScannerAdapter } from './adapters/react-native/scanner';
|
|
|
|
export { scanQRProof } from './qr';
|
|
|
|
export { webScannerShim } from './adapters/web/shims';
|