Lines 9-14
import ItemAPIClient from "@fetch/item-api-client";
Link Here
|
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 |
import LibraryAPIClient from "@fetch/library-api-client"; |
12 |
|
13 |
|
13 |
export const APIClient = { |
14 |
export const APIClient = { |
14 |
erm: new ERMAPIClient(HttpClient), |
15 |
erm: new ERMAPIClient(HttpClient), |
Lines 20-23
export const APIClient = {
Link Here
|
20 |
sysprefs: new SysprefAPIClient(HttpClient), |
21 |
sysprefs: new SysprefAPIClient(HttpClient), |
21 |
preservation: new PreservationAPIClient(HttpClient), |
22 |
preservation: new PreservationAPIClient(HttpClient), |
22 |
record_sources: new RecordSourcesAPIClient(HttpClient), |
23 |
record_sources: new RecordSourcesAPIClient(HttpClient), |
|
|
24 |
libraries: new LibraryAPIClient(HttpClient), |
23 |
}; |
25 |
}; |
24 |
- |
|
|