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