@bagelink/sdk 1.0.64 → 1.1.1
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 +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/openAPITools/functionGenerator.ts +1 -1
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
package/src/index.ts
CHANGED
|
@@ -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[]
|