File tree Expand file tree Collapse file tree 2 files changed +0
-24
lines changed
apps/sim/lib/uploads/providers Expand file tree Collapse file tree 2 files changed +0
-24
lines changed Original file line number Diff line number Diff line change 1- /**
2- * Blob storage configuration
3- */
41export interface BlobConfig {
52 containerName : string
63 accountName : string
74 accountKey ?: string
85 connectionString ?: string
96}
107
11- /**
12- * Azure multipart upload initialization options
13- */
148export interface AzureMultipartUploadInit {
159 fileName : string
1610 contentType : string
1711 fileSize : number
1812 customConfig ?: BlobConfig
1913}
2014
21- /**
22- * Azure part upload URL
23- */
2415export interface AzurePartUploadUrl {
2516 partNumber : number
2617 blockId : string
2718 url : string
2819}
2920
30- /**
31- * Azure multipart part
32- */
3321export interface AzureMultipartPart {
3422 blockId : string
3523 partNumber : number
Original file line number Diff line number Diff line change 1- /**
2- * S3 storage configuration
3- */
41export interface S3Config {
52 bucket : string
63 region : string
74}
85
9- /**
10- * S3 multipart upload initialization options
11- */
126export interface S3MultipartUploadInit {
137 fileName : string
148 contentType : string
159 fileSize : number
1610 customConfig ?: S3Config
1711}
1812
19- /**
20- * S3 part upload URL
21- */
2213export interface S3PartUploadUrl {
2314 partNumber : number
2415 url : string
2516}
2617
27- /**
28- * S3 multipart part
29- */
3018export interface S3MultipartPart {
3119 ETag : string
3220 PartNumber : number
You can’t perform that action at this time.
0 commit comments