diff --git a/cli/create-aces-json.ts b/cli/create-aces-json.ts
index 19c56b9..322096b 100644
--- a/cli/create-aces-json.ts
+++ b/cli/create-aces-json.ts
@@ -1,10 +1,10 @@
-import type { LostCategoryBase } from "../lib/entities.ts";
+import type { LostCategoryDefault } from "../lib/entities.ts";
 import type { AcesJSON, AceAction, AceCondition, AceExpression, AceParam } from "../lib/json.ts";
 
 import { BUILD_PATH } from "./paths.ts";
 
 interface CreateAcesJSONOptions {
-    CATEGORIES: LostCategoryBase[];
+    CATEGORIES: LostCategoryDefault[];
 }
 
 export async function createAcesJSON(options: CreateAcesJSONOptions) {