@getbrevo/brevo 5.0.4 → 6.0.2

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 (640) hide show
  1. package/README.md +99 -37
  2. package/dist/cjs/BaseClient.d.ts +13 -0
  3. package/dist/cjs/BaseClient.js +17 -2
  4. package/dist/cjs/Client.d.ts +6 -0
  5. package/dist/cjs/Client.js +68 -58
  6. package/dist/cjs/api/errors/BadRequestError.js +1 -1
  7. package/dist/cjs/api/errors/ConflictError.js +1 -1
  8. package/dist/cjs/api/errors/ExpectationFailedError.js +1 -1
  9. package/dist/cjs/api/errors/FailedDependencyError.js +1 -1
  10. package/dist/cjs/api/errors/ForbiddenError.js +1 -1
  11. package/dist/cjs/api/errors/InternalServerError.js +1 -1
  12. package/dist/cjs/api/errors/MethodNotAllowedError.js +1 -1
  13. package/dist/cjs/api/errors/NotFoundError.js +1 -1
  14. package/dist/cjs/api/errors/PaymentRequiredError.js +1 -1
  15. package/dist/cjs/api/errors/PreconditionFailedError.js +1 -1
  16. package/dist/cjs/api/errors/TooEarlyError.js +1 -1
  17. package/dist/cjs/api/errors/TooManyRequestsError.js +1 -1
  18. package/dist/cjs/api/errors/UnauthorizedError.js +1 -1
  19. package/dist/cjs/api/errors/UnprocessableEntityError.js +1 -1
  20. package/dist/cjs/api/errors/UnsupportedMediaTypeError.js +1 -1
  21. package/dist/cjs/api/resources/account/client/Client.d.ts +5 -6
  22. package/dist/cjs/api/resources/account/client/Client.js +21 -13
  23. package/dist/cjs/api/resources/account/types/GetAccountResponse.d.ts +4 -17
  24. package/dist/cjs/api/resources/balance/client/Client.d.ts +9 -8
  25. package/dist/cjs/api/resources/balance/client/Client.js +70 -33
  26. package/dist/cjs/api/resources/balance/client/requests/BeginTransactionRequest.d.ts +21 -11
  27. package/dist/cjs/api/resources/balance/client/requests/BeginTransactionRequest.js +9 -0
  28. package/dist/cjs/api/resources/balance/client/requests/CreateBalanceOrderRequest.d.ts +11 -3
  29. package/dist/cjs/api/resources/balance/client/requests/CreateBalanceOrderRequest.js +9 -0
  30. package/dist/cjs/api/resources/balance/client/requests/GetContactBalancesRequest.d.ts +13 -1
  31. package/dist/cjs/api/resources/balance/client/requests/GetLoyaltyBalanceProgramsPidActiveBalanceRequest.d.ts +7 -6
  32. package/dist/cjs/api/resources/balance/client/requests/GetLoyaltyBalanceProgramsPidTransactionHistoryRequest.d.ts +6 -6
  33. package/dist/cjs/api/resources/balance/client/requests/index.d.ts +2 -2
  34. package/dist/cjs/api/resources/balance/client/requests/index.js +5 -1
  35. package/dist/cjs/api/resources/balance/types/GetContactBalancesRequestSort.d.ts +5 -0
  36. package/dist/cjs/api/resources/balance/types/GetContactBalancesRequestSort.js +8 -0
  37. package/dist/cjs/api/resources/balance/types/GetContactBalancesRequestSortField.d.ts +5 -0
  38. package/dist/cjs/api/resources/balance/types/GetContactBalancesRequestSortField.js +8 -0
  39. package/dist/cjs/api/resources/balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceRequestSort.d.ts +5 -0
  40. package/dist/cjs/api/resources/balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceRequestSort.js +8 -0
  41. package/dist/cjs/api/resources/balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceResponse.d.ts +30 -0
  42. package/dist/cjs/api/resources/balance/types/GetLoyaltyBalanceProgramsPidTransactionHistoryResponse.d.ts +10 -0
  43. package/dist/cjs/api/resources/balance/types/GetLoyaltyBalanceProgramsPidTransactionHistoryResponse.js +15 -0
  44. package/dist/cjs/api/resources/balance/types/GetSubscriptionBalancesResponse.d.ts +7 -2
  45. package/dist/cjs/api/resources/balance/types/PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse.d.ts +14 -14
  46. package/dist/cjs/api/resources/balance/types/index.d.ts +4 -0
  47. package/dist/cjs/api/resources/balance/types/index.js +4 -0
  48. package/dist/cjs/api/resources/companies/client/Client.d.ts +22 -0
  49. package/dist/cjs/api/resources/companies/client/Client.js +49 -18
  50. package/dist/cjs/api/resources/companies/client/requests/GetCompaniesRequest.d.ts +4 -4
  51. package/dist/cjs/api/resources/companies/client/requests/PatchCompaniesIdRequest.d.ts +1 -1
  52. package/dist/cjs/api/resources/companies/client/requests/PostCompaniesImportRequest.d.ts +1 -1
  53. package/dist/cjs/api/resources/companies/client/requests/PostCrmAttributesRequest.d.ts +2 -2
  54. package/dist/cjs/api/resources/companies/client/requests/PostCrmAttributesRequest.js +1 -1
  55. package/dist/cjs/api/resources/companies/types/GetCrmAttributesCompaniesResponseItem.d.ts +20 -4
  56. package/dist/cjs/api/resources/consentGroups/client/Client.d.ts +108 -0
  57. package/dist/cjs/api/resources/consentGroups/client/Client.js +383 -0
  58. package/dist/cjs/api/resources/consentGroups/client/index.d.ts +1 -0
  59. package/dist/cjs/api/resources/{event/types → consentGroups/client}/index.js +1 -1
  60. package/dist/cjs/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.d.ts +25 -0
  61. package/dist/cjs/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.js +12 -0
  62. package/dist/cjs/api/resources/consentGroups/client/requests/DeleteConsentGroupRequest.d.ts +10 -0
  63. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupRequest.d.ts +10 -0
  64. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupRequest.js +3 -0
  65. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.d.ts +17 -0
  66. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.js +3 -0
  67. package/dist/cjs/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.d.ts +24 -0
  68. package/dist/cjs/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.js +12 -0
  69. package/dist/cjs/api/resources/consentGroups/client/requests/index.d.ts +5 -0
  70. package/dist/cjs/api/resources/consentGroups/client/requests/index.js +7 -0
  71. package/dist/cjs/api/resources/consentGroups/exports.d.ts +2 -0
  72. package/dist/cjs/api/resources/consentGroups/exports.js +21 -0
  73. package/dist/cjs/api/resources/consentGroups/index.d.ts +2 -0
  74. package/dist/cjs/api/resources/consentGroups/index.js +18 -0
  75. package/dist/cjs/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.d.ts +5 -0
  76. package/dist/cjs/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.js +8 -0
  77. package/dist/cjs/api/resources/consentGroups/types/index.d.ts +1 -0
  78. package/dist/cjs/api/resources/consentGroups/types/index.js +17 -0
  79. package/dist/cjs/api/resources/contacts/client/Client.d.ts +37 -0
  80. package/dist/cjs/api/resources/contacts/client/Client.js +125 -36
  81. package/dist/cjs/api/resources/contacts/client/requests/CreateContactRequest.d.ts +4 -0
  82. package/dist/cjs/api/resources/contacts/client/requests/GetContactInfoRequest.d.ts +2 -2
  83. package/dist/cjs/api/resources/contacts/client/requests/GetContactStatsRequest.d.ts +2 -2
  84. package/dist/cjs/api/resources/contacts/client/requests/GetContactsRequest.d.ts +3 -1
  85. package/dist/cjs/api/resources/contacts/client/requests/GetListRequest.d.ts +1 -1
  86. package/dist/cjs/api/resources/contacts/client/requests/ImportContactsRequest.d.ts +2 -0
  87. package/dist/cjs/api/resources/contacts/client/requests/UpdateContactRequest.d.ts +4 -2
  88. package/dist/cjs/api/resources/contacts/types/GetAttributesResponse.d.ts +3 -1
  89. package/dist/cjs/api/resources/contacts/types/GetContactInfoResponse.d.ts +8 -3
  90. package/dist/cjs/api/resources/contacts/types/GetContactStatsResponse.d.ts +1 -1
  91. package/dist/cjs/api/resources/contacts/types/GetSegmentsResponse.d.ts +2 -2
  92. package/dist/cjs/api/resources/conversations/client/Client.d.ts +18 -8
  93. package/dist/cjs/api/resources/conversations/client/Client.js +28 -18
  94. package/dist/cjs/api/resources/conversations/client/requests/PostConversationsAgentOnlinePingRequest.d.ts +8 -8
  95. package/dist/cjs/api/resources/conversations/client/requests/PostConversationsMessagesRequest.d.ts +12 -10
  96. package/dist/cjs/api/resources/conversations/client/requests/PostConversationsPushedMessagesRequest.d.ts +11 -9
  97. package/dist/cjs/api/resources/conversations/client/requests/PutConversationsMessagesIdRequest.d.ts +1 -1
  98. package/dist/cjs/api/resources/conversations/client/requests/PutConversationsPushedMessagesIdRequest.d.ts +2 -2
  99. package/dist/cjs/api/resources/coupons/client/Client.d.ts +10 -0
  100. package/dist/cjs/api/resources/coupons/client/Client.js +19 -5
  101. package/dist/cjs/api/resources/customObjects/client/Client.d.ts +101 -21
  102. package/dist/cjs/api/resources/customObjects/client/Client.js +108 -26
  103. package/dist/cjs/api/resources/customObjects/client/requests/BatchDeleteObjectRecordsRequest.d.ts +2 -2
  104. package/dist/cjs/api/resources/customObjects/client/requests/GetrecordsRequest.d.ts +1 -1
  105. package/dist/cjs/api/resources/customObjects/client/requests/UpsertrecordsRequest.d.ts +114 -25
  106. package/dist/cjs/api/resources/customObjects/client/requests/UpsertrecordsRequest.js +21 -0
  107. package/dist/cjs/api/resources/customObjects/client/requests/index.d.ts +1 -1
  108. package/dist/cjs/api/resources/customObjects/client/requests/index.js +3 -0
  109. package/dist/cjs/api/resources/customObjects/types/GetrecordsResponse.d.ts +14 -5
  110. package/dist/cjs/api/resources/deals/client/Client.d.ts +22 -0
  111. package/dist/cjs/api/resources/deals/client/Client.js +62 -22
  112. package/dist/cjs/api/resources/deals/client/requests/GetCrmDealsRequest.d.ts +11 -3
  113. package/dist/cjs/api/resources/deals/client/requests/PatchCrmDealsIdRequest.d.ts +1 -1
  114. package/dist/cjs/api/resources/deals/client/requests/PostCrmDealsImportRequest.d.ts +1 -1
  115. package/dist/cjs/api/resources/deals/types/GetCrmAttributesDealsResponseItem.d.ts +20 -4
  116. package/dist/cjs/api/resources/domains/client/Client.js +5 -5
  117. package/dist/cjs/api/resources/ecommerce/client/Client.d.ts +30 -1
  118. package/dist/cjs/api/resources/ecommerce/client/Client.js +73 -20
  119. package/dist/cjs/api/resources/ecommerce/client/requests/CreateBatchOrderRequest.d.ts +2 -2
  120. package/dist/cjs/api/resources/ecommerce/client/requests/CreateUpdateBatchProductsRequest.d.ts +4 -2
  121. package/dist/cjs/api/resources/ecommerce/client/requests/CreateUpdateProductRequest.d.ts +4 -2
  122. package/dist/cjs/api/resources/ecommerce/client/requests/GetEcommerceAttributionMetricsRequest.d.ts +2 -1
  123. package/dist/cjs/api/resources/ecommerce/client/requests/GetProductsRequest.d.ts +18 -2
  124. package/dist/cjs/api/resources/ecommerce/types/CreateBatchOrderResponse.d.ts +2 -2
  125. package/dist/cjs/api/resources/ecommerce/types/CreateUpdateCategoryResponse.d.ts +1 -1
  126. package/dist/cjs/api/resources/ecommerce/types/CreateUpdateProductResponse.d.ts +2 -2
  127. package/dist/cjs/api/resources/ecommerce/types/GetProductsRequestSortByField.d.ts +7 -0
  128. package/dist/cjs/api/resources/ecommerce/types/GetProductsRequestSortByField.js +10 -0
  129. package/dist/cjs/api/resources/ecommerce/types/index.d.ts +1 -0
  130. package/dist/cjs/api/resources/ecommerce/types/index.js +1 -0
  131. package/dist/cjs/api/resources/emailCampaigns/client/Client.d.ts +22 -1
  132. package/dist/cjs/api/resources/emailCampaigns/client/Client.js +51 -15
  133. package/dist/cjs/api/resources/emailCampaigns/client/requests/CreateEmailCampaignRequest.d.ts +7 -7
  134. package/dist/cjs/api/resources/emailCampaigns/client/requests/GetEmailCampaignRequest.d.ts +1 -1
  135. package/dist/cjs/api/resources/emailCampaigns/client/requests/GetEmailCampaignsRequest.d.ts +6 -4
  136. package/dist/cjs/api/resources/emailCampaigns/types/GetEmailCampaignResponse.d.ts +28 -5
  137. package/dist/cjs/api/resources/emailCampaigns/types/GetEmailCampaignResponse.js +9 -0
  138. package/dist/cjs/api/resources/emailCampaigns/types/GetEmailCampaignsResponse.d.ts +27 -4
  139. package/dist/cjs/api/resources/emailCampaigns/types/GetEmailCampaignsResponse.js +9 -0
  140. package/dist/cjs/api/resources/event/client/Client.d.ts +8 -6
  141. package/dist/cjs/api/resources/event/client/Client.js +14 -8
  142. package/dist/cjs/api/resources/event/client/requests/CreateBatchEventsRequest.d.ts +76 -0
  143. package/dist/cjs/api/resources/event/client/requests/CreateBatchEventsRequest.js +3 -0
  144. package/dist/cjs/api/resources/event/client/requests/CreateEventRequest.d.ts +3 -3
  145. package/dist/cjs/api/resources/event/client/requests/index.d.ts +1 -0
  146. package/dist/cjs/api/resources/event/index.d.ts +0 -1
  147. package/dist/cjs/api/resources/event/index.js +0 -1
  148. package/dist/cjs/api/resources/externalFeeds/client/Client.js +9 -5
  149. package/dist/cjs/api/resources/externalFeeds/types/GetAllExternalFeedsResponse.d.ts +3 -7
  150. package/dist/cjs/api/resources/externalFeeds/types/GetExternalFeedByUuidResponse.d.ts +3 -9
  151. package/dist/cjs/api/resources/files/client/Client.d.ts +10 -0
  152. package/dist/cjs/api/resources/files/client/Client.js +19 -5
  153. package/dist/cjs/api/resources/inboundParsing/client/Client.d.ts +2 -1
  154. package/dist/cjs/api/resources/inboundParsing/client/Client.js +11 -4
  155. package/dist/cjs/api/resources/inboundParsing/client/requests/GetInboundEmailEventsRequest.d.ts +2 -2
  156. package/dist/cjs/api/resources/inboundParsing/types/GetInboundEmailEventsByUuidResponse.d.ts +2 -2
  157. package/dist/cjs/api/resources/index.d.ts +5 -1
  158. package/dist/cjs/api/resources/index.js +6 -2
  159. package/dist/cjs/api/resources/masterAccount/client/Client.d.ts +10 -0
  160. package/dist/cjs/api/resources/masterAccount/client/Client.js +84 -46
  161. package/dist/cjs/api/resources/notes/client/Client.d.ts +12 -2
  162. package/dist/cjs/api/resources/notes/client/Client.js +21 -7
  163. package/dist/cjs/api/resources/notes/client/requests/PatchCrmNotesIdRequest.d.ts +1 -1
  164. package/dist/cjs/api/resources/notes/types/PostCrmNotesResponse.d.ts +1 -1
  165. package/dist/cjs/api/resources/payments/client/Client.d.ts +6 -0
  166. package/dist/cjs/api/resources/payments/client/Client.js +9 -3
  167. package/dist/cjs/api/resources/process/client/Client.d.ts +13 -18
  168. package/dist/cjs/api/resources/process/client/Client.js +19 -20
  169. package/dist/cjs/api/resources/process/types/GetProcessResponse.d.ts +19 -36
  170. package/dist/cjs/api/resources/process/types/GetProcessesResponse.d.ts +19 -36
  171. package/dist/cjs/api/resources/program/client/Client.d.ts +1 -1
  172. package/dist/cjs/api/resources/program/client/Client.js +26 -14
  173. package/dist/cjs/api/resources/program/client/requests/GetLpListRequest.d.ts +2 -2
  174. package/dist/cjs/api/resources/program/client/requests/SubscribeToLoyaltyProgramRequest.d.ts +5 -3
  175. package/dist/cjs/api/resources/program/types/GetLpListRequestSort.d.ts +5 -0
  176. package/dist/cjs/api/resources/program/types/GetLpListRequestSort.js +8 -0
  177. package/dist/cjs/api/resources/program/types/GetParameterSubscriptionInfoResponse.d.ts +2 -0
  178. package/dist/cjs/api/resources/program/types/SubscribeMemberToASubscriptionResponse.d.ts +4 -4
  179. package/dist/cjs/api/resources/program/types/SubscribeToLoyaltyProgramResponse.d.ts +10 -8
  180. package/dist/cjs/api/resources/program/types/index.d.ts +1 -0
  181. package/dist/cjs/api/resources/program/types/index.js +1 -0
  182. package/dist/cjs/api/resources/reward/client/Client.js +26 -10
  183. package/dist/cjs/api/resources/reward/client/requests/CreateVoucherRequest.d.ts +2 -0
  184. package/dist/cjs/api/resources/reward/client/requests/RedeemVoucherRequest.d.ts +2 -0
  185. package/dist/cjs/api/resources/reward/types/CreateRewardResponse.d.ts +7 -7
  186. package/dist/cjs/api/resources/reward/types/CreateVoucherResponse.d.ts +2 -0
  187. package/dist/cjs/api/resources/reward/types/GetLoyaltyOfferProgramsPidVouchersResponse.d.ts +2 -0
  188. package/dist/cjs/api/resources/senders/client/Client.js +11 -7
  189. package/dist/cjs/api/resources/senders/types/GetIpsResponse.d.ts +2 -2
  190. package/dist/cjs/api/resources/smsCampaigns/client/Client.d.ts +16 -0
  191. package/dist/cjs/api/resources/smsCampaigns/client/Client.js +30 -10
  192. package/dist/cjs/api/resources/smsCampaigns/client/requests/GetSmsCampaignsRequest.d.ts +3 -3
  193. package/dist/cjs/api/resources/smsCampaigns/types/GetSmsCampaignResponse.d.ts +38 -2
  194. package/dist/cjs/api/resources/smsCampaigns/types/GetSmsCampaignsResponse.d.ts +7 -1
  195. package/dist/cjs/api/resources/smsTemplates/client/Client.js +5 -1
  196. package/dist/cjs/api/resources/tasks/client/Client.d.ts +16 -2
  197. package/dist/cjs/api/resources/tasks/client/Client.js +35 -12
  198. package/dist/cjs/api/resources/tasks/client/requests/PostCrmTasksRequest.d.ts +1 -1
  199. package/dist/cjs/api/resources/tasks/types/{GetCrmTasktypesResponse.d.ts → GetCrmTasktypesResponseItem.d.ts} +1 -4
  200. package/dist/cjs/api/resources/tasks/types/GetCrmTasktypesResponseItem.js +3 -0
  201. package/dist/cjs/api/resources/tasks/types/index.d.ts +1 -1
  202. package/dist/cjs/api/resources/tasks/types/index.js +1 -1
  203. package/dist/cjs/api/resources/tier/client/Client.js +22 -10
  204. package/dist/cjs/api/resources/tier/client/requests/CreateTierGroupRequest.d.ts +62 -0
  205. package/dist/cjs/api/resources/tier/client/requests/CreateTierGroupRequest.js +30 -0
  206. package/dist/cjs/api/resources/transactionalEmails/client/Client.d.ts +31 -2
  207. package/dist/cjs/api/resources/transactionalEmails/client/Client.js +114 -35
  208. package/dist/cjs/api/resources/transactionalEmails/client/requests/DeleteScheduledEmailByIdRequest.d.ts +1 -1
  209. package/dist/cjs/api/resources/transactionalEmails/client/requests/DeleteSmtpLogIdentifierRequest.d.ts +5 -1
  210. package/dist/cjs/api/resources/transactionalEmails/client/requests/GetAggregatedSmtpReportRequest.d.ts +1 -1
  211. package/dist/cjs/api/resources/transactionalEmails/client/requests/GetEmailEventReportRequest.d.ts +1 -1
  212. package/dist/cjs/api/resources/transactionalEmails/client/requests/GetScheduledEmailByIdRequest.d.ts +2 -2
  213. package/dist/cjs/api/resources/transactionalEmails/client/requests/GetSmtpReportRequest.d.ts +1 -1
  214. package/dist/cjs/api/resources/transactionalEmails/client/requests/GetSmtpTemplateRequest.d.ts +3 -2
  215. package/dist/cjs/api/resources/transactionalEmails/client/requests/GetSmtpTemplatesRequest.d.ts +2 -0
  216. package/dist/cjs/api/resources/transactionalEmails/client/requests/UpdateSmtpTemplateRequest.d.ts +3 -2
  217. package/dist/cjs/api/resources/transactionalEmails/types/GetSmtpTemplateRequestTemplateId.d.ts +1 -0
  218. package/dist/cjs/api/resources/transactionalEmails/types/GetSmtpTemplateRequestTemplateId.js +3 -0
  219. package/dist/cjs/api/resources/transactionalEmails/types/GetTransacBlockedContactsResponse.d.ts +1 -1
  220. package/dist/cjs/api/resources/transactionalEmails/types/GetTransacEmailContentResponse.d.ts +2 -2
  221. package/dist/cjs/api/resources/transactionalEmails/types/PostPreviewSmtpEmailTemplatesRequest.d.ts +1 -0
  222. package/dist/cjs/api/resources/transactionalEmails/types/PostPreviewSmtpEmailTemplatesRequest.js +3 -0
  223. package/dist/cjs/api/resources/transactionalEmails/types/UpdateSmtpTemplateRequestTemplateId.d.ts +1 -0
  224. package/dist/cjs/api/resources/transactionalEmails/types/UpdateSmtpTemplateRequestTemplateId.js +3 -0
  225. package/dist/cjs/api/resources/transactionalEmails/types/index.d.ts +3 -0
  226. package/dist/cjs/api/resources/transactionalEmails/types/index.js +3 -0
  227. package/dist/cjs/api/resources/transactionalSms/client/Client.d.ts +9 -0
  228. package/dist/cjs/api/resources/transactionalSms/client/Client.js +28 -5
  229. package/dist/cjs/api/resources/transactionalWhatsApp/client/Client.js +6 -2
  230. package/dist/cjs/api/resources/user/client/Client.d.ts +8 -0
  231. package/dist/cjs/api/resources/user/client/Client.js +14 -6
  232. package/dist/cjs/api/resources/wallet/client/Client.d.ts +34 -0
  233. package/dist/cjs/api/resources/wallet/client/Client.js +126 -0
  234. package/dist/cjs/api/resources/wallet/client/index.d.ts +1 -0
  235. package/dist/cjs/api/resources/wallet/client/index.js +17 -0
  236. package/dist/cjs/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.d.ts +13 -0
  237. package/dist/cjs/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.js +3 -0
  238. package/dist/cjs/api/resources/wallet/client/requests/index.d.ts +1 -0
  239. package/dist/cjs/api/resources/wallet/client/requests/index.js +2 -0
  240. package/dist/cjs/api/resources/wallet/exports.d.ts +2 -0
  241. package/dist/cjs/api/resources/wallet/exports.js +21 -0
  242. package/dist/cjs/api/resources/wallet/index.d.ts +1 -0
  243. package/dist/cjs/api/resources/wallet/index.js +17 -0
  244. package/dist/cjs/api/resources/webhooks/client/Client.d.ts +0 -1
  245. package/dist/cjs/api/resources/webhooks/client/Client.js +10 -7
  246. package/dist/cjs/api/resources/webhooks/client/requests/CreateWebhookRequest.d.ts +14 -21
  247. package/dist/cjs/api/resources/webhooks/client/requests/CreateWebhookRequest.js +2 -2
  248. package/dist/cjs/api/resources/webhooks/client/requests/ExportWebhooksHistoryRequest.d.ts +1 -1
  249. package/dist/cjs/api/resources/whatsAppCampaigns/client/Client.d.ts +6 -0
  250. package/dist/cjs/api/resources/whatsAppCampaigns/client/Client.js +23 -9
  251. package/dist/cjs/api/resources/whatsAppCampaigns/types/GetWhatsAppCampaignResponse.d.ts +15 -0
  252. package/dist/cjs/api/resources/whatsAppCampaigns/types/GetWhatsAppTemplatesResponse.d.ts +2 -0
  253. package/dist/cjs/api/types/BalanceDefinition.d.ts +81 -32
  254. package/dist/cjs/api/types/BalanceDefinition.js +46 -2
  255. package/dist/cjs/api/types/BalanceLimit.d.ts +37 -14
  256. package/dist/cjs/api/types/BalanceLimit.js +22 -0
  257. package/dist/cjs/api/types/Company.d.ts +1 -1
  258. package/dist/cjs/api/types/ConsentGroup.d.ts +29 -0
  259. package/dist/cjs/api/types/ConsentGroup.js +12 -0
  260. package/dist/cjs/api/types/ConsentGroupItem.d.ts +17 -0
  261. package/dist/cjs/api/types/ConsentGroupItem.js +12 -0
  262. package/dist/cjs/api/types/ConsentGroupsListResponse.d.ts +14 -0
  263. package/dist/cjs/api/types/ConsentGroupsListResponse.js +3 -0
  264. package/dist/cjs/api/types/ConversationsMessage.d.ts +59 -20
  265. package/dist/cjs/api/types/Deal.d.ts +4 -4
  266. package/dist/cjs/api/types/FileData.d.ts +8 -6
  267. package/dist/cjs/api/types/GetCampaignRecipients.d.ts +4 -0
  268. package/dist/cjs/api/types/GetCampaignStats.d.ts +15 -15
  269. package/dist/cjs/api/types/GetContactDetails.d.ts +5 -0
  270. package/dist/cjs/api/types/GetEventsList.d.ts +0 -2
  271. package/dist/cjs/api/types/GetExtendedCampaignOverview.d.ts +28 -5
  272. package/dist/cjs/api/types/GetExtendedCampaignOverview.js +9 -0
  273. package/dist/cjs/api/types/GetExtendedCampaignStats.d.ts +8 -10
  274. package/dist/cjs/api/types/GetProductDetails.d.ts +3 -1
  275. package/dist/cjs/api/types/GetSmsCampaignOverview.d.ts +7 -1
  276. package/dist/cjs/api/types/GetSmtpTemplateOverview.d.ts +3 -1
  277. package/dist/cjs/api/types/GetWebhook.d.ts +5 -10
  278. package/dist/cjs/api/types/GetWebhook.js +2 -6
  279. package/dist/cjs/api/types/LoyaltyProgram.d.ts +23 -20
  280. package/dist/cjs/api/types/LoyaltyProgram.js +2 -1
  281. package/dist/cjs/api/types/Note.d.ts +10 -8
  282. package/dist/cjs/api/types/NoteData.d.ts +1 -1
  283. package/dist/cjs/api/types/Order.d.ts +1 -1
  284. package/dist/cjs/api/types/Pipeline.d.ts +3 -3
  285. package/dist/cjs/api/types/SendTransacSms.d.ts +7 -14
  286. package/dist/cjs/api/types/Task.d.ts +20 -8
  287. package/dist/cjs/api/types/TierGroup.d.ts +66 -0
  288. package/dist/cjs/api/types/TierGroup.js +30 -0
  289. package/dist/cjs/api/types/Transaction.d.ts +36 -17
  290. package/dist/cjs/api/types/Transaction.js +17 -0
  291. package/dist/cjs/api/types/WalletPassInstallUrl.d.ts +4 -0
  292. package/dist/cjs/api/types/WalletPassInstallUrl.js +3 -0
  293. package/dist/cjs/api/types/index.d.ts +4 -0
  294. package/dist/cjs/api/types/index.js +4 -0
  295. package/dist/cjs/core/auth/AuthProvider.d.ts +1 -0
  296. package/dist/cjs/core/auth/AuthProvider.js +7 -0
  297. package/dist/cjs/core/auth/index.d.ts +1 -1
  298. package/dist/cjs/core/auth/index.js +3 -1
  299. package/dist/cjs/core/fetcher/Fetcher.d.ts +6 -0
  300. package/dist/cjs/core/fetcher/Fetcher.js +9 -8
  301. package/dist/cjs/core/fetcher/getResponseBody.js +11 -0
  302. package/dist/cjs/core/fetcher/requestWithRetries.js +4 -1
  303. package/dist/cjs/core/fetcher/signals.js +9 -1
  304. package/dist/cjs/core/url/QueryStringBuilder.d.ts +47 -0
  305. package/dist/cjs/core/url/QueryStringBuilder.js +83 -0
  306. package/dist/cjs/core/url/index.d.ts +1 -0
  307. package/dist/cjs/core/url/index.js +3 -1
  308. package/dist/cjs/core/url/qs.d.ts +2 -1
  309. package/dist/cjs/core/url/qs.js +25 -13
  310. package/dist/cjs/errors/BrevoError.d.ts +1 -0
  311. package/dist/cjs/errors/BrevoError.js +5 -1
  312. package/dist/cjs/errors/BrevoTimeoutError.d.ts +2 -2
  313. package/dist/cjs/errors/BrevoTimeoutError.js +40 -6
  314. package/dist/cjs/version.d.ts +1 -1
  315. package/dist/cjs/version.js +1 -1
  316. package/dist/esm/BaseClient.d.mts +13 -0
  317. package/dist/esm/BaseClient.mjs +17 -2
  318. package/dist/esm/Client.d.mts +6 -0
  319. package/dist/esm/Client.mjs +10 -0
  320. package/dist/esm/api/errors/BadRequestError.mjs +1 -1
  321. package/dist/esm/api/errors/ConflictError.mjs +1 -1
  322. package/dist/esm/api/errors/ExpectationFailedError.mjs +1 -1
  323. package/dist/esm/api/errors/FailedDependencyError.mjs +1 -1
  324. package/dist/esm/api/errors/ForbiddenError.mjs +1 -1
  325. package/dist/esm/api/errors/InternalServerError.mjs +1 -1
  326. package/dist/esm/api/errors/MethodNotAllowedError.mjs +1 -1
  327. package/dist/esm/api/errors/NotFoundError.mjs +1 -1
  328. package/dist/esm/api/errors/PaymentRequiredError.mjs +1 -1
  329. package/dist/esm/api/errors/PreconditionFailedError.mjs +1 -1
  330. package/dist/esm/api/errors/TooEarlyError.mjs +1 -1
  331. package/dist/esm/api/errors/TooManyRequestsError.mjs +1 -1
  332. package/dist/esm/api/errors/UnauthorizedError.mjs +1 -1
  333. package/dist/esm/api/errors/UnprocessableEntityError.mjs +1 -1
  334. package/dist/esm/api/errors/UnsupportedMediaTypeError.mjs +1 -1
  335. package/dist/esm/api/resources/account/client/Client.d.mts +5 -6
  336. package/dist/esm/api/resources/account/client/Client.mjs +21 -13
  337. package/dist/esm/api/resources/account/types/GetAccountResponse.d.mts +4 -17
  338. package/dist/esm/api/resources/balance/client/Client.d.mts +9 -8
  339. package/dist/esm/api/resources/balance/client/Client.mjs +70 -33
  340. package/dist/esm/api/resources/balance/client/requests/BeginTransactionRequest.d.mts +21 -11
  341. package/dist/esm/api/resources/balance/client/requests/BeginTransactionRequest.mjs +8 -1
  342. package/dist/esm/api/resources/balance/client/requests/CreateBalanceOrderRequest.d.mts +11 -3
  343. package/dist/esm/api/resources/balance/client/requests/CreateBalanceOrderRequest.mjs +8 -1
  344. package/dist/esm/api/resources/balance/client/requests/GetContactBalancesRequest.d.mts +13 -1
  345. package/dist/esm/api/resources/balance/client/requests/GetLoyaltyBalanceProgramsPidActiveBalanceRequest.d.mts +7 -6
  346. package/dist/esm/api/resources/balance/client/requests/GetLoyaltyBalanceProgramsPidTransactionHistoryRequest.d.mts +6 -6
  347. package/dist/esm/api/resources/balance/client/requests/index.d.mts +2 -2
  348. package/dist/esm/api/resources/balance/client/requests/index.mjs +2 -0
  349. package/dist/esm/api/resources/balance/types/GetContactBalancesRequestSort.d.mts +5 -0
  350. package/dist/esm/api/resources/balance/types/GetContactBalancesRequestSort.mjs +5 -0
  351. package/dist/esm/api/resources/balance/types/GetContactBalancesRequestSortField.d.mts +5 -0
  352. package/dist/esm/api/resources/balance/types/GetContactBalancesRequestSortField.mjs +5 -0
  353. package/dist/esm/api/resources/balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceRequestSort.d.mts +5 -0
  354. package/dist/esm/api/resources/balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceRequestSort.mjs +5 -0
  355. package/dist/esm/api/resources/balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceResponse.d.mts +30 -0
  356. package/dist/esm/api/resources/balance/types/GetLoyaltyBalanceProgramsPidTransactionHistoryResponse.d.mts +10 -0
  357. package/dist/esm/api/resources/balance/types/GetLoyaltyBalanceProgramsPidTransactionHistoryResponse.mjs +14 -1
  358. package/dist/esm/api/resources/balance/types/GetSubscriptionBalancesResponse.d.mts +7 -2
  359. package/dist/esm/api/resources/balance/types/PostLoyaltyBalanceProgramsPidSubscriptionsCidBalancesResponse.d.mts +14 -14
  360. package/dist/esm/api/resources/balance/types/index.d.mts +4 -0
  361. package/dist/esm/api/resources/balance/types/index.mjs +4 -0
  362. package/dist/esm/api/resources/companies/client/Client.d.mts +22 -0
  363. package/dist/esm/api/resources/companies/client/Client.mjs +49 -18
  364. package/dist/esm/api/resources/companies/client/requests/GetCompaniesRequest.d.mts +4 -4
  365. package/dist/esm/api/resources/companies/client/requests/PatchCompaniesIdRequest.d.mts +1 -1
  366. package/dist/esm/api/resources/companies/client/requests/PostCompaniesImportRequest.d.mts +1 -1
  367. package/dist/esm/api/resources/companies/client/requests/PostCrmAttributesRequest.d.mts +2 -2
  368. package/dist/esm/api/resources/companies/client/requests/PostCrmAttributesRequest.mjs +1 -1
  369. package/dist/esm/api/resources/companies/types/GetCrmAttributesCompaniesResponseItem.d.mts +20 -4
  370. package/dist/esm/api/resources/consentGroups/client/Client.d.mts +108 -0
  371. package/dist/esm/api/resources/consentGroups/client/Client.mjs +346 -0
  372. package/dist/esm/api/resources/consentGroups/client/index.d.mts +1 -0
  373. package/dist/esm/api/resources/consentGroups/client/index.mjs +1 -0
  374. package/dist/esm/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.d.mts +25 -0
  375. package/dist/esm/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.mjs +9 -0
  376. package/dist/esm/api/resources/consentGroups/client/requests/DeleteConsentGroupRequest.d.mts +10 -0
  377. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupRequest.d.mts +10 -0
  378. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupRequest.mjs +2 -0
  379. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.d.mts +17 -0
  380. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.mjs +2 -0
  381. package/dist/esm/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.d.mts +24 -0
  382. package/dist/esm/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.mjs +9 -0
  383. package/dist/esm/api/resources/consentGroups/client/requests/index.d.mts +5 -0
  384. package/dist/esm/api/resources/consentGroups/client/requests/index.mjs +2 -0
  385. package/dist/esm/api/resources/consentGroups/exports.d.mts +2 -0
  386. package/dist/esm/api/resources/consentGroups/exports.mjs +3 -0
  387. package/dist/esm/api/resources/consentGroups/index.d.mts +2 -0
  388. package/dist/esm/api/resources/consentGroups/index.mjs +2 -0
  389. package/dist/esm/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.d.mts +5 -0
  390. package/dist/esm/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.mjs +5 -0
  391. package/dist/esm/api/resources/consentGroups/types/index.d.mts +1 -0
  392. package/dist/esm/api/resources/consentGroups/types/index.mjs +1 -0
  393. package/dist/esm/api/resources/contacts/client/Client.d.mts +37 -0
  394. package/dist/esm/api/resources/contacts/client/Client.mjs +125 -36
  395. package/dist/esm/api/resources/contacts/client/requests/CreateContactRequest.d.mts +4 -0
  396. package/dist/esm/api/resources/contacts/client/requests/GetContactInfoRequest.d.mts +2 -2
  397. package/dist/esm/api/resources/contacts/client/requests/GetContactStatsRequest.d.mts +2 -2
  398. package/dist/esm/api/resources/contacts/client/requests/GetContactsRequest.d.mts +3 -1
  399. package/dist/esm/api/resources/contacts/client/requests/GetListRequest.d.mts +1 -1
  400. package/dist/esm/api/resources/contacts/client/requests/ImportContactsRequest.d.mts +2 -0
  401. package/dist/esm/api/resources/contacts/client/requests/UpdateContactRequest.d.mts +4 -2
  402. package/dist/esm/api/resources/contacts/types/GetAttributesResponse.d.mts +3 -1
  403. package/dist/esm/api/resources/contacts/types/GetContactInfoResponse.d.mts +8 -3
  404. package/dist/esm/api/resources/contacts/types/GetContactStatsResponse.d.mts +1 -1
  405. package/dist/esm/api/resources/contacts/types/GetSegmentsResponse.d.mts +2 -2
  406. package/dist/esm/api/resources/conversations/client/Client.d.mts +18 -8
  407. package/dist/esm/api/resources/conversations/client/Client.mjs +28 -18
  408. package/dist/esm/api/resources/conversations/client/requests/PostConversationsAgentOnlinePingRequest.d.mts +8 -8
  409. package/dist/esm/api/resources/conversations/client/requests/PostConversationsMessagesRequest.d.mts +12 -10
  410. package/dist/esm/api/resources/conversations/client/requests/PostConversationsPushedMessagesRequest.d.mts +11 -9
  411. package/dist/esm/api/resources/conversations/client/requests/PutConversationsMessagesIdRequest.d.mts +1 -1
  412. package/dist/esm/api/resources/conversations/client/requests/PutConversationsPushedMessagesIdRequest.d.mts +2 -2
  413. package/dist/esm/api/resources/coupons/client/Client.d.mts +10 -0
  414. package/dist/esm/api/resources/coupons/client/Client.mjs +19 -5
  415. package/dist/esm/api/resources/customObjects/client/Client.d.mts +101 -21
  416. package/dist/esm/api/resources/customObjects/client/Client.mjs +108 -26
  417. package/dist/esm/api/resources/customObjects/client/requests/BatchDeleteObjectRecordsRequest.d.mts +2 -2
  418. package/dist/esm/api/resources/customObjects/client/requests/GetrecordsRequest.d.mts +1 -1
  419. package/dist/esm/api/resources/customObjects/client/requests/UpsertrecordsRequest.d.mts +114 -25
  420. package/dist/esm/api/resources/customObjects/client/requests/UpsertrecordsRequest.mjs +20 -1
  421. package/dist/esm/api/resources/customObjects/client/requests/index.d.mts +1 -1
  422. package/dist/esm/api/resources/customObjects/client/requests/index.mjs +1 -1
  423. package/dist/esm/api/resources/customObjects/types/GetrecordsResponse.d.mts +14 -5
  424. package/dist/esm/api/resources/deals/client/Client.d.mts +22 -0
  425. package/dist/esm/api/resources/deals/client/Client.mjs +62 -22
  426. package/dist/esm/api/resources/deals/client/requests/GetCrmDealsRequest.d.mts +11 -3
  427. package/dist/esm/api/resources/deals/client/requests/PatchCrmDealsIdRequest.d.mts +1 -1
  428. package/dist/esm/api/resources/deals/client/requests/PostCrmDealsImportRequest.d.mts +1 -1
  429. package/dist/esm/api/resources/deals/types/GetCrmAttributesDealsResponseItem.d.mts +20 -4
  430. package/dist/esm/api/resources/domains/client/Client.mjs +5 -5
  431. package/dist/esm/api/resources/ecommerce/client/Client.d.mts +30 -1
  432. package/dist/esm/api/resources/ecommerce/client/Client.mjs +73 -20
  433. package/dist/esm/api/resources/ecommerce/client/requests/CreateBatchOrderRequest.d.mts +2 -2
  434. package/dist/esm/api/resources/ecommerce/client/requests/CreateUpdateBatchProductsRequest.d.mts +4 -2
  435. package/dist/esm/api/resources/ecommerce/client/requests/CreateUpdateProductRequest.d.mts +4 -2
  436. package/dist/esm/api/resources/ecommerce/client/requests/GetEcommerceAttributionMetricsRequest.d.mts +2 -1
  437. package/dist/esm/api/resources/ecommerce/client/requests/GetProductsRequest.d.mts +18 -2
  438. package/dist/esm/api/resources/ecommerce/types/CreateBatchOrderResponse.d.mts +2 -2
  439. package/dist/esm/api/resources/ecommerce/types/CreateUpdateCategoryResponse.d.mts +1 -1
  440. package/dist/esm/api/resources/ecommerce/types/CreateUpdateProductResponse.d.mts +2 -2
  441. package/dist/esm/api/resources/ecommerce/types/GetProductsRequestSortByField.d.mts +7 -0
  442. package/dist/esm/api/resources/ecommerce/types/GetProductsRequestSortByField.mjs +7 -0
  443. package/dist/esm/api/resources/ecommerce/types/index.d.mts +1 -0
  444. package/dist/esm/api/resources/ecommerce/types/index.mjs +1 -0
  445. package/dist/esm/api/resources/emailCampaigns/client/Client.d.mts +22 -1
  446. package/dist/esm/api/resources/emailCampaigns/client/Client.mjs +51 -15
  447. package/dist/esm/api/resources/emailCampaigns/client/requests/CreateEmailCampaignRequest.d.mts +7 -7
  448. package/dist/esm/api/resources/emailCampaigns/client/requests/GetEmailCampaignRequest.d.mts +1 -1
  449. package/dist/esm/api/resources/emailCampaigns/client/requests/GetEmailCampaignsRequest.d.mts +6 -4
  450. package/dist/esm/api/resources/emailCampaigns/types/GetEmailCampaignResponse.d.mts +28 -5
  451. package/dist/esm/api/resources/emailCampaigns/types/GetEmailCampaignResponse.mjs +9 -0
  452. package/dist/esm/api/resources/emailCampaigns/types/GetEmailCampaignsResponse.d.mts +27 -4
  453. package/dist/esm/api/resources/emailCampaigns/types/GetEmailCampaignsResponse.mjs +9 -0
  454. package/dist/esm/api/resources/event/client/Client.d.mts +8 -6
  455. package/dist/esm/api/resources/event/client/Client.mjs +14 -8
  456. package/dist/esm/api/resources/event/client/requests/CreateBatchEventsRequest.d.mts +76 -0
  457. package/dist/esm/api/resources/event/client/requests/CreateBatchEventsRequest.mjs +2 -0
  458. package/dist/esm/api/resources/event/client/requests/CreateEventRequest.d.mts +3 -3
  459. package/dist/esm/api/resources/event/client/requests/index.d.mts +1 -0
  460. package/dist/esm/api/resources/event/index.d.mts +0 -1
  461. package/dist/esm/api/resources/event/index.mjs +0 -1
  462. package/dist/esm/api/resources/externalFeeds/client/Client.mjs +9 -5
  463. package/dist/esm/api/resources/externalFeeds/types/GetAllExternalFeedsResponse.d.mts +3 -7
  464. package/dist/esm/api/resources/externalFeeds/types/GetExternalFeedByUuidResponse.d.mts +3 -9
  465. package/dist/esm/api/resources/files/client/Client.d.mts +10 -0
  466. package/dist/esm/api/resources/files/client/Client.mjs +19 -5
  467. package/dist/esm/api/resources/inboundParsing/client/Client.d.mts +2 -1
  468. package/dist/esm/api/resources/inboundParsing/client/Client.mjs +11 -4
  469. package/dist/esm/api/resources/inboundParsing/client/requests/GetInboundEmailEventsRequest.d.mts +2 -2
  470. package/dist/esm/api/resources/inboundParsing/types/GetInboundEmailEventsByUuidResponse.d.mts +2 -2
  471. package/dist/esm/api/resources/index.d.mts +5 -1
  472. package/dist/esm/api/resources/index.mjs +5 -1
  473. package/dist/esm/api/resources/masterAccount/client/Client.d.mts +10 -0
  474. package/dist/esm/api/resources/masterAccount/client/Client.mjs +84 -46
  475. package/dist/esm/api/resources/notes/client/Client.d.mts +12 -2
  476. package/dist/esm/api/resources/notes/client/Client.mjs +21 -7
  477. package/dist/esm/api/resources/notes/client/requests/PatchCrmNotesIdRequest.d.mts +1 -1
  478. package/dist/esm/api/resources/notes/types/PostCrmNotesResponse.d.mts +1 -1
  479. package/dist/esm/api/resources/payments/client/Client.d.mts +6 -0
  480. package/dist/esm/api/resources/payments/client/Client.mjs +9 -3
  481. package/dist/esm/api/resources/process/client/Client.d.mts +13 -18
  482. package/dist/esm/api/resources/process/client/Client.mjs +19 -20
  483. package/dist/esm/api/resources/process/types/GetProcessResponse.d.mts +19 -36
  484. package/dist/esm/api/resources/process/types/GetProcessesResponse.d.mts +19 -36
  485. package/dist/esm/api/resources/program/client/Client.d.mts +1 -1
  486. package/dist/esm/api/resources/program/client/Client.mjs +26 -14
  487. package/dist/esm/api/resources/program/client/requests/GetLpListRequest.d.mts +2 -2
  488. package/dist/esm/api/resources/program/client/requests/SubscribeToLoyaltyProgramRequest.d.mts +5 -3
  489. package/dist/esm/api/resources/program/types/GetLpListRequestSort.d.mts +5 -0
  490. package/dist/esm/api/resources/program/types/GetLpListRequestSort.mjs +5 -0
  491. package/dist/esm/api/resources/program/types/GetParameterSubscriptionInfoResponse.d.mts +2 -0
  492. package/dist/esm/api/resources/program/types/SubscribeMemberToASubscriptionResponse.d.mts +4 -4
  493. package/dist/esm/api/resources/program/types/SubscribeToLoyaltyProgramResponse.d.mts +10 -8
  494. package/dist/esm/api/resources/program/types/index.d.mts +1 -0
  495. package/dist/esm/api/resources/program/types/index.mjs +1 -0
  496. package/dist/esm/api/resources/reward/client/Client.mjs +26 -10
  497. package/dist/esm/api/resources/reward/client/requests/CreateVoucherRequest.d.mts +2 -0
  498. package/dist/esm/api/resources/reward/client/requests/RedeemVoucherRequest.d.mts +2 -0
  499. package/dist/esm/api/resources/reward/types/CreateRewardResponse.d.mts +7 -7
  500. package/dist/esm/api/resources/reward/types/CreateVoucherResponse.d.mts +2 -0
  501. package/dist/esm/api/resources/reward/types/GetLoyaltyOfferProgramsPidVouchersResponse.d.mts +2 -0
  502. package/dist/esm/api/resources/senders/client/Client.mjs +11 -7
  503. package/dist/esm/api/resources/senders/types/GetIpsResponse.d.mts +2 -2
  504. package/dist/esm/api/resources/smsCampaigns/client/Client.d.mts +16 -0
  505. package/dist/esm/api/resources/smsCampaigns/client/Client.mjs +30 -10
  506. package/dist/esm/api/resources/smsCampaigns/client/requests/GetSmsCampaignsRequest.d.mts +3 -3
  507. package/dist/esm/api/resources/smsCampaigns/types/GetSmsCampaignResponse.d.mts +38 -2
  508. package/dist/esm/api/resources/smsCampaigns/types/GetSmsCampaignsResponse.d.mts +7 -1
  509. package/dist/esm/api/resources/smsTemplates/client/Client.mjs +5 -1
  510. package/dist/esm/api/resources/tasks/client/Client.d.mts +16 -2
  511. package/dist/esm/api/resources/tasks/client/Client.mjs +35 -12
  512. package/dist/esm/api/resources/tasks/client/requests/PostCrmTasksRequest.d.mts +1 -1
  513. package/dist/esm/api/resources/tasks/types/{GetCrmTasktypesResponse.d.mts → GetCrmTasktypesResponseItem.d.mts} +1 -4
  514. package/dist/esm/api/resources/tasks/types/GetCrmTasktypesResponseItem.mjs +2 -0
  515. package/dist/esm/api/resources/tasks/types/index.d.mts +1 -1
  516. package/dist/esm/api/resources/tasks/types/index.mjs +1 -1
  517. package/dist/esm/api/resources/tier/client/Client.mjs +22 -10
  518. package/dist/esm/api/resources/tier/client/requests/CreateTierGroupRequest.d.mts +62 -0
  519. package/dist/esm/api/resources/tier/client/requests/CreateTierGroupRequest.mjs +30 -0
  520. package/dist/esm/api/resources/transactionalEmails/client/Client.d.mts +31 -2
  521. package/dist/esm/api/resources/transactionalEmails/client/Client.mjs +114 -35
  522. package/dist/esm/api/resources/transactionalEmails/client/requests/DeleteScheduledEmailByIdRequest.d.mts +1 -1
  523. package/dist/esm/api/resources/transactionalEmails/client/requests/DeleteSmtpLogIdentifierRequest.d.mts +5 -1
  524. package/dist/esm/api/resources/transactionalEmails/client/requests/GetAggregatedSmtpReportRequest.d.mts +1 -1
  525. package/dist/esm/api/resources/transactionalEmails/client/requests/GetEmailEventReportRequest.d.mts +1 -1
  526. package/dist/esm/api/resources/transactionalEmails/client/requests/GetScheduledEmailByIdRequest.d.mts +2 -2
  527. package/dist/esm/api/resources/transactionalEmails/client/requests/GetSmtpReportRequest.d.mts +1 -1
  528. package/dist/esm/api/resources/transactionalEmails/client/requests/GetSmtpTemplateRequest.d.mts +3 -2
  529. package/dist/esm/api/resources/transactionalEmails/client/requests/GetSmtpTemplatesRequest.d.mts +2 -0
  530. package/dist/esm/api/resources/transactionalEmails/client/requests/UpdateSmtpTemplateRequest.d.mts +3 -2
  531. package/dist/esm/api/resources/transactionalEmails/types/GetSmtpTemplateRequestTemplateId.d.mts +1 -0
  532. package/dist/esm/api/resources/transactionalEmails/types/GetSmtpTemplateRequestTemplateId.mjs +2 -0
  533. package/dist/esm/api/resources/transactionalEmails/types/GetTransacBlockedContactsResponse.d.mts +1 -1
  534. package/dist/esm/api/resources/transactionalEmails/types/GetTransacEmailContentResponse.d.mts +2 -2
  535. package/dist/esm/api/resources/transactionalEmails/types/PostPreviewSmtpEmailTemplatesRequest.d.mts +1 -0
  536. package/dist/esm/api/resources/transactionalEmails/types/PostPreviewSmtpEmailTemplatesRequest.mjs +2 -0
  537. package/dist/esm/api/resources/transactionalEmails/types/UpdateSmtpTemplateRequestTemplateId.d.mts +1 -0
  538. package/dist/esm/api/resources/transactionalEmails/types/UpdateSmtpTemplateRequestTemplateId.mjs +2 -0
  539. package/dist/esm/api/resources/transactionalEmails/types/index.d.mts +3 -0
  540. package/dist/esm/api/resources/transactionalEmails/types/index.mjs +3 -0
  541. package/dist/esm/api/resources/transactionalSms/client/Client.d.mts +9 -0
  542. package/dist/esm/api/resources/transactionalSms/client/Client.mjs +28 -5
  543. package/dist/esm/api/resources/transactionalWhatsApp/client/Client.mjs +6 -2
  544. package/dist/esm/api/resources/user/client/Client.d.mts +8 -0
  545. package/dist/esm/api/resources/user/client/Client.mjs +14 -6
  546. package/dist/esm/api/resources/wallet/client/Client.d.mts +34 -0
  547. package/dist/esm/api/resources/wallet/client/Client.mjs +89 -0
  548. package/dist/esm/api/resources/wallet/client/index.d.mts +1 -0
  549. package/dist/esm/api/resources/wallet/client/index.mjs +1 -0
  550. package/dist/esm/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.d.mts +13 -0
  551. package/dist/esm/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.mjs +2 -0
  552. package/dist/esm/api/resources/wallet/client/requests/index.d.mts +1 -0
  553. package/dist/esm/api/resources/wallet/client/requests/index.mjs +1 -0
  554. package/dist/esm/api/resources/wallet/exports.d.mts +2 -0
  555. package/dist/esm/api/resources/wallet/exports.mjs +3 -0
  556. package/dist/esm/api/resources/wallet/index.d.mts +1 -0
  557. package/dist/esm/api/resources/wallet/index.mjs +1 -0
  558. package/dist/esm/api/resources/webhooks/client/Client.d.mts +0 -1
  559. package/dist/esm/api/resources/webhooks/client/Client.mjs +10 -7
  560. package/dist/esm/api/resources/webhooks/client/requests/CreateWebhookRequest.d.mts +14 -21
  561. package/dist/esm/api/resources/webhooks/client/requests/CreateWebhookRequest.mjs +2 -2
  562. package/dist/esm/api/resources/webhooks/client/requests/ExportWebhooksHistoryRequest.d.mts +1 -1
  563. package/dist/esm/api/resources/whatsAppCampaigns/client/Client.d.mts +6 -0
  564. package/dist/esm/api/resources/whatsAppCampaigns/client/Client.mjs +23 -9
  565. package/dist/esm/api/resources/whatsAppCampaigns/types/GetWhatsAppCampaignResponse.d.mts +15 -0
  566. package/dist/esm/api/resources/whatsAppCampaigns/types/GetWhatsAppTemplatesResponse.d.mts +2 -0
  567. package/dist/esm/api/types/BalanceDefinition.d.mts +81 -32
  568. package/dist/esm/api/types/BalanceDefinition.mjs +46 -2
  569. package/dist/esm/api/types/BalanceLimit.d.mts +37 -14
  570. package/dist/esm/api/types/BalanceLimit.mjs +21 -1
  571. package/dist/esm/api/types/Company.d.mts +1 -1
  572. package/dist/esm/api/types/ConsentGroup.d.mts +29 -0
  573. package/dist/esm/api/types/ConsentGroup.mjs +9 -0
  574. package/dist/esm/api/types/ConsentGroupItem.d.mts +17 -0
  575. package/dist/esm/api/types/ConsentGroupItem.mjs +9 -0
  576. package/dist/esm/api/types/ConsentGroupsListResponse.d.mts +14 -0
  577. package/dist/esm/api/types/ConsentGroupsListResponse.mjs +2 -0
  578. package/dist/esm/api/types/ConversationsMessage.d.mts +59 -20
  579. package/dist/esm/api/types/Deal.d.mts +4 -4
  580. package/dist/esm/api/types/FileData.d.mts +8 -6
  581. package/dist/esm/api/types/GetCampaignRecipients.d.mts +4 -0
  582. package/dist/esm/api/types/GetCampaignStats.d.mts +15 -15
  583. package/dist/esm/api/types/GetContactDetails.d.mts +5 -0
  584. package/dist/esm/api/types/GetEventsList.d.mts +0 -2
  585. package/dist/esm/api/types/GetExtendedCampaignOverview.d.mts +28 -5
  586. package/dist/esm/api/types/GetExtendedCampaignOverview.mjs +9 -0
  587. package/dist/esm/api/types/GetExtendedCampaignStats.d.mts +8 -10
  588. package/dist/esm/api/types/GetProductDetails.d.mts +3 -1
  589. package/dist/esm/api/types/GetSmsCampaignOverview.d.mts +7 -1
  590. package/dist/esm/api/types/GetSmtpTemplateOverview.d.mts +3 -1
  591. package/dist/esm/api/types/GetWebhook.d.mts +5 -10
  592. package/dist/esm/api/types/GetWebhook.mjs +2 -6
  593. package/dist/esm/api/types/LoyaltyProgram.d.mts +23 -20
  594. package/dist/esm/api/types/LoyaltyProgram.mjs +2 -1
  595. package/dist/esm/api/types/Note.d.mts +10 -8
  596. package/dist/esm/api/types/NoteData.d.mts +1 -1
  597. package/dist/esm/api/types/Order.d.mts +1 -1
  598. package/dist/esm/api/types/Pipeline.d.mts +3 -3
  599. package/dist/esm/api/types/SendTransacSms.d.mts +7 -14
  600. package/dist/esm/api/types/Task.d.mts +20 -8
  601. package/dist/esm/api/types/TierGroup.d.mts +66 -0
  602. package/dist/esm/api/types/TierGroup.mjs +30 -0
  603. package/dist/esm/api/types/Transaction.d.mts +36 -17
  604. package/dist/esm/api/types/Transaction.mjs +16 -1
  605. package/dist/esm/api/types/WalletPassInstallUrl.d.mts +4 -0
  606. package/dist/esm/api/types/WalletPassInstallUrl.mjs +2 -0
  607. package/dist/esm/api/types/index.d.mts +4 -0
  608. package/dist/esm/api/types/index.mjs +4 -0
  609. package/dist/esm/core/auth/AuthProvider.d.mts +1 -0
  610. package/dist/esm/core/auth/AuthProvider.mjs +6 -1
  611. package/dist/esm/core/auth/index.d.mts +1 -1
  612. package/dist/esm/core/auth/index.mjs +1 -0
  613. package/dist/esm/core/fetcher/Fetcher.d.mts +6 -0
  614. package/dist/esm/core/fetcher/Fetcher.mjs +9 -8
  615. package/dist/esm/core/fetcher/getResponseBody.mjs +11 -0
  616. package/dist/esm/core/fetcher/requestWithRetries.mjs +4 -1
  617. package/dist/esm/core/fetcher/signals.mjs +9 -1
  618. package/dist/esm/core/url/QueryStringBuilder.d.mts +47 -0
  619. package/dist/esm/core/url/QueryStringBuilder.mjs +80 -0
  620. package/dist/esm/core/url/index.d.mts +1 -0
  621. package/dist/esm/core/url/index.mjs +1 -0
  622. package/dist/esm/core/url/qs.d.mts +2 -1
  623. package/dist/esm/core/url/qs.mjs +25 -13
  624. package/dist/esm/errors/BrevoError.d.mts +1 -0
  625. package/dist/esm/errors/BrevoError.mjs +5 -1
  626. package/dist/esm/errors/BrevoTimeoutError.d.mts +2 -2
  627. package/dist/esm/errors/BrevoTimeoutError.mjs +7 -6
  628. package/dist/esm/version.d.mts +1 -1
  629. package/dist/esm/version.mjs +1 -1
  630. package/package.json +24 -2
  631. package/reference.md +2301 -170
  632. package/dist/cjs/api/resources/event/types/CreateBatchEventsRequestItem.d.ts +0 -59
  633. package/dist/cjs/api/resources/event/types/index.d.ts +0 -1
  634. package/dist/esm/api/resources/event/types/CreateBatchEventsRequestItem.d.mts +0 -59
  635. package/dist/esm/api/resources/event/types/index.d.mts +0 -1
  636. package/dist/esm/api/resources/event/types/index.mjs +0 -1
  637. /package/dist/cjs/api/resources/{event/types/CreateBatchEventsRequestItem.js → balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceResponse.js} +0 -0
  638. /package/dist/cjs/api/resources/{tasks/types/GetCrmTasktypesResponse.js → consentGroups/client/requests/DeleteConsentGroupRequest.js} +0 -0
  639. /package/dist/esm/api/resources/{event/types/CreateBatchEventsRequestItem.mjs → balance/types/GetLoyaltyBalanceProgramsPidActiveBalanceResponse.mjs} +0 -0
  640. /package/dist/esm/api/resources/{tasks/types/GetCrmTasktypesResponse.mjs → consentGroups/client/requests/DeleteConsentGroupRequest.mjs} +0 -0
