@selfcommunity/api-services 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (188) hide show
  1. package/lib/cjs/index.js +36 -0
  2. package/lib/cjs/services/category/index.js +168 -286
  3. package/lib/cjs/services/comment/index.js +107 -186
  4. package/lib/cjs/services/custom_adv/index.js +31 -51
  5. package/lib/cjs/services/custom_page/index.js +32 -52
  6. package/lib/cjs/services/data_portability/index.js +18 -43
  7. package/lib/cjs/services/embed/index.js +90 -151
  8. package/lib/cjs/services/feature/index.js +8 -16
  9. package/lib/cjs/services/feed/index.js +46 -81
  10. package/lib/cjs/services/feed_object/index.js +339 -505
  11. package/lib/cjs/services/incubator/index.js +64 -116
  12. package/lib/cjs/services/insight/index.js +51 -94
  13. package/lib/cjs/services/legal_page/index.js +60 -101
  14. package/lib/cjs/services/locality/index.js +14 -30
  15. package/lib/cjs/services/loyalty/index.js +92 -154
  16. package/lib/cjs/services/media/index.js +80 -122
  17. package/lib/cjs/services/moderation/index.js +65 -103
  18. package/lib/cjs/services/notification/index.js +67 -136
  19. package/lib/cjs/services/preference/index.js +25 -51
  20. package/lib/cjs/services/private_message/index.js +98 -177
  21. package/lib/cjs/services/score/index.js +22 -46
  22. package/lib/cjs/services/sso/index.js +17 -32
  23. package/lib/cjs/services/suggestion/index.js +23 -57
  24. package/lib/cjs/services/tag/index.js +72 -119
  25. package/lib/cjs/services/user/index.js +420 -767
  26. package/lib/cjs/services/webhook/index.js +4 -7
  27. package/lib/cjs/types/baseParams.js +3 -0
  28. package/lib/cjs/types/category.js +3 -0
  29. package/lib/cjs/types/comment.js +3 -0
  30. package/lib/cjs/types/customAdv.js +3 -0
  31. package/lib/cjs/types/customPage.js +3 -0
  32. package/lib/cjs/types/embed.js +3 -0
  33. package/lib/cjs/types/feed.js +3 -0
  34. package/lib/cjs/types/feedObject.js +3 -0
  35. package/lib/cjs/types/incubator.js +3 -0
  36. package/lib/cjs/types/index.js +91 -1
  37. package/lib/cjs/types/legalPage.js +3 -0
  38. package/lib/cjs/types/media.js +29 -0
  39. package/lib/cjs/types/moderation.js +3 -0
  40. package/lib/cjs/types/notification.js +3 -0
  41. package/lib/cjs/types/privateMessage.js +3 -0
  42. package/lib/cjs/types/prize.js +3 -0
  43. package/lib/cjs/types/sso.js +3 -0
  44. package/lib/cjs/types/tag.js +3 -0
  45. package/lib/cjs/types/user.js +3 -0
  46. package/lib/cjs/utils/apiRequest.js +2 -1
  47. package/lib/esm/index.js +36 -0
  48. package/lib/esm/services/category/index.js +168 -286
  49. package/lib/esm/services/comment/index.js +107 -186
  50. package/lib/esm/services/custom_adv/index.js +31 -51
  51. package/lib/esm/services/custom_page/index.js +32 -52
  52. package/lib/esm/services/data_portability/index.js +18 -43
  53. package/lib/esm/services/embed/index.js +90 -151
  54. package/lib/esm/services/feature/index.js +8 -16
  55. package/lib/esm/services/feed/index.js +46 -81
  56. package/lib/esm/services/feed_object/index.js +339 -505
  57. package/lib/esm/services/incubator/index.js +64 -116
  58. package/lib/esm/services/insight/index.js +51 -94
  59. package/lib/esm/services/legal_page/index.js +60 -101
  60. package/lib/esm/services/locality/index.js +14 -30
  61. package/lib/esm/services/loyalty/index.js +92 -154
  62. package/lib/esm/services/media/index.js +80 -122
  63. package/lib/esm/services/moderation/index.js +65 -103
  64. package/lib/esm/services/notification/index.js +67 -136
  65. package/lib/esm/services/preference/index.js +25 -51
  66. package/lib/esm/services/private_message/index.js +98 -177
  67. package/lib/esm/services/score/index.js +22 -46
  68. package/lib/esm/services/sso/index.js +17 -32
  69. package/lib/esm/services/suggestion/index.js +23 -57
  70. package/lib/esm/services/tag/index.js +72 -119
  71. package/lib/esm/services/user/index.js +420 -767
  72. package/lib/esm/services/webhook/index.js +4 -7
  73. package/lib/esm/types/baseParams.js +3 -0
  74. package/lib/esm/types/category.js +3 -0
  75. package/lib/esm/types/comment.js +3 -0
  76. package/lib/esm/types/customAdv.js +3 -0
  77. package/lib/esm/types/customPage.js +3 -0
  78. package/lib/esm/types/embed.js +3 -0
  79. package/lib/esm/types/feed.js +3 -0
  80. package/lib/esm/types/feedObject.js +3 -0
  81. package/lib/esm/types/incubator.js +3 -0
  82. package/lib/esm/types/index.js +91 -1
  83. package/lib/esm/types/legalPage.js +3 -0
  84. package/lib/esm/types/media.js +29 -0
  85. package/lib/esm/types/moderation.js +3 -0
  86. package/lib/esm/types/notification.js +3 -0
  87. package/lib/esm/types/privateMessage.js +3 -0
  88. package/lib/esm/types/prize.js +3 -0
  89. package/lib/esm/types/sso.js +3 -0
  90. package/lib/esm/types/tag.js +3 -0
  91. package/lib/esm/types/user.js +3 -0
  92. package/lib/esm/utils/apiRequest.js +2 -1
  93. package/lib/types/index.d.ts +2 -2
  94. package/lib/types/index.d.ts.map +1 -1
  95. package/lib/types/services/category/index.d.ts +114 -42
  96. package/lib/types/services/category/index.d.ts.map +1 -1
  97. package/lib/types/services/comment/index.d.ts +74 -23
  98. package/lib/types/services/comment/index.d.ts.map +1 -1
  99. package/lib/types/services/custom_adv/index.d.ts +26 -9
  100. package/lib/types/services/custom_adv/index.d.ts.map +1 -1
  101. package/lib/types/services/custom_page/index.d.ts +26 -9
  102. package/lib/types/services/custom_page/index.d.ts.map +1 -1
  103. package/lib/types/services/data_portability/index.d.ts +19 -6
  104. package/lib/types/services/data_portability/index.d.ts.map +1 -1
  105. package/lib/types/services/embed/index.d.ts +62 -24
  106. package/lib/types/services/embed/index.d.ts.map +1 -1
  107. package/lib/types/services/feature/index.d.ts +11 -3
  108. package/lib/types/services/feature/index.d.ts.map +1 -1
  109. package/lib/types/services/feed/index.d.ts +37 -15
  110. package/lib/types/services/feed/index.d.ts.map +1 -1
  111. package/lib/types/services/feed_object/index.d.ts +229 -81
  112. package/lib/types/services/feed_object/index.d.ts.map +1 -1
  113. package/lib/types/services/incubator/index.d.ts +51 -18
  114. package/lib/types/services/incubator/index.d.ts.map +1 -1
  115. package/lib/types/services/insight/index.d.ts +44 -18
  116. package/lib/types/services/insight/index.d.ts.map +1 -1
  117. package/lib/types/services/legal_page/index.d.ts +46 -18
  118. package/lib/types/services/legal_page/index.d.ts.map +1 -1
  119. package/lib/types/services/locality/index.d.ts +17 -6
  120. package/lib/types/services/locality/index.d.ts.map +1 -1
  121. package/lib/types/services/loyalty/index.d.ts +70 -27
  122. package/lib/types/services/loyalty/index.d.ts.map +1 -1
  123. package/lib/types/services/media/index.d.ts +55 -18
  124. package/lib/types/services/media/index.d.ts.map +1 -1
  125. package/lib/types/services/moderation/index.d.ts +51 -18
  126. package/lib/types/services/moderation/index.d.ts.map +1 -1
  127. package/lib/types/services/notification/index.d.ts +63 -27
  128. package/lib/types/services/notification/index.d.ts.map +1 -1
  129. package/lib/types/services/preference/index.d.ts +28 -9
  130. package/lib/types/services/preference/index.d.ts.map +1 -1
  131. package/lib/types/services/private_message/index.d.ts +68 -24
  132. package/lib/types/services/private_message/index.d.ts.map +1 -1
  133. package/lib/types/services/score/index.d.ts +24 -9
  134. package/lib/types/services/score/index.d.ts.map +1 -1
  135. package/lib/types/services/sso/index.d.ts +18 -6
  136. package/lib/types/services/sso/index.d.ts.map +1 -1
  137. package/lib/types/services/suggestion/index.d.ts +29 -12
  138. package/lib/types/services/suggestion/index.d.ts.map +1 -1
  139. package/lib/types/services/tag/index.d.ts +57 -21
  140. package/lib/types/services/tag/index.d.ts.map +1 -1
  141. package/lib/types/services/user/index.d.ts +313 -114
  142. package/lib/types/services/user/index.d.ts.map +1 -1
  143. package/lib/types/services/webhook/index.d.ts +3 -4
  144. package/lib/types/services/webhook/index.d.ts.map +1 -1
  145. package/lib/types/tsconfig.build.tsbuildinfo +1 -1
  146. package/lib/types/types/baseParams.d.ts +23 -0
  147. package/lib/types/types/baseParams.d.ts.map +1 -0
  148. package/lib/types/types/category.d.ts +15 -0
  149. package/lib/types/types/category.d.ts.map +1 -0
  150. package/lib/types/types/comment.d.ts +51 -0
  151. package/lib/types/types/comment.d.ts.map +1 -0
  152. package/lib/types/types/customAdv.d.ts +19 -0
  153. package/lib/types/types/customAdv.d.ts.map +1 -0
  154. package/lib/types/types/customPage.d.ts +24 -0
  155. package/lib/types/types/customPage.d.ts.map +1 -0
  156. package/lib/types/types/embed.d.ts +26 -0
  157. package/lib/types/types/embed.d.ts.map +1 -0
  158. package/lib/types/types/feed.d.ts +11 -0
  159. package/lib/types/types/feed.d.ts.map +1 -0
  160. package/lib/types/types/feedObject.d.ts +56 -0
  161. package/lib/types/types/feedObject.d.ts.map +1 -0
  162. package/lib/types/types/incubator.d.ts +33 -0
  163. package/lib/types/types/incubator.d.ts.map +1 -0
  164. package/lib/types/types/index.d.ts +19 -1
  165. package/lib/types/types/index.d.ts.map +1 -1
  166. package/lib/types/types/legalPage.d.ts +19 -0
  167. package/lib/types/types/legalPage.d.ts.map +1 -0
  168. package/lib/types/types/media.d.ts +80 -0
  169. package/lib/types/types/media.d.ts.map +1 -0
  170. package/lib/types/types/moderation.d.ts +23 -0
  171. package/lib/types/types/moderation.d.ts.map +1 -0
  172. package/lib/types/types/notification.d.ts +31 -0
  173. package/lib/types/types/notification.d.ts.map +1 -0
  174. package/lib/types/types/privateMessage.d.ts +176 -0
  175. package/lib/types/types/privateMessage.d.ts.map +1 -0
  176. package/lib/types/types/prize.d.ts +47 -0
  177. package/lib/types/types/prize.d.ts.map +1 -0
  178. package/lib/types/types/sso.d.ts +12 -0
  179. package/lib/types/types/sso.d.ts.map +1 -0
  180. package/lib/types/types/tag.d.ts +39 -0
  181. package/lib/types/types/tag.d.ts.map +1 -0
  182. package/lib/types/types/user.d.ts +105 -0
  183. package/lib/types/types/user.d.ts.map +1 -0
  184. package/lib/types/utils/apiRequest.d.ts +1 -1
  185. package/lib/types/utils/apiRequest.d.ts.map +1 -1
  186. package/lib/umd/api-services.js +1 -1
  187. package/lib/umd/api-services.js.map +1 -1
  188. package/package.json +4 -4
