generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/lewis-moon-snail' into CE-776
- Loading branch information
Showing
49 changed files
with
5,269 additions
and
1,077 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
backend/src/types/models/case-files/ceeb/decision/create-decision-input.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { BaseCaseFileInput } from "../../base-case-file-input"; | ||
import { DecisionInput } from "./decision-input"; | ||
|
||
export interface CreateDecisionInput extends BaseCaseFileInput { | ||
decison: DecisionInput; | ||
} |
13 changes: 13 additions & 0 deletions
13
backend/src/types/models/case-files/ceeb/decision/decision-input.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
export interface DecisionInput { | ||
id?: string; | ||
schedule: string; | ||
sector: string; | ||
discharge: string; | ||
nonCompliance: string; | ||
rationale: string; | ||
inspectionNumber?: string; | ||
leadAgency?: string; | ||
assignedTo: string; | ||
actionTaken: string; | ||
actionTakenDate: Date | null; | ||
} |
8 changes: 8 additions & 0 deletions
8
backend/src/types/models/case-files/ceeb/decision/update-decison-input.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { BaseCaseFileInput } from "../../base-case-file-input"; | ||
import { DecisionInput } from "./decision-input"; | ||
|
||
export interface UpdateDecisionInput extends BaseCaseFileInput { | ||
agencyCode: string; | ||
caseCode: string; | ||
decison: DecisionInput; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { BaseCodeTable } from "../../models/code-tables/code-table"; | ||
|
||
export interface DecisionType extends BaseCodeTable { | ||
decisionType: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { BaseCodeTable } from "./code-table"; | ||
|
||
export interface Discharge extends BaseCodeTable { | ||
discharge: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { BaseCodeTable } from "./code-table"; | ||
|
||
export interface NonCompliance extends BaseCodeTable { | ||
nonCompliance: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { BaseCodeTable } from "./code-table"; | ||
|
||
export interface Rationale extends BaseCodeTable { | ||
rationale: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { BaseCodeTable } from "./code-table"; | ||
|
||
export interface Schedule extends BaseCodeTable { | ||
schedule: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { BaseCodeTable } from "./code-table"; | ||
|
||
export interface SectorCode extends BaseCodeTable { | ||
sector: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.