Skip to content

Commit

Permalink
ORV2-2968 Non Resident ICBC Permit BE changes (#1657)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnan-aot authored Nov 6, 2024
1 parent 55c92ad commit c2c644b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions vehicles/src/common/enum/third-party-liability.enum.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* Third Party Liability for Non resident ICBC permits
*/
export enum ThirdPartyLiability {
DANGEROUS_GOODS = 'DANGEROUS_GOODS',
GENERAL_GOODS = 'GENERAL_GOODS',
}
6 changes: 6 additions & 0 deletions vehicles/src/common/interface/permit.template.interface.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { ThirdPartyLiability } from '../enum/third-party-liability.enum';

// Data used to populate a .docx template
export interface PermitTemplateData {
permitName: string;
Expand Down Expand Up @@ -35,6 +37,10 @@ export interface PermitData {
applicationNotes?: string;
permittedCommodity?: PermittedCommodity;
permittedRoute?: PermittedRoute;
/**
* Third Party Liability for Non resident ICBC permits
*/
thirdPartyLiability?: ThirdPartyLiability;
}

interface VehicleConfiguration {
Expand Down

0 comments on commit c2c644b

Please sign in to comment.