@@ -1,33 +1,35 @@
1
+ import { SCUserAutocompleteType, SCUserType, SCUserCounterType, SCUserSettingsType, SCUserChangeEmailType, SCUserAvatarType, SCUserPermissionType, SCPlatformType, SCCategoryType, SCFeedUnitType, SCUserFollowedStatusType, SCUserFollowerStatusType, SCUserConnectionStatusType, SCUserHiddenStatusType, SCUserConnectionRequestType, SCTagType, SCUserLoyaltyPointsType, SCUserEmailTokenType, SCUserHiddenByStatusType, SCAvatarType, SCMediaType } from '@selfcommunity/types';
2
+ import { SCPaginatedResponse, UserAutocompleteParams, UserSearchParams } from '../../types';
1
3
  export interface UserApiClientInterface {
2
- getAllUsers(): Promise<any>;
3
- getHiddenUsers(): Promise<any>;
4
- userAutocomplete(): Promise<any>;
5
- userSearch(): Promise<any>;
6
- getSpecificUser(id: number): Promise<any>;
7
- getUserCounters(id: number): Promise<any>;
8
- userUpdate(id: number): Promise<any>;
9
- userPatch(id: number): Promise<any>;
10
- userDelete(id: number): Promise<any>;
11
- changeUserMail(id: number): Promise<any>;
12
- confirmChangeUserMail(id: number): Promise<any>;
13
- changeUserPassword(id: number): Promise<any>;
14
- userSettings(id: number): Promise<any>;
15
- userSettingsPatch(id: number): Promise<any>;
16
- getCurrentUser(): Promise<any>;
17
- getCurrentUserAvatar(): Promise<any>;
18
- getCurrentUserPermission(): Promise<any>;
19
- getCurrentUserPlatform(): Promise<any>;
20
- getUserFollowedCategories(id: number): Promise<any>;
21
- getUserFeed(id: number): Promise<any>;
22
- getUserFollowers(id: number): Promise<any>;
23
- getUserFollowed(id: number): Promise<any>;
4
+ getAllUsers(): Promise<SCPaginatedResponse<SCUserType>>;
5
+ getHiddenUsers(): Promise<SCPaginatedResponse<SCUserType>>;
6
+ userAutocomplete(params: UserAutocompleteParams): Promise<SCPaginatedResponse<SCUserAutocompleteType>>;
7
+ userSearch(params: UserSearchParams): Promise<SCPaginatedResponse<SCUserType>>;
8
+ getSpecificUser(id: number): Promise<SCUserType>;
9
+ getUserCounters(id: number): Promise<SCUserCounterType>;
10
+ userUpdate(id: number, data?: SCUserType): Promise<SCUserType>;
11
+ userPatch(id: number, data?: SCUserType): Promise<SCUserType>;
12
+ userDelete(id: number, hard?: number): Promise<any>;
13
+ changeUserMail(id: number, new_email: string, confirm?: boolean): Promise<any | SCUserChangeEmailType>;
14
+ confirmChangeUserMail(id: number, new_email: string, validation_code?: string): Promise<any>;
15
+ changeUserPassword(id: number, password: string, new_password: string): Promise<any>;
16
+ userSettings(id: number): Promise<SCUserSettingsType>;
17
+ userSettingsPatch(id: number, data?: SCUserSettingsType): Promise<SCUserSettingsType>;
18
+ getCurrentUser(): Promise<SCUserType>;
19
+ getCurrentUserAvatar(): Promise<SCUserAvatarType>;
20
+ getCurrentUserPermission(): Promise<SCUserPermissionType>;
21
+ getCurrentUserPlatform(): Promise<SCPlatformType>;
22
+ getUserFollowedCategories(id: number, mutual?: number): Promise<SCCategoryType[]>;
23
+ getUserFeed(id: number): Promise<SCPaginatedResponse<SCFeedUnitType>>;
24
+ getUserFollowers(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
25
+ getUserFollowed(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
24
26
  followUser(id: number): Promise<any>;
25
- checkUserFollowed(id: number): Promise<any>;
26
- checkUserFollower(id: number): Promise<any>;
27
- getUserConnections(id: number): Promise<any>;
28
- checkUserConnections(id: number): Promise<any>;
29
- getUserConnectionRequests(id: number): Promise<any>;
30
- getUserRequestConnectionsSent(id: number): Promise<any>;
27
+ checkUserFollowed(id: number): Promise<SCUserFollowedStatusType>;
28
+ checkUserFollower(id: number): Promise<SCUserFollowerStatusType>;
29
+ getUserConnections(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
30
+ checkUserConnections(id: number): Promise<SCUserConnectionStatusType>;
31
+ getUserConnectionRequests(id: number): Promise<SCPaginatedResponse<SCUserConnectionRequestType>>;
32
+ getUserRequestConnectionsSent(id: number): Promise<SCPaginatedResponse<SCUserConnectionRequestType>>;
31
33
  userAcceptRequestConnection(id: number): Promise<any>;
32
34
  userRequestConnection(id: number): Promise<any>;
33
35
  userRemoveConnection(id: number): Promise<any>;
@@ -36,96 +38,293 @@ export interface UserApiClientInterface {
36
38
  userRejectConnectionRequest(id: number): Promise<any>;
37
39
  userMarkSeenConnectionRequest(id: number): Promise<any>;
38
40
  showHideUser(id: number): Promise<any>;
39
- checkUserHidden(id: number): Promise<any>;
40
- checkUserHiddenBy(id: number): Promise<any>;
41
- getUserLoyaltyPoints(id: number): Promise<any>;
42
- getUserConnectionStatuses(): Promise<any>;
43
- userTagToAddressContribution(): Promise<any>;
44
- checkUserEmailToken(): Promise<any>;
45
- addUserAvatar(): Promise<any>;
46
- getUserAvatars(): Promise<any>;
47
- removeUserAvatar(): Promise<any>;
48
- setUserPrimaryAvatar(): Promise<any>;
41
+ checkUserHidden(id: number): Promise<SCUserHiddenStatusType>;
42
+ checkUserHiddenBy(id: number): Promise<SCUserHiddenByStatusType>;
43
+ getUserLoyaltyPoints(id: number): Promise<SCUserLoyaltyPointsType>;
44
+ getUserConnectionStatuses(users: number[]): Promise<any>;
45
+ userTagToAddressContribution(): Promise<SCTagType>;
46
+ checkUserEmailToken(): Promise<SCUserEmailTokenType>;
47
+ addUserAvatar(avatar: SCMediaType): Promise<SCAvatarType>;
48
+ getUserAvatars(): Promise<SCAvatarType>;
49
+ removeUserAvatar(avatar_id: number): Promise<any>;
50
+ setUserPrimaryAvatar(avatar_id: number): Promise<any>;
49
51
  }
52
+ /**
53
+ * Contains all the endpoints needed to manage users.
54
+ */
50
55
  export declare class UserApiClient {
51
- static getAllUsers(): Promise<any>;
52
- static getHiddenUsers(): Promise<any>;
53
- static userAutocomplete(): Promise<any>;
54
- static userSearch(): Promise<any>;
55
- static getSpecificUser(id: number): Promise<any>;
56
- static getUserCounters(id: number): Promise<any>;
57
- static userUpdate(id: number): Promise<any>;
58
- static userPatch(id: number): Promise<any>;
59
- static userDelete(id: number): Promise<any>;
60
- static changeUserMail(id: number): Promise<any>;
61
- static confirmChangeUserMail(id: number): Promise<any>;
62
- static changeUserPassword(id: number): Promise<any>;
63
- static userSettings(id: number): Promise<any>;
64
- static userSettingsPatch(id: number): Promise<any>;
65
- static getCurrentUser(): Promise<any>;
66
- static getCurrentUserAvatar(): Promise<any>;
67
- static getCurrentUserPermission(): Promise<any>;
68
- static getCurrentUserPlatform(): Promise<any>;
69
- static getUserFollowedCategories(id: number): Promise<any>;
70
- static getUserFeed(id: number): Promise<any>;
71
- static getUserFollowers(id: number): Promise<any>;
72
- static getUserFollowed(id: number): Promise<any>;
56
+ /**
57
+ * This endpoint retrieves the list of all users
58
+ */
59
+ static getAllUsers(): Promise<SCPaginatedResponse<SCUserType>>;
60
+ /**
61
+ * This endpoint retrieves the list of all users hidden by the authenticated user
62
+ */
63
+ static getHiddenUsers(): Promise<SCPaginatedResponse<SCUserType>>;
64
+ /**
65
+ * This endpoint retrieves the list of all users that meet the search criteria. The user object returned will contain only the following attributes: id, username, real_name, ext_id and avatar.
66
+ * This endpoint is recommended for implementing an autocomplete input field.
67
+ * @param params
68
+ */
69
+ static userAutocomplete(params: UserAutocompleteParams): Promise<SCPaginatedResponse<SCUserAutocompleteType>>;
70
+ /**
71
+ * This endpoint performs users search.
72
+ * @param params
73
+ */
74
+ static userSearch(params: UserSearchParams): Promise<SCPaginatedResponse<SCUserType>>;
75
+ /**
76
+ * This endpoint retrieves a specific user's profile identified by ID.
77
+ * @param id
78
+ */
79
+ static getSpecificUser(id: number): Promise<SCUserType>;
80
+ /**
81
+ * This endpoint retrieves the counters of a specific user identified by Id.
82
+ * @param id
83
+ */
84
+ static getUserCounters(id: number): Promise<SCUserCounterType>;
85
+ /**
86
+ * This endpoint updates the profile of a user identified by ID. A user can only update their personal data.
87
+ * @param id
88
+ * @param data
89
+ */
90
+ static userUpdate(id: number, data?: SCUserType): Promise<SCUserType>;
91
+ /**
92
+ * This endpoint patches a specific user identified by {id}
93
+ * @param id
94
+ * @param data
95
+ */
96
+ static userPatch(id: number, data?: SCUserType): Promise<SCUserType>;
97
+ /**
98
+ * This endpoint deletes a specific user identified by {id}
99
+ * @param id
100
+ * @param hard
101
+ */
102
+ static userDelete(id: number, hard?: number): Promise<any>;
103
+ /**
104
+ * This endpoint changes the email of the authenticated user.
105
+ * @param id
106
+ * @param new_email
107
+ * @param confirm
108
+ */
109
+ static changeUserMail(id: number, new_email: string, confirm?: boolean): Promise<any | SCUserChangeEmailType>;
110
+ /**
111
+ * This endpoint confirms email change.
112
+ * @param id
113
+ * @param new_email
114
+ * @param validation_code
115
+ */
116
+ static confirmChangeUserMail(id: number, new_email: string, validation_code?: string): Promise<any>;
117
+ /**
118
+ * This endpoint changes the password of the authenticated user.
119
+ * @param id
120
+ * @param password
121
+ * @param new_password
122
+ */
123
+ static changeUserPassword(id: number, password: string, new_password: string): Promise<any>;
124
+ /**
125
+ * This endpoint retrieves all current user's settings for the authenticated user.
126
+ * @param id
127
+ */
128
+ static userSettings(id: number): Promise<SCUserSettingsType>;
129
+ /**
130
+ * This endpoint changes the user settings for the authenticated user.
131
+ * @param id
132
+ * @param data
133
+ */
134
+ static userSettingsPatch(id: number, data?: SCUserSettingsType): Promise<SCUserSettingsType>;
135
+ /**
136
+ * This endpoint returns the user identified by the authentication token.
137
+ */
138
+ static getCurrentUser(): Promise<SCUserType>;
139
+ /**
140
+ * This endpoint returns the url to the user's current avatar.
141
+ */
142
+ static getCurrentUserAvatar(): Promise<SCUserAvatarType>;
143
+ /**
144
+ * This endpoint returns a list of permissions for the user identified by the authentication token. Some of the permissions in the list depend on global community settings.
145
+ */
146
+ static getCurrentUserPermission(): Promise<SCUserPermissionType>;
147
+ /**
148
+ * This endpoint retrieves the platform url starting from the Authorization user token. Using this url, the logged user (must be a staff member) can access the platform to manage the community.
149
+ */
150
+ static getCurrentUserPlatform(): Promise<SCPlatformType>;
151
+ /**
152
+ * This endpoint gets the list of categories followed by the user.
153
+ * @param id
154
+ * @param mutual
155
+ */
156
+ static getUserFollowedCategories(id: number, mutual?: number): Promise<SCCategoryType[]>;
157
+ /**
158
+ * This endpoint retrieves the list of posts of the user identified by {id}
159
+ * @param id
160
+ */
161
+ static getUserFeed(id: number): Promise<SCPaginatedResponse<SCFeedUnitType>>;
162
+ /**
163
+ * This endpoint retrieves the list of followers of a specific user identified by {id}
164
+ * @param id
165
+ * @param mutual
166
+ */
167
+ static getUserFollowers(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
168
+ /**
169
+ * This endpoint retrieves the list of following of a specific user identified by {id}.
170
+ * @param id
171
+ * @param mutual
172
+ */
173
+ static getUserFollowed(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
174
+ /**
175
+ * This endpoint allows a user to follow another user identified by {id}
176
+ * @param id
177
+ */
73
178
  static followUser(id: number): Promise<any>;
74
- static checkUserFollowed(id: number): Promise<any>;
75
- static checkUserFollower(id: number): Promise<any>;
76
- static getUserConnections(id: number): Promise<any>;
77
- static checkUserConnections(id: number): Promise<any>;
78
- static getUserConnectionRequests(id: number): Promise<any>;
79
- static getUserRequestConnectionsSent(id: number): Promise<any>;
179
+ /**
180
+ * This endpoint returns is_followed = true if the user (identified in path) is followed by me.
181
+ * @param id
182
+ */
183
+ static checkUserFollowed(id: number): Promise<SCUserFollowedStatusType>;
184
+ /**
185
+ * This endpoint returns is_follower = true if the user (identified in path) follow me
186
+ * @param id
187
+ */
188
+ static checkUserFollower(id: number): Promise<SCUserFollowerStatusType>;
189
+ /**
190
+ * This endpoint retrieves the list of connections of a specific user identified by ID.
191
+ * @param id
192
+ * @param mutual
193
+ */
194
+ static getUserConnections(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
195
+ /**
196
+ * This endpoint returns is_connection = true if the user (identified in path) is connected with me.
197
+ * @param id
198
+ */
199
+ static checkUserConnections(id: number): Promise<SCUserConnectionStatusType>;
200
+ /**
201
+ * This endpoint retrieves the list of connection requests received by a specific user identified by ID.
202
+ * @param id
203
+ */
204
+ static getUserConnectionRequests(id: number): Promise<SCPaginatedResponse<SCUserConnectionRequestType>>;
205
+ /**
206
+ * This endpoint retrieves a specific user's list of connection requests sent by user.
207
+ * @param id
208
+ */
209
+ static getUserRequestConnectionsSent(id: number): Promise<SCPaginatedResponse<SCUserConnectionRequestType>>;
210
+ /**
211
+ * This endpoint accepts a request connection of the user identified by {id}
212
+ * @param id
213
+ */
80
214
  static userAcceptRequestConnection(id: number): Promise<any>;
215
+ /**
216
+ * This endpoint requests a connection to the user identified by {id}
217
+ * @param id
218
+ */
81
219
  static userRequestConnection(id: number): Promise<any>;
220
+ /**
221
+ * This endpoint removes connection with the user identified by {id}
222
+ * @param id
223
+ */
82
224
  static userRemoveConnection(id: number): Promise<any>;
225
+ /**
226
+ * This endpoint cancels reject connection to a user identified by {id}
227
+ * @param id
228
+ */
83
229
  static userCancelRejectConnectionRequest(id: number): Promise<any>;
230
+ /**
231
+ * This endpoint cancels a request connection for a user.
232
+ * @param id
233
+ */
84
234
  static userCancelRequestConnection(id: number): Promise<any>;
235
+ /**
236
+ * This endpoint rejects a connection request sent from user identified by {id}
237
+ * @param id
238
+ */
85
239
  static userRejectConnectionRequest(id: number): Promise<any>;
240
+ /**
241
+ * This endpoint marks seen a connection request of user identified by {id} for the authenticated user.
242
+ * @param id
243
+ */
86
244
  static userMarkSeenConnectionRequest(id: number): Promise<any>;
245
+ /**
246
+ * This endpoint shows/hides a user (and its posts) identified by {id} for the authenticated user.
247
+ * @param id
248
+ */
87
249
  static showHideUser(id: number): Promise<any>;
88
- static checkUserHidden(id: number): Promise<any>;
89
- static checkUserHiddenBy(id: number): Promise<any>;
90
- static getUserLoyaltyPoints(id: number): Promise<any>;
91
- static getUserConnectionStatuses(): Promise<any>;
92
- static userTagToAddressContribution(): Promise<any>;
93
- static checkUserEmailToken(): Promise<any>;
94
- static addUserAvatar(): Promise<any>;
95
- static getUserAvatars(): Promise<any>;
96
- static removeUserAvatar(): Promise<any>;
97
- static setUserPrimaryAvatar(): Promise<any>;
250
+ /**
251
+ * This endpoint returns true if the user (identified in path) is hidden by the authenticated user.
252
+ * @param id
253
+ */
254
+ static checkUserHidden(id: number): Promise<SCUserHiddenStatusType>;
255
+ /**
256
+ * This endpoint returns true if the user (identified in path) has hidden by the authenticated user.
257
+ * @param id
258
+ */
259
+ static checkUserHiddenBy(id: number): Promise<SCUserHiddenByStatusType>;
260
+ /**
261
+ * This endpoint returns user's loyalty points.
262
+ * @param id
263
+ */
264
+ static getUserLoyaltyPoints(id: number): Promise<SCUserLoyaltyPointsType>;
265
+ /**
266
+ * This endpoint lists the connection/follow statuses of the logged user starting from a users array.
267
+ * @param users
268
+ */
269
+ static getUserConnectionStatuses(users: number[]): Promise<any>;
270
+ /**
271
+ * This endpoint returns user's tags to address a contribution.
272
+ */
273
+ static userTagToAddressContribution(): Promise<SCTagType>;
274
+ /**
275
+ * This endpoint checks an email token.
276
+ */
277
+ static checkUserEmailToken(): Promise<SCUserEmailTokenType>;
278
+ /**
279
+ * This endpoint adds an avatar to my avatars.
280
+ * @param avatar
281
+ */
282
+ static addUserAvatar(avatar: SCMediaType): Promise<SCAvatarType>;
283
+ /**
284
+ * This endpoint retrieves all user avatars.
285
+ */
286
+ static getUserAvatars(): Promise<SCAvatarType>;
287
+ /**
288
+ * This endpoint removes/deletes an avatar from the authenticated user avatars.
289
+ * @param avatar_id
290
+ */
291
+ static removeUserAvatar(avatar_id: number): Promise<any>;
292
+ /**
293
+ * This endpoint sets the primary avatar for the authenticated user.
294
+ * @param avatar_id
295
+ */
296
+ static setUserPrimaryAvatar(avatar_id: number): Promise<any>;
98
297
  }
99
298
  export default class UserService {
100
- static getAllUsers(): Promise<any>;
101
- static getHiddenUsers(): Promise<any>;
102
- static userAutocomplete(): Promise<any>;
103
- static userSearch(): Promise<any>;
104
- static getSpecificUser(id: number): Promise<any>;
105
- static getUserCounters(id: number): Promise<any>;
106
- static userUpdate(id: number): Promise<any>;
107
- static userPatch(id: number): Promise<any>;
108
- static userDelete(id: number): Promise<any>;
109
- static changeUserMail(id: number): Promise<any>;
110
- static confirmChangeUserMail(id: number): Promise<any>;
111
- static changeUserPassword(id: number): Promise<any>;
112
- static userSettings(id: number): Promise<any>;
113
- static userSettingsPatch(id: number): Promise<any>;
114
- static getCurrentUser(): Promise<any>;
115
- static getCurrentUserAvatar(): Promise<any>;
116
- static getCurrentUserPermission(): Promise<any>;
117
- static getCurrentUserPlatform(): Promise<any>;
118
- static getUserFollowedCategories(id: number): Promise<any>;
119
- static getUserFeed(id: number): Promise<any>;
120
- static getUserFollowers(id: number): Promise<any>;
121
- static getUserFollowed(id: number): Promise<any>;
299
+ static getAllUsers(): Promise<SCPaginatedResponse<SCUserType>>;
300
+ static getHiddenUsers(): Promise<SCPaginatedResponse<SCUserType>>;
301
+ static userAutocomplete(params: UserAutocompleteParams): Promise<SCPaginatedResponse<SCUserAutocompleteType>>;
302
+ static userSearch(params: UserSearchParams): Promise<SCPaginatedResponse<SCUserType>>;
303
+ static getSpecificUser(id: number): Promise<SCUserType>;
304
+ static getUserCounters(id: number): Promise<SCUserCounterType>;
305
+ static userUpdate(id: number, data?: SCUserType): Promise<SCUserType>;
306
+ static userPatch(id: number, data?: SCUserType): Promise<SCUserType>;
307
+ static userDelete(id: number, hard?: number): Promise<any>;
308
+ static changeUserMail(id: number, new_email: string, confirm?: boolean): Promise<any | SCUserChangeEmailType>;
309
+ static confirmChangeUserMail(id: number, new_email: string, validation_code?: string): Promise<any>;
310
+ static changeUserPassword(id: number, password: string, new_password: string): Promise<any>;
311
+ static userSettings(id: number): Promise<SCUserSettingsType>;
312
+ static userSettingsPatch(id: number, data?: SCUserSettingsType): Promise<SCUserSettingsType>;
313
+ static getCurrentUser(): Promise<SCUserType>;
314
+ static getCurrentUserAvatar(): Promise<SCUserAvatarType>;
315
+ static getCurrentUserPermission(): Promise<SCUserPermissionType>;
316
+ static getCurrentUserPlatform(): Promise<SCPlatformType>;
317
+ static getUserFollowedCategories(id: number, mutual?: number): Promise<SCCategoryType[]>;
318
+ static getUserFeed(id: number): Promise<SCPaginatedResponse<SCFeedUnitType>>;
319
+ static getUserFollowers(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
320
+ static getUserFollowed(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
122
321
  static followUser(id: number): Promise<any>;
123
- static checkUserFollowed(id: number): Promise<any>;
124
- static checkUserFollower(id: number): Promise<any>;
125
- static getUserConnections(id: number): Promise<any>;
126
- static checkUserConnections(id: number): Promise<any>;
127
- static getUserConnectionRequests(id: number): Promise<any>;
128
- static getUserRequestConnectionsSent(id: number): Promise<any>;
322
+ static checkUserFollowed(id: number): Promise<SCUserFollowedStatusType>;
323
+ static checkUserFollower(id: number): Promise<SCUserFollowerStatusType>;
324
+ static getUserConnections(id: number, mutual?: number): Promise<SCPaginatedResponse<SCUserType>>;
325
+ static checkUserConnections(id: number): Promise<SCUserConnectionStatusType>;
326
+ static getUserConnectionRequests(id: number): Promise<SCPaginatedResponse<SCUserConnectionRequestType>>;
327
+ static getUserRequestConnectionsSent(id: number): Promise<SCPaginatedResponse<SCUserConnectionRequestType>>;
129
328
  static userAcceptRequestConnection(id: number): Promise<any>;
130
329
  static userRequestConnection(id: number): Promise<any>;
131
330
  static userRemoveConnection(id: number): Promise<any>;
@@ -134,15 +333,15 @@ export default class UserService {
134
333
  static userRejectConnectionRequest(id: number): Promise<any>;
135
334
  static userMarkSeenConnectionRequest(id: number): Promise<any>;
136
335
  static showHideUser(id: number): Promise<any>;
137
- static checkUserHidden(id: number): Promise<any>;
138
- static checkUserHiddenBy(id: number): Promise<any>;
139
- static getUserLoyaltyPoints(id: number): Promise<any>;
140
- static getUserConnectionStatuses(): Promise<any>;
141
- static userTagToAddressContribution(): Promise<any>;
142
- static checkUserEmailToken(): Promise<any>;
143
- static addUserAvatar(): Promise<any>;
144
- static getUserAvatars(): Promise<any>;
145
- static removeUserAvatar(): Promise<any>;
146
- static setUserPrimaryAvatar(): Promise<any>;
336
+ static checkUserHidden(id: number): Promise<SCUserHiddenStatusType>;
337
+ static checkUserHiddenBy(id: number): Promise<SCUserHiddenByStatusType>;
338
+ static getUserLoyaltyPoints(id: number): Promise<SCUserLoyaltyPointsType>;
339
+ static getUserConnectionStatuses(users: number[]): Promise<any>;
340
+ static userTagToAddressContribution(): Promise<SCTagType>;
341
+ static checkUserEmailToken(): Promise<SCUserEmailTokenType>;
342
+ static addUserAvatar(avatar: SCMediaType): Promise<SCAvatarType>;
343
+ static getUserAvatars(): Promise<SCAvatarType>;
344
+ static removeUserAvatar(avatar_id: number): Promise<any>;
345
+ static setUserPrimaryAvatar(avatar_id: number): Promise<any>;
147
346
  }
148
347
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/services/user/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/services/user/index.ts"],"names":[],"mappings":"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"}
@@ -11,7 +11,7 @@ export interface WebhookApiClientInterface {
11
11
  deleteWebhookEndpoint(id: number): Promise<any>;
12
12
  getAllWebhookEndpointAttempts(id: number): Promise<SCPaginatedResponse<SCWebhookEndpointAttemptType>>;
13
13
  expireWebhookSigningSecret(id: number): Promise<SCWebhookEndpointType>;
14
- revealWebhookSigningSecret(id: number, password?: string): Promise<SCWebhookEndpointSecretType>;
14
+ revealWebhookSigningSecret(id: number): Promise<SCWebhookEndpointSecretType>;
15
15
  resendWebhookEndpointEvent(id: number, event: number): Promise<any>;
16
16
  resendMultipleWebhookEndpointEvent(id: number, event: number[]): Promise<any>;
17
17
  }
@@ -67,9 +67,8 @@ export declare class WebhookApiClient {
67
67
  /**
68
68
  * This endpoint reveals the secret associated with this endpoint.
69
69
  * @param id
70
- * @param password
71
70
  */
72
- static revealWebhookSigningSecret(id: number, password?: string): Promise<SCWebhookEndpointSecretType>;
71
+ static revealWebhookSigningSecret(id: number): Promise<SCWebhookEndpointSecretType>;
73
72
  /**
74
73
  * This endpoint resends the event specified as parameter to the endpoint specified by the id parameter.
75
74
  * @param id
@@ -93,7 +92,7 @@ export default class WebhookService {
93
92
  static deleteWebhookEndpoint(id: number): Promise<any>;
94
93
  static getAllWebhookEndpointAttempts(id: number): Promise<SCPaginatedResponse<SCWebhookEndpointAttemptType>>;
95
94
  static expireWebhookSigningSecret(id: number): Promise<SCWebhookEndpointType>;
96
- static revealWebhookSigningSecret(id: number, password?: string): Promise<SCWebhookEndpointSecretType>;
95
+ static revealWebhookSigningSecret(id: number): Promise<SCWebhookEndpointSecretType>;
97
96
  static resendWebhookEndpointEvent(id: number, event: number): Promise<any>;
98
97
  static resendMultipleWebhookEndpointEvent(id: number, event: number[]): Promise<any>;
99
98
  }
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/services/webhook/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/services/webhook/index.ts"],"names":[],"mappings":"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"}