@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
@@ -17,6 +17,8 @@ export interface ImportContactsRequest {
17
17
  jsonBody?: ImportContactsRequest.JsonBody.Item[];
18
18
  /** **Mandatory if newList is not defined.** Ids of the lists in which the contacts shall be imported. For example, **[2, 4, 7]**. */
19
19
  listIds?: number[];
20
+ /** **Optional.** Ids of the consent groups to which all imported contacts will be added. Requires consent groups to be enabled for the organisation. For example, **[1, 3]**. */
21
+ consentGroupIds?: number[];
20
22
  /** To create a new list and import the contacts into it, pass the listName and an optional folderId. */
21
23
  newList?: ImportContactsRequest.NewList;
22
24
  /** URL that will be called once the import process is finished. For reference, https://help.brevo.com/hc/en-us/articles/360007666479 */
@@ -1,3 +1,4 @@
1
+ import type * as Brevo from "../../../index.js";
1
2
  export interface GetContactInfoResponse {
2
3
  /** Set of attributes of the contact */
3
4
  attributes: GetContactInfoResponse.Attributes;
@@ -17,6 +18,8 @@ export interface GetContactInfoResponse {
17
18
  smsBlacklisted: boolean;
18
19
  /** Blacklist status for WhatsApp campaigns (true=blacklisted, false=not blacklisted) */
19
20
  whatsappBlacklisted: boolean;
21
+ /** Consent groups the contact belongs to, with their subscription status. Only present when the Consent Groups feature is enabled for your account. */
22
+ consentGroups?: Brevo.ConsentGroupItem[] | undefined;
20
23
  /** Campaign statistics of the contact */
21
24
  statistics: GetContactInfoResponse.Statistics;
22
25
  }
@@ -158,7 +161,7 @@ export declare namespace GetContactInfoResponse {
158
161
  namespace UserUnsubscription {
159
162
  interface Item {
160
163
  /** ID of the campaign which generated the event */
161
- campaignId: number;
164
+ campaignId: number | null;
162
165
  /** UTC date-time of the event */
163
166
  eventTime: string;
164
167
  /** IP from which the user has unsubscribed */
@@ -125,7 +125,7 @@ export declare namespace GetContactStatsResponse {
125
125
  namespace UserUnsubscription {
126
126
  interface Item {
127
127
  /** ID of the campaign which generated the event */
128
- campaignId: number;
128
+ campaignId: number | null;
129
129
  /** UTC date-time of the event */
130
130
  eventTime: string;
131
131
  /** IP from which the user has unsubscribed */
@@ -134,9 +134,12 @@ class DealsClient {
134
134
  __getAllDeals() {
135
135
  return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
136
136
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
137
- const { "filters[attributes.deal_name]": filtersAttributesDealName, "filters[linkedCompaniesIds]": filtersLinkedCompaniesIds, "filters[linkedContactsIds]": filtersLinkedContactsIds, modifiedSince, createdSince, offset, limit, sort, sortBy, } = request;
137
+ const { "filters[attributes.deal_name]": filtersAttributesDealName, "filters[attributes.deal_owner]": filtersAttributesDealOwner, "filters[attributes.deal_stage]": filtersAttributesDealStage, "filters[attributes.pipeline]": filtersAttributesPipeline, "filters[linkedCompaniesIds]": filtersLinkedCompaniesIds, "filters[linkedContactsIds]": filtersLinkedContactsIds, modifiedSince, createdSince, offset, limit, sort, sortBy, } = request;
138
138
  const _queryParams = {
139
139
  "filters[attributes.deal_name]": filtersAttributesDealName,
140
+ "filters[attributes.deal_owner]": filtersAttributesDealOwner,
141
+ "filters[attributes.deal_stage]": filtersAttributesDealStage,
142
+ "filters[attributes.pipeline]": filtersAttributesPipeline,
140
143
  "filters[linkedCompaniesIds]": filtersLinkedCompaniesIds,
141
144
  "filters[linkedContactsIds]": filtersLinkedContactsIds,
142
145
  modifiedSince,
@@ -6,6 +6,12 @@ import type * as Brevo from "../../../../index.js";
6
6
  export interface GetCrmDealsRequest {
7
7
  /** Filter by attributes. If you have a filter for the owner on your end, please send it as filters[attributes.deal_owner] and utilize the account email for the filtering. */
8
8
  "filters[attributes.deal_name]"?: string;
9
+ /** Filter by the deal owner. Pass the account email address of the deal owner. */
10
+ "filters[attributes.deal_owner]"?: string;
11
+ /** Filter by the deal stage. Pass the stage id, retrievable from GET /crm/pipeline/details/{pipelineID}. */
12
+ "filters[attributes.deal_stage]"?: string;
13
+ /** Filter by the pipeline. Pass the pipeline id, retrievable from GET /crm/pipeline/details/{pipelineID}. */
14
+ "filters[attributes.pipeline]"?: string;
9
15
  /** Filter by linked companies ids */
10
16
  "filters[linkedCompaniesIds]"?: string;
11
17
  /** Filter by linked contacts ids */
@@ -1,6 +1,6 @@
1
1
  export interface CreateBatchOrderResponse {
2
- /** Batch ID of the request */
3
- batchId: number;
4
2
  /** Number of orders */
5
3
  count?: number | undefined;
4
+ /** Batch ID of the request */
5
+ batch_id: number | null;
6
6
  }
@@ -7,6 +7,9 @@ export * from "./balance/types/index.js";
7
7
  export * from "./companies/client/requests/index.js";
8
8
  export * as companies from "./companies/index.js";
9
9
  export * from "./companies/types/index.js";
10
+ export * from "./consentGroups/client/requests/index.js";
11
+ export * as consentGroups from "./consentGroups/index.js";
12
+ export * from "./consentGroups/types/index.js";
10
13
  export * from "./contacts/client/requests/index.js";
11
14
  export * as contacts from "./contacts/index.js";
12
15
  export * from "./contacts/types/index.js";
@@ -87,6 +90,8 @@ export * from "./transactionalWhatsApp/types/index.js";
87
90
  export * from "./user/client/requests/index.js";
88
91
  export * as user from "./user/index.js";
89
92
  export * from "./user/types/index.js";
93
+ export * from "./wallet/client/requests/index.js";
94
+ export * as wallet from "./wallet/index.js";
90
95
  export * from "./webhooks/client/requests/index.js";
91
96
  export * as webhooks from "./webhooks/index.js";
92
97
  export * from "./webhooks/types/index.js";
@@ -36,7 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.whatsAppCampaigns = exports.webhooks = exports.user = exports.transactionalWhatsApp = exports.transactionalSms = exports.transactionalEmails = exports.tier = exports.tasks = exports.smsTemplates = exports.smsCampaigns = exports.senders = exports.reward = exports.program = exports.process = exports.payments = exports.notes = exports.masterAccount = exports.inboundParsing = exports.files = exports.externalFeeds = exports.event = exports.emailCampaigns = exports.ecommerce = exports.domains = exports.deals = exports.customObjects = exports.coupons = exports.conversations = exports.contacts = exports.companies = exports.balance = exports.account = void 0;
39
+ exports.whatsAppCampaigns = exports.webhooks = exports.wallet = exports.user = exports.transactionalWhatsApp = exports.transactionalSms = exports.transactionalEmails = exports.tier = exports.tasks = exports.smsTemplates = exports.smsCampaigns = exports.senders = exports.reward = exports.program = exports.process = exports.payments = exports.notes = exports.masterAccount = exports.inboundParsing = exports.files = exports.externalFeeds = exports.event = exports.emailCampaigns = exports.ecommerce = exports.domains = exports.deals = exports.customObjects = exports.coupons = exports.conversations = exports.contacts = exports.consentGroups = exports.companies = exports.balance = exports.account = void 0;
40
40
  __exportStar(require("./account/client/requests/index.js"), exports);
41
41
  exports.account = __importStar(require("./account/index.js"));
42
42
  __exportStar(require("./account/types/index.js"), exports);
@@ -46,6 +46,9 @@ __exportStar(require("./balance/types/index.js"), exports);
46
46
  __exportStar(require("./companies/client/requests/index.js"), exports);
47
47
  exports.companies = __importStar(require("./companies/index.js"));
48
48
  __exportStar(require("./companies/types/index.js"), exports);
49
+ __exportStar(require("./consentGroups/client/requests/index.js"), exports);
50
+ exports.consentGroups = __importStar(require("./consentGroups/index.js"));
51
+ __exportStar(require("./consentGroups/types/index.js"), exports);
49
52
  __exportStar(require("./contacts/client/requests/index.js"), exports);
50
53
  exports.contacts = __importStar(require("./contacts/index.js"));
51
54
  __exportStar(require("./contacts/types/index.js"), exports);
@@ -126,6 +129,8 @@ __exportStar(require("./transactionalWhatsApp/types/index.js"), exports);
126
129
  __exportStar(require("./user/client/requests/index.js"), exports);
127
130
  exports.user = __importStar(require("./user/index.js"));
128
131
  __exportStar(require("./user/types/index.js"), exports);
132
+ __exportStar(require("./wallet/client/requests/index.js"), exports);
133
+ exports.wallet = __importStar(require("./wallet/index.js"));
129
134
  __exportStar(require("./webhooks/client/requests/index.js"), exports);
130
135
  exports.webhooks = __importStar(require("./webhooks/index.js"));
131
136
  __exportStar(require("./webhooks/types/index.js"), exports);
@@ -14,7 +14,7 @@ export declare namespace GetTransacBlockedContactsResponse {
14
14
  /** Reason for blocking / unsubscribing */
15
15
  reason: Item.Reason;
16
16
  /** Sender email address of the blocked or unsubscribed contact */
17
- senderEmail: string;
17
+ senderEmail: string | null;
18
18
  }
19
19
  namespace Item {
20
20
  /**
@@ -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);
@@ -0,0 +1,29 @@
1
+ /**
2
+ * A consent group representing a category of contact opt-in/opt-out preferences.
3
+ */
4
+ export interface ConsentGroup {
5
+ /** Unique identifier for the consent group */
6
+ id: number;
7
+ /** Display name of the consent group */
8
+ name: string;
9
+ /** Optional description of the consent group */
10
+ description?: string | undefined;
11
+ /** Controls how contacts are added to the group. `manual` — contacts are added explicitly via the API. `automatic` — contacts are added automatically at signup. */
12
+ signupMode: ConsentGroup.SignupMode;
13
+ /** Number of contacts currently in this consent group */
14
+ contactsCount: number;
15
+ /** Whether this is a system-created default consent group */
16
+ isDefault: boolean;
17
+ /** UTC date-time when the consent group was created (YYYY-MM-DDTHH:mm:ss.SSSZ) */
18
+ createdAt: string;
19
+ /** UTC date-time when the consent group was last updated (YYYY-MM-DDTHH:mm:ss.SSSZ) */
20
+ updatedAt: string;
21
+ }
22
+ export declare namespace ConsentGroup {
23
+ /** Controls how contacts are added to the group. `manual` — contacts are added explicitly via the API. `automatic` — contacts are added automatically at signup. */
24
+ const SignupMode: {
25
+ readonly Manual: "manual";
26
+ readonly Automatic: "automatic";
27
+ };
28
+ type SignupMode = (typeof SignupMode)[keyof typeof SignupMode];
29
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ConsentGroup = void 0;
5
+ var ConsentGroup;
6
+ (function (ConsentGroup) {
7
+ /** Controls how contacts are added to the group. `manual` — contacts are added explicitly via the API. `automatic` — contacts are added automatically at signup. */
8
+ ConsentGroup.SignupMode = {
9
+ Manual: "manual",
10
+ Automatic: "automatic",
11
+ };
12
+ })(ConsentGroup || (exports.ConsentGroup = ConsentGroup = {}));
@@ -0,0 +1,17 @@
1
+ /**
2
+ * A contact's membership status in a single consent group.
3
+ */
4
+ export interface ConsentGroupItem {
5
+ /** ID of the consent group */
6
+ id: number;
7
+ /** The contact's subscription status within this consent group */
8
+ status: ConsentGroupItem.Status;
9
+ }
10
+ export declare namespace ConsentGroupItem {
11
+ /** The contact's subscription status within this consent group */
12
+ const Status: {
13
+ readonly Subscribed: "subscribed";
14
+ readonly Unsubscribed: "unsubscribed";
15
+ };
16
+ type Status = (typeof Status)[keyof typeof Status];
17
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ConsentGroupItem = void 0;
5
+ var ConsentGroupItem;
6
+ (function (ConsentGroupItem) {
7
+ /** The contact's subscription status within this consent group */
8
+ ConsentGroupItem.Status = {
9
+ Subscribed: "subscribed",
10
+ Unsubscribed: "unsubscribed",
11
+ };
12
+ })(ConsentGroupItem || (exports.ConsentGroupItem = ConsentGroupItem = {}));
@@ -0,0 +1,14 @@
1
+ import type * as Brevo from "../index.js";
2
+ /**
3
+ * Paginated list of consent groups.
4
+ */
5
+ export interface ConsentGroupsListResponse {
6
+ /** List of consent groups matching the filter */
7
+ consentGroups: Brevo.ConsentGroup[];
8
+ /** Total number of consent groups matching the filter */
9
+ total: number;
10
+ /** Maximum number of results returned */
11
+ limit: number;
12
+ /** Number of results skipped */
13
+ offset: number;
14
+ }
@@ -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 });
@@ -2,17 +2,17 @@ export interface GetCampaignStats {
2
2
  /** Numbers of times your email has been opened automatically through Apple MPP. */
3
3
  appleMppOpens: number | null;
4
4
  /** Number of total clicks for the campaign */
5
- clickers: number;
5
+ clickers: number | null;
6
6
  /** Number of complaints (Spam reports) for the campaign */
7
- complaints: number;
7
+ complaints: number | null;
8
8
  /** Number of deferred emails for the campaign */
9
9
  deferred?: number | undefined;
10
10
  /** Number of delivered emails for the campaign */
11
- delivered: number;
11
+ delivered: number | null;
12
12
  /** Rate of recipients without any privacy protection option enabled in their email client, applied to all delivered emails */
13
13
  estimatedViews?: number | undefined;
14
14
  /** Number of hard bounces for the campaign */
15
- hardBounces: number;
15
+ hardBounces: number | null;
16
16
  /** List Id of email campaign (only in case of get email campaign(s)(not for global stats)) */
17
17
  listId?: number | undefined;
18
18
  /** Percentage of recipients who open the email out of your total number of recipients. Depending on your Campaign settings, they may include Apple MPP opens. */
@@ -20,19 +20,19 @@ export interface GetCampaignStats {
20
20
  /** Total number of non-delivered campaigns for a particular campaign id. */
21
21
  returnBounce?: number | undefined;
22
22
  /** Number of sent emails for the campaign */
23
- sent: number;
23
+ sent: number | null;
24
24
  /** Number of softbounce for the campaign */
25
- softBounces: number;
25
+ softBounces: number | null;
26
26
  /** Recipients without any privacy protection option enabled in their email email client */
27
- trackableViews: number;
27
+ trackableViews: number | null;
28
28
  /** Rate of recipients without any privacy protection option enabled in their email client */
29
29
  trackableViewsRate?: number | undefined;
30
30
  /** Number of unique clicks for the campaign */
31
- uniqueClicks: number;
31
+ uniqueClicks: number | null;
32
32
  /** Number of unique openings for the campaign */
33
- uniqueViews: number;
33
+ uniqueViews: number | null;
34
34
  /** Number of unsubscription for the campaign */
35
- unsubscriptions: number;
35
+ unsubscriptions: number | null;
36
36
  /** Number of openings for the campaign */
37
- viewed: number;
37
+ viewed: number | null;
38
38
  }
@@ -1,3 +1,4 @@
1
+ import type * as Brevo from "../index.js";
1
2
  export interface GetContactDetails {
2
3
  /** Set of attributes of the contact */
3
4
  attributes: GetContactDetails.Attributes;
@@ -17,6 +18,8 @@ export interface GetContactDetails {
17
18
  smsBlacklisted: boolean;
18
19
  /** Blacklist status for WhatsApp campaigns (true=blacklisted, false=not blacklisted) */
19
20
  whatsappBlacklisted: boolean;
21
+ /** Consent groups the contact belongs to, with their subscription status. Only present when the Consent Groups feature is enabled for your account. */
22
+ consentGroups?: Brevo.ConsentGroupItem[] | undefined;
20
23
  }
21
24
  export declare namespace GetContactDetails {
22
25
  /**
@@ -0,0 +1,4 @@
1
+ export interface WalletPassInstallUrl {
2
+ /** The wallet installation URL for the contact. Opening it lets the contact add the pass to their Apple Wallet or Google Wallet. */
3
+ url: string;
4
+ }
@@ -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 });
@@ -9,6 +9,9 @@ export * from "./BatchEventsResponse.js";
9
9
  export * from "./Cart.js";
10
10
  export * from "./Company.js";
11
11
  export * from "./Configuration.js";
12
+ export * from "./ConsentGroup.js";
13
+ export * from "./ConsentGroupItem.js";
14
+ export * from "./ConsentGroupsListResponse.js";
12
15
  export * from "./ContactErrorModel.js";
13
16
  export * from "./ConversationsMessage.js";
14
17
  export * from "./ConversionSourceMetrics.js";
@@ -62,4 +65,5 @@ export * from "./UnauthorizedErrorBody.js";
62
65
  export * from "./UpdateCampaignStatus.js";
63
66
  export * from "./ValueResponse.js";
64
67
  export * from "./VariablesItems.js";
68
+ export * from "./WalletPassInstallUrl.js";
65
69
  export * from "./WhatsappCampStats.js";
@@ -25,6 +25,9 @@ __exportStar(require("./BatchEventsResponse.js"), exports);
25
25
  __exportStar(require("./Cart.js"), exports);
26
26
  __exportStar(require("./Company.js"), exports);
27
27
  __exportStar(require("./Configuration.js"), exports);
28
+ __exportStar(require("./ConsentGroup.js"), exports);
29
+ __exportStar(require("./ConsentGroupItem.js"), exports);
30
+ __exportStar(require("./ConsentGroupsListResponse.js"), exports);
28
31
  __exportStar(require("./ContactErrorModel.js"), exports);
29
32
  __exportStar(require("./ConversationsMessage.js"), exports);
30
33
  __exportStar(require("./ConversionSourceMetrics.js"), exports);
@@ -78,4 +81,5 @@ __exportStar(require("./UnauthorizedErrorBody.js"), exports);
78
81
  __exportStar(require("./UpdateCampaignStatus.js"), exports);
79
82
  __exportStar(require("./ValueResponse.js"), exports);
80
83
  __exportStar(require("./VariablesItems.js"), exports);
84
+ __exportStar(require("./WalletPassInstallUrl.js"), exports);
81
85
  __exportStar(require("./WhatsappCampStats.js"), exports);