feat(data-loading): load fee schedule catalogs and data from generated JSON payloads instead of bundled Germany TypeScript exports

This commit is contained in:
2026-05-14 12:41:31 +00:00
parent 04248e0629
commit d79e013ebf
34 changed files with 90609 additions and 90525 deletions
+8 -1
View File
@@ -1,4 +1,4 @@
export type TFeeScheduleCountryCode = 'DE';
export type TFeeScheduleCountryCode = string;
export type TFeeScheduleDataStatus =
| 'federal-law-fee-data'
@@ -65,3 +65,10 @@ export interface IFeeScheduleData {
ruleSections: IFeeScheduleRuleSection[];
notes: string[];
}
export interface IFeeSchedulePayload {
schemaVersion: number;
generatedAt?: string;
catalogs: ICountryFeeScheduleCatalog[];
scheduleData: IFeeScheduleData[];
}