@getbrevo/brevo 6.0.1 → 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 (174) hide show
  1. package/dist/cjs/BaseClient.d.ts +10 -0
  2. package/dist/cjs/BaseClient.js +2 -2
  3. package/dist/cjs/Client.d.ts +6 -0
  4. package/dist/cjs/Client.js +68 -58
  5. package/dist/cjs/api/errors/BadRequestError.js +1 -1
  6. package/dist/cjs/api/errors/ConflictError.js +1 -1
  7. package/dist/cjs/api/errors/ExpectationFailedError.js +1 -1
  8. package/dist/cjs/api/errors/FailedDependencyError.js +1 -1
  9. package/dist/cjs/api/errors/ForbiddenError.js +1 -1
  10. package/dist/cjs/api/errors/InternalServerError.js +1 -1
  11. package/dist/cjs/api/errors/MethodNotAllowedError.js +1 -1
  12. package/dist/cjs/api/errors/NotFoundError.js +1 -1
  13. package/dist/cjs/api/errors/PaymentRequiredError.js +1 -1
  14. package/dist/cjs/api/errors/PreconditionFailedError.js +1 -1
  15. package/dist/cjs/api/errors/TooEarlyError.js +1 -1
  16. package/dist/cjs/api/errors/TooManyRequestsError.js +1 -1
  17. package/dist/cjs/api/errors/UnauthorizedError.js +1 -1
  18. package/dist/cjs/api/errors/UnprocessableEntityError.js +1 -1
  19. package/dist/cjs/api/errors/UnsupportedMediaTypeError.js +1 -1
  20. package/dist/cjs/api/resources/balance/client/Client.d.ts +1 -1
  21. package/dist/cjs/api/resources/consentGroups/client/Client.d.ts +108 -0
  22. package/dist/cjs/api/resources/consentGroups/client/Client.js +383 -0
  23. package/dist/cjs/api/resources/consentGroups/client/index.d.ts +1 -0
  24. package/dist/cjs/api/resources/consentGroups/client/index.js +17 -0
  25. package/dist/cjs/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.d.ts +25 -0
  26. package/dist/cjs/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.js +12 -0
  27. package/dist/cjs/api/resources/consentGroups/client/requests/DeleteConsentGroupRequest.d.ts +10 -0
  28. package/dist/cjs/api/resources/consentGroups/client/requests/DeleteConsentGroupRequest.js +3 -0
  29. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupRequest.d.ts +10 -0
  30. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupRequest.js +3 -0
  31. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.d.ts +17 -0
  32. package/dist/cjs/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.js +3 -0
  33. package/dist/cjs/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.d.ts +24 -0
  34. package/dist/cjs/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.js +12 -0
  35. package/dist/cjs/api/resources/consentGroups/client/requests/index.d.ts +5 -0
  36. package/dist/cjs/api/resources/consentGroups/client/requests/index.js +7 -0
  37. package/dist/cjs/api/resources/consentGroups/exports.d.ts +2 -0
  38. package/dist/cjs/api/resources/consentGroups/exports.js +21 -0
  39. package/dist/cjs/api/resources/consentGroups/index.d.ts +2 -0
  40. package/dist/cjs/api/resources/consentGroups/index.js +18 -0
  41. package/dist/cjs/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.d.ts +5 -0
  42. package/dist/cjs/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.js +8 -0
  43. package/dist/cjs/api/resources/consentGroups/types/index.d.ts +1 -0
  44. package/dist/cjs/api/resources/consentGroups/types/index.js +17 -0
  45. package/dist/cjs/api/resources/contacts/client/requests/ImportContactsRequest.d.ts +2 -0
  46. package/dist/cjs/api/resources/contacts/types/GetContactInfoResponse.d.ts +4 -1
  47. package/dist/cjs/api/resources/contacts/types/GetContactStatsResponse.d.ts +1 -1
  48. package/dist/cjs/api/resources/deals/client/Client.js +4 -1
  49. package/dist/cjs/api/resources/deals/client/requests/GetCrmDealsRequest.d.ts +6 -0
  50. package/dist/cjs/api/resources/ecommerce/types/CreateBatchOrderResponse.d.ts +2 -2
  51. package/dist/cjs/api/resources/index.d.ts +5 -0
  52. package/dist/cjs/api/resources/index.js +6 -1
  53. package/dist/cjs/api/resources/transactionalEmails/types/GetTransacBlockedContactsResponse.d.ts +1 -1
  54. package/dist/cjs/api/resources/wallet/client/Client.d.ts +34 -0
  55. package/dist/cjs/api/resources/wallet/client/Client.js +126 -0
  56. package/dist/cjs/api/resources/wallet/client/index.d.ts +1 -0
  57. package/dist/cjs/api/resources/wallet/client/index.js +17 -0
  58. package/dist/cjs/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.d.ts +13 -0
  59. package/dist/cjs/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.js +3 -0
  60. package/dist/cjs/api/resources/wallet/client/requests/index.d.ts +1 -0
  61. package/dist/cjs/api/resources/wallet/client/requests/index.js +2 -0
  62. package/dist/cjs/api/resources/wallet/exports.d.ts +2 -0
  63. package/dist/cjs/api/resources/wallet/exports.js +21 -0
  64. package/dist/cjs/api/resources/wallet/index.d.ts +1 -0
  65. package/dist/cjs/api/resources/wallet/index.js +17 -0
  66. package/dist/cjs/api/types/ConsentGroup.d.ts +29 -0
  67. package/dist/cjs/api/types/ConsentGroup.js +12 -0
  68. package/dist/cjs/api/types/ConsentGroupItem.d.ts +17 -0
  69. package/dist/cjs/api/types/ConsentGroupItem.js +12 -0
  70. package/dist/cjs/api/types/ConsentGroupsListResponse.d.ts +14 -0
  71. package/dist/cjs/api/types/ConsentGroupsListResponse.js +3 -0
  72. package/dist/cjs/api/types/GetCampaignStats.d.ts +11 -11
  73. package/dist/cjs/api/types/GetContactDetails.d.ts +3 -0
  74. package/dist/cjs/api/types/WalletPassInstallUrl.d.ts +4 -0
  75. package/dist/cjs/api/types/WalletPassInstallUrl.js +3 -0
  76. package/dist/cjs/api/types/index.d.ts +4 -0
  77. package/dist/cjs/api/types/index.js +4 -0
  78. package/dist/cjs/core/fetcher/getResponseBody.js +11 -0
  79. package/dist/cjs/core/fetcher/signals.js +9 -1
  80. package/dist/cjs/core/url/qs.js +2 -2
  81. package/dist/cjs/errors/BrevoError.d.ts +1 -0
  82. package/dist/cjs/errors/BrevoError.js +5 -1
  83. package/dist/cjs/errors/BrevoTimeoutError.d.ts +2 -2
  84. package/dist/cjs/errors/BrevoTimeoutError.js +40 -6
  85. package/dist/cjs/version.d.ts +1 -1
  86. package/dist/cjs/version.js +1 -1
  87. package/dist/esm/BaseClient.d.mts +10 -0
  88. package/dist/esm/BaseClient.mjs +2 -2
  89. package/dist/esm/Client.d.mts +6 -0
  90. package/dist/esm/Client.mjs +10 -0
  91. package/dist/esm/api/errors/BadRequestError.mjs +1 -1
  92. package/dist/esm/api/errors/ConflictError.mjs +1 -1
  93. package/dist/esm/api/errors/ExpectationFailedError.mjs +1 -1
  94. package/dist/esm/api/errors/FailedDependencyError.mjs +1 -1
  95. package/dist/esm/api/errors/ForbiddenError.mjs +1 -1
  96. package/dist/esm/api/errors/InternalServerError.mjs +1 -1
  97. package/dist/esm/api/errors/MethodNotAllowedError.mjs +1 -1
  98. package/dist/esm/api/errors/NotFoundError.mjs +1 -1
  99. package/dist/esm/api/errors/PaymentRequiredError.mjs +1 -1
  100. package/dist/esm/api/errors/PreconditionFailedError.mjs +1 -1
  101. package/dist/esm/api/errors/TooEarlyError.mjs +1 -1
  102. package/dist/esm/api/errors/TooManyRequestsError.mjs +1 -1
  103. package/dist/esm/api/errors/UnauthorizedError.mjs +1 -1
  104. package/dist/esm/api/errors/UnprocessableEntityError.mjs +1 -1
  105. package/dist/esm/api/errors/UnsupportedMediaTypeError.mjs +1 -1
  106. package/dist/esm/api/resources/balance/client/Client.d.mts +1 -1
  107. package/dist/esm/api/resources/consentGroups/client/Client.d.mts +108 -0
  108. package/dist/esm/api/resources/consentGroups/client/Client.mjs +346 -0
  109. package/dist/esm/api/resources/consentGroups/client/index.d.mts +1 -0
  110. package/dist/esm/api/resources/consentGroups/client/index.mjs +1 -0
  111. package/dist/esm/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.d.mts +25 -0
  112. package/dist/esm/api/resources/consentGroups/client/requests/CreateConsentGroupRequest.mjs +9 -0
  113. package/dist/esm/api/resources/consentGroups/client/requests/DeleteConsentGroupRequest.d.mts +10 -0
  114. package/dist/esm/api/resources/consentGroups/client/requests/DeleteConsentGroupRequest.mjs +2 -0
  115. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupRequest.d.mts +10 -0
  116. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupRequest.mjs +2 -0
  117. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.d.mts +17 -0
  118. package/dist/esm/api/resources/consentGroups/client/requests/GetConsentGroupsRequest.mjs +2 -0
  119. package/dist/esm/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.d.mts +24 -0
  120. package/dist/esm/api/resources/consentGroups/client/requests/UpdateConsentGroupRequest.mjs +9 -0
  121. package/dist/esm/api/resources/consentGroups/client/requests/index.d.mts +5 -0
  122. package/dist/esm/api/resources/consentGroups/client/requests/index.mjs +2 -0
  123. package/dist/esm/api/resources/consentGroups/exports.d.mts +2 -0
  124. package/dist/esm/api/resources/consentGroups/exports.mjs +3 -0
  125. package/dist/esm/api/resources/consentGroups/index.d.mts +2 -0
  126. package/dist/esm/api/resources/consentGroups/index.mjs +2 -0
  127. package/dist/esm/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.d.mts +5 -0
  128. package/dist/esm/api/resources/consentGroups/types/GetConsentGroupsRequestSignupMode.mjs +5 -0
  129. package/dist/esm/api/resources/consentGroups/types/index.d.mts +1 -0
  130. package/dist/esm/api/resources/consentGroups/types/index.mjs +1 -0
  131. package/dist/esm/api/resources/contacts/client/requests/ImportContactsRequest.d.mts +2 -0
  132. package/dist/esm/api/resources/contacts/types/GetContactInfoResponse.d.mts +4 -1
  133. package/dist/esm/api/resources/contacts/types/GetContactStatsResponse.d.mts +1 -1
  134. package/dist/esm/api/resources/deals/client/Client.mjs +4 -1
  135. package/dist/esm/api/resources/deals/client/requests/GetCrmDealsRequest.d.mts +6 -0
  136. package/dist/esm/api/resources/ecommerce/types/CreateBatchOrderResponse.d.mts +2 -2
  137. package/dist/esm/api/resources/index.d.mts +5 -0
  138. package/dist/esm/api/resources/index.mjs +5 -0
  139. package/dist/esm/api/resources/transactionalEmails/types/GetTransacBlockedContactsResponse.d.mts +1 -1
  140. package/dist/esm/api/resources/wallet/client/Client.d.mts +34 -0
  141. package/dist/esm/api/resources/wallet/client/Client.mjs +89 -0
  142. package/dist/esm/api/resources/wallet/client/index.d.mts +1 -0
  143. package/dist/esm/api/resources/wallet/client/index.mjs +1 -0
  144. package/dist/esm/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.d.mts +13 -0
  145. package/dist/esm/api/resources/wallet/client/requests/GetWalletPassInstallUrlRequest.mjs +2 -0
  146. package/dist/esm/api/resources/wallet/client/requests/index.d.mts +1 -0
  147. package/dist/esm/api/resources/wallet/client/requests/index.mjs +1 -0
  148. package/dist/esm/api/resources/wallet/exports.d.mts +2 -0
  149. package/dist/esm/api/resources/wallet/exports.mjs +3 -0
  150. package/dist/esm/api/resources/wallet/index.d.mts +1 -0
  151. package/dist/esm/api/resources/wallet/index.mjs +1 -0
  152. package/dist/esm/api/types/ConsentGroup.d.mts +29 -0
  153. package/dist/esm/api/types/ConsentGroup.mjs +9 -0
  154. package/dist/esm/api/types/ConsentGroupItem.d.mts +17 -0
  155. package/dist/esm/api/types/ConsentGroupItem.mjs +9 -0
  156. package/dist/esm/api/types/ConsentGroupsListResponse.d.mts +14 -0
  157. package/dist/esm/api/types/ConsentGroupsListResponse.mjs +2 -0
  158. package/dist/esm/api/types/GetCampaignStats.d.mts +11 -11
  159. package/dist/esm/api/types/GetContactDetails.d.mts +3 -0
  160. package/dist/esm/api/types/WalletPassInstallUrl.d.mts +4 -0
  161. package/dist/esm/api/types/WalletPassInstallUrl.mjs +2 -0
  162. package/dist/esm/api/types/index.d.mts +4 -0
  163. package/dist/esm/api/types/index.mjs +4 -0
  164. package/dist/esm/core/fetcher/getResponseBody.mjs +11 -0
  165. package/dist/esm/core/fetcher/signals.mjs +9 -1
  166. package/dist/esm/core/url/qs.mjs +2 -2
  167. package/dist/esm/errors/BrevoError.d.mts +1 -0
  168. package/dist/esm/errors/BrevoError.mjs +5 -1
  169. package/dist/esm/errors/BrevoTimeoutError.d.mts +2 -2
  170. package/dist/esm/errors/BrevoTimeoutError.mjs +7 -6
  171. package/dist/esm/version.d.mts +1 -1
  172. package/dist/esm/version.mjs +1 -1
  173. package/package.json +23 -1
  174. package/reference.md +403 -1
