Skip to content

Commit

Permalink
Add build files for @next
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Aug 1, 2024
1 parent 40718cd commit cbb154b
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions @next/types/schemas/prototypeApplication/enums/HousingProvider.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
/**
* @description Other affordable housing provider
*/
type AffordableHousing = 'affordableHousing';

/**
* @description Council delivered build to rent
*/
type CouncilBuildToRent = 'councilBuildToRent';

/**
* @description Council delivery company
*/
type CouncilDelivery = 'councilDelivery';

/**
* @description Housing association
*/
type HA = 'HA';

/**
* @description Local Authority
*/
type LA = 'LA';

/**
* @description Private
*/
type Private = 'private';

/**
* @description Private rented sector
*/
type PrivateRented = 'privateRented';

/**
* @description Other public authority
*/
type PublicAuthority = 'publicAuthority';

/**
* @description Self-build
*/
type SelfBuild = 'selfBuild';

/**
* @id #GLAHousingProvider
* @description Housing provider categories tracked by the Greater London Authority (GLA)
*/
export type GLAHousingProvider =
| AffordableHousing
| CouncilBuildToRent
| CouncilDelivery
| HA
| LA
| Private
| PrivateRented
| PublicAuthority
| SelfBuild;

0 comments on commit cbb154b

Please sign in to comment.