@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
@@ -6,825 +6,96 @@
6
6
 
7
7
  export interface paths {
8
8
  "/api/v2/Me": {
9
- get: {
10
- parameters: {
11
- query?: {
12
- "api-version"?: string;
13
- };
14
- header?: {
15
- "x-api-version"?: string;
16
- };
17
- };
18
- responses: {
19
- /** @description OK */
20
- 200: {
21
- content: {
22
- "application/json": components["schemas"]["UserDtoEnvelope"];
23
- "application/xml": components["schemas"]["UserDtoEnvelope"];
24
- "multipart/form-data": components["schemas"]["UserDtoEnvelope"];
25
- };
26
- };
27
- /** @description Unauthorized */
28
- 401: {
29
- content: {
30
- "application/json": components["schemas"]["ErrorEnvelope"];
31
- "application/xml": components["schemas"]["ErrorEnvelope"];
32
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
33
- };
34
- };
35
- };
36
- };
37
- put: {
38
- parameters: {
39
- query?: {
40
- "api-version"?: string;
41
- };
42
- header?: {
43
- "x-api-version"?: string;
44
- };
45
- };
46
- requestBody?: {
47
- content: {
48
- "application/json": components["schemas"]["UserUpdateDto"];
49
- "application/xml": components["schemas"]["UserUpdateDto"];
50
- "multipart/form-data": components["schemas"]["UserUpdateDto"];
51
- };
52
- };
53
- responses: {
54
- /** @description OK */
55
- 200: {
56
- content: {
57
- "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
58
- "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
59
- "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
60
- };
61
- };
62
- /** @description Unauthorized */
63
- 401: {
64
- content: {
65
- "application/json": components["schemas"]["ErrorEnvelope"];
66
- "application/xml": components["schemas"]["ErrorEnvelope"];
67
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
68
- };
69
- };
70
- };
71
- };
72
- patch: {
73
- parameters: {
74
- query?: {
75
- "api-version"?: string;
76
- };
77
- header?: {
78
- "x-api-version"?: string;
79
- };
80
- };
81
- requestBody?: {
82
- content: {
83
- "application/json": components["schemas"]["Operation"][];
84
- "application/xml": components["schemas"]["Operation"][];
85
- "multipart/form-data": components["schemas"]["Operation"][];
86
- };
87
- };
88
- responses: {
89
- /** @description OK */
90
- 200: {
91
- content: {
92
- "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
93
- "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
94
- "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
95
- };
96
- };
97
- /** @description Unauthorized */
98
- 401: {
99
- content: {
100
- "application/json": components["schemas"]["ErrorEnvelope"];
101
- "application/xml": components["schemas"]["ErrorEnvelope"];
102
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
103
- };
104
- };
105
- };
106
- };
9
+ /** Gets the current user */
10
+ get: operations["GetCurrentUser"];
11
+ /** Updates the current user */
12
+ put: operations["UpdateCurrentUser"];
13
+ /** Patches the current user */
14
+ patch: operations["PatchCurrentUser"];
107
15
  };
108
16
  "/api/v2/Me/Extended": {
109
- get: {
110
- parameters: {
111
- query?: {
112
- "api-version"?: string;
113
- };
114
- header?: {
115
- "x-api-version"?: string;
116
- };
117
- };
118
- responses: {
119
- /** @description OK */
120
- 200: {
121
- content: {
122
- "application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
123
- "application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
124
- "multipart/form-data": components["schemas"]["ExtendedUserDtoEnvelope"];
125
- };
126
- };
127
- /** @description Unauthorized */
128
- 401: {
129
- content: {
130
- "application/json": components["schemas"]["ErrorEnvelope"];
131
- "application/xml": components["schemas"]["ErrorEnvelope"];
132
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
133
- };
134
- };
135
- };
136
- };
17
+ /** Gets the current user with extended information */
18
+ get: operations["GetExtendedCurrentUser"];
137
19
  };
138
20
  "/api/v2/Me/Avatar": {
139
- get: {
140
- parameters: {
141
- query?: {
142
- "api-version"?: string;
143
- };
144
- header?: {
145
- "x-api-version"?: string;
146
- };
147
- };
148
- responses: {
149
- /** @description OK */
150
- 200: {
151
- content: {
152
- "application/json": components["schemas"]["FollowRecordDto"][];
153
- "application/xml": components["schemas"]["FollowRecordDto"][];
154
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
155
- };
156
- };
157
- /** @description Unauthorized */
158
- 401: {
159
- content: {
160
- "application/json": components["schemas"]["ErrorEnvelope"];
161
- "application/xml": components["schemas"]["ErrorEnvelope"];
162
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
163
- };
164
- };
165
- };
166
- };
167
- post: {
168
- parameters: {
169
- query?: {
170
- "api-version"?: string;
171
- };
172
- header?: {
173
- "x-api-version"?: string;
174
- };
175
- };
176
- requestBody?: {
177
- content: {
178
- "multipart/form-data": {
179
- /** Format: binary */
180
- avatar?: string;
181
- };
182
- "application/json": {
183
- /** Format: binary */
184
- avatar?: string;
185
- };
186
- "application/xml": {
187
- /** Format: binary */
188
- avatar?: string;
189
- };
190
- };
191
- };
192
- responses: {
193
- /** @description OK */
194
- 200: {
195
- content: {
196
- "application/json": components["schemas"]["EmptyEnvelope"];
197
- "application/xml": components["schemas"]["EmptyEnvelope"];
198
- "multipart/form-data": components["schemas"]["EmptyEnvelope"];
199
- };
200
- };
201
- /** @description Unauthorized */
202
- 401: {
203
- content: {
204
- "application/json": components["schemas"]["ErrorEnvelope"];
205
- "application/xml": components["schemas"]["ErrorEnvelope"];
206
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
207
- };
208
- };
209
- /** @description Forbidden */
210
- 403: {
211
- content: {
212
- "application/json": components["schemas"]["ErrorEnvelope"];
213
- "application/xml": components["schemas"]["ErrorEnvelope"];
214
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
215
- };
216
- };
217
- };
218
- };
21
+ /** Gets the current user's avatar */
22
+ get: operations["GetMyAvatar"];
23
+ /** Updates the current user's avatar */
24
+ post: operations["UpdateMyAvatar"];
219
25
  };
220
26
  "/api/v2/Me/Follows": {
221
- get: {
222
- parameters: {
223
- query?: {
224
- "api-version"?: string;
225
- };
226
- header?: {
227
- "x-api-version"?: string;
228
- };
229
- };
230
- responses: {
231
- /** @description OK */
232
- 200: {
233
- content: {
234
- "application/json": components["schemas"]["FollowRecordDto"][];
235
- "application/xml": components["schemas"]["FollowRecordDto"][];
236
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
237
- };
238
- };
239
- /** @description Unauthorized */
240
- 401: {
241
- content: {
242
- "application/json": components["schemas"]["ErrorEnvelope"];
243
- "application/xml": components["schemas"]["ErrorEnvelope"];
244
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
245
- };
246
- };
247
- };
248
- };
27
+ /** Gets the social profiles that the current user follows */
28
+ get: operations["GetMyFollows"];
249
29
  };
250
30
  "/api/v2/Me/Follows/Count": {
251
- get: {
252
- parameters: {
253
- query?: {
254
- "api-version"?: string;
255
- };
256
- header?: {
257
- "x-api-version"?: string;
258
- };
259
- };
260
- responses: {
261
- /** @description OK */
262
- 200: {
263
- content: {
264
- "application/json": components["schemas"]["FollowRecordDto"][];
265
- "application/xml": components["schemas"]["FollowRecordDto"][];
266
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
267
- };
268
- };
269
- /** @description Unauthorized */
270
- 401: {
271
- content: {
272
- "application/json": components["schemas"]["ErrorEnvelope"];
273
- "application/xml": components["schemas"]["ErrorEnvelope"];
274
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
275
- };
276
- };
277
- };
278
- };
31
+ /** Counts the social profiles that the current user follows */
32
+ get: operations["CountMyFollows"];
279
33
  };
280
34
  "/api/v2/Me/Followers": {
281
- get: {
282
- parameters: {
283
- query?: {
284
- "api-version"?: string;
285
- };
286
- header?: {
287
- "x-api-version"?: string;
288
- };
289
- };
290
- responses: {
291
- /** @description OK */
292
- 200: {
293
- content: {
294
- "application/json": components["schemas"]["FollowRecordDto"][];
295
- "application/xml": components["schemas"]["FollowRecordDto"][];
296
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
297
- };
298
- };
299
- /** @description Unauthorized */
300
- 401: {
301
- content: {
302
- "application/json": components["schemas"]["ErrorEnvelope"];
303
- "application/xml": components["schemas"]["ErrorEnvelope"];
304
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
305
- };
306
- };
307
- };
308
- };
35
+ /** Gets the social profiles that follow the current user */
36
+ get: operations["GetMyFollowers"];
309
37
  };
310
38
  "/api/v2/Me/Followers/Count": {
311
- get: {
312
- parameters: {
313
- query?: {
314
- "api-version"?: string;
315
- };
316
- header?: {
317
- "x-api-version"?: string;
318
- };
319
- };
320
- responses: {
321
- /** @description OK */
322
- 200: {
323
- content: {
324
- "application/json": components["schemas"]["FollowRecordDto"][];
325
- "application/xml": components["schemas"]["FollowRecordDto"][];
326
- "multipart/form-data": components["schemas"]["FollowRecordDto"][];
327
- };
328
- };
329
- /** @description Unauthorized */
330
- 401: {
331
- content: {
332
- "application/json": components["schemas"]["ErrorEnvelope"];
333
- "application/xml": components["schemas"]["ErrorEnvelope"];
334
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
335
- };
336
- };
337
- };
338
- };
39
+ /** Counts the social profiles that follow the current user */
40
+ get: operations["CountMyFollowers"];
339
41
  };
340
42
  "/api/v2/Me/Businesses": {
341
- get: {
342
- parameters: {
343
- query?: {
344
- "api-version"?: string;
345
- };
346
- header?: {
347
- "x-api-version"?: string;
348
- };
349
- };
350
- responses: {
351
- /** @description OK */
352
- 200: {
353
- content: {
354
- "application/json": components["schemas"]["TenantDtoListEnvelope"];
355
- "application/xml": components["schemas"]["TenantDtoListEnvelope"];
356
- "multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
357
- };
358
- };
359
- /** @description Unauthorized */
360
- 401: {
361
- content: {
362
- "application/json": components["schemas"]["ErrorEnvelope"];
363
- "application/xml": components["schemas"]["ErrorEnvelope"];
364
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
365
- };
366
- };
367
- /** @description Forbidden */
368
- 403: {
369
- content: {
370
- "application/json": components["schemas"]["ErrorEnvelope"];
371
- "application/xml": components["schemas"]["ErrorEnvelope"];
372
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
373
- };
374
- };
375
- };
376
- };
43
+ /** Gets the tenants that the current user is enrolled in */
44
+ get: operations["GetMyTenants"];
377
45
  };
378
46
  "/api/v2/Me/Businesses/Count": {
379
- get: {
380
- parameters: {
381
- query?: {
382
- "api-version"?: string;
383
- };
384
- header?: {
385
- "x-api-version"?: string;
386
- };
387
- };
388
- responses: {
389
- /** @description OK */
390
- 200: {
391
- content: {
392
- "application/json": components["schemas"]["Int32Envelope"];
393
- "application/xml": components["schemas"]["Int32Envelope"];
394
- "multipart/form-data": components["schemas"]["Int32Envelope"];
395
- };
396
- };
397
- /** @description Unauthorized */
398
- 401: {
399
- content: {
400
- "application/json": components["schemas"]["ErrorEnvelope"];
401
- "application/xml": components["schemas"]["ErrorEnvelope"];
402
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
403
- };
404
- };
405
- /** @description Forbidden */
406
- 403: {
407
- content: {
408
- "application/json": components["schemas"]["ErrorEnvelope"];
409
- "application/xml": components["schemas"]["ErrorEnvelope"];
410
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
411
- };
412
- };
413
- };
414
- };
47
+ /** Counts the tenants that the current user is enrolled in */
48
+ get: operations["CountMyTenants"];
415
49
  };
416
50
  "/api/v2/Me/Businesses/Extended": {
417
- get: {
418
- parameters: {
419
- query?: {
420
- "api-version"?: string;
421
- };
422
- header?: {
423
- "x-api-version"?: string;
424
- };
425
- };
426
- responses: {
427
- /** @description OK */
428
- 200: {
429
- content: {
430
- "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
431
- "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
432
- "multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
433
- };
434
- };
435
- /** @description Unauthorized */
436
- 401: {
437
- content: {
438
- "application/json": components["schemas"]["ErrorEnvelope"];
439
- "application/xml": components["schemas"]["ErrorEnvelope"];
440
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
441
- };
442
- };
443
- /** @description Forbidden */
444
- 403: {
445
- content: {
446
- "application/json": components["schemas"]["ErrorEnvelope"];
447
- "application/xml": components["schemas"]["ErrorEnvelope"];
448
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
449
- };
450
- };
451
- };
452
- };
51
+ /** Gets the tenants that the current user is enrolled in with extended information */
52
+ get: operations["GetMyTenantsExtended"];
453
53
  };
454
54
  "/api/v2/Me/Enrollments": {
455
- get: {
456
- parameters: {
457
- query?: {
458
- "api-version"?: string;
459
- };
460
- header?: {
461
- "x-api-version"?: string;
462
- };
463
- };
464
- responses: {
465
- /** @description OK */
466
- 200: {
467
- content: {
468
- "application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
469
- "application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
470
- "multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
471
- };
472
- };
473
- /** @description Unauthorized */
474
- 401: {
475
- content: {
476
- "application/json": components["schemas"]["ErrorEnvelope"];
477
- "application/xml": components["schemas"]["ErrorEnvelope"];
478
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
479
- };
480
- };
481
- };
482
- };
55
+ /** Gets the list of enrollments for the current user */
56
+ get: operations["GetMyEnrollments"];
483
57
  };
484
58
  "/api/v2/Me/Enrollments/Extended": {
485
- get: {
486
- parameters: {
487
- query?: {
488
- "api-version"?: string;
489
- };
490
- header?: {
491
- "x-api-version"?: string;
492
- };
493
- };
494
- responses: {
495
- /** @description OK */
496
- 200: {
497
- content: {
498
- "application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
499
- "application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
500
- "multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
501
- };
502
- };
503
- /** @description Unauthorized */
504
- 401: {
505
- content: {
506
- "application/json": components["schemas"]["ErrorEnvelope"];
507
- "application/xml": components["schemas"]["ErrorEnvelope"];
508
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
509
- };
510
- };
511
- };
512
- };
59
+ /** Gets the list of enrollments for the current user with extended information */
60
+ get: operations["GetMyEnrollmentsExtended"];
513
61
  };
514
62
  "/api/v2/Me/Enrollments/{enrollmentId}": {
515
- get: {
516
- parameters: {
517
- query?: {
518
- "api-version"?: string;
519
- };
520
- header?: {
521
- "x-api-version"?: string;
522
- };
523
- path: {
524
- enrollmentId: string;
525
- };
526
- };
527
- requestBody?: {
528
- content: {
529
- "application/json": components["schemas"]["EnrollmentId"];
530
- "application/xml": components["schemas"]["EnrollmentId"];
531
- "multipart/form-data": components["schemas"]["EnrollmentId"];
532
- };
533
- };
534
- responses: {
535
- /** @description OK */
536
- 200: {
537
- content: {
538
- "application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
539
- "application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
540
- "multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
541
- };
542
- };
543
- /** @description Unauthorized */
544
- 401: {
545
- content: {
546
- "application/json": components["schemas"]["ErrorEnvelope"];
547
- "application/xml": components["schemas"]["ErrorEnvelope"];
548
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
549
- };
550
- };
551
- };
552
- };
63
+ /** Gets a single TenantEnrollment by its ID */
64
+ get: operations["GetMyEnrollment"];
553
65
  };
554
66
  "/api/v2/Me/SocialProfile": {
555
- get: {
556
- parameters: {
557
- query?: {
558
- "api-version"?: string;
559
- };
560
- header?: {
561
- "x-api-version"?: string;
562
- };
563
- };
564
- responses: {
565
- /** @description OK */
566
- 200: {
567
- content: {
568
- "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
569
- "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
570
- "multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
571
- };
572
- };
573
- /** @description Unauthorized */
574
- 401: {
575
- content: {
576
- "application/json": components["schemas"]["ErrorEnvelope"];
577
- "application/xml": components["schemas"]["ErrorEnvelope"];
578
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
579
- };
580
- };
581
- };
582
- };
67
+ /** Gets the current user's social profile */
68
+ get: operations["GetMySocialProfile"];
583
69
  };
584
70
  "/api/v2/Me/Cart": {
585
- get: {
586
- parameters: {
587
- query?: {
588
- "api-version"?: string;
589
- };
590
- header?: {
591
- "x-api-version"?: string;
592
- };
593
- };
594
- responses: {
595
- /** @description OK */
596
- 200: {
597
- content: {
598
- "application/json": components["schemas"]["CartDtoEnvelope"];
599
- "application/xml": components["schemas"]["CartDtoEnvelope"];
600
- "multipart/form-data": components["schemas"]["CartDtoEnvelope"];
601
- };
602
- };
603
- /** @description Unauthorized */
604
- 401: {
605
- content: {
606
- "application/json": components["schemas"]["ErrorEnvelope"];
607
- "application/xml": components["schemas"]["ErrorEnvelope"];
608
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
609
- };
610
- };
611
- };
612
- };
71
+ /** Gets the current user's cart */
72
+ get: operations["GetMyCart"];
613
73
  };
614
74
  "/api/v2/Me/Wallet": {
615
- get: {
616
- parameters: {
617
- query?: {
618
- "api-version"?: string;
619
- };
620
- header?: {
621
- "x-api-version"?: string;
622
- };
623
- };
624
- responses: {
625
- /** @description OK */
626
- 200: {
627
- content: {
628
- "application/json": components["schemas"]["WalletDtoEnvelope"];
629
- "application/xml": components["schemas"]["WalletDtoEnvelope"];
630
- "multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
631
- };
632
- };
633
- /** @description Unauthorized */
634
- 401: {
635
- content: {
636
- "application/json": components["schemas"]["ErrorEnvelope"];
637
- "application/xml": components["schemas"]["ErrorEnvelope"];
638
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
639
- };
640
- };
641
- };
642
- };
75
+ /** Gets the current user's billing profile */
76
+ get: operations["GetMyWallet"];
643
77
  };
644
78
  "/api/v2/Me/Notifications": {
645
- get: {
646
- parameters: {
647
- query?: {
648
- "api-version"?: string;
649
- };
650
- header?: {
651
- "x-api-version"?: string;
652
- };
653
- };
654
- responses: {
655
- /** @description OK */
656
- 200: {
657
- content: {
658
- "application/json": components["schemas"]["NotificationDtoListEnvelope"];
659
- "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
660
- "multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
661
- };
662
- };
663
- /** @description Unauthorized */
664
- 401: {
665
- content: {
666
- "application/json": components["schemas"]["ErrorEnvelope"];
667
- "application/xml": components["schemas"]["ErrorEnvelope"];
668
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
669
- };
670
- };
671
- };
672
- };
79
+ /** Gets the list of notifications for the current user */
80
+ get: operations["GetMyNotifications"];
673
81
  };
674
82
  "/api/v2/Me/Notifications/Count": {
675
- get: {
676
- parameters: {
677
- query?: {
678
- "api-version"?: string;
679
- };
680
- header?: {
681
- "x-api-version"?: string;
682
- };
683
- };
684
- responses: {
685
- /** @description OK */
686
- 200: {
687
- content: {
688
- "application/json": components["schemas"]["Int32Envelope"];
689
- "application/xml": components["schemas"]["Int32Envelope"];
690
- "multipart/form-data": components["schemas"]["Int32Envelope"];
691
- };
692
- };
693
- /** @description Unauthorized */
694
- 401: {
695
- content: {
696
- "application/json": components["schemas"]["ErrorEnvelope"];
697
- "application/xml": components["schemas"]["ErrorEnvelope"];
698
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
699
- };
700
- };
701
- };
702
- };
83
+ /** Counts the list of notifications for the current user */
84
+ get: operations["CountMyNotifications"];
703
85
  };
704
86
  "/api/v2/Me/Settings": {
705
- get: {
706
- parameters: {
707
- query?: {
708
- "api-version"?: string;
709
- };
710
- header?: {
711
- "x-api-version"?: string;
712
- };
713
- };
714
- responses: {
715
- /** @description OK */
716
- 200: {
717
- content: {
718
- "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
719
- "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
720
- "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
721
- };
722
- };
723
- /** @description Unauthorized */
724
- 401: {
725
- content: {
726
- "application/json": components["schemas"]["ErrorEnvelope"];
727
- "application/xml": components["schemas"]["ErrorEnvelope"];
728
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
729
- };
730
- };
731
- };
732
- };
733
- put: {
734
- parameters: {
735
- query?: {
736
- "api-version"?: string;
737
- };
738
- header?: {
739
- "x-api-version"?: string;
740
- };
741
- };
742
- requestBody?: {
743
- content: {
744
- "application/json": components["schemas"]["UserSettingsUpdateDto"];
745
- "application/xml": components["schemas"]["UserSettingsUpdateDto"];
746
- "multipart/form-data": components["schemas"]["UserSettingsUpdateDto"];
747
- };
748
- };
749
- responses: {
750
- /** @description OK */
751
- 200: {
752
- content: {
753
- "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
754
- "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
755
- "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
756
- };
757
- };
758
- /** @description Unauthorized */
759
- 401: {
760
- content: {
761
- "application/json": components["schemas"]["ErrorEnvelope"];
762
- "application/xml": components["schemas"]["ErrorEnvelope"];
763
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
764
- };
765
- };
766
- };
767
- };
87
+ /** Gets the settings for the current user */
88
+ get: operations["GetMySettings"];
89
+ /** Updates the settings for the current user */
90
+ put: operations["UpdateMySettings"];
768
91
  };
769
92
  "/api/v2/Me/Addresses": {
770
- get: {
771
- parameters: {
772
- query?: {
773
- "api-version"?: string;
774
- };
775
- header?: {
776
- "x-api-version"?: string;
777
- };
778
- };
779
- responses: {
780
- /** @description OK */
781
- 200: {
782
- content: {
783
- "application/json": components["schemas"]["AddressDtoListEnvelope"];
784
- "application/xml": components["schemas"]["AddressDtoListEnvelope"];
785
- "multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
786
- };
787
- };
788
- /** @description Unauthorized */
789
- 401: {
790
- content: {
791
- "application/json": components["schemas"]["ErrorEnvelope"];
792
- "application/xml": components["schemas"]["ErrorEnvelope"];
793
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
794
- };
795
- };
796
- };
797
- };
93
+ /** Gets the list of addresses for the current user */
94
+ get: operations["GetMyAddresses"];
798
95
  };
799
96
  "/api/v2/Me/Invitations": {
800
- get: {
801
- parameters: {
802
- query?: {
803
- "api-version"?: string;
804
- };
805
- header?: {
806
- "x-api-version"?: string;
807
- };
808
- };
809
- responses: {
810
- /** @description OK */
811
- 200: {
812
- content: {
813
- "application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
814
- "application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
815
- "multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
816
- };
817
- };
818
- /** @description Unauthorized */
819
- 401: {
820
- content: {
821
- "application/json": components["schemas"]["ErrorEnvelope"];
822
- "application/xml": components["schemas"]["ErrorEnvelope"];
823
- "multipart/form-data": components["schemas"]["ErrorEnvelope"];
824
- };
825
- };
826
- };
827
- };
97
+ /** Gets the list of tenant enrollment invitations for the current user */
98
+ get: operations["GetMyInvitations"];
828
99
  };
829
100
  }