@@ -25,6 +25,7 @@ __exportStar(require("./GetScheduledEmailByIdRequestStatus.js"), exports);
25
25
  __exportStar(require("./GetScheduledEmailByIdResponse.js"), exports);
26
26
  __exportStar(require("./GetSmtpReportRequestSort.js"), exports);
27
27
  __exportStar(require("./GetSmtpReportResponse.js"), exports);
28
+ __exportStar(require("./GetSmtpTemplateRequestTemplateId.js"), exports);
28
29
  __exportStar(require("./GetSmtpTemplatesRequestSort.js"), exports);
29
30
  __exportStar(require("./GetSmtpTemplatesResponse.js"), exports);
30
31
  __exportStar(require("./GetTransacBlockedContactsRequestSort.js"), exports);
@@ -32,5 +33,7 @@ __exportStar(require("./GetTransacBlockedContactsResponse.js"), exports);
32
33
  __exportStar(require("./GetTransacEmailContentResponse.js"), exports);
33
34
  __exportStar(require("./GetTransacEmailsListRequestSort.js"), exports);
34
35
  __exportStar(require("./GetTransacEmailsListResponse.js"), exports);
36
+ __exportStar(require("./PostPreviewSmtpEmailTemplatesRequest.js"), exports);
35
37
  __exportStar(require("./PostPreviewSmtpEmailTemplatesResponse.js"), exports);
