@bagelink/sdk 1.2.22 → 1.2.33
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/package.json
CHANGED
|
@@ -37,7 +37,7 @@ const primitiveTypes = [
|
|
|
37
37
|
/**
|
|
38
38
|
* Upload options interface for file upload operations
|
|
39
39
|
*/
|
|
40
|
-
interface UploadOptions {
|
|
40
|
+
export interface UploadOptions {
|
|
41
41
|
onUploadProgress?: (progressEvent: any) => void
|
|
42
42
|
dirPath?: string
|
|
43
43
|
tags?: string[]
|
|
@@ -46,7 +46,7 @@ interface UploadOptions {
|
|
|
46
46
|
/**
|
|
47
47
|
* Represents a unique path and method combination
|
|
48
48
|
*/
|
|
49
|
-
interface PathOperation {
|
|
49
|
+
export interface PathOperation {
|
|
50
50
|
path: string
|
|
51
51
|
method: string
|
|
52
52
|
}
|