830
101
 
@@ -1083,6 +354,15 @@ export interface components {
1083
354
  followedID?: string | null;
1084
355
  alerts?: boolean;
1085
356
  };
357
+ FollowRecordDtoListEnvelope: {
358
+ isSuccess?: boolean;
359
+ errorMessage?: string | null;
360
+ correlationId?: string | null;
361
+ /** Format: date-time */
362
+ timestamp?: string;
363
+ activityId?: string | null;
364
+ result?: components["schemas"]["FollowRecordDto"][] | null;
365
+ };
1086
366
  Int32Envelope: {
1087
367
  isSuccess?: boolean;
1088
368
  errorMessage?: string | null;
@@ -1464,4 +744,818 @@ export type $defs = Record<string, never>;
1464
744
 
1465
745
  export type external = Record<string, never>;
1466
746
 
1467
- export type operations = Record<string, never>;
747
+ export interface operations {
748
+
749
+ /** Gets the current user */
750
+ GetCurrentUser: {
751
+ parameters: {
752
+ query?: {
753
+ "api-version"?: string;
754
+ };
755
+ header?: {
756
+ "x-api-version"?: string;
757
+ };
758
+ };
759
+ responses: {
760
+ /** @description OK */
761
+ 200: {
762
+ content: {
763
+ "application/json": components["schemas"]["UserDtoEnvelope"];
764
+ "application/xml": components["schemas"]["UserDtoEnvelope"];
765
+ "multipart/form-data": components["schemas"]["UserDtoEnvelope"];
766
+ };
767
+ };
768
+ /** @description Unauthorized */
769
+ 401: {
770
+ content: {
771
+ "application/json": components["schemas"]["ErrorEnvelope"];
772
+ "application/xml": components["schemas"]["ErrorEnvelope"];
773
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
774
+ };
775
+ };
776
+ };
777
+ };
778
+ /** Updates the current user */
779
+ UpdateCurrentUser: {
780
+ parameters: {
781
+ query?: {
782
+ "api-version"?: string;
783
+ };
784
+ header?: {
785
+ "x-api-version"?: string;
786
+ };
787
+ };
788
+ requestBody?: {
789
+ content: {
790
+ "application/json": components["schemas"]["UserUpdateDto"];
791
+ "application/xml": components["schemas"]["UserUpdateDto"];
792
+ "multipart/form-data": components["schemas"]["UserUpdateDto"];
793
+ };
794
+ };
795
+ responses: {
796
+ /** @description OK */
797
+ 200: {
798
+ content: {
799
+ "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
800
+ "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
801
+ "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
802
+ };
803
+ };
804
+ /** @description Unauthorized */
805
+ 401: {
806
+ content: {
807
+ "application/json": components["schemas"]["ErrorEnvelope"];
808
+ "application/xml": components["schemas"]["ErrorEnvelope"];
809
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
810
+ };
811
+ };
812
+ };
813
+ };
814
+ /** Patches the current user */
815
+ PatchCurrentUser: {
816
+ parameters: {
817
+ query?: {
818
+ "api-version"?: string;
819
+ };
820
+ header?: {
821
+ "x-api-version"?: string;
822
+ };
823
+ };
824
+ requestBody?: {
825
+ content: {
826
+ "application/json": components["schemas"]["Operation"][];
827
+ "application/xml": components["schemas"]["Operation"][];
828
+ "multipart/form-data": components["schemas"]["Operation"][];
829
+ };
830
+ };
831
+ responses: {
832
+ /** @description OK */
833
+ 200: {
834
+ content: {
835
+ "application/json": components["schemas"]["EmptyEnvelopeEnvelope"];
836
+ "application/xml": components["schemas"]["EmptyEnvelopeEnvelope"];
837
+ "multipart/form-data": components["schemas"]["EmptyEnvelopeEnvelope"];
838
+ };
839
+ };
840
+ /** @description Unauthorized */
841
+ 401: {
842
+ content: {
843
+ "application/json": components["schemas"]["ErrorEnvelope"];
844
+ "application/xml": components["schemas"]["ErrorEnvelope"];
845
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
846
+ };
847
+ };
848
+ };
849
+ };
850
+ /** Gets the current user with extended information */
851
+ GetExtendedCurrentUser: {
852
+ parameters: {
853
+ query?: {
854
+ "api-version"?: string;
855
+ };
856
+ header?: {
857
+ "x-api-version"?: string;
858
+ };
859
+ };
860
+ responses: {
861
+ /** @description OK */
862
+ 200: {
863
+ content: {
864
+ "application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
865
+ "application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
866
+ "multipart/form-data": components["schemas"]["ExtendedUserDtoEnvelope"];
867
+ };
868
+ };
869
+ /** @description Unauthorized */
870
+ 401: {
871
+ content: {
872
+ "application/json": components["schemas"]["ErrorEnvelope"];
873
+ "application/xml": components["schemas"]["ErrorEnvelope"];
874
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
875
+ };
876
+ };
877
+ };
878
+ };
879
+ /** Gets the current user's avatar */
880
+ GetMyAvatar: {
881
+ parameters: {
882
+ query?: {
883
+ "api-version"?: string;
884
+ };
885
+ header?: {
886
+ "x-api-version"?: string;
887
+ };
888
+ };
889
+ responses: {
890
+ /** @description OK */
891
+ 200: {
892
+ content: {
893
+ "application/json": string;
894
+ "application/xml": string;
895
+ "multipart/form-data": string;
896
+ };
897
+ };
898
+ /** @description Unauthorized */
899
+ 401: {
900
+ content: {
901
+ "application/json": components["schemas"]["ErrorEnvelope"];
902
+ "application/xml": components["schemas"]["ErrorEnvelope"];
903
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
904
+ };
905
+ };
906
+ /** @description Forbidden */
907
+ 403: {
908
+ content: {
909
+ "application/json": components["schemas"]["ErrorEnvelope"];
910
+ "application/xml": components["schemas"]["ErrorEnvelope"];
911
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
912
+ };
913
+ };
914
+ };
915
+ };
916
+ /** Updates the current user's avatar */
917
+ UpdateMyAvatar: {
918
+ parameters: {
919
+ query?: {
920
+ "api-version"?: string;
921
+ };
922
+ header?: {
923
+ "x-api-version"?: string;
924
+ };
925
+ };
926
+ requestBody?: {
927
+ content: {
928
+ "multipart/form-data": {
929
+ /** Format: binary */
930
+ avatar?: string;
931
+ };
932
+ "application/json": {
933
+ /** Format: binary */
934
+ avatar?: string;
935
+ };
936
+ "application/xml": {
937
+ /** Format: binary */
938
+ avatar?: string;
939
+ };
940
+ };
941
+ };
942
+ responses: {
943
+ /** @description OK */
944
+ 200: {
945
+ content: {
946
+ "application/json": components["schemas"]["EmptyEnvelope"];
947
+ "application/xml": components["schemas"]["EmptyEnvelope"];
948
+ "multipart/form-data": components["schemas"]["EmptyEnvelope"];
949
+ };
950
+ };
951
+ /** @description Unauthorized */
952
+ 401: {
953
+ content: {
954
+ "application/json": components["schemas"]["ErrorEnvelope"];
955
+ "application/xml": components["schemas"]["ErrorEnvelope"];
956
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
957
+ };
958
+ };
959
+ /** @description Forbidden */
960
+ 403: {
961
+ content: {
962
+ "application/json": components["schemas"]["ErrorEnvelope"];
963
+ "application/xml": components["schemas"]["ErrorEnvelope"];
964
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
965
+ };
966
+ };
967
+ };
968
+ };
969
+ /** Gets the social profiles that the current user follows */
970
+ GetMyFollows: {
971
+ parameters: {
972
+ query?: {
973
+ "api-version"?: string;
974
+ };
975
+ header?: {
976
+ "x-api-version"?: string;
977
+ };
978
+ };
979
+ responses: {
980
+ /** @description OK */
981
+ 200: {
982
+ content: {
983
+ "application/json": components["schemas"]["FollowRecordDtoListEnvelope"];
984
+ "application/xml": components["schemas"]["FollowRecordDtoListEnvelope"];
985
+ "multipart/form-data": components["schemas"]["FollowRecordDtoListEnvelope"];
986
+ };
987
+ };
988
+ /** @description Unauthorized */
989
+ 401: {
990
+ content: {
991
+ "application/json": components["schemas"]["ErrorEnvelope"];
992
+ "application/xml": components["schemas"]["ErrorEnvelope"];
993
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
994
+ };
995
+ };
996
+ };
997
+ };
998
+ /** Counts the social profiles that the current user follows */
999
+ CountMyFollows: {
1000
+ parameters: {
1001
+ query?: {
1002
+ "api-version"?: string;
1003
+ };
1004
+ header?: {
1005
+ "x-api-version"?: string;
1006
+ };
1007
+ };
1008
+ responses: {
1009
+ /** @description OK */
1010
+ 200: {
1011
+ content: {
1012
+ "application/json": components["schemas"]["Int32Envelope"];
1013
+ "application/xml": components["schemas"]["Int32Envelope"];
1014
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1015
+ };
1016
+ };
1017
+ /** @description Unauthorized */
1018
+ 401: {
1019
+ content: {
1020
+ "application/json": components["schemas"]["ErrorEnvelope"];
1021
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1022
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1023
+ };
1024
+ };
1025
+ };
1026
+ };
1027
+ /** Gets the social profiles that follow the current user */
1028
+ GetMyFollowers: {
1029
+ parameters: {
1030
+ query?: {
1031
+ "api-version"?: string;
1032
+ };
1033
+ header?: {
1034
+ "x-api-version"?: string;
1035
+ };
1036
+ };
1037
+ responses: {
1038
+ /** @description OK */
1039
+ 200: {
1040
+ content: {
1041
+ "application/json": components["schemas"]["FollowRecordDtoListEnvelope"];
1042
+ "application/xml": components["schemas"]["FollowRecordDtoListEnvelope"];
1043
+ "multipart/form-data": components["schemas"]["FollowRecordDtoListEnvelope"];
1044
+ };
1045
+ };
1046
+ /** @description Unauthorized */
1047
+ 401: {
1048
+ content: {
1049
+ "application/json": components["schemas"]["ErrorEnvelope"];
1050
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1051
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1052
+ };
1053
+ };
1054
+ };
1055
+ };
1056
+ /** Counts the social profiles that follow the current user */
1057
+ CountMyFollowers: {
1058
+ parameters: {
1059
+ query?: {
1060
+ "api-version"?: string;
1061
+ };
1062
+ header?: {
1063
+ "x-api-version"?: string;
1064
+ };
1065
+ };
1066
+ responses: {
1067
+ /** @description OK */
1068
+ 200: {
1069
+ content: {
1070
+ "application/json": components["schemas"]["Int32Envelope"];
1071
+ "application/xml": components["schemas"]["Int32Envelope"];
1072
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1073
+ };
1074
+ };
1075
+ /** @description Unauthorized */
1076
+ 401: {
1077
+ content: {
1078
+ "application/json": components["schemas"]["ErrorEnvelope"];
1079
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1080
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1081
+ };
1082
+ };
1083
+ };
1084
+ };
1085
+ /** Gets the tenants that the current user is enrolled in */
1086
+ GetMyTenants: {
1087
+ parameters: {
1088
+ query?: {
1089
+ "api-version"?: string;
1090
+ };
1091
+ header?: {
1092
+ "x-api-version"?: string;
1093
+ };
1094
+ };
1095
+ responses: {
1096
+ /** @description OK */
1097
+ 200: {
1098
+ content: {
1099
+ "application/json": components["schemas"]["TenantDtoListEnvelope"];
1100
+ "application/xml": components["schemas"]["TenantDtoListEnvelope"];
1101
+ "multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
1102
+ };
1103
+ };
1104
+ /** @description Unauthorized */
1105
+ 401: {
1106
+ content: {
1107
+ "application/json": components["schemas"]["ErrorEnvelope"];
1108
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1109
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1110
+ };
1111
+ };
1112
+ /** @description Forbidden */
1113
+ 403: {
1114
+ content: {
1115
+ "application/json": components["schemas"]["ErrorEnvelope"];
1116
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1117
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1118
+ };
1119
+ };
1120
+ };
1121
+ };
1122
+ /** Counts the tenants that the current user is enrolled in */
1123
+ CountMyTenants: {
1124
+ parameters: {
1125
+ query?: {
1126
+ "api-version"?: string;
1127
+ };
1128
+ header?: {
1129
+ "x-api-version"?: string;
1130
+ };
1131
+ };
1132
+ responses: {
1133
+ /** @description OK */
1134
+ 200: {
1135
+ content: {
1136
+ "application/json": components["schemas"]["Int32Envelope"];
1137
+ "application/xml": components["schemas"]["Int32Envelope"];
1138
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1139
+ };
1140
+ };
1141
+ /** @description Unauthorized */
1142
+ 401: {
1143
+ content: {
1144
+ "application/json": components["schemas"]["ErrorEnvelope"];
1145
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1146
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1147
+ };
1148
+ };
1149
+ /** @description Forbidden */
1150
+ 403: {
1151
+ content: {
1152
+ "application/json": components["schemas"]["ErrorEnvelope"];
1153
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1154
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1155
+ };
1156
+ };
1157
+ };
1158
+ };
1159
+ /** Gets the tenants that the current user is enrolled in with extended information */
1160
+ GetMyTenantsExtended: {
1161
+ parameters: {
1162
+ query?: {
1163
+ "api-version"?: string;
1164
+ };
1165
+ header?: {
1166
+ "x-api-version"?: string;
1167
+ };
1168
+ };
1169
+ responses: {
1170
+ /** @description OK */
1171
+ 200: {
1172
+ content: {
1173
+ "application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1174
+ "application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1175
+ "multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
1176
+ };
1177
+ };
1178
+ /** @description Unauthorized */
1179
+ 401: {
1180
+ content: {
1181
+ "application/json": components["schemas"]["ErrorEnvelope"];
1182
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1183
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1184
+ };
1185
+ };
1186
+ /** @description Forbidden */
1187
+ 403: {
1188
+ content: {
1189
+ "application/json": components["schemas"]["ErrorEnvelope"];
1190
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1191
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1192
+ };
1193
+ };
1194
+ };
1195
+ };
1196
+ /** Gets the list of enrollments for the current user */
1197
+ GetMyEnrollments: {
1198
+ parameters: {
1199
+ query?: {
1200
+ "api-version"?: string;
1201
+ };
1202
+ header?: {
1203
+ "x-api-version"?: string;
1204
+ };
1205
+ };
1206
+ responses: {
1207
+ /** @description OK */
1208
+ 200: {
1209
+ content: {
1210
+ "application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
1211
+ "application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
1212
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
1213
+ };
1214
+ };
1215
+ /** @description Unauthorized */
1216
+ 401: {
1217
+ content: {
1218
+ "application/json": components["schemas"]["ErrorEnvelope"];
1219
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1220
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1221
+ };
1222
+ };
1223
+ };
1224
+ };
1225
+ /** Gets the list of enrollments for the current user with extended information */
1226
+ GetMyEnrollmentsExtended: {
1227
+ parameters: {
1228
+ query?: {
1229
+ "api-version"?: string;
1230
+ };
1231
+ header?: {
1232
+ "x-api-version"?: string;
1233
+ };
1234
+ };
1235
+ responses: {
1236
+ /** @description OK */
1237
+ 200: {
1238
+ content: {
1239
+ "application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
1240
+ "application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
1241
+ "multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
1242
+ };
1243
+ };
1244
+ /** @description Unauthorized */
1245
+ 401: {
1246
+ content: {
1247
+ "application/json": components["schemas"]["ErrorEnvelope"];
1248
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1249
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1250
+ };
1251
+ };
1252
+ };
1253
+ };
1254
+ /** Gets a single TenantEnrollment by its ID */
1255
+ GetMyEnrollment: {
1256
+ parameters: {
1257
+ query?: {
1258
+ "api-version"?: string;
1259
+ };
1260
+ header?: {
1261
+ "x-api-version"?: string;
1262
+ };
1263
+ path: {
1264
+ enrollmentId: string;
1265
+ };
1266
+ };
1267
+ requestBody?: {
1268
+ content: {
1269
+ "application/json": components["schemas"]["EnrollmentId"];
1270
+ "application/xml": components["schemas"]["EnrollmentId"];
1271
+ "multipart/form-data": components["schemas"]["EnrollmentId"];
1272
+ };
1273
+ };
1274
+ responses: {
1275
+ /** @description OK */
1276
+ 200: {
1277
+ content: {
1278
+ "application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
1279
+ "application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
1280
+ "multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
1281
+ };
1282
+ };
1283
+ /** @description Unauthorized */
1284
+ 401: {
1285
+ content: {
1286
+ "application/json": components["schemas"]["ErrorEnvelope"];
1287
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1288
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1289
+ };
1290
+ };
1291
+ };
1292
+ };
1293
+ /** Gets the current user's social profile */
1294
+ GetMySocialProfile: {
1295
+ parameters: {
1296
+ query?: {
1297
+ "api-version"?: string;
1298
+ };
1299
+ header?: {
1300
+ "x-api-version"?: string;
1301
+ };
1302
+ };
1303
+ responses: {
1304
+ /** @description OK */
1305
+ 200: {
1306
+ content: {
1307
+ "application/json": components["schemas"]["SocialProfileDtoEnvelope"];
1308
+ "application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
1309
+ "multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
1310
+ };
1311
+ };
1312
+ /** @description Unauthorized */
1313
+ 401: {
1314
+ content: {
1315
+ "application/json": components["schemas"]["ErrorEnvelope"];
1316
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1317
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1318
+ };
1319
+ };
1320
+ };
1321
+ };
1322
+ /** Gets the current user's cart */
1323
+ GetMyCart: {
1324
+ parameters: {
1325
+ query?: {
1326
+ "api-version"?: string;
1327
+ };
1328
+ header?: {
1329
+ "x-api-version"?: string;
1330
+ };
1331
+ };
1332
+ responses: {
1333
+ /** @description OK */
1334
+ 200: {
1335
+ content: {
1336
+ "application/json": components["schemas"]["CartDtoEnvelope"];
1337
+ "application/xml": components["schemas"]["CartDtoEnvelope"];
1338
+ "multipart/form-data": components["schemas"]["CartDtoEnvelope"];
1339
+ };
1340
+ };
1341
+ /** @description Unauthorized */
1342
+ 401: {
1343
+ content: {
1344
+ "application/json": components["schemas"]["ErrorEnvelope"];
1345
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1346
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1347
+ };
1348
+ };
1349
+ };
1350
+ };
1351
+ /** Gets the current user's billing profile */
1352
+ GetMyWallet: {
1353
+ parameters: {
1354
+ query?: {
1355
+ "api-version"?: string;
1356
+ };
1357
+ header?: {
1358
+ "x-api-version"?: string;
1359
+ };
1360
+ };
1361
+ responses: {
1362
+ /** @description OK */
1363
+ 200: {
1364
+ content: {
1365
+ "application/json": components["schemas"]["WalletDtoEnvelope"];
1366
+ "application/xml": components["schemas"]["WalletDtoEnvelope"];
1367
+ "multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
1368
+ };
1369
+ };
1370
+ /** @description Unauthorized */
1371
+ 401: {
1372
+ content: {
1373
+ "application/json": components["schemas"]["ErrorEnvelope"];
1374
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1375
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1376
+ };
1377
+ };
1378
+ };
1379
+ };
1380
+ /** Gets the list of notifications for the current user */
1381
+ GetMyNotifications: {
1382
+ parameters: {
1383
+ query?: {
1384
+ "api-version"?: string;
1385
+ };
1386
+ header?: {
1387
+ "x-api-version"?: string;
1388
+ };
1389
+ };
1390
+ responses: {
1391
+ /** @description OK */
1392
+ 200: {
1393
+ content: {
1394
+ "application/json": components["schemas"]["NotificationDtoListEnvelope"];
1395
+ "application/xml": components["schemas"]["NotificationDtoListEnvelope"];
1396
+ "multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
1397
+ };
1398
+ };
1399
+ /** @description Unauthorized */
1400
+ 401: {
1401
+ content: {
1402
+ "application/json": components["schemas"]["ErrorEnvelope"];
1403
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1404
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1405
+ };
1406
+ };
1407
+ };
1408
+ };
1409
+ /** Counts the list of notifications for the current user */
1410
+ CountMyNotifications: {
1411
+ parameters: {
1412
+ query?: {
1413
+ "api-version"?: string;
1414
+ };
1415
+ header?: {
1416
+ "x-api-version"?: string;
1417
+ };
1418
+ };
1419
+ responses: {
1420
+ /** @description OK */
1421
+ 200: {
1422
+ content: {
1423
+ "application/json": components["schemas"]["Int32Envelope"];
1424
+ "application/xml": components["schemas"]["Int32Envelope"];
1425
+ "multipart/form-data": components["schemas"]["Int32Envelope"];
1426
+ };
1427
+ };
1428
+ /** @description Unauthorized */
1429
+ 401: {
1430
+ content: {
1431
+ "application/json": components["schemas"]["ErrorEnvelope"];
1432
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1433
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1434
+ };
1435
+ };
1436
+ };
1437
+ };
1438
+ /** Gets the settings for the current user */
1439
+ GetMySettings: {
1440
+ parameters: {
1441
+ query?: {
1442
+ "api-version"?: string;
1443
+ };
1444
+ header?: {
1445
+ "x-api-version"?: string;
1446
+ };
1447
+ };
1448
+ responses: {
1449
+ /** @description OK */
1450
+ 200: {
1451
+ content: {
1452
+ "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
1453
+ "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
1454
+ "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
1455
+ };
1456
+ };
1457
+ /** @description Unauthorized */
1458
+ 401: {
1459
+ content: {
1460
+ "application/json": components["schemas"]["ErrorEnvelope"];
1461
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1462
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1463
+ };
1464
+ };
1465
+ };
1466
+ };
1467
+ /** Updates the settings for the current user */
1468
+ UpdateMySettings: {
1469
+ parameters: {
1470
+ query?: {
1471
+ "api-version"?: string;
1472
+ };
1473
+ header?: {
1474
+ "x-api-version"?: string;
1475
+ };
1476
+ };
1477
+ requestBody?: {
1478
+ content: {
1479
+ "application/json": components["schemas"]["UserSettingsUpdateDto"];
1480
+ "application/xml": components["schemas"]["UserSettingsUpdateDto"];
1481
+ "multipart/form-data": components["schemas"]["UserSettingsUpdateDto"];
1482
+ };
1483
+ };
1484
+ responses: {
1485
+ /** @description OK */
1486
+ 200: {
1487
+ content: {
1488
+ "application/json": components["schemas"]["UserSettingsDtoEnvelope"];
1489
+ "application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
1490
+ "multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
1491
+ };
1492
+ };
1493
+ /** @description Unauthorized */
1494
+ 401: {
1495
+ content: {
1496
+ "application/json": components["schemas"]["ErrorEnvelope"];
1497
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1498
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1499
+ };
1500
+ };
1501
+ };
1502
+ };
1503
+ /** Gets the list of addresses for the current user */
1504
+ GetMyAddresses: {
1505
+ parameters: {
1506
+ query?: {
1507
+ "api-version"?: string;
1508
+ };
1509
+ header?: {
1510
+ "x-api-version"?: string;
1511
+ };
1512
+ };
1513
+ responses: {
1514
+ /** @description OK */
1515
+ 200: {
1516
+ content: {
1517
+ "application/json": components["schemas"]["AddressDtoListEnvelope"];
1518
+ "application/xml": components["schemas"]["AddressDtoListEnvelope"];
1519
+ "multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
1520
+ };
1521
+ };
1522
+ /** @description Unauthorized */
1523
+ 401: {
1524
+ content: {
1525
+ "application/json": components["schemas"]["ErrorEnvelope"];
1526
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1527
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1528
+ };
1529
+ };
1530
+ };
1531
+ };
1532
+ /** Gets the list of tenant enrollment invitations for the current user */
1533
+ GetMyInvitations: {
1534
+ parameters: {
1535
+ query?: {
1536
+ "api-version"?: string;
1537
+ };
1538
+ header?: {
1539
+ "x-api-version"?: string;
1540
+ };
1541
+ };
1542
+ responses: {
1543
+ /** @description OK */
1544
+ 200: {
1545
+ content: {
1546
+ "application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
1547
+ "application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
1548
+ "multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
1549
+ };
1550
+ };
1551
+ /** @description Unauthorized */
1552
+ 401: {
1553
+ content: {
1554
+ "application/json": components["schemas"]["ErrorEnvelope"];
1555
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1556
+ "multipart/form-data": components["schemas"]["ErrorEnvelope"];
1557
+ };
1558
+ };
1559
+ };
1560
+ };
1561
+ }