36
38
  __exportStar(require("./SendTransacEmailResponse.js"), exports);
39
+ __exportStar(require("./UpdateSmtpTemplateRequestTemplateId.js"), exports);
@@ -31,11 +31,14 @@ export declare class TransactionalSmsClient {
31
31
  /**
32
32
  * @deprecated
33
33
  *
34
+ * Send a transactional SMS message to a single mobile number. The `sender`, `recipient`, and either `content` or `templateId` fields are required. The sender name is limited to 11 alphanumeric characters or 15 numeric characters, and the recipient must be a valid international phone number (6-15 digits, optional leading +). Tags can be a string or an array of up to 10 strings. The SMS type defaults to `transactional` but can be set to `marketing`; if the content includes a stop code, it is automatically treated as marketing. Returns the message ID, SMS count, credits used, and remaining credits.
35
+ *
34
36
  * @param {Brevo.SendTransacSms} request
35
37
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
36
38
  *
37
39
  * @throws {@link Brevo.BadRequestError}
38
40
  * @throws {@link Brevo.PaymentRequiredError}
41
+ * @throws {@link Brevo.TooManyRequestsError}
39
42
  *
40
43
  * @example
41
44
  * await client.transactionalSms.sendTransacSms({
@@ -46,6 +49,8 @@ export declare class TransactionalSmsClient {
46
49
  sendTransacSms(request: Brevo.SendTransacSms, requestOptions?: TransactionalSmsClient.RequestOptions): core.HttpResponsePromise<Brevo.SendTransacSmsResponse>;
47
50
  private __sendTransacSms;
48
51
  /**
52
+ * Retrieve an aggregated report of your transactional SMS activity over a specified time period, including counts for requests, delivered, hard bounces, soft bounces, blocked, unsubscribed, replied, accepted, rejected, and skipped messages. Filter by date range using `startDate` and `endDate` (both required together, YYYY-MM-DD format) or by a number of past `days` (not compatible with date range). You can further narrow results by `tag`. If no date filter is provided, the report covers all available data and returns the auto-detected date range.
53
+ *
49
54
  * @param {Brevo.GetTransacAggregatedSmsReportRequest} request
50
55
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
51
56
  *
@@ -57,6 +62,8 @@ export declare class TransactionalSmsClient {
57
62
  getTransacAggregatedSmsReport(request?: Brevo.GetTransacAggregatedSmsReportRequest, requestOptions?: TransactionalSmsClient.RequestOptions): core.HttpResponsePromise<Brevo.GetTransacAggregatedSmsReportResponse>;
58
63
  private __getTransacAggregatedSmsReport;
59
64
  /**
65
+ * Retrieve a paginated list of individual SMS event records (unaggregated), including event type, phone number, message ID, timestamp, tag, and reason or reply content where applicable. Results default to 50 per page (max 100) and are sorted in descending order unless overridden. Filter by date range (`startDate`/`endDate`), past `days` (not compatible with date range), specific `event` type (e.g. delivered, bounces, replies), `phoneNumber`, or `tags`. Bounce events include the failure reason, and reply events include the reply content.
66
+ *
60
67
  * @param {Brevo.GetSmsEventsRequest} request
61
68
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
62
69
  *
@@ -68,6 +75,8 @@ export declare class TransactionalSmsClient {
68
75
  getSmsEvents(request?: Brevo.GetSmsEventsRequest, requestOptions?: TransactionalSmsClient.RequestOptions): core.HttpResponsePromise<Brevo.GetSmsEventsResponse>;
69
76
  private __getSmsEvents;
70
77
  /**
78
+ * Retrieve a day-by-day breakdown of your transactional SMS activity, with each entry containing the date and counts for requests, delivered, hard bounces, soft bounces, blocked, unsubscribed, replied, accepted, rejected, and skipped messages. Filter by date range using `startDate` and `endDate` (both required together, YYYY-MM-DD format), by a number of past `days` (not compatible with date range), or by `tag`. Results are sorted in descending order by default unless overridden with the `sort` parameter.
79
+ *
71
80
  * @param {Brevo.GetTransacSmsReportRequest} request
72
81
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
73
82
  *
@@ -84,7 +84,7 @@ class TransactionalSmsClient {
84
84
  method: "POST",
85
85
  headers: _headers,
86
86
  contentType: "application/json",
87
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
87
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
88
88
  requestType: "json",
89
89
  body: request,
90
90
  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,
@@ -117,11 +117,14 @@ class TransactionalSmsClient {
117
117
  /**
118
118
  * @deprecated
119
119
  *
120
+ * Send a transactional SMS message to a single mobile number. The `sender`, `recipient`, and either `content` or `templateId` fields are required. The sender name is limited to 11 alphanumeric characters or 15 numeric characters, and the recipient must be a valid international phone number (6-15 digits, optional leading +). Tags can be a string or an array of up to 10 strings. The SMS type defaults to `transactional` but can be set to `marketing`; if the content includes a stop code, it is automatically treated as marketing. Returns the message ID, SMS count, credits used, and remaining credits.
121
+ *
120
122
  * @param {Brevo.SendTransacSms} request
121
123
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
122
124
  *
123
125
  * @throws {@link Brevo.BadRequestError}
124
126
  * @throws {@link Brevo.PaymentRequiredError}
127
+ * @throws {@link Brevo.TooManyRequestsError}
125
128
  *
126
129
  * @example
127
130
  * await client.transactionalSms.sendTransacSms({
@@ -142,7 +145,7 @@ class TransactionalSmsClient {
142
145
  method: "POST",
143
146
  headers: _headers,
144
147
  contentType: "application/json",
145
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
148
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
146
149
  requestType: "json",
147
150
  body: request,
148
151
  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,
@@ -160,6 +163,8 @@ class TransactionalSmsClient {
160
163
  throw new Brevo.BadRequestError(_response.error.body, _response.rawResponse);
161
164
  case 402:
162
165
  throw new Brevo.PaymentRequiredError(_response.error.body, _response.rawResponse);
166
+ case 429:
167
+ throw new Brevo.TooManyRequestsError(_response.error.body, _response.rawResponse);
163
168
  default:
164
169
  throw new errors.BrevoError({
165
170
  statusCode: _response.error.statusCode,
@@ -172,6 +177,8 @@ class TransactionalSmsClient {
172
177
  });
173
178
  }
174
179
  /**
180
+ * Retrieve an aggregated report of your transactional SMS activity over a specified time period, including counts for requests, delivered, hard bounces, soft bounces, blocked, unsubscribed, replied, accepted, rejected, and skipped messages. Filter by date range using `startDate` and `endDate` (both required together, YYYY-MM-DD format) or by a number of past `days` (not compatible with date range). You can further narrow results by `tag`. If no date filter is provided, the report covers all available data and returns the auto-detected date range.
181
+ *
175
182
  * @param {Brevo.GetTransacAggregatedSmsReportRequest} request
176
183
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
177
184
  *
@@ -199,7 +206,11 @@ class TransactionalSmsClient {
199
206
  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.BrevoEnvironment.Default, "transactionalSMS/statistics/aggregatedReport"),
200
207
  method: "GET",
201
208
  headers: _headers,
202
- queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
209
+ queryString: core.url
210
+ .queryBuilder()
211
+ .addMany(_queryParams)
212
+ .mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
213
+ .build(),
203
214
  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,
204
215
  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,
205
216
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -228,6 +239,8 @@ class TransactionalSmsClient {
228
239
  });
229
240
  }
230
241
  /**
242
+ * Retrieve a paginated list of individual SMS event records (unaggregated), including event type, phone number, message ID, timestamp, tag, and reason or reply content where applicable. Results default to 50 per page (max 100) and are sorted in descending order unless overridden. Filter by date range (`startDate`/`endDate`), past `days` (not compatible with date range), specific `event` type (e.g. delivered, bounces, replies), `phoneNumber`, or `tags`. Bounce events include the failure reason, and reply events include the reply content.
243
+ *
231
244
  * @param {Brevo.GetSmsEventsRequest} request
232
245
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
233
246
  *
@@ -260,7 +273,11 @@ class TransactionalSmsClient {
260
273
  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.BrevoEnvironment.Default, "transactionalSMS/statistics/events"),
261
274
  method: "GET",
262
275
  headers: _headers,
263
- queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
276
+ queryString: core.url
277
+ .queryBuilder()
278
+ .addMany(_queryParams)
279
+ .mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
280
+ .build(),
264
281
  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,
265
282
  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,
266
283
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -286,6 +303,8 @@ class TransactionalSmsClient {
286
303
  });
287
304
  }
288
305
  /**
306
+ * Retrieve a day-by-day breakdown of your transactional SMS activity, with each entry containing the date and counts for requests, delivered, hard bounces, soft bounces, blocked, unsubscribed, replied, accepted, rejected, and skipped messages. Filter by date range using `startDate` and `endDate` (both required together, YYYY-MM-DD format), by a number of past `days` (not compatible with date range), or by `tag`. Results are sorted in descending order by default unless overridden with the `sort` parameter.
307
+ *
289
308
  * @param {Brevo.GetTransacSmsReportRequest} request
290
309
  * @param {TransactionalSmsClient.RequestOptions} requestOptions - Request-specific configuration.
291
310
  *
@@ -314,7 +333,11 @@ class TransactionalSmsClient {
314
333
  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.BrevoEnvironment.Default, "transactionalSMS/statistics/reports"),
315
334
  method: "GET",
316
335
  headers: _headers,
317
- queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
336
+ queryString: core.url
337
+ .queryBuilder()
338
+ .addMany(_queryParams)
339
+ .mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
340
+ .build(),
318
341
  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
342
  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,
320
343
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -85,7 +85,7 @@ class TransactionalWhatsAppClient {
85
85
  method: "POST",
86
86
  headers: _headers,
87
87
  contentType: "application/json",
88
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
88
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
89
89
  requestType: "json",
90
90
  body: request,
91
91
  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,
@@ -146,7 +146,11 @@ class TransactionalWhatsAppClient {
146
146
  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.BrevoEnvironment.Default, "whatsapp/statistics/events"),
147
147
  method: "GET",
148
148
  headers: _headers,
149
- queryParameters: Object.assign(Object.assign({}, _queryParams), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams),
149
+ queryString: core.url
150
+ .queryBuilder()
151
+ .addMany(_queryParams)
152
+ .mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams)
153
+ .build(),
150
154
  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,
151
155
  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,
152
156
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -11,6 +11,8 @@ export declare class UserClient {
11
11
  protected readonly _options: NormalizedClientOptionsWithAuth<UserClient.Options>;
12
12
  constructor(options: UserClient.Options);
13
13
  /**
14
+ * Retrieves the list of all users associated with your organization, including both active and pending invited users. Each user entry includes their email address, owner status, current invitation status, and feature access levels for marketing, CRM, and conversations.
15
+ *
14
16
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
15
17
  *
16
18
  * @throws {@link Brevo.BadRequestError}
@@ -21,6 +23,8 @@ export declare class UserClient {
21
23
  getInvitedUsersList(requestOptions?: UserClient.RequestOptions): core.HttpResponsePromise<Brevo.GetInvitedUsersListResponse>;
22
24
  private __getInvitedUsersList;
23
25
  /**
26
+ * Revokes all permissions for an invited user in the organization, effectively removing their access to the platform. If the user''s plan change generated credit notes, they are returned in the response for billing reconciliation.
27
+ *
24
28
  * @param {Brevo.PutRevokeUserPermissionRequest} request
25
29
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
26
30
  *
@@ -118,6 +122,8 @@ export declare class UserClient {
118
122
  inviteuser(request: Brevo.Inviteuser, requestOptions?: UserClient.RequestOptions): core.HttpResponsePromise<Brevo.InviteuserResponse>;
119
123
  private __inviteuser;
120
124
  /**
125
+ * Resends or cancels a pending invitation for a user in the organization, depending on the action path parameter. Use `resend` to send a new invitation email to the user, or `cancel` to revoke the pending invitation entirely and remove the user''s pending access.
126
+ *
121
127
  * @param {Brevo.PutresendcancelinvitationRequest} request
122
128
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
123
129
  *
@@ -215,6 +221,8 @@ export declare class UserClient {
215
221
  editUserPermission(request: Brevo.Inviteuser, requestOptions?: UserClient.RequestOptions): core.HttpResponsePromise<Brevo.EditUserPermissionResponse>;
216
222
  private __editUserPermission;
217
223
  /**
224
+ * Retrieves the granular feature-level permissions assigned to a specific user in the organization, identified by their email address. The response includes the user''s current status (active or pending) and a detailed list of privileges specifying which features and permission levels are granted.
225
+ *
218
226
  * @param {Brevo.GetUserPermissionRequest} request
219
227
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
220
228
  *
@@ -56,6 +56,8 @@ class UserClient {
56
56
  this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
57
57
  }
58
58
  /**
59
+ * Retrieves the list of all users associated with your organization, including both active and pending invited users. Each user entry includes their email address, owner status, current invitation status, and feature access levels for marketing, CRM, and conversations.
60
+ *
59
61
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
60
62
  *
61
63
  * @throws {@link Brevo.BadRequestError}
@@ -75,7 +77,7 @@ class UserClient {
75
77
  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.BrevoEnvironment.Default, "organization/invited/users"),
76
78
  method: "GET",
77
79
  headers: _headers,
78
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
80
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
79
81
  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,
80
82
  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,
81
83
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -101,6 +103,8 @@ class UserClient {
101
103
  });
102
104
  }
103
105
  /**
106
+ * Revokes all permissions for an invited user in the organization, effectively removing their access to the platform. If the user''s plan change generated credit notes, they are returned in the response for billing reconciliation.
107
+ *
104
108
  * @param {Brevo.PutRevokeUserPermissionRequest} request
105
109
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
106
110
  *
@@ -124,7 +128,7 @@ class UserClient {
124
128
  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.BrevoEnvironment.Default, `organization/user/invitation/revoke/${core.url.encodePathParam(email)}`),
125
129
  method: "PUT",
126
130
  headers: _headers,
127
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
131
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
128
132
  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,
129
133
  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,
130
134
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -247,7 +251,7 @@ class UserClient {
247
251
  method: "POST",
248
252
  headers: _headers,
249
253
  contentType: "application/json",
250
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
254
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
251
255
  requestType: "json",
252
256
  body: request,
253
257
  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,
@@ -275,6 +279,8 @@ class UserClient {
275
279
  });
276
280
  }
277
281
  /**
282
+ * Resends or cancels a pending invitation for a user in the organization, depending on the action path parameter. Use `resend` to send a new invitation email to the user, or `cancel` to revoke the pending invitation entirely and remove the user''s pending access.
283
+ *
278
284
  * @param {Brevo.PutresendcancelinvitationRequest} request
279
285
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
280
286
  *
@@ -299,7 +305,7 @@ class UserClient {
299
305
  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.BrevoEnvironment.Default, `organization/user/invitation/${core.url.encodePathParam(action)}/${core.url.encodePathParam(email)}`),
300
306
  method: "PUT",
301
307
  headers: _headers,
302
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
308
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
303
309
  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,
304
310
  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,
305
311
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -421,7 +427,7 @@ class UserClient {
421
427
  method: "POST",
422
428
  headers: _headers,
423
429
  contentType: "application/json",
424
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
430
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
425
431
  requestType: "json",
426
432
  body: request,
427
433
  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,
@@ -449,6 +455,8 @@ class UserClient {
449
455
  });
450
456
  }
451
457
  /**
458
+ * Retrieves the granular feature-level permissions assigned to a specific user in the organization, identified by their email address. The response includes the user''s current status (active or pending) and a detailed list of privileges specifying which features and permission levels are granted.
459
+ *
452
460
  * @param {Brevo.GetUserPermissionRequest} request
453
461
  * @param {UserClient.RequestOptions} requestOptions - Request-specific configuration.
454
462
  *
@@ -472,7 +480,7 @@ class UserClient {
472
480
  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.BrevoEnvironment.Default, `organization/user/${core.url.encodePathParam(email)}/permissions`),
473
481
  method: "GET",
474
482
  headers: _headers,
475
- queryParameters: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams,
483
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
476
484
  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,
477
485
  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,
478
486
  abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
@@ -0,0 +1,34 @@
1
+ import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
2
+ import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js";
3
+ import * as core from "../../../../core/index.js";
4
+ import * as Brevo from "../../../index.js";
5
+ export declare namespace WalletClient {
6
+ type Options = BaseClientOptions;
7
+ interface RequestOptions extends BaseRequestOptions {
8
+ }
9
+ }
10
+ export declare class WalletClient {
11
+ protected readonly _options: NormalizedClientOptionsWithAuth<WalletClient.Options>;
12
+ constructor(options: WalletClient.Options);
13
+ /**
14
+ * Generate a wallet installation URL for a specific contact. The returned URL points to the pass installation page and encodes the pass, contact and organization identifiers as an encrypted token, so it can be shared with the contact (email, SMS, QR code, ...) to add the pass to their Apple Wallet or Google Wallet.
15
+ *
16
+ * @param {Brevo.GetWalletPassInstallUrlRequest} request
17
+ * @param {WalletClient.RequestOptions} requestOptions - Request-specific configuration.
18
+ *
19
+ * @throws {@link Brevo.BadRequestError}
20
+ * @throws {@link Brevo.UnauthorizedError}
21
+ * @throws {@link Brevo.ForbiddenError}
22
+ * @throws {@link Brevo.NotFoundError}
23
+ * @throws {@link Brevo.UnprocessableEntityError}
24
+ * @throws {@link Brevo.InternalServerError}
25
+ *
26
+ * @example
27
+ * await client.wallet.getWalletPassInstallUrl({
28
+ * passId: "passId",
29
+ * contactId: 1000000
30
+ * })
31
+ */
32
+ getWalletPassInstallUrl(request: Brevo.GetWalletPassInstallUrlRequest, requestOptions?: WalletClient.RequestOptions): core.HttpResponsePromise<Brevo.WalletPassInstallUrl>;
33
+ private __getWalletPassInstallUrl;
34
+ }
@@ -0,0 +1,126 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
37
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
38
+ return new (P || (P = Promise))(function (resolve, reject) {
39
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
40
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
41
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
42
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
43
+ });
44
+ };
45
+ Object.defineProperty(exports, "__esModule", { value: true });
46
+ exports.WalletClient = void 0;
47
+ const BaseClient_js_1 = require("../../../../BaseClient.js");
48
+ const headers_js_1 = require("../../../../core/headers.js");
49
+ const core = __importStar(require("../../../../core/index.js"));
50
+ const environments = __importStar(require("../../../../environments.js"));
51
+ const handleNonStatusCodeError_js_1 = require("../../../../errors/handleNonStatusCodeError.js");
52
+ const errors = __importStar(require("../../../../errors/index.js"));
53
+ const Brevo = __importStar(require("../../../index.js"));
54
+ class WalletClient {
55
+ constructor(options) {
56
+ this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
57
+ }
58
+ /**
59
+ * Generate a wallet installation URL for a specific contact. The returned URL points to the pass installation page and encodes the pass, contact and organization identifiers as an encrypted token, so it can be shared with the contact (email, SMS, QR code, ...) to add the pass to their Apple Wallet or Google Wallet.
60
+ *
61
+ * @param {Brevo.GetWalletPassInstallUrlRequest} request
62
+ * @param {WalletClient.RequestOptions} requestOptions - Request-specific configuration.
63
+ *
64
+ * @throws {@link Brevo.BadRequestError}
65
+ * @throws {@link Brevo.UnauthorizedError}
66
+ * @throws {@link Brevo.ForbiddenError}
67
+ * @throws {@link Brevo.NotFoundError}
68
+ * @throws {@link Brevo.UnprocessableEntityError}
69
+ * @throws {@link Brevo.InternalServerError}
70
+ *
71
+ * @example
72
+ * await client.wallet.getWalletPassInstallUrl({
73
+ * passId: "passId",
74
+ * contactId: 1000000
75
+ * })
76
+ */
77
+ getWalletPassInstallUrl(request, requestOptions) {
78
+ return core.HttpResponsePromise.fromPromise(this.__getWalletPassInstallUrl(request, requestOptions));
79
+ }
80
+ __getWalletPassInstallUrl(request, requestOptions) {
81
+ return __awaiter(this, void 0, void 0, function* () {
82
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
83
+ const { passId, contactId } = request;
84
+ const _authRequest = yield this._options.authProvider.getAuthRequest();
85
+ const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, (_a = this._options) === null || _a === void 0 ? void 0 : _a.headers, requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers);
86
+ const _response = yield core.fetcher({
87
+ 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.BrevoEnvironment.Default, `wallet/passes/${core.url.encodePathParam(passId)}/installUrl/${core.url.encodePathParam(contactId)}`),
88
+ method: "GET",
89
+ headers: _headers,
90
+ queryString: core.url.queryBuilder().mergeAdditional(requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.queryParams).build(),
91
+ 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,
92
+ 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,
93
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
94
+ fetchFn: (_j = this._options) === null || _j === void 0 ? void 0 : _j.fetch,
95
+ logging: this._options.logging,
96
+ });
97
+ if (_response.ok) {
98
+ return { data: _response.body, rawResponse: _response.rawResponse };
99
+ }
100
+ if (_response.error.reason === "status-code") {
101
+ switch (_response.error.statusCode) {
102
+ case 400:
103
+ throw new Brevo.BadRequestError(_response.error.body, _response.rawResponse);
104
+ case 401:
105
+ throw new Brevo.UnauthorizedError(_response.error.body, _response.rawResponse);
106
+ case 403:
107
+ throw new Brevo.ForbiddenError(_response.error.body, _response.rawResponse);
108
+ case 404:
109
+ throw new Brevo.NotFoundError(_response.error.body, _response.rawResponse);
110
+ case 422:
111
+ throw new Brevo.UnprocessableEntityError(_response.error.body, _response.rawResponse);
112
+ case 500:
113
+ throw new Brevo.InternalServerError(_response.error.body, _response.rawResponse);
114
+ default:
115
+ throw new errors.BrevoError({
116
+ statusCode: _response.error.statusCode,
117
+ body: _response.error.body,
118
+ rawResponse: _response.rawResponse,
119
+ });
120
+ }
121
+ }
122
+ return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/wallet/passes/{passId}/installUrl/{contactId}");
123
+ });
124
+ }
125
+ }
126
+ exports.WalletClient = WalletClient;
@@ -0,0 +1 @@
1
+ export * from "./requests/index.js";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests/index.js"), exports);
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @example
3
+ * {
4
+ * passId: "passId",
5
+ * contactId: 1000000
6
+ * }
7
+ */
8
+ export interface GetWalletPassInstallUrlRequest {
9
+ /** Pass ID. The unique identifier of the wallet pass for which to generate an installation URL. */
10
+ passId: string;
11
+ /** The Brevo contact ID the installation URL is generated for. */
12
+ contactId: number;
13
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export type { GetWalletPassInstallUrlRequest } from "./GetWalletPassInstallUrlRequest.js";
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export { WalletClient } from "./client/Client.js";
2
+ export * from "./client/index.js";
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
+ };
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.WalletClient = void 0;
19
+ var Client_js_1 = require("./client/Client.js");
20
+ Object.defineProperty(exports, "WalletClient", { enumerable: true, get: function () { return Client_js_1.WalletClient; } });
21
+ __exportStar(require("./client/index.js"), exports);
@@ -0,0 +1 @@
1
+ export * from "./client/index.js";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./client/index.js"), exports);
@@ -58,7 +58,6 @@ export declare class WebhooksClient {
58
58
  *
59
59
  * @example
60
60
  * await client.webhooks.createWebhook({
61
- * events: ["sent"],
62
61
  * url: "http://requestb.in/173lyyx1"
63
62
  * })
64
63
  */