Skip to content

Commit

Permalink
Expanding the list of entries in basecomplaint.
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorylavery committed Oct 28, 2024
1 parent e241229 commit 8036698
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 16 deletions.
37 changes: 21 additions & 16 deletions dist/complaint.d.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
export interface BaseComplaint {
complaint_identifier: string;
detail_text: string;
caller_name: string;
caller_address: string;
caller_email: string;
caller_phone_1: string;
caller_phone_2: string;
caller_phone_3: string;
id: string;
details: string;
name: string;
address: string;
email: string;
phone1: string;
phone2: string;
phone3: string;
location: {
type: string;
coordinates: Array<number>;
};
location_summary_text: string;
location_detailed_text: string;
reported_by_code: string;
reported_by_other_text: string;
incident_utc_datetime?: Date;
create_user_id: string;
update_user_id: string;
webeoc_identifier: string;
locationSummary: string;
locationDetail: string;
reportedBy?: string;
reportedByOther: string;
incidentDateTime?: Date;
createdBy: string;
updatedBy: string;
webeocId: string;
isPrivacyRequested: string;
status: string;
ownedBy: string;
reportedOn: Date;
updatedOn: Date;
complaintMethodReceivedCode: string;
}
5 changes: 5 additions & 0 deletions src/complaint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ export interface BaseComplaint {
updatedBy: string;
webeocId: string;
isPrivacyRequested: string;
status: string;
ownedBy: string;
reportedOn: Date;
updatedOn: Date;
complaintMethodReceivedCode: string;
}

0 comments on commit 8036698

Please sign in to comment.