assets without objects

This commit is contained in:
2025-11-20 02:32:11 +01:00
parent 0eb4c0a294
commit 78e6d3e431
6 changed files with 59 additions and 139 deletions
+1 -2
View File
@@ -12,10 +12,9 @@ interface DocumentLike {
interface AssetLike {
id?: Identifier;
cardinality?: number;
url?: string | null;
expires_at?: number | null;
metadata?: Record<string, unknown> | null;
objects?: Array<Record<string, unknown>>;
[key: string]: unknown;
}