@ -16,9 +16,10 @@ import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
@Injectable()
export class RedactValuesInResponseInterceptor<T>
implements NestInterceptor<T, any>
{
export class RedactValuesInResponseInterceptor<T> implements NestInterceptor<
T,
any
> {
public intercept(
context: ExecutionContext,
next: CallHandler<T>
@ -11,9 +11,9 @@ import { DataSource } from '@prisma/client';
import { Observable } from 'rxjs';
export class TransformDataSourceInRequestInterceptor<T>
export class TransformDataSourceInRequestInterceptor<
T
> implements NestInterceptor<T, any> {
public constructor(
private readonly configurationService: ConfigurationService
) {}
@ -13,9 +13,9 @@ import { Observable } from 'rxjs';
export class TransformDataSourceInResponseInterceptor<T>
export class TransformDataSourceInResponseInterceptor<
private encodedDataSourceMap: {
[dataSource: string]: string;
} = {};