@foru-ms/sdk 2.0.7 → 2.1.0

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 (1347) hide show
  1. package/README.md +1 -1
  2. package/dist/cjs/BaseClient.d.ts +1 -0
  3. package/dist/cjs/BaseClient.js +2 -2
  4. package/dist/cjs/api/resources/auth/client/Client.d.ts +16 -13
  5. package/dist/cjs/api/resources/auth/client/Client.js +45 -42
  6. package/dist/cjs/api/resources/auth/client/requests/ForgotPasswordAuthRequest.d.ts +10 -0
  7. package/dist/cjs/api/resources/auth/client/requests/LoginAuthRequest.d.ts +13 -0
  8. package/dist/cjs/api/resources/auth/client/requests/RegisterAuthRequest.d.ts +24 -0
  9. package/dist/cjs/api/resources/auth/client/requests/ResetPasswordAuthRequest.d.ts +16 -0
  10. package/dist/cjs/api/resources/auth/client/requests/index.d.ts +4 -4
  11. package/dist/cjs/api/resources/auth/index.d.ts +0 -1
  12. package/dist/cjs/api/resources/auth/index.js +0 -1
  13. package/dist/cjs/api/resources/index.d.ts +0 -2
  14. package/dist/cjs/api/resources/index.js +0 -2
  15. package/dist/cjs/api/resources/integrations/client/Client.d.ts +43 -20
  16. package/dist/cjs/api/resources/integrations/client/Client.js +81 -61
  17. package/dist/cjs/api/resources/integrations/client/requests/CreateIntegrationsRequest.d.ts +16 -0
  18. package/dist/cjs/api/resources/integrations/client/requests/DeleteIntegrationsRequest.d.ts +10 -0
  19. package/dist/cjs/api/resources/integrations/client/requests/ListIntegrationsRequest.d.ts +10 -0
  20. package/dist/cjs/api/resources/integrations/client/requests/RetrieveIntegrationsRequest.d.ts +10 -0
  21. package/dist/cjs/api/resources/integrations/client/requests/UpdateIntegrationsRequest.d.ts +16 -0
  22. package/dist/cjs/api/resources/integrations/client/requests/index.d.ts +5 -5
  23. package/dist/cjs/api/resources/integrations/types/UpdateIntegrationsResponse.d.ts +30 -0
  24. package/dist/cjs/api/resources/integrations/types/UpdateIntegrationsResponse.js +19 -0
  25. package/dist/cjs/api/resources/integrations/types/index.d.ts +1 -5
  26. package/dist/cjs/api/resources/integrations/types/index.js +1 -5
  27. package/dist/cjs/api/resources/notifications/client/Client.d.ts +33 -20
  28. package/dist/cjs/api/resources/notifications/client/Client.js +77 -61
  29. package/dist/cjs/api/resources/notifications/client/requests/CreateNotificationsRequest.d.ts +37 -0
  30. package/dist/cjs/api/resources/notifications/client/requests/CreateNotificationsRequest.js +14 -0
  31. package/dist/cjs/api/resources/notifications/client/requests/DeleteNotificationsRequest.d.ts +10 -0
  32. package/dist/cjs/api/resources/notifications/client/requests/ListNotificationsRequest.d.ts +15 -0
  33. package/dist/cjs/api/resources/notifications/client/requests/RetrieveNotificationsRequest.d.ts +10 -0
  34. package/dist/cjs/api/resources/notifications/client/requests/UpdateNotificationsRequest.d.ts +24 -0
  35. package/dist/cjs/api/resources/notifications/client/requests/UpdateNotificationsRequest.js +14 -0
  36. package/dist/cjs/api/resources/notifications/client/requests/index.d.ts +5 -5
  37. package/dist/cjs/api/resources/notifications/types/ListNotificationsRequestStatus.d.ts +7 -0
  38. package/dist/cjs/api/resources/notifications/types/ListNotificationsRequestStatus.js +10 -0
  39. package/dist/cjs/api/resources/notifications/types/UpdateNotificationsResponse.d.ts +30 -0
  40. package/dist/cjs/api/resources/notifications/types/index.d.ts +2 -5
  41. package/dist/cjs/api/resources/notifications/types/index.js +2 -5
  42. package/dist/cjs/api/resources/posts/client/Client.d.ts +67 -66
  43. package/dist/cjs/api/resources/posts/client/Client.js +190 -216
  44. package/dist/cjs/api/resources/posts/client/requests/CreatePostsRequest.d.ts +18 -0
  45. package/dist/cjs/api/resources/posts/client/requests/CreateReactionPostsRequest.d.ts +27 -0
  46. package/dist/cjs/api/resources/posts/client/requests/CreateReactionPostsRequest.js +14 -0
  47. package/dist/cjs/api/resources/posts/client/requests/DeletePostPostsRequest.d.ts +13 -0
  48. package/dist/cjs/api/resources/posts/client/requests/DeletePostsRequest.d.ts +10 -0
  49. package/dist/cjs/api/resources/posts/client/requests/DeleteReactionPostsRequest.d.ts +13 -0
  50. package/dist/cjs/api/resources/posts/client/requests/ListPostsPostsRequest.d.ts +23 -0
  51. package/dist/cjs/api/resources/posts/client/requests/ListPostsRequest.d.ts +19 -0
  52. package/dist/cjs/api/resources/posts/client/requests/ListReactionsPostsRequest.d.ts +17 -0
  53. package/dist/cjs/api/resources/posts/client/requests/RetrievePostPostsRequest.d.ts +13 -0
  54. package/dist/cjs/api/resources/posts/client/requests/RetrievePostsRequest.d.ts +10 -0
  55. package/dist/cjs/api/resources/posts/client/requests/RetrieveReactionPostsRequest.d.ts +13 -0
  56. package/dist/cjs/api/resources/posts/client/requests/UpdatePostsRequest.d.ts +18 -0
  57. package/dist/cjs/api/resources/posts/client/requests/index.d.ts +12 -13
  58. package/dist/cjs/api/resources/posts/types/DeleteReactionPostsResponse.d.ts +8 -0
  59. package/dist/cjs/api/resources/posts/types/ListPostsPostsRequestSort.d.ts +5 -0
  60. package/dist/cjs/api/resources/posts/types/ListPostsPostsRequestSort.js +8 -0
  61. package/dist/cjs/api/resources/posts/types/ListPostsPostsRequestType.d.ts +8 -0
  62. package/dist/cjs/api/resources/posts/types/ListPostsPostsRequestType.js +11 -0
  63. package/dist/cjs/api/resources/posts/types/ListPostsRequestSort.d.ts +5 -0
  64. package/dist/cjs/api/resources/posts/types/ListPostsRequestSort.js +8 -0
  65. package/dist/cjs/api/resources/posts/types/ListPostsRequestType.d.ts +8 -0
  66. package/dist/cjs/api/resources/posts/types/ListPostsRequestType.js +11 -0
  67. package/dist/cjs/api/resources/posts/types/ListReactionsPostsRequestType.d.ts +7 -0
  68. package/dist/cjs/api/resources/posts/types/ListReactionsPostsRequestType.js +10 -0
  69. package/dist/cjs/api/resources/posts/types/RetrievePostPostsResponse.d.ts +27 -0
  70. package/dist/cjs/api/resources/posts/types/RetrieveReactionPostsResponse.d.ts +19 -0
  71. package/dist/cjs/api/resources/posts/types/UpdatePostsResponse.d.ts +23 -0
  72. package/dist/cjs/api/resources/posts/types/index.d.ts +9 -13
  73. package/dist/cjs/api/resources/posts/types/index.js +9 -13
  74. package/dist/cjs/api/resources/privateMessages/client/Client.d.ts +47 -32
  75. package/dist/cjs/api/resources/privateMessages/client/Client.js +112 -106
  76. package/dist/cjs/api/resources/privateMessages/client/requests/CreatePrivateMessagesRequest.d.ts +21 -0
  77. package/dist/cjs/api/resources/privateMessages/client/requests/CreateReplyPrivateMessagesRequest.d.ts +24 -0
  78. package/dist/cjs/api/resources/privateMessages/client/requests/DeletePrivateMessagesRequest.d.ts +10 -0
  79. package/dist/cjs/api/resources/privateMessages/client/requests/DeleteReplyPrivateMessagesRequest.d.ts +13 -0
  80. package/dist/cjs/api/resources/privateMessages/client/requests/ListPrivateMessagesRequest.d.ts +12 -0
  81. package/dist/cjs/api/resources/privateMessages/client/requests/ListRepliesPrivateMessagesRequest.d.ts +14 -0
  82. package/dist/cjs/api/resources/privateMessages/client/requests/RetrievePrivateMessagesRequest.d.ts +10 -0
  83. package/dist/cjs/api/resources/privateMessages/client/requests/RetrieveReplyPrivateMessagesRequest.d.ts +13 -0
  84. package/dist/cjs/api/resources/privateMessages/client/requests/index.d.ts +8 -8
  85. package/dist/cjs/api/resources/privateMessages/types/RetrieveReplyPrivateMessagesResponse.d.ts +14 -0
  86. package/dist/cjs/api/resources/privateMessages/types/index.d.ts +1 -8
  87. package/dist/cjs/api/resources/privateMessages/types/index.js +1 -8
  88. package/dist/cjs/api/resources/reports/client/Client.d.ts +27 -16
  89. package/dist/cjs/api/resources/reports/client/Client.js +67 -50
  90. package/dist/cjs/api/resources/reports/client/requests/CreateReportsRequest.d.ts +22 -0
  91. package/dist/cjs/api/resources/reports/client/requests/DeleteReportsRequest.d.ts +10 -0
  92. package/dist/cjs/api/resources/reports/client/requests/ListReportsRequest.d.ts +16 -0
  93. package/dist/cjs/api/resources/reports/client/requests/RetrieveReportsRequest.d.ts +10 -0
  94. package/dist/cjs/api/resources/reports/client/requests/index.d.ts +4 -4
  95. package/dist/cjs/api/resources/reports/index.d.ts +0 -1
  96. package/dist/cjs/api/resources/reports/index.js +0 -1
  97. package/dist/cjs/api/resources/roles/client/Client.d.ts +33 -20
  98. package/dist/cjs/api/resources/roles/client/Client.js +71 -61
  99. package/dist/cjs/api/resources/roles/client/requests/CreateRolesRequest.d.ts +18 -0
  100. package/dist/cjs/api/resources/roles/client/requests/DeleteRolesRequest.d.ts +10 -0
  101. package/dist/cjs/api/resources/roles/client/requests/ListRolesRequest.d.ts +10 -0
  102. package/dist/cjs/api/resources/roles/client/requests/RetrieveRolesRequest.d.ts +10 -0
  103. package/dist/cjs/api/resources/roles/client/requests/UpdateRolesRequest.d.ts +20 -0
  104. package/dist/cjs/api/resources/roles/client/requests/index.d.ts +5 -5
  105. package/dist/cjs/api/resources/roles/types/UpdateRolesResponse.d.ts +22 -0
  106. package/dist/cjs/api/resources/roles/types/index.d.ts +1 -5
  107. package/dist/cjs/api/resources/roles/types/index.js +1 -5
  108. package/dist/cjs/api/resources/ssOs/client/Client.d.ts +43 -20
  109. package/dist/cjs/api/resources/ssOs/client/Client.js +81 -61
  110. package/dist/cjs/api/resources/ssOs/client/requests/CreateSsOsRequest.d.ts +22 -0
  111. package/dist/cjs/api/resources/ssOs/client/requests/DeleteSsOsRequest.d.ts +10 -0
  112. package/dist/cjs/api/resources/ssOs/client/requests/ListSsOsRequest.d.ts +10 -0
  113. package/dist/cjs/api/resources/ssOs/client/requests/RetrieveSsOsRequest.d.ts +10 -0
  114. package/dist/cjs/api/resources/ssOs/client/requests/UpdateSsOsRequest.d.ts +22 -0
  115. package/dist/cjs/api/resources/ssOs/client/requests/index.d.ts +5 -5
  116. package/dist/cjs/api/resources/ssOs/types/UpdateSsOsResponse.d.ts +27 -0
  117. package/dist/cjs/api/resources/ssOs/types/UpdateSsOsResponse.js +16 -0
  118. package/dist/cjs/api/resources/ssOs/types/index.d.ts +1 -5
  119. package/dist/cjs/api/resources/ssOs/types/index.js +1 -5
  120. package/dist/cjs/api/resources/tags/client/Client.d.ts +47 -32
  121. package/dist/cjs/api/resources/tags/client/Client.js +113 -104
  122. package/dist/cjs/api/resources/tags/client/requests/CreateTagsRequest.d.ts +18 -0
  123. package/dist/cjs/api/resources/tags/client/requests/DeleteSubscriberTagsRequest.d.ts +13 -0
  124. package/dist/cjs/api/resources/tags/client/requests/DeleteTagsRequest.d.ts +10 -0
  125. package/dist/cjs/api/resources/tags/client/requests/ListSubscribersTagsRequest.d.ts +14 -0
  126. package/dist/cjs/api/resources/tags/client/requests/ListTagsRequest.d.ts +12 -0
  127. package/dist/cjs/api/resources/tags/client/requests/RetrieveSubscriberTagsRequest.d.ts +13 -0
  128. package/dist/cjs/api/resources/tags/client/requests/RetrieveTagsRequest.d.ts +10 -0
  129. package/dist/cjs/api/resources/tags/client/requests/UpdateTagsRequest.d.ts +20 -0
  130. package/dist/cjs/api/resources/tags/client/requests/index.d.ts +8 -8
  131. package/dist/cjs/api/resources/tags/types/RetrieveSubscriberTagsResponse.d.ts +19 -0
  132. package/dist/cjs/api/resources/tags/types/UpdateTagsResponse.d.ts +22 -0
  133. package/dist/cjs/api/resources/tags/types/index.d.ts +2 -8
  134. package/dist/cjs/api/resources/tags/types/index.js +2 -8
  135. package/dist/cjs/api/resources/threads/client/Client.d.ts +93 -90
  136. package/dist/cjs/api/resources/threads/client/Client.js +264 -294
  137. package/dist/cjs/api/resources/threads/client/requests/CreatePollThreadsRequest.d.ts +35 -0
  138. package/dist/cjs/api/resources/threads/client/requests/CreateReactionThreadsRequest.d.ts +27 -0
  139. package/dist/cjs/api/resources/threads/client/requests/CreateReactionThreadsRequest.js +14 -0
  140. package/dist/cjs/api/resources/threads/client/requests/CreateThreadsRequest.d.ts +40 -0
  141. package/dist/cjs/api/resources/threads/client/requests/DeletePostThreadsRequest.d.ts +13 -0
  142. package/dist/cjs/api/resources/threads/client/requests/DeleteReactionThreadsRequest.d.ts +13 -0
  143. package/dist/cjs/api/resources/threads/client/requests/DeleteSubscriberThreadsRequest.d.ts +13 -0
  144. package/dist/cjs/api/resources/threads/client/requests/DeleteThreadsRequest.d.ts +10 -0
  145. package/dist/cjs/api/resources/threads/client/requests/ListPostsThreadsRequest.d.ts +23 -0
  146. package/dist/cjs/api/resources/threads/client/requests/ListReactionsThreadsRequest.d.ts +17 -0
  147. package/dist/cjs/api/resources/threads/client/requests/ListSubscribersThreadsRequest.d.ts +14 -0
  148. package/dist/cjs/api/resources/threads/client/requests/ListThreadsRequest.d.ts +19 -0
  149. package/dist/cjs/api/resources/threads/client/requests/RetrievePollThreadsRequest.d.ts +10 -0
  150. package/dist/cjs/api/resources/threads/client/requests/RetrievePostThreadsRequest.d.ts +13 -0
  151. package/dist/cjs/api/resources/threads/client/requests/RetrieveReactionThreadsRequest.d.ts +13 -0
  152. package/dist/cjs/api/resources/threads/client/requests/RetrieveSubscriberThreadsRequest.d.ts +13 -0
  153. package/dist/cjs/api/resources/threads/client/requests/RetrieveThreadsRequest.d.ts +10 -0
  154. package/dist/cjs/api/resources/threads/client/requests/UpdatePollThreadsRequest.d.ts +18 -0
  155. package/dist/cjs/api/resources/threads/client/requests/UpdateThreadsRequest.d.ts +22 -0
  156. package/dist/cjs/api/resources/threads/client/requests/index.d.ts +18 -19
  157. package/dist/cjs/api/resources/threads/types/DeleteReactionThreadsResponse.d.ts +8 -0
  158. package/dist/cjs/api/resources/threads/types/ListPostsThreadsRequestSort.d.ts +5 -0
  159. package/dist/cjs/api/resources/threads/types/ListPostsThreadsRequestSort.js +8 -0
  160. package/dist/cjs/api/resources/threads/types/ListPostsThreadsRequestType.d.ts +8 -0
  161. package/dist/cjs/api/resources/threads/types/ListPostsThreadsRequestType.js +11 -0
  162. package/dist/cjs/api/resources/threads/types/ListReactionsThreadsRequestType.d.ts +7 -0
  163. package/dist/cjs/api/resources/threads/types/ListReactionsThreadsRequestType.js +10 -0
  164. package/dist/cjs/api/resources/threads/types/ListThreadsRequestSort.d.ts +6 -0
  165. package/dist/cjs/api/resources/threads/types/ListThreadsRequestSort.js +9 -0
  166. package/dist/cjs/api/resources/threads/types/RetrievePostThreadsResponse.d.ts +26 -0
  167. package/dist/cjs/api/resources/threads/types/RetrieveReactionThreadsResponse.d.ts +19 -0
  168. package/dist/cjs/api/resources/threads/types/RetrieveSubscriberThreadsResponse.d.ts +19 -0
  169. package/dist/cjs/api/resources/threads/types/UpdateThreadsResponse.d.ts +55 -0
  170. package/dist/cjs/api/resources/threads/types/index.d.ts +9 -19
  171. package/dist/cjs/api/resources/threads/types/index.js +9 -19
  172. package/dist/cjs/api/resources/users/client/Client.d.ts +55 -40
  173. package/dist/cjs/api/resources/users/client/Client.js +144 -138
  174. package/dist/cjs/api/resources/users/client/requests/DeleteFollowerUsersRequest.d.ts +13 -0
  175. package/dist/cjs/api/resources/users/client/requests/DeleteFollowingUsersRequest.d.ts +13 -0
  176. package/dist/cjs/api/resources/users/client/requests/DeleteUsersRequest.d.ts +10 -0
  177. package/dist/cjs/api/resources/users/client/requests/ListFollowersUsersRequest.d.ts +14 -0
  178. package/dist/cjs/api/resources/users/client/requests/ListFollowingUsersRequest.d.ts +14 -0
  179. package/dist/cjs/api/resources/users/client/requests/ListUsersRequest.d.ts +15 -0
  180. package/dist/cjs/api/resources/users/client/requests/RetrieveFollowerUsersRequest.d.ts +13 -0
  181. package/dist/cjs/api/resources/users/client/requests/RetrieveFollowingUsersRequest.d.ts +13 -0
  182. package/dist/cjs/api/resources/users/client/requests/RetrieveUsersRequest.d.ts +10 -0
  183. package/dist/cjs/api/resources/users/client/requests/UpdateUsersRequest.d.ts +28 -0
  184. package/dist/cjs/api/resources/users/client/requests/index.d.ts +10 -10
  185. package/dist/cjs/api/resources/users/types/ListUsersRequestSort.d.ts +5 -0
  186. package/dist/cjs/api/resources/users/types/ListUsersRequestSort.js +8 -0
  187. package/dist/cjs/api/resources/users/types/RetrieveFollowerUsersResponse.d.ts +19 -0
  188. package/dist/cjs/api/resources/users/types/RetrieveFollowingUsersResponse.d.ts +19 -0
  189. package/dist/cjs/api/resources/users/types/UpdateUsersResponse.d.ts +43 -0
  190. package/dist/cjs/api/resources/users/types/index.d.ts +4 -10
  191. package/dist/cjs/api/resources/users/types/index.js +4 -10
  192. package/dist/cjs/api/resources/webhooks/client/Client.d.ts +51 -28
  193. package/dist/cjs/api/resources/webhooks/client/Client.js +105 -91
  194. package/dist/cjs/api/resources/webhooks/client/requests/CreateWebhooksRequest.d.ts +18 -0
  195. package/dist/cjs/api/resources/webhooks/client/requests/DeleteDeliveryWebhooksRequest.d.ts +13 -0
  196. package/dist/cjs/api/resources/webhooks/client/requests/DeleteWebhooksRequest.d.ts +10 -0
  197. package/dist/cjs/api/resources/webhooks/client/requests/ListDeliveriesWebhooksRequest.d.ts +14 -0
  198. package/dist/cjs/api/resources/webhooks/client/requests/ListWebhooksRequest.d.ts +10 -0
  199. package/dist/cjs/api/resources/webhooks/client/requests/RetrieveDeliveryWebhooksRequest.d.ts +13 -0
  200. package/dist/cjs/api/resources/webhooks/client/requests/RetrieveWebhooksRequest.d.ts +10 -0
  201. package/dist/cjs/api/resources/webhooks/client/requests/index.d.ts +7 -7
  202. package/dist/cjs/api/resources/webhooks/types/RetrieveDeliveryWebhooksResponse.d.ts +16 -0
  203. package/dist/cjs/api/resources/webhooks/types/index.d.ts +1 -7
  204. package/dist/cjs/api/resources/webhooks/types/index.js +1 -7
  205. package/dist/cjs/api/types/Auth.d.ts +1 -0
  206. package/dist/cjs/api/types/AuthListResponse.d.ts +18 -0
  207. package/dist/cjs/api/types/AuthResponse.d.ts +6 -1
  208. package/dist/cjs/api/types/ForgotPasswordResponse.d.ts +9 -0
  209. package/dist/cjs/api/types/Integration.d.ts +25 -0
  210. package/dist/cjs/api/types/Integration.js +16 -0
  211. package/dist/cjs/api/types/IntegrationListResponse.d.ts +42 -0
  212. package/dist/cjs/api/types/IntegrationListResponse.js +25 -0
  213. package/dist/cjs/api/types/IntegrationResponse.d.ts +26 -21
  214. package/dist/cjs/api/types/IntegrationResponse.js +12 -9
  215. package/dist/cjs/api/types/LoginResponse.d.ts +22 -0
  216. package/dist/cjs/api/types/MeResponse.d.ts +9 -0
  217. package/dist/cjs/api/types/Notification.d.ts +25 -0
  218. package/dist/cjs/api/types/NotificationListResponse.d.ts +42 -0
  219. package/dist/cjs/api/types/NotificationResponse.d.ts +28 -23
  220. package/dist/cjs/api/types/Post.d.ts +18 -0
  221. package/dist/cjs/api/types/PostListResponse.d.ts +35 -0
  222. package/dist/cjs/api/types/PostPost.d.ts +22 -0
  223. package/dist/cjs/api/types/PostPostListResponse.d.ts +37 -0
  224. package/dist/cjs/api/types/PostPostResponse.d.ts +27 -0
  225. package/dist/cjs/api/types/PostReaction.d.ts +14 -0
  226. package/dist/cjs/api/types/PostReactionCreate.d.ts +18 -0
  227. package/dist/cjs/api/types/PostReactionCreate.js +14 -0
  228. package/dist/cjs/api/types/PostReactionListResponse.d.ts +29 -0
  229. package/dist/cjs/api/types/PostReactionResponse.d.ts +19 -0
  230. package/dist/cjs/api/types/PostResponse.d.ts +21 -16
  231. package/dist/cjs/api/types/PrivateMessage.d.ts +21 -0
  232. package/dist/cjs/api/types/PrivateMessageListResponse.d.ts +38 -0
  233. package/dist/cjs/api/types/PrivateMessageReply.d.ts +9 -0
  234. package/dist/cjs/api/types/PrivateMessageReplyCreate.d.ts +14 -0
  235. package/dist/cjs/api/types/PrivateMessageReplyListResponse.d.ts +24 -0
  236. package/dist/cjs/api/types/PrivateMessageReplyResponse.d.ts +14 -0
  237. package/dist/cjs/api/types/PrivateMessageResponse.d.ts +24 -19
  238. package/dist/cjs/api/types/RegisterResponse.d.ts +22 -0
  239. package/dist/cjs/api/types/Report.d.ts +23 -0
  240. package/dist/cjs/api/types/ReportListResponse.d.ts +40 -0
  241. package/dist/cjs/api/types/ReportResponse.d.ts +26 -21
  242. package/dist/cjs/api/types/ResetPasswordResponse.d.ts +8 -0
  243. package/dist/cjs/api/types/Role.d.ts +17 -0
  244. package/dist/cjs/api/types/RoleListResponse.d.ts +34 -0
  245. package/dist/cjs/api/types/RoleResponse.d.ts +20 -15
  246. package/dist/cjs/api/types/Sso.d.ts +22 -0
  247. package/dist/cjs/api/types/Sso.js +13 -0
  248. package/dist/cjs/api/types/SsoListResponse.d.ts +39 -0
  249. package/dist/cjs/api/types/SsoListResponse.js +22 -0
  250. package/dist/cjs/api/types/SsoResponse.d.ts +23 -18
  251. package/dist/cjs/api/types/SsoResponse.js +9 -6
  252. package/dist/cjs/api/types/SuccessResponse.d.ts +8 -0
  253. package/dist/cjs/api/types/Tag.d.ts +17 -0
  254. package/dist/cjs/api/types/TagListResponse.d.ts +34 -0
  255. package/dist/cjs/api/types/TagResponse.d.ts +20 -15
  256. package/dist/cjs/api/types/TagSubscriber.d.ts +14 -0
  257. package/dist/cjs/api/types/TagSubscriberListResponse.d.ts +29 -0
  258. package/dist/cjs/api/types/TagSubscriberResponse.d.ts +19 -0
  259. package/dist/cjs/api/types/Thread.d.ts +30 -0
  260. package/dist/cjs/api/types/ThreadListResponse.d.ts +67 -0
  261. package/dist/cjs/api/types/ThreadPoll.d.ts +22 -0
  262. package/dist/cjs/api/types/ThreadPollCreate.d.ts +23 -0
  263. package/dist/cjs/api/types/ThreadPollListResponse.d.ts +37 -0
  264. package/dist/cjs/api/types/ThreadPollResponse.d.ts +27 -0
  265. package/dist/cjs/api/types/ThreadPost.d.ts +21 -0
  266. package/dist/cjs/api/types/ThreadPostListResponse.d.ts +36 -0
  267. package/dist/cjs/api/types/ThreadPostResponse.d.ts +26 -0
  268. package/dist/cjs/api/types/ThreadReaction.d.ts +14 -0
  269. package/dist/cjs/api/types/ThreadReactionCreate.d.ts +18 -0
  270. package/dist/cjs/api/types/ThreadReactionCreate.js +14 -0
  271. package/dist/cjs/api/types/ThreadReactionListResponse.d.ts +29 -0
  272. package/dist/cjs/api/types/ThreadReactionResponse.d.ts +19 -0
  273. package/dist/cjs/api/types/ThreadResponse.d.ts +46 -41
  274. package/dist/cjs/api/types/ThreadSubscriber.d.ts +14 -0
  275. package/dist/cjs/api/types/ThreadSubscriberListResponse.d.ts +29 -0
  276. package/dist/cjs/api/types/ThreadSubscriberResponse.d.ts +19 -0
  277. package/dist/cjs/api/types/User.d.ts +38 -0
  278. package/dist/cjs/api/types/UserFollower.d.ts +14 -0
  279. package/dist/cjs/api/types/UserFollowerListResponse.d.ts +29 -0
  280. package/dist/cjs/api/types/UserFollowerResponse.d.ts +19 -0
  281. package/dist/cjs/api/types/UserFollowing.d.ts +14 -0
  282. package/dist/cjs/api/types/UserFollowingListResponse.d.ts +29 -0
  283. package/dist/cjs/api/types/UserFollowingResponse.d.ts +19 -0
  284. package/dist/cjs/api/types/UserListResponse.d.ts +55 -0
  285. package/dist/cjs/api/types/UserResponse.d.ts +37 -32
  286. package/dist/cjs/api/types/Webhook.d.ts +19 -0
  287. package/dist/cjs/api/types/WebhookDelivery.d.ts +11 -0
  288. package/dist/cjs/api/types/WebhookDeliveryListResponse.d.ts +26 -0
  289. package/dist/cjs/api/types/WebhookDeliveryResponse.d.ts +16 -0
  290. package/dist/cjs/api/types/WebhookListResponse.d.ts +36 -0
  291. package/dist/cjs/api/types/WebhookResponse.d.ts +22 -17
  292. package/dist/cjs/api/types/index.d.ts +67 -0
  293. package/dist/cjs/api/types/index.js +67 -0
  294. package/dist/cjs/version.d.ts +1 -1
  295. package/dist/cjs/version.js +1 -1
  296. package/dist/esm/BaseClient.d.mts +1 -0
  297. package/dist/esm/BaseClient.mjs +2 -2
  298. package/dist/esm/api/resources/auth/client/Client.d.mts +16 -13
  299. package/dist/esm/api/resources/auth/client/Client.mjs +45 -42
  300. package/dist/esm/api/resources/auth/client/requests/ForgotPasswordAuthRequest.d.mts +10 -0
  301. package/dist/esm/api/resources/auth/client/requests/LoginAuthRequest.d.mts +13 -0
  302. package/dist/esm/api/resources/auth/client/requests/RegisterAuthRequest.d.mts +24 -0
  303. package/dist/esm/api/resources/auth/client/requests/ResetPasswordAuthRequest.d.mts +16 -0
  304. package/dist/esm/api/resources/auth/client/requests/index.d.mts +4 -4
  305. package/dist/esm/api/resources/auth/index.d.mts +0 -1
  306. package/dist/esm/api/resources/auth/index.mjs +0 -1
  307. package/dist/esm/api/resources/index.d.mts +0 -2
  308. package/dist/esm/api/resources/index.mjs +0 -2
  309. package/dist/esm/api/resources/integrations/client/Client.d.mts +43 -20
  310. package/dist/esm/api/resources/integrations/client/Client.mjs +81 -61
  311. package/dist/esm/api/resources/integrations/client/requests/CreateIntegrationsRequest.d.mts +16 -0
  312. package/dist/esm/api/resources/integrations/client/requests/DeleteIntegrationsRequest.d.mts +10 -0
  313. package/dist/esm/api/resources/integrations/client/requests/ListIntegrationsRequest.d.mts +10 -0
  314. package/dist/esm/api/resources/integrations/client/requests/RetrieveIntegrationsRequest.d.mts +10 -0
  315. package/dist/esm/api/resources/integrations/client/requests/UpdateIntegrationsRequest.d.mts +16 -0
  316. package/dist/esm/api/resources/integrations/client/requests/index.d.mts +5 -5
  317. package/dist/esm/api/resources/integrations/types/UpdateIntegrationsResponse.d.mts +30 -0
  318. package/dist/esm/api/resources/integrations/types/UpdateIntegrationsResponse.mjs +16 -0
  319. package/dist/esm/api/resources/integrations/types/index.d.mts +1 -5
  320. package/dist/esm/api/resources/integrations/types/index.mjs +1 -5
  321. package/dist/esm/api/resources/notifications/client/Client.d.mts +33 -20
  322. package/dist/esm/api/resources/notifications/client/Client.mjs +77 -61
  323. package/dist/esm/api/resources/notifications/client/requests/CreateNotificationsRequest.d.mts +37 -0
  324. package/dist/esm/api/resources/notifications/client/requests/CreateNotificationsRequest.mjs +11 -0
  325. package/dist/esm/api/resources/notifications/client/requests/DeleteNotificationsRequest.d.mts +10 -0
  326. package/dist/esm/api/resources/notifications/client/requests/ListNotificationsRequest.d.mts +15 -0
  327. package/dist/esm/api/resources/notifications/client/requests/RetrieveNotificationsRequest.d.mts +10 -0
  328. package/dist/esm/api/resources/notifications/client/requests/UpdateNotificationsRequest.d.mts +24 -0
  329. package/dist/esm/api/resources/notifications/client/requests/UpdateNotificationsRequest.mjs +11 -0
  330. package/dist/esm/api/resources/notifications/client/requests/index.d.mts +5 -5
  331. package/dist/esm/api/resources/notifications/types/ListNotificationsRequestStatus.d.mts +7 -0
  332. package/dist/esm/api/resources/notifications/types/ListNotificationsRequestStatus.mjs +7 -0
  333. package/dist/esm/api/resources/notifications/types/UpdateNotificationsResponse.d.mts +30 -0
  334. package/dist/esm/api/resources/notifications/types/index.d.mts +2 -5
  335. package/dist/esm/api/resources/notifications/types/index.mjs +2 -5
  336. package/dist/esm/api/resources/posts/client/Client.d.mts +67 -66
  337. package/dist/esm/api/resources/posts/client/Client.mjs +190 -216
  338. package/dist/esm/api/resources/posts/client/requests/CreatePostsRequest.d.mts +18 -0
  339. package/dist/esm/api/resources/posts/client/requests/CreateReactionPostsRequest.d.mts +27 -0
  340. package/dist/esm/api/resources/posts/client/requests/CreateReactionPostsRequest.mjs +11 -0
  341. package/dist/esm/api/resources/posts/client/requests/DeletePostPostsRequest.d.mts +13 -0
  342. package/dist/esm/api/resources/posts/client/requests/DeletePostsRequest.d.mts +10 -0
  343. package/dist/esm/api/resources/posts/client/requests/DeleteReactionPostsRequest.d.mts +13 -0
  344. package/dist/esm/api/resources/posts/client/requests/ListPostsPostsRequest.d.mts +23 -0
  345. package/dist/esm/api/resources/posts/client/requests/ListPostsRequest.d.mts +19 -0
  346. package/dist/esm/api/resources/posts/client/requests/ListReactionsPostsRequest.d.mts +17 -0
  347. package/dist/esm/api/resources/posts/client/requests/RetrievePostPostsRequest.d.mts +13 -0
  348. package/dist/esm/api/resources/posts/client/requests/RetrievePostsRequest.d.mts +10 -0
  349. package/dist/esm/api/resources/posts/client/requests/RetrieveReactionPostsRequest.d.mts +13 -0
  350. package/dist/esm/api/resources/posts/client/requests/UpdatePostsRequest.d.mts +18 -0
  351. package/dist/esm/api/resources/posts/client/requests/index.d.mts +12 -13
  352. package/dist/esm/api/resources/posts/types/DeleteReactionPostsResponse.d.mts +8 -0
  353. package/dist/esm/api/resources/posts/types/ListPostsPostsRequestSort.d.mts +5 -0
  354. package/dist/esm/api/resources/posts/types/ListPostsPostsRequestSort.mjs +5 -0
  355. package/dist/esm/api/resources/posts/types/ListPostsPostsRequestType.d.mts +8 -0
  356. package/dist/esm/api/resources/posts/types/ListPostsPostsRequestType.mjs +8 -0
  357. package/dist/esm/api/resources/posts/types/ListPostsRequestSort.d.mts +5 -0
  358. package/dist/esm/api/resources/posts/types/ListPostsRequestSort.mjs +5 -0
  359. package/dist/esm/api/resources/posts/types/ListPostsRequestType.d.mts +8 -0
  360. package/dist/esm/api/resources/posts/types/ListPostsRequestType.mjs +8 -0
  361. package/dist/esm/api/resources/posts/types/ListReactionsPostsRequestType.d.mts +7 -0
  362. package/dist/esm/api/resources/posts/types/ListReactionsPostsRequestType.mjs +7 -0
  363. package/dist/esm/api/resources/posts/types/RetrievePostPostsResponse.d.mts +27 -0
  364. package/dist/esm/api/resources/posts/types/RetrieveReactionPostsResponse.d.mts +19 -0
  365. package/dist/esm/api/resources/posts/types/UpdatePostsResponse.d.mts +23 -0
  366. package/dist/esm/api/resources/posts/types/index.d.mts +9 -13
  367. package/dist/esm/api/resources/posts/types/index.mjs +9 -13
  368. package/dist/esm/api/resources/privateMessages/client/Client.d.mts +47 -32
  369. package/dist/esm/api/resources/privateMessages/client/Client.mjs +112 -106
  370. package/dist/esm/api/resources/privateMessages/client/requests/CreatePrivateMessagesRequest.d.mts +21 -0
  371. package/dist/esm/api/resources/privateMessages/client/requests/CreateReplyPrivateMessagesRequest.d.mts +24 -0
  372. package/dist/esm/api/resources/privateMessages/client/requests/DeletePrivateMessagesRequest.d.mts +10 -0
  373. package/dist/esm/api/resources/privateMessages/client/requests/DeleteReplyPrivateMessagesRequest.d.mts +13 -0
  374. package/dist/esm/api/resources/privateMessages/client/requests/ListPrivateMessagesRequest.d.mts +12 -0
  375. package/dist/esm/api/resources/privateMessages/client/requests/ListRepliesPrivateMessagesRequest.d.mts +14 -0
  376. package/dist/esm/api/resources/privateMessages/client/requests/RetrievePrivateMessagesRequest.d.mts +10 -0
  377. package/dist/esm/api/resources/privateMessages/client/requests/RetrieveReplyPrivateMessagesRequest.d.mts +13 -0
  378. package/dist/esm/api/resources/privateMessages/client/requests/index.d.mts +8 -8
  379. package/dist/esm/api/resources/privateMessages/types/RetrieveReplyPrivateMessagesResponse.d.mts +14 -0
  380. package/dist/esm/api/resources/privateMessages/types/index.d.mts +1 -8
  381. package/dist/esm/api/resources/privateMessages/types/index.mjs +1 -8
  382. package/dist/esm/api/resources/reports/client/Client.d.mts +27 -16
  383. package/dist/esm/api/resources/reports/client/Client.mjs +67 -50
  384. package/dist/esm/api/resources/reports/client/requests/CreateReportsRequest.d.mts +22 -0
  385. package/dist/esm/api/resources/reports/client/requests/DeleteReportsRequest.d.mts +10 -0
  386. package/dist/esm/api/resources/reports/client/requests/ListReportsRequest.d.mts +16 -0
  387. package/dist/esm/api/resources/reports/client/requests/RetrieveReportsRequest.d.mts +10 -0
  388. package/dist/esm/api/resources/reports/client/requests/index.d.mts +4 -4
  389. package/dist/esm/api/resources/reports/index.d.mts +0 -1
  390. package/dist/esm/api/resources/reports/index.mjs +0 -1
  391. package/dist/esm/api/resources/roles/client/Client.d.mts +33 -20
  392. package/dist/esm/api/resources/roles/client/Client.mjs +71 -61
  393. package/dist/esm/api/resources/roles/client/requests/CreateRolesRequest.d.mts +18 -0
  394. package/dist/esm/api/resources/roles/client/requests/DeleteRolesRequest.d.mts +10 -0
  395. package/dist/esm/api/resources/roles/client/requests/ListRolesRequest.d.mts +10 -0
  396. package/dist/esm/api/resources/roles/client/requests/RetrieveRolesRequest.d.mts +10 -0
  397. package/dist/esm/api/resources/roles/client/requests/UpdateRolesRequest.d.mts +20 -0
  398. package/dist/esm/api/resources/roles/client/requests/index.d.mts +5 -5
  399. package/dist/esm/api/resources/roles/types/UpdateRolesResponse.d.mts +22 -0
  400. package/dist/esm/api/resources/roles/types/index.d.mts +1 -5
  401. package/dist/esm/api/resources/roles/types/index.mjs +1 -5
  402. package/dist/esm/api/resources/ssOs/client/Client.d.mts +43 -20
  403. package/dist/esm/api/resources/ssOs/client/Client.mjs +81 -61
  404. package/dist/esm/api/resources/ssOs/client/requests/CreateSsOsRequest.d.mts +22 -0
  405. package/dist/esm/api/resources/ssOs/client/requests/DeleteSsOsRequest.d.mts +10 -0
  406. package/dist/esm/api/resources/ssOs/client/requests/ListSsOsRequest.d.mts +10 -0
  407. package/dist/esm/api/resources/ssOs/client/requests/RetrieveSsOsRequest.d.mts +10 -0
  408. package/dist/esm/api/resources/ssOs/client/requests/UpdateSsOsRequest.d.mts +22 -0
  409. package/dist/esm/api/resources/ssOs/client/requests/index.d.mts +5 -5
  410. package/dist/esm/api/resources/ssOs/types/UpdateSsOsResponse.d.mts +27 -0
  411. package/dist/esm/api/resources/ssOs/types/UpdateSsOsResponse.mjs +13 -0
  412. package/dist/esm/api/resources/ssOs/types/index.d.mts +1 -5
  413. package/dist/esm/api/resources/ssOs/types/index.mjs +1 -5
  414. package/dist/esm/api/resources/tags/client/Client.d.mts +47 -32
  415. package/dist/esm/api/resources/tags/client/Client.mjs +113 -104
  416. package/dist/esm/api/resources/tags/client/requests/CreateTagsRequest.d.mts +18 -0
  417. package/dist/esm/api/resources/tags/client/requests/DeleteSubscriberTagsRequest.d.mts +13 -0
  418. package/dist/esm/api/resources/tags/client/requests/DeleteTagsRequest.d.mts +10 -0
  419. package/dist/esm/api/resources/tags/client/requests/ListSubscribersTagsRequest.d.mts +14 -0
  420. package/dist/esm/api/resources/tags/client/requests/ListTagsRequest.d.mts +12 -0
  421. package/dist/esm/api/resources/tags/client/requests/RetrieveSubscriberTagsRequest.d.mts +13 -0
  422. package/dist/esm/api/resources/tags/client/requests/RetrieveTagsRequest.d.mts +10 -0
  423. package/dist/esm/api/resources/tags/client/requests/UpdateTagsRequest.d.mts +20 -0
  424. package/dist/esm/api/resources/tags/client/requests/index.d.mts +8 -8
  425. package/dist/esm/api/resources/tags/types/RetrieveSubscriberTagsResponse.d.mts +19 -0
  426. package/dist/esm/api/resources/tags/types/UpdateTagsResponse.d.mts +22 -0
  427. package/dist/esm/api/resources/tags/types/index.d.mts +2 -8
  428. package/dist/esm/api/resources/tags/types/index.mjs +2 -8
  429. package/dist/esm/api/resources/threads/client/Client.d.mts +93 -90
  430. package/dist/esm/api/resources/threads/client/Client.mjs +264 -294
  431. package/dist/esm/api/resources/threads/client/requests/CreatePollThreadsRequest.d.mts +35 -0
  432. package/dist/esm/api/resources/threads/client/requests/CreateReactionThreadsRequest.d.mts +27 -0
  433. package/dist/esm/api/resources/threads/client/requests/CreateReactionThreadsRequest.mjs +11 -0
  434. package/dist/esm/api/resources/threads/client/requests/CreateThreadsRequest.d.mts +40 -0
  435. package/dist/esm/api/resources/threads/client/requests/DeletePostThreadsRequest.d.mts +13 -0
  436. package/dist/esm/api/resources/threads/client/requests/DeleteReactionThreadsRequest.d.mts +13 -0
  437. package/dist/esm/api/resources/threads/client/requests/DeleteSubscriberThreadsRequest.d.mts +13 -0
  438. package/dist/esm/api/resources/threads/client/requests/DeleteThreadsRequest.d.mts +10 -0
  439. package/dist/esm/api/resources/threads/client/requests/ListPostsThreadsRequest.d.mts +23 -0
  440. package/dist/esm/api/resources/threads/client/requests/ListReactionsThreadsRequest.d.mts +17 -0
  441. package/dist/esm/api/resources/threads/client/requests/ListSubscribersThreadsRequest.d.mts +14 -0
  442. package/dist/esm/api/resources/threads/client/requests/ListThreadsRequest.d.mts +19 -0
  443. package/dist/esm/api/resources/threads/client/requests/RetrievePollThreadsRequest.d.mts +10 -0
  444. package/dist/esm/api/resources/threads/client/requests/RetrievePostThreadsRequest.d.mts +13 -0
  445. package/dist/esm/api/resources/threads/client/requests/RetrieveReactionThreadsRequest.d.mts +13 -0
  446. package/dist/esm/api/resources/threads/client/requests/RetrieveSubscriberThreadsRequest.d.mts +13 -0
  447. package/dist/esm/api/resources/threads/client/requests/RetrieveThreadsRequest.d.mts +10 -0
  448. package/dist/esm/api/resources/threads/client/requests/UpdatePollThreadsRequest.d.mts +18 -0
  449. package/dist/esm/api/resources/threads/client/requests/UpdateThreadsRequest.d.mts +22 -0
  450. package/dist/esm/api/resources/threads/client/requests/index.d.mts +18 -19
  451. package/dist/esm/api/resources/threads/types/DeleteReactionThreadsResponse.d.mts +8 -0
  452. package/dist/esm/api/resources/threads/types/ListPostsThreadsRequestSort.d.mts +5 -0
  453. package/dist/esm/api/resources/threads/types/ListPostsThreadsRequestSort.mjs +5 -0
  454. package/dist/esm/api/resources/threads/types/ListPostsThreadsRequestType.d.mts +8 -0
  455. package/dist/esm/api/resources/threads/types/ListPostsThreadsRequestType.mjs +8 -0
  456. package/dist/esm/api/resources/threads/types/ListReactionsThreadsRequestType.d.mts +7 -0
  457. package/dist/esm/api/resources/threads/types/ListReactionsThreadsRequestType.mjs +7 -0
  458. package/dist/esm/api/resources/threads/types/ListThreadsRequestSort.d.mts +6 -0
  459. package/dist/esm/api/resources/threads/types/ListThreadsRequestSort.mjs +6 -0
  460. package/dist/esm/api/resources/threads/types/RetrievePostThreadsResponse.d.mts +26 -0
  461. package/dist/esm/api/resources/threads/types/RetrieveReactionThreadsResponse.d.mts +19 -0
  462. package/dist/esm/api/resources/threads/types/RetrieveSubscriberThreadsResponse.d.mts +19 -0
  463. package/dist/esm/api/resources/threads/types/UpdateThreadsResponse.d.mts +55 -0
  464. package/dist/esm/api/resources/threads/types/index.d.mts +9 -19
  465. package/dist/esm/api/resources/threads/types/index.mjs +9 -19
  466. package/dist/esm/api/resources/users/client/Client.d.mts +55 -40
  467. package/dist/esm/api/resources/users/client/Client.mjs +144 -138
  468. package/dist/esm/api/resources/users/client/requests/DeleteFollowerUsersRequest.d.mts +13 -0
  469. package/dist/esm/api/resources/users/client/requests/DeleteFollowingUsersRequest.d.mts +13 -0
  470. package/dist/esm/api/resources/users/client/requests/DeleteUsersRequest.d.mts +10 -0
  471. package/dist/esm/api/resources/users/client/requests/ListFollowersUsersRequest.d.mts +14 -0
  472. package/dist/esm/api/resources/users/client/requests/ListFollowingUsersRequest.d.mts +14 -0
  473. package/dist/esm/api/resources/users/client/requests/ListUsersRequest.d.mts +15 -0
  474. package/dist/esm/api/resources/users/client/requests/RetrieveFollowerUsersRequest.d.mts +13 -0
  475. package/dist/esm/api/resources/users/client/requests/RetrieveFollowingUsersRequest.d.mts +13 -0
  476. package/dist/esm/api/resources/users/client/requests/RetrieveUsersRequest.d.mts +10 -0
  477. package/dist/esm/api/resources/users/client/requests/UpdateUsersRequest.d.mts +28 -0
  478. package/dist/esm/api/resources/users/client/requests/index.d.mts +10 -10
  479. package/dist/esm/api/resources/users/types/ListUsersRequestSort.d.mts +5 -0
  480. package/dist/esm/api/resources/users/types/ListUsersRequestSort.mjs +5 -0
  481. package/dist/esm/api/resources/users/types/RetrieveFollowerUsersResponse.d.mts +19 -0
  482. package/dist/esm/api/resources/users/types/RetrieveFollowingUsersResponse.d.mts +19 -0
  483. package/dist/esm/api/resources/users/types/UpdateUsersResponse.d.mts +43 -0
  484. package/dist/esm/api/resources/users/types/index.d.mts +4 -10
  485. package/dist/esm/api/resources/users/types/index.mjs +4 -10
  486. package/dist/esm/api/resources/webhooks/client/Client.d.mts +51 -28
  487. package/dist/esm/api/resources/webhooks/client/Client.mjs +105 -91
  488. package/dist/esm/api/resources/webhooks/client/requests/CreateWebhooksRequest.d.mts +18 -0
  489. package/dist/esm/api/resources/webhooks/client/requests/DeleteDeliveryWebhooksRequest.d.mts +13 -0
  490. package/dist/esm/api/resources/webhooks/client/requests/DeleteWebhooksRequest.d.mts +10 -0
  491. package/dist/esm/api/resources/webhooks/client/requests/ListDeliveriesWebhooksRequest.d.mts +14 -0
  492. package/dist/esm/api/resources/webhooks/client/requests/ListWebhooksRequest.d.mts +10 -0
  493. package/dist/esm/api/resources/webhooks/client/requests/RetrieveDeliveryWebhooksRequest.d.mts +13 -0
  494. package/dist/esm/api/resources/webhooks/client/requests/RetrieveWebhooksRequest.d.mts +10 -0
  495. package/dist/esm/api/resources/webhooks/client/requests/index.d.mts +7 -7
  496. package/dist/esm/api/resources/webhooks/types/RetrieveDeliveryWebhooksResponse.d.mts +16 -0
  497. package/dist/esm/api/resources/webhooks/types/index.d.mts +1 -7
  498. package/dist/esm/api/resources/webhooks/types/index.mjs +1 -7
  499. package/dist/esm/api/types/Auth.d.mts +1 -0
  500. package/dist/esm/api/types/AuthListResponse.d.mts +18 -0
  501. package/dist/esm/api/types/AuthResponse.d.mts +6 -1
  502. package/dist/esm/api/types/ForgotPasswordResponse.d.mts +9 -0
  503. package/dist/esm/api/types/Integration.d.mts +25 -0
  504. package/dist/esm/api/types/Integration.mjs +13 -0
  505. package/dist/esm/api/types/IntegrationListResponse.d.mts +42 -0
  506. package/dist/esm/api/types/IntegrationListResponse.mjs +22 -0
  507. package/dist/esm/api/types/IntegrationResponse.d.mts +26 -21
  508. package/dist/esm/api/types/IntegrationResponse.mjs +12 -9
  509. package/dist/esm/api/types/LoginResponse.d.mts +22 -0
  510. package/dist/esm/api/types/MeResponse.d.mts +9 -0
  511. package/dist/esm/api/types/Notification.d.mts +25 -0
  512. package/dist/esm/api/types/NotificationListResponse.d.mts +42 -0
  513. package/dist/esm/api/types/NotificationResponse.d.mts +28 -23
  514. package/dist/esm/api/types/Post.d.mts +18 -0
  515. package/dist/esm/api/types/PostListResponse.d.mts +35 -0
  516. package/dist/esm/api/types/PostPost.d.mts +22 -0
  517. package/dist/esm/api/types/PostPostListResponse.d.mts +37 -0
  518. package/dist/esm/api/types/PostPostResponse.d.mts +27 -0
  519. package/dist/esm/api/types/PostReaction.d.mts +14 -0
  520. package/dist/esm/api/types/PostReactionCreate.d.mts +18 -0
  521. package/dist/esm/api/types/PostReactionCreate.mjs +11 -0
  522. package/dist/esm/api/types/PostReactionListResponse.d.mts +29 -0
  523. package/dist/esm/api/types/PostReactionResponse.d.mts +19 -0
  524. package/dist/esm/api/types/PostResponse.d.mts +21 -16
  525. package/dist/esm/api/types/PrivateMessage.d.mts +21 -0
  526. package/dist/esm/api/types/PrivateMessageListResponse.d.mts +38 -0
  527. package/dist/esm/api/types/PrivateMessageReply.d.mts +9 -0
  528. package/dist/esm/api/types/PrivateMessageReplyCreate.d.mts +14 -0
  529. package/dist/esm/api/types/PrivateMessageReplyListResponse.d.mts +24 -0
  530. package/dist/esm/api/types/PrivateMessageReplyResponse.d.mts +14 -0
  531. package/dist/esm/api/types/PrivateMessageResponse.d.mts +24 -19
  532. package/dist/esm/api/types/RegisterResponse.d.mts +22 -0
  533. package/dist/esm/api/types/Report.d.mts +23 -0
  534. package/dist/esm/api/types/ReportListResponse.d.mts +40 -0
  535. package/dist/esm/api/types/ReportResponse.d.mts +26 -21
  536. package/dist/esm/api/types/ResetPasswordResponse.d.mts +8 -0
  537. package/dist/esm/api/types/Role.d.mts +17 -0
  538. package/dist/esm/api/types/RoleListResponse.d.mts +34 -0
  539. package/dist/esm/api/types/RoleResponse.d.mts +20 -15
  540. package/dist/esm/api/types/Sso.d.mts +22 -0
  541. package/dist/esm/api/types/Sso.mjs +10 -0
  542. package/dist/esm/api/types/SsoListResponse.d.mts +39 -0
  543. package/dist/esm/api/types/SsoListResponse.mjs +19 -0
  544. package/dist/esm/api/types/SsoResponse.d.mts +23 -18
  545. package/dist/esm/api/types/SsoResponse.mjs +9 -6
  546. package/dist/esm/api/types/SuccessResponse.d.mts +8 -0
  547. package/dist/esm/api/types/Tag.d.mts +17 -0
  548. package/dist/esm/api/types/TagListResponse.d.mts +34 -0
  549. package/dist/esm/api/types/TagResponse.d.mts +20 -15
  550. package/dist/esm/api/types/TagSubscriber.d.mts +14 -0
  551. package/dist/esm/api/types/TagSubscriberListResponse.d.mts +29 -0
  552. package/dist/esm/api/types/TagSubscriberResponse.d.mts +19 -0
  553. package/dist/esm/api/types/Thread.d.mts +30 -0
  554. package/dist/esm/api/types/ThreadListResponse.d.mts +67 -0
  555. package/dist/esm/api/types/ThreadPoll.d.mts +22 -0
  556. package/dist/esm/api/types/ThreadPollCreate.d.mts +23 -0
  557. package/dist/esm/api/types/ThreadPollListResponse.d.mts +37 -0
  558. package/dist/esm/api/types/ThreadPollResponse.d.mts +27 -0
  559. package/dist/esm/api/types/ThreadPost.d.mts +21 -0
  560. package/dist/esm/api/types/ThreadPostListResponse.d.mts +36 -0
  561. package/dist/esm/api/types/ThreadPostResponse.d.mts +26 -0
  562. package/dist/esm/api/types/ThreadReaction.d.mts +14 -0
  563. package/dist/esm/api/types/ThreadReactionCreate.d.mts +18 -0
  564. package/dist/esm/api/types/ThreadReactionCreate.mjs +11 -0
  565. package/dist/esm/api/types/ThreadReactionListResponse.d.mts +29 -0
  566. package/dist/esm/api/types/ThreadReactionResponse.d.mts +19 -0
  567. package/dist/esm/api/types/ThreadResponse.d.mts +46 -41
  568. package/dist/esm/api/types/ThreadSubscriber.d.mts +14 -0
  569. package/dist/esm/api/types/ThreadSubscriberListResponse.d.mts +29 -0
  570. package/dist/esm/api/types/ThreadSubscriberResponse.d.mts +19 -0
  571. package/dist/esm/api/types/User.d.mts +38 -0
  572. package/dist/esm/api/types/UserFollower.d.mts +14 -0
  573. package/dist/esm/api/types/UserFollowerListResponse.d.mts +29 -0
  574. package/dist/esm/api/types/UserFollowerResponse.d.mts +19 -0
  575. package/dist/esm/api/types/UserFollowing.d.mts +14 -0
  576. package/dist/esm/api/types/UserFollowingListResponse.d.mts +29 -0
  577. package/dist/esm/api/types/UserFollowingResponse.d.mts +19 -0
  578. package/dist/esm/api/types/UserListResponse.d.mts +55 -0
  579. package/dist/esm/api/types/UserResponse.d.mts +37 -32
  580. package/dist/esm/api/types/Webhook.d.mts +19 -0
  581. package/dist/esm/api/types/WebhookDelivery.d.mts +11 -0
  582. package/dist/esm/api/types/WebhookDeliveryListResponse.d.mts +26 -0
  583. package/dist/esm/api/types/WebhookDeliveryResponse.d.mts +16 -0
  584. package/dist/esm/api/types/WebhookListResponse.d.mts +36 -0
  585. package/dist/esm/api/types/WebhookResponse.d.mts +22 -17
  586. package/dist/esm/api/types/index.d.mts +67 -0
  587. package/dist/esm/api/types/index.mjs +67 -0
  588. package/dist/esm/version.d.mts +1 -1
  589. package/dist/esm/version.mjs +1 -1
  590. package/package.json +1 -1
  591. package/reference.md +1164 -368
  592. package/dist/cjs/api/resources/auth/client/requests/PostAuthForgotPasswordRequest.d.ts +0 -10
  593. package/dist/cjs/api/resources/auth/client/requests/PostAuthLoginRequest.d.ts +0 -13
  594. package/dist/cjs/api/resources/auth/client/requests/PostAuthRegisterRequest.d.ts +0 -24
  595. package/dist/cjs/api/resources/auth/client/requests/PostAuthResetPasswordRequest.d.ts +0 -16
  596. package/dist/cjs/api/resources/auth/types/GetAuthMeResponse.d.ts +0 -9
  597. package/dist/cjs/api/resources/auth/types/PostAuthForgotPasswordResponse.d.ts +0 -9
  598. package/dist/cjs/api/resources/auth/types/PostAuthLoginResponse.d.ts +0 -22
  599. package/dist/cjs/api/resources/auth/types/PostAuthRegisterResponse.d.ts +0 -22
  600. package/dist/cjs/api/resources/auth/types/PostAuthResetPasswordResponse.d.ts +0 -8
  601. package/dist/cjs/api/resources/auth/types/index.d.ts +0 -5
  602. package/dist/cjs/api/resources/auth/types/index.js +0 -21
  603. package/dist/cjs/api/resources/integrations/client/requests/DeleteIntegrationsIdRequest.d.ts +0 -9
  604. package/dist/cjs/api/resources/integrations/client/requests/GetIntegrationsIdRequest.d.ts +0 -9
  605. package/dist/cjs/api/resources/integrations/client/requests/GetIntegrationsRequest.d.ts +0 -9
  606. package/dist/cjs/api/resources/integrations/client/requests/PatchIntegrationsIdRequest.d.ts +0 -15
  607. package/dist/cjs/api/resources/integrations/client/requests/PostIntegrationsRequest.d.ts +0 -16
  608. package/dist/cjs/api/resources/integrations/types/DeleteIntegrationsIdResponse.d.ts +0 -3
  609. package/dist/cjs/api/resources/integrations/types/GetIntegrationsIdResponse.d.ts +0 -30
  610. package/dist/cjs/api/resources/integrations/types/GetIntegrationsIdResponse.js +0 -19
  611. package/dist/cjs/api/resources/integrations/types/GetIntegrationsResponse.d.ts +0 -42
  612. package/dist/cjs/api/resources/integrations/types/GetIntegrationsResponse.js +0 -25
  613. package/dist/cjs/api/resources/integrations/types/PatchIntegrationsIdResponse.d.ts +0 -30
  614. package/dist/cjs/api/resources/integrations/types/PatchIntegrationsIdResponse.js +0 -19
  615. package/dist/cjs/api/resources/integrations/types/PostIntegrationsResponse.d.ts +0 -30
  616. package/dist/cjs/api/resources/integrations/types/PostIntegrationsResponse.js +0 -19
  617. package/dist/cjs/api/resources/notifications/client/requests/DeleteNotificationsIdRequest.d.ts +0 -9
  618. package/dist/cjs/api/resources/notifications/client/requests/GetNotificationsIdRequest.d.ts +0 -9
  619. package/dist/cjs/api/resources/notifications/client/requests/GetNotificationsRequest.d.ts +0 -9
  620. package/dist/cjs/api/resources/notifications/client/requests/PatchNotificationsIdRequest.d.ts +0 -23
  621. package/dist/cjs/api/resources/notifications/client/requests/PatchNotificationsIdRequest.js +0 -14
  622. package/dist/cjs/api/resources/notifications/client/requests/PostNotificationsRequest.d.ts +0 -37
  623. package/dist/cjs/api/resources/notifications/client/requests/PostNotificationsRequest.js +0 -14
  624. package/dist/cjs/api/resources/notifications/types/DeleteNotificationsIdResponse.d.ts +0 -3
  625. package/dist/cjs/api/resources/notifications/types/GetNotificationsIdResponse.d.ts +0 -30
  626. package/dist/cjs/api/resources/notifications/types/GetNotificationsResponse.d.ts +0 -42
  627. package/dist/cjs/api/resources/notifications/types/PatchNotificationsIdResponse.d.ts +0 -30
  628. package/dist/cjs/api/resources/notifications/types/PostNotificationsResponse.d.ts +0 -30
  629. package/dist/cjs/api/resources/posts/client/requests/DeletePostsIdPostsSubIdRequest.d.ts +0 -13
  630. package/dist/cjs/api/resources/posts/client/requests/DeletePostsIdReactionsRequest.d.ts +0 -10
  631. package/dist/cjs/api/resources/posts/client/requests/DeletePostsIdReactionsSubIdRequest.d.ts +0 -13
  632. package/dist/cjs/api/resources/posts/client/requests/DeletePostsIdRequest.d.ts +0 -9
  633. package/dist/cjs/api/resources/posts/client/requests/GetPostsIdPostsRequest.d.ts +0 -14
  634. package/dist/cjs/api/resources/posts/client/requests/GetPostsIdPostsSubIdRequest.d.ts +0 -13
  635. package/dist/cjs/api/resources/posts/client/requests/GetPostsIdReactionsRequest.d.ts +0 -14
  636. package/dist/cjs/api/resources/posts/client/requests/GetPostsIdReactionsSubIdRequest.d.ts +0 -13
  637. package/dist/cjs/api/resources/posts/client/requests/GetPostsIdRequest.d.ts +0 -9
  638. package/dist/cjs/api/resources/posts/client/requests/GetPostsRequest.d.ts +0 -9
  639. package/dist/cjs/api/resources/posts/client/requests/PatchPostsIdRequest.d.ts +0 -17
  640. package/dist/cjs/api/resources/posts/client/requests/PostPostsIdReactionsRequest.d.ts +0 -27
  641. package/dist/cjs/api/resources/posts/client/requests/PostPostsIdReactionsRequest.js +0 -14
  642. package/dist/cjs/api/resources/posts/client/requests/PostPostsRequest.d.ts +0 -18
  643. package/dist/cjs/api/resources/posts/types/DeletePostsIdPostsSubIdResponse.d.ts +0 -3
  644. package/dist/cjs/api/resources/posts/types/DeletePostsIdReactionsResponse.d.ts +0 -3
  645. package/dist/cjs/api/resources/posts/types/DeletePostsIdReactionsSubIdResponse.d.ts +0 -3
  646. package/dist/cjs/api/resources/posts/types/DeletePostsIdResponse.d.ts +0 -3
  647. package/dist/cjs/api/resources/posts/types/GetPostsIdPostsResponse.d.ts +0 -16
  648. package/dist/cjs/api/resources/posts/types/GetPostsIdPostsSubIdResponse.d.ts +0 -6
  649. package/dist/cjs/api/resources/posts/types/GetPostsIdReactionsResponse.d.ts +0 -16
  650. package/dist/cjs/api/resources/posts/types/GetPostsIdReactionsSubIdResponse.d.ts +0 -6
  651. package/dist/cjs/api/resources/posts/types/GetPostsIdResponse.d.ts +0 -23
  652. package/dist/cjs/api/resources/posts/types/GetPostsResponse.d.ts +0 -35
  653. package/dist/cjs/api/resources/posts/types/PatchPostsIdResponse.d.ts +0 -23
  654. package/dist/cjs/api/resources/posts/types/PostPostsIdReactionsResponse.d.ts +0 -6
  655. package/dist/cjs/api/resources/posts/types/PostPostsResponse.d.ts +0 -23
  656. package/dist/cjs/api/resources/privateMessages/client/requests/DeletePrivateMessagesIdRepliesSubIdRequest.d.ts +0 -13
  657. package/dist/cjs/api/resources/privateMessages/client/requests/DeletePrivateMessagesIdRequest.d.ts +0 -9
  658. package/dist/cjs/api/resources/privateMessages/client/requests/GetPrivateMessagesIdRepliesRequest.d.ts +0 -14
  659. package/dist/cjs/api/resources/privateMessages/client/requests/GetPrivateMessagesIdRepliesSubIdRequest.d.ts +0 -13
  660. package/dist/cjs/api/resources/privateMessages/client/requests/GetPrivateMessagesIdRequest.d.ts +0 -9
  661. package/dist/cjs/api/resources/privateMessages/client/requests/GetPrivateMessagesRequest.d.ts +0 -9
  662. package/dist/cjs/api/resources/privateMessages/client/requests/PostPrivateMessagesIdRepliesRequest.d.ts +0 -24
  663. package/dist/cjs/api/resources/privateMessages/client/requests/PostPrivateMessagesRequest.d.ts +0 -21
  664. package/dist/cjs/api/resources/privateMessages/types/DeletePrivateMessagesIdRepliesSubIdResponse.d.ts +0 -3
  665. package/dist/cjs/api/resources/privateMessages/types/DeletePrivateMessagesIdResponse.d.ts +0 -3
  666. package/dist/cjs/api/resources/privateMessages/types/GetPrivateMessagesIdRepliesResponse.d.ts +0 -16
  667. package/dist/cjs/api/resources/privateMessages/types/GetPrivateMessagesIdRepliesSubIdResponse.d.ts +0 -6
  668. package/dist/cjs/api/resources/privateMessages/types/GetPrivateMessagesIdResponse.d.ts +0 -26
  669. package/dist/cjs/api/resources/privateMessages/types/GetPrivateMessagesResponse.d.ts +0 -38
  670. package/dist/cjs/api/resources/privateMessages/types/PostPrivateMessagesIdRepliesResponse.d.ts +0 -6
  671. package/dist/cjs/api/resources/privateMessages/types/PostPrivateMessagesResponse.d.ts +0 -26
  672. package/dist/cjs/api/resources/reports/client/requests/DeleteReportsIdRequest.d.ts +0 -9
  673. package/dist/cjs/api/resources/reports/client/requests/GetReportsIdRequest.d.ts +0 -9
  674. package/dist/cjs/api/resources/reports/client/requests/GetReportsRequest.d.ts +0 -9
  675. package/dist/cjs/api/resources/reports/client/requests/PostReportsRequest.d.ts +0 -22
  676. package/dist/cjs/api/resources/reports/types/DeleteReportsIdResponse.d.ts +0 -3
  677. package/dist/cjs/api/resources/reports/types/GetReportsIdResponse.d.ts +0 -28
  678. package/dist/cjs/api/resources/reports/types/GetReportsResponse.d.ts +0 -40
  679. package/dist/cjs/api/resources/reports/types/PostReportsResponse.d.ts +0 -28
  680. package/dist/cjs/api/resources/reports/types/index.d.ts +0 -4
  681. package/dist/cjs/api/resources/reports/types/index.js +0 -20
  682. package/dist/cjs/api/resources/roles/client/requests/DeleteRolesIdRequest.d.ts +0 -9
  683. package/dist/cjs/api/resources/roles/client/requests/GetRolesIdRequest.d.ts +0 -9
  684. package/dist/cjs/api/resources/roles/client/requests/GetRolesRequest.d.ts +0 -9
  685. package/dist/cjs/api/resources/roles/client/requests/PatchRolesIdRequest.d.ts +0 -19
  686. package/dist/cjs/api/resources/roles/client/requests/PostRolesRequest.d.ts +0 -18
  687. package/dist/cjs/api/resources/roles/types/DeleteRolesIdResponse.d.ts +0 -3
  688. package/dist/cjs/api/resources/roles/types/GetRolesIdResponse.d.ts +0 -22
  689. package/dist/cjs/api/resources/roles/types/GetRolesResponse.d.ts +0 -34
  690. package/dist/cjs/api/resources/roles/types/PatchRolesIdResponse.d.ts +0 -22
  691. package/dist/cjs/api/resources/roles/types/PostRolesResponse.d.ts +0 -22
  692. package/dist/cjs/api/resources/ssOs/client/requests/DeleteSsoIdRequest.d.ts +0 -9
  693. package/dist/cjs/api/resources/ssOs/client/requests/GetSsoIdRequest.d.ts +0 -9
  694. package/dist/cjs/api/resources/ssOs/client/requests/GetSsoRequest.d.ts +0 -9
  695. package/dist/cjs/api/resources/ssOs/client/requests/PatchSsoIdRequest.d.ts +0 -21
  696. package/dist/cjs/api/resources/ssOs/client/requests/PostSsoRequest.d.ts +0 -22
  697. package/dist/cjs/api/resources/ssOs/types/DeleteSsoIdResponse.d.ts +0 -3
  698. package/dist/cjs/api/resources/ssOs/types/GetSsoIdResponse.d.ts +0 -27
  699. package/dist/cjs/api/resources/ssOs/types/GetSsoIdResponse.js +0 -16
  700. package/dist/cjs/api/resources/ssOs/types/GetSsoResponse.d.ts +0 -39
  701. package/dist/cjs/api/resources/ssOs/types/GetSsoResponse.js +0 -22
  702. package/dist/cjs/api/resources/ssOs/types/PatchSsoIdResponse.d.ts +0 -27
  703. package/dist/cjs/api/resources/ssOs/types/PatchSsoIdResponse.js +0 -16
  704. package/dist/cjs/api/resources/ssOs/types/PostSsoResponse.d.ts +0 -27
  705. package/dist/cjs/api/resources/ssOs/types/PostSsoResponse.js +0 -16
  706. package/dist/cjs/api/resources/tags/client/requests/DeleteTagsIdRequest.d.ts +0 -9
  707. package/dist/cjs/api/resources/tags/client/requests/DeleteTagsIdSubscribersSubIdRequest.d.ts +0 -13
  708. package/dist/cjs/api/resources/tags/client/requests/GetTagsIdRequest.d.ts +0 -9
  709. package/dist/cjs/api/resources/tags/client/requests/GetTagsIdSubscribersRequest.d.ts +0 -14
  710. package/dist/cjs/api/resources/tags/client/requests/GetTagsIdSubscribersSubIdRequest.d.ts +0 -13
  711. package/dist/cjs/api/resources/tags/client/requests/GetTagsRequest.d.ts +0 -9
  712. package/dist/cjs/api/resources/tags/client/requests/PatchTagsIdRequest.d.ts +0 -19
  713. package/dist/cjs/api/resources/tags/client/requests/PostTagsRequest.d.ts +0 -18
  714. package/dist/cjs/api/resources/tags/types/DeleteTagsIdResponse.d.ts +0 -3
  715. package/dist/cjs/api/resources/tags/types/DeleteTagsIdSubscribersSubIdResponse.d.ts +0 -3
  716. package/dist/cjs/api/resources/tags/types/GetTagsIdResponse.d.ts +0 -22
  717. package/dist/cjs/api/resources/tags/types/GetTagsIdSubscribersResponse.d.ts +0 -16
  718. package/dist/cjs/api/resources/tags/types/GetTagsIdSubscribersSubIdResponse.d.ts +0 -6
  719. package/dist/cjs/api/resources/tags/types/GetTagsResponse.d.ts +0 -34
  720. package/dist/cjs/api/resources/tags/types/PatchTagsIdResponse.d.ts +0 -22
  721. package/dist/cjs/api/resources/tags/types/PostTagsResponse.d.ts +0 -22
  722. package/dist/cjs/api/resources/threads/client/requests/DeleteThreadsIdPostsSubIdRequest.d.ts +0 -13
  723. package/dist/cjs/api/resources/threads/client/requests/DeleteThreadsIdReactionsRequest.d.ts +0 -10
  724. package/dist/cjs/api/resources/threads/client/requests/DeleteThreadsIdReactionsSubIdRequest.d.ts +0 -13
  725. package/dist/cjs/api/resources/threads/client/requests/DeleteThreadsIdRequest.d.ts +0 -9
  726. package/dist/cjs/api/resources/threads/client/requests/DeleteThreadsIdSubscribersSubIdRequest.d.ts +0 -13
  727. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdPollRequest.d.ts +0 -10
  728. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdPostsRequest.d.ts +0 -14
  729. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdPostsSubIdRequest.d.ts +0 -13
  730. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdReactionsRequest.d.ts +0 -14
  731. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdReactionsSubIdRequest.d.ts +0 -13
  732. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdRequest.d.ts +0 -9
  733. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdSubscribersRequest.d.ts +0 -14
  734. package/dist/cjs/api/resources/threads/client/requests/GetThreadsIdSubscribersSubIdRequest.d.ts +0 -13
  735. package/dist/cjs/api/resources/threads/client/requests/GetThreadsRequest.d.ts +0 -9
  736. package/dist/cjs/api/resources/threads/client/requests/PatchThreadsIdPollRequest.d.ts +0 -18
  737. package/dist/cjs/api/resources/threads/client/requests/PatchThreadsIdRequest.d.ts +0 -21
  738. package/dist/cjs/api/resources/threads/client/requests/PostThreadsIdPollRequest.d.ts +0 -35
  739. package/dist/cjs/api/resources/threads/client/requests/PostThreadsIdReactionsRequest.d.ts +0 -27
  740. package/dist/cjs/api/resources/threads/client/requests/PostThreadsIdReactionsRequest.js +0 -14
  741. package/dist/cjs/api/resources/threads/client/requests/PostThreadsRequest.d.ts +0 -40
  742. package/dist/cjs/api/resources/threads/types/DeleteThreadsIdPostsSubIdResponse.d.ts +0 -3
  743. package/dist/cjs/api/resources/threads/types/DeleteThreadsIdReactionsResponse.d.ts +0 -3
  744. package/dist/cjs/api/resources/threads/types/DeleteThreadsIdReactionsSubIdResponse.d.ts +0 -3
  745. package/dist/cjs/api/resources/threads/types/DeleteThreadsIdResponse.d.ts +0 -3
  746. package/dist/cjs/api/resources/threads/types/DeleteThreadsIdSubscribersSubIdResponse.d.ts +0 -3
  747. package/dist/cjs/api/resources/threads/types/GetThreadsIdPollResponse.d.ts +0 -6
  748. package/dist/cjs/api/resources/threads/types/GetThreadsIdPostsResponse.d.ts +0 -16
  749. package/dist/cjs/api/resources/threads/types/GetThreadsIdPostsSubIdResponse.d.ts +0 -6
  750. package/dist/cjs/api/resources/threads/types/GetThreadsIdReactionsResponse.d.ts +0 -16
  751. package/dist/cjs/api/resources/threads/types/GetThreadsIdReactionsSubIdResponse.d.ts +0 -6
  752. package/dist/cjs/api/resources/threads/types/GetThreadsIdResponse.d.ts +0 -55
  753. package/dist/cjs/api/resources/threads/types/GetThreadsIdSubscribersResponse.d.ts +0 -16
  754. package/dist/cjs/api/resources/threads/types/GetThreadsIdSubscribersSubIdResponse.d.ts +0 -6
  755. package/dist/cjs/api/resources/threads/types/GetThreadsResponse.d.ts +0 -67
  756. package/dist/cjs/api/resources/threads/types/PatchThreadsIdPollResponse.d.ts +0 -6
  757. package/dist/cjs/api/resources/threads/types/PatchThreadsIdResponse.d.ts +0 -55
  758. package/dist/cjs/api/resources/threads/types/PostThreadsIdPollResponse.d.ts +0 -6
  759. package/dist/cjs/api/resources/threads/types/PostThreadsIdReactionsResponse.d.ts +0 -6
  760. package/dist/cjs/api/resources/threads/types/PostThreadsResponse.d.ts +0 -55
  761. package/dist/cjs/api/resources/users/client/requests/DeleteUsersIdFollowersSubIdRequest.d.ts +0 -13
  762. package/dist/cjs/api/resources/users/client/requests/DeleteUsersIdFollowingSubIdRequest.d.ts +0 -13
  763. package/dist/cjs/api/resources/users/client/requests/DeleteUsersIdRequest.d.ts +0 -9
  764. package/dist/cjs/api/resources/users/client/requests/GetUsersIdFollowersRequest.d.ts +0 -14
  765. package/dist/cjs/api/resources/users/client/requests/GetUsersIdFollowersSubIdRequest.d.ts +0 -13
  766. package/dist/cjs/api/resources/users/client/requests/GetUsersIdFollowingRequest.d.ts +0 -14
  767. package/dist/cjs/api/resources/users/client/requests/GetUsersIdFollowingSubIdRequest.d.ts +0 -13
  768. package/dist/cjs/api/resources/users/client/requests/GetUsersIdRequest.d.ts +0 -9
  769. package/dist/cjs/api/resources/users/client/requests/GetUsersRequest.d.ts +0 -9
  770. package/dist/cjs/api/resources/users/client/requests/PatchUsersIdRequest.d.ts +0 -27
  771. package/dist/cjs/api/resources/users/types/DeleteUsersIdFollowersSubIdResponse.d.ts +0 -3
  772. package/dist/cjs/api/resources/users/types/DeleteUsersIdFollowingSubIdResponse.d.ts +0 -3
  773. package/dist/cjs/api/resources/users/types/DeleteUsersIdResponse.d.ts +0 -3
  774. package/dist/cjs/api/resources/users/types/GetUsersIdFollowersResponse.d.ts +0 -16
  775. package/dist/cjs/api/resources/users/types/GetUsersIdFollowersSubIdResponse.d.ts +0 -6
  776. package/dist/cjs/api/resources/users/types/GetUsersIdFollowingResponse.d.ts +0 -16
  777. package/dist/cjs/api/resources/users/types/GetUsersIdFollowingSubIdResponse.d.ts +0 -6
  778. package/dist/cjs/api/resources/users/types/GetUsersIdResponse.d.ts +0 -43
  779. package/dist/cjs/api/resources/users/types/GetUsersResponse.d.ts +0 -55
  780. package/dist/cjs/api/resources/users/types/PatchUsersIdResponse.d.ts +0 -43
  781. package/dist/cjs/api/resources/webhooks/client/requests/DeleteWebhooksIdDeliveriesSubIdRequest.d.ts +0 -13
  782. package/dist/cjs/api/resources/webhooks/client/requests/DeleteWebhooksIdRequest.d.ts +0 -9
  783. package/dist/cjs/api/resources/webhooks/client/requests/GetWebhooksIdDeliveriesRequest.d.ts +0 -14
  784. package/dist/cjs/api/resources/webhooks/client/requests/GetWebhooksIdDeliveriesSubIdRequest.d.ts +0 -13
  785. package/dist/cjs/api/resources/webhooks/client/requests/GetWebhooksIdRequest.d.ts +0 -9
  786. package/dist/cjs/api/resources/webhooks/client/requests/GetWebhooksRequest.d.ts +0 -9
  787. package/dist/cjs/api/resources/webhooks/client/requests/GetWebhooksRequest.js +0 -3
  788. package/dist/cjs/api/resources/webhooks/client/requests/PostWebhooksRequest.d.ts +0 -18
  789. package/dist/cjs/api/resources/webhooks/client/requests/PostWebhooksRequest.js +0 -3
  790. package/dist/cjs/api/resources/webhooks/types/DeleteWebhooksIdDeliveriesSubIdResponse.d.ts +0 -3
  791. package/dist/cjs/api/resources/webhooks/types/DeleteWebhooksIdDeliveriesSubIdResponse.js +0 -3
  792. package/dist/cjs/api/resources/webhooks/types/DeleteWebhooksIdResponse.d.ts +0 -3
  793. package/dist/cjs/api/resources/webhooks/types/DeleteWebhooksIdResponse.js +0 -3
  794. package/dist/cjs/api/resources/webhooks/types/GetWebhooksIdDeliveriesResponse.d.ts +0 -16
  795. package/dist/cjs/api/resources/webhooks/types/GetWebhooksIdDeliveriesResponse.js +0 -3
  796. package/dist/cjs/api/resources/webhooks/types/GetWebhooksIdDeliveriesSubIdResponse.d.ts +0 -6
  797. package/dist/cjs/api/resources/webhooks/types/GetWebhooksIdDeliveriesSubIdResponse.js +0 -3
  798. package/dist/cjs/api/resources/webhooks/types/GetWebhooksIdResponse.d.ts +0 -24
  799. package/dist/cjs/api/resources/webhooks/types/GetWebhooksIdResponse.js +0 -3
  800. package/dist/cjs/api/resources/webhooks/types/GetWebhooksResponse.d.ts +0 -36
  801. package/dist/cjs/api/resources/webhooks/types/GetWebhooksResponse.js +0 -3
  802. package/dist/cjs/api/resources/webhooks/types/PostWebhooksResponse.d.ts +0 -24
  803. package/dist/cjs/api/resources/webhooks/types/PostWebhooksResponse.js +0 -3
  804. package/dist/esm/api/resources/auth/client/requests/PostAuthForgotPasswordRequest.d.mts +0 -10
  805. package/dist/esm/api/resources/auth/client/requests/PostAuthLoginRequest.d.mts +0 -13
  806. package/dist/esm/api/resources/auth/client/requests/PostAuthRegisterRequest.d.mts +0 -24
  807. package/dist/esm/api/resources/auth/client/requests/PostAuthResetPasswordRequest.d.mts +0 -16
  808. package/dist/esm/api/resources/auth/types/GetAuthMeResponse.d.mts +0 -9
  809. package/dist/esm/api/resources/auth/types/PostAuthForgotPasswordResponse.d.mts +0 -9
  810. package/dist/esm/api/resources/auth/types/PostAuthLoginResponse.d.mts +0 -22
  811. package/dist/esm/api/resources/auth/types/PostAuthRegisterResponse.d.mts +0 -22
  812. package/dist/esm/api/resources/auth/types/PostAuthResetPasswordResponse.d.mts +0 -8
  813. package/dist/esm/api/resources/auth/types/index.d.mts +0 -5
  814. package/dist/esm/api/resources/auth/types/index.mjs +0 -5
  815. package/dist/esm/api/resources/integrations/client/requests/DeleteIntegrationsIdRequest.d.mts +0 -9
  816. package/dist/esm/api/resources/integrations/client/requests/GetIntegrationsIdRequest.d.mts +0 -9
  817. package/dist/esm/api/resources/integrations/client/requests/GetIntegrationsRequest.d.mts +0 -9
  818. package/dist/esm/api/resources/integrations/client/requests/PatchIntegrationsIdRequest.d.mts +0 -15
  819. package/dist/esm/api/resources/integrations/client/requests/PostIntegrationsRequest.d.mts +0 -16
  820. package/dist/esm/api/resources/integrations/types/DeleteIntegrationsIdResponse.d.mts +0 -3
  821. package/dist/esm/api/resources/integrations/types/GetIntegrationsIdResponse.d.mts +0 -30
  822. package/dist/esm/api/resources/integrations/types/GetIntegrationsIdResponse.mjs +0 -16
  823. package/dist/esm/api/resources/integrations/types/GetIntegrationsResponse.d.mts +0 -42
  824. package/dist/esm/api/resources/integrations/types/GetIntegrationsResponse.mjs +0 -22
  825. package/dist/esm/api/resources/integrations/types/PatchIntegrationsIdResponse.d.mts +0 -30
  826. package/dist/esm/api/resources/integrations/types/PatchIntegrationsIdResponse.mjs +0 -16
  827. package/dist/esm/api/resources/integrations/types/PostIntegrationsResponse.d.mts +0 -30
  828. package/dist/esm/api/resources/integrations/types/PostIntegrationsResponse.mjs +0 -16
  829. package/dist/esm/api/resources/notifications/client/requests/DeleteNotificationsIdRequest.d.mts +0 -9
  830. package/dist/esm/api/resources/notifications/client/requests/GetNotificationsIdRequest.d.mts +0 -9
  831. package/dist/esm/api/resources/notifications/client/requests/GetNotificationsRequest.d.mts +0 -9
  832. package/dist/esm/api/resources/notifications/client/requests/PatchNotificationsIdRequest.d.mts +0 -23
  833. package/dist/esm/api/resources/notifications/client/requests/PatchNotificationsIdRequest.mjs +0 -11
  834. package/dist/esm/api/resources/notifications/client/requests/PostNotificationsRequest.d.mts +0 -37
  835. package/dist/esm/api/resources/notifications/client/requests/PostNotificationsRequest.mjs +0 -11
  836. package/dist/esm/api/resources/notifications/types/DeleteNotificationsIdResponse.d.mts +0 -3
  837. package/dist/esm/api/resources/notifications/types/GetNotificationsIdResponse.d.mts +0 -30
  838. package/dist/esm/api/resources/notifications/types/GetNotificationsResponse.d.mts +0 -42
  839. package/dist/esm/api/resources/notifications/types/PatchNotificationsIdResponse.d.mts +0 -30
  840. package/dist/esm/api/resources/notifications/types/PostNotificationsResponse.d.mts +0 -30
  841. package/dist/esm/api/resources/posts/client/requests/DeletePostsIdPostsSubIdRequest.d.mts +0 -13
  842. package/dist/esm/api/resources/posts/client/requests/DeletePostsIdReactionsRequest.d.mts +0 -10
  843. package/dist/esm/api/resources/posts/client/requests/DeletePostsIdReactionsSubIdRequest.d.mts +0 -13
  844. package/dist/esm/api/resources/posts/client/requests/DeletePostsIdRequest.d.mts +0 -9
  845. package/dist/esm/api/resources/posts/client/requests/GetPostsIdPostsRequest.d.mts +0 -14
  846. package/dist/esm/api/resources/posts/client/requests/GetPostsIdPostsSubIdRequest.d.mts +0 -13
  847. package/dist/esm/api/resources/posts/client/requests/GetPostsIdReactionsRequest.d.mts +0 -14
  848. package/dist/esm/api/resources/posts/client/requests/GetPostsIdReactionsSubIdRequest.d.mts +0 -13
  849. package/dist/esm/api/resources/posts/client/requests/GetPostsIdRequest.d.mts +0 -9
  850. package/dist/esm/api/resources/posts/client/requests/GetPostsRequest.d.mts +0 -9
  851. package/dist/esm/api/resources/posts/client/requests/PatchPostsIdRequest.d.mts +0 -17
  852. package/dist/esm/api/resources/posts/client/requests/PostPostsIdReactionsRequest.d.mts +0 -27
  853. package/dist/esm/api/resources/posts/client/requests/PostPostsIdReactionsRequest.mjs +0 -11
  854. package/dist/esm/api/resources/posts/client/requests/PostPostsRequest.d.mts +0 -18
  855. package/dist/esm/api/resources/posts/types/DeletePostsIdPostsSubIdResponse.d.mts +0 -3
  856. package/dist/esm/api/resources/posts/types/DeletePostsIdReactionsResponse.d.mts +0 -3
  857. package/dist/esm/api/resources/posts/types/DeletePostsIdReactionsSubIdResponse.d.mts +0 -3
  858. package/dist/esm/api/resources/posts/types/DeletePostsIdResponse.d.mts +0 -3
  859. package/dist/esm/api/resources/posts/types/GetPostsIdPostsResponse.d.mts +0 -16
  860. package/dist/esm/api/resources/posts/types/GetPostsIdPostsSubIdResponse.d.mts +0 -6
  861. package/dist/esm/api/resources/posts/types/GetPostsIdReactionsResponse.d.mts +0 -16
  862. package/dist/esm/api/resources/posts/types/GetPostsIdReactionsSubIdResponse.d.mts +0 -6
  863. package/dist/esm/api/resources/posts/types/GetPostsIdResponse.d.mts +0 -23
  864. package/dist/esm/api/resources/posts/types/GetPostsResponse.d.mts +0 -35
  865. package/dist/esm/api/resources/posts/types/PatchPostsIdResponse.d.mts +0 -23
  866. package/dist/esm/api/resources/posts/types/PostPostsIdReactionsResponse.d.mts +0 -6
  867. package/dist/esm/api/resources/posts/types/PostPostsResponse.d.mts +0 -23
  868. package/dist/esm/api/resources/privateMessages/client/requests/DeletePrivateMessagesIdRepliesSubIdRequest.d.mts +0 -13
  869. package/dist/esm/api/resources/privateMessages/client/requests/DeletePrivateMessagesIdRequest.d.mts +0 -9
  870. package/dist/esm/api/resources/privateMessages/client/requests/GetPrivateMessagesIdRepliesRequest.d.mts +0 -14
  871. package/dist/esm/api/resources/privateMessages/client/requests/GetPrivateMessagesIdRepliesSubIdRequest.d.mts +0 -13
  872. package/dist/esm/api/resources/privateMessages/client/requests/GetPrivateMessagesIdRequest.d.mts +0 -9
  873. package/dist/esm/api/resources/privateMessages/client/requests/GetPrivateMessagesRequest.d.mts +0 -9
  874. package/dist/esm/api/resources/privateMessages/client/requests/PostPrivateMessagesIdRepliesRequest.d.mts +0 -24
  875. package/dist/esm/api/resources/privateMessages/client/requests/PostPrivateMessagesRequest.d.mts +0 -21
  876. package/dist/esm/api/resources/privateMessages/types/DeletePrivateMessagesIdRepliesSubIdResponse.d.mts +0 -3
  877. package/dist/esm/api/resources/privateMessages/types/DeletePrivateMessagesIdResponse.d.mts +0 -3
  878. package/dist/esm/api/resources/privateMessages/types/GetPrivateMessagesIdRepliesResponse.d.mts +0 -16
  879. package/dist/esm/api/resources/privateMessages/types/GetPrivateMessagesIdRepliesSubIdResponse.d.mts +0 -6
  880. package/dist/esm/api/resources/privateMessages/types/GetPrivateMessagesIdResponse.d.mts +0 -26
  881. package/dist/esm/api/resources/privateMessages/types/GetPrivateMessagesResponse.d.mts +0 -38
  882. package/dist/esm/api/resources/privateMessages/types/PostPrivateMessagesIdRepliesResponse.d.mts +0 -6
  883. package/dist/esm/api/resources/privateMessages/types/PostPrivateMessagesResponse.d.mts +0 -26
  884. package/dist/esm/api/resources/reports/client/requests/DeleteReportsIdRequest.d.mts +0 -9
  885. package/dist/esm/api/resources/reports/client/requests/GetReportsIdRequest.d.mts +0 -9
  886. package/dist/esm/api/resources/reports/client/requests/GetReportsRequest.d.mts +0 -9
  887. package/dist/esm/api/resources/reports/client/requests/PostReportsRequest.d.mts +0 -22
  888. package/dist/esm/api/resources/reports/types/DeleteReportsIdResponse.d.mts +0 -3
  889. package/dist/esm/api/resources/reports/types/GetReportsIdResponse.d.mts +0 -28
  890. package/dist/esm/api/resources/reports/types/GetReportsResponse.d.mts +0 -40
  891. package/dist/esm/api/resources/reports/types/PostReportsResponse.d.mts +0 -28
  892. package/dist/esm/api/resources/reports/types/index.d.mts +0 -4
  893. package/dist/esm/api/resources/reports/types/index.mjs +0 -4
  894. package/dist/esm/api/resources/roles/client/requests/DeleteRolesIdRequest.d.mts +0 -9
  895. package/dist/esm/api/resources/roles/client/requests/GetRolesIdRequest.d.mts +0 -9
  896. package/dist/esm/api/resources/roles/client/requests/GetRolesRequest.d.mts +0 -9
  897. package/dist/esm/api/resources/roles/client/requests/PatchRolesIdRequest.d.mts +0 -19
  898. package/dist/esm/api/resources/roles/client/requests/PostRolesRequest.d.mts +0 -18
  899. package/dist/esm/api/resources/roles/types/DeleteRolesIdResponse.d.mts +0 -3
  900. package/dist/esm/api/resources/roles/types/GetRolesIdResponse.d.mts +0 -22
  901. package/dist/esm/api/resources/roles/types/GetRolesResponse.d.mts +0 -34
  902. package/dist/esm/api/resources/roles/types/PatchRolesIdResponse.d.mts +0 -22
  903. package/dist/esm/api/resources/roles/types/PostRolesResponse.d.mts +0 -22
  904. package/dist/esm/api/resources/ssOs/client/requests/DeleteSsoIdRequest.d.mts +0 -9
  905. package/dist/esm/api/resources/ssOs/client/requests/GetSsoIdRequest.d.mts +0 -9
  906. package/dist/esm/api/resources/ssOs/client/requests/GetSsoRequest.d.mts +0 -9
  907. package/dist/esm/api/resources/ssOs/client/requests/PatchSsoIdRequest.d.mts +0 -21
  908. package/dist/esm/api/resources/ssOs/client/requests/PostSsoRequest.d.mts +0 -22
  909. package/dist/esm/api/resources/ssOs/types/DeleteSsoIdResponse.d.mts +0 -3
  910. package/dist/esm/api/resources/ssOs/types/GetSsoIdResponse.d.mts +0 -27
  911. package/dist/esm/api/resources/ssOs/types/GetSsoIdResponse.mjs +0 -13
  912. package/dist/esm/api/resources/ssOs/types/GetSsoResponse.d.mts +0 -39
  913. package/dist/esm/api/resources/ssOs/types/GetSsoResponse.mjs +0 -19
  914. package/dist/esm/api/resources/ssOs/types/PatchSsoIdResponse.d.mts +0 -27
  915. package/dist/esm/api/resources/ssOs/types/PatchSsoIdResponse.mjs +0 -13
  916. package/dist/esm/api/resources/ssOs/types/PostSsoResponse.d.mts +0 -27
  917. package/dist/esm/api/resources/ssOs/types/PostSsoResponse.mjs +0 -13
  918. package/dist/esm/api/resources/tags/client/requests/DeleteTagsIdRequest.d.mts +0 -9
  919. package/dist/esm/api/resources/tags/client/requests/DeleteTagsIdSubscribersSubIdRequest.d.mts +0 -13
  920. package/dist/esm/api/resources/tags/client/requests/GetTagsIdRequest.d.mts +0 -9
  921. package/dist/esm/api/resources/tags/client/requests/GetTagsIdSubscribersRequest.d.mts +0 -14
  922. package/dist/esm/api/resources/tags/client/requests/GetTagsIdSubscribersSubIdRequest.d.mts +0 -13
  923. package/dist/esm/api/resources/tags/client/requests/GetTagsRequest.d.mts +0 -9
  924. package/dist/esm/api/resources/tags/client/requests/PatchTagsIdRequest.d.mts +0 -19
  925. package/dist/esm/api/resources/tags/client/requests/PostTagsRequest.d.mts +0 -18
  926. package/dist/esm/api/resources/tags/types/DeleteTagsIdResponse.d.mts +0 -3
  927. package/dist/esm/api/resources/tags/types/DeleteTagsIdSubscribersSubIdResponse.d.mts +0 -3
  928. package/dist/esm/api/resources/tags/types/GetTagsIdResponse.d.mts +0 -22
  929. package/dist/esm/api/resources/tags/types/GetTagsIdSubscribersResponse.d.mts +0 -16
  930. package/dist/esm/api/resources/tags/types/GetTagsIdSubscribersSubIdResponse.d.mts +0 -6
  931. package/dist/esm/api/resources/tags/types/GetTagsResponse.d.mts +0 -34
  932. package/dist/esm/api/resources/tags/types/PatchTagsIdResponse.d.mts +0 -22
  933. package/dist/esm/api/resources/tags/types/PostTagsResponse.d.mts +0 -22
  934. package/dist/esm/api/resources/threads/client/requests/DeleteThreadsIdPostsSubIdRequest.d.mts +0 -13
  935. package/dist/esm/api/resources/threads/client/requests/DeleteThreadsIdReactionsRequest.d.mts +0 -10
  936. package/dist/esm/api/resources/threads/client/requests/DeleteThreadsIdReactionsSubIdRequest.d.mts +0 -13
  937. package/dist/esm/api/resources/threads/client/requests/DeleteThreadsIdRequest.d.mts +0 -9
  938. package/dist/esm/api/resources/threads/client/requests/DeleteThreadsIdSubscribersSubIdRequest.d.mts +0 -13
  939. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdPollRequest.d.mts +0 -10
  940. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdPostsRequest.d.mts +0 -14
  941. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdPostsSubIdRequest.d.mts +0 -13
  942. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdReactionsRequest.d.mts +0 -14
  943. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdReactionsSubIdRequest.d.mts +0 -13
  944. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdRequest.d.mts +0 -9
  945. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdSubscribersRequest.d.mts +0 -14
  946. package/dist/esm/api/resources/threads/client/requests/GetThreadsIdSubscribersSubIdRequest.d.mts +0 -13
  947. package/dist/esm/api/resources/threads/client/requests/GetThreadsRequest.d.mts +0 -9
  948. package/dist/esm/api/resources/threads/client/requests/PatchThreadsIdPollRequest.d.mts +0 -18
  949. package/dist/esm/api/resources/threads/client/requests/PatchThreadsIdRequest.d.mts +0 -21
  950. package/dist/esm/api/resources/threads/client/requests/PostThreadsIdPollRequest.d.mts +0 -35
  951. package/dist/esm/api/resources/threads/client/requests/PostThreadsIdReactionsRequest.d.mts +0 -27
  952. package/dist/esm/api/resources/threads/client/requests/PostThreadsIdReactionsRequest.mjs +0 -11
  953. package/dist/esm/api/resources/threads/client/requests/PostThreadsRequest.d.mts +0 -40
  954. package/dist/esm/api/resources/threads/types/DeleteThreadsIdPostsSubIdResponse.d.mts +0 -3
  955. package/dist/esm/api/resources/threads/types/DeleteThreadsIdReactionsResponse.d.mts +0 -3
  956. package/dist/esm/api/resources/threads/types/DeleteThreadsIdReactionsSubIdResponse.d.mts +0 -3
  957. package/dist/esm/api/resources/threads/types/DeleteThreadsIdResponse.d.mts +0 -3
  958. package/dist/esm/api/resources/threads/types/DeleteThreadsIdSubscribersSubIdResponse.d.mts +0 -3
  959. package/dist/esm/api/resources/threads/types/GetThreadsIdPollResponse.d.mts +0 -6
  960. package/dist/esm/api/resources/threads/types/GetThreadsIdPostsResponse.d.mts +0 -16
  961. package/dist/esm/api/resources/threads/types/GetThreadsIdPostsSubIdResponse.d.mts +0 -6
  962. package/dist/esm/api/resources/threads/types/GetThreadsIdReactionsResponse.d.mts +0 -16
  963. package/dist/esm/api/resources/threads/types/GetThreadsIdReactionsSubIdResponse.d.mts +0 -6
  964. package/dist/esm/api/resources/threads/types/GetThreadsIdResponse.d.mts +0 -55
  965. package/dist/esm/api/resources/threads/types/GetThreadsIdSubscribersResponse.d.mts +0 -16
  966. package/dist/esm/api/resources/threads/types/GetThreadsIdSubscribersSubIdResponse.d.mts +0 -6
  967. package/dist/esm/api/resources/threads/types/GetThreadsResponse.d.mts +0 -67
  968. package/dist/esm/api/resources/threads/types/PatchThreadsIdPollResponse.d.mts +0 -6
  969. package/dist/esm/api/resources/threads/types/PatchThreadsIdResponse.d.mts +0 -55
  970. package/dist/esm/api/resources/threads/types/PostThreadsIdPollResponse.d.mts +0 -6
  971. package/dist/esm/api/resources/threads/types/PostThreadsIdReactionsResponse.d.mts +0 -6
  972. package/dist/esm/api/resources/threads/types/PostThreadsResponse.d.mts +0 -55
  973. package/dist/esm/api/resources/users/client/requests/DeleteUsersIdFollowersSubIdRequest.d.mts +0 -13
  974. package/dist/esm/api/resources/users/client/requests/DeleteUsersIdFollowingSubIdRequest.d.mts +0 -13
  975. package/dist/esm/api/resources/users/client/requests/DeleteUsersIdRequest.d.mts +0 -9
  976. package/dist/esm/api/resources/users/client/requests/GetUsersIdFollowersRequest.d.mts +0 -14
  977. package/dist/esm/api/resources/users/client/requests/GetUsersIdFollowersSubIdRequest.d.mts +0 -13
  978. package/dist/esm/api/resources/users/client/requests/GetUsersIdFollowingRequest.d.mts +0 -14
  979. package/dist/esm/api/resources/users/client/requests/GetUsersIdFollowingSubIdRequest.d.mts +0 -13
  980. package/dist/esm/api/resources/users/client/requests/GetUsersIdRequest.d.mts +0 -9
  981. package/dist/esm/api/resources/users/client/requests/GetUsersRequest.d.mts +0 -9
  982. package/dist/esm/api/resources/users/client/requests/PatchUsersIdRequest.d.mts +0 -27
  983. package/dist/esm/api/resources/users/types/DeleteUsersIdFollowersSubIdResponse.d.mts +0 -3
  984. package/dist/esm/api/resources/users/types/DeleteUsersIdFollowingSubIdResponse.d.mts +0 -3
  985. package/dist/esm/api/resources/users/types/DeleteUsersIdResponse.d.mts +0 -3
  986. package/dist/esm/api/resources/users/types/GetUsersIdFollowersResponse.d.mts +0 -16
  987. package/dist/esm/api/resources/users/types/GetUsersIdFollowersSubIdResponse.d.mts +0 -6
  988. package/dist/esm/api/resources/users/types/GetUsersIdFollowingResponse.d.mts +0 -16
  989. package/dist/esm/api/resources/users/types/GetUsersIdFollowingSubIdResponse.d.mts +0 -6
  990. package/dist/esm/api/resources/users/types/GetUsersIdResponse.d.mts +0 -43
  991. package/dist/esm/api/resources/users/types/GetUsersResponse.d.mts +0 -55
  992. package/dist/esm/api/resources/users/types/PatchUsersIdResponse.d.mts +0 -43
  993. package/dist/esm/api/resources/webhooks/client/requests/DeleteWebhooksIdDeliveriesSubIdRequest.d.mts +0 -13
  994. package/dist/esm/api/resources/webhooks/client/requests/DeleteWebhooksIdRequest.d.mts +0 -9
  995. package/dist/esm/api/resources/webhooks/client/requests/GetWebhooksIdDeliveriesRequest.d.mts +0 -14
  996. package/dist/esm/api/resources/webhooks/client/requests/GetWebhooksIdDeliveriesSubIdRequest.d.mts +0 -13
  997. package/dist/esm/api/resources/webhooks/client/requests/GetWebhooksIdRequest.d.mts +0 -9
  998. package/dist/esm/api/resources/webhooks/client/requests/GetWebhooksRequest.d.mts +0 -9
  999. package/dist/esm/api/resources/webhooks/client/requests/GetWebhooksRequest.mjs +0 -2
  1000. package/dist/esm/api/resources/webhooks/client/requests/PostWebhooksRequest.d.mts +0 -18
  1001. package/dist/esm/api/resources/webhooks/client/requests/PostWebhooksRequest.mjs +0 -2
  1002. package/dist/esm/api/resources/webhooks/types/DeleteWebhooksIdDeliveriesSubIdResponse.d.mts +0 -3
  1003. package/dist/esm/api/resources/webhooks/types/DeleteWebhooksIdDeliveriesSubIdResponse.mjs +0 -2
  1004. package/dist/esm/api/resources/webhooks/types/DeleteWebhooksIdResponse.d.mts +0 -3
  1005. package/dist/esm/api/resources/webhooks/types/DeleteWebhooksIdResponse.mjs +0 -2
  1006. package/dist/esm/api/resources/webhooks/types/GetWebhooksIdDeliveriesResponse.d.mts +0 -16
  1007. package/dist/esm/api/resources/webhooks/types/GetWebhooksIdDeliveriesResponse.mjs +0 -2
  1008. package/dist/esm/api/resources/webhooks/types/GetWebhooksIdDeliveriesSubIdResponse.d.mts +0 -6
  1009. package/dist/esm/api/resources/webhooks/types/GetWebhooksIdDeliveriesSubIdResponse.mjs +0 -2
  1010. package/dist/esm/api/resources/webhooks/types/GetWebhooksIdResponse.d.mts +0 -24
  1011. package/dist/esm/api/resources/webhooks/types/GetWebhooksIdResponse.mjs +0 -2
  1012. package/dist/esm/api/resources/webhooks/types/GetWebhooksResponse.d.mts +0 -36
  1013. package/dist/esm/api/resources/webhooks/types/GetWebhooksResponse.mjs +0 -2
  1014. package/dist/esm/api/resources/webhooks/types/PostWebhooksResponse.d.mts +0 -24
  1015. package/dist/esm/api/resources/webhooks/types/PostWebhooksResponse.mjs +0 -2
  1016. /package/dist/cjs/api/resources/auth/client/requests/{PostAuthForgotPasswordRequest.js → ForgotPasswordAuthRequest.js} +0 -0
  1017. /package/dist/cjs/api/resources/auth/client/requests/{PostAuthLoginRequest.js → LoginAuthRequest.js} +0 -0
  1018. /package/dist/cjs/api/resources/auth/client/requests/{PostAuthRegisterRequest.js → RegisterAuthRequest.js} +0 -0
  1019. /package/dist/cjs/api/resources/auth/client/requests/{PostAuthResetPasswordRequest.js → ResetPasswordAuthRequest.js} +0 -0
  1020. /package/dist/cjs/api/resources/{auth/types/GetAuthMeResponse.js → integrations/client/requests/CreateIntegrationsRequest.js} +0 -0
  1021. /package/dist/cjs/api/resources/{auth/types/PostAuthForgotPasswordResponse.js → integrations/client/requests/DeleteIntegrationsRequest.js} +0 -0
  1022. /package/dist/cjs/api/resources/{auth/types/PostAuthLoginResponse.js → integrations/client/requests/ListIntegrationsRequest.js} +0 -0
  1023. /package/dist/cjs/api/resources/{auth/types/PostAuthRegisterResponse.js → integrations/client/requests/RetrieveIntegrationsRequest.js} +0 -0
  1024. /package/dist/cjs/api/resources/{auth/types/PostAuthResetPasswordResponse.js → integrations/client/requests/UpdateIntegrationsRequest.js} +0 -0
  1025. /package/dist/cjs/api/resources/{integrations/client/requests/DeleteIntegrationsIdRequest.js → notifications/client/requests/DeleteNotificationsRequest.js} +0 -0
  1026. /package/dist/cjs/api/resources/{integrations/client/requests/GetIntegrationsIdRequest.js → notifications/client/requests/ListNotificationsRequest.js} +0 -0
  1027. /package/dist/cjs/api/resources/{integrations/client/requests/GetIntegrationsRequest.js → notifications/client/requests/RetrieveNotificationsRequest.js} +0 -0
  1028. /package/dist/cjs/api/resources/{integrations/client/requests/PatchIntegrationsIdRequest.js → notifications/types/UpdateNotificationsResponse.js} +0 -0
  1029. /package/dist/cjs/api/resources/{integrations/client/requests/PostIntegrationsRequest.js → posts/client/requests/CreatePostsRequest.js} +0 -0
  1030. /package/dist/cjs/api/resources/{integrations/types/DeleteIntegrationsIdResponse.js → posts/client/requests/DeletePostPostsRequest.js} +0 -0
  1031. /package/dist/cjs/api/resources/{notifications/client/requests/DeleteNotificationsIdRequest.js → posts/client/requests/DeletePostsRequest.js} +0 -0
  1032. /package/dist/cjs/api/resources/{notifications/client/requests/GetNotificationsIdRequest.js → posts/client/requests/DeleteReactionPostsRequest.js} +0 -0
  1033. /package/dist/cjs/api/resources/{notifications/client/requests/GetNotificationsRequest.js → posts/client/requests/ListPostsPostsRequest.js} +0 -0
  1034. /package/dist/cjs/api/resources/{notifications/types/DeleteNotificationsIdResponse.js → posts/client/requests/ListPostsRequest.js} +0 -0
  1035. /package/dist/cjs/api/resources/{notifications/types/GetNotificationsIdResponse.js → posts/client/requests/ListReactionsPostsRequest.js} +0 -0
  1036. /package/dist/cjs/api/resources/{notifications/types/GetNotificationsResponse.js → posts/client/requests/RetrievePostPostsRequest.js} +0 -0
  1037. /package/dist/cjs/api/resources/{notifications/types/PatchNotificationsIdResponse.js → posts/client/requests/RetrievePostsRequest.js} +0 -0
  1038. /package/dist/cjs/api/resources/{notifications/types/PostNotificationsResponse.js → posts/client/requests/RetrieveReactionPostsRequest.js} +0 -0
  1039. /package/dist/cjs/api/resources/posts/client/requests/{DeletePostsIdPostsSubIdRequest.js → UpdatePostsRequest.js} +0 -0
  1040. /package/dist/cjs/api/resources/posts/{client/requests/DeletePostsIdReactionsRequest.js → types/DeleteReactionPostsResponse.js} +0 -0
  1041. /package/dist/cjs/api/resources/posts/{client/requests/DeletePostsIdReactionsSubIdRequest.js → types/RetrievePostPostsResponse.js} +0 -0
  1042. /package/dist/cjs/api/resources/posts/{client/requests/DeletePostsIdRequest.js → types/RetrieveReactionPostsResponse.js} +0 -0
  1043. /package/dist/cjs/api/resources/posts/{client/requests/GetPostsIdPostsRequest.js → types/UpdatePostsResponse.js} +0 -0
  1044. /package/dist/cjs/api/resources/{posts/client/requests/GetPostsIdPostsSubIdRequest.js → privateMessages/client/requests/CreatePrivateMessagesRequest.js} +0 -0
  1045. /package/dist/cjs/api/resources/{posts/client/requests/GetPostsIdReactionsRequest.js → privateMessages/client/requests/CreateReplyPrivateMessagesRequest.js} +0 -0
  1046. /package/dist/cjs/api/resources/{posts/client/requests/GetPostsIdReactionsSubIdRequest.js → privateMessages/client/requests/DeletePrivateMessagesRequest.js} +0 -0
  1047. /package/dist/cjs/api/resources/{posts/client/requests/GetPostsIdRequest.js → privateMessages/client/requests/DeleteReplyPrivateMessagesRequest.js} +0 -0
  1048. /package/dist/cjs/api/resources/{posts/client/requests/GetPostsRequest.js → privateMessages/client/requests/ListPrivateMessagesRequest.js} +0 -0
  1049. /package/dist/cjs/api/resources/{posts/client/requests/PatchPostsIdRequest.js → privateMessages/client/requests/ListRepliesPrivateMessagesRequest.js} +0 -0
  1050. /package/dist/cjs/api/resources/{posts/client/requests/PostPostsRequest.js → privateMessages/client/requests/RetrievePrivateMessagesRequest.js} +0 -0
  1051. /package/dist/cjs/api/resources/{posts/types/DeletePostsIdPostsSubIdResponse.js → privateMessages/client/requests/RetrieveReplyPrivateMessagesRequest.js} +0 -0
  1052. /package/dist/cjs/api/resources/{posts/types/DeletePostsIdReactionsResponse.js → privateMessages/types/RetrieveReplyPrivateMessagesResponse.js} +0 -0
  1053. /package/dist/cjs/api/resources/{posts/types/DeletePostsIdReactionsSubIdResponse.js → reports/client/requests/CreateReportsRequest.js} +0 -0
  1054. /package/dist/cjs/api/resources/{posts/types/DeletePostsIdResponse.js → reports/client/requests/DeleteReportsRequest.js} +0 -0
  1055. /package/dist/cjs/api/resources/{posts/types/GetPostsIdPostsResponse.js → reports/client/requests/ListReportsRequest.js} +0 -0
  1056. /package/dist/cjs/api/resources/{posts/types/GetPostsIdPostsSubIdResponse.js → reports/client/requests/RetrieveReportsRequest.js} +0 -0
  1057. /package/dist/cjs/api/resources/{posts/types/GetPostsIdReactionsResponse.js → roles/client/requests/CreateRolesRequest.js} +0 -0
  1058. /package/dist/cjs/api/resources/{posts/types/GetPostsIdReactionsSubIdResponse.js → roles/client/requests/DeleteRolesRequest.js} +0 -0
  1059. /package/dist/cjs/api/resources/{posts/types/GetPostsIdResponse.js → roles/client/requests/ListRolesRequest.js} +0 -0
  1060. /package/dist/cjs/api/resources/{posts/types/GetPostsResponse.js → roles/client/requests/RetrieveRolesRequest.js} +0 -0
  1061. /package/dist/cjs/api/resources/{posts/types/PatchPostsIdResponse.js → roles/client/requests/UpdateRolesRequest.js} +0 -0
  1062. /package/dist/cjs/api/resources/{posts/types/PostPostsIdReactionsResponse.js → roles/types/UpdateRolesResponse.js} +0 -0
  1063. /package/dist/cjs/api/resources/{posts/types/PostPostsResponse.js → ssOs/client/requests/CreateSsOsRequest.js} +0 -0
  1064. /package/dist/cjs/api/resources/{privateMessages/client/requests/DeletePrivateMessagesIdRepliesSubIdRequest.js → ssOs/client/requests/DeleteSsOsRequest.js} +0 -0
  1065. /package/dist/cjs/api/resources/{privateMessages/client/requests/DeletePrivateMessagesIdRequest.js → ssOs/client/requests/ListSsOsRequest.js} +0 -0
  1066. /package/dist/cjs/api/resources/{privateMessages/client/requests/GetPrivateMessagesIdRepliesRequest.js → ssOs/client/requests/RetrieveSsOsRequest.js} +0 -0
  1067. /package/dist/cjs/api/resources/{privateMessages/client/requests/GetPrivateMessagesIdRepliesSubIdRequest.js → ssOs/client/requests/UpdateSsOsRequest.js} +0 -0
  1068. /package/dist/cjs/api/resources/{privateMessages/client/requests/GetPrivateMessagesIdRequest.js → tags/client/requests/CreateTagsRequest.js} +0 -0
  1069. /package/dist/cjs/api/resources/{privateMessages/client/requests/GetPrivateMessagesRequest.js → tags/client/requests/DeleteSubscriberTagsRequest.js} +0 -0
  1070. /package/dist/cjs/api/resources/{privateMessages/client/requests/PostPrivateMessagesIdRepliesRequest.js → tags/client/requests/DeleteTagsRequest.js} +0 -0
  1071. /package/dist/cjs/api/resources/{privateMessages/client/requests/PostPrivateMessagesRequest.js → tags/client/requests/ListSubscribersTagsRequest.js} +0 -0
  1072. /package/dist/cjs/api/resources/{privateMessages/types/DeletePrivateMessagesIdRepliesSubIdResponse.js → tags/client/requests/ListTagsRequest.js} +0 -0
  1073. /package/dist/cjs/api/resources/{privateMessages/types/DeletePrivateMessagesIdResponse.js → tags/client/requests/RetrieveSubscriberTagsRequest.js} +0 -0
  1074. /package/dist/cjs/api/resources/{privateMessages/types/GetPrivateMessagesIdRepliesResponse.js → tags/client/requests/RetrieveTagsRequest.js} +0 -0
  1075. /package/dist/cjs/api/resources/{privateMessages/types/GetPrivateMessagesIdRepliesSubIdResponse.js → tags/client/requests/UpdateTagsRequest.js} +0 -0
  1076. /package/dist/cjs/api/resources/{privateMessages/types/GetPrivateMessagesIdResponse.js → tags/types/RetrieveSubscriberTagsResponse.js} +0 -0
  1077. /package/dist/cjs/api/resources/{privateMessages/types/GetPrivateMessagesResponse.js → tags/types/UpdateTagsResponse.js} +0 -0
  1078. /package/dist/cjs/api/resources/{privateMessages/types/PostPrivateMessagesIdRepliesResponse.js → threads/client/requests/CreatePollThreadsRequest.js} +0 -0
  1079. /package/dist/cjs/api/resources/{privateMessages/types/PostPrivateMessagesResponse.js → threads/client/requests/CreateThreadsRequest.js} +0 -0
  1080. /package/dist/cjs/api/resources/{reports/client/requests/DeleteReportsIdRequest.js → threads/client/requests/DeletePostThreadsRequest.js} +0 -0
  1081. /package/dist/cjs/api/resources/{reports/client/requests/GetReportsIdRequest.js → threads/client/requests/DeleteReactionThreadsRequest.js} +0 -0
  1082. /package/dist/cjs/api/resources/{reports/client/requests/GetReportsRequest.js → threads/client/requests/DeleteSubscriberThreadsRequest.js} +0 -0
  1083. /package/dist/cjs/api/resources/{reports/client/requests/PostReportsRequest.js → threads/client/requests/DeleteThreadsRequest.js} +0 -0
  1084. /package/dist/cjs/api/resources/{reports/types/DeleteReportsIdResponse.js → threads/client/requests/ListPostsThreadsRequest.js} +0 -0
  1085. /package/dist/cjs/api/resources/{reports/types/GetReportsIdResponse.js → threads/client/requests/ListReactionsThreadsRequest.js} +0 -0
  1086. /package/dist/cjs/api/resources/{reports/types/GetReportsResponse.js → threads/client/requests/ListSubscribersThreadsRequest.js} +0 -0
  1087. /package/dist/cjs/api/resources/{reports/types/PostReportsResponse.js → threads/client/requests/ListThreadsRequest.js} +0 -0
  1088. /package/dist/cjs/api/resources/{roles/client/requests/DeleteRolesIdRequest.js → threads/client/requests/RetrievePollThreadsRequest.js} +0 -0
  1089. /package/dist/cjs/api/resources/{roles/client/requests/GetRolesIdRequest.js → threads/client/requests/RetrievePostThreadsRequest.js} +0 -0
  1090. /package/dist/cjs/api/resources/{roles/client/requests/GetRolesRequest.js → threads/client/requests/RetrieveReactionThreadsRequest.js} +0 -0
  1091. /package/dist/cjs/api/resources/{roles/client/requests/PatchRolesIdRequest.js → threads/client/requests/RetrieveSubscriberThreadsRequest.js} +0 -0
  1092. /package/dist/cjs/api/resources/{roles/client/requests/PostRolesRequest.js → threads/client/requests/RetrieveThreadsRequest.js} +0 -0
  1093. /package/dist/cjs/api/resources/{roles/types/DeleteRolesIdResponse.js → threads/client/requests/UpdatePollThreadsRequest.js} +0 -0
  1094. /package/dist/cjs/api/resources/{roles/types/GetRolesIdResponse.js → threads/client/requests/UpdateThreadsRequest.js} +0 -0
  1095. /package/dist/cjs/api/resources/{roles/types/GetRolesResponse.js → threads/types/DeleteReactionThreadsResponse.js} +0 -0
  1096. /package/dist/cjs/api/resources/{roles/types/PatchRolesIdResponse.js → threads/types/RetrievePostThreadsResponse.js} +0 -0
  1097. /package/dist/cjs/api/resources/{roles/types/PostRolesResponse.js → threads/types/RetrieveReactionThreadsResponse.js} +0 -0
  1098. /package/dist/cjs/api/resources/{ssOs/client/requests/DeleteSsoIdRequest.js → threads/types/RetrieveSubscriberThreadsResponse.js} +0 -0
  1099. /package/dist/cjs/api/resources/{ssOs/client/requests/GetSsoIdRequest.js → threads/types/UpdateThreadsResponse.js} +0 -0
  1100. /package/dist/cjs/api/resources/{ssOs/client/requests/GetSsoRequest.js → users/client/requests/DeleteFollowerUsersRequest.js} +0 -0
  1101. /package/dist/cjs/api/resources/{ssOs/client/requests/PatchSsoIdRequest.js → users/client/requests/DeleteFollowingUsersRequest.js} +0 -0
  1102. /package/dist/cjs/api/resources/{ssOs/client/requests/PostSsoRequest.js → users/client/requests/DeleteUsersRequest.js} +0 -0
  1103. /package/dist/cjs/api/resources/{ssOs/types/DeleteSsoIdResponse.js → users/client/requests/ListFollowersUsersRequest.js} +0 -0
  1104. /package/dist/cjs/api/resources/{tags/client/requests/DeleteTagsIdRequest.js → users/client/requests/ListFollowingUsersRequest.js} +0 -0
  1105. /package/dist/cjs/api/resources/{tags/client/requests/DeleteTagsIdSubscribersSubIdRequest.js → users/client/requests/ListUsersRequest.js} +0 -0
  1106. /package/dist/cjs/api/resources/{tags/client/requests/GetTagsIdRequest.js → users/client/requests/RetrieveFollowerUsersRequest.js} +0 -0
  1107. /package/dist/cjs/api/resources/{tags/client/requests/GetTagsIdSubscribersRequest.js → users/client/requests/RetrieveFollowingUsersRequest.js} +0 -0
  1108. /package/dist/cjs/api/resources/{tags/client/requests/GetTagsIdSubscribersSubIdRequest.js → users/client/requests/RetrieveUsersRequest.js} +0 -0
  1109. /package/dist/cjs/api/resources/{tags/client/requests/GetTagsRequest.js → users/client/requests/UpdateUsersRequest.js} +0 -0
  1110. /package/dist/cjs/api/resources/{tags/client/requests/PatchTagsIdRequest.js → users/types/RetrieveFollowerUsersResponse.js} +0 -0
  1111. /package/dist/cjs/api/resources/{tags/client/requests/PostTagsRequest.js → users/types/RetrieveFollowingUsersResponse.js} +0 -0
  1112. /package/dist/cjs/api/resources/{tags/types/DeleteTagsIdResponse.js → users/types/UpdateUsersResponse.js} +0 -0
  1113. /package/dist/cjs/api/resources/{tags/types/DeleteTagsIdSubscribersSubIdResponse.js → webhooks/client/requests/CreateWebhooksRequest.js} +0 -0
  1114. /package/dist/cjs/api/resources/{tags/types/GetTagsIdResponse.js → webhooks/client/requests/DeleteDeliveryWebhooksRequest.js} +0 -0
  1115. /package/dist/cjs/api/resources/{tags/types/GetTagsIdSubscribersResponse.js → webhooks/client/requests/DeleteWebhooksRequest.js} +0 -0
  1116. /package/dist/cjs/api/resources/{tags/types/GetTagsIdSubscribersSubIdResponse.js → webhooks/client/requests/ListDeliveriesWebhooksRequest.js} +0 -0
  1117. /package/dist/cjs/api/resources/{tags/types/GetTagsResponse.js → webhooks/client/requests/ListWebhooksRequest.js} +0 -0
  1118. /package/dist/cjs/api/resources/{tags/types/PatchTagsIdResponse.js → webhooks/client/requests/RetrieveDeliveryWebhooksRequest.js} +0 -0
  1119. /package/dist/cjs/api/resources/{tags/types/PostTagsResponse.js → webhooks/client/requests/RetrieveWebhooksRequest.js} +0 -0
  1120. /package/dist/cjs/api/resources/{threads/client/requests/DeleteThreadsIdPostsSubIdRequest.js → webhooks/types/RetrieveDeliveryWebhooksResponse.js} +0 -0
  1121. /package/dist/cjs/api/{resources/threads/client/requests/DeleteThreadsIdReactionsRequest.js → types/Auth.js} +0 -0
  1122. /package/dist/cjs/api/{resources/threads/client/requests/DeleteThreadsIdReactionsSubIdRequest.js → types/AuthListResponse.js} +0 -0
  1123. /package/dist/cjs/api/{resources/threads/client/requests/DeleteThreadsIdRequest.js → types/ForgotPasswordResponse.js} +0 -0
  1124. /package/dist/cjs/api/{resources/threads/client/requests/DeleteThreadsIdSubscribersSubIdRequest.js → types/LoginResponse.js} +0 -0
  1125. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdPollRequest.js → types/MeResponse.js} +0 -0
  1126. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdPostsRequest.js → types/Notification.js} +0 -0
  1127. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdPostsSubIdRequest.js → types/NotificationListResponse.js} +0 -0
  1128. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdReactionsRequest.js → types/Post.js} +0 -0
  1129. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdReactionsSubIdRequest.js → types/PostListResponse.js} +0 -0
  1130. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdRequest.js → types/PostPost.js} +0 -0
  1131. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdSubscribersRequest.js → types/PostPostListResponse.js} +0 -0
  1132. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsIdSubscribersSubIdRequest.js → types/PostPostResponse.js} +0 -0
  1133. /package/dist/cjs/api/{resources/threads/client/requests/GetThreadsRequest.js → types/PostReaction.js} +0 -0
  1134. /package/dist/cjs/api/{resources/threads/client/requests/PatchThreadsIdPollRequest.js → types/PostReactionListResponse.js} +0 -0
  1135. /package/dist/cjs/api/{resources/threads/client/requests/PatchThreadsIdRequest.js → types/PostReactionResponse.js} +0 -0
  1136. /package/dist/cjs/api/{resources/threads/client/requests/PostThreadsIdPollRequest.js → types/PrivateMessage.js} +0 -0
  1137. /package/dist/cjs/api/{resources/threads/client/requests/PostThreadsRequest.js → types/PrivateMessageListResponse.js} +0 -0
  1138. /package/dist/cjs/api/{resources/threads/types/DeleteThreadsIdPostsSubIdResponse.js → types/PrivateMessageReply.js} +0 -0
  1139. /package/dist/cjs/api/{resources/threads/types/DeleteThreadsIdReactionsResponse.js → types/PrivateMessageReplyCreate.js} +0 -0
  1140. /package/dist/cjs/api/{resources/threads/types/DeleteThreadsIdReactionsSubIdResponse.js → types/PrivateMessageReplyListResponse.js} +0 -0
  1141. /package/dist/cjs/api/{resources/threads/types/DeleteThreadsIdResponse.js → types/PrivateMessageReplyResponse.js} +0 -0
  1142. /package/dist/cjs/api/{resources/threads/types/DeleteThreadsIdSubscribersSubIdResponse.js → types/RegisterResponse.js} +0 -0
  1143. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdPollResponse.js → types/Report.js} +0 -0
  1144. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdPostsResponse.js → types/ReportListResponse.js} +0 -0
  1145. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdPostsSubIdResponse.js → types/ResetPasswordResponse.js} +0 -0
  1146. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdReactionsResponse.js → types/Role.js} +0 -0
  1147. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdReactionsSubIdResponse.js → types/RoleListResponse.js} +0 -0
  1148. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdResponse.js → types/SuccessResponse.js} +0 -0
  1149. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdSubscribersResponse.js → types/Tag.js} +0 -0
  1150. /package/dist/cjs/api/{resources/threads/types/GetThreadsIdSubscribersSubIdResponse.js → types/TagListResponse.js} +0 -0
  1151. /package/dist/cjs/api/{resources/threads/types/GetThreadsResponse.js → types/TagSubscriber.js} +0 -0
  1152. /package/dist/cjs/api/{resources/threads/types/PatchThreadsIdPollResponse.js → types/TagSubscriberListResponse.js} +0 -0
  1153. /package/dist/cjs/api/{resources/threads/types/PatchThreadsIdResponse.js → types/TagSubscriberResponse.js} +0 -0
  1154. /package/dist/cjs/api/{resources/threads/types/PostThreadsIdPollResponse.js → types/Thread.js} +0 -0
  1155. /package/dist/cjs/api/{resources/threads/types/PostThreadsIdReactionsResponse.js → types/ThreadListResponse.js} +0 -0
  1156. /package/dist/cjs/api/{resources/threads/types/PostThreadsResponse.js → types/ThreadPoll.js} +0 -0
  1157. /package/dist/cjs/api/{resources/users/client/requests/DeleteUsersIdFollowersSubIdRequest.js → types/ThreadPollCreate.js} +0 -0
  1158. /package/dist/cjs/api/{resources/users/client/requests/DeleteUsersIdFollowingSubIdRequest.js → types/ThreadPollListResponse.js} +0 -0
  1159. /package/dist/cjs/api/{resources/users/client/requests/DeleteUsersIdRequest.js → types/ThreadPollResponse.js} +0 -0
  1160. /package/dist/cjs/api/{resources/users/client/requests/GetUsersIdFollowersRequest.js → types/ThreadPost.js} +0 -0
  1161. /package/dist/cjs/api/{resources/users/client/requests/GetUsersIdFollowersSubIdRequest.js → types/ThreadPostListResponse.js} +0 -0
  1162. /package/dist/cjs/api/{resources/users/client/requests/GetUsersIdFollowingRequest.js → types/ThreadPostResponse.js} +0 -0
  1163. /package/dist/cjs/api/{resources/users/client/requests/GetUsersIdFollowingSubIdRequest.js → types/ThreadReaction.js} +0 -0
  1164. /package/dist/cjs/api/{resources/users/client/requests/GetUsersIdRequest.js → types/ThreadReactionListResponse.js} +0 -0
  1165. /package/dist/cjs/api/{resources/users/client/requests/GetUsersRequest.js → types/ThreadReactionResponse.js} +0 -0
  1166. /package/dist/cjs/api/{resources/users/client/requests/PatchUsersIdRequest.js → types/ThreadSubscriber.js} +0 -0
  1167. /package/dist/cjs/api/{resources/users/types/DeleteUsersIdFollowersSubIdResponse.js → types/ThreadSubscriberListResponse.js} +0 -0
  1168. /package/dist/cjs/api/{resources/users/types/DeleteUsersIdFollowingSubIdResponse.js → types/ThreadSubscriberResponse.js} +0 -0
  1169. /package/dist/cjs/api/{resources/users/types/DeleteUsersIdResponse.js → types/User.js} +0 -0
  1170. /package/dist/cjs/api/{resources/users/types/GetUsersIdFollowersResponse.js → types/UserFollower.js} +0 -0
  1171. /package/dist/cjs/api/{resources/users/types/GetUsersIdFollowersSubIdResponse.js → types/UserFollowerListResponse.js} +0 -0
  1172. /package/dist/cjs/api/{resources/users/types/GetUsersIdFollowingResponse.js → types/UserFollowerResponse.js} +0 -0
  1173. /package/dist/cjs/api/{resources/users/types/GetUsersIdFollowingSubIdResponse.js → types/UserFollowing.js} +0 -0
  1174. /package/dist/cjs/api/{resources/users/types/GetUsersIdResponse.js → types/UserFollowingListResponse.js} +0 -0
  1175. /package/dist/cjs/api/{resources/users/types/GetUsersResponse.js → types/UserFollowingResponse.js} +0 -0
  1176. /package/dist/cjs/api/{resources/users/types/PatchUsersIdResponse.js → types/UserListResponse.js} +0 -0
  1177. /package/dist/cjs/api/{resources/webhooks/client/requests/DeleteWebhooksIdDeliveriesSubIdRequest.js → types/Webhook.js} +0 -0
  1178. /package/dist/cjs/api/{resources/webhooks/client/requests/DeleteWebhooksIdRequest.js → types/WebhookDelivery.js} +0 -0
  1179. /package/dist/cjs/api/{resources/webhooks/client/requests/GetWebhooksIdDeliveriesRequest.js → types/WebhookDeliveryListResponse.js} +0 -0
  1180. /package/dist/cjs/api/{resources/webhooks/client/requests/GetWebhooksIdDeliveriesSubIdRequest.js → types/WebhookDeliveryResponse.js} +0 -0
  1181. /package/dist/cjs/api/{resources/webhooks/client/requests/GetWebhooksIdRequest.js → types/WebhookListResponse.js} +0 -0
  1182. /package/dist/esm/api/resources/auth/client/requests/{PostAuthForgotPasswordRequest.mjs → ForgotPasswordAuthRequest.mjs} +0 -0
  1183. /package/dist/esm/api/resources/auth/client/requests/{PostAuthLoginRequest.mjs → LoginAuthRequest.mjs} +0 -0
  1184. /package/dist/esm/api/resources/auth/client/requests/{PostAuthRegisterRequest.mjs → RegisterAuthRequest.mjs} +0 -0
  1185. /package/dist/esm/api/resources/auth/client/requests/{PostAuthResetPasswordRequest.mjs → ResetPasswordAuthRequest.mjs} +0 -0
  1186. /package/dist/esm/api/resources/{auth/types/GetAuthMeResponse.mjs → integrations/client/requests/CreateIntegrationsRequest.mjs} +0 -0
  1187. /package/dist/esm/api/resources/{auth/types/PostAuthForgotPasswordResponse.mjs → integrations/client/requests/DeleteIntegrationsRequest.mjs} +0 -0
  1188. /package/dist/esm/api/resources/{auth/types/PostAuthLoginResponse.mjs → integrations/client/requests/ListIntegrationsRequest.mjs} +0 -0
  1189. /package/dist/esm/api/resources/{auth/types/PostAuthRegisterResponse.mjs → integrations/client/requests/RetrieveIntegrationsRequest.mjs} +0 -0
  1190. /package/dist/esm/api/resources/{auth/types/PostAuthResetPasswordResponse.mjs → integrations/client/requests/UpdateIntegrationsRequest.mjs} +0 -0
  1191. /package/dist/esm/api/resources/{integrations/client/requests/DeleteIntegrationsIdRequest.mjs → notifications/client/requests/DeleteNotificationsRequest.mjs} +0 -0
  1192. /package/dist/esm/api/resources/{integrations/client/requests/GetIntegrationsIdRequest.mjs → notifications/client/requests/ListNotificationsRequest.mjs} +0 -0
  1193. /package/dist/esm/api/resources/{integrations/client/requests/GetIntegrationsRequest.mjs → notifications/client/requests/RetrieveNotificationsRequest.mjs} +0 -0
  1194. /package/dist/esm/api/resources/{integrations/client/requests/PatchIntegrationsIdRequest.mjs → notifications/types/UpdateNotificationsResponse.mjs} +0 -0
  1195. /package/dist/esm/api/resources/{integrations/client/requests/PostIntegrationsRequest.mjs → posts/client/requests/CreatePostsRequest.mjs} +0 -0
  1196. /package/dist/esm/api/resources/{integrations/types/DeleteIntegrationsIdResponse.mjs → posts/client/requests/DeletePostPostsRequest.mjs} +0 -0
  1197. /package/dist/esm/api/resources/{notifications/client/requests/DeleteNotificationsIdRequest.mjs → posts/client/requests/DeletePostsRequest.mjs} +0 -0
  1198. /package/dist/esm/api/resources/{notifications/client/requests/GetNotificationsIdRequest.mjs → posts/client/requests/DeleteReactionPostsRequest.mjs} +0 -0
  1199. /package/dist/esm/api/resources/{notifications/client/requests/GetNotificationsRequest.mjs → posts/client/requests/ListPostsPostsRequest.mjs} +0 -0
  1200. /package/dist/esm/api/resources/{notifications/types/DeleteNotificationsIdResponse.mjs → posts/client/requests/ListPostsRequest.mjs} +0 -0
  1201. /package/dist/esm/api/resources/{notifications/types/GetNotificationsIdResponse.mjs → posts/client/requests/ListReactionsPostsRequest.mjs} +0 -0
  1202. /package/dist/esm/api/resources/{notifications/types/GetNotificationsResponse.mjs → posts/client/requests/RetrievePostPostsRequest.mjs} +0 -0
  1203. /package/dist/esm/api/resources/{notifications/types/PatchNotificationsIdResponse.mjs → posts/client/requests/RetrievePostsRequest.mjs} +0 -0
  1204. /package/dist/esm/api/resources/{notifications/types/PostNotificationsResponse.mjs → posts/client/requests/RetrieveReactionPostsRequest.mjs} +0 -0
  1205. /package/dist/esm/api/resources/posts/client/requests/{DeletePostsIdPostsSubIdRequest.mjs → UpdatePostsRequest.mjs} +0 -0
  1206. /package/dist/esm/api/resources/posts/{client/requests/DeletePostsIdReactionsRequest.mjs → types/DeleteReactionPostsResponse.mjs} +0 -0
  1207. /package/dist/esm/api/resources/posts/{client/requests/DeletePostsIdReactionsSubIdRequest.mjs → types/RetrievePostPostsResponse.mjs} +0 -0
  1208. /package/dist/esm/api/resources/posts/{client/requests/DeletePostsIdRequest.mjs → types/RetrieveReactionPostsResponse.mjs} +0 -0
  1209. /package/dist/esm/api/resources/posts/{client/requests/GetPostsIdPostsRequest.mjs → types/UpdatePostsResponse.mjs} +0 -0
  1210. /package/dist/esm/api/resources/{posts/client/requests/GetPostsIdPostsSubIdRequest.mjs → privateMessages/client/requests/CreatePrivateMessagesRequest.mjs} +0 -0
  1211. /package/dist/esm/api/resources/{posts/client/requests/GetPostsIdReactionsRequest.mjs → privateMessages/client/requests/CreateReplyPrivateMessagesRequest.mjs} +0 -0
  1212. /package/dist/esm/api/resources/{posts/client/requests/GetPostsIdReactionsSubIdRequest.mjs → privateMessages/client/requests/DeletePrivateMessagesRequest.mjs} +0 -0
  1213. /package/dist/esm/api/resources/{posts/client/requests/GetPostsIdRequest.mjs → privateMessages/client/requests/DeleteReplyPrivateMessagesRequest.mjs} +0 -0
  1214. /package/dist/esm/api/resources/{posts/client/requests/GetPostsRequest.mjs → privateMessages/client/requests/ListPrivateMessagesRequest.mjs} +0 -0
  1215. /package/dist/esm/api/resources/{posts/client/requests/PatchPostsIdRequest.mjs → privateMessages/client/requests/ListRepliesPrivateMessagesRequest.mjs} +0 -0
  1216. /package/dist/esm/api/resources/{posts/client/requests/PostPostsRequest.mjs → privateMessages/client/requests/RetrievePrivateMessagesRequest.mjs} +0 -0
  1217. /package/dist/esm/api/resources/{posts/types/DeletePostsIdPostsSubIdResponse.mjs → privateMessages/client/requests/RetrieveReplyPrivateMessagesRequest.mjs} +0 -0
  1218. /package/dist/esm/api/resources/{posts/types/DeletePostsIdReactionsResponse.mjs → privateMessages/types/RetrieveReplyPrivateMessagesResponse.mjs} +0 -0
  1219. /package/dist/esm/api/resources/{posts/types/DeletePostsIdReactionsSubIdResponse.mjs → reports/client/requests/CreateReportsRequest.mjs} +0 -0
  1220. /package/dist/esm/api/resources/{posts/types/DeletePostsIdResponse.mjs → reports/client/requests/DeleteReportsRequest.mjs} +0 -0
  1221. /package/dist/esm/api/resources/{posts/types/GetPostsIdPostsResponse.mjs → reports/client/requests/ListReportsRequest.mjs} +0 -0
  1222. /package/dist/esm/api/resources/{posts/types/GetPostsIdPostsSubIdResponse.mjs → reports/client/requests/RetrieveReportsRequest.mjs} +0 -0
  1223. /package/dist/esm/api/resources/{posts/types/GetPostsIdReactionsResponse.mjs → roles/client/requests/CreateRolesRequest.mjs} +0 -0
  1224. /package/dist/esm/api/resources/{posts/types/GetPostsIdReactionsSubIdResponse.mjs → roles/client/requests/DeleteRolesRequest.mjs} +0 -0
  1225. /package/dist/esm/api/resources/{posts/types/GetPostsIdResponse.mjs → roles/client/requests/ListRolesRequest.mjs} +0 -0
  1226. /package/dist/esm/api/resources/{posts/types/GetPostsResponse.mjs → roles/client/requests/RetrieveRolesRequest.mjs} +0 -0
  1227. /package/dist/esm/api/resources/{posts/types/PatchPostsIdResponse.mjs → roles/client/requests/UpdateRolesRequest.mjs} +0 -0
  1228. /package/dist/esm/api/resources/{posts/types/PostPostsIdReactionsResponse.mjs → roles/types/UpdateRolesResponse.mjs} +0 -0
  1229. /package/dist/esm/api/resources/{posts/types/PostPostsResponse.mjs → ssOs/client/requests/CreateSsOsRequest.mjs} +0 -0
  1230. /package/dist/esm/api/resources/{privateMessages/client/requests/DeletePrivateMessagesIdRepliesSubIdRequest.mjs → ssOs/client/requests/DeleteSsOsRequest.mjs} +0 -0
  1231. /package/dist/esm/api/resources/{privateMessages/client/requests/DeletePrivateMessagesIdRequest.mjs → ssOs/client/requests/ListSsOsRequest.mjs} +0 -0
  1232. /package/dist/esm/api/resources/{privateMessages/client/requests/GetPrivateMessagesIdRepliesRequest.mjs → ssOs/client/requests/RetrieveSsOsRequest.mjs} +0 -0
  1233. /package/dist/esm/api/resources/{privateMessages/client/requests/GetPrivateMessagesIdRepliesSubIdRequest.mjs → ssOs/client/requests/UpdateSsOsRequest.mjs} +0 -0
  1234. /package/dist/esm/api/resources/{privateMessages/client/requests/GetPrivateMessagesIdRequest.mjs → tags/client/requests/CreateTagsRequest.mjs} +0 -0
  1235. /package/dist/esm/api/resources/{privateMessages/client/requests/GetPrivateMessagesRequest.mjs → tags/client/requests/DeleteSubscriberTagsRequest.mjs} +0 -0
  1236. /package/dist/esm/api/resources/{privateMessages/client/requests/PostPrivateMessagesIdRepliesRequest.mjs → tags/client/requests/DeleteTagsRequest.mjs} +0 -0
  1237. /package/dist/esm/api/resources/{privateMessages/client/requests/PostPrivateMessagesRequest.mjs → tags/client/requests/ListSubscribersTagsRequest.mjs} +0 -0
  1238. /package/dist/esm/api/resources/{privateMessages/types/DeletePrivateMessagesIdRepliesSubIdResponse.mjs → tags/client/requests/ListTagsRequest.mjs} +0 -0
  1239. /package/dist/esm/api/resources/{privateMessages/types/DeletePrivateMessagesIdResponse.mjs → tags/client/requests/RetrieveSubscriberTagsRequest.mjs} +0 -0
  1240. /package/dist/esm/api/resources/{privateMessages/types/GetPrivateMessagesIdRepliesResponse.mjs → tags/client/requests/RetrieveTagsRequest.mjs} +0 -0
  1241. /package/dist/esm/api/resources/{privateMessages/types/GetPrivateMessagesIdRepliesSubIdResponse.mjs → tags/client/requests/UpdateTagsRequest.mjs} +0 -0
  1242. /package/dist/esm/api/resources/{privateMessages/types/GetPrivateMessagesIdResponse.mjs → tags/types/RetrieveSubscriberTagsResponse.mjs} +0 -0
  1243. /package/dist/esm/api/resources/{privateMessages/types/GetPrivateMessagesResponse.mjs → tags/types/UpdateTagsResponse.mjs} +0 -0
  1244. /package/dist/esm/api/resources/{privateMessages/types/PostPrivateMessagesIdRepliesResponse.mjs → threads/client/requests/CreatePollThreadsRequest.mjs} +0 -0
  1245. /package/dist/esm/api/resources/{privateMessages/types/PostPrivateMessagesResponse.mjs → threads/client/requests/CreateThreadsRequest.mjs} +0 -0
  1246. /package/dist/esm/api/resources/{reports/client/requests/DeleteReportsIdRequest.mjs → threads/client/requests/DeletePostThreadsRequest.mjs} +0 -0
  1247. /package/dist/esm/api/resources/{reports/client/requests/GetReportsIdRequest.mjs → threads/client/requests/DeleteReactionThreadsRequest.mjs} +0 -0
  1248. /package/dist/esm/api/resources/{reports/client/requests/GetReportsRequest.mjs → threads/client/requests/DeleteSubscriberThreadsRequest.mjs} +0 -0
  1249. /package/dist/esm/api/resources/{reports/client/requests/PostReportsRequest.mjs → threads/client/requests/DeleteThreadsRequest.mjs} +0 -0
  1250. /package/dist/esm/api/resources/{reports/types/DeleteReportsIdResponse.mjs → threads/client/requests/ListPostsThreadsRequest.mjs} +0 -0
  1251. /package/dist/esm/api/resources/{reports/types/GetReportsIdResponse.mjs → threads/client/requests/ListReactionsThreadsRequest.mjs} +0 -0
  1252. /package/dist/esm/api/resources/{reports/types/GetReportsResponse.mjs → threads/client/requests/ListSubscribersThreadsRequest.mjs} +0 -0
  1253. /package/dist/esm/api/resources/{reports/types/PostReportsResponse.mjs → threads/client/requests/ListThreadsRequest.mjs} +0 -0
  1254. /package/dist/esm/api/resources/{roles/client/requests/DeleteRolesIdRequest.mjs → threads/client/requests/RetrievePollThreadsRequest.mjs} +0 -0
  1255. /package/dist/esm/api/resources/{roles/client/requests/GetRolesIdRequest.mjs → threads/client/requests/RetrievePostThreadsRequest.mjs} +0 -0
  1256. /package/dist/esm/api/resources/{roles/client/requests/GetRolesRequest.mjs → threads/client/requests/RetrieveReactionThreadsRequest.mjs} +0 -0
  1257. /package/dist/esm/api/resources/{roles/client/requests/PatchRolesIdRequest.mjs → threads/client/requests/RetrieveSubscriberThreadsRequest.mjs} +0 -0
  1258. /package/dist/esm/api/resources/{roles/client/requests/PostRolesRequest.mjs → threads/client/requests/RetrieveThreadsRequest.mjs} +0 -0
  1259. /package/dist/esm/api/resources/{roles/types/DeleteRolesIdResponse.mjs → threads/client/requests/UpdatePollThreadsRequest.mjs} +0 -0
  1260. /package/dist/esm/api/resources/{roles/types/GetRolesIdResponse.mjs → threads/client/requests/UpdateThreadsRequest.mjs} +0 -0
  1261. /package/dist/esm/api/resources/{roles/types/GetRolesResponse.mjs → threads/types/DeleteReactionThreadsResponse.mjs} +0 -0
  1262. /package/dist/esm/api/resources/{roles/types/PatchRolesIdResponse.mjs → threads/types/RetrievePostThreadsResponse.mjs} +0 -0
  1263. /package/dist/esm/api/resources/{roles/types/PostRolesResponse.mjs → threads/types/RetrieveReactionThreadsResponse.mjs} +0 -0
  1264. /package/dist/esm/api/resources/{ssOs/client/requests/DeleteSsoIdRequest.mjs → threads/types/RetrieveSubscriberThreadsResponse.mjs} +0 -0
  1265. /package/dist/esm/api/resources/{ssOs/client/requests/GetSsoIdRequest.mjs → threads/types/UpdateThreadsResponse.mjs} +0 -0
  1266. /package/dist/esm/api/resources/{ssOs/client/requests/GetSsoRequest.mjs → users/client/requests/DeleteFollowerUsersRequest.mjs} +0 -0
  1267. /package/dist/esm/api/resources/{ssOs/client/requests/PatchSsoIdRequest.mjs → users/client/requests/DeleteFollowingUsersRequest.mjs} +0 -0
  1268. /package/dist/esm/api/resources/{ssOs/client/requests/PostSsoRequest.mjs → users/client/requests/DeleteUsersRequest.mjs} +0 -0
  1269. /package/dist/esm/api/resources/{ssOs/types/DeleteSsoIdResponse.mjs → users/client/requests/ListFollowersUsersRequest.mjs} +0 -0
  1270. /package/dist/esm/api/resources/{tags/client/requests/DeleteTagsIdRequest.mjs → users/client/requests/ListFollowingUsersRequest.mjs} +0 -0
  1271. /package/dist/esm/api/resources/{tags/client/requests/DeleteTagsIdSubscribersSubIdRequest.mjs → users/client/requests/ListUsersRequest.mjs} +0 -0
  1272. /package/dist/esm/api/resources/{tags/client/requests/GetTagsIdRequest.mjs → users/client/requests/RetrieveFollowerUsersRequest.mjs} +0 -0
  1273. /package/dist/esm/api/resources/{tags/client/requests/GetTagsIdSubscribersRequest.mjs → users/client/requests/RetrieveFollowingUsersRequest.mjs} +0 -0
  1274. /package/dist/esm/api/resources/{tags/client/requests/GetTagsIdSubscribersSubIdRequest.mjs → users/client/requests/RetrieveUsersRequest.mjs} +0 -0
  1275. /package/dist/esm/api/resources/{tags/client/requests/GetTagsRequest.mjs → users/client/requests/UpdateUsersRequest.mjs} +0 -0
  1276. /package/dist/esm/api/resources/{tags/client/requests/PatchTagsIdRequest.mjs → users/types/RetrieveFollowerUsersResponse.mjs} +0 -0
  1277. /package/dist/esm/api/resources/{tags/client/requests/PostTagsRequest.mjs → users/types/RetrieveFollowingUsersResponse.mjs} +0 -0
  1278. /package/dist/esm/api/resources/{tags/types/DeleteTagsIdResponse.mjs → users/types/UpdateUsersResponse.mjs} +0 -0
  1279. /package/dist/esm/api/resources/{tags/types/DeleteTagsIdSubscribersSubIdResponse.mjs → webhooks/client/requests/CreateWebhooksRequest.mjs} +0 -0
  1280. /package/dist/esm/api/resources/{tags/types/GetTagsIdResponse.mjs → webhooks/client/requests/DeleteDeliveryWebhooksRequest.mjs} +0 -0
  1281. /package/dist/esm/api/resources/{tags/types/GetTagsIdSubscribersResponse.mjs → webhooks/client/requests/DeleteWebhooksRequest.mjs} +0 -0
  1282. /package/dist/esm/api/resources/{tags/types/GetTagsIdSubscribersSubIdResponse.mjs → webhooks/client/requests/ListDeliveriesWebhooksRequest.mjs} +0 -0
  1283. /package/dist/esm/api/resources/{tags/types/GetTagsResponse.mjs → webhooks/client/requests/ListWebhooksRequest.mjs} +0 -0
  1284. /package/dist/esm/api/resources/{tags/types/PatchTagsIdResponse.mjs → webhooks/client/requests/RetrieveDeliveryWebhooksRequest.mjs} +0 -0
  1285. /package/dist/esm/api/resources/{tags/types/PostTagsResponse.mjs → webhooks/client/requests/RetrieveWebhooksRequest.mjs} +0 -0
  1286. /package/dist/esm/api/resources/{threads/client/requests/DeleteThreadsIdPostsSubIdRequest.mjs → webhooks/types/RetrieveDeliveryWebhooksResponse.mjs} +0 -0
  1287. /package/dist/esm/api/{resources/threads/client/requests/DeleteThreadsIdReactionsRequest.mjs → types/Auth.mjs} +0 -0
  1288. /package/dist/esm/api/{resources/threads/client/requests/DeleteThreadsIdReactionsSubIdRequest.mjs → types/AuthListResponse.mjs} +0 -0
  1289. /package/dist/esm/api/{resources/threads/client/requests/DeleteThreadsIdRequest.mjs → types/ForgotPasswordResponse.mjs} +0 -0
  1290. /package/dist/esm/api/{resources/threads/client/requests/DeleteThreadsIdSubscribersSubIdRequest.mjs → types/LoginResponse.mjs} +0 -0
  1291. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdPollRequest.mjs → types/MeResponse.mjs} +0 -0
  1292. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdPostsRequest.mjs → types/Notification.mjs} +0 -0
  1293. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdPostsSubIdRequest.mjs → types/NotificationListResponse.mjs} +0 -0
  1294. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdReactionsRequest.mjs → types/Post.mjs} +0 -0
  1295. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdReactionsSubIdRequest.mjs → types/PostListResponse.mjs} +0 -0
  1296. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdRequest.mjs → types/PostPost.mjs} +0 -0
  1297. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdSubscribersRequest.mjs → types/PostPostListResponse.mjs} +0 -0
  1298. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsIdSubscribersSubIdRequest.mjs → types/PostPostResponse.mjs} +0 -0
  1299. /package/dist/esm/api/{resources/threads/client/requests/GetThreadsRequest.mjs → types/PostReaction.mjs} +0 -0
  1300. /package/dist/esm/api/{resources/threads/client/requests/PatchThreadsIdPollRequest.mjs → types/PostReactionListResponse.mjs} +0 -0
  1301. /package/dist/esm/api/{resources/threads/client/requests/PatchThreadsIdRequest.mjs → types/PostReactionResponse.mjs} +0 -0
  1302. /package/dist/esm/api/{resources/threads/client/requests/PostThreadsIdPollRequest.mjs → types/PrivateMessage.mjs} +0 -0
  1303. /package/dist/esm/api/{resources/threads/client/requests/PostThreadsRequest.mjs → types/PrivateMessageListResponse.mjs} +0 -0
  1304. /package/dist/esm/api/{resources/threads/types/DeleteThreadsIdPostsSubIdResponse.mjs → types/PrivateMessageReply.mjs} +0 -0
  1305. /package/dist/esm/api/{resources/threads/types/DeleteThreadsIdReactionsResponse.mjs → types/PrivateMessageReplyCreate.mjs} +0 -0
  1306. /package/dist/esm/api/{resources/threads/types/DeleteThreadsIdReactionsSubIdResponse.mjs → types/PrivateMessageReplyListResponse.mjs} +0 -0
  1307. /package/dist/esm/api/{resources/threads/types/DeleteThreadsIdResponse.mjs → types/PrivateMessageReplyResponse.mjs} +0 -0
  1308. /package/dist/esm/api/{resources/threads/types/DeleteThreadsIdSubscribersSubIdResponse.mjs → types/RegisterResponse.mjs} +0 -0
  1309. /package/dist/esm/api/{resources/threads/types/GetThreadsIdPollResponse.mjs → types/Report.mjs} +0 -0
  1310. /package/dist/esm/api/{resources/threads/types/GetThreadsIdPostsResponse.mjs → types/ReportListResponse.mjs} +0 -0
  1311. /package/dist/esm/api/{resources/threads/types/GetThreadsIdPostsSubIdResponse.mjs → types/ResetPasswordResponse.mjs} +0 -0
  1312. /package/dist/esm/api/{resources/threads/types/GetThreadsIdReactionsResponse.mjs → types/Role.mjs} +0 -0
  1313. /package/dist/esm/api/{resources/threads/types/GetThreadsIdReactionsSubIdResponse.mjs → types/RoleListResponse.mjs} +0 -0
  1314. /package/dist/esm/api/{resources/threads/types/GetThreadsIdResponse.mjs → types/SuccessResponse.mjs} +0 -0
  1315. /package/dist/esm/api/{resources/threads/types/GetThreadsIdSubscribersResponse.mjs → types/Tag.mjs} +0 -0
  1316. /package/dist/esm/api/{resources/threads/types/GetThreadsIdSubscribersSubIdResponse.mjs → types/TagListResponse.mjs} +0 -0
  1317. /package/dist/esm/api/{resources/threads/types/GetThreadsResponse.mjs → types/TagSubscriber.mjs} +0 -0
  1318. /package/dist/esm/api/{resources/threads/types/PatchThreadsIdPollResponse.mjs → types/TagSubscriberListResponse.mjs} +0 -0
  1319. /package/dist/esm/api/{resources/threads/types/PatchThreadsIdResponse.mjs → types/TagSubscriberResponse.mjs} +0 -0
  1320. /package/dist/esm/api/{resources/threads/types/PostThreadsIdPollResponse.mjs → types/Thread.mjs} +0 -0
  1321. /package/dist/esm/api/{resources/threads/types/PostThreadsIdReactionsResponse.mjs → types/ThreadListResponse.mjs} +0 -0
  1322. /package/dist/esm/api/{resources/threads/types/PostThreadsResponse.mjs → types/ThreadPoll.mjs} +0 -0
  1323. /package/dist/esm/api/{resources/users/client/requests/DeleteUsersIdFollowersSubIdRequest.mjs → types/ThreadPollCreate.mjs} +0 -0
  1324. /package/dist/esm/api/{resources/users/client/requests/DeleteUsersIdFollowingSubIdRequest.mjs → types/ThreadPollListResponse.mjs} +0 -0
  1325. /package/dist/esm/api/{resources/users/client/requests/DeleteUsersIdRequest.mjs → types/ThreadPollResponse.mjs} +0 -0
  1326. /package/dist/esm/api/{resources/users/client/requests/GetUsersIdFollowersRequest.mjs → types/ThreadPost.mjs} +0 -0
  1327. /package/dist/esm/api/{resources/users/client/requests/GetUsersIdFollowersSubIdRequest.mjs → types/ThreadPostListResponse.mjs} +0 -0
  1328. /package/dist/esm/api/{resources/users/client/requests/GetUsersIdFollowingRequest.mjs → types/ThreadPostResponse.mjs} +0 -0
  1329. /package/dist/esm/api/{resources/users/client/requests/GetUsersIdFollowingSubIdRequest.mjs → types/ThreadReaction.mjs} +0 -0
  1330. /package/dist/esm/api/{resources/users/client/requests/GetUsersIdRequest.mjs → types/ThreadReactionListResponse.mjs} +0 -0
  1331. /package/dist/esm/api/{resources/users/client/requests/GetUsersRequest.mjs → types/ThreadReactionResponse.mjs} +0 -0
  1332. /package/dist/esm/api/{resources/users/client/requests/PatchUsersIdRequest.mjs → types/ThreadSubscriber.mjs} +0 -0
  1333. /package/dist/esm/api/{resources/users/types/DeleteUsersIdFollowersSubIdResponse.mjs → types/ThreadSubscriberListResponse.mjs} +0 -0
  1334. /package/dist/esm/api/{resources/users/types/DeleteUsersIdFollowingSubIdResponse.mjs → types/ThreadSubscriberResponse.mjs} +0 -0
  1335. /package/dist/esm/api/{resources/users/types/DeleteUsersIdResponse.mjs → types/User.mjs} +0 -0
  1336. /package/dist/esm/api/{resources/users/types/GetUsersIdFollowersResponse.mjs → types/UserFollower.mjs} +0 -0
  1337. /package/dist/esm/api/{resources/users/types/GetUsersIdFollowersSubIdResponse.mjs → types/UserFollowerListResponse.mjs} +0 -0
  1338. /package/dist/esm/api/{resources/users/types/GetUsersIdFollowingResponse.mjs → types/UserFollowerResponse.mjs} +0 -0
  1339. /package/dist/esm/api/{resources/users/types/GetUsersIdFollowingSubIdResponse.mjs → types/UserFollowing.mjs} +0 -0
  1340. /package/dist/esm/api/{resources/users/types/GetUsersIdResponse.mjs → types/UserFollowingListResponse.mjs} +0 -0
  1341. /package/dist/esm/api/{resources/users/types/GetUsersResponse.mjs → types/UserFollowingResponse.mjs} +0 -0
  1342. /package/dist/esm/api/{resources/users/types/PatchUsersIdResponse.mjs → types/UserListResponse.mjs} +0 -0
  1343. /package/dist/esm/api/{resources/webhooks/client/requests/DeleteWebhooksIdDeliveriesSubIdRequest.mjs → types/Webhook.mjs} +0 -0
  1344. /package/dist/esm/api/{resources/webhooks/client/requests/DeleteWebhooksIdRequest.mjs → types/WebhookDelivery.mjs} +0 -0
  1345. /package/dist/esm/api/{resources/webhooks/client/requests/GetWebhooksIdDeliveriesRequest.mjs → types/WebhookDeliveryListResponse.mjs} +0 -0
  1346. /package/dist/esm/api/{resources/webhooks/client/requests/GetWebhooksIdDeliveriesSubIdRequest.mjs → types/WebhookDeliveryResponse.mjs} +0 -0
  1347. /package/dist/esm/api/{resources/webhooks/client/requests/GetWebhooksIdRequest.mjs → types/WebhookListResponse.mjs} +0 -0
