@forge/bridge
5.15.2-next.0-experimental-5b726e65.16.0-next.1
out/object-store/getMetadata.d.ts~
out/object-store/getMetadata.d.tsModified+8
Index: package/out/object-store/getMetadata.d.ts
===================================================================
--- package/out/object-store/getMetadata.d.ts
+++ package/out/object-store/getMetadata.d.ts
@@ -1,5 +1,13 @@
import type { GetMetadataResult } from './types';
+/**
+ * Get metadata for multiple objectIds
+ *
+ * @param functionKey - Configuration object containing the backend function key to filter and generate object metadata
+ * @param keys - Array of object keys to get metadata for
+ * @returns Promise resolving to GetMetadataResult[]
+ * @throws {BridgeAPIError} When filtering fails or download encounters an error
+ */
export declare const getMetadata: ({ functionKey, keys }: {
functionKey: string;
keys: string[];
}) => Promise<GetMetadataResult[]>;