@fenixalliance/abs-api-client 1.0.8 → 1.0.9

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.
Files changed (57) hide show
  1. package/clients/contentService/index.ts +2 -2
  2. package/clients/contentService/models/{Portal.ts → PortalSettings.ts} +1 -1
  3. package/clients/contentService/models/PortalSettingsEnvelope.ts +14 -0
  4. package/clients/contentService/services/PortalsService.js +1 -1
  5. package/clients/contentService/services/PortalsService.ts +3 -3
  6. package/clients/holderService/index.ts +1 -0
  7. package/clients/holderService/models/FollowRecordDtoListEnvelope.js +2 -0
  8. package/clients/holderService/models/FollowRecordDtoListEnvelope.ts +14 -0
  9. package/clients/holderService/services/HolderService.js +56 -30
  10. package/clients/holderService/services/HolderService.ts +62 -36
  11. package/clients/storageService/core/ApiError.js +20 -0
  12. package/clients/storageService/core/ApiError.ts +25 -0
  13. package/clients/storageService/core/ApiRequestOptions.js +2 -0
  14. package/clients/storageService/core/ApiRequestOptions.ts +17 -0
  15. package/clients/storageService/core/ApiResult.js +2 -0
  16. package/clients/storageService/core/ApiResult.ts +11 -0
  17. package/clients/storageService/core/CancelablePromise.js +104 -0
  18. package/clients/storageService/core/CancelablePromise.ts +131 -0
  19. package/clients/storageService/core/OpenAPI.js +14 -0
  20. package/clients/storageService/core/OpenAPI.ts +32 -0
  21. package/clients/storageService/core/request.js +294 -0
  22. package/clients/storageService/core/request.ts +322 -0
  23. package/clients/storageService/index.js +26 -0
  24. package/clients/storageService/index.ts +23 -0
  25. package/clients/storageService/models/Blob.js +11 -0
  26. package/clients/storageService/models/Blob.ts +26 -0
  27. package/clients/storageService/models/BlobEnvelope.js +2 -0
  28. package/clients/{contentService/models/PortalEnvelope.ts → storageService/models/BlobEnvelope.ts} +3 -3
  29. package/clients/storageService/models/EmptyEnvelope.js +2 -0
  30. package/clients/storageService/models/EmptyEnvelope.ts +12 -0
  31. package/clients/storageService/models/ErrorEnvelope.js +2 -0
  32. package/clients/storageService/models/ErrorEnvelope.ts +12 -0
  33. package/clients/storageService/models/FileUploadCreateDto.js +2 -0
  34. package/clients/storageService/models/FileUploadCreateDto.ts +20 -0
  35. package/clients/storageService/models/FileUploadDto.js +2 -0
  36. package/clients/storageService/models/FileUploadDto.ts +29 -0
  37. package/clients/storageService/models/FileUploadDtoEnvelope.js +2 -0
  38. package/clients/storageService/models/FileUploadDtoEnvelope.ts +14 -0
  39. package/clients/storageService/models/FileUploadUpdateDto.js +2 -0
  40. package/clients/storageService/models/FileUploadUpdateDto.ts +19 -0
  41. package/clients/storageService/services/AvatarsService.js +189 -0
  42. package/clients/storageService/services/AvatarsService.ts +223 -0
  43. package/clients/storageService/services/BlobsService.js +66 -0
  44. package/clients/storageService/services/BlobsService.ts +81 -0
  45. package/clients/storageService/services/FilesService.js +171 -0
  46. package/clients/storageService/services/FilesService.ts +200 -0
  47. package/clients/storageService/services/RadzenEditorService.js +117 -0
  48. package/clients/storageService/services/RadzenEditorService.ts +149 -0
  49. package/clients/storageService/services/UploadsService.js +33 -0
  50. package/clients/storageService/services/UploadsService.ts +53 -0
  51. package/package.json +1 -1
  52. package/schemas/contentService/schema.s.ts +29 -29
  53. package/schemas/holderService/schema.s.ts +874 -780
  54. package/schemas/storageService/schema.s.js +6 -0
  55. package/schemas/storageService/schema.s.ts +1042 -0
  56. /package/clients/contentService/models/{Portal.js → PortalSettings.js} +0 -0
  57. /package/clients/contentService/models/{PortalEnvelope.js → PortalSettingsEnvelope.js} +0 -0
