npm package diff
Package: @forge/bridge
Versions: 5.8.0-next.5 - 5.8.0-next.6
File: package/out/object-store/objectStore.d.ts
Index: package/out/object-store/objectStore.d.ts
===================================================================
--- package/out/object-store/objectStore.d.ts
+++ package/out/object-store/objectStore.d.ts
@@ -0,0 +1,19 @@
+export declare const objectStore: {
+    upload: ({ functionKey, objects }: {
+        functionKey: string;
+        objects: Blob[];
+    }) => Promise<import("./types").UploadResult[]>;
+    download: ({ functionKey, keys }: {
+        functionKey: string;
+        keys: string[];
+    }) => Promise<import("./types").DownloadResult[]>;
+    getMetadata: ({ functionKey, keys }: {
+        functionKey: string;
+        keys: string[];
+    }) => Promise<import("./types").GetMetadataResult[]>;
+    deleteObjects: ({ functionKey, keys }: {
+        functionKey: string;
+        keys: string[];
+    }) => Promise<void>;
+};
+//# sourceMappingURL=objectStore.d.ts.map
\ No newline at end of file