fix: fix circular dependencies in types
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / 2.0 / Common.ts
index c73c19e3660029ec2e4f39e07bf2dcb171ca38c6..e9226961476457e705bb86e782d8e44fc6d9aaa4 100644 (file)
@@ -1,4 +1,5 @@
-import type { GenericStatus, JsonObject } from '../../internal';
+import type { JsonObject } from '../../JsonType';
+import type { GenericStatus } from '../Common';
 
 export enum DataEnumType {
   // eslint-disable-next-line id-blacklist
@@ -93,7 +94,7 @@ export enum CertificateSigningUseEnumType {
   V2GCertificate = 'V2GCertificate',
 }
 
-export type CertificateSignedStatusEnumType = GenericStatus;
+export type CertificateSignedStatusEnumType = GenericStatusEnumType;
 
 export type CertificateHashDataType = {
   hashAlgorithm: HashAlgorithmEnumType;