Updated extraMetadata to allow any type of data
All checks were successful
Setup testing environment and test the code / build (push) Successful in 26s
Publish to NPM / build-and-publish (release) Successful in 18s

This commit is contained in:
2026-04-15 16:11:01 +02:00
parent fb1555338d
commit f54e76ab72
2 changed files with 2 additions and 2 deletions

View File

@@ -24,5 +24,5 @@ export interface Attachment {
path: string
height: number
width: number
extraMetaData: Record<string, string> // Used by clients
extraMetaData: Record<string, any> // Used by clients
}