|
Lines 8-13
import AVAPIClient from "@fetch/authorised-values-api-client";
Link Here
|
| 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 ShibbolethAPIClient from "@fetch/shibboleth-api-client"; |
| 11 |
import PreservationAPIClient from "@fetch/preservation-api-client"; |
12 |
import PreservationAPIClient from "@fetch/preservation-api-client"; |
| 12 |
|
13 |
|
| 13 |
export const APIClient = { |
14 |
export const APIClient = { |
|
Lines 18-23
export const APIClient = {
Link Here
|
| 18 |
authorised_values: new AVAPIClient(HttpClient), |
19 |
authorised_values: new AVAPIClient(HttpClient), |
| 19 |
item: new ItemAPIClient(HttpClient), |
20 |
item: new ItemAPIClient(HttpClient), |
| 20 |
sysprefs: new SysprefAPIClient(HttpClient), |
21 |
sysprefs: new SysprefAPIClient(HttpClient), |
|
|
22 |
shibboleth: new ShibbolethAPIClient(HttpClient), |
| 21 |
preservation: new PreservationAPIClient(HttpClient), |
23 |
preservation: new PreservationAPIClient(HttpClient), |
| 22 |
record_sources: new RecordSourcesAPIClient(HttpClient), |
24 |
record_sources: new RecordSourcesAPIClient(HttpClient), |
| 23 |
}; |
25 |
}; |