@fenixalliance/abs-api-client 1.0.11 → 1.0.13
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 +1 -1
- package/clients/cartService/index.js +3 -7
- package/clients/cartService/index.ts +1 -3
- package/clients/cartService/services/{CartService.js → CartsService.js} +3 -3
- package/clients/cartService/services/{CartService.ts → CartsService.ts} +1 -1
- package/clients/cartService/services/WishListsService.js +0 -321
- package/clients/cartService/services/WishListsService.ts +0 -373
- package/clients/holderService/index.js +1 -5
- package/clients/holderService/index.ts +0 -2
- package/clients/holderService/services/UserService.js +143 -0
- package/clients/holderService/services/UserService.ts +166 -0
- package/clients/tenantService/services/TenantsService.js +33 -57
- package/clients/tenantService/services/TenantsService.ts +33 -65
- package/package.json +1 -1
- package/schemas/tenantService/schema.s.ts +144 -70
- package/clients/cartService/services/CartLinesService.js +0 -173
- package/clients/cartService/services/CartLinesService.ts +0 -203
- package/clients/cartService/services/ECommerceService.js +0 -1104
- package/clients/cartService/services/ECommerceService.ts +0 -1289
- package/clients/holderService/services/IdentityService.js +0 -364
- package/clients/holderService/services/IdentityService.ts +0 -421
- package/clients/holderService/services/TenantsService.js +0 -151
- package/clients/holderService/services/TenantsService.ts +0 -176
|
@@ -426,31 +426,31 @@ export interface paths {
|
|
|
426
426
|
* Get the user's current default tenant
|
|
427
427
|
* @description Get the user's current default tenant
|
|
428
428
|
*/
|
|
429
|
-
get: operations["
|
|
429
|
+
get: operations["GetCurrentTenantAsync"];
|
|
430
430
|
};
|
|
431
431
|
"/api/v2/Tenants/{tenantId}": {
|
|
432
432
|
/**
|
|
433
433
|
* Get a specific tenant by ID
|
|
434
434
|
* @description Get a specific tenant by ID
|
|
435
435
|
*/
|
|
436
|
-
get: operations["
|
|
436
|
+
get: operations["GetTenantAsync"];
|
|
437
437
|
/**
|
|
438
438
|
* Update a tenant's profile
|
|
439
439
|
* @description Update a tenant's profile
|
|
440
440
|
*/
|
|
441
|
-
put: operations["
|
|
441
|
+
put: operations["UpdateTenantAsync"];
|
|
442
442
|
/**
|
|
443
443
|
* Patch a tenant's profile
|
|
444
444
|
* @description Patch a tenant's profile
|
|
445
445
|
*/
|
|
446
|
-
patch: operations["
|
|
446
|
+
patch: operations["PatchTenantAsync"];
|
|
447
447
|
};
|
|
448
448
|
"/api/v2/Tenants/{tenantId}/Extended": {
|
|
449
449
|
/**
|
|
450
450
|
* Get an extended tenant's business profile
|
|
451
451
|
* @description Get an extended tenant's business profile
|
|
452
452
|
*/
|
|
453
|
-
get: operations["
|
|
453
|
+
get: operations["GetExtendedTenantAsync"];
|
|
454
454
|
};
|
|
455
455
|
"/api/v2/Tenants/{tenantId}/Avatar": {
|
|
456
456
|
/**
|
|
@@ -469,129 +469,129 @@ export interface paths {
|
|
|
469
469
|
* Get a tenant's billing profile (A.K.A. Wallet Account)
|
|
470
470
|
* @description Get a tenant's billing profile (A.K.A. Wallet Account)
|
|
471
471
|
*/
|
|
472
|
-
get: operations["
|
|
472
|
+
get: operations["GetTenantWalletAsync"];
|
|
473
473
|
};
|
|
474
474
|
"/api/v2/Tenants/{tenantId}/SocialProfile": {
|
|
475
475
|
/**
|
|
476
476
|
* Get a tenant's social profile
|
|
477
477
|
* @description Get a tenant's social profile
|
|
478
478
|
*/
|
|
479
|
-
get: operations["
|
|
479
|
+
get: operations["GetTenantSocialProfileAsync"];
|
|
480
480
|
};
|
|
481
481
|
"/api/v2/Tenants/{tenantId}/Cart": {
|
|
482
482
|
/**
|
|
483
483
|
* Get a tenant's default cart
|
|
484
484
|
* @description Get a tenant's default cart
|
|
485
485
|
*/
|
|
486
|
-
get: operations["
|
|
486
|
+
get: operations["GetTenantCartAsync"];
|
|
487
487
|
};
|
|
488
488
|
"/api/v2/Tenants/{tenantId}/Users": {
|
|
489
489
|
/**
|
|
490
490
|
* Get the list of users enrolled in a tenant
|
|
491
491
|
* @description Get the list of users enrolled in a tenant
|
|
492
492
|
*/
|
|
493
|
-
get: operations["
|
|
493
|
+
get: operations["GetTenantUsersAsync"];
|
|
494
494
|
};
|
|
495
495
|
"/api/v2/Tenants/{tenantId}/Enrollments": {
|
|
496
496
|
/**
|
|
497
497
|
* Get the list of user enrollments for a tenant
|
|
498
498
|
* @description Get the list of user enrollments for a tenant
|
|
499
499
|
*/
|
|
500
|
-
get: operations["
|
|
500
|
+
get: operations["GetTenantEnrollmentsAsync"];
|
|
501
501
|
};
|
|
502
502
|
"/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}": {
|
|
503
503
|
/**
|
|
504
504
|
* Get a specific tenant enrollment
|
|
505
505
|
* @description Get a specific tenant enrollment
|
|
506
506
|
*/
|
|
507
|
-
get: operations["
|
|
507
|
+
get: operations["GetTenantEnrollmentAsync"];
|
|
508
508
|
};
|
|
509
509
|
"/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}/Extended": {
|
|
510
510
|
/**
|
|
511
511
|
* Get a specific tenant enrollment
|
|
512
512
|
* @description Get a specific tenant enrollment
|
|
513
513
|
*/
|
|
514
|
-
get: operations["
|
|
514
|
+
get: operations["GetExtendedTenantEnrollmentAsync"];
|
|
515
515
|
};
|
|
516
516
|
"/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}/Permissions": {
|
|
517
517
|
/**
|
|
518
518
|
* Get a specific tenant enrollment's permissions list
|
|
519
519
|
* @description Get a specific tenant enrollment's permissions list
|
|
520
520
|
*/
|
|
521
|
-
get: operations["
|
|
521
|
+
get: operations["GetEnrollmentPermissionsAsync"];
|
|
522
522
|
};
|
|
523
523
|
"/api/v2/Tenants/{tenantId}/Enrollments/{EnrollmentID}/Permissions/Validate": {
|
|
524
524
|
/**
|
|
525
525
|
* Validate the existence of a list of roles and permissions for a specific enrollment
|
|
526
526
|
* @description Validate the existence of a list of roles and permissions for a specific enrollment
|
|
527
527
|
*/
|
|
528
|
-
get: operations["
|
|
528
|
+
get: operations["GetEnrollmentPermissionsAsync"];
|
|
529
529
|
};
|
|
530
530
|
"/api/v2/Tenants/{tenantId}/Invitations": {
|
|
531
531
|
/**
|
|
532
532
|
* Get the list of invitations issued by a tenant
|
|
533
533
|
* @description Get the list of invitations issued by a tenant
|
|
534
534
|
*/
|
|
535
|
-
get: operations["
|
|
535
|
+
get: operations["GetTenantInvitationsAsync"];
|
|
536
536
|
};
|
|
537
537
|
"/api/v2/Tenants/{tenantId}/Invitations/Pending": {
|
|
538
538
|
/**
|
|
539
539
|
* Get the list of invitations issued by a tenant that are pending
|
|
540
540
|
* @description Get the list of invitations issued by a tenant that are pending
|
|
541
541
|
*/
|
|
542
|
-
get: operations["
|
|
542
|
+
get: operations["GetTenantPendingInvitationsAsync"];
|
|
543
543
|
};
|
|
544
544
|
"/api/v2/Tenants/{tenantId}/Invitations/Redeemed": {
|
|
545
545
|
/**
|
|
546
546
|
* Get the list of invitations issued by a tenant that have been redeemed
|
|
547
547
|
* @description Get the list of invitations issued by a tenant that have been redeemed
|
|
548
548
|
*/
|
|
549
|
-
get: operations["
|
|
549
|
+
get: operations["GetTenantRedeemedInvitationsAsync"];
|
|
550
550
|
};
|
|
551
551
|
"/api/v2/Tenants/{tenantId}/Invitations/Revoked": {
|
|
552
552
|
/**
|
|
553
553
|
* Get the list of invitations issued by a tenant that have been revoked
|
|
554
554
|
* @description Get the list of invitations issued by a tenant that have been revoked
|
|
555
555
|
*/
|
|
556
|
-
get: operations["
|
|
556
|
+
get: operations["GetTenantRevokedInvitationsAsync"];
|
|
557
557
|
};
|
|
558
558
|
"/api/v2/Tenants/{tenantId}/Licenses": {
|
|
559
559
|
/**
|
|
560
560
|
* Get the list of licenses available to a tenant
|
|
561
561
|
* @description Get the list of licenses available to a tenant
|
|
562
562
|
*/
|
|
563
|
-
get: operations["
|
|
563
|
+
get: operations["GetTenantLicensesAsync"];
|
|
564
564
|
};
|
|
565
565
|
"/api/v2/Tenants/{tenantId}/Enrollments/{EnrollmentId}/Licenses": {
|
|
566
566
|
/**
|
|
567
567
|
* Get the list of licenses available to a specific enrollment
|
|
568
568
|
* @description Get the list of licenses available to a specific enrollment
|
|
569
569
|
*/
|
|
570
|
-
get: operations["
|
|
570
|
+
get: operations["GetEnrollmentLicensesAsync"];
|
|
571
571
|
};
|
|
572
572
|
"/api/v2/Tenants/{tenantId}/Enrollments/{EnrollmentId}/Licenses/{licenseId}": {
|
|
573
573
|
/**
|
|
574
574
|
* Get the list of licenses available to a specific enrollment
|
|
575
575
|
* @description Get the list of licenses available to a specific enrollment
|
|
576
576
|
*/
|
|
577
|
-
get: operations["
|
|
577
|
+
get: operations["GetEnrollmentLicensesAsync"];
|
|
578
578
|
/**
|
|
579
579
|
* Assign a license to a specific enrollment
|
|
580
580
|
* @description Assign a license to a specific enrollment
|
|
581
581
|
*/
|
|
582
|
-
post: operations["
|
|
582
|
+
post: operations["AssignLicenseAsync"];
|
|
583
583
|
/**
|
|
584
584
|
* Revoke a license from a specific enrollment
|
|
585
585
|
* @description Revoke a license from a specific enrollment
|
|
586
586
|
*/
|
|
587
|
-
delete: operations["
|
|
587
|
+
delete: operations["RevokeLicenseAsync"];
|
|
588
588
|
};
|
|
589
589
|
"/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}/Features": {
|
|
590
590
|
/**
|
|
591
591
|
* Get the list of features accessible to a specific enrollment
|
|
592
592
|
* @description Get the list of features accessible to a specific enrollment
|
|
593
593
|
*/
|
|
594
|
-
get: operations["
|
|
594
|
+
get: operations["GetAccessibleFeaturesAsync"];
|
|
595
595
|
};
|
|
596
596
|
"/api/v2/Tenants/{tenantId}/Enrollments/{enrollmentId}/HasAccess": {
|
|
597
597
|
/**
|
|
@@ -605,57 +605,57 @@ export interface paths {
|
|
|
605
605
|
* Create a new business tenant
|
|
606
606
|
* @description Create a new business tenant
|
|
607
607
|
*/
|
|
608
|
-
post: operations["
|
|
608
|
+
post: operations["CreateTenantAsync"];
|
|
609
609
|
/**
|
|
610
610
|
* Delete a tenant
|
|
611
611
|
* @description Delete a business tenant
|
|
612
612
|
*/
|
|
613
|
-
delete: operations["
|
|
613
|
+
delete: operations["DeleteTenantAsync"];
|
|
614
614
|
};
|
|
615
615
|
"/api/v2/Tenants/{tenantId}/Select": {
|
|
616
616
|
/**
|
|
617
617
|
* Select a business tenant as the user's default tenant
|
|
618
618
|
* @description Select a business tenant as the user's default tenant
|
|
619
619
|
*/
|
|
620
|
-
get: operations["
|
|
620
|
+
get: operations["SelectTenantAsync"];
|
|
621
621
|
/**
|
|
622
622
|
* Select a business tenant as the user's default tenant
|
|
623
623
|
* @description Select a business tenant as the user's default tenant
|
|
624
624
|
*/
|
|
625
|
-
post: operations["
|
|
625
|
+
post: operations["SelectTenantAsync"];
|
|
626
626
|
};
|
|
627
627
|
"/api/v2/Tenants/Deselect": {
|
|
628
628
|
/**
|
|
629
629
|
* Deselect the user's default tenant
|
|
630
630
|
* @description Deselect the user's default tenant
|
|
631
631
|
*/
|
|
632
|
-
get: operations["
|
|
632
|
+
get: operations["DeSelectTenantAsync"];
|
|
633
633
|
/**
|
|
634
634
|
* Deselect the user's default tenant
|
|
635
635
|
* @description Deselect the user's default tenant
|
|
636
636
|
*/
|
|
637
|
-
post: operations["
|
|
637
|
+
post: operations["DeSelectTenantAsync"];
|
|
638
638
|
};
|
|
639
639
|
"/api/v2/Tenants/{tenantId}/WebPortals": {
|
|
640
640
|
/**
|
|
641
641
|
* Get the list of web portals for a tenant
|
|
642
642
|
* @description Get the list of web portals for a tenant
|
|
643
643
|
*/
|
|
644
|
-
get: operations["
|
|
644
|
+
get: operations["GetTenantWebPortalsAsync"];
|
|
645
645
|
};
|
|
646
646
|
"/api/v2/Tenants/{tenantId}/Notifications": {
|
|
647
647
|
/**
|
|
648
648
|
* Get the list of notifications for a tenant
|
|
649
649
|
* @description Get the list of notifications for a tenant
|
|
650
650
|
*/
|
|
651
|
-
get: operations["
|
|
651
|
+
get: operations["GetTenantNotificationsAsync"];
|
|
652
652
|
};
|
|
653
653
|
"/api/v2/Tenants/{tenantId}/Notifications/Count": {
|
|
654
654
|
/**
|
|
655
655
|
* Get the count of notifications for a tenant
|
|
656
656
|
* @description Get the count of notifications for a tenant
|
|
657
657
|
*/
|
|
658
|
-
get: operations["
|
|
658
|
+
get: operations["GetTenantNotificationsCountAsync"];
|
|
659
659
|
};
|
|
660
660
|
"/api/v2/Territories": {
|
|
661
661
|
/**
|
|
@@ -2478,20 +2478,18 @@ export interface operations {
|
|
|
2478
2478
|
};
|
|
2479
2479
|
};
|
|
2480
2480
|
/**
|
|
2481
|
-
*
|
|
2482
|
-
* @description
|
|
2481
|
+
* Retrieve a list of tenant enrollments
|
|
2482
|
+
* @description Retrieve a list of tenant enrollments
|
|
2483
2483
|
*/
|
|
2484
2484
|
GetTenantEnrollments: {
|
|
2485
2485
|
parameters: {
|
|
2486
|
-
query
|
|
2486
|
+
query: {
|
|
2487
|
+
tenantId: string;
|
|
2487
2488
|
"api-version"?: string;
|
|
2488
2489
|
};
|
|
2489
2490
|
header?: {
|
|
2490
2491
|
"x-api-version"?: string;
|
|
2491
2492
|
};
|
|
2492
|
-
path: {
|
|
2493
|
-
tenantId: string;
|
|
2494
|
-
};
|
|
2495
2493
|
};
|
|
2496
2494
|
responses: {
|
|
2497
2495
|
/** @description OK */
|
|
@@ -5041,7 +5039,7 @@ export interface operations {
|
|
|
5041
5039
|
* Get the user's current default tenant
|
|
5042
5040
|
* @description Get the user's current default tenant
|
|
5043
5041
|
*/
|
|
5044
|
-
|
|
5042
|
+
GetCurrentTenantAsync: {
|
|
5045
5043
|
parameters: {
|
|
5046
5044
|
query: {
|
|
5047
5045
|
tenantId: string;
|
|
@@ -5079,7 +5077,7 @@ export interface operations {
|
|
|
5079
5077
|
* Get a specific tenant by ID
|
|
5080
5078
|
* @description Get a specific tenant by ID
|
|
5081
5079
|
*/
|
|
5082
|
-
|
|
5080
|
+
GetTenantAsync: {
|
|
5083
5081
|
parameters: {
|
|
5084
5082
|
query?: {
|
|
5085
5083
|
"api-version"?: string;
|
|
@@ -5119,7 +5117,7 @@ export interface operations {
|
|
|
5119
5117
|
* Update a tenant's profile
|
|
5120
5118
|
* @description Update a tenant's profile
|
|
5121
5119
|
*/
|
|
5122
|
-
|
|
5120
|
+
UpdateTenantAsync: {
|
|
5123
5121
|
parameters: {
|
|
5124
5122
|
query?: {
|
|
5125
5123
|
"api-version"?: string;
|
|
@@ -5165,7 +5163,7 @@ export interface operations {
|
|
|
5165
5163
|
* Patch a tenant's profile
|
|
5166
5164
|
* @description Patch a tenant's profile
|
|
5167
5165
|
*/
|
|
5168
|
-
|
|
5166
|
+
PatchTenantAsync: {
|
|
5169
5167
|
parameters: {
|
|
5170
5168
|
query?: {
|
|
5171
5169
|
"api-version"?: string;
|
|
@@ -5211,7 +5209,7 @@ export interface operations {
|
|
|
5211
5209
|
* Get an extended tenant's business profile
|
|
5212
5210
|
* @description Get an extended tenant's business profile
|
|
5213
5211
|
*/
|
|
5214
|
-
|
|
5212
|
+
GetExtendedTenantAsync: {
|
|
5215
5213
|
parameters: {
|
|
5216
5214
|
query?: {
|
|
5217
5215
|
"api-version"?: string;
|
|
@@ -5350,7 +5348,7 @@ export interface operations {
|
|
|
5350
5348
|
* Get a tenant's billing profile (A.K.A. Wallet Account)
|
|
5351
5349
|
* @description Get a tenant's billing profile (A.K.A. Wallet Account)
|
|
5352
5350
|
*/
|
|
5353
|
-
|
|
5351
|
+
GetTenantWalletAsync: {
|
|
5354
5352
|
parameters: {
|
|
5355
5353
|
query?: {
|
|
5356
5354
|
"api-version"?: string;
|
|
@@ -5390,7 +5388,7 @@ export interface operations {
|
|
|
5390
5388
|
* Get a tenant's social profile
|
|
5391
5389
|
* @description Get a tenant's social profile
|
|
5392
5390
|
*/
|
|
5393
|
-
|
|
5391
|
+
GetTenantSocialProfileAsync: {
|
|
5394
5392
|
parameters: {
|
|
5395
5393
|
query?: {
|
|
5396
5394
|
"api-version"?: string;
|
|
@@ -5430,7 +5428,7 @@ export interface operations {
|
|
|
5430
5428
|
* Get a tenant's default cart
|
|
5431
5429
|
* @description Get a tenant's default cart
|
|
5432
5430
|
*/
|
|
5433
|
-
|
|
5431
|
+
GetTenantCartAsync: {
|
|
5434
5432
|
parameters: {
|
|
5435
5433
|
query?: {
|
|
5436
5434
|
"api-version"?: string;
|
|
@@ -5466,11 +5464,91 @@ export interface operations {
|
|
|
5466
5464
|
};
|
|
5467
5465
|
};
|
|
5468
5466
|
};
|
|
5467
|
+
/**
|
|
5468
|
+
* Get the list of users enrolled in a tenant
|
|
5469
|
+
* @description Get the list of users enrolled in a tenant
|
|
5470
|
+
*/
|
|
5471
|
+
GetTenantUsersAsync: {
|
|
5472
|
+
parameters: {
|
|
5473
|
+
query?: {
|
|
5474
|
+
"api-version"?: string;
|
|
5475
|
+
};
|
|
5476
|
+
header?: {
|
|
5477
|
+
"x-api-version"?: string;
|
|
5478
|
+
};
|
|
5479
|
+
path: {
|
|
5480
|
+
tenantId: string;
|
|
5481
|
+
};
|
|
5482
|
+
};
|
|
5483
|
+
responses: {
|
|
5484
|
+
/** @description OK */
|
|
5485
|
+
200: {
|
|
5486
|
+
content: {
|
|
5487
|
+
"application/json": components["schemas"]["UserDtoListEnvelope"];
|
|
5488
|
+
"application/xml": components["schemas"]["UserDtoListEnvelope"];
|
|
5489
|
+
};
|
|
5490
|
+
};
|
|
5491
|
+
/** @description Unauthorized */
|
|
5492
|
+
401: {
|
|
5493
|
+
content: {
|
|
5494
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
5495
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
5496
|
+
};
|
|
5497
|
+
};
|
|
5498
|
+
/** @description Forbidden */
|
|
5499
|
+
403: {
|
|
5500
|
+
content: {
|
|
5501
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
5502
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
5503
|
+
};
|
|
5504
|
+
};
|
|
5505
|
+
};
|
|
5506
|
+
};
|
|
5507
|
+
/**
|
|
5508
|
+
* Get the list of user enrollments for a tenant
|
|
5509
|
+
* @description Get the list of user enrollments for a tenant
|
|
5510
|
+
*/
|
|
5511
|
+
GetTenantEnrollmentsAsync: {
|
|
5512
|
+
parameters: {
|
|
5513
|
+
query?: {
|
|
5514
|
+
"api-version"?: string;
|
|
5515
|
+
};
|
|
5516
|
+
header?: {
|
|
5517
|
+
"x-api-version"?: string;
|
|
5518
|
+
};
|
|
5519
|
+
path: {
|
|
5520
|
+
tenantId: string;
|
|
5521
|
+
};
|
|
5522
|
+
};
|
|
5523
|
+
responses: {
|
|
5524
|
+
/** @description OK */
|
|
5525
|
+
200: {
|
|
5526
|
+
content: {
|
|
5527
|
+
"application/json": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
5528
|
+
"application/xml": components["schemas"]["TenantEnrolmentDtoListEnvelope"];
|
|
5529
|
+
};
|
|
5530
|
+
};
|
|
5531
|
+
/** @description Unauthorized */
|
|
5532
|
+
401: {
|
|
5533
|
+
content: {
|
|
5534
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
5535
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
5536
|
+
};
|
|
5537
|
+
};
|
|
5538
|
+
/** @description Forbidden */
|
|
5539
|
+
403: {
|
|
5540
|
+
content: {
|
|
5541
|
+
"application/json": components["schemas"]["ErrorEnvelope"];
|
|
5542
|
+
"application/xml": components["schemas"]["ErrorEnvelope"];
|
|
5543
|
+
};
|
|
5544
|
+
};
|
|
5545
|
+
};
|
|
5546
|
+
};
|
|
5469
5547
|
/**
|
|
5470
5548
|
* Get a specific tenant enrollment
|
|
5471
5549
|
* @description Get a specific tenant enrollment
|
|
5472
5550
|
*/
|
|
5473
|
-
|
|
5551
|
+
GetTenantEnrollmentAsync: {
|
|
5474
5552
|
parameters: {
|
|
5475
5553
|
query?: {
|
|
5476
5554
|
"api-version"?: string;
|
|
@@ -5511,7 +5589,7 @@ export interface operations {
|
|
|
5511
5589
|
* Get a specific tenant enrollment
|
|
5512
5590
|
* @description Get a specific tenant enrollment
|
|
5513
5591
|
*/
|
|
5514
|
-
|
|
5592
|
+
GetExtendedTenantEnrollmentAsync: {
|
|
5515
5593
|
parameters: {
|
|
5516
5594
|
query?: {
|
|
5517
5595
|
"api-version"?: string;
|
|
@@ -5552,7 +5630,7 @@ export interface operations {
|
|
|
5552
5630
|
* Validate the existence of a list of roles and permissions for a specific enrollment
|
|
5553
5631
|
* @description Validate the existence of a list of roles and permissions for a specific enrollment
|
|
5554
5632
|
*/
|
|
5555
|
-
|
|
5633
|
+
GetEnrollmentPermissionsAsync: {
|
|
5556
5634
|
parameters: {
|
|
5557
5635
|
query?: {
|
|
5558
5636
|
roles?: string[];
|
|
@@ -5595,7 +5673,7 @@ export interface operations {
|
|
|
5595
5673
|
* Get the list of invitations issued by a tenant
|
|
5596
5674
|
* @description Get the list of invitations issued by a tenant
|
|
5597
5675
|
*/
|
|
5598
|
-
|
|
5676
|
+
GetTenantInvitationsAsync: {
|
|
5599
5677
|
parameters: {
|
|
5600
5678
|
query?: {
|
|
5601
5679
|
"api-version"?: string;
|
|
@@ -5635,7 +5713,7 @@ export interface operations {
|
|
|
5635
5713
|
* Get the list of invitations issued by a tenant that are pending
|
|
5636
5714
|
* @description Get the list of invitations issued by a tenant that are pending
|
|
5637
5715
|
*/
|
|
5638
|
-
|
|
5716
|
+
GetTenantPendingInvitationsAsync: {
|
|
5639
5717
|
parameters: {
|
|
5640
5718
|
query?: {
|
|
5641
5719
|
"api-version"?: string;
|
|
@@ -5675,7 +5753,7 @@ export interface operations {
|
|
|
5675
5753
|
* Get the list of invitations issued by a tenant that have been redeemed
|
|
5676
5754
|
* @description Get the list of invitations issued by a tenant that have been redeemed
|
|
5677
5755
|
*/
|
|
5678
|
-
|
|
5756
|
+
GetTenantRedeemedInvitationsAsync: {
|
|
5679
5757
|
parameters: {
|
|
5680
5758
|
query?: {
|
|
5681
5759
|
"api-version"?: string;
|
|
@@ -5715,7 +5793,7 @@ export interface operations {
|
|
|
5715
5793
|
* Get the list of invitations issued by a tenant that have been revoked
|
|
5716
5794
|
* @description Get the list of invitations issued by a tenant that have been revoked
|
|
5717
5795
|
*/
|
|
5718
|
-
|
|
5796
|
+
GetTenantRevokedInvitationsAsync: {
|
|
5719
5797
|
parameters: {
|
|
5720
5798
|
query?: {
|
|
5721
5799
|
"api-version"?: string;
|
|
@@ -5755,7 +5833,7 @@ export interface operations {
|
|
|
5755
5833
|
* Get the list of licenses available to a tenant
|
|
5756
5834
|
* @description Get the list of licenses available to a tenant
|
|
5757
5835
|
*/
|
|
5758
|
-
|
|
5836
|
+
GetTenantLicensesAsync: {
|
|
5759
5837
|
parameters: {
|
|
5760
5838
|
query?: {
|
|
5761
5839
|
"api-version"?: string;
|
|
@@ -5795,7 +5873,7 @@ export interface operations {
|
|
|
5795
5873
|
* Get the list of licenses available to a specific enrollment
|
|
5796
5874
|
* @description Get the list of licenses available to a specific enrollment
|
|
5797
5875
|
*/
|
|
5798
|
-
|
|
5876
|
+
GetEnrollmentLicensesAsync: {
|
|
5799
5877
|
parameters: {
|
|
5800
5878
|
query?: {
|
|
5801
5879
|
"api-version"?: string;
|
|
@@ -5837,7 +5915,7 @@ export interface operations {
|
|
|
5837
5915
|
* Assign a license to a specific enrollment
|
|
5838
5916
|
* @description Assign a license to a specific enrollment
|
|
5839
5917
|
*/
|
|
5840
|
-
|
|
5918
|
+
AssignLicenseAsync: {
|
|
5841
5919
|
parameters: {
|
|
5842
5920
|
query?: {
|
|
5843
5921
|
"api-version"?: string;
|
|
@@ -5879,7 +5957,7 @@ export interface operations {
|
|
|
5879
5957
|
* Revoke a license from a specific enrollment
|
|
5880
5958
|
* @description Revoke a license from a specific enrollment
|
|
5881
5959
|
*/
|
|
5882
|
-
|
|
5960
|
+
RevokeLicenseAsync: {
|
|
5883
5961
|
parameters: {
|
|
5884
5962
|
query?: {
|
|
5885
5963
|
"api-version"?: string;
|
|
@@ -5921,7 +5999,7 @@ export interface operations {
|
|
|
5921
5999
|
* Get the list of features accessible to a specific enrollment
|
|
5922
6000
|
* @description Get the list of features accessible to a specific enrollment
|
|
5923
6001
|
*/
|
|
5924
|
-
|
|
6002
|
+
GetAccessibleFeaturesAsync: {
|
|
5925
6003
|
parameters: {
|
|
5926
6004
|
query?: {
|
|
5927
6005
|
"api-version"?: string;
|
|
@@ -5990,7 +6068,7 @@ export interface operations {
|
|
|
5990
6068
|
* Create a new business tenant
|
|
5991
6069
|
* @description Create a new business tenant
|
|
5992
6070
|
*/
|
|
5993
|
-
|
|
6071
|
+
CreateTenantAsync: {
|
|
5994
6072
|
parameters: {
|
|
5995
6073
|
query?: {
|
|
5996
6074
|
"api-version"?: string;
|
|
@@ -6033,7 +6111,7 @@ export interface operations {
|
|
|
6033
6111
|
* Delete a tenant
|
|
6034
6112
|
* @description Delete a business tenant
|
|
6035
6113
|
*/
|
|
6036
|
-
|
|
6114
|
+
DeleteTenantAsync: {
|
|
6037
6115
|
parameters: {
|
|
6038
6116
|
query: {
|
|
6039
6117
|
tenantId: string;
|
|
@@ -6071,11 +6149,9 @@ export interface operations {
|
|
|
6071
6149
|
* Select a business tenant as the user's default tenant
|
|
6072
6150
|
* @description Select a business tenant as the user's default tenant
|
|
6073
6151
|
*/
|
|
6074
|
-
|
|
6152
|
+
SelectTenantAsync: {
|
|
6075
6153
|
parameters: {
|
|
6076
6154
|
query?: {
|
|
6077
|
-
backTo?: string;
|
|
6078
|
-
enableRedirect?: boolean;
|
|
6079
6155
|
"api-version"?: string;
|
|
6080
6156
|
};
|
|
6081
6157
|
header?: {
|
|
@@ -6113,11 +6189,9 @@ export interface operations {
|
|
|
6113
6189
|
* Deselect the user's default tenant
|
|
6114
6190
|
* @description Deselect the user's default tenant
|
|
6115
6191
|
*/
|
|
6116
|
-
|
|
6192
|
+
DeSelectTenantAsync: {
|
|
6117
6193
|
parameters: {
|
|
6118
6194
|
query?: {
|
|
6119
|
-
backTo?: string;
|
|
6120
|
-
enableRedirect?: boolean;
|
|
6121
6195
|
"api-version"?: string;
|
|
6122
6196
|
};
|
|
6123
6197
|
header?: {
|
|
@@ -6152,7 +6226,7 @@ export interface operations {
|
|
|
6152
6226
|
* Get the list of web portals for a tenant
|
|
6153
6227
|
* @description Get the list of web portals for a tenant
|
|
6154
6228
|
*/
|
|
6155
|
-
|
|
6229
|
+
GetTenantWebPortalsAsync: {
|
|
6156
6230
|
parameters: {
|
|
6157
6231
|
query?: {
|
|
6158
6232
|
"api-version"?: string;
|
|
@@ -6192,7 +6266,7 @@ export interface operations {
|
|
|
6192
6266
|
* Get the list of notifications for a tenant
|
|
6193
6267
|
* @description Get the list of notifications for a tenant
|
|
6194
6268
|
*/
|
|
6195
|
-
|
|
6269
|
+
GetTenantNotificationsAsync: {
|
|
6196
6270
|
parameters: {
|
|
6197
6271
|
query?: {
|
|
6198
6272
|
"api-version"?: string;
|
|
@@ -6232,7 +6306,7 @@ export interface operations {
|
|
|
6232
6306
|
* Get the count of notifications for a tenant
|
|
6233
6307
|
* @description Get the count of notifications for a tenant
|
|
6234
6308
|
*/
|
|
6235
|
-
|
|
6309
|
+
GetTenantNotificationsCountAsync: {
|
|
6236
6310
|
parameters: {
|
|
6237
6311
|
query?: {
|
|
6238
6312
|
"api-version"?: string;
|