Skip to content

Commit

Permalink
start adding new variables from planning-permission service development
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Feb 14, 2024
1 parent 3a2211d commit 1c5e73a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions types/enums/FileTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export const FileTypes = {
treeCanopyCalculator: 'Tree canopy calculator',
treeConditionReport: 'Tree condition report',
treesReport: 'Trees report',
treeSurvey: 'Tree survey',
'unitPlan.existing': 'Unit plan - existing',
'unitPlan.proposed': 'Unit plan - proposed',
'usePlan.existing': 'Use plan - existing',
Expand Down
28 changes: 28 additions & 0 deletions types/schema/data/Proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,34 @@ export interface BaseDetails {
dwellings?: number;
};
};
demolish?: {
reason?: string;
remediationPlan?: string;
/**
* @description Is a dangerous structure being demolished?
*/
dangerousStructure?: boolean;
/**
* @description Are materials containing asbestos affected by the demolition?
*/
asbestosAffected?: boolean;
};
access?: {
type?: [
| 'vehicle'
| 'parking'
| 'newRoad'
| 'rightsOfWay.newPublic'
| 'rightsOfWay.changeOfUse',
];
description?: string;
};
trees?: {
/**
* @description Will trees or hedges be cut down or pruned?
*/
affected?: boolean;
};
}

/**
Expand Down

0 comments on commit 1c5e73a

Please sign in to comment.