@bagelink/sdk 1.2.25 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/sdk",
3
3
  "type": "module",
4
- "version": "1.2.25",
4
+ "version": "1.2.33",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -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
  }