@@ -26,12 +26,17 @@ import * as environments from "../../../../environments.mjs";
26
26
  import { handleNonStatusCodeError } from "../../../../errors/handleNonStatusCodeError.mjs";
27
27
  import * as errors from "../../../../errors/index.mjs";
28
28
  import * as Forum from "../../../index.mjs";
29
+ /**
30
+ * Operations for threads
31
+ */
29
32
  export class ThreadsClient {
30
33
  constructor(options) {
31
34
  this._options = normalizeClientOptionsWithAuth(options);
32
35
  }
33
36
  /**
34
- * @param {Forum.GetThreadsRequest} request
37
+ * Retrieve a paginated list of threads. Use cursor for pagination.
38
+ *
39
+ * @param {Forum.ListThreadsRequest} request
35
40
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
36
41
  *
37
42
  * @throws {@link Forum.UnauthorizedError}
@@ -40,36 +45,45 @@ export class ThreadsClient {
40
45
  * @throws {@link Forum.InternalServerError}
41
46
  *
42
47
  * @example
43
- * await client.threads.listAllThreads()
48
+ * await client.threads.list()
44
49
  */
45
- listAllThreads(request = {}, requestOptions) {
46
- return core.HttpResponsePromise.fromPromise(this.__listAllThreads(request, requestOptions));
50
+ list(request = {}, requestOptions) {
51
+ return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions));
47
52
  }
