feat(records): complete eAkte reference journey
Module Package Release / publish-packages (push) Successful in 12s

This commit is contained in:
2026-08-22 18:42:09 +02:00
parent 38f203a906
commit a5eee2c23f
15 changed files with 1020 additions and 36 deletions
+11
View File
@@ -89,9 +89,15 @@ export type RecordItem = {
content_sha256?: string | null;
content_type?: string | null;
size_bytes?: number | null;
source_valid_from?: string | null;
source_valid_to?: string | null;
source_recorded_at?: string | null;
launch_url?: string | null;
filed_at: string;
filed_by?: string | null;
institutional_context: Record<string, unknown>;
source_metadata: Record<string, unknown>;
filing_metadata: Record<string, unknown>;
};
export type RecordChronology = {
@@ -147,10 +153,15 @@ export type RecordTransferPackage = {
provider_id: string;
profile: string;
status: string;
authority_mode: string;
manifest: Record<string, unknown>;
manifest_sha256: string;
receipt: Record<string, unknown>;
receipt_sha256?: string | null;
external_reference?: string | null;
recovery_operation_id?: string | null;
simulated: boolean;
institutional_context: Record<string, unknown>;
recorded_at: string;
};