Lines 1-19
Link Here
|
1 |
import ERMAPIClient from "./erm-api-client"; |
1 |
import ERMAPIClient from "./erm-api-client"; |
2 |
import PatronAPIClient from "./patron-api-client"; |
2 |
import PatronAPIClient from "./patron-api-client"; |
|
|
3 |
import LibraryAPIClient from "./library-api-client"; |
3 |
import AcquisitionAPIClient from "./acquisition-api-client"; |
4 |
import AcquisitionAPIClient from "./acquisition-api-client"; |
4 |
import AVAPIClient from "./authorised-values-api-client"; |
5 |
import AVAPIClient from "./authorised-values-api-client"; |
5 |
import ItemAPIClient from "./item-api-client"; |
6 |
import ItemAPIClient from "./item-api-client"; |
6 |
import RecordSourcesAPIClient from "./record-sources-api-client"; |
7 |
import RecordSourcesAPIClient from "./record-sources-api-client"; |
7 |
import SysprefAPIClient from "./system-preferences-api-client"; |
8 |
import SysprefAPIClient from "./system-preferences-api-client"; |
8 |
import PreservationAPIClient from "./preservation-api-client"; |
9 |
import PreservationAPIClient from "./preservation-api-client"; |
|
|
10 |
import CircRuleAPIClient from "./circulation-rules-api-client"; |
9 |
|
11 |
|
10 |
export const APIClient = { |
12 |
export const APIClient = { |
11 |
erm: new ERMAPIClient(), |
13 |
erm: new ERMAPIClient(), |
12 |
patron: new PatronAPIClient(), |
14 |
patron: new PatronAPIClient(), |
|
|
15 |
library: new LibraryAPIClient(), |
13 |
acquisition: new AcquisitionAPIClient(), |
16 |
acquisition: new AcquisitionAPIClient(), |
14 |
authorised_values: new AVAPIClient(), |
17 |
authorised_values: new AVAPIClient(), |
15 |
item: new ItemAPIClient(), |
18 |
item: new ItemAPIClient(), |
16 |
sysprefs: new SysprefAPIClient(), |
19 |
sysprefs: new SysprefAPIClient(), |
17 |
preservation: new PreservationAPIClient(), |
20 |
preservation: new PreservationAPIClient(), |
18 |
record_sources: new RecordSourcesAPIClient(), |
21 |
record_sources: new RecordSourcesAPIClient(), |
|
|
22 |
circRule: new CircRuleAPIClient(), |
19 |
}; |
23 |
}; |