48
- __listAllThreads() {
53
+ __list() {
49
54
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
50
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
51
- const { page, limit, search } = request;
55
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
56
+ const { limit, cursor, search, tagId, userId, sort } = request;
52
57
  const _queryParams = {};
53
- if (page != null) {
54
- _queryParams.page = page.toString();
55
- }
56
58
  if (limit != null) {
57
59
  _queryParams.limit = limit.toString();
58
60
  }
61
+ if (cursor != null) {
62
+ _queryParams.cursor = cursor;
63
+ }
59
64
  if (search != null) {
60
65
  _queryParams.search = search;
61
66
  }
67
+ if (tagId != null) {
68
+ _queryParams.tagId = tagId;
69
+ }
70
+ if (userId != null) {
71
+ _queryParams.userId = userId;
72
+ }
73
+ if (sort != null) {
74
+ _queryParams.sort = sort;
75
+ }
62
76
  const _authRequest = yield this._options.authProvider.getAuthRequest();
63
77
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
64
- const _response = yield core.fetcher({
65
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, "threads"),
78
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
79
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, "threads"),
66
80
  method: "GET",
67
81
  headers: _headers,
68
82
  queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
69
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
70
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
83
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
84
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
71
85
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
72
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
86
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
73
87
  logging: this._options.logging,
74
88
  });
