@react-pakistan/util-functions 1.23.96 → 1.23.98

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.
@@ -5,4 +5,9 @@ export interface UploadImageToPrivateSupabaseArgs {
5
5
  supabase: any;
6
6
  upsert: boolean;
7
7
  }
8
- export declare const uploadImageToPrivateSupabase: ({ blob, contentType, fileRef, supabase, upsert, }: UploadImageToPrivateSupabaseArgs) => Promise<void>;
8
+ export interface PrivateReturn {
9
+ fullPath: string;
10
+ id: string;
11
+ path: string;
12
+ }
13
+ export declare const uploadImageToPrivateSupabase: ({ blob, contentType, fileRef, supabase, upsert, }: UploadImageToPrivateSupabaseArgs) => Promise<PrivateReturn>;
@@ -5,4 +5,9 @@ export interface UploadImageToPublicSupabaseArgs {
5
5
  supabase: any;
6
6
  upsert: boolean;
7
7
  }
8
- export declare const uploadImageToPublicSupabase: ({ blob, contentType, fileRef, supabase, upsert, }: UploadImageToPublicSupabaseArgs) => Promise<void>;
8
+ export interface PublicReturn {
9
+ fullPath: string;
10
+ id: string;
11
+ path: string;
12
+ }
13
+ export declare const uploadImageToPublicSupabase: ({ blob, contentType, fileRef, supabase, upsert, }: UploadImageToPublicSupabaseArgs) => Promise<PublicReturn>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-pakistan/util-functions",
3
- "version": "1.23.96",
3
+ "version": "1.23.98",
4
4
  "description": "A library of all util functions",
5
5
  "main": "index.js",
6
6
  "scripts": {