@@ -18,7 +18,9 @@ class EnumManager {
const response = await this.apiRequestService.get(url)
- const { data } = HydraNormalizer.denormalize((response as unknown) as AnyJson) as {
+ const { data } = HydraNormalizer.denormalize(
+ response as unknown as AnyJson,
+ ) as {
data: EnumApiResponse
}
@@ -1,5 +1,10 @@
import * as _ from 'lodash-es'
-import type { AnyJson, ApiResponse, HydraMetadata, EnumApiResponse } from '~/types/data'
+import type {
+ AnyJson,
+ ApiResponse,
+ HydraMetadata,
+ EnumApiResponse,
+} from '~/types/data'
import UrlUtils from '~/services/utils/urlUtils'
import { METADATA_TYPE } from '~/types/enum/data'
import models from '~/models/models'