75
89
  if (_response.ok) {
@@ -97,7 +111,9 @@ export class ThreadsClient {
97
111
  });
98
112
  }
99
113
  /**
100
- * @param {Forum.PostThreadsRequest} request
114
+ * Create a new thread.
115
+ *
116
+ * @param {Forum.CreateThreadsRequest} request
101
117
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
102
118
  *
103
119
  * @throws {@link Forum.BadRequestError}
@@ -107,31 +123,31 @@ export class ThreadsClient {
107
123
  * @throws {@link Forum.InternalServerError}
108
124
  *
109
125
  * @example
110
- * await client.threads.createAThread({
126
+ * await client.threads.create({
111
127
  * title: "title",
112
128
  * body: "body"
113
129
  * })
114
130
  */
115
- createAThread(request, requestOptions) {
116
- return core.HttpResponsePromise.fromPromise(this.__createAThread(request, requestOptions));
131
+ create(request, requestOptions) {
132
+ return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions));
117
133
  }
118
- __createAThread(request, requestOptions) {
134
+ __create(request, requestOptions) {
119
135
  return __awaiter(this, void 0, void 0, function* () {
120
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
136
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
121
137
  const _authRequest = yield this._options.authProvider.getAuthRequest();
122
138
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
123
- const _response = yield core.fetcher({
124
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, "threads"),
139
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
140
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, "threads"),
125
141
  method: "POST",
126
142
  headers: _headers,
127
143
  contentType: "application/json",
128
144
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
129
145
  requestType: "json",
130
146
  body: request,
131
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
132
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
147
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
148
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
133
149
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
134
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
150
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
135
151
  logging: this._options.logging,
136
152
  });
137
153
  if (_response.ok) {
@@ -161,7 +177,9 @@ export class ThreadsClient {
161
177
  });
162
178
  }
163
179
  /**
164
- * @param {Forum.GetThreadsIdRequest} request
180
+ * Retrieve a thread by ID or slug (if supported).
181
+ *
182
+ * @param {Forum.RetrieveThreadsRequest} request
165
183
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
166
184
  *
167
185
  * @throws {@link Forum.UnauthorizedError}
@@ -171,28 +189,28 @@ export class ThreadsClient {
171
189
  * @throws {@link Forum.InternalServerError}
172
190
  *
173
191
  * @example
174
- * await client.threads.getAThread({
192
+ * await client.threads.retrieve({
175
193
  * id: "id"
176
194
  * })
177
195
  */
178
- getAThread(request, requestOptions) {
179
- return core.HttpResponsePromise.fromPromise(this.__getAThread(request, requestOptions));
196
+ retrieve(request, requestOptions) {
197
+ return core.HttpResponsePromise.fromPromise(this.__retrieve(request, requestOptions));
180
198
  }
181
- __getAThread(request, requestOptions) {
199
+ __retrieve(request, requestOptions) {
182
200
  return __awaiter(this, void 0, void 0, function* () {
183
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
201
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
184
202
  const { id } = request;
185
203
  const _authRequest = yield this._options.authProvider.getAuthRequest();
186
204
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
187
- const _response = yield core.fetcher({
188
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}`),
205
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
206
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}`),
189
207
  method: "GET",
190
208
  headers: _headers,
191
209
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
192
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
193
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
210
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
211
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
194
212
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
195
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
213
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
196
214
  logging: this._options.logging,
197
215
  });
198
216
  if (_response.ok) {
@@ -222,7 +240,9 @@ export class ThreadsClient {
222
240
  });
223
241
  }
224
242
  /**
225
- * @param {Forum.DeleteThreadsIdRequest} request
243
+ * Permanently delete a thread.
244
+ *
245
+ * @param {Forum.DeleteThreadsRequest} request
226
246
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
227
247
  *
228
248
  * @throws {@link Forum.UnauthorizedError}
@@ -232,28 +252,28 @@ export class ThreadsClient {
232
252
  * @throws {@link Forum.InternalServerError}
233
253
  *
234
254
  * @example
235
- * await client.threads.deleteAThread({
255
+ * await client.threads.delete({
236
256
  * id: "id"
237
257
  * })
238
258
  */
239
- deleteAThread(request, requestOptions) {
240
- return core.HttpResponsePromise.fromPromise(this.__deleteAThread(request, requestOptions));
259
+ delete(request, requestOptions) {
260
+ return core.HttpResponsePromise.fromPromise(this.__delete(request, requestOptions));
241
261
  }
242
- __deleteAThread(request, requestOptions) {
262
+ __delete(request, requestOptions) {
243
263
  return __awaiter(this, void 0, void 0, function* () {
244
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
264
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
245
265
  const { id } = request;
246
266
  const _authRequest = yield this._options.authProvider.getAuthRequest();
247
267
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
248
- const _response = yield core.fetcher({
249
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}`),
268
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
269
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}`),
250
270
  method: "DELETE",
251
271
  headers: _headers,
252
272
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
253
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
254
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
273
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
274
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
255
275
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
256
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
276
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
257
277
  logging: this._options.logging,
258
278
  });
259
279
  if (_response.ok) {
@@ -283,7 +303,9 @@ export class ThreadsClient {
283
303
  });
284
304
  }
285
305
  /**
286
- * @param {Forum.PatchThreadsIdRequest} request
306
+ * Update an existing thread. Only provided fields will be modified.
307
+ *
308
+ * @param {Forum.UpdateThreadsRequest} request
287
309
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
288
310
  *
289
311
  * @throws {@link Forum.BadRequestError}
@@ -294,31 +316,31 @@ export class ThreadsClient {
294
316
  * @throws {@link Forum.InternalServerError}
295
317
  *
296
318
  * @example
297
- * await client.threads.updateAThread({
319
+ * await client.threads.update({
298
320
  * id: "id"
299
321
  * })
300
322
  */
301
- updateAThread(request, requestOptions) {
302
- return core.HttpResponsePromise.fromPromise(this.__updateAThread(request, requestOptions));
323
+ update(request, requestOptions) {
324
+ return core.HttpResponsePromise.fromPromise(this.__update(request, requestOptions));
303
325
  }
304
- __updateAThread(request, requestOptions) {
326
+ __update(request, requestOptions) {
305
327
  return __awaiter(this, void 0, void 0, function* () {
306
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
328
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
307
329
  const { id } = request, _body = __rest(request, ["id"]);
308
330
  const _authRequest = yield this._options.authProvider.getAuthRequest();
309
331
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
310
- const _response = yield core.fetcher({
311
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}`),
332
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
333
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}`),
312
334
  method: "PATCH",
313
335
  headers: _headers,
314
336
  contentType: "application/json",
315
337
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
316
338
  requestType: "json",
317
339
  body: _body,
318
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
319
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
340
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
341
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
320
342
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
321
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
343
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
322
344
  logging: this._options.logging,
323
345
  });
324
346
  if (_response.ok) {
@@ -350,7 +372,9 @@ export class ThreadsClient {
350
372
  });
351
373
  }
352
374
  /**
353
- * @param {Forum.GetThreadsIdPostsRequest} request
375
+ * Retrieve a paginated list of posts for Thread.
376
+ *
377
+ * @param {Forum.ListPostsThreadsRequest} request
354
378
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
355
379
  *
356
380
  * @throws {@link Forum.UnauthorizedError}
@@ -359,35 +383,47 @@ export class ThreadsClient {
359
383
  * @throws {@link Forum.InternalServerError}
360
384
  *
361
385
  * @example
362
- * await client.threads.listThreadPosts({
386
+ * await client.threads.listPosts({
363
387
  * id: "id"
364
388
  * })
365
389
  */
366
- listThreadPosts(request, requestOptions) {
367
- return core.HttpResponsePromise.fromPromise(this.__listThreadPosts(request, requestOptions));
390
+ listPosts(request, requestOptions) {
391
+ return core.HttpResponsePromise.fromPromise(this.__listPosts(request, requestOptions));
368
392
  }
369
- __listThreadPosts(request, requestOptions) {
393
+ __listPosts(request, requestOptions) {
370
394
  return __awaiter(this, void 0, void 0, function* () {
371
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
372
- const { id, cursor, limit } = request;
395
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
396
+ const { id, limit, cursor, userId, sort, search, type: type_ } = request;
373
397
  const _queryParams = {};
398
+ if (limit != null) {
399
+ _queryParams.limit = limit.toString();
400
+ }
374
401
  if (cursor != null) {
375
402
  _queryParams.cursor = cursor;
376
403
  }
377
- if (limit != null) {
378
- _queryParams.limit = limit.toString();
404
+ if (userId != null) {
405
+ _queryParams.userId = userId;
406
+ }
407
+ if (sort != null) {
408
+ _queryParams.sort = sort;
409
+ }
410
+ if (search != null) {
411
+ _queryParams.search = search;
412
+ }
413
+ if (type_ != null) {
414
+ _queryParams.type = type_;
379
415
  }
380
416
  const _authRequest = yield this._options.authProvider.getAuthRequest();
381
417
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
382
- const _response = yield core.fetcher({
383
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/posts`),
418
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
419
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/posts`),
384
420
  method: "GET",
385
421
  headers: _headers,
386
422
  queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
387
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
388
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
423
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
424
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
389
425
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
390
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
426
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
391
427
  logging: this._options.logging,
392
428
  });
393
429
  if (_response.ok) {
@@ -415,7 +451,7 @@ export class ThreadsClient {
415
451
  });
416
452
  }
417
453
  /**
418
- * @param {Forum.GetThreadsIdPostsSubIdRequest} request
454
+ * @param {Forum.RetrievePostThreadsRequest} request
419
455
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
420
456
  *
421
457
  * @throws {@link Forum.UnauthorizedError}
@@ -424,29 +460,29 @@ export class ThreadsClient {
424
460
  * @throws {@link Forum.InternalServerError}
425
461
  *
426
462
  * @example
427
- * await client.threads.getAPostFromThread({
463
+ * await client.threads.retrievePost({
428
464
  * id: "id",
429
465
  * subId: "subId"
430
466
  * })
431
467
  */
432
- getAPostFromThread(request, requestOptions) {
433
- return core.HttpResponsePromise.fromPromise(this.__getAPostFromThread(request, requestOptions));
468
+ retrievePost(request, requestOptions) {
469
+ return core.HttpResponsePromise.fromPromise(this.__retrievePost(request, requestOptions));
434
470
  }
435
- __getAPostFromThread(request, requestOptions) {
471
+ __retrievePost(request, requestOptions) {
436
472
  return __awaiter(this, void 0, void 0, function* () {
437
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
473
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
438
474
  const { id, subId } = request;
439
475
  const _authRequest = yield this._options.authProvider.getAuthRequest();
440
476
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
441
- const _response = yield core.fetcher({
442
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/posts/${core.url.encodePathParam(subId)}`),
477
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
478
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/posts/${core.url.encodePathParam(subId)}`),
443
479
  method: "GET",
444
480
  headers: _headers,
445
481
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
446
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
447
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
482
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
483
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
448
484
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
449
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
485
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
450
486
  logging: this._options.logging,
451
487
  });
452
488
  if (_response.ok) {
@@ -474,7 +510,7 @@ export class ThreadsClient {
474
510
  });
475
511
  }
476
512
  /**
477
- * @param {Forum.DeleteThreadsIdPostsSubIdRequest} request
513
+ * @param {Forum.DeletePostThreadsRequest} request
478
514
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
479
515
  *
480
516
  * @throws {@link Forum.UnauthorizedError}
@@ -483,36 +519,33 @@ export class ThreadsClient {
483
519
  * @throws {@link Forum.InternalServerError}
484
520
  *
485
521
  * @example
486
- * await client.threads.deleteAPostFromThread({
522
+ * await client.threads.deletePost({
487
523
  * id: "id",
488
524
  * subId: "subId"
489
525
  * })
490
526
  */
491
- deleteAPostFromThread(request, requestOptions) {
492
- return core.HttpResponsePromise.fromPromise(this.__deleteAPostFromThread(request, requestOptions));
527
+ deletePost(request, requestOptions) {
528
+ return core.HttpResponsePromise.fromPromise(this.__deletePost(request, requestOptions));
493
529
  }
494
- __deleteAPostFromThread(request, requestOptions) {
530
+ __deletePost(request, requestOptions) {
495
531
  return __awaiter(this, void 0, void 0, function* () {
496
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
532
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
497
533
  const { id, subId } = request;
498
534
  const _authRequest = yield this._options.authProvider.getAuthRequest();
499
535
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
500
- const _response = yield core.fetcher({
501
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/posts/${core.url.encodePathParam(subId)}`),
536
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
537
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/posts/${core.url.encodePathParam(subId)}`),
502
538
  method: "DELETE",
503
539
  headers: _headers,
504
540
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
505
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
506
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
541
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
542
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
507
543
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
508
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
544
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
509
545
  logging: this._options.logging,
510
546
  });
511
547
  if (_response.ok) {
512
- return {
513
- data: _response.body,
514
- rawResponse: _response.rawResponse,
515
- };
548
+ return { data: _response.body, rawResponse: _response.rawResponse };
516
549
  }
517
550
  if (_response.error.reason === "status-code") {
518
551
  switch (_response.error.statusCode) {
@@ -536,7 +569,9 @@ export class ThreadsClient {
536
569
  });
537
570
  }
538
571
  /**
539
- * @param {Forum.GetThreadsIdReactionsRequest} request
572
+ * Retrieve a paginated list of reactions for Thread.
573
+ *
574
+ * @param {Forum.ListReactionsThreadsRequest} request
540
575
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
541
576
  *
542
577
  * @throws {@link Forum.UnauthorizedError}
@@ -545,35 +580,38 @@ export class ThreadsClient {
545
580
  * @throws {@link Forum.InternalServerError}
546
581
  *
547
582
  * @example
548
- * await client.threads.listThreadReactions({
583
+ * await client.threads.listReactions({
549
584
  * id: "id"
550
585
  * })
551
586
  */
552
- listThreadReactions(request, requestOptions) {
553
- return core.HttpResponsePromise.fromPromise(this.__listThreadReactions(request, requestOptions));
587
+ listReactions(request, requestOptions) {
588
+ return core.HttpResponsePromise.fromPromise(this.__listReactions(request, requestOptions));
554
589
  }
555
- __listThreadReactions(request, requestOptions) {
590
+ __listReactions(request, requestOptions) {
556
591
  return __awaiter(this, void 0, void 0, function* () {
557
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
558
- const { id, cursor, limit } = request;
592
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
593
+ const { id, limit, cursor, type: type_ } = request;
559
594
  const _queryParams = {};
595
+ if (limit != null) {
596
+ _queryParams.limit = limit.toString();
597
+ }
560
598
  if (cursor != null) {
561
599
  _queryParams.cursor = cursor;
562
600
  }
563
- if (limit != null) {
564
- _queryParams.limit = limit.toString();
601
+ if (type_ != null) {
602
+ _queryParams.type = type_;
565
603
  }
566
604
  const _authRequest = yield this._options.authProvider.getAuthRequest();
567
605
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
568
- const _response = yield core.fetcher({
569
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions`),
606
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
607
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions`),
570
608
  method: "GET",
571
609
  headers: _headers,
572
610
  queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
573
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
574
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
611
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
612
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
575
613
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
576
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
614
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
577
615
  logging: this._options.logging,
578
616
  });
579
617
  if (_response.ok) {
@@ -601,7 +639,9 @@ export class ThreadsClient {
601
639
  });
602
640
  }
603
641
  /**
604
- * @param {Forum.PostThreadsIdReactionsRequest} request
642
+ * Create a Reaction in Thread.
643
+ *
644
+ * @param {Forum.CreateReactionThreadsRequest} request
605
645
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
606
646
  *
607
647
  * @throws {@link Forum.BadRequestError}
@@ -611,32 +651,32 @@ export class ThreadsClient {
611
651
  * @throws {@link Forum.InternalServerError}
612
652
  *
613
653
  * @example
614
- * await client.threads.createAReactionInThread({
654
+ * await client.threads.createReaction({
615
655
  * id: "id",
616
656
  * type: "LIKE"
617
657
  * })
618
658
  */
619
- createAReactionInThread(request, requestOptions) {
620
- return core.HttpResponsePromise.fromPromise(this.__createAReactionInThread(request, requestOptions));
659
+ createReaction(request, requestOptions) {
660
+ return core.HttpResponsePromise.fromPromise(this.__createReaction(request, requestOptions));
621
661
  }
622
- __createAReactionInThread(request, requestOptions) {
662
+ __createReaction(request, requestOptions) {
623
663
  return __awaiter(this, void 0, void 0, function* () {
624
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
664
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
625
665
  const { id } = request, _body = __rest(request, ["id"]);
626
666
  const _authRequest = yield this._options.authProvider.getAuthRequest();
627
667
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
628
- const _response = yield core.fetcher({
629
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions`),
668
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
669
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions`),
630
670
  method: "POST",
631
671
  headers: _headers,
632
672
  contentType: "application/json",
633
673
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
634
674
  requestType: "json",
635
675
  body: _body,
636
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
637
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
676
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
677
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
638
678
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
639
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
679
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
640
680
  logging: this._options.logging,
641
681
  });
642
682
  if (_response.ok) {
@@ -666,9 +706,7 @@ export class ThreadsClient {
666
706
  });
667
707
  }
668
708
  /**
669
- * Removes the authenticated user's reaction. No subId needed.
670
- *
671
- * @param {Forum.DeleteThreadsIdReactionsRequest} request
709
+ * @param {Forum.DeleteReactionThreadsRequest} request
672
710
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
673
711
  *
674
712
  * @throws {@link Forum.UnauthorizedError}
@@ -677,35 +715,33 @@ export class ThreadsClient {
677
715
  * @throws {@link Forum.InternalServerError}
678
716
  *
679
717
  * @example
680
- * await client.threads.removeYourReactionFromThread({
681
- * id: "id"
718
+ * await client.threads.deleteReaction({
719
+ * id: "id",
720
+ * subId: "subId"
682
721
  * })
683
722
  */
684
- removeYourReactionFromThread(request, requestOptions) {
685
- return core.HttpResponsePromise.fromPromise(this.__removeYourReactionFromThread(request, requestOptions));
723
+ deleteReaction(request, requestOptions) {
724
+ return core.HttpResponsePromise.fromPromise(this.__deleteReaction(request, requestOptions));
686
725
  }
687
- __removeYourReactionFromThread(request, requestOptions) {
726
+ __deleteReaction(request, requestOptions) {
688
727
  return __awaiter(this, void 0, void 0, function* () {
689
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
690
- const { id } = request;
728
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
729
+ const { id, subId } = request;
691
730
  const _authRequest = yield this._options.authProvider.getAuthRequest();
692
731
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
693
- const _response = yield core.fetcher({
694
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions`),
732
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
733
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions/${core.url.encodePathParam(subId)}`),
695
734
  method: "DELETE",
696
735
  headers: _headers,
697
736
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
698
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
699
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
737
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
738
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
700
739
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
701
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
740
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
702
741
  logging: this._options.logging,
703
742
  });
704
743
  if (_response.ok) {
705
- return {
706
- data: _response.body,
707
- rawResponse: _response.rawResponse,
708
- };
744
+ return { data: _response.body, rawResponse: _response.rawResponse };
709
745
  }
710
746
  if (_response.error.reason === "status-code") {
711
747
  switch (_response.error.statusCode) {
@@ -725,11 +761,11 @@ export class ThreadsClient {
725
761
  });
726
762
  }
727
763
  }
728
- return handleNonStatusCodeError(_response.error, _response.rawResponse, "DELETE", "/threads/{id}/reactions");
764
+ return handleNonStatusCodeError(_response.error, _response.rawResponse, "DELETE", "/threads/{id}/reactions/{subId}");
729
765
  });
730
766
  }
731
767
  /**
732
- * @param {Forum.GetThreadsIdReactionsSubIdRequest} request
768
+ * @param {Forum.RetrieveReactionThreadsRequest} request
733
769
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
734
770
  *
735
771
  * @throws {@link Forum.UnauthorizedError}
@@ -738,29 +774,29 @@ export class ThreadsClient {
738
774
  * @throws {@link Forum.InternalServerError}
739
775
  *
740
776
  * @example
741
- * await client.threads.getAReactionFromThread({
777
+ * await client.threads.retrieveReaction({
742
778
  * id: "id",
743
779
  * subId: "subId"
744
780
  * })
745
781
  */
746
- getAReactionFromThread(request, requestOptions) {
747
- return core.HttpResponsePromise.fromPromise(this.__getAReactionFromThread(request, requestOptions));
782
+ retrieveReaction(request, requestOptions) {
783
+ return core.HttpResponsePromise.fromPromise(this.__retrieveReaction(request, requestOptions));
748
784
  }
749
- __getAReactionFromThread(request, requestOptions) {
785
+ __retrieveReaction(request, requestOptions) {
750
786
  return __awaiter(this, void 0, void 0, function* () {
751
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
787
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
752
788
  const { id, subId } = request;
753
789
  const _authRequest = yield this._options.authProvider.getAuthRequest();
754
790
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
755
- const _response = yield core.fetcher({
756
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions/${core.url.encodePathParam(subId)}`),
791
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
792
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions/${core.url.encodePathParam(subId)}`),
757
793
  method: "GET",
758
794
  headers: _headers,
759
795
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
760
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
761
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
796
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
797
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
762
798
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
763
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
799
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
764
800
  logging: this._options.logging,
765
801
  });
766
802
  if (_response.ok) {
@@ -791,69 +827,9 @@ export class ThreadsClient {
791
827
  });
792
828
  }
793
829
  /**
794
- * @param {Forum.DeleteThreadsIdReactionsSubIdRequest} request
795
- * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
796
- *
797
- * @throws {@link Forum.UnauthorizedError}
798
- * @throws {@link Forum.NotFoundError}
799
- * @throws {@link Forum.TooManyRequestsError}
800
- * @throws {@link Forum.InternalServerError}
830
+ * Retrieve a paginated list of subscribers for Thread.
801
831
  *
802
- * @example
803
- * await client.threads.deleteAReactionFromThread({
804
- * id: "id",
805
- * subId: "subId"
806
- * })
807
- */
808
- deleteAReactionFromThread(request, requestOptions) {
809
- return core.HttpResponsePromise.fromPromise(this.__deleteAReactionFromThread(request, requestOptions));
810
- }
811
- __deleteAReactionFromThread(request, requestOptions) {
812
- return __awaiter(this, void 0, void 0, function* () {
813
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
814
- const { id, subId } = request;
815
- const _authRequest = yield this._options.authProvider.getAuthRequest();
816
- const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
817
- const _response = yield core.fetcher({
818
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/reactions/${core.url.encodePathParam(subId)}`),
819
- method: "DELETE",
820
- headers: _headers,
821
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
822
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
823
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
824
- abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
825
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
826
- logging: this._options.logging,
827
- });
828
- if (_response.ok) {
829
- return {
830
- data: _response.body,
831
- rawResponse: _response.rawResponse,
832
- };
833
- }
834
- if (_response.error.reason === "status-code") {
835
- switch (_response.error.statusCode) {
836
- case 401:
837
- throw new Forum.UnauthorizedError(_response.error.body, _response.rawResponse);
838
- case 404:
839
- throw new Forum.NotFoundError(_response.error.body, _response.rawResponse);
840
- case 429:
841
- throw new Forum.TooManyRequestsError(_response.error.body, _response.rawResponse);
842
- case 500:
843
- throw new Forum.InternalServerError(_response.error.body, _response.rawResponse);
844
- default:
845
- throw new errors.ForumError({
846
- statusCode: _response.error.statusCode,
847
- body: _response.error.body,
848
- rawResponse: _response.rawResponse,
849
- });
850
- }
851
- }
852
- return handleNonStatusCodeError(_response.error, _response.rawResponse, "DELETE", "/threads/{id}/reactions/{subId}");
853
- });
854
- }
855
- /**
856
- * @param {Forum.GetThreadsIdSubscribersRequest} request
832
+ * @param {Forum.ListSubscribersThreadsRequest} request
857
833
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
858
834
  *
859
835
  * @throws {@link Forum.UnauthorizedError}
@@ -862,42 +838,39 @@ export class ThreadsClient {
862
838
  * @throws {@link Forum.InternalServerError}
863
839
  *
864
840
  * @example
865
- * await client.threads.listThreadSubscribers({
841
+ * await client.threads.listSubscribers({
866
842
  * id: "id"
867
843
  * })
868
844
  */
869
- listThreadSubscribers(request, requestOptions) {
870
- return core.HttpResponsePromise.fromPromise(this.__listThreadSubscribers(request, requestOptions));
845
+ listSubscribers(request, requestOptions) {
846
+ return core.HttpResponsePromise.fromPromise(this.__listSubscribers(request, requestOptions));
871
847
  }
872
- __listThreadSubscribers(request, requestOptions) {
848
+ __listSubscribers(request, requestOptions) {
873
849
  return __awaiter(this, void 0, void 0, function* () {
874
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
875
- const { id, cursor, limit } = request;
850
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
851
+ const { id, limit, cursor } = request;
876
852
  const _queryParams = {};
877
- if (cursor != null) {
878
- _queryParams.cursor = cursor;
879
- }
880
853
  if (limit != null) {
881
854
  _queryParams.limit = limit.toString();
882
855
  }
856
+ if (cursor != null) {
857
+ _queryParams.cursor = cursor;
858
+ }
883
859
  const _authRequest = yield this._options.authProvider.getAuthRequest();
884
860
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
885
- const _response = yield core.fetcher({
886
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/subscribers`),
861
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
862
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/subscribers`),
887
863
  method: "GET",
888
864
  headers: _headers,
889
865
  queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
890
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
891
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
866
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
867
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
892
868
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
893
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
869
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
894
870
  logging: this._options.logging,
895
871
  });
896
872
  if (_response.ok) {
897
- return {
898
- data: _response.body,
899
- rawResponse: _response.rawResponse,
900
- };
873
+ return { data: _response.body, rawResponse: _response.rawResponse };
901
874
  }
902
875
  if (_response.error.reason === "status-code") {
903
876
  switch (_response.error.statusCode) {
@@ -921,7 +894,7 @@ export class ThreadsClient {
921
894
  });
922
895
  }
923
896
  /**
924
- * @param {Forum.GetThreadsIdSubscribersSubIdRequest} request
897
+ * @param {Forum.RetrieveSubscriberThreadsRequest} request
925
898
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
926
899
  *
927
900
  * @throws {@link Forum.UnauthorizedError}
@@ -930,29 +903,29 @@ export class ThreadsClient {
930
903
  * @throws {@link Forum.InternalServerError}
931
904
  *
932
905
  * @example
933
- * await client.threads.getASubscriberFromThread({
906
+ * await client.threads.retrieveSubscriber({
934
907
  * id: "id",
935
908
  * subId: "subId"
936
909
  * })
937
910
  */
938
- getASubscriberFromThread(request, requestOptions) {
939
- return core.HttpResponsePromise.fromPromise(this.__getASubscriberFromThread(request, requestOptions));
911
+ retrieveSubscriber(request, requestOptions) {
912
+ return core.HttpResponsePromise.fromPromise(this.__retrieveSubscriber(request, requestOptions));
940
913
  }
941
- __getASubscriberFromThread(request, requestOptions) {
914
+ __retrieveSubscriber(request, requestOptions) {
942
915
  return __awaiter(this, void 0, void 0, function* () {
943
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
916
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
944
917
  const { id, subId } = request;
945
918
  const _authRequest = yield this._options.authProvider.getAuthRequest();
946
919
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
947
- const _response = yield core.fetcher({
948
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/subscribers/${core.url.encodePathParam(subId)}`),
920
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
921
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/subscribers/${core.url.encodePathParam(subId)}`),
949
922
  method: "GET",
950
923
  headers: _headers,
951
924
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
952
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
953
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
925
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
926
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
954
927
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
955
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
928
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
956
929
  logging: this._options.logging,
957
930
  });
958
931
  if (_response.ok) {
@@ -983,7 +956,7 @@ export class ThreadsClient {
983
956
  });
984
957
  }
985
958
  /**
986
- * @param {Forum.DeleteThreadsIdSubscribersSubIdRequest} request
959
+ * @param {Forum.DeleteSubscriberThreadsRequest} request
987
960
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
988
961
  *
989
962
  * @throws {@link Forum.UnauthorizedError}
@@ -992,36 +965,33 @@ export class ThreadsClient {
992
965
  * @throws {@link Forum.InternalServerError}
993
966
  *
994
967
  * @example
995
- * await client.threads.deleteASubscriberFromThread({
968
+ * await client.threads.deleteSubscriber({
996
969
  * id: "id",
997
970
  * subId: "subId"
998
971
  * })
999
972
  */
1000
- deleteASubscriberFromThread(request, requestOptions) {
1001
- return core.HttpResponsePromise.fromPromise(this.__deleteASubscriberFromThread(request, requestOptions));
973
+ deleteSubscriber(request, requestOptions) {
974
+ return core.HttpResponsePromise.fromPromise(this.__deleteSubscriber(request, requestOptions));
1002
975
  }
1003
- __deleteASubscriberFromThread(request, requestOptions) {
976
+ __deleteSubscriber(request, requestOptions) {
1004
977
  return __awaiter(this, void 0, void 0, function* () {
1005
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
978
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
1006
979
  const { id, subId } = request;
1007
980
  const _authRequest = yield this._options.authProvider.getAuthRequest();
1008
981
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
1009
- const _response = yield core.fetcher({
1010
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/subscribers/${core.url.encodePathParam(subId)}`),
982
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
983
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/subscribers/${core.url.encodePathParam(subId)}`),
1011
984
  method: "DELETE",
1012
985
  headers: _headers,
1013
986
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
1014
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
1015
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
987
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
988
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
1016
989
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
1017
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
990
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
1018
991
  logging: this._options.logging,
1019
992
  });
1020
993
  if (_response.ok) {
1021
- return {
1022
- data: _response.body,
1023
- rawResponse: _response.rawResponse,
1024
- };
994
+ return { data: _response.body, rawResponse: _response.rawResponse };
1025
995
  }
1026
996
  if (_response.error.reason === "status-code") {
1027
997
  switch (_response.error.statusCode) {
@@ -1045,7 +1015,7 @@ export class ThreadsClient {
1045
1015
  });
1046
1016
  }
1047
1017
  /**
1048
- * @param {Forum.GetThreadsIdPollRequest} request
1018
+ * @param {Forum.RetrievePollThreadsRequest} request
1049
1019
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
1050
1020
  *
1051
1021
  * @throws {@link Forum.UnauthorizedError}
@@ -1054,28 +1024,28 @@ export class ThreadsClient {
1054
1024
  * @throws {@link Forum.InternalServerError}
1055
1025
  *
1056
1026
  * @example
1057
- * await client.threads.getThreadPoll({
1027
+ * await client.threads.retrievePoll({
1058
1028
  * id: "id"
1059
1029
  * })
1060
1030
  */
1061
- getThreadPoll(request, requestOptions) {
1062
- return core.HttpResponsePromise.fromPromise(this.__getThreadPoll(request, requestOptions));
1031
+ retrievePoll(request, requestOptions) {
1032
+ return core.HttpResponsePromise.fromPromise(this.__retrievePoll(request, requestOptions));
1063
1033
  }
1064
- __getThreadPoll(request, requestOptions) {
1034
+ __retrievePoll(request, requestOptions) {
1065
1035
  return __awaiter(this, void 0, void 0, function* () {
1066
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
1036
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
1067
1037
  const { id } = request;
1068
1038
  const _authRequest = yield this._options.authProvider.getAuthRequest();
1069
1039
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
1070
- const _response = yield core.fetcher({
1071
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/poll`),
1040
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
1041
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/poll`),
1072
1042
  method: "GET",
1073
1043
  headers: _headers,
1074
1044
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
1075
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
1076
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
1045
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
1046
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
1077
1047
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
1078
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
1048
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
1079
1049
  logging: this._options.logging,
1080
1050
  });
1081
1051
  if (_response.ok) {
@@ -1103,7 +1073,7 @@ export class ThreadsClient {
1103
1073
  });
1104
1074
  }
1105
1075
  /**
1106
- * @param {Forum.PostThreadsIdPollRequest} request
1076
+ * @param {Forum.CreatePollThreadsRequest} request
1107
1077
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
1108
1078
  *
1109
1079
  * @throws {@link Forum.BadRequestError}
@@ -1113,7 +1083,7 @@ export class ThreadsClient {
1113
1083
  * @throws {@link Forum.InternalServerError}
1114
1084
  *
1115
1085
  * @example
1116
- * await client.threads.createThreadPoll({
1086
+ * await client.threads.createPoll({
1117
1087
  * id: "id",
1118
1088
  * title: "title",
1119
1089
  * options: [{
@@ -1121,27 +1091,27 @@ export class ThreadsClient {
1121
1091
  * }]
1122
1092
  * })
1123
1093
  */
1124
- createThreadPoll(request, requestOptions) {
1125
- return core.HttpResponsePromise.fromPromise(this.__createThreadPoll(request, requestOptions));
1094
+ createPoll(request, requestOptions) {
1095
+ return core.HttpResponsePromise.fromPromise(this.__createPoll(request, requestOptions));
1126
1096
  }
1127
- __createThreadPoll(request, requestOptions) {
1097
+ __createPoll(request, requestOptions) {
1128
1098
  return __awaiter(this, void 0, void 0, function* () {
1129
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
1099
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
1130
1100
  const { id } = request, _body = __rest(request, ["id"]);
1131
1101
  const _authRequest = yield this._options.authProvider.getAuthRequest();
1132
1102
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
1133
- const _response = yield core.fetcher({
1134
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/poll`),
1103
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
1104
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/poll`),
1135
1105
  method: "POST",
1136
1106
  headers: _headers,
1137
1107
  contentType: "application/json",
1138
1108
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
1139
1109
  requestType: "json",
1140
1110
  body: _body,
1141
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
1142
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
1111
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
1112
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
1143
1113
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
1144
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
1114
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
1145
1115
  logging: this._options.logging,
1146
1116
  });
1147
1117
  if (_response.ok) {
@@ -1171,7 +1141,7 @@ export class ThreadsClient {
1171
1141
  });
1172
1142
  }
1173
1143
  /**
1174
- * @param {Forum.PatchThreadsIdPollRequest} request
1144
+ * @param {Forum.UpdatePollThreadsRequest} request
1175
1145
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
1176
1146
  *
1177
1147
  * @throws {@link Forum.BadRequestError}
@@ -1181,31 +1151,31 @@ export class ThreadsClient {
1181
1151
  * @throws {@link Forum.InternalServerError}
1182
1152
  *
1183
1153
  * @example
1184
- * await client.threads.updateThreadPoll({
1154
+ * await client.threads.updatePoll({
1185
1155
  * id: "id"
1186
1156
  * })
1187
1157
  */
1188
- updateThreadPoll(request, requestOptions) {
1189
- return core.HttpResponsePromise.fromPromise(this.__updateThreadPoll(request, requestOptions));
1158
+ updatePoll(request, requestOptions) {
1159
+ return core.HttpResponsePromise.fromPromise(this.__updatePoll(request, requestOptions));
1190
1160
  }
1191
- __updateThreadPoll(request, requestOptions) {
1161
+ __updatePoll(request, requestOptions) {
1192
1162
  return __awaiter(this, void 0, void 0, function* () {
1193
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
1163
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
1194
1164
  const { id } = request, _body = __rest(request, ["id"]);
1195
1165
  const _authRequest = yield this._options.authProvider.getAuthRequest();
1196
1166
  const _headers = mergeHeaders(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
1197
- const _response = yield core.fetcher({
1198
- url: core.url.join((_c = (_b = (yield core.Supplier.get(this._options.baseUrl))) !== null && _b !== void 0 ? _b : (yield core.Supplier.get(this._options.environment))) !== null && _c !== void 0 ? _c : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/poll`),
1167
+ const _response = yield ((_b = this._options.fetcher) !== null && _b !== void 0 ? _b : core.fetcher)({
1168
+ url: core.url.join((_d = (_c = (yield core.Supplier.get(this._options.baseUrl))) !== null && _c !== void 0 ? _c : (yield core.Supplier.get(this._options.environment))) !== null && _d !== void 0 ? _d : environments.ForumEnvironment.Production, `threads/${core.url.encodePathParam(id)}/poll`),
1199
1169
  method: "PATCH",
1200
1170
  headers: _headers,
1201
1171
  contentType: "application/json",
1202
1172
  queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
1203
1173
  requestType: "json",
1204
1174
  body: _body,
1205
- timeoutMs: ((_f = (_d = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _d !== void 0 ? _d : (_e = this._options) === null || _e === void 0 ? void 0 : _e.timeoutInSeconds) !== null && _f !== void 0 ? _f : 60) * 1000,
1206
- maxRetries: (_g = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _g !== void 0 ? _g : (_h = this._options) === null || _h === void 0 ? void 0 : _h.maxRetries,
1175
+ timeoutMs: ((_g = (_e = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) !== null && _e !== void 0 ? _e : (_f = this._options) === null || _f === void 0 ? void 0 : _f.timeoutInSeconds) !== null && _g !== void 0 ? _g : 60) * 1000,
1176
+ maxRetries: (_h = requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries) !== null && _h !== void 0 ? _h : (_j = this._options) === null || _j === void 0 ? void 0 : _j.maxRetries,
1207
1177
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
1208
- fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
1178
+ fetchFn: (_k = this._options) === null || _k === void 0 ? void 0 : _k.fetch,
1209
1179
  logging: this._options.logging,
1210
1180
  });
1211
1181
  if (_response.ok) {