@bagelink/sdk 1.0.62 → 1.0.66

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.
package/dist/index.cjs CHANGED
@@ -274,7 +274,7 @@ function fileTemplate(tsString, typeForImport, baseURL) {
274
274
  import type { AxiosResponse } from 'axios';
275
275
  import type {${typeForImport.join(", ")}} from './types.d';
276
276
 
277
- interface UploadOptions {
277
+ export interface UploadOptions {
278
278
  onUploadProgress?: (progressEvent: any) => void
279
279
  dirPath?: string
280
280
  tags?: string[]
package/dist/index.d.cts CHANGED
@@ -108,4 +108,4 @@ declare class Bagel {
108
108
  uploadFile<T = any>(file: File, options?: UploadOptions): Promise<T>;
109
109
  }
110
110
 
111
- export { Bagel, type TableToTypeMapping, type Tables, type User, formatAPIErrorMessage, _default as openAPI };
111
+ export { Bagel, type TableToTypeMapping, type Tables, type UploadOptions, type User, formatAPIErrorMessage, _default as openAPI };
package/dist/index.d.mts CHANGED
@@ -108,4 +108,4 @@ declare class Bagel {
108
108
  uploadFile<T = any>(file: File, options?: UploadOptions): Promise<T>;
109
109
  }
110
110
 
111
- export { Bagel, type TableToTypeMapping, type Tables, type User, formatAPIErrorMessage, _default as openAPI };
111
+ export { Bagel, type TableToTypeMapping, type Tables, type UploadOptions, type User, formatAPIErrorMessage, _default as openAPI };
package/dist/index.d.ts CHANGED
@@ -108,4 +108,4 @@ declare class Bagel {
108
108
  uploadFile<T = any>(file: File, options?: UploadOptions): Promise<T>;
109
109
  }
110
110
 
111
- export { Bagel, type TableToTypeMapping, type Tables, type User, formatAPIErrorMessage, _default as openAPI };
111
+ export { Bagel, type TableToTypeMapping, type Tables, type UploadOptions, type User, formatAPIErrorMessage, _default as openAPI };
package/dist/index.mjs CHANGED
@@ -268,7 +268,7 @@ function fileTemplate(tsString, typeForImport, baseURL) {
268
268
  import type { AxiosResponse } from 'axios';
269
269
  import type {${typeForImport.join(", ")}} from './types.d';
270
270
 
271
- interface UploadOptions {
271
+ export interface UploadOptions {
272
272
  onUploadProgress?: (progressEvent: any) => void
273
273
  dirPath?: string
274
274
  tags?: string[]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/sdk",
3
3
  "type": "module",
4
- "version": "1.0.62",
4
+ "version": "1.0.66",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
package/src/index.ts CHANGED
@@ -17,7 +17,7 @@ export interface User {
17
17
  type: string
18
18
  }
19
19
 
20
- interface UploadOptions {
20
+ export interface UploadOptions {
21
21
  onUploadProgress?: (progressEvent: any) => void
22
22
  topic?: string
23
23
  }
@@ -297,7 +297,7 @@ function fileTemplate(
297
297
  import type { AxiosResponse } from 'axios';
298
298
  import type {${typeForImport.join(', ')}} from './types.d';
299
299
 
300
- interface UploadOptions {
300
+ export interface UploadOptions {
301
301
  onUploadProgress?: (progressEvent: any) => void
302
302
  dirPath?: string
303
303
  tags?: string[]