@fenixalliance/abs-api-client 1.0.8 → 1.0.10
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/app/index.js +2 -2
- package/app/index.ts +1 -1
- package/clients/contentService/index.ts +2 -2
- package/clients/contentService/models/{Portal.ts → PortalSettings.ts} +1 -1
- package/clients/contentService/models/PortalSettingsEnvelope.ts +14 -0
- package/clients/contentService/services/PortalsService.js +23 -12
- package/clients/contentService/services/PortalsService.ts +25 -14
- package/clients/crmService/services/ContactsService.js +86 -28
- package/clients/crmService/services/ContactsService.ts +86 -28
- package/clients/holderService/index.js +7 -3
- package/clients/holderService/index.ts +4 -2
- package/clients/holderService/models/FollowRecordDtoListEnvelope.ts +14 -0
- package/clients/holderService/services/{HolderService.js → IdentityService.js} +65 -157
- package/clients/holderService/services/{HolderService.ts → IdentityService.ts} +70 -186
- package/clients/holderService/services/TenantsService.js +151 -0
- package/clients/holderService/services/TenantsService.ts +176 -0
- package/clients/holderService/services/UserService.js +364 -0
- package/clients/holderService/services/UserService.ts +421 -0
- package/clients/storageService/core/ApiError.js +20 -0
- package/clients/storageService/core/ApiError.ts +25 -0
- package/clients/storageService/core/ApiRequestOptions.ts +17 -0
- package/clients/storageService/core/ApiResult.ts +11 -0
- package/clients/storageService/core/CancelablePromise.js +104 -0
- package/clients/storageService/core/CancelablePromise.ts +131 -0
- package/clients/storageService/core/OpenAPI.js +14 -0
- package/clients/storageService/core/OpenAPI.ts +32 -0
- package/clients/storageService/core/request.js +294 -0
- package/clients/storageService/core/request.ts +322 -0
- package/clients/storageService/index.js +26 -0
- package/clients/storageService/index.ts +23 -0
- package/clients/storageService/models/Blob.js +11 -0
- package/clients/storageService/models/Blob.ts +26 -0
- package/clients/{contentService/models/PortalEnvelope.ts → storageService/models/BlobEnvelope.ts} +3 -3
- package/clients/{holderService/models/EmptyEnvelopeEnvelope.ts → storageService/models/EmptyEnvelope.ts} +1 -3
- package/clients/storageService/models/ErrorEnvelope.ts +12 -0
- package/clients/storageService/models/FileUploadCreateDto.ts +20 -0
- package/clients/storageService/models/FileUploadDto.js +2 -0
- package/clients/storageService/models/FileUploadDto.ts +29 -0
- package/clients/storageService/models/FileUploadDtoEnvelope.js +2 -0
- package/clients/storageService/models/FileUploadDtoEnvelope.ts +14 -0
- package/clients/storageService/models/FileUploadUpdateDto.js +2 -0
- package/clients/storageService/models/FileUploadUpdateDto.ts +19 -0
- package/clients/storageService/services/AvatarsService.js +200 -0
- package/clients/storageService/services/AvatarsService.ts +234 -0
- package/clients/storageService/services/BlobsService.js +66 -0
- package/clients/storageService/services/BlobsService.ts +81 -0
- package/clients/{tenantService/services/EnrollmentsService.js → storageService/services/FilesService.js} +50 -42
- package/clients/{tenantService/services/UnitsService.ts → storageService/services/FilesService.ts} +75 -65
- package/clients/storageService/services/RadzenEditorService.js +117 -0
- package/clients/storageService/services/RadzenEditorService.ts +149 -0
- package/clients/storageService/services/UploadsService.js +33 -0
- package/clients/storageService/services/UploadsService.ts +53 -0
- package/clients/systemService/services/ModulesService.js +4 -2
- package/clients/systemService/services/ModulesService.ts +4 -2
- package/clients/systemService/services/TenantsService.js +24 -8
- package/clients/systemService/services/TenantsService.ts +24 -8
- package/clients/tenantService/index.js +1 -29
- package/clients/tenantService/index.ts +7 -20
- package/clients/tenantService/models/TenantIndustryDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/TenantIndustryDtoListEnvelope.ts +14 -0
- package/clients/tenantService/models/TenantTeamContactEnrollmentDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamContactEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.ts → TenantTeamDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamEmployeeEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamProjectEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTeamRecordDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts → TenantTeamRecordDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/TenantTypeDtoListEnvelope.js +2 -0
- package/clients/tenantService/models/{TenantTypeDtoIReadOnlyCollectionEnvelope.ts → TenantTypeDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/services/SizesService.js +15 -5
- package/clients/tenantService/services/SizesService.ts +15 -5
- package/clients/tenantService/services/TenantsService.js +2554 -233
- package/clients/tenantService/services/TenantsService.ts +3004 -307
- package/package.json +1 -1
- package/schemas/contentService/schema.s.ts +877 -844
- package/schemas/crmService/schema.s.ts +1776 -1516
- package/schemas/holderService/schema.s.ts +1024 -789
- package/schemas/storageService/schema.s.js +6 -0
- package/schemas/storageService/schema.s.ts +1087 -0
- package/schemas/systemService/schema.s.ts +465 -387
- package/schemas/tenantService/schema.s.ts +5713 -4820
- package/clients/tenantService/services/DepartmentsService.js +0 -161
- package/clients/tenantService/services/DepartmentsService.ts +0 -192
- package/clients/tenantService/services/EmployeeEnrollmentsService.js +0 -153
- package/clients/tenantService/services/EmployeeEnrollmentsService.ts +0 -181
- package/clients/tenantService/services/EnrollmentsService.ts +0 -195
- package/clients/tenantService/services/IndustriesService.js +0 -161
- package/clients/tenantService/services/IndustriesService.ts +0 -190
- package/clients/tenantService/services/InvitationsService.js +0 -128
- package/clients/tenantService/services/InvitationsService.ts +0 -150
- package/clients/tenantService/services/PositionsService.js +0 -161
- package/clients/tenantService/services/PositionsService.ts +0 -192
- package/clients/tenantService/services/SegmentsService.js +0 -161
- package/clients/tenantService/services/SegmentsService.ts +0 -191
- package/clients/tenantService/services/TeamContactEnrollmentsService.js +0 -161
- package/clients/tenantService/services/TeamContactEnrollmentsService.ts +0 -191
- package/clients/tenantService/services/TeamProjectEnrollmentService.js +0 -153
- package/clients/tenantService/services/TeamProjectEnrollmentService.ts +0 -181
- package/clients/tenantService/services/TeamRecordsService.js +0 -161
- package/clients/tenantService/services/TeamRecordsService.ts +0 -192
- package/clients/tenantService/services/TeamsService.js +0 -161
- package/clients/tenantService/services/TeamsService.ts +0 -192
- package/clients/tenantService/services/TerritoriesService.js +0 -161
- package/clients/tenantService/services/TerritoriesService.ts +0 -192
- package/clients/tenantService/services/TypesService.js +0 -149
- package/clients/tenantService/services/TypesService.ts +0 -176
- package/clients/tenantService/services/UnitsService.js +0 -159
- /package/clients/contentService/models/{Portal.js → PortalSettings.js} +0 -0
- /package/clients/contentService/models/{PortalEnvelope.js → PortalSettingsEnvelope.js} +0 -0
- /package/clients/holderService/models/{EmptyEnvelopeEnvelope.js → FollowRecordDtoListEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/core/ApiRequestOptions.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.js → storageService/core/ApiResult.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/models/BlobEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.js → storageService/models/EmptyEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.js → storageService/models/ErrorEnvelope.js} +0 -0
- /package/clients/{tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.js → storageService/models/FileUploadCreateDto.js} +0 -0
|
@@ -6,825 +6,171 @@
|
|
|
6
6
|
|
|
7
7
|
export interface paths {
|
|
8
8
|
"/api/v2/Me": {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
+
/**
|
|
10
|
+
* Gets the current user
|
|
11
|
+
* @description Get the currently acting user.
|
|
12
|
+
*/
|
|
13
|
+
get: operations["GetCurrentUserAsync"];
|
|
14
|
+
/**
|
|
15
|
+
* Update the current user's profile
|
|
16
|
+
* @description Update the current user's profile
|
|
17
|
+
*/
|
|
18
|
+
put: operations["UpdateCurrentUserAsync"];
|
|
19
|
+
/**
|
|
20
|
+
* Partially update the current user's profile
|
|
21
|
+
* @description Partially update the current user's profile
|
|
22
|
+
*/
|
|
23
|
+
patch: operations["PatchCurrentUserAsync"];
|
|
107
24
|
};
|
|
108
25
|
"/api/v2/Me/Extended": {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
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
|
-
};
|
|
26
|
+
/**
|
|
27
|
+
* Get the current user's extended profile
|
|
28
|
+
* @description Get the current user's extended profile
|
|
29
|
+
*/
|
|
30
|
+
get: operations["GetExtendedCurrentUserAsync"];
|
|
137
31
|
};
|
|
138
32
|
"/api/v2/Me/Avatar": {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
};
|
|
33
|
+
/**
|
|
34
|
+
* Get the current user's avatar
|
|
35
|
+
* @description Get the current user's avatar
|
|
36
|
+
*/
|
|
37
|
+
get: operations["GetCurrentUserAvatarAsync"];
|
|
38
|
+
/**
|
|
39
|
+
* Update the current user's avatar
|
|
40
|
+
* @description Update the current user's avatar
|
|
41
|
+
*/
|
|
42
|
+
post: operations["UpdateAvatarAsync"];
|
|
219
43
|
};
|
|
220
44
|
"/api/v2/Me/Follows": {
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
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
|
-
};
|
|
45
|
+
/**
|
|
46
|
+
* Get the social profiles that the current user follows
|
|
47
|
+
* @description Get the social profiles that the current user follows
|
|
48
|
+
*/
|
|
49
|
+
get: operations["GetCurrentUserFollowsAsync"];
|
|
249
50
|
};
|
|
250
51
|
"/api/v2/Me/Follows/Count": {
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
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
|
-
};
|
|
52
|
+
/**
|
|
53
|
+
* Count the social profiles that the current user follows
|
|
54
|
+
* @description Count the social profiles that the current user follows
|
|
55
|
+
*/
|
|
56
|
+
get: operations["CountCurrentUserFollowsAsync"];
|
|
279
57
|
};
|
|
280
58
|
"/api/v2/Me/Followers": {
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
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
|
-
};
|
|
59
|
+
/**
|
|
60
|
+
* Get the social profiles that follow the current user
|
|
61
|
+
* @description Get the social profiles that follow the current user
|
|
62
|
+
*/
|
|
63
|
+
get: operations["GetCurrentUserFollowersAsync"];
|
|
309
64
|
};
|
|
310
65
|
"/api/v2/Me/Followers/Count": {
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
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
|
-
};
|
|
66
|
+
/**
|
|
67
|
+
* Count the social profiles that follow the current user
|
|
68
|
+
* @description Count the social profiles that follow the current user
|
|
69
|
+
*/
|
|
70
|
+
get: operations["CountCurrentUserFollowersAsync"];
|
|
339
71
|
};
|
|
340
72
|
"/api/v2/Me/Businesses": {
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
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
|
-
};
|
|
73
|
+
/**
|
|
74
|
+
* Get the tenants that the current user is enrolled in
|
|
75
|
+
* @description Get the tenants that the current user is enrolled in
|
|
76
|
+
*/
|
|
77
|
+
get: operations["GetCurrentUserTenantsAsync"];
|
|
377
78
|
};
|
|
378
79
|
"/api/v2/Me/Businesses/Count": {
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
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
|
-
};
|
|
80
|
+
/**
|
|
81
|
+
* Count the tenants that the current user is enrolled in
|
|
82
|
+
* @description Count the tenants that the current user is enrolled in
|
|
83
|
+
*/
|
|
84
|
+
get: operations["CountCurrentUserTenantsAsync"];
|
|
415
85
|
};
|
|
416
86
|
"/api/v2/Me/Businesses/Extended": {
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
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
|
-
};
|
|
87
|
+
/**
|
|
88
|
+
* Get the tenants that the current user is enrolled in
|
|
89
|
+
* @description Get the tenants that the current user is enrolled in
|
|
90
|
+
*/
|
|
91
|
+
get: operations["GetCurrentUserTenantsExtendedAsync"];
|
|
453
92
|
};
|
|
454
93
|
"/api/v2/Me/Enrollments": {
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
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
|
-
};
|
|
94
|
+
/**
|
|
95
|
+
* Get the list of enrollments for the current user
|
|
96
|
+
* @description Get the list of enrollments for the current user
|
|
97
|
+
*/
|
|
98
|
+
get: operations["GetCurrentUserEnrollmentsAsync"];
|
|
483
99
|
};
|
|
484
100
|
"/api/v2/Me/Enrollments/Extended": {
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
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
|
-
};
|
|
101
|
+
/**
|
|
102
|
+
* Get the list of enrollments for the current user
|
|
103
|
+
* @description Get the list of enrollments for the current user
|
|
104
|
+
*/
|
|
105
|
+
get: operations["GetCurrentUserEnrollmentsExtendedAsync"];
|
|
513
106
|
};
|
|
514
107
|
"/api/v2/Me/Enrollments/{enrollmentId}": {
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
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
|
-
};
|
|
108
|
+
/**
|
|
109
|
+
* Get a single TenantEnrollment by its ID
|
|
110
|
+
* @description Get a single TenantEnrollment by its ID
|
|
111
|
+
*/
|
|
112
|
+
get: operations["GetTenantEnrollmentAsync"];
|
|
553
113
|
};
|
|
554
114
|
"/api/v2/Me/SocialProfile": {
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
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
|
-
};
|
|
115
|
+
/**
|
|
116
|
+
* Get the current user's social profile
|
|
117
|
+
* @description Get the current user's social profile
|
|
118
|
+
*/
|
|
119
|
+
get: operations["GetCurrentUserSocialProfileAsync"];
|
|
583
120
|
};
|
|
584
121
|
"/api/v2/Me/Cart": {
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
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
|
-
};
|
|
122
|
+
/**
|
|
123
|
+
* Get the current user's cart
|
|
124
|
+
* @description Get the current user's cart
|
|
125
|
+
*/
|
|
126
|
+
get: operations["GetCurrentUserCartAsync"];
|
|
613
127
|
};
|
|
614
128
|
"/api/v2/Me/Wallet": {
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
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
|
-
};
|
|
129
|
+
/**
|
|
130
|
+
* Get the current user's billing profile
|
|
131
|
+
* @description Get the current user's billing profile
|
|
132
|
+
*/
|
|
133
|
+
get: operations["GetCurrentUserWalletAsync"];
|
|
643
134
|
};
|
|
644
135
|
"/api/v2/Me/Notifications": {
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
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
|
-
};
|
|
136
|
+
/**
|
|
137
|
+
* Get the list of notifications for the current user
|
|
138
|
+
* @description Get the list of notifications for the current user
|
|
139
|
+
*/
|
|
140
|
+
get: operations["GetCurrentUserNotificationsAsync"];
|
|
673
141
|
};
|
|
674
142
|
"/api/v2/Me/Notifications/Count": {
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
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
|
-
};
|
|
143
|
+
/**
|
|
144
|
+
* Count the notifications for the current user
|
|
145
|
+
* @description Count the notifications for the current user
|
|
146
|
+
*/
|
|
147
|
+
get: operations["CountCurrentUserNotificationsAsync"];
|
|
703
148
|
};
|
|
704
149
|
"/api/v2/Me/Settings": {
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
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
|
-
};
|
|
150
|
+
/**
|
|
151
|
+
* Get the settings for the current user
|
|
152
|
+
* @description Get the settings for the current user
|
|
153
|
+
*/
|
|
154
|
+
get: operations["GetCurrentUserSettingsAsync"];
|
|
155
|
+
/**
|
|
156
|
+
* Update the settings for the current user
|
|
157
|
+
* @description Update the settings for the current user
|
|
158
|
+
*/
|
|
159
|
+
put: operations["UpdateCurrentUserSettingsAsync"];
|
|
768
160
|
};
|
|
769
161
|
"/api/v2/Me/Addresses": {
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
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
|
-
};
|
|
162
|
+
/**
|
|
163
|
+
* Get the list of addresses for the current user
|
|
164
|
+
* @description Get the list of addresses for the current user
|
|
165
|
+
*/
|
|
166
|
+
get: operations["GetCurrentUserAddressesAsync"];
|
|
798
167
|
};
|
|
799
168
|
"/api/v2/Me/Invitations": {
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
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
|
-
};
|
|
169
|
+
/**
|
|
170
|
+
* Get the list of tenant enrollment invitations for the current user
|
|
171
|
+
* @description Get the list of tenant enrollment invitations for the current user
|
|
172
|
+
*/
|
|
173
|
+
get: operations["GetCurrentUserInvitationAsync"];
|
|
828
174
|
};
|
|
829
175
|
}
|
|
830
176
|
|
|
@@ -906,15 +252,6 @@ export interface components {
|
|
|
906
252
|
timestamp?: string;
|
|
907
253
|
activityId?: string | null;
|
|
908
254
|
};
|
|
909
|
-
EmptyEnvelopeEnvelope: {
|
|
910
|
-
isSuccess?: boolean;
|
|
911
|
-
errorMessage?: string | null;
|
|
912
|
-
correlationId?: string | null;
|
|
913
|
-
/** Format: date-time */
|
|
914
|
-
timestamp?: string;
|
|
915
|
-
activityId?: string | null;
|
|
916
|
-
result?: components["schemas"]["EmptyEnvelope"];
|
|
917
|
-
};
|
|
918
255
|
EnrollmentId: Record<string, never>;
|
|
919
256
|
ErrorEnvelope: {
|
|
920
257
|
isSuccess?: boolean;
|
|
@@ -1083,6 +420,15 @@ export interface components {
|
|
|
1083
420
|
followedID?: string | null;
|
|
1084
421
|
alerts?: boolean;
|
|
1085
422
|
};
|
|
423
|
+
FollowRecordDtoListEnvelope: {
|
|
424
|
+
isSuccess?: boolean;
|
|
425
|
+
errorMessage?: string | null;
|
|
426
|
+
correlationId?: string | null;
|
|
427
|
+
/** Format: date-time */
|
|
428
|
+
timestamp?: string;
|
|
429
|
+
activityId?: string | null;
|
|
430
|
+
result?: components["schemas"]["FollowRecordDto"][] | null;
|
|
431
|
+
};
|
|
1086
432
|
Int32Envelope: {
|
|
1087
433
|
isSuccess?: boolean;
|
|
1088
434
|
errorMessage?: string | null;
|
|
@@ -1464,4 +810,893 @@ export type $defs = Record<string, never>;
|
|
|
1464
810
|
|
|
1465
811
|
export type external = Record<string, never>;
|
|
1466
812
|
|
|
1467
|
-
export
|
|
813
|
+
export interface operations {
|
|
814
|
+
|
|
815
|
+
/**
|
|
816
|
+
* Gets the current user
|
|
817
|
+
* @description Get the currently acting user.
|
|
818
|
+
*/
|
|
819
|
+
GetCurrentUserAsync: {
|
|
820
|
+
parameters: {
|
|
821
|
+
query?: {
|
|
822
|
+
"api-version"?: string;
|
|
823
|
+
};
|
|
824
|
+
header?: {
|
|
825
|
+
"x-api-version"?: string;
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
responses: {
|
|
829
|
+
/** @description OK */
|
|
830
|
+
200: {
|
|
831
|
+
content: {
|
|
832
|
+
"application/json": components["schemas"]["UserDtoEnvelope"];
|
|
833
|
+
"application/xml": components["schemas"]["UserDtoEnvelope"];
|
|
834
|
+
"multipart/form-data": components["schemas"]["UserDtoEnvelope"];
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
/** @description Unauthorized */
|
|
838
|
+
401: {
|
|
839
|
+
content: {
|
|
840
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
841
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
842
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
843
|
+
};
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
/**
|
|
848
|
+
* Update the current user's profile
|
|
849
|
+
* @description Update the current user's profile
|
|
850
|
+
*/
|
|
851
|
+
UpdateCurrentUserAsync: {
|
|
852
|
+
parameters: {
|
|
853
|
+
query?: {
|
|
854
|
+
"api-version"?: string;
|
|
855
|
+
};
|
|
856
|
+
header?: {
|
|
857
|
+
"x-api-version"?: string;
|
|
858
|
+
};
|
|
859
|
+
};
|
|
860
|
+
requestBody?: {
|
|
861
|
+
content: {
|
|
862
|
+
"application/json": components["schemas"]["UserUpdateDto"];
|
|
863
|
+
"application/xml": components["schemas"]["UserUpdateDto"];
|
|
864
|
+
"multipart/form-data": components["schemas"]["UserUpdateDto"];
|
|
865
|
+
};
|
|
866
|
+
};
|
|
867
|
+
responses: {
|
|
868
|
+
/** @description OK */
|
|
869
|
+
200: {
|
|
870
|
+
content: {
|
|
871
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
872
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
873
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelope"];
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
/** @description Unauthorized */
|
|
877
|
+
401: {
|
|
878
|
+
content: {
|
|
879
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
880
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
881
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
882
|
+
};
|
|
883
|
+
};
|
|
884
|
+
};
|
|
885
|
+
};
|
|
886
|
+
/**
|
|
887
|
+
* Partially update the current user's profile
|
|
888
|
+
* @description Partially update the current user's profile
|
|
889
|
+
*/
|
|
890
|
+
PatchCurrentUserAsync: {
|
|
891
|
+
parameters: {
|
|
892
|
+
query?: {
|
|
893
|
+
"api-version"?: string;
|
|
894
|
+
};
|
|
895
|
+
header?: {
|
|
896
|
+
"x-api-version"?: string;
|
|
897
|
+
};
|
|
898
|
+
};
|
|
899
|
+
requestBody?: {
|
|
900
|
+
content: {
|
|
901
|
+
"application/json": components["schemas"]["Operation"][];
|
|
902
|
+
"application/xml": components["schemas"]["Operation"][];
|
|
903
|
+
"multipart/form-data": components["schemas"]["Operation"][];
|
|
904
|
+
};
|
|
905
|
+
};
|
|
906
|
+
responses: {
|
|
907
|
+
/** @description OK */
|
|
908
|
+
200: {
|
|
909
|
+
content: {
|
|
910
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
911
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
912
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelope"];
|
|
913
|
+
};
|
|
914
|
+
};
|
|
915
|
+
/** @description Unauthorized */
|
|
916
|
+
401: {
|
|
917
|
+
content: {
|
|
918
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
919
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
920
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
921
|
+
};
|
|
922
|
+
};
|
|
923
|
+
};
|
|
924
|
+
};
|
|
925
|
+
/**
|
|
926
|
+
* Get the current user's extended profile
|
|
927
|
+
* @description Get the current user's extended profile
|
|
928
|
+
*/
|
|
929
|
+
GetExtendedCurrentUserAsync: {
|
|
930
|
+
parameters: {
|
|
931
|
+
query?: {
|
|
932
|
+
"api-version"?: string;
|
|
933
|
+
};
|
|
934
|
+
header?: {
|
|
935
|
+
"x-api-version"?: string;
|
|
936
|
+
};
|
|
937
|
+
};
|
|
938
|
+
responses: {
|
|
939
|
+
/** @description OK */
|
|
940
|
+
200: {
|
|
941
|
+
content: {
|
|
942
|
+
"application/json": components["schemas"]["ExtendedUserDtoEnvelope"];
|
|
943
|
+
"application/xml": components["schemas"]["ExtendedUserDtoEnvelope"];
|
|
944
|
+
"multipart/form-data": components["schemas"]["ExtendedUserDtoEnvelope"];
|
|
945
|
+
};
|
|
946
|
+
};
|
|
947
|
+
/** @description Unauthorized */
|
|
948
|
+
401: {
|
|
949
|
+
content: {
|
|
950
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
951
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
952
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
953
|
+
};
|
|
954
|
+
};
|
|
955
|
+
};
|
|
956
|
+
};
|
|
957
|
+
/**
|
|
958
|
+
* Get the current user's avatar
|
|
959
|
+
* @description Get the current user's avatar
|
|
960
|
+
*/
|
|
961
|
+
GetCurrentUserAvatarAsync: {
|
|
962
|
+
parameters: {
|
|
963
|
+
query?: {
|
|
964
|
+
"api-version"?: string;
|
|
965
|
+
};
|
|
966
|
+
header?: {
|
|
967
|
+
"x-api-version"?: string;
|
|
968
|
+
};
|
|
969
|
+
};
|
|
970
|
+
responses: {
|
|
971
|
+
/** @description OK */
|
|
972
|
+
200: {
|
|
973
|
+
content: {
|
|
974
|
+
"application/json": string;
|
|
975
|
+
"application/xml": string;
|
|
976
|
+
"multipart/form-data": string;
|
|
977
|
+
};
|
|
978
|
+
};
|
|
979
|
+
/** @description Unauthorized */
|
|
980
|
+
401: {
|
|
981
|
+
content: {
|
|
982
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
983
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
984
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
985
|
+
};
|
|
986
|
+
};
|
|
987
|
+
/** @description Forbidden */
|
|
988
|
+
403: {
|
|
989
|
+
content: {
|
|
990
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
991
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
992
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
993
|
+
};
|
|
994
|
+
};
|
|
995
|
+
};
|
|
996
|
+
};
|
|
997
|
+
/**
|
|
998
|
+
* Update the current user's avatar
|
|
999
|
+
* @description Update the current user's avatar
|
|
1000
|
+
*/
|
|
1001
|
+
UpdateAvatarAsync: {
|
|
1002
|
+
parameters: {
|
|
1003
|
+
query?: {
|
|
1004
|
+
"api-version"?: string;
|
|
1005
|
+
};
|
|
1006
|
+
header?: {
|
|
1007
|
+
"x-api-version"?: string;
|
|
1008
|
+
};
|
|
1009
|
+
};
|
|
1010
|
+
requestBody?: {
|
|
1011
|
+
content: {
|
|
1012
|
+
"multipart/form-data": {
|
|
1013
|
+
/** Format: binary */
|
|
1014
|
+
avatar?: string;
|
|
1015
|
+
};
|
|
1016
|
+
"application/json": {
|
|
1017
|
+
/** Format: binary */
|
|
1018
|
+
avatar?: string;
|
|
1019
|
+
};
|
|
1020
|
+
"application/xml": {
|
|
1021
|
+
/** Format: binary */
|
|
1022
|
+
avatar?: string;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
responses: {
|
|
1027
|
+
/** @description OK */
|
|
1028
|
+
200: {
|
|
1029
|
+
content: {
|
|
1030
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
1031
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
1032
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelope"];
|
|
1033
|
+
};
|
|
1034
|
+
};
|
|
1035
|
+
/** @description Unauthorized */
|
|
1036
|
+
401: {
|
|
1037
|
+
content: {
|
|
1038
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1039
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1040
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1041
|
+
};
|
|
1042
|
+
};
|
|
1043
|
+
/** @description Forbidden */
|
|
1044
|
+
403: {
|
|
1045
|
+
content: {
|
|
1046
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1047
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1048
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1049
|
+
};
|
|
1050
|
+
};
|
|
1051
|
+
};
|
|
1052
|
+
};
|
|
1053
|
+
/**
|
|
1054
|
+
* Get the social profiles that the current user follows
|
|
1055
|
+
* @description Get the social profiles that the current user follows
|
|
1056
|
+
*/
|
|
1057
|
+
GetCurrentUserFollowsAsync: {
|
|
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"]["FollowRecordDtoListEnvelope"];
|
|
1071
|
+
"application/xml": components["schemas"]["FollowRecordDtoListEnvelope"];
|
|
1072
|
+
"multipart/form-data": components["schemas"]["FollowRecordDtoListEnvelope"];
|
|
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
|
+
/**
|
|
1086
|
+
* Count the social profiles that the current user follows
|
|
1087
|
+
* @description Count the social profiles that the current user follows
|
|
1088
|
+
*/
|
|
1089
|
+
CountCurrentUserFollowsAsync: {
|
|
1090
|
+
parameters: {
|
|
1091
|
+
query?: {
|
|
1092
|
+
"api-version"?: string;
|
|
1093
|
+
};
|
|
1094
|
+
header?: {
|
|
1095
|
+
"x-api-version"?: string;
|
|
1096
|
+
};
|
|
1097
|
+
};
|
|
1098
|
+
responses: {
|
|
1099
|
+
/** @description OK */
|
|
1100
|
+
200: {
|
|
1101
|
+
content: {
|
|
1102
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1103
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1104
|
+
"multipart/form-data": components["schemas"]["Int32Envelope"];
|
|
1105
|
+
};
|
|
1106
|
+
};
|
|
1107
|
+
/** @description Unauthorized */
|
|
1108
|
+
401: {
|
|
1109
|
+
content: {
|
|
1110
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1111
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1112
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1113
|
+
};
|
|
1114
|
+
};
|
|
1115
|
+
};
|
|
1116
|
+
};
|
|
1117
|
+
/**
|
|
1118
|
+
* Get the social profiles that follow the current user
|
|
1119
|
+
* @description Get the social profiles that follow the current user
|
|
1120
|
+
*/
|
|
1121
|
+
GetCurrentUserFollowersAsync: {
|
|
1122
|
+
parameters: {
|
|
1123
|
+
query?: {
|
|
1124
|
+
"api-version"?: string;
|
|
1125
|
+
};
|
|
1126
|
+
header?: {
|
|
1127
|
+
"x-api-version"?: string;
|
|
1128
|
+
};
|
|
1129
|
+
};
|
|
1130
|
+
responses: {
|
|
1131
|
+
/** @description OK */
|
|
1132
|
+
200: {
|
|
1133
|
+
content: {
|
|
1134
|
+
"application/json": components["schemas"]["FollowRecordDtoListEnvelope"];
|
|
1135
|
+
"application/xml": components["schemas"]["FollowRecordDtoListEnvelope"];
|
|
1136
|
+
"multipart/form-data": components["schemas"]["FollowRecordDtoListEnvelope"];
|
|
1137
|
+
};
|
|
1138
|
+
};
|
|
1139
|
+
/** @description Unauthorized */
|
|
1140
|
+
401: {
|
|
1141
|
+
content: {
|
|
1142
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1143
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1144
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1145
|
+
};
|
|
1146
|
+
};
|
|
1147
|
+
};
|
|
1148
|
+
};
|
|
1149
|
+
/**
|
|
1150
|
+
* Count the social profiles that follow the current user
|
|
1151
|
+
* @description Count the social profiles that follow the current user
|
|
1152
|
+
*/
|
|
1153
|
+
CountCurrentUserFollowersAsync: {
|
|
1154
|
+
parameters: {
|
|
1155
|
+
query?: {
|
|
1156
|
+
"api-version"?: string;
|
|
1157
|
+
};
|
|
1158
|
+
header?: {
|
|
1159
|
+
"x-api-version"?: string;
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
responses: {
|
|
1163
|
+
/** @description OK */
|
|
1164
|
+
200: {
|
|
1165
|
+
content: {
|
|
1166
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1167
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1168
|
+
"multipart/form-data": components["schemas"]["Int32Envelope"];
|
|
1169
|
+
};
|
|
1170
|
+
};
|
|
1171
|
+
/** @description Unauthorized */
|
|
1172
|
+
401: {
|
|
1173
|
+
content: {
|
|
1174
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1175
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1176
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1177
|
+
};
|
|
1178
|
+
};
|
|
1179
|
+
};
|
|
1180
|
+
};
|
|
1181
|
+
/**
|
|
1182
|
+
* Get the tenants that the current user is enrolled in
|
|
1183
|
+
* @description Get the tenants that the current user is enrolled in
|
|
1184
|
+
*/
|
|
1185
|
+
GetCurrentUserTenantsAsync: {
|
|
1186
|
+
parameters: {
|
|
1187
|
+
query?: {
|
|
1188
|
+
"api-version"?: string;
|
|
1189
|
+
};
|
|
1190
|
+
header?: {
|
|
1191
|
+
"x-api-version"?: string;
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
responses: {
|
|
1195
|
+
/** @description OK */
|
|
1196
|
+
200: {
|
|
1197
|
+
content: {
|
|
1198
|
+
"application/json": components["schemas"]["TenantDtoListEnvelope"];
|
|
1199
|
+
"application/xml": components["schemas"]["TenantDtoListEnvelope"];
|
|
1200
|
+
"multipart/form-data": components["schemas"]["TenantDtoListEnvelope"];
|
|
1201
|
+
};
|
|
1202
|
+
};
|
|
1203
|
+
/** @description Unauthorized */
|
|
1204
|
+
401: {
|
|
1205
|
+
content: {
|
|
1206
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1207
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1208
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1209
|
+
};
|
|
1210
|
+
};
|
|
1211
|
+
/** @description Forbidden */
|
|
1212
|
+
403: {
|
|
1213
|
+
content: {
|
|
1214
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1215
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1216
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1217
|
+
};
|
|
1218
|
+
};
|
|
1219
|
+
};
|
|
1220
|
+
};
|
|
1221
|
+
/**
|
|
1222
|
+
* Count the tenants that the current user is enrolled in
|
|
1223
|
+
* @description Count the tenants that the current user is enrolled in
|
|
1224
|
+
*/
|
|
1225
|
+
CountCurrentUserTenantsAsync: {
|
|
1226
|
+
parameters: {
|
|
1227
|
+
query?: {
|
|
1228
|
+
"api-version"?: string;
|
|
1229
|
+
};
|
|
1230
|
+
header?: {
|
|
1231
|
+
"x-api-version"?: string;
|
|
1232
|
+
};
|
|
1233
|
+
};
|
|
1234
|
+
responses: {
|
|
1235
|
+
/** @description OK */
|
|
1236
|
+
200: {
|
|
1237
|
+
content: {
|
|
1238
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1239
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1240
|
+
"multipart/form-data": components["schemas"]["Int32Envelope"];
|
|
1241
|
+
};
|
|
1242
|
+
};
|
|
1243
|
+
/** @description Unauthorized */
|
|
1244
|
+
401: {
|
|
1245
|
+
content: {
|
|
1246
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1247
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1248
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1249
|
+
};
|
|
1250
|
+
};
|
|
1251
|
+
/** @description Forbidden */
|
|
1252
|
+
403: {
|
|
1253
|
+
content: {
|
|
1254
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1255
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1256
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1257
|
+
};
|
|
1258
|
+
};
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
/**
|
|
1262
|
+
* Get the tenants that the current user is enrolled in
|
|
1263
|
+
* @description Get the tenants that the current user is enrolled in
|
|
1264
|
+
*/
|
|
1265
|
+
GetCurrentUserTenantsExtendedAsync: {
|
|
1266
|
+
parameters: {
|
|
1267
|
+
query?: {
|
|
1268
|
+
"api-version"?: string;
|
|
1269
|
+
};
|
|
1270
|
+
header?: {
|
|
1271
|
+
"x-api-version"?: string;
|
|
1272
|
+
};
|
|
1273
|
+
};
|
|
1274
|
+
responses: {
|
|
1275
|
+
/** @description OK */
|
|
1276
|
+
200: {
|
|
1277
|
+
content: {
|
|
1278
|
+
"application/json": components["schemas"]["ExtendedTenantDtoListEnvelope"];
|
|
1279
|
+
"application/xml": components["schemas"]["ExtendedTenantDtoListEnvelope"];
|
|
1280
|
+
"multipart/form-data": components["schemas"]["ExtendedTenantDtoListEnvelope"];
|
|
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
|
+
/** @description Forbidden */
|
|
1292
|
+
403: {
|
|
1293
|
+
content: {
|
|
1294
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1295
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1296
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1297
|
+
};
|
|
1298
|
+
};
|
|
1299
|
+
};
|
|
1300
|
+
};
|
|
1301
|
+
/**
|
|
1302
|
+
* Get the list of enrollments for the current user
|
|
1303
|
+
* @description Get the list of enrollments for the current user
|
|
1304
|
+
*/
|
|
1305
|
+
GetCurrentUserEnrollmentsAsync: {
|
|
1306
|
+
parameters: {
|
|
1307
|
+
query?: {
|
|
1308
|
+
"api-version"?: string;
|
|
1309
|
+
};
|
|
1310
|
+
header?: {
|
|
1311
|
+
"x-api-version"?: string;
|
|
1312
|
+
};
|
|
1313
|
+
};
|
|
1314
|
+
responses: {
|
|
1315
|
+
/** @description OK */
|
|
1316
|
+
200: {
|
|
1317
|
+
content: {
|
|
1318
|
+
"application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
1319
|
+
"application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
1320
|
+
"multipart/form-data": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
1321
|
+
};
|
|
1322
|
+
};
|
|
1323
|
+
/** @description Unauthorized */
|
|
1324
|
+
401: {
|
|
1325
|
+
content: {
|
|
1326
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1327
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1328
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1329
|
+
};
|
|
1330
|
+
};
|
|
1331
|
+
};
|
|
1332
|
+
};
|
|
1333
|
+
/**
|
|
1334
|
+
* Get the list of enrollments for the current user
|
|
1335
|
+
* @description Get the list of enrollments for the current user
|
|
1336
|
+
*/
|
|
1337
|
+
GetCurrentUserEnrollmentsExtendedAsync: {
|
|
1338
|
+
parameters: {
|
|
1339
|
+
query?: {
|
|
1340
|
+
"api-version"?: string;
|
|
1341
|
+
};
|
|
1342
|
+
header?: {
|
|
1343
|
+
"x-api-version"?: string;
|
|
1344
|
+
};
|
|
1345
|
+
};
|
|
1346
|
+
responses: {
|
|
1347
|
+
/** @description OK */
|
|
1348
|
+
200: {
|
|
1349
|
+
content: {
|
|
1350
|
+
"application/json": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
|
|
1351
|
+
"application/xml": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
|
|
1352
|
+
"multipart/form-data": components["schemas"]["ExtendedTenantEnrolmentDtoListEnvelope"];
|
|
1353
|
+
};
|
|
1354
|
+
};
|
|
1355
|
+
/** @description Unauthorized */
|
|
1356
|
+
401: {
|
|
1357
|
+
content: {
|
|
1358
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1359
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1360
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1361
|
+
};
|
|
1362
|
+
};
|
|
1363
|
+
};
|
|
1364
|
+
};
|
|
1365
|
+
/**
|
|
1366
|
+
* Get a single TenantEnrollment by its ID
|
|
1367
|
+
* @description Get a single TenantEnrollment by its ID
|
|
1368
|
+
*/
|
|
1369
|
+
GetTenantEnrollmentAsync: {
|
|
1370
|
+
parameters: {
|
|
1371
|
+
query?: {
|
|
1372
|
+
"api-version"?: string;
|
|
1373
|
+
};
|
|
1374
|
+
header?: {
|
|
1375
|
+
"x-api-version"?: string;
|
|
1376
|
+
};
|
|
1377
|
+
path: {
|
|
1378
|
+
enrollmentId: string;
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
requestBody?: {
|
|
1382
|
+
content: {
|
|
1383
|
+
"application/json": components["schemas"]["EnrollmentId"];
|
|
1384
|
+
"application/xml": components["schemas"]["EnrollmentId"];
|
|
1385
|
+
"multipart/form-data": components["schemas"]["EnrollmentId"];
|
|
1386
|
+
};
|
|
1387
|
+
};
|
|
1388
|
+
responses: {
|
|
1389
|
+
/** @description OK */
|
|
1390
|
+
200: {
|
|
1391
|
+
content: {
|
|
1392
|
+
"application/json": components["schemas"]["TenantEnrolmentDtoEnvelope"];
|
|
1393
|
+
"application/xml": components["schemas"]["TenantEnrolmentDtoEnvelope"];
|
|
1394
|
+
"multipart/form-data": components["schemas"]["TenantEnrolmentDtoEnvelope"];
|
|
1395
|
+
};
|
|
1396
|
+
};
|
|
1397
|
+
/** @description Unauthorized */
|
|
1398
|
+
401: {
|
|
1399
|
+
content: {
|
|
1400
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1401
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1402
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1403
|
+
};
|
|
1404
|
+
};
|
|
1405
|
+
};
|
|
1406
|
+
};
|
|
1407
|
+
/**
|
|
1408
|
+
* Get the current user's social profile
|
|
1409
|
+
* @description Get the current user's social profile
|
|
1410
|
+
*/
|
|
1411
|
+
GetCurrentUserSocialProfileAsync: {
|
|
1412
|
+
parameters: {
|
|
1413
|
+
query?: {
|
|
1414
|
+
"api-version"?: string;
|
|
1415
|
+
};
|
|
1416
|
+
header?: {
|
|
1417
|
+
"x-api-version"?: string;
|
|
1418
|
+
};
|
|
1419
|
+
};
|
|
1420
|
+
responses: {
|
|
1421
|
+
/** @description OK */
|
|
1422
|
+
200: {
|
|
1423
|
+
content: {
|
|
1424
|
+
"application/json": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
1425
|
+
"application/xml": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
1426
|
+
"multipart/form-data": components["schemas"]["SocialProfileDtoEnvelope"];
|
|
1427
|
+
};
|
|
1428
|
+
};
|
|
1429
|
+
/** @description Unauthorized */
|
|
1430
|
+
401: {
|
|
1431
|
+
content: {
|
|
1432
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1433
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1434
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1435
|
+
};
|
|
1436
|
+
};
|
|
1437
|
+
};
|
|
1438
|
+
};
|
|
1439
|
+
/**
|
|
1440
|
+
* Get the current user's cart
|
|
1441
|
+
* @description Get the current user's cart
|
|
1442
|
+
*/
|
|
1443
|
+
GetCurrentUserCartAsync: {
|
|
1444
|
+
parameters: {
|
|
1445
|
+
query?: {
|
|
1446
|
+
"api-version"?: string;
|
|
1447
|
+
};
|
|
1448
|
+
header?: {
|
|
1449
|
+
"x-api-version"?: string;
|
|
1450
|
+
};
|
|
1451
|
+
};
|
|
1452
|
+
responses: {
|
|
1453
|
+
/** @description OK */
|
|
1454
|
+
200: {
|
|
1455
|
+
content: {
|
|
1456
|
+
"application/json": components["schemas"]["CartDtoEnvelope"];
|
|
1457
|
+
"application/xml": components["schemas"]["CartDtoEnvelope"];
|
|
1458
|
+
"multipart/form-data": components["schemas"]["CartDtoEnvelope"];
|
|
1459
|
+
};
|
|
1460
|
+
};
|
|
1461
|
+
/** @description Unauthorized */
|
|
1462
|
+
401: {
|
|
1463
|
+
content: {
|
|
1464
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1465
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1466
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
};
|
|
1470
|
+
};
|
|
1471
|
+
/**
|
|
1472
|
+
* Get the current user's billing profile
|
|
1473
|
+
* @description Get the current user's billing profile
|
|
1474
|
+
*/
|
|
1475
|
+
GetCurrentUserWalletAsync: {
|
|
1476
|
+
parameters: {
|
|
1477
|
+
query?: {
|
|
1478
|
+
"api-version"?: string;
|
|
1479
|
+
};
|
|
1480
|
+
header?: {
|
|
1481
|
+
"x-api-version"?: string;
|
|
1482
|
+
};
|
|
1483
|
+
};
|
|
1484
|
+
responses: {
|
|
1485
|
+
/** @description OK */
|
|
1486
|
+
200: {
|
|
1487
|
+
content: {
|
|
1488
|
+
"application/json": components["schemas"]["WalletDtoEnvelope"];
|
|
1489
|
+
"application/xml": components["schemas"]["WalletDtoEnvelope"];
|
|
1490
|
+
"multipart/form-data": components["schemas"]["WalletDtoEnvelope"];
|
|
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
|
+
/**
|
|
1504
|
+
* Get the list of notifications for the current user
|
|
1505
|
+
* @description Get the list of notifications for the current user
|
|
1506
|
+
*/
|
|
1507
|
+
GetCurrentUserNotificationsAsync: {
|
|
1508
|
+
parameters: {
|
|
1509
|
+
query?: {
|
|
1510
|
+
"api-version"?: string;
|
|
1511
|
+
};
|
|
1512
|
+
header?: {
|
|
1513
|
+
"x-api-version"?: string;
|
|
1514
|
+
};
|
|
1515
|
+
};
|
|
1516
|
+
responses: {
|
|
1517
|
+
/** @description OK */
|
|
1518
|
+
200: {
|
|
1519
|
+
content: {
|
|
1520
|
+
"application/json": components["schemas"]["NotificationDtoListEnvelope"];
|
|
1521
|
+
"application/xml": components["schemas"]["NotificationDtoListEnvelope"];
|
|
1522
|
+
"multipart/form-data": components["schemas"]["NotificationDtoListEnvelope"];
|
|
1523
|
+
};
|
|
1524
|
+
};
|
|
1525
|
+
/** @description Unauthorized */
|
|
1526
|
+
401: {
|
|
1527
|
+
content: {
|
|
1528
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1529
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1530
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
};
|
|
1534
|
+
};
|
|
1535
|
+
/**
|
|
1536
|
+
* Count the notifications for the current user
|
|
1537
|
+
* @description Count the notifications for the current user
|
|
1538
|
+
*/
|
|
1539
|
+
CountCurrentUserNotificationsAsync: {
|
|
1540
|
+
parameters: {
|
|
1541
|
+
query?: {
|
|
1542
|
+
"api-version"?: string;
|
|
1543
|
+
};
|
|
1544
|
+
header?: {
|
|
1545
|
+
"x-api-version"?: string;
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
responses: {
|
|
1549
|
+
/** @description OK */
|
|
1550
|
+
200: {
|
|
1551
|
+
content: {
|
|
1552
|
+
"application/json": components["schemas"]["Int32Envelope"];
|
|
1553
|
+
"application/xml": components["schemas"]["Int32Envelope"];
|
|
1554
|
+
"multipart/form-data": components["schemas"]["Int32Envelope"];
|
|
1555
|
+
};
|
|
1556
|
+
};
|
|
1557
|
+
/** @description Unauthorized */
|
|
1558
|
+
401: {
|
|
1559
|
+
content: {
|
|
1560
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1561
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1562
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1563
|
+
};
|
|
1564
|
+
};
|
|
1565
|
+
};
|
|
1566
|
+
};
|
|
1567
|
+
/**
|
|
1568
|
+
* Get the settings for the current user
|
|
1569
|
+
* @description Get the settings for the current user
|
|
1570
|
+
*/
|
|
1571
|
+
GetCurrentUserSettingsAsync: {
|
|
1572
|
+
parameters: {
|
|
1573
|
+
query?: {
|
|
1574
|
+
"api-version"?: string;
|
|
1575
|
+
};
|
|
1576
|
+
header?: {
|
|
1577
|
+
"x-api-version"?: string;
|
|
1578
|
+
};
|
|
1579
|
+
};
|
|
1580
|
+
responses: {
|
|
1581
|
+
/** @description OK */
|
|
1582
|
+
200: {
|
|
1583
|
+
content: {
|
|
1584
|
+
"application/json": components["schemas"]["UserSettingsDtoEnvelope"];
|
|
1585
|
+
"application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
|
|
1586
|
+
"multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1589
|
+
/** @description Unauthorized */
|
|
1590
|
+
401: {
|
|
1591
|
+
content: {
|
|
1592
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1593
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1594
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1595
|
+
};
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
/**
|
|
1600
|
+
* Update the settings for the current user
|
|
1601
|
+
* @description Update the settings for the current user
|
|
1602
|
+
*/
|
|
1603
|
+
UpdateCurrentUserSettingsAsync: {
|
|
1604
|
+
parameters: {
|
|
1605
|
+
query?: {
|
|
1606
|
+
"api-version"?: string;
|
|
1607
|
+
};
|
|
1608
|
+
header?: {
|
|
1609
|
+
"x-api-version"?: string;
|
|
1610
|
+
};
|
|
1611
|
+
};
|
|
1612
|
+
requestBody?: {
|
|
1613
|
+
content: {
|
|
1614
|
+
"application/json": components["schemas"]["UserSettingsUpdateDto"];
|
|
1615
|
+
"application/xml": components["schemas"]["UserSettingsUpdateDto"];
|
|
1616
|
+
"multipart/form-data": components["schemas"]["UserSettingsUpdateDto"];
|
|
1617
|
+
};
|
|
1618
|
+
};
|
|
1619
|
+
responses: {
|
|
1620
|
+
/** @description OK */
|
|
1621
|
+
200: {
|
|
1622
|
+
content: {
|
|
1623
|
+
"application/json": components["schemas"]["UserSettingsDtoEnvelope"];
|
|
1624
|
+
"application/xml": components["schemas"]["UserSettingsDtoEnvelope"];
|
|
1625
|
+
"multipart/form-data": components["schemas"]["UserSettingsDtoEnvelope"];
|
|
1626
|
+
};
|
|
1627
|
+
};
|
|
1628
|
+
/** @description Unauthorized */
|
|
1629
|
+
401: {
|
|
1630
|
+
content: {
|
|
1631
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1632
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1633
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
};
|
|
1637
|
+
};
|
|
1638
|
+
/**
|
|
1639
|
+
* Get the list of addresses for the current user
|
|
1640
|
+
* @description Get the list of addresses for the current user
|
|
1641
|
+
*/
|
|
1642
|
+
GetCurrentUserAddressesAsync: {
|
|
1643
|
+
parameters: {
|
|
1644
|
+
query?: {
|
|
1645
|
+
"api-version"?: string;
|
|
1646
|
+
};
|
|
1647
|
+
header?: {
|
|
1648
|
+
"x-api-version"?: string;
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
responses: {
|
|
1652
|
+
/** @description OK */
|
|
1653
|
+
200: {
|
|
1654
|
+
content: {
|
|
1655
|
+
"application/json": components["schemas"]["AddressDtoListEnvelope"];
|
|
1656
|
+
"application/xml": components["schemas"]["AddressDtoListEnvelope"];
|
|
1657
|
+
"multipart/form-data": components["schemas"]["AddressDtoListEnvelope"];
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
/** @description Unauthorized */
|
|
1661
|
+
401: {
|
|
1662
|
+
content: {
|
|
1663
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1664
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1665
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1666
|
+
};
|
|
1667
|
+
};
|
|
1668
|
+
};
|
|
1669
|
+
};
|
|
1670
|
+
/**
|
|
1671
|
+
* Get the list of tenant enrollment invitations for the current user
|
|
1672
|
+
* @description Get the list of tenant enrollment invitations for the current user
|
|
1673
|
+
*/
|
|
1674
|
+
GetCurrentUserInvitationAsync: {
|
|
1675
|
+
parameters: {
|
|
1676
|
+
query?: {
|
|
1677
|
+
"api-version"?: string;
|
|
1678
|
+
};
|
|
1679
|
+
header?: {
|
|
1680
|
+
"x-api-version"?: string;
|
|
1681
|
+
};
|
|
1682
|
+
};
|
|
1683
|
+
responses: {
|
|
1684
|
+
/** @description OK */
|
|
1685
|
+
200: {
|
|
1686
|
+
content: {
|
|
1687
|
+
"application/json": components["schemas"]["TenantInvitationDtoListEnvelope"];
|
|
1688
|
+
"application/xml": components["schemas"]["TenantInvitationDtoListEnvelope"];
|
|
1689
|
+
"multipart/form-data": components["schemas"]["TenantInvitationDtoListEnvelope"];
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
/** @description Unauthorized */
|
|
1693
|
+
401: {
|
|
1694
|
+
content: {
|
|
1695
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
1696
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
1697
|
+
"multipart/form-data": components["schemas"]["ErrorEnvelope"];
|
|
1698
|
+
};
|
|
1699
|
+
};
|
|
1700
|
+
};
|
|
1701
|
+
};
|
|
1702
|
+
}
|