|
| 1 | +import { UstpOfficeDetails } from '../../../../../../common/src/cams/courts'; |
| 2 | + |
| 3 | +//TODO: We should probably put this in Cosmos so we don't have to deal with this locally |
| 4 | +export const USTP_OFFICE_DATA_MAP = new Map<string, UstpOfficeDetails>([ |
| 5 | + [ |
| 6 | + 'USTP_CAMS_Region_18_Office_Seattle', |
| 7 | + { |
| 8 | + officeCode: 'USTP_CAMS_Region_18_Office_Seattle', |
| 9 | + idpGroupId: 'USTP CAMS Region 18 Office Seattle', |
| 10 | + officeName: 'Seattle', |
| 11 | + groups: [ |
| 12 | + { |
| 13 | + groupDesignator: 'SE', |
| 14 | + divisions: [ |
| 15 | + { |
| 16 | + divisionCode: '812', |
| 17 | + court: { courtId: '0981', courtName: 'Western District of Washington' }, |
| 18 | + courtOffice: { |
| 19 | + courtOfficeCode: '2', |
| 20 | + courtOfficeName: 'Seattle', |
| 21 | + }, |
| 22 | + }, |
| 23 | + { |
| 24 | + divisionCode: '813', |
| 25 | + court: { courtId: '0981', courtName: 'Western District of Washington' }, |
| 26 | + courtOffice: { |
| 27 | + courtOfficeCode: '3', |
| 28 | + courtOfficeName: 'Tacoma', |
| 29 | + }, |
| 30 | + }, |
| 31 | + ], |
| 32 | + }, |
| 33 | + { |
| 34 | + groupDesignator: 'AK', |
| 35 | + divisions: [ |
| 36 | + { |
| 37 | + divisionCode: '710', |
| 38 | + court: { courtId: '097-', courtName: 'District of Alaska' }, |
| 39 | + courtOffice: { |
| 40 | + courtOfficeCode: '1', |
| 41 | + courtOfficeName: 'Juneau', |
| 42 | + }, |
| 43 | + }, |
| 44 | + { |
| 45 | + divisionCode: '720', |
| 46 | + court: { courtId: '097-', courtName: 'District of Alaska' }, |
| 47 | + courtOffice: { |
| 48 | + courtOfficeCode: '2', |
| 49 | + courtOfficeName: 'Nome', |
| 50 | + }, |
| 51 | + }, |
| 52 | + { |
| 53 | + divisionCode: '730', |
| 54 | + court: { courtId: '097-', courtName: 'District of Alaska' }, |
| 55 | + courtOffice: { |
| 56 | + courtOfficeCode: '3', |
| 57 | + courtOfficeName: 'Anchorage', |
| 58 | + }, |
| 59 | + }, |
| 60 | + { |
| 61 | + divisionCode: '740', |
| 62 | + court: { courtId: '097-', courtName: 'District of Alaska' }, |
| 63 | + courtOffice: { |
| 64 | + courtOfficeCode: '4', |
| 65 | + courtOfficeName: 'Fairbanks', |
| 66 | + }, |
| 67 | + }, |
| 68 | + { |
| 69 | + divisionCode: '750', |
| 70 | + court: { courtId: '097-', courtName: 'District of Alaska' }, |
| 71 | + courtOffice: { |
| 72 | + courtOfficeCode: '5', |
| 73 | + courtOfficeName: 'Ketchikan', |
| 74 | + }, |
| 75 | + }, |
| 76 | + ], |
| 77 | + }, |
| 78 | + ], |
| 79 | + regionId: '18', |
| 80 | + regionName: 'Seattle', |
| 81 | + }, |
| 82 | + ], |
| 83 | + [ |
| 84 | + 'USTP_CAMS_Region_2_Office_Manhattan', |
| 85 | + { |
| 86 | + officeCode: 'USTP_CAMS_Region_2_Office_Manhattan', |
| 87 | + idpGroupId: 'USTP CAMS Region 2 Office Manhattan', |
| 88 | + officeName: 'Manhattan', |
| 89 | + groups: [ |
| 90 | + { |
| 91 | + groupDesignator: 'NY', |
| 92 | + divisions: [ |
| 93 | + { |
| 94 | + divisionCode: '081', |
| 95 | + court: { courtId: '0208', courtName: 'Southern District of New York' }, |
| 96 | + courtOffice: { |
| 97 | + courtOfficeCode: '1', |
| 98 | + courtOfficeName: 'Manhattan', |
| 99 | + }, |
| 100 | + }, |
| 101 | + { |
| 102 | + divisionCode: '087', |
| 103 | + court: { courtId: '0208', courtName: 'Southern District of New York' }, |
| 104 | + courtOffice: { |
| 105 | + courtOfficeCode: '7', |
| 106 | + courtOfficeName: 'White Plains', |
| 107 | + }, |
| 108 | + }, |
| 109 | + ], |
| 110 | + }, |
| 111 | + ], |
| 112 | + regionId: '2', |
| 113 | + regionName: 'New York', |
| 114 | + }, |
| 115 | + ], |
| 116 | +]); |
0 commit comments