@@ -0,0 +1,1042 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+
7
+ export interface paths {
8
+ "/api/v2/StorageService/Avatars/{socialProfileId}": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
17
+ path: {
18
+ socialProfileId: string;
19
+ };
20
+ };
21
+ responses: {
22
+ /** @description OK */
23
+ 200: {
24
+ content: {
25
+ "application/json": components["schemas"]["EmptyEnvelope"];
26
+ "image/png": components["schemas"]["EmptyEnvelope"];
27
+ };
28
+ };
29
+ /** @description Unauthorized */
30
+ 401: {
31
+ content: {
32
+ "application/json": components["schemas"]["ErrorEnvelope"];
33
+ "image/png": components["schemas"]["ErrorEnvelope"];
34
+ };
35
+ };
36
+ /** @description Forbidden */
37
+ 403: {
38
+ content: {
39
+ "application/json": components["schemas"]["ErrorEnvelope"];
40
+ "image/png": components["schemas"]["ErrorEnvelope"];
41
+ };
42
+ };
43
+ };
44
+ };
45
+ };
46
+ "/api/v2/StorageService/Avatars/User": {
47
+ get: {
48
+ parameters: {
49
+ query?: {
50
+ "api-version"?: string;
51
+ };
52
+ header?: {
53
+ "x-api-version"?: string;
54
+ };
55
+ };
56
+ responses: {
57
+ /** @description OK */
58
+ 200: {
59
+ content: {
60
+ "application/json": components["schemas"]["EmptyEnvelope"];
61
+ "image/png": components["schemas"]["EmptyEnvelope"];
62
+ };
63
+ };
64
+ /** @description Unauthorized */
65
+ 401: {
66
+ content: {
67
+ "application/json": components["schemas"]["ErrorEnvelope"];
68
+ "image/png": components["schemas"]["ErrorEnvelope"];
69
+ };
70
+ };
71
+ /** @description Forbidden */
72
+ 403: {
73
+ content: {
74
+ "application/json": components["schemas"]["ErrorEnvelope"];
75
+ "image/png": components["schemas"]["ErrorEnvelope"];
76
+ };
77
+ };
78
+ };
79
+ };
80
+ post: {
81
+ parameters: {
82
+ query?: {
83
+ "api-version"?: string;
84
+ };
85
+ header?: {
86
+ "x-api-version"?: string;
87
+ };
88
+ };
89
+ requestBody?: {
90
+ content: {
91
+ "multipart/form-data": {
92
+ /** Format: binary */
93
+ avatar?: string;
94
+ };
95
+ };
96
+ };
97
+ responses: {
98
+ /** @description OK */
99
+ 200: {
100
+ content: {
101
+ "application/json": components["schemas"]["EmptyEnvelope"];
102
+ "image/png": components["schemas"]["EmptyEnvelope"];
103
+ };
104
+ };
105
+ /** @description Unauthorized */
106
+ 401: {
107
+ content: {
108
+ "application/json": components["schemas"]["ErrorEnvelope"];
109
+ "image/png": components["schemas"]["ErrorEnvelope"];
110
+ };
111
+ };
112
+ /** @description Forbidden */
113
+ 403: {
114
+ content: {
115
+ "application/json": components["schemas"]["ErrorEnvelope"];
116
+ "image/png": components["schemas"]["ErrorEnvelope"];
117
+ };
118
+ };
119
+ };
120
+ };
121
+ };
122
+ "/api/v2/StorageService/Avatars/User/{userId}": {
123
+ get: {
124
+ parameters: {
125
+ query?: {
126
+ "api-version"?: string;
127
+ };
128
+ header?: {
129
+ "x-api-version"?: string;
130
+ };
131
+ path: {
132
+ userId: string;
133
+ };
134
+ };
135
+ responses: {
136
+ /** @description OK */
137
+ 200: {
138
+ content: {
139
+ "application/json": components["schemas"]["EmptyEnvelope"];
140
+ "image/png": components["schemas"]["EmptyEnvelope"];
141
+ };
142
+ };
143
+ /** @description Unauthorized */
144
+ 401: {
145
+ content: {
146
+ "application/json": components["schemas"]["ErrorEnvelope"];
147
+ "image/png": components["schemas"]["ErrorEnvelope"];
148
+ };
149
+ };
150
+ /** @description Forbidden */
151
+ 403: {
152
+ content: {
153
+ "application/json": components["schemas"]["ErrorEnvelope"];
154
+ "image/png": components["schemas"]["ErrorEnvelope"];
155
+ };
156
+ };
157
+ };
158
+ };
159
+ };
160
+ "/api/v2/StorageService/Avatars/Tenant/{tenantId}": {
161
+ get: {
162
+ parameters: {
163
+ query?: {
164
+ "api-version"?: string;
165
+ };
166
+ header?: {
167
+ "x-api-version"?: string;
168
+ };
169
+ path: {
170
+ tenantId: string;
171
+ };
172
+ };
173
+ responses: {
174
+ /** @description OK */
175
+ 200: {
176
+ content: {
177
+ "application/json": components["schemas"]["EmptyEnvelope"];
178
+ "image/png": components["schemas"]["EmptyEnvelope"];
179
+ };
180
+ };
181
+ /** @description Unauthorized */
182
+ 401: {
183
+ content: {
184
+ "application/json": components["schemas"]["ErrorEnvelope"];
185
+ "image/png": components["schemas"]["ErrorEnvelope"];
186
+ };
187
+ };
188
+ /** @description Forbidden */
189
+ 403: {
190
+ content: {
191
+ "application/json": components["schemas"]["ErrorEnvelope"];
192
+ "image/png": components["schemas"]["ErrorEnvelope"];
193
+ };
194
+ };
195
+ };
196
+ };
197
+ post: {
198
+ parameters: {
199
+ query?: {
200
+ "api-version"?: string;
201
+ };
202
+ header?: {
203
+ "x-api-version"?: string;
204
+ };
205
+ path: {
206
+ tenantId: string;
207
+ };
208
+ };
209
+ requestBody?: {
210
+ content: {
211
+ "multipart/form-data": {
212
+ /** Format: binary */
213
+ avatar?: string;
214
+ };
215
+ };
216
+ };
217
+ responses: {
218
+ /** @description OK */
219
+ 200: {
220
+ content: {
221
+ "application/json": components["schemas"]["EmptyEnvelope"];
222
+ "image/png": components["schemas"]["EmptyEnvelope"];
223
+ };
224
+ };
225
+ /** @description Unauthorized */
226
+ 401: {
227
+ content: {
228
+ "application/json": components["schemas"]["ErrorEnvelope"];
229
+ "image/png": components["schemas"]["ErrorEnvelope"];
230
+ };
231
+ };
232
+ /** @description Forbidden */
233
+ 403: {
234
+ content: {
235
+ "application/json": components["schemas"]["ErrorEnvelope"];
236
+ "image/png": components["schemas"]["ErrorEnvelope"];
237
+ };
238
+ };
239
+ };
240
+ };
241
+ };
242
+ "/api/v2/StorageService/Avatars/Contact/{contactId}": {
243
+ get: {
244
+ parameters: {
245
+ query?: {
246
+ "api-version"?: string;
247
+ };
248
+ header?: {
249
+ "x-api-version"?: string;
250
+ };
251
+ path: {
252
+ contactId: string;
253
+ };
254
+ };
255
+ responses: {
256
+ /** @description OK */
257
+ 200: {
258
+ content: {
259
+ "application/json": components["schemas"]["EmptyEnvelope"];
260
+ "image/png": components["schemas"]["EmptyEnvelope"];
261
+ };
262
+ };
263
+ /** @description Unauthorized */
264
+ 401: {
265
+ content: {
266
+ "application/json": components["schemas"]["ErrorEnvelope"];
267
+ "image/png": components["schemas"]["ErrorEnvelope"];
268
+ };
269
+ };
270
+ /** @description Forbidden */
271
+ 403: {
272
+ content: {
273
+ "application/json": components["schemas"]["ErrorEnvelope"];
274
+ "image/png": components["schemas"]["ErrorEnvelope"];
275
+ };
276
+ };
277
+ };
278
+ };
279
+ };
280
+ "/api/v2/StorageService/Avatars/Contacts/{contactId}": {
281
+ post: {
282
+ parameters: {
283
+ query?: {
284
+ tenantId?: string;
285
+ "api-version"?: string;
286
+ };
287
+ header?: {
288
+ "x-api-version"?: string;
289
+ };
290
+ path: {
291
+ contactId: string;
292
+ };
293
+ };
294
+ requestBody?: {
295
+ content: {
296
+ "multipart/form-data": {
297
+ /** Format: binary */
298
+ avatar?: string;
299
+ };
300
+ };
301
+ };
302
+ responses: {
303
+ /** @description OK */
304
+ 200: {
305
+ content: {
306
+ "application/json": components["schemas"]["EmptyEnvelope"];
307
+ "image/png": components["schemas"]["EmptyEnvelope"];
308
+ };
309
+ };
310
+ /** @description Unauthorized */
311
+ 401: {
312
+ content: {
313
+ "application/json": components["schemas"]["ErrorEnvelope"];
314
+ "image/png": components["schemas"]["ErrorEnvelope"];
315
+ };
316
+ };
317
+ /** @description Forbidden */
318
+ 403: {
319
+ content: {
320
+ "application/json": components["schemas"]["ErrorEnvelope"];
321
+ "image/png": components["schemas"]["ErrorEnvelope"];
322
+ };
323
+ };
324
+ };
325
+ };
326
+ };
327
+ "/api/v2/StorageService/Blobs": {
328
+ get: operations["GetBlobsAsync"];
329
+ };
330
+ "/api/v2/StorageService/Blobs/Single": {
331
+ get: operations["GetBlobAsync"];
332
+ };
333
+ "/api/v2/StorageService/Files": {
334
+ get: operations["GetFilesAsync"];
335
+ post: operations["CreateFileAsync"];
336
+ };
337
+ "/api/v2/StorageService/Files/{fileId}": {
338
+ get: operations["GetFileAsync"];
339
+ put: operations["UpdateFileAsync"];
340
+ delete: operations["DeleteFileAsync"];
341
+ };
342
+ "/api/v2/StorageService/Files/{fileId}/Raw": {
343
+ get: operations["DownloadFileAsync"];
344
+ };
345
+ "/api/v2/StorageService/RadzenEditor/Uploads/Single": {
346
+ post: {
347
+ parameters: {
348
+ query?: {
349
+ tenantId?: string;
350
+ "api-version"?: string;
351
+ };
352
+ header?: {
353
+ "x-api-version"?: string;
354
+ };
355
+ };
356
+ requestBody?: {
357
+ content: {
358
+ "multipart/form-data": {
359
+ /** Format: binary */
360
+ file?: string;
361
+ };
362
+ };
363
+ };
364
+ responses: {
365
+ /** @description OK */
366
+ 200: {
367
+ content: never;
368
+ };
369
+ };
370
+ };
371
+ };
372
+ "/api/v2/StorageService/RadzenEditor/Uploads/Image": {
373
+ post: {
374
+ parameters: {
375
+ query?: {
376
+ tenantId?: string;
377
+ "api-version"?: string;
378
+ };
379
+ header?: {
380
+ "x-api-version"?: string;
381
+ };
382
+ };
383
+ requestBody?: {
384
+ content: {
385
+ "multipart/form-data": {
386
+ /** Format: binary */
387
+ file?: string;
388
+ };
389
+ };
390
+ };
391
+ responses: {
392
+ /** @description OK */
393
+ 200: {
394
+ content: never;
395
+ };
396
+ };
397
+ };
398
+ };
399
+ "/api/v2/StorageService/RadzenEditor/Uploads/Multiple": {
400
+ post: {
401
+ parameters: {
402
+ query?: {
403
+ tenantId?: string;
404
+ "api-version"?: string;
405
+ };
406
+ header?: {
407
+ "x-api-version"?: string;
408
+ };
409
+ };
410
+ requestBody?: {
411
+ content: {
412
+ "multipart/form-data": {
413
+ files?: string[];
414
+ };
415
+ };
416
+ };
417
+ responses: {
418
+ /** @description OK */
419
+ 200: {
420
+ content: never;
421
+ };
422
+ };
423
+ };
424
+ };
425
+ "/api/v2/StorageService/RadzenEditor/Uploads/{id}": {
426
+ post: {
427
+ parameters: {
428
+ query?: {
429
+ tenantId?: string;
430
+ "api-version"?: string;
431
+ };
432
+ header?: {
433
+ "x-api-version"?: string;
434
+ };
435
+ path: {
436
+ id: number;
437
+ };
438
+ };
439
+ requestBody?: {
440
+ content: {
441
+ "multipart/form-data": {
442
+ files?: string[];
443
+ };
444
+ };
445
+ };
446
+ responses: {
447
+ /** @description OK */
448
+ 200: {
449
+ content: never;
450
+ };
451
+ };
452
+ };
453
+ };
454
+ "/api/v2/StorageService/RadzenEditor/Uploads/Specific": {
455
+ post: {
456
+ parameters: {
457
+ query?: {
458
+ tenantId?: string;
459
+ "api-version"?: string;
460
+ };
461
+ header?: {
462
+ "x-api-version"?: string;
463
+ };
464
+ };
465
+ requestBody?: {
466
+ content: {
467
+ "multipart/form-data": {
468
+ /** Format: binary */
469
+ file?: string;
470
+ };
471
+ };
472
+ };
473
+ responses: {
474
+ /** @description OK */
475
+ 200: {
476
+ content: never;
477
+ };
478
+ };
479
+ };
480
+ };
481
+ "/api/v2/StorageService/Uploads": {
482
+ post: {
483
+ parameters: {
484
+ query?: {
485
+ tenantId?: string;
486
+ "api-version"?: string;
487
+ };
488
+ header?: {
489
+ "x-api-version"?: string;
490
+ };
491
+ };
492
+ requestBody?: {
493
+ content: {
494
+ "multipart/form-data": {
495
+ notes?: string;
496
+ title?: string;
497
+ author?: string;
498
+ isFolder?: boolean;
499
+ fileName?: string;
500
+ abstract?: string;
501
+ keyWords?: string;
502
+ validResponse?: boolean;
503
+ parentFileUploadId?: string;
504
+ filePath?: string;
505
+ /** Format: binary */
506
+ file?: string;
507
+ /** Format: uuid */
508
+ iD?: string;
509
+ /** Format: date-time */
510
+ timestamp?: string;
511
+ };
512
+ };
513
+ };
514
+ responses: {
515
+ /** @description OK */
516
+ 200: {
517
+ content: {
518
+ "application/json": components["schemas"]["EmptyEnvelope"];
519
+ "application/xml": components["schemas"]["EmptyEnvelope"];
520
+ };
521
+ };
522
+ /** @description Unauthorized */
523
+ 401: {
524
+ content: {
525
+ "application/json": components["schemas"]["ErrorEnvelope"];
526
+ "application/xml": components["schemas"]["ErrorEnvelope"];
527
+ };
528
+ };
529
+ /** @description Forbidden */
530
+ 403: {
531
+ content: {
532
+ "application/json": components["schemas"]["ErrorEnvelope"];
533
+ "application/xml": components["schemas"]["ErrorEnvelope"];
534
+ };
535
+ };
536
+ };
537
+ };
538
+ };
539
+ }
540
+
541
+ export type webhooks = Record<string, never>;
542
+
543
+ export interface components {
544
+ schemas: {
545
+ Blob: {
546
+ /**
547
+ * Format: int32
548
+ * @enum {integer}
549
+ */
550
+ kind?: 0 | 1;
551
+ isFolder?: boolean;
552
+ isFile?: boolean;
553
+ folderPath?: string | null;
554
+ name?: string | null;
555
+ /** Format: int64 */
556
+ size?: number | null;
557
+ md5?: string | null;
558
+ /** Format: date-time */
559
+ createdTime?: string | null;
560
+ /** Format: date-time */
561
+ lastModificationTime?: string | null;
562
+ fullPath?: string | null;
563
+ properties?: {
564
+ [key: string]: unknown;
565
+ } | null;
566
+ metadata?: ({
567
+ [key: string]: string | null;
568
+ }) | null;
569
+ isRootFolder?: boolean;
570
+ };
571
+ BlobEnvelope: {
572
+ isSuccess?: boolean;
573
+ errorMessage?: string | null;
574
+ correlationId?: string | null;
575
+ /** Format: date-time */
576
+ timestamp?: string;
577
+ activityId?: string | null;
578
+ result?: components["schemas"]["Blob"];
579
+ };
580
+ EmptyEnvelope: {
581
+ isSuccess?: boolean;
582
+ errorMessage?: string | null;
583
+ correlationId?: string | null;
584
+ /** Format: date-time */
585
+ timestamp?: string;
586
+ activityId?: string | null;
587
+ };
588
+ ErrorEnvelope: {
589
+ isSuccess?: boolean;
590
+ errorMessage?: string | null;
591
+ correlationId?: string | null;
592
+ /** Format: date-time */
593
+ timestamp?: string;
594
+ activityId?: string | null;
595
+ };
596
+ FileUploadCreateDto: {
597
+ /** Format: uuid */
598
+ id?: string;
599
+ /** Format: date-time */
600
+ timestamp?: string;
601
+ notes?: string | null;
602
+ title?: string | null;
603
+ author?: string | null;
604
+ isFolder?: boolean;
605
+ fileName?: string | null;
606
+ abstract?: string | null;
607
+ keyWords?: string | null;
608
+ validResponse?: boolean;
609
+ parentFileUploadId?: string | null;
610
+ filePath?: string | null;
611
+ /** Format: binary */
612
+ file?: string | null;
613
+ };
614
+ FileUploadDto: {
615
+ id?: string | null;
616
+ /** Format: date-time */
617
+ timestamp?: string | null;
618
+ notes?: string | null;
619
+ title?: string | null;
620
+ author?: string | null;
621
+ isFolder?: boolean;
622
+ hash?: string | null;
623
+ fileUrl?: string | null;
624
+ filePath?: string | null;
625
+ fileName?: string | null;
626
+ abstract?: string | null;
627
+ keyWords?: string | null;
628
+ metadata?: string | null;
629
+ /** Format: int64 */
630
+ fileLength?: number;
631
+ contentType?: string | null;
632
+ parentFileId?: string | null;
633
+ validResponse?: boolean;
634
+ userId?: string | null;
635
+ tenantId?: string | null;
636
+ enrollmentId?: string | null;
637
+ socialProfileId?: string | null;
638
+ folderPath?: string | null;
639
+ };
640
+ FileUploadDtoEnvelope: {
641
+ isSuccess?: boolean;
642
+ errorMessage?: string | null;
643
+ correlationId?: string | null;
644
+ /** Format: date-time */
645
+ timestamp?: string;
646
+ activityId?: string | null;
647
+ result?: components["schemas"]["FileUploadDto"];
648
+ };
649
+ FileUploadUpdateDto: {
650
+ notes?: string | null;
651
+ metadata?: string | null;
652
+ title?: string | null;
653
+ author?: string | null;
654
+ isFolder?: boolean;
655
+ fileName?: string | null;
656
+ abstract?: string | null;
657
+ keyWords?: string | null;
658
+ validResponse?: boolean;
659
+ parentFileUploadID?: string | null;
660
+ filePath?: string | null;
661
+ /** Format: binary */
662
+ file?: string | null;
663
+ };
664
+ };
665
+ responses: never;
666
+ parameters: never;
667
+ requestBodies: never;
668
+ headers: never;
669
+ pathItems: never;
670
+ }
671
+
672
+ export type $defs = Record<string, never>;
673
+
674
+ export type external = Record<string, never>;
675
+
676
+ export interface operations {
677
+
678
+ GetBlobsAsync: {
679
+ parameters: {
680
+ query?: {
681
+ tenantId?: string;
682
+ folderPath?: string;
683
+ browseFilter?: string;
684
+ filePrefix?: string;
685
+ recurse?: boolean;
686
+ maxResults?: number;
687
+ includeAttributes?: boolean;
688
+ "api-version"?: string;
689
+ };
690
+ header?: {
691
+ "x-api-version"?: string;
692
+ };
693
+ };
694
+ responses: {
695
+ /** @description OK */
696
+ 200: {
697
+ content: {
698
+ "application/json": components["schemas"]["BlobEnvelope"];
699
+ "image/png": components["schemas"]["BlobEnvelope"];
700
+ };
701
+ };
702
+ /** @description Unauthorized */
703
+ 401: {
704
+ content: {
705
+ "application/json": components["schemas"]["ErrorEnvelope"];
706
+ "image/png": components["schemas"]["ErrorEnvelope"];
707
+ };
708
+ };
709
+ /** @description Forbidden */
710
+ 403: {
711
+ content: {
712
+ "application/json": components["schemas"]["ErrorEnvelope"];
713
+ "image/png": components["schemas"]["ErrorEnvelope"];
714
+ };
715
+ };
716
+ };
717
+ };
718
+ GetBlobAsync: {
719
+ parameters: {
720
+ query?: {
721
+ tenantId?: string;
722
+ filePath?: string;
723
+ "api-version"?: string;
724
+ };
725
+ header?: {
726
+ "x-api-version"?: string;
727
+ };
728
+ };
729
+ responses: {
730
+ /** @description OK */
731
+ 200: {
732
+ content: {
733
+ "application/json": components["schemas"]["BlobEnvelope"];
734
+ "image/png": components["schemas"]["BlobEnvelope"];
735
+ };
736
+ };
737
+ /** @description Unauthorized */
738
+ 401: {
739
+ content: {
740
+ "application/json": components["schemas"]["ErrorEnvelope"];
741
+ "image/png": components["schemas"]["ErrorEnvelope"];
742
+ };
743
+ };
744
+ /** @description Forbidden */
745
+ 403: {
746
+ content: {
747
+ "application/json": components["schemas"]["ErrorEnvelope"];
748
+ "image/png": components["schemas"]["ErrorEnvelope"];
749
+ };
750
+ };
751
+ };
752
+ };
753
+ GetFilesAsync: {
754
+ parameters: {
755
+ query?: {
756
+ tenantId?: string;
757
+ "api-version"?: string;
758
+ };
759
+ header?: {
760
+ "x-api-version"?: string;
761
+ };
762
+ };
763
+ responses: {
764
+ /** @description OK */
765
+ 200: {
766
+ content: {
767
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
768
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
769
+ };
770
+ };
771
+ /** @description Unauthorized */
772
+ 401: {
773
+ content: {
774
+ "application/json": components["schemas"]["ErrorEnvelope"];
775
+ "image/png": components["schemas"]["ErrorEnvelope"];
776
+ };
777
+ };
778
+ /** @description Forbidden */
779
+ 403: {
780
+ content: {
781
+ "application/json": components["schemas"]["ErrorEnvelope"];
782
+ "image/png": components["schemas"]["ErrorEnvelope"];
783
+ };
784
+ };
785
+ };
786
+ };
787
+ CreateFileAsync: {
788
+ parameters: {
789
+ query?: {
790
+ tenantId?: string;
791
+ "api-version"?: string;
792
+ };
793
+ header?: {
794
+ "x-api-version"?: string;
795
+ };
796
+ };
797
+ requestBody?: {
798
+ content: {
799
+ "multipart/form-data": components["schemas"]["FileUploadCreateDto"];
800
+ };
801
+ };
802
+ responses: {
803
+ /** @description Created */
804
+ 201: {
805
+ content: {
806
+ "application/json": components["schemas"]["EmptyEnvelope"];
807
+ "image/png": components["schemas"]["EmptyEnvelope"];
808
+ };
809
+ };
810
+ /** @description Bad Request */
811
+ 400: {
812
+ content: {
813
+ "application/json": components["schemas"]["ErrorEnvelope"];
814
+ "image/png": components["schemas"]["ErrorEnvelope"];
815
+ };
816
+ };
817
+ /** @description Unauthorized */
818
+ 401: {
819
+ content: {
820
+ "application/json": components["schemas"]["ErrorEnvelope"];
821
+ "image/png": components["schemas"]["ErrorEnvelope"];
822
+ };
823
+ };
824
+ /** @description Forbidden */
825
+ 403: {
826
+ content: {
827
+ "application/json": components["schemas"]["ErrorEnvelope"];
828
+ "image/png": components["schemas"]["ErrorEnvelope"];
829
+ };
830
+ };
831
+ /** @description Conflict */
832
+ 409: {
833
+ content: {
834
+ "application/json": components["schemas"]["ErrorEnvelope"];
835
+ "image/png": components["schemas"]["ErrorEnvelope"];
836
+ };
837
+ };
838
+ /** @description Unprocessable Content */
839
+ 422: {
840
+ content: {
841
+ "application/json": components["schemas"]["ErrorEnvelope"];
842
+ "image/png": components["schemas"]["ErrorEnvelope"];
843
+ };
844
+ };
845
+ };
846
+ };
847
+ GetFileAsync: {
848
+ parameters: {
849
+ query?: {
850
+ tenantId?: string;
851
+ "api-version"?: string;
852
+ };
853
+ header?: {
854
+ "x-api-version"?: string;
855
+ };
856
+ path: {
857
+ fileId: string;
858
+ };
859
+ };
860
+ responses: {
861
+ /** @description OK */
862
+ 200: {
863
+ content: {
864
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
865
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
866
+ };
867
+ };
868
+ /** @description Unauthorized */
869
+ 401: {
870
+ content: {
871
+ "application/json": components["schemas"]["ErrorEnvelope"];
872
+ "image/png": components["schemas"]["ErrorEnvelope"];
873
+ };
874
+ };
875
+ /** @description Forbidden */
876
+ 403: {
877
+ content: {
878
+ "application/json": components["schemas"]["ErrorEnvelope"];
879
+ "image/png": components["schemas"]["ErrorEnvelope"];
880
+ };
881
+ };
882
+ };
883
+ };
884
+ UpdateFileAsync: {
885
+ parameters: {
886
+ query?: {
887
+ tenantId?: string;
888
+ "api-version"?: string;
889
+ };
890
+ header?: {
891
+ "x-api-version"?: string;
892
+ };
893
+ path: {
894
+ fileId: string;
895
+ };
896
+ };
897
+ requestBody?: {
898
+ content: {
899
+ "multipart/form-data": components["schemas"]["FileUploadUpdateDto"];
900
+ };
901
+ };
902
+ responses: {
903
+ /** @description OK */
904
+ 200: {
905
+ content: {
906
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
907
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
908
+ };
909
+ };
910
+ /** @description Bad Request */
911
+ 400: {
912
+ content: {
913
+ "application/json": components["schemas"]["ErrorEnvelope"];
914
+ "image/png": components["schemas"]["ErrorEnvelope"];
915
+ };
916
+ };
917
+ /** @description Unauthorized */
918
+ 401: {
919
+ content: {
920
+ "application/json": components["schemas"]["ErrorEnvelope"];
921
+ "image/png": components["schemas"]["ErrorEnvelope"];
922
+ };
923
+ };
924
+ /** @description Forbidden */
925
+ 403: {
926
+ content: {
927
+ "application/json": components["schemas"]["ErrorEnvelope"];
928
+ "image/png": components["schemas"]["ErrorEnvelope"];
929
+ };
930
+ };
931
+ /** @description Conflict */
932
+ 409: {
933
+ content: {
934
+ "application/json": components["schemas"]["ErrorEnvelope"];
935
+ "image/png": components["schemas"]["ErrorEnvelope"];
936
+ };
937
+ };
938
+ /** @description Unprocessable Content */
939
+ 422: {
940
+ content: {
941
+ "application/json": components["schemas"]["ErrorEnvelope"];
942
+ "image/png": components["schemas"]["ErrorEnvelope"];
943
+ };
944
+ };
945
+ };
946
+ };
947
+ DeleteFileAsync: {
948
+ parameters: {
949
+ query?: {
950
+ tenantId?: string;
951
+ "api-version"?: string;
952
+ };
953
+ header?: {
954
+ "x-api-version"?: string;
955
+ };
956
+ path: {
957
+ fileId: string;
958
+ };
959
+ };
960
+ responses: {
961
+ /** @description OK */
962
+ 200: {
963
+ content: {
964
+ "application/json": components["schemas"]["FileUploadDtoEnvelope"];
965
+ "image/png": components["schemas"]["FileUploadDtoEnvelope"];
966
+ };
967
+ };
968
+ /** @description Bad Request */
969
+ 400: {
970
+ content: {
971
+ "application/json": components["schemas"]["ErrorEnvelope"];
972
+ "image/png": components["schemas"]["ErrorEnvelope"];
973
+ };
974
+ };
975
+ /** @description Unauthorized */
976
+ 401: {
977
+ content: {
978
+ "application/json": components["schemas"]["ErrorEnvelope"];
979
+ "image/png": components["schemas"]["ErrorEnvelope"];
980
+ };
981
+ };
982
+ /** @description Forbidden */
983
+ 403: {
984
+ content: {
985
+ "application/json": components["schemas"]["ErrorEnvelope"];
986
+ "image/png": components["schemas"]["ErrorEnvelope"];
987
+ };
988
+ };
989
+ /** @description Conflict */
990
+ 409: {
991
+ content: {
992
+ "application/json": components["schemas"]["ErrorEnvelope"];
993
+ "image/png": components["schemas"]["ErrorEnvelope"];
994
+ };
995
+ };
996
+ /** @description Unprocessable Content */
997
+ 422: {
998
+ content: {
999
+ "application/json": components["schemas"]["ErrorEnvelope"];
1000
+ "image/png": components["schemas"]["ErrorEnvelope"];
1001
+ };
1002
+ };
1003
+ };
1004
+ };
1005
+ DownloadFileAsync: {
1006
+ parameters: {
1007
+ query?: {
1008
+ tenantId?: string;
1009
+ "api-version"?: string;
1010
+ };
1011
+ header?: {
1012
+ "x-api-version"?: string;
1013
+ };
1014
+ path: {
1015
+ fileId: string;
1016
+ };
1017
+ };
1018
+ responses: {
1019
+ /** @description OK */
1020
+ 200: {
1021
+ content: {
1022
+ "application/json": string;
1023
+ "image/png": string;
1024
+ };
1025
+ };
1026
+ /** @description Unauthorized */
1027
+ 401: {
1028
+ content: {
1029
+ "application/json": components["schemas"]["ErrorEnvelope"];
1030
+ "image/png": components["schemas"]["ErrorEnvelope"];
1031
+ };
1032
+ };
1033
+ /** @description Forbidden */
1034
+ 403: {
1035
+ content: {
1036
+ "application/json": components["schemas"]["ErrorEnvelope"];
1037
+ "image/png": components["schemas"]["ErrorEnvelope"];
1038
+ };
1039
+ };
1040
+ };
1041
+ };
1042
+ }