feat(data-loading): load fee schedule catalogs and data from generated JSON payloads instead of bundled Germany TypeScript exports
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user