diff --git a/src/app-auth/services/app-auth.service.ts b/src/app-auth/services/app-auth.service.ts index 7cc9241..8a1e3ba 100644 --- a/src/app-auth/services/app-auth.service.ts +++ b/src/app-auth/services/app-auth.service.ts @@ -224,7 +224,6 @@ export class AppAuthService { hasDomainVerified: createAppDto.hasDomainVerified, }); Logger.log('App created successfully', 'app-auth-service'); - Logger.log(JSON.stringify(appData)); return this.getAppResponse(appData, apiSecretKey); } diff --git a/src/supported-service/services/iServiceList.ts b/src/supported-service/services/iServiceList.ts index 3a37ce0..4685b9a 100644 --- a/src/supported-service/services/iServiceList.ts +++ b/src/supported-service/services/iServiceList.ts @@ -48,6 +48,9 @@ export namespace SERVICES { WRITE_SESSION = 'WRITE_SESSION', WRITE_PASSIVE_LIVELINESS = 'WRITE_PASSIVE_LIVELINESS', WRITE_DOC_OCR = 'WRITE_DOC_OCR', + READ_WIDGET_CONFIG = 'READ_WIDGET_CONFIG', + WRITE_WIDGET_CONFIG = 'WRITE_WIDGET_CONFIG', + UPDATE_WIDGET_CONFIG = 'UPDATE_WIDGET_CONFIG', } } }