Skip to content

Commit 7b31aff

Browse files
authored
Merge pull request #177 from UN-OCHA/HPC-9772
HPC-9772: Add `focusLocationId` to `planVersion` model
2 parents f532f7d + 425335c commit 7b31aff

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unocha/hpc-api-core",
3-
"version": "10.1.2",
3+
"version": "10.2.0",
44
"description": "Core libraries supporting HPC.Tools API Backend",
55
"license": "Apache-2.0",
66
"private": false,

src/db/models/planVersion.ts

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { brandedType } from '../../util/io-ts';
44
import type { Brand } from '../../util/types';
55
import { DATE } from '../util/datatypes';
66
import { defineLegacyVersionedModel } from '../util/legacy-versioned-model';
7+
import { LOCATION_ID } from './location';
78
import { PLAN_ID } from './plan';
89
import { PLAN_REPORTING_PERIOD_ID } from './planReportingPeriod';
910

@@ -59,6 +60,7 @@ export default defineLegacyVersionedModel({
5960
type: PLAN_VERSION_CLUSTER_SELECTION_TYPE,
6061
},
6162
pdfPublishDate: { kind: 'checked', type: DATE },
63+
focusLocationId: { kind: 'branded-integer', brand: LOCATION_ID },
6264
},
6365
accidentallyOptional: {
6466
shortName: { kind: 'checked', type: t.string },

0 commit comments

Comments
 (0)