package/reference.md CHANGED
@@ -6627,6 +6627,341 @@ await client.contacts.getContactStats({
6627
6627
  </dl>
6628
6628
 
6629
6629
 
6630
+ </dd>
6631
+ </dl>
6632
+ </details>
6633
+
6634
+ ## ConsentGroups
6635
+ <details><summary><code>client.consentGroups.<a href="/src/api/resources/consentGroups/client/Client.ts">getConsentGroups</a>({ ...params }) -> Brevo.ConsentGroupsListResponse</code></summary>
6636
+ <dl>
6637
+ <dd>
6638
+
6639
+ #### 📝 Description
6640
+
6641
+ <dl>
6642
+ <dd>
6643
+
6644
+ <dl>
6645
+ <dd>
6646
+
6647
+ Returns a paginated list of consent groups for the account.
6648
+
6649
+ <Note>This endpoint is only available when the Consent Groups feature is enabled for your account. Returns `403` if the feature is not activated.</Note>
6650
+ </dd>
6651
+ </dl>
6652
+ </dd>
6653
+ </dl>
6654
+
6655
+ #### 🔌 Usage
6656
+
6657
+ <dl>
6658
+ <dd>
6659
+
6660
+ <dl>
6661
+ <dd>
6662
+
6663
+ ```typescript
6664
+ await client.consentGroups.getConsentGroups();
6665
+
6666
+ ```
6667
+ </dd>
6668
+ </dl>
6669
+ </dd>
6670
+ </dl>
6671
+
6672
+ #### ⚙️ Parameters
6673
+
6674
+ <dl>
6675
+ <dd>
6676
+
6677
+ <dl>
6678
+ <dd>
6679
+
6680
+ **request:** `Brevo.GetConsentGroupsRequest`
6681
+
6682
+ </dd>
6683
+ </dl>
6684
+
6685
+ <dl>
6686
+ <dd>
6687
+
6688
+ **requestOptions:** `ConsentGroupsClient.RequestOptions`
6689
+
6690
+ </dd>
6691
+ </dl>
6692
+ </dd>
6693
+ </dl>
6694
+
6695
+
6696
+ </dd>
6697
+ </dl>
6698
+ </details>
6699
+
6700
+ <details><summary><code>client.consentGroups.<a href="/src/api/resources/consentGroups/client/Client.ts">createConsentGroup</a>({ ...params }) -> Brevo.ConsentGroup</code></summary>
6701
+ <dl>
6702
+ <dd>
6703
+
6704
+ #### 📝 Description
6705
+
6706
+ <dl>
6707
+ <dd>
6708
+
6709
+ <dl>
6710
+ <dd>
6711
+
6712
+ Creates a new consent group for the account.
6713
+
6714
+ <Note>This endpoint is only available when the Consent Groups feature is enabled for your account.</Note>
6715
+ </dd>
6716
+ </dl>
6717
+ </dd>
6718
+ </dl>
6719
+
6720
+ #### 🔌 Usage
6721
+
6722
+ <dl>
6723
+ <dd>
6724
+
6725
+ <dl>
6726
+ <dd>
6727
+
6728
+ ```typescript
6729
+ await client.consentGroups.createConsentGroup({
6730
+ name: "Newsletter EU",
6731
+ signupMode: "manual"
6732
+ });
6733
+
6734
+ ```
6735
+ </dd>
6736
+ </dl>
6737
+ </dd>
6738
+ </dl>
6739
+
6740
+ #### ⚙️ Parameters
6741
+
6742
+ <dl>
6743
+ <dd>
6744
+
6745
+ <dl>
6746
+ <dd>
6747
+
6748
+ **request:** `Brevo.CreateConsentGroupRequest`
6749
+
6750
+ </dd>
6751
+ </dl>
6752
+
6753
+ <dl>
6754
+ <dd>
6755
+
6756
+ **requestOptions:** `ConsentGroupsClient.RequestOptions`
6757
+
6758
+ </dd>
6759
+ </dl>
6760
+ </dd>
6761
+ </dl>
6762
+
6763
+
6764
+ </dd>
6765
+ </dl>
6766
+ </details>
6767
+
6768
+ <details><summary><code>client.consentGroups.<a href="/src/api/resources/consentGroups/client/Client.ts">getConsentGroup</a>({ ...params }) -> Brevo.ConsentGroup</code></summary>
6769
+ <dl>
6770
+ <dd>
6771
+
6772
+ #### 📝 Description
6773
+
6774
+ <dl>
6775
+ <dd>
6776
+
6777
+ <dl>
6778
+ <dd>
6779
+
6780
+ Returns a single consent group by ID for the account.
6781
+
6782
+ <Note>This endpoint is only available when the Consent Groups feature is enabled for your account.</Note>
6783
+ </dd>
6784
+ </dl>
6785
+ </dd>
6786
+ </dl>
6787
+
6788
+ #### 🔌 Usage
6789
+
6790
+ <dl>
6791
+ <dd>
6792
+
6793
+ <dl>
6794
+ <dd>
6795
+
6796
+ ```typescript
6797
+ await client.consentGroups.getConsentGroup({
6798
+ id: 1000000
6799
+ });
6800
+
6801
+ ```
6802
+ </dd>
6803
+ </dl>
6804
+ </dd>
6805
+ </dl>
6806
+
6807
+ #### ⚙️ Parameters
6808
+
6809
+ <dl>
6810
+ <dd>
6811
+
6812
+ <dl>
6813
+ <dd>
6814
+
6815
+ **request:** `Brevo.GetConsentGroupRequest`
6816
+
6817
+ </dd>
6818
+ </dl>
6819
+
6820
+ <dl>
6821
+ <dd>
6822
+
6823
+ **requestOptions:** `ConsentGroupsClient.RequestOptions`
6824
+
6825
+ </dd>
6826
+ </dl>
6827
+ </dd>
6828
+ </dl>
6829
+
6830
+
6831
+ </dd>
6832
+ </dl>
6833
+ </details>
6834
+
6835
+ <details><summary><code>client.consentGroups.<a href="/src/api/resources/consentGroups/client/Client.ts">updateConsentGroup</a>({ ...params }) -> Brevo.ConsentGroup</code></summary>
6836
+ <dl>
6837
+ <dd>
6838
+
6839
+ #### 📝 Description
6840
+
6841
+ <dl>
6842
+ <dd>
6843
+
6844
+ <dl>
6845
+ <dd>
6846
+
6847
+ Updates name, description, or signupMode of a consent group. At least one field must be provided.
6848
+
6849
+ <Note>This endpoint is only available when the Consent Groups feature is enabled for your account.</Note>
6850
+ </dd>
6851
+ </dl>
6852
+ </dd>
6853
+ </dl>
6854
+
6855
+ #### 🔌 Usage
6856
+
6857
+ <dl>
6858
+ <dd>
6859
+
6860
+ <dl>
6861
+ <dd>
6862
+
6863
+ ```typescript
6864
+ await client.consentGroups.updateConsentGroup({
6865
+ id: 1000000
6866
+ });
6867
+
6868
+ ```
6869
+ </dd>
6870
+ </dl>
6871
+ </dd>
6872
+ </dl>
6873
+
6874
+ #### ⚙️ Parameters
6875
+
6876
+ <dl>
6877
+ <dd>
6878
+
6879
+ <dl>
6880
+ <dd>
6881
+
6882
+ **request:** `Brevo.UpdateConsentGroupRequest`
6883
+
6884
+ </dd>
6885
+ </dl>
6886
+
6887
+ <dl>
6888
+ <dd>
6889
+
6890
+ **requestOptions:** `ConsentGroupsClient.RequestOptions`
6891
+
6892
+ </dd>
6893
+ </dl>
6894
+ </dd>
6895
+ </dl>
6896
+
6897
+
6898
+ </dd>
6899
+ </dl>
6900
+ </details>
6901
+
6902
+ <details><summary><code>client.consentGroups.<a href="/src/api/resources/consentGroups/client/Client.ts">deleteConsentGroup</a>({ ...params }) -> void</code></summary>
6903
+ <dl>
6904
+ <dd>
6905
+
6906
+ #### 📝 Description
6907
+
6908
+ <dl>
6909
+ <dd>
6910
+
6911
+ <dl>
6912
+ <dd>
6913
+
6914
+ Deletes a consent group by ID and removes it from all associated contacts.
6915
+
6916
+ <Note>This endpoint is only available when the Consent Groups feature is enabled for your account.</Note>
6917
+ </dd>
6918
+ </dl>
6919
+ </dd>
6920
+ </dl>
6921
+
6922
+ #### 🔌 Usage
6923
+
6924
+ <dl>
6925
+ <dd>
6926
+
6927
+ <dl>
6928
+ <dd>
6929
+
6930
+ ```typescript
6931
+ await client.consentGroups.deleteConsentGroup({
6932
+ id: 1000000
6933
+ });
6934
+
6935
+ ```
6936
+ </dd>
6937
+ </dl>
6938
+ </dd>
6939
+ </dl>
6940
+
6941
+ #### ⚙️ Parameters
6942
+
6943
+ <dl>
6944
+ <dd>
6945
+
6946
+ <dl>
6947
+ <dd>
6948
+
6949
+ **request:** `Brevo.DeleteConsentGroupRequest`
6950
+
6951
+ </dd>
6952
+ </dl>
6953
+
6954
+ <dl>
6955
+ <dd>
6956
+
6957
+ **requestOptions:** `ConsentGroupsClient.RequestOptions`
6958
+
6959
+ </dd>
6960
+ </dl>
6961
+ </dd>
6962
+ </dl>
6963
+
6964
+
6630
6965
  </dd>
6631
6966
  </dl>
6632
6967
  </details>
@@ -9453,7 +9788,7 @@ await client.balance.getActiveBalancesApi({
9453
9788
  </dl>
9454
9789
  </details>
9455
9790
 
9456
- <details><summary><code>client.balance.<a href="/src/api/resources/balance/client/Client.ts">getBalanceDefinitionList</a>({ ...params }) -> Brevo.GetBalanceDefinitionListResponse</code></summary>
9791
+ <details><summary><code>client.balance.<a href="/src/api/resources/balance/client/Client.ts">getBalanceDefinitionList</a>({ ...params }) -> Brevo.GetBalanceDefinitionListResponse | undefined</code></summary>
9457
9792
  <dl>
9458
9793
  <dd>
9459
9794
 
@@ -12703,6 +13038,73 @@ await client.tier.deleteTier({
12703
13038
  </dl>
12704
13039
 
12705
13040
 
13041
+ </dd>
13042
+ </dl>
13043
+ </details>
13044
+
13045
+ ## Wallet
13046
+ <details><summary><code>client.wallet.<a href="/src/api/resources/wallet/client/Client.ts">getWalletPassInstallUrl</a>({ ...params }) -> Brevo.WalletPassInstallUrl</code></summary>
13047
+ <dl>
13048
+ <dd>
13049
+
13050
+ #### 📝 Description
13051
+
13052
+ <dl>
13053
+ <dd>
13054
+
13055
+ <dl>
13056
+ <dd>
13057
+
13058
+ 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.
13059
+ </dd>
13060
+ </dl>
13061
+ </dd>
13062
+ </dl>
13063
+
13064
+ #### 🔌 Usage
13065
+
13066
+ <dl>
13067
+ <dd>
13068
+
13069
+ <dl>
13070
+ <dd>
13071
+
13072
+ ```typescript
13073
+ await client.wallet.getWalletPassInstallUrl({
13074
+ passId: "passId",
13075
+ contactId: 1000000
13076
+ });
13077
+
13078
+ ```
13079
+ </dd>
13080
+ </dl>
13081
+ </dd>
13082
+ </dl>
13083
+
13084
+ #### ⚙️ Parameters
13085
+
13086
+ <dl>
13087
+ <dd>
13088
+
13089
+ <dl>
13090
+ <dd>
13091
+
13092
+ **request:** `Brevo.GetWalletPassInstallUrlRequest`
13093
+
13094
+ </dd>
13095
+ </dl>
13096
+
13097
+ <dl>
13098
+ <dd>
13099
+
13100
+ **requestOptions:** `WalletClient.RequestOptions`
13101
+
13102
+ </dd>
13103
+ </dl>
13104
+ </dd>
13105
+ </dl>
13106
+
13107
+
12706
13108
  </dd>
12707
13109
  </dl>
12708
13110
  </details>