@natch-the-storage/heathershaw-platform-types 1.10.5 → 1.10.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -787,6 +787,7 @@ export declare const ApiRoutes: {
787
787
  };
788
788
  uploads: {
789
789
  presign: string;
790
+ getFile: (key: string) => string;
790
791
  delete: string;
791
792
  };
792
793
  users: {
@@ -217,6 +217,7 @@ export const ApiRoutes = {
217
217
  },
218
218
  uploads: {
219
219
  presign: '/api/uploads/presign',
220
+ getFile: (key) => `/api/uploads/presign${key ? '?key=' + key : ''}`,
220
221
  delete: '/api/uploads',
221
222
  },
222
223
  users: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@natch-the-storage/heathershaw-platform-types",
3
- "version": "1.10.5",
3
+ "version": "1.10.6",
4
4
  "description": "Interfaces and routes to use on the client",
5
5
  "license": "ISC",
6
6
  "author": "Natch Surana",