@@ -17,8 +17,8 @@ interface ConstructorArgs {
1717
1818let initialized = false ;
1919
20- const AuthsignalQrCodeModule = NativeModules . AuthsignalQrCodeModule
21- ? NativeModules . AuthsignalQrCodeModule
20+ const AuthsignalQRCodeModule = NativeModules . AuthsignalQRCodeModule
21+ ? NativeModules . AuthsignalQRCodeModule
2222 : new Proxy (
2323 { } ,
2424 {
@@ -45,7 +45,7 @@ export class AuthsignalQrCode {
4545 await this . ensureModuleIsInitialized ( ) ;
4646
4747 try {
48- const data = await AuthsignalQrCodeModule . getCredential ( ) ;
48+ const data = await AuthsignalQRCodeModule . getCredential ( ) ;
4949
5050 return { data } ;
5151 } catch ( ex ) {
@@ -67,12 +67,12 @@ export class AuthsignalQrCode {
6767 try {
6868 const data =
6969 Platform . OS === 'ios'
70- ? await AuthsignalQrCodeModule . addCredential (
70+ ? await AuthsignalQRCodeModule . addCredential (
7171 token ,
7272 requireUserAuthentication ,
7373 keychainAccess
7474 )
75- : await AuthsignalQrCodeModule . addCredential ( token ) ;
75+ : await AuthsignalQRCodeModule . addCredential ( token ) ;
7676
7777 return { data } ;
7878 } catch ( ex ) {
@@ -88,7 +88,7 @@ export class AuthsignalQrCode {
8888 await this . ensureModuleIsInitialized ( ) ;
8989
9090 try {
91- const data = await AuthsignalQrCodeModule . removeCredential ( ) ;
91+ const data = await AuthsignalQRCodeModule . removeCredential ( ) ;
9292 return { data } ;
9393 } catch ( ex ) {
9494 if ( this . enableLogging ) {
@@ -105,7 +105,7 @@ export class AuthsignalQrCode {
105105 await this . ensureModuleIsInitialized ( ) ;
106106
107107 try {
108- const data = await AuthsignalQrCodeModule . claimChallenge ( challengeId ) ;
108+ const data = await AuthsignalQRCodeModule . claimChallenge ( challengeId ) ;
109109
110110 return { data } ;
111111 } catch ( ex ) {
@@ -125,7 +125,7 @@ export class AuthsignalQrCode {
125125 await this . ensureModuleIsInitialized ( ) ;
126126
127127 try {
128- const data = await AuthsignalQrCodeModule . updateChallenge (
128+ const data = await AuthsignalQRCodeModule . updateChallenge (
129129 challengeId ,
130130 approved ,
131131 verificationCode
@@ -146,7 +146,7 @@ export class AuthsignalQrCode {
146146 return ;
147147 }
148148
149- await AuthsignalQrCodeModule . initialize ( this . tenantID , this . baseURL ) ;
149+ await AuthsignalQRCodeModule . initialize ( this . tenantID , this . baseURL ) ;
150150
151151 initialized = true ;
152152 }
0 commit comments