@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
|
@@ -6,96 +6,171 @@
|
|
|
6
6
|
|
|
7
7
|
export interface paths {
|
|
8
8
|
"/api/v2/Me": {
|
|
9
|
-
/**
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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"];
|
|
15
24
|
};
|
|
16
25
|
"/api/v2/Me/Extended": {
|
|
17
|
-
/**
|
|
18
|
-
|
|
26
|
+
/**
|
|
27
|
+
* Get the current user's extended profile
|
|
28
|
+
* @description Get the current user's extended profile
|
|
29
|
+
*/
|
|
30
|
+
get: operations["GetExtendedCurrentUserAsync"];
|
|
19
31
|
};
|
|
20
32
|
"/api/v2/Me/Avatar": {
|
|
21
|
-
/**
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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"];
|
|
25
43
|
};
|
|
26
44
|
"/api/v2/Me/Follows": {
|
|
27
|
-
/**
|
|
28
|
-
|
|
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"];
|
|
29
50
|
};
|
|
30
51
|
"/api/v2/Me/Follows/Count": {
|
|
31
|
-
/**
|
|
32
|
-
|
|
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"];
|
|
33
57
|
};
|
|
34
58
|
"/api/v2/Me/Followers": {
|
|
35
|
-
/**
|
|
36
|
-
|
|
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"];
|
|
37
64
|
};
|
|
38
65
|
"/api/v2/Me/Followers/Count": {
|
|
39
|
-
/**
|
|
40
|
-
|
|
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"];
|
|
41
71
|
};
|
|
42
72
|
"/api/v2/Me/Businesses": {
|
|
43
|
-
/**
|
|
44
|
-
|
|
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"];
|
|
45
78
|
};
|
|
46
79
|
"/api/v2/Me/Businesses/Count": {
|
|
47
|
-
/**
|
|
48
|
-
|
|
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"];
|
|
49
85
|
};
|
|
50
86
|
"/api/v2/Me/Businesses/Extended": {
|
|
51
|
-
/**
|
|
52
|
-
|
|
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"];
|
|
53
92
|
};
|
|
54
93
|
"/api/v2/Me/Enrollments": {
|
|
55
|
-
/**
|
|
56
|
-
|
|
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"];
|
|
57
99
|
};
|
|
58
100
|
"/api/v2/Me/Enrollments/Extended": {
|
|
59
|
-
/**
|
|
60
|
-
|
|
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"];
|
|
61
106
|
};
|
|
62
107
|
"/api/v2/Me/Enrollments/{enrollmentId}": {
|
|
63
|
-
/**
|
|
64
|
-
|
|
108
|
+
/**
|
|
109
|
+
* Get a single TenantEnrollment by its ID
|
|
110
|
+
* @description Get a single TenantEnrollment by its ID
|
|
111
|
+
*/
|
|
112
|
+
get: operations["GetTenantEnrollmentAsync"];
|
|
65
113
|
};
|
|
66
114
|
"/api/v2/Me/SocialProfile": {
|
|
67
|
-
/**
|
|
68
|
-
|
|
115
|
+
/**
|
|
116
|
+
* Get the current user's social profile
|
|
117
|
+
* @description Get the current user's social profile
|
|
118
|
+
*/
|
|
119
|
+
get: operations["GetCurrentUserSocialProfileAsync"];
|
|
69
120
|
};
|
|
70
121
|
"/api/v2/Me/Cart": {
|
|
71
|
-
/**
|
|
72
|
-
|
|
122
|
+
/**
|
|
123
|
+
* Get the current user's cart
|
|
124
|
+
* @description Get the current user's cart
|
|
125
|
+
*/
|
|
126
|
+
get: operations["GetCurrentUserCartAsync"];
|
|
73
127
|
};
|
|
74
128
|
"/api/v2/Me/Wallet": {
|
|
75
|
-
/**
|
|
76
|
-
|
|
129
|
+
/**
|
|
130
|
+
* Get the current user's billing profile
|
|
131
|
+
* @description Get the current user's billing profile
|
|
132
|
+
*/
|
|
133
|
+
get: operations["GetCurrentUserWalletAsync"];
|
|
77
134
|
};
|
|
78
135
|
"/api/v2/Me/Notifications": {
|
|
79
|
-
/**
|
|
80
|
-
|
|
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"];
|
|
81
141
|
};
|
|
82
142
|
"/api/v2/Me/Notifications/Count": {
|
|
83
|
-
/**
|
|
84
|
-
|
|
143
|
+
/**
|
|
144
|
+
* Count the notifications for the current user
|
|
145
|
+
* @description Count the notifications for the current user
|
|
146
|
+
*/
|
|
147
|
+
get: operations["CountCurrentUserNotificationsAsync"];
|
|
85
148
|
};
|
|
86
149
|
"/api/v2/Me/Settings": {
|
|
87
|
-
/**
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
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"];
|
|
91
160
|
};
|
|
92
161
|
"/api/v2/Me/Addresses": {
|
|
93
|
-
/**
|
|
94
|
-
|
|
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"];
|
|
95
167
|
};
|
|
96
168
|
"/api/v2/Me/Invitations": {
|
|
97
|
-
/**
|
|
98
|
-
|
|
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"];
|
|
99
174
|
};
|
|
100
175
|
}
|
|
101
176
|
|
|
@@ -177,15 +252,6 @@ export interface components {
|
|
|
177
252
|
timestamp?: string;
|
|
178
253
|
activityId?: string | null;
|
|
179
254
|
};
|
|
180
|
-
EmptyEnvelopeEnvelope: {
|
|
181
|
-
isSuccess?: boolean;
|
|
182
|
-
errorMessage?: string | null;
|
|
183
|
-
correlationId?: string | null;
|
|
184
|
-
/** Format: date-time */
|
|
185
|
-
timestamp?: string;
|
|
186
|
-
activityId?: string | null;
|
|
187
|
-
result?: components["schemas"]["EmptyEnvelope"];
|
|
188
|
-
};
|
|
189
255
|
EnrollmentId: Record<string, never>;
|
|
190
256
|
ErrorEnvelope: {
|
|
191
257
|
isSuccess?: boolean;
|
|
@@ -746,8 +812,11 @@ export type external = Record<string, never>;
|
|
|
746
812
|
|
|
747
813
|
export interface operations {
|
|
748
814
|
|
|
749
|
-
/**
|
|
750
|
-
|
|
815
|
+
/**
|
|
816
|
+
* Gets the current user
|
|
817
|
+
* @description Get the currently acting user.
|
|
818
|
+
*/
|
|
819
|
+
GetCurrentUserAsync: {
|
|
751
820
|
parameters: {
|
|
752
821
|
query?: {
|
|
753
822
|
"api-version"?: string;
|
|
@@ -775,8 +844,11 @@ export interface operations {
|
|
|
775
844
|
};
|
|
776
845
|
};
|
|
777
846
|
};
|
|
778
|
-
/**
|
|
779
|
-
|
|
847
|
+
/**
|
|
848
|
+
* Update the current user's profile
|
|
849
|
+
* @description Update the current user's profile
|
|
850
|
+
*/
|
|
851
|
+
UpdateCurrentUserAsync: {
|
|
780
852
|
parameters: {
|
|
781
853
|
query?: {
|
|
782
854
|
"api-version"?: string;
|
|
@@ -796,9 +868,9 @@ export interface operations {
|
|
|
796
868
|
/** @description OK */
|
|
797
869
|
200: {
|
|
798
870
|
content: {
|
|
799
|
-
"application/json": components["schemas"]["
|
|
800
|
-
"application/xml": components["schemas"]["
|
|
801
|
-
"multipart/form-data": components["schemas"]["
|
|
871
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
872
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
873
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelope"];
|
|
802
874
|
};
|
|
803
875
|
};
|
|
804
876
|
/** @description Unauthorized */
|
|
@@ -811,8 +883,11 @@ export interface operations {
|
|
|
811
883
|
};
|
|
812
884
|
};
|
|
813
885
|
};
|
|
814
|
-
/**
|
|
815
|
-
|
|
886
|
+
/**
|
|
887
|
+
* Partially update the current user's profile
|
|
888
|
+
* @description Partially update the current user's profile
|
|
889
|
+
*/
|
|
890
|
+
PatchCurrentUserAsync: {
|
|
816
891
|
parameters: {
|
|
817
892
|
query?: {
|
|
818
893
|
"api-version"?: string;
|
|
@@ -832,9 +907,9 @@ export interface operations {
|
|
|
832
907
|
/** @description OK */
|
|
833
908
|
200: {
|
|
834
909
|
content: {
|
|
835
|
-
"application/json": components["schemas"]["
|
|
836
|
-
"application/xml": components["schemas"]["
|
|
837
|
-
"multipart/form-data": components["schemas"]["
|
|
910
|
+
"application/json": components["schemas"]["EmptyEnvelope"];
|
|
911
|
+
"application/xml": components["schemas"]["EmptyEnvelope"];
|
|
912
|
+
"multipart/form-data": components["schemas"]["EmptyEnvelope"];
|
|
838
913
|
};
|
|
839
914
|
};
|
|
840
915
|
/** @description Unauthorized */
|
|
@@ -847,8 +922,11 @@ export interface operations {
|
|
|
847
922
|
};
|
|
848
923
|
};
|
|
849
924
|
};
|
|
850
|
-
/**
|
|
851
|
-
|
|
925
|
+
/**
|
|
926
|
+
* Get the current user's extended profile
|
|
927
|
+
* @description Get the current user's extended profile
|
|
928
|
+
*/
|
|
929
|
+
GetExtendedCurrentUserAsync: {
|
|
852
930
|
parameters: {
|
|
853
931
|
query?: {
|
|
854
932
|
"api-version"?: string;
|
|
@@ -876,8 +954,11 @@ export interface operations {
|
|
|
876
954
|
};
|
|
877
955
|
};
|
|
878
956
|
};
|
|
879
|
-
/**
|
|
880
|
-
|
|
957
|
+
/**
|
|
958
|
+
* Get the current user's avatar
|
|
959
|
+
* @description Get the current user's avatar
|
|
960
|
+
*/
|
|
961
|
+
GetCurrentUserAvatarAsync: {
|
|
881
962
|
parameters: {
|
|
882
963
|
query?: {
|
|
883
964
|
"api-version"?: string;
|
|
@@ -913,8 +994,11 @@ export interface operations {
|
|
|
913
994
|
};
|
|
914
995
|
};
|
|
915
996
|
};
|
|
916
|
-
/**
|
|
917
|
-
|
|
997
|
+
/**
|
|
998
|
+
* Update the current user's avatar
|
|
999
|
+
* @description Update the current user's avatar
|
|
1000
|
+
*/
|
|
1001
|
+
UpdateAvatarAsync: {
|
|
918
1002
|
parameters: {
|
|
919
1003
|
query?: {
|
|
920
1004
|
"api-version"?: string;
|
|
@@ -966,8 +1050,11 @@ export interface operations {
|
|
|
966
1050
|
};
|
|
967
1051
|
};
|
|
968
1052
|
};
|
|
969
|
-
/**
|
|
970
|
-
|
|
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: {
|
|
971
1058
|
parameters: {
|
|
972
1059
|
query?: {
|
|
973
1060
|
"api-version"?: string;
|
|
@@ -995,8 +1082,11 @@ export interface operations {
|
|
|
995
1082
|
};
|
|
996
1083
|
};
|
|
997
1084
|
};
|
|
998
|
-
/**
|
|
999
|
-
|
|
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: {
|
|
1000
1090
|
parameters: {
|
|
1001
1091
|
query?: {
|
|
1002
1092
|
"api-version"?: string;
|
|
@@ -1024,8 +1114,11 @@ export interface operations {
|
|
|
1024
1114
|
};
|
|
1025
1115
|
};
|
|
1026
1116
|
};
|
|
1027
|
-
/**
|
|
1028
|
-
|
|
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: {
|
|
1029
1122
|
parameters: {
|
|
1030
1123
|
query?: {
|
|
1031
1124
|
"api-version"?: string;
|
|
@@ -1053,8 +1146,11 @@ export interface operations {
|
|
|
1053
1146
|
};
|
|
1054
1147
|
};
|
|
1055
1148
|
};
|
|
1056
|
-
/**
|
|
1057
|
-
|
|
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: {
|
|
1058
1154
|
parameters: {
|
|
1059
1155
|
query?: {
|
|
1060
1156
|
"api-version"?: string;
|
|
@@ -1082,8 +1178,11 @@ export interface operations {
|
|
|
1082
1178
|
};
|
|
1083
1179
|
};
|
|
1084
1180
|
};
|
|
1085
|
-
/**
|
|
1086
|
-
|
|
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: {
|
|
1087
1186
|
parameters: {
|
|
1088
1187
|
query?: {
|
|
1089
1188
|
"api-version"?: string;
|
|
@@ -1119,8 +1218,11 @@ export interface operations {
|
|
|
1119
1218
|
};
|
|
1120
1219
|
};
|
|
1121
1220
|
};
|
|
1122
|
-
/**
|
|
1123
|
-
|
|
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: {
|
|
1124
1226
|
parameters: {
|
|
1125
1227
|
query?: {
|
|
1126
1228
|
"api-version"?: string;
|
|
@@ -1156,8 +1258,11 @@ export interface operations {
|
|
|
1156
1258
|
};
|
|
1157
1259
|
};
|
|
1158
1260
|
};
|
|
1159
|
-
/**
|
|
1160
|
-
|
|
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: {
|
|
1161
1266
|
parameters: {
|
|
1162
1267
|
query?: {
|
|
1163
1268
|
"api-version"?: string;
|
|
@@ -1193,8 +1298,11 @@ export interface operations {
|
|
|
1193
1298
|
};
|
|
1194
1299
|
};
|
|
1195
1300
|
};
|
|
1196
|
-
/**
|
|
1197
|
-
|
|
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: {
|
|
1198
1306
|
parameters: {
|
|
1199
1307
|
query?: {
|
|
1200
1308
|
"api-version"?: string;
|
|
@@ -1222,8 +1330,11 @@ export interface operations {
|
|
|
1222
1330
|
};
|
|
1223
1331
|
};
|
|
1224
1332
|
};
|
|
1225
|
-
/**
|
|
1226
|
-
|
|
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: {
|
|
1227
1338
|
parameters: {
|
|
1228
1339
|
query?: {
|
|
1229
1340
|
"api-version"?: string;
|
|
@@ -1251,8 +1362,11 @@ export interface operations {
|
|
|
1251
1362
|
};
|
|
1252
1363
|
};
|
|
1253
1364
|
};
|
|
1254
|
-
/**
|
|
1255
|
-
|
|
1365
|
+
/**
|
|
1366
|
+
* Get a single TenantEnrollment by its ID
|
|
1367
|
+
* @description Get a single TenantEnrollment by its ID
|
|
1368
|
+
*/
|
|
1369
|
+
GetTenantEnrollmentAsync: {
|
|
1256
1370
|
parameters: {
|
|
1257
1371
|
query?: {
|
|
1258
1372
|
"api-version"?: string;
|
|
@@ -1290,8 +1404,11 @@ export interface operations {
|
|
|
1290
1404
|
};
|
|
1291
1405
|
};
|
|
1292
1406
|
};
|
|
1293
|
-
/**
|
|
1294
|
-
|
|
1407
|
+
/**
|
|
1408
|
+
* Get the current user's social profile
|
|
1409
|
+
* @description Get the current user's social profile
|
|
1410
|
+
*/
|
|
1411
|
+
GetCurrentUserSocialProfileAsync: {
|
|
1295
1412
|
parameters: {
|
|
1296
1413
|
query?: {
|
|
1297
1414
|
"api-version"?: string;
|
|
@@ -1319,8 +1436,11 @@ export interface operations {
|
|
|
1319
1436
|
};
|
|
1320
1437
|
};
|
|
1321
1438
|
};
|
|
1322
|
-
/**
|
|
1323
|
-
|
|
1439
|
+
/**
|
|
1440
|
+
* Get the current user's cart
|
|
1441
|
+
* @description Get the current user's cart
|
|
1442
|
+
*/
|
|
1443
|
+
GetCurrentUserCartAsync: {
|
|
1324
1444
|
parameters: {
|
|
1325
1445
|
query?: {
|
|
1326
1446
|
"api-version"?: string;
|
|
@@ -1348,8 +1468,11 @@ export interface operations {
|
|
|
1348
1468
|
};
|
|
1349
1469
|
};
|
|
1350
1470
|
};
|
|
1351
|
-
/**
|
|
1352
|
-
|
|
1471
|
+
/**
|
|
1472
|
+
* Get the current user's billing profile
|
|
1473
|
+
* @description Get the current user's billing profile
|
|
1474
|
+
*/
|
|
1475
|
+
GetCurrentUserWalletAsync: {
|
|
1353
1476
|
parameters: {
|
|
1354
1477
|
query?: {
|
|
1355
1478
|
"api-version"?: string;
|
|
@@ -1377,8 +1500,11 @@ export interface operations {
|
|
|
1377
1500
|
};
|
|
1378
1501
|
};
|
|
1379
1502
|
};
|
|
1380
|
-
/**
|
|
1381
|
-
|
|
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: {
|
|
1382
1508
|
parameters: {
|
|
1383
1509
|
query?: {
|
|
1384
1510
|
"api-version"?: string;
|
|
@@ -1406,8 +1532,11 @@ export interface operations {
|
|
|
1406
1532
|
};
|
|
1407
1533
|
};
|
|
1408
1534
|
};
|
|
1409
|
-
/**
|
|
1410
|
-
|
|
1535
|
+
/**
|
|
1536
|
+
* Count the notifications for the current user
|
|
1537
|
+
* @description Count the notifications for the current user
|
|
1538
|
+
*/
|
|
1539
|
+
CountCurrentUserNotificationsAsync: {
|
|
1411
1540
|
parameters: {
|
|
1412
1541
|
query?: {
|
|
1413
1542
|
"api-version"?: string;
|
|
@@ -1435,8 +1564,11 @@ export interface operations {
|
|
|
1435
1564
|
};
|
|
1436
1565
|
};
|
|
1437
1566
|
};
|
|
1438
|
-
/**
|
|
1439
|
-
|
|
1567
|
+
/**
|
|
1568
|
+
* Get the settings for the current user
|
|
1569
|
+
* @description Get the settings for the current user
|
|
1570
|
+
*/
|
|
1571
|
+
GetCurrentUserSettingsAsync: {
|
|
1440
1572
|
parameters: {
|
|
1441
1573
|
query?: {
|
|
1442
1574
|
"api-version"?: string;
|
|
@@ -1464,8 +1596,11 @@ export interface operations {
|
|
|
1464
1596
|
};
|
|
1465
1597
|
};
|
|
1466
1598
|
};
|
|
1467
|
-
/**
|
|
1468
|
-
|
|
1599
|
+
/**
|
|
1600
|
+
* Update the settings for the current user
|
|
1601
|
+
* @description Update the settings for the current user
|
|
1602
|
+
*/
|
|
1603
|
+
UpdateCurrentUserSettingsAsync: {
|
|
1469
1604
|
parameters: {
|
|
1470
1605
|
query?: {
|
|
1471
1606
|
"api-version"?: string;
|
|
@@ -1500,8 +1635,11 @@ export interface operations {
|
|
|
1500
1635
|
};
|
|
1501
1636
|
};
|
|
1502
1637
|
};
|
|
1503
|
-
/**
|
|
1504
|
-
|
|
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: {
|
|
1505
1643
|
parameters: {
|
|
1506
1644
|
query?: {
|
|
1507
1645
|
"api-version"?: string;
|
|
@@ -1529,8 +1667,11 @@ export interface operations {
|
|
|
1529
1667
|
};
|
|
1530
1668
|
};
|
|
1531
1669
|
};
|
|
1532
|
-
/**
|
|
1533
|
-
|
|
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: {
|
|
1534
1675
|
parameters: {
|
|
1535
1676
|
query?: {
|
|
1536
1677
|
"api-version"?: string;
|