@regulaforensics/react-native-document-reader-api 6.7.4 → 6.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,13 +2,19 @@
2
2
  #import <React/RCTEventEmitter.h>
3
3
  #import <DocumentReader/DocumentReader.h>
4
4
  #import "RGLWJSONConstructor.h"
5
- #import "RegulaConfig.h"
5
+ #import "RGLWRegulaConfig.h"
6
6
 
7
- @interface RNRegulaDocumentReader : RCTEventEmitter <RCTBridgeModule, RGLRecordScanningProcessDelegate, RGLDocReaderRFIDDelegate>
7
+ typedef void (^RGLWCallback)(NSString* _Nullable response);
8
+ typedef void (^RGLWRFIDSignatureCallback)(NSData * _Nonnull signature);
9
+
10
+ @interface RNRegulaDocumentReader : RCTEventEmitter <RCTBridgeModule,
11
+ RGLRecordScanningProcessDelegate,
12
+ RGLDocReaderRFIDDelegate,
13
+ RGLCustomizationActionDelegate>
8
14
 
9
15
  @property (class) NSNumber* _Nullable databasePercentageDownloaded;
10
16
 
11
17
  @end
12
18
 
13
- @interface RFIDDelegateNoPA : NSObject<RGLDocReaderRFIDDelegate>
19
+ @interface RGLWRFIDDelegateNoPA : NSObject<RGLDocReaderRFIDDelegate>
14
20
  @end