2023-11-05 14:28:55 +00:00
|
|
|
import {
|
|
|
|
BackendApiEndpoint,
|
|
|
|
MagApiClient,
|
|
|
|
MagApiError,
|
|
|
|
MagApiErrorCode,
|
|
|
|
Method,
|
2024-01-12 02:56:22 +00:00
|
|
|
PaginatedResult,
|
2023-11-05 14:28:55 +00:00
|
|
|
} from "./be-api";
|
|
|
|
|
|
|
|
import {
|
|
|
|
feEndpoints,
|
|
|
|
FrontendApiEndpoint,
|
|
|
|
FrontendApiEndpoints,
|
|
|
|
} from "./fe-api";
|
|
|
|
|
|
|
|
export * as types from "./types";
|
|
|
|
export * as packed from "./packed";
|
|
|
|
export * as endpoints from "./endpoints";
|
|
|
|
|
|
|
|
export {
|
|
|
|
Method,
|
|
|
|
BackendApiEndpoint,
|
2024-01-12 02:56:22 +00:00
|
|
|
PaginatedResult,
|
2023-11-05 14:28:55 +00:00
|
|
|
MagApiError,
|
|
|
|
MagApiClient,
|
|
|
|
MagApiErrorCode,
|
|
|
|
feEndpoints,
|
|
|
|
FrontendApiEndpoint,
|
|
|
|
FrontendApiEndpoints,
|
|
|
|
};
|