File tree Expand file tree Collapse file tree
services/libs/common_services/src/services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export class CommonIntegrationService {
1111 private static safeDecrypt ( encryptedValue : string ) : string {
1212 try {
1313 return decryptData ( encryptedValue )
14- } catch ( error : any ) {
14+ } catch ( error ) {
1515 CommonIntegrationService . log . warn ( `Failed to decrypt value: ${ error ?. message || error } ` )
1616 return encryptedValue
1717 }
@@ -23,7 +23,7 @@ export class CommonIntegrationService {
2323 * @param settings - The settings object that may contain encrypted fields
2424 * @returns Settings object with decrypted values
2525 */
26- public static decryptIntegrationSettings ( platform : string , settings : any ) : any {
26+ public static decryptIntegrationSettings ( platform : string , settings ) {
2727 if ( ! settings ) return settings
2828
2929 switch ( platform ) {
You can’t perform that action at this time.
0 commit comments