@fenixalliance/abs-api-client 1.0.9 → 1.0.11
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 +3 -3
- package/app/index.ts +2 -2
- package/clients/cartService/index.js +7 -3
- package/clients/cartService/index.ts +3 -1
- package/clients/cartService/services/CartLinesService.js +173 -0
- package/clients/cartService/services/CartLinesService.ts +203 -0
- package/clients/cartService/services/{CartsService.js → CartService.js} +137 -44
- package/clients/cartService/services/{CartsService.ts → CartService.ts} +135 -42
- package/clients/cartService/services/ECommerceService.js +1104 -0
- package/clients/cartService/services/ECommerceService.ts +1289 -0
- package/clients/cartService/services/WishListsService.js +321 -0
- package/clients/cartService/services/WishListsService.ts +373 -0
- package/clients/contentService/services/PortalsService.js +22 -11
- package/clients/contentService/services/PortalsService.ts +22 -11
- 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 +3 -2
- package/clients/holderService/services/{HolderService.js → IdentityService.js} +58 -176
- package/clients/holderService/services/{HolderService.ts → IdentityService.ts} +58 -200
- 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/services/AvatarsService.js +19 -8
- package/clients/storageService/services/AvatarsService.ts +19 -8
- 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/{holderService/models/EmptyEnvelopeEnvelope.ts → tenantService/models/TenantIndustryDtoListEnvelope.ts} +3 -3
- package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamContactEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.ts → TenantTeamDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamEmployeeEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts → TenantTeamProjectEnrollmentDtoListEnvelope.ts} +1 -1
- package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts → TenantTeamRecordDtoListEnvelope.ts} +1 -1
- 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/cartService/schema.s.ts +2239 -1868
- package/schemas/contentService/schema.s.ts +850 -817
- package/schemas/crmService/schema.s.ts +1776 -1516
- package/schemas/holderService/schema.s.ts +256 -115
- package/schemas/storageService/schema.s.ts +439 -394
- 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.js +0 -163
- 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/tenantService/services/UnitsService.ts +0 -190
- /package/clients/{holderService/models/EmptyEnvelopeEnvelope.js → tenantService/models/TenantIndustryDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.js → TenantTeamContactEnrollmentDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamDtoIReadOnlyCollectionEnvelope.js → TenantTeamDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.js → TenantTeamEmployeeEnrollmentDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.js → TenantTeamProjectEnrollmentDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTeamRecordDtoIReadOnlyCollectionEnvelope.js → TenantTeamRecordDtoListEnvelope.js} +0 -0
- /package/clients/tenantService/models/{TenantTypeDtoIReadOnlyCollectionEnvelope.js → TenantTypeDtoListEnvelope.js} +0 -0
|
@@ -20,12 +20,14 @@ import { OpenAPI } from '../core/OpenAPI';
|
|
|
20
20
|
import { request as __request } from '../core/request';
|
|
21
21
|
export class ContactsService {
|
|
22
22
|
/**
|
|
23
|
+
* Get all business owned contacts
|
|
24
|
+
* Get all business owned contacts
|
|
23
25
|
* @param tenantId
|
|
24
26
|
* @param xApiVersion
|
|
25
27
|
* @returns ContactDtoListEnvelope OK
|
|
26
28
|
* @throws ApiError
|
|
27
29
|
*/
|
|
28
|
-
public static
|
|
30
|
+
public static getContactsAsync(
|
|
29
31
|
tenantId: string,
|
|
30
32
|
xApiVersion?: string,
|
|
31
33
|
): CancelablePromise<ContactDtoListEnvelope> {
|
|
@@ -45,13 +47,15 @@ export class ContactsService {
|
|
|
45
47
|
});
|
|
46
48
|
}
|
|
47
49
|
/**
|
|
50
|
+
* Create a new contact
|
|
51
|
+
* Create a new contact
|
|
48
52
|
* @param tenantId
|
|
49
53
|
* @param xApiVersion
|
|
50
54
|
* @param requestBody
|
|
51
55
|
* @returns EmptyEnvelope OK
|
|
52
56
|
* @throws ApiError
|
|
53
57
|
*/
|
|
54
|
-
public static
|
|
58
|
+
public static createContactAsync(
|
|
55
59
|
tenantId: string,
|
|
56
60
|
xApiVersion?: string,
|
|
57
61
|
requestBody?: ContactCreateDto,
|
|
@@ -74,12 +78,14 @@ export class ContactsService {
|
|
|
74
78
|
});
|
|
75
79
|
}
|
|
76
80
|
/**
|
|
81
|
+
* Get all business owned contacts count
|
|
82
|
+
* Get all business owned contacts count
|
|
77
83
|
* @param tenantId
|
|
78
84
|
* @param xApiVersion
|
|
79
85
|
* @returns ContactDtoListEnvelope OK
|
|
80
86
|
* @throws ApiError
|
|
81
87
|
*/
|
|
82
|
-
public static
|
|
88
|
+
public static getContactsCountAsync(
|
|
83
89
|
tenantId: string,
|
|
84
90
|
xApiVersion?: string,
|
|
85
91
|
): CancelablePromise<ContactDtoListEnvelope> {
|
|
@@ -99,12 +105,14 @@ export class ContactsService {
|
|
|
99
105
|
});
|
|
100
106
|
}
|
|
101
107
|
/**
|
|
108
|
+
* Get all business owned contacts
|
|
109
|
+
* Get all business owned contacts
|
|
102
110
|
* @param tenantId
|
|
103
111
|
* @param xApiVersion
|
|
104
112
|
* @returns ExtendedContactDtoListEnvelope OK
|
|
105
113
|
* @throws ApiError
|
|
106
114
|
*/
|
|
107
|
-
public static
|
|
115
|
+
public static getExtendedContactsAsync(
|
|
108
116
|
tenantId: string,
|
|
109
117
|
xApiVersion?: string,
|
|
110
118
|
): CancelablePromise<ExtendedContactDtoListEnvelope> {
|
|
@@ -124,13 +132,15 @@ export class ContactsService {
|
|
|
124
132
|
});
|
|
125
133
|
}
|
|
126
134
|
/**
|
|
135
|
+
* Get a contact by ID
|
|
136
|
+
* Get a contact by ID
|
|
127
137
|
* @param tenantId
|
|
128
138
|
* @param contactId
|
|
129
139
|
* @param xApiVersion
|
|
130
140
|
* @returns ContactDtoEnvelope OK
|
|
131
141
|
* @throws ApiError
|
|
132
142
|
*/
|
|
133
|
-
public static
|
|
143
|
+
public static getContactAsync(
|
|
134
144
|
tenantId: string,
|
|
135
145
|
contactId: string,
|
|
136
146
|
xApiVersion?: string,
|
|
@@ -154,6 +164,8 @@ export class ContactsService {
|
|
|
154
164
|
});
|
|
155
165
|
}
|
|
156
166
|
/**
|
|
167
|
+
* Update a contact
|
|
168
|
+
* Update a contact
|
|
157
169
|
* @param tenantId
|
|
158
170
|
* @param contactId
|
|
159
171
|
* @param xApiVersion
|
|
@@ -161,7 +173,7 @@ export class ContactsService {
|
|
|
161
173
|
* @returns EmptyEnvelope OK
|
|
162
174
|
* @throws ApiError
|
|
163
175
|
*/
|
|
164
|
-
public static
|
|
176
|
+
public static updateContactAsync(
|
|
165
177
|
tenantId: string,
|
|
166
178
|
contactId: string,
|
|
167
179
|
xApiVersion?: string,
|
|
@@ -188,13 +200,15 @@ export class ContactsService {
|
|
|
188
200
|
});
|
|
189
201
|
}
|
|
190
202
|
/**
|
|
203
|
+
* Delete a contact
|
|
204
|
+
* Delete a contact
|
|
191
205
|
* @param tenantId
|
|
192
206
|
* @param contactId
|
|
193
207
|
* @param xApiVersion
|
|
194
208
|
* @returns EmptyEnvelope OK
|
|
195
209
|
* @throws ApiError
|
|
196
210
|
*/
|
|
197
|
-
public static
|
|
211
|
+
public static deleteContactAsync(
|
|
198
212
|
tenantId: string,
|
|
199
213
|
contactId: string,
|
|
200
214
|
xApiVersion?: string,
|
|
@@ -218,6 +232,8 @@ export class ContactsService {
|
|
|
218
232
|
});
|
|
219
233
|
}
|
|
220
234
|
/**
|
|
235
|
+
* Patch a contact
|
|
236
|
+
* Patch a contact
|
|
221
237
|
* @param tenantId
|
|
222
238
|
* @param contactId
|
|
223
239
|
* @param xApiVersion
|
|
@@ -225,7 +241,7 @@ export class ContactsService {
|
|
|
225
241
|
* @returns EmptyEnvelope OK
|
|
226
242
|
* @throws ApiError
|
|
227
243
|
*/
|
|
228
|
-
public static
|
|
244
|
+
public static patchContactAsync(
|
|
229
245
|
tenantId: string,
|
|
230
246
|
contactId: string,
|
|
231
247
|
xApiVersion?: string,
|
|
@@ -252,13 +268,15 @@ export class ContactsService {
|
|
|
252
268
|
});
|
|
253
269
|
}
|
|
254
270
|
/**
|
|
271
|
+
* Get a contact by ID
|
|
272
|
+
* Get a contact by ID
|
|
255
273
|
* @param tenantId
|
|
256
274
|
* @param contactId
|
|
257
275
|
* @param xApiVersion
|
|
258
276
|
* @returns ExtendedContactDtoEnvelope OK
|
|
259
277
|
* @throws ApiError
|
|
260
278
|
*/
|
|
261
|
-
public static
|
|
279
|
+
public static getExtendedContactAsync(
|
|
262
280
|
tenantId: string,
|
|
263
281
|
contactId: string,
|
|
264
282
|
xApiVersion?: string,
|
|
@@ -282,12 +300,14 @@ export class ContactsService {
|
|
|
282
300
|
});
|
|
283
301
|
}
|
|
284
302
|
/**
|
|
303
|
+
* Get all contacts of type individual
|
|
304
|
+
* Get all contacts of type individual
|
|
285
305
|
* @param tenantId
|
|
286
306
|
* @param xApiVersion
|
|
287
307
|
* @returns ContactDtoListEnvelope OK
|
|
288
308
|
* @throws ApiError
|
|
289
309
|
*/
|
|
290
|
-
public static
|
|
310
|
+
public static getBusinessOwnedIndividualsAsync(
|
|
291
311
|
tenantId: string,
|
|
292
312
|
xApiVersion?: string,
|
|
293
313
|
): CancelablePromise<ContactDtoListEnvelope> {
|
|
@@ -307,12 +327,14 @@ export class ContactsService {
|
|
|
307
327
|
});
|
|
308
328
|
}
|
|
309
329
|
/**
|
|
330
|
+
* Get all contacts of type individual count
|
|
331
|
+
* Get all contacts of type individual count
|
|
310
332
|
* @param tenantId
|
|
311
333
|
* @param xApiVersion
|
|
312
334
|
* @returns ContactDtoListEnvelope OK
|
|
313
335
|
* @throws ApiError
|
|
314
336
|
*/
|
|
315
|
-
public static
|
|
337
|
+
public static getBusinessOwnedIndividualsCountAsync(
|
|
316
338
|
tenantId: string,
|
|
317
339
|
xApiVersion?: string,
|
|
318
340
|
): CancelablePromise<ContactDtoListEnvelope> {
|
|
@@ -332,12 +354,14 @@ export class ContactsService {
|
|
|
332
354
|
});
|
|
333
355
|
}
|
|
334
356
|
/**
|
|
357
|
+
* Get all contacts of type individual
|
|
358
|
+
* Get all contacts of type individual
|
|
335
359
|
* @param tenantId
|
|
336
360
|
* @param xApiVersion
|
|
337
361
|
* @returns ExtendedContactDtoListEnvelope OK
|
|
338
362
|
* @throws ApiError
|
|
339
363
|
*/
|
|
340
|
-
public static
|
|
364
|
+
public static getExtendedBusinessOwnedIndividualsAsync(
|
|
341
365
|
tenantId: string,
|
|
342
366
|
xApiVersion?: string,
|
|
343
367
|
): CancelablePromise<ExtendedContactDtoListEnvelope> {
|
|
@@ -357,13 +381,15 @@ export class ContactsService {
|
|
|
357
381
|
});
|
|
358
382
|
}
|
|
359
383
|
/**
|
|
384
|
+
* Get a Contact of type Individual by ID
|
|
385
|
+
* Get a Contact of type Individual by ID
|
|
360
386
|
* @param tenantId
|
|
361
387
|
* @param contactId
|
|
362
388
|
* @param xApiVersion
|
|
363
389
|
* @returns ContactDtoEnvelope OK
|
|
364
390
|
* @throws ApiError
|
|
365
391
|
*/
|
|
366
|
-
public static
|
|
392
|
+
public static getBusinessOwnedIndividualAsync(
|
|
367
393
|
tenantId: string,
|
|
368
394
|
contactId: string,
|
|
369
395
|
xApiVersion?: string,
|
|
@@ -388,12 +414,14 @@ export class ContactsService {
|
|
|
388
414
|
});
|
|
389
415
|
}
|
|
390
416
|
/**
|
|
417
|
+
* Get all contacts of type organization
|
|
418
|
+
* Get all contacts of type organization
|
|
391
419
|
* @param tenantId
|
|
392
420
|
* @param xApiVersion
|
|
393
421
|
* @returns ContactDto OK
|
|
394
422
|
* @throws ApiError
|
|
395
423
|
*/
|
|
396
|
-
public static
|
|
424
|
+
public static getBusinessOwnedOrganizationsAsync(
|
|
397
425
|
tenantId: string,
|
|
398
426
|
xApiVersion?: string,
|
|
399
427
|
): CancelablePromise<Array<ContactDto>> {
|
|
@@ -413,12 +441,14 @@ export class ContactsService {
|
|
|
413
441
|
});
|
|
414
442
|
}
|
|
415
443
|
/**
|
|
444
|
+
* Get all contacts of type organization count
|
|
445
|
+
* Get all contacts of type organization count
|
|
416
446
|
* @param tenantId
|
|
417
447
|
* @param xApiVersion
|
|
418
448
|
* @returns ContactDtoListEnvelope OK
|
|
419
449
|
* @throws ApiError
|
|
420
450
|
*/
|
|
421
|
-
public static
|
|
451
|
+
public static getBusinessOwnedOrganizationsCountAsync(
|
|
422
452
|
tenantId: string,
|
|
423
453
|
xApiVersion?: string,
|
|
424
454
|
): CancelablePromise<ContactDtoListEnvelope> {
|
|
@@ -438,12 +468,14 @@ export class ContactsService {
|
|
|
438
468
|
});
|
|
439
469
|
}
|
|
440
470
|
/**
|
|
471
|
+
* Get all contacts of type organization
|
|
472
|
+
* Get all contacts of type organization
|
|
441
473
|
* @param tenantId
|
|
442
474
|
* @param xApiVersion
|
|
443
475
|
* @returns ExtendedContactDtoListEnvelope OK
|
|
444
476
|
* @throws ApiError
|
|
445
477
|
*/
|
|
446
|
-
public static
|
|
478
|
+
public static getExtendedBusinessOwnedOrganizationsAsync(
|
|
447
479
|
tenantId: string,
|
|
448
480
|
xApiVersion?: string,
|
|
449
481
|
): CancelablePromise<ExtendedContactDtoListEnvelope> {
|
|
@@ -463,13 +495,15 @@ export class ContactsService {
|
|
|
463
495
|
});
|
|
464
496
|
}
|
|
465
497
|
/**
|
|
498
|
+
* Get a Contact of type Organization by ID
|
|
499
|
+
* Get a Contact of type Organization by ID
|
|
466
500
|
* @param tenantId
|
|
467
501
|
* @param contactId
|
|
468
502
|
* @param xApiVersion
|
|
469
503
|
* @returns ContactDtoEnvelope OK
|
|
470
504
|
* @throws ApiError
|
|
471
505
|
*/
|
|
472
|
-
public static
|
|
506
|
+
public static getBusinessOwnedOrganizationAsync(
|
|
473
507
|
tenantId: string,
|
|
474
508
|
contactId: string,
|
|
475
509
|
xApiVersion?: string,
|
|
@@ -494,13 +528,15 @@ export class ContactsService {
|
|
|
494
528
|
});
|
|
495
529
|
}
|
|
496
530
|
/**
|
|
531
|
+
* Get a contact's cart
|
|
532
|
+
* Get a contact's cart
|
|
497
533
|
* @param tenantId
|
|
498
534
|
* @param contactId
|
|
499
535
|
* @param xApiVersion
|
|
500
536
|
* @returns CartDtoEnvelope OK
|
|
501
537
|
* @throws ApiError
|
|
502
538
|
*/
|
|
503
|
-
public static
|
|
539
|
+
public static getContactCartAsync(
|
|
504
540
|
tenantId: string,
|
|
505
541
|
contactId: string,
|
|
506
542
|
xApiVersion?: string,
|
|
@@ -525,6 +561,8 @@ export class ContactsService {
|
|
|
525
561
|
});
|
|
526
562
|
}
|
|
527
563
|
/**
|
|
564
|
+
* Get a contact's avatar
|
|
565
|
+
* Get a contact's avatar
|
|
528
566
|
* @param tenantId
|
|
529
567
|
* @param contactId
|
|
530
568
|
* @param xApiVersion
|
|
@@ -555,6 +593,8 @@ export class ContactsService {
|
|
|
555
593
|
});
|
|
556
594
|
}
|
|
557
595
|
/**
|
|
596
|
+
* Update a contact's avatar
|
|
597
|
+
* Update a contact's avatar
|
|
558
598
|
* @param contactId
|
|
559
599
|
* @param tenantId
|
|
560
600
|
* @param xApiVersion
|
|
@@ -562,7 +602,7 @@ export class ContactsService {
|
|
|
562
602
|
* @returns EmptyEnvelope OK
|
|
563
603
|
* @throws ApiError
|
|
564
604
|
*/
|
|
565
|
-
public static
|
|
605
|
+
public static updateContactAvatarAsync(
|
|
566
606
|
contactId: string,
|
|
567
607
|
tenantId?: string,
|
|
568
608
|
xApiVersion?: string,
|
|
@@ -591,13 +631,15 @@ export class ContactsService {
|
|
|
591
631
|
});
|
|
592
632
|
}
|
|
593
633
|
/**
|
|
634
|
+
* Get a contact's wallet
|
|
635
|
+
* Get a contact's wallet
|
|
594
636
|
* @param tenantId
|
|
595
637
|
* @param contactId
|
|
596
638
|
* @param xApiVersion
|
|
597
639
|
* @returns WalletDtoEnvelope OK
|
|
598
640
|
* @throws ApiError
|
|
599
641
|
*/
|
|
600
|
-
public static
|
|
642
|
+
public static getContactWalletAsync(
|
|
601
643
|
tenantId: string,
|
|
602
644
|
contactId: string,
|
|
603
645
|
xApiVersion?: string,
|
|
@@ -622,13 +664,15 @@ export class ContactsService {
|
|
|
622
664
|
});
|
|
623
665
|
}
|
|
624
666
|
/**
|
|
667
|
+
* Get a contact's social profiles
|
|
668
|
+
* Get a contact's social profiles
|
|
625
669
|
* @param tenantId
|
|
626
670
|
* @param contactId
|
|
627
671
|
* @param xApiVersion
|
|
628
672
|
* @returns ContactProfileDtoListEnvelope OK
|
|
629
673
|
* @throws ApiError
|
|
630
674
|
*/
|
|
631
|
-
public static
|
|
675
|
+
public static getContactProfilesAsync(
|
|
632
676
|
tenantId: string,
|
|
633
677
|
contactId: string,
|
|
634
678
|
xApiVersion?: string,
|
|
@@ -653,13 +697,15 @@ export class ContactsService {
|
|
|
653
697
|
});
|
|
654
698
|
}
|
|
655
699
|
/**
|
|
700
|
+
* Get a contact's social profile
|
|
701
|
+
* Get a contact's social profile
|
|
656
702
|
* @param tenantId
|
|
657
703
|
* @param contactId
|
|
658
704
|
* @param xApiVersion
|
|
659
705
|
* @returns SocialProfileDtoEnvelope OK
|
|
660
706
|
* @throws ApiError
|
|
661
707
|
*/
|
|
662
|
-
public static
|
|
708
|
+
public static getContactSocialProfileAsync(
|
|
663
709
|
tenantId: string,
|
|
664
710
|
contactId: string,
|
|
665
711
|
xApiVersion?: string,
|
|
@@ -684,13 +730,15 @@ export class ContactsService {
|
|
|
684
730
|
});
|
|
685
731
|
}
|
|
686
732
|
/**
|
|
733
|
+
* Get individual related organizations
|
|
734
|
+
* Get individual related organizations
|
|
687
735
|
* @param tenantId
|
|
688
736
|
* @param contactId
|
|
689
737
|
* @param xApiVersion
|
|
690
738
|
* @returns ContactDtoListEnvelope OK
|
|
691
739
|
* @throws ApiError
|
|
692
740
|
*/
|
|
693
|
-
public static
|
|
741
|
+
public static getIndividualRelatedOrganizationsAsync(
|
|
694
742
|
tenantId: string,
|
|
695
743
|
contactId: string,
|
|
696
744
|
xApiVersion?: string,
|
|
@@ -714,13 +762,15 @@ export class ContactsService {
|
|
|
714
762
|
});
|
|
715
763
|
}
|
|
716
764
|
/**
|
|
765
|
+
* Get individual related individuals
|
|
766
|
+
* Get individual related individuals
|
|
717
767
|
* @param tenantId
|
|
718
768
|
* @param contactId
|
|
719
769
|
* @param xApiVersion
|
|
720
770
|
* @returns ContactDtoListEnvelope OK
|
|
721
771
|
* @throws ApiError
|
|
722
772
|
*/
|
|
723
|
-
public static
|
|
773
|
+
public static getIndividualRelatedIndividualsAsync(
|
|
724
774
|
tenantId: string,
|
|
725
775
|
contactId: string,
|
|
726
776
|
xApiVersion?: string,
|
|
@@ -744,13 +794,15 @@ export class ContactsService {
|
|
|
744
794
|
});
|
|
745
795
|
}
|
|
746
796
|
/**
|
|
797
|
+
* Get organization related individuals
|
|
798
|
+
* Get organization related individuals
|
|
747
799
|
* @param tenantId
|
|
748
800
|
* @param contactId
|
|
749
801
|
* @param xApiVersion
|
|
750
802
|
* @returns ContactDtoListEnvelope OK
|
|
751
803
|
* @throws ApiError
|
|
752
804
|
*/
|
|
753
|
-
public static
|
|
805
|
+
public static getOrganizationRelatedIndividualsAsync(
|
|
754
806
|
tenantId: string,
|
|
755
807
|
contactId: string,
|
|
756
808
|
xApiVersion?: string,
|
|
@@ -774,13 +826,15 @@ export class ContactsService {
|
|
|
774
826
|
});
|
|
775
827
|
}
|
|
776
828
|
/**
|
|
829
|
+
* Get organization related organizations
|
|
830
|
+
* Get organization related organizations
|
|
777
831
|
* @param tenantId
|
|
778
832
|
* @param contactId
|
|
779
833
|
* @param xApiVersion
|
|
780
834
|
* @returns ContactDtoListEnvelope OK
|
|
781
835
|
* @throws ApiError
|
|
782
836
|
*/
|
|
783
|
-
public static
|
|
837
|
+
public static getOrganizationRelatedOrganizationsAsync(
|
|
784
838
|
tenantId: string,
|
|
785
839
|
contactId: string,
|
|
786
840
|
xApiVersion?: string,
|
|
@@ -804,13 +858,15 @@ export class ContactsService {
|
|
|
804
858
|
});
|
|
805
859
|
}
|
|
806
860
|
/**
|
|
861
|
+
* Upsert a tenant onto another tenant's contact list
|
|
862
|
+
* Upsert a tenant onto another tenant's contact list
|
|
807
863
|
* @param tenantId
|
|
808
864
|
* @param relatedTenantId
|
|
809
865
|
* @param xApiVersion
|
|
810
866
|
* @returns ContactDtoEnvelope OK
|
|
811
867
|
* @throws ApiError
|
|
812
868
|
*/
|
|
813
|
-
public static
|
|
869
|
+
public static upsertTenantOntoAnotherTenantContactListAsync(
|
|
814
870
|
tenantId: string,
|
|
815
871
|
relatedTenantId: string,
|
|
816
872
|
xApiVersion?: string,
|
|
@@ -832,13 +888,15 @@ export class ContactsService {
|
|
|
832
888
|
});
|
|
833
889
|
}
|
|
834
890
|
/**
|
|
891
|
+
* Upsert a user onto a tenant's contact list
|
|
892
|
+
* Upsert a user onto a tenant's contact list
|
|
835
893
|
* @param tenantId
|
|
836
894
|
* @param relatedUserId
|
|
837
895
|
* @param xApiVersion
|
|
838
896
|
* @returns ContactDtoEnvelope OK
|
|
839
897
|
* @throws ApiError
|
|
840
898
|
*/
|
|
841
|
-
public static
|
|
899
|
+
public static upsertUserOntoAnotherTenantContactListAsync(
|
|
842
900
|
tenantId: string,
|
|
843
901
|
relatedUserId: string,
|
|
844
902
|
xApiVersion?: string,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UserService = exports.TenantsService = exports.IdentityService = exports.UserUpdateDto = exports.UserSettingsUpdateDto = exports.UserSettingsDto = exports.UserDto = exports.SocialProfileDto = exports.Operation = exports.ExtendedUserDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
|
|
4
4
|
/* generated using openapi-typescript-codegen -- do no edit */
|
|
5
5
|
/* istanbul ignore file */
|
|
6
6
|
/* tslint:disable */
|
|
@@ -26,5 +26,9 @@ var UserSettingsUpdateDto_1 = require("./models/UserSettingsUpdateDto");
|
|
|
26
26
|
Object.defineProperty(exports, "UserSettingsUpdateDto", { enumerable: true, get: function () { return UserSettingsUpdateDto_1.UserSettingsUpdateDto; } });
|
|
27
27
|
var UserUpdateDto_1 = require("./models/UserUpdateDto");
|
|
28
28
|
Object.defineProperty(exports, "UserUpdateDto", { enumerable: true, get: function () { return UserUpdateDto_1.UserUpdateDto; } });
|
|
29
|
-
var
|
|
30
|
-
Object.defineProperty(exports, "
|
|
29
|
+
var IdentityService_1 = require("./services/IdentityService");
|
|
30
|
+
Object.defineProperty(exports, "IdentityService", { enumerable: true, get: function () { return IdentityService_1.IdentityService; } });
|
|
31
|
+
var TenantsService_1 = require("./services/TenantsService");
|
|
32
|
+
Object.defineProperty(exports, "TenantsService", { enumerable: true, get: function () { return TenantsService_1.TenantsService; } });
|
|
33
|
+
var UserService_1 = require("./services/UserService");
|
|
34
|
+
Object.defineProperty(exports, "UserService", { enumerable: true, get: function () { return UserService_1.UserService; } });
|
|
@@ -12,7 +12,6 @@ export type { AddressDtoListEnvelope } from './models/AddressDtoListEnvelope';
|
|
|
12
12
|
export type { CartDto } from './models/CartDto';
|
|
13
13
|
export type { CartDtoEnvelope } from './models/CartDtoEnvelope';
|
|
14
14
|
export type { EmptyEnvelope } from './models/EmptyEnvelope';
|
|
15
|
-
export type { EmptyEnvelopeEnvelope } from './models/EmptyEnvelopeEnvelope';
|
|
16
15
|
export type { EnrollmentId } from './models/EnrollmentId';
|
|
17
16
|
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
18
17
|
export type { ExtendedTenantDto } from './models/ExtendedTenantDto';
|
|
@@ -45,4 +44,6 @@ export { UserUpdateDto } from './models/UserUpdateDto';
|
|
|
45
44
|
export type { WalletDto } from './models/WalletDto';
|
|
46
45
|
export type { WalletDtoEnvelope } from './models/WalletDtoEnvelope';
|
|
47
46
|
|
|
48
|
-
export {
|
|
47
|
+
export { IdentityService } from './services/IdentityService';
|
|
48
|
+
export { TenantsService } from './services/TenantsService';
|
|
49
|
+
export { UserService } from './services/UserService';
|