| Lines 1-14
          
      
      
        Link Here | 
        
          | 1 | import HttpClient from "./http-client"; | 1 | import HttpClient from "./http-client"; | 
        
          | 2 |  | 2 |  | 
          
            
              | 3 | import ERMAPIClient from "./../../fetch/erm-api-client"; | 3 | import ERMAPIClient from "@fetch/erm-api-client"; | 
            
              | 4 | import PatronAPIClient from "./../../fetch/patron-api-client"; | 4 | import PatronAPIClient from "@fetch/patron-api-client"; | 
            
              | 5 | import AcquisitionAPIClient from "./../../fetch/acquisition-api-client"; | 5 | import AcquisitionAPIClient from "@fetch/acquisition-api-client"; | 
            
              | 6 | import AdditionalFieldsAPIClient from "./../../fetch/additional-fields-api-client"; | 6 | import AdditionalFieldsAPIClient from "@fetch/additional-fields-api-client"; | 
            
              | 7 | import AVAPIClient from "./../../fetch/authorised-values-api-client"; | 7 | import AVAPIClient from "@fetch/authorised-values-api-client"; | 
            
              | 8 | import ItemAPIClient from "./../../fetch/item-api-client"; | 8 | import ItemAPIClient from "@fetch/item-api-client"; | 
            
              | 9 | import RecordSourcesAPIClient from "./../../fetch/record-sources-api-client"; | 9 | import RecordSourcesAPIClient from "@fetch/record-sources-api-client"; | 
            
              | 10 | import SysprefAPIClient from "./../../fetch/system-preferences-api-client"; | 10 | import SysprefAPIClient from "@fetch/system-preferences-api-client"; | 
            
              | 11 | import PreservationAPIClient from "./../../fetch/preservation-api-client"; | 11 | import PreservationAPIClient from "@fetch/preservation-api-client"; | 
        
          | 12 |  | 12 |  | 
        
          | 13 | export const APIClient = { | 13 | export const APIClient = { | 
        
          | 14 |     erm: new ERMAPIClient(HttpClient), | 14 |     erm: new ERMAPIClient(HttpClient), | 
            
              | 15 | -  |  |  |