Skip to content

Commit

Permalink
Correcting import type
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnan-aot committed Jan 23, 2025
1 parent 88f0b44 commit a2350c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion vehicles/src/modules/common/common.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import { Country } from './entities/country.entity';
import { Province } from './entities/province.entity';
import { LogAsyncMethodExecution } from '../../common/decorator/log-async-method-execution.decorator';
import { Permit } from '../permit-application-payment/permit/entities/permit.entity';
import { Policy, ValidationResults } from 'onroute-policy-engine/.';
import { ValidationResults } from 'onroute-policy-engine/dist/validation-results';
import { Policy } from 'onroute-policy-engine/dist/policy-engine';
import { ReadPolicyConfigDto } from '../policy/dto/response/read-policy-config.dto';
import { CACHE_MANAGER } from '@nestjs/cache-manager';
import { Cache } from 'cache-manager';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class PaymentService {
@InjectMapper() private readonly classMapper: Mapper,
@Inject(CACHE_MANAGER)
private readonly cacheManager: Cache,
private commonService: CommonService,
private readonly commonService: CommonService,
) {}

private generateHashExpiry = (currDate?: Date) => {
Expand Down

0 comments on commit a2350c1

Please sign in to comment.