@cuenca-mx/cuenca-js 1.2.2-dev0 → 2.0.0-dev0

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 (183) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/build/data-91da6d58.mjs +625 -0
  3. package/build/data-ca00ac2d.cjs +669 -0
  4. package/build/dts/client/client.d.ts +86 -0
  5. package/build/dts/client/index.d.ts +1 -0
  6. package/build/dts/errors.d.ts +25 -0
  7. package/build/dts/helpers/case.d.ts +5 -0
  8. package/build/dts/helpers/data.d.ts +3 -0
  9. package/build/dts/helpers/env.d.ts +7 -0
  10. package/build/dts/index.d.ts +52 -0
  11. package/build/dts/jwt.d.ts +8 -0
  12. package/build/dts/models/account.d.ts +12 -0
  13. package/build/dts/models/alert.d.ts +32 -0
  14. package/build/dts/models/apiKey.d.ts +13 -0
  15. package/build/dts/models/arpc.d.ts +10 -0
  16. package/build/dts/models/balanceEntry.d.ts +15 -0
  17. package/build/dts/models/baseUser.d.ts +23 -0
  18. package/build/dts/models/billPayment.d.ts +10 -0
  19. package/build/dts/models/bridgeAccount.d.ts +27 -0
  20. package/build/dts/models/bridgeBankAccount.d.ts +16 -0
  21. package/build/dts/models/bridgeClabe.d.ts +12 -0
  22. package/build/dts/models/bridgeTransaction.d.ts +32 -0
  23. package/build/dts/models/card.d.ts +19 -0
  24. package/build/dts/models/cardActivation.d.ts +12 -0
  25. package/build/dts/models/cardTransaction.d.ts +15 -0
  26. package/build/dts/models/cardValidation.d.ts +19 -0
  27. package/build/dts/models/commission.d.ts +9 -0
  28. package/build/dts/models/deposit.d.ts +11 -0
  29. package/build/dts/models/file.d.ts +10 -0
  30. package/build/dts/models/fraudFundsTransfer.d.ts +9 -0
  31. package/build/dts/models/index.d.ts +38 -0
  32. package/build/dts/models/kycValidations.d.ts +22 -0
  33. package/build/dts/models/loginToken.d.ts +7 -0
  34. package/build/dts/models/partner.d.ts +25 -0
  35. package/build/dts/models/postalCode.d.ts +14 -0
  36. package/build/dts/models/saving.d.ts +11 -0
  37. package/build/dts/models/serviceProvider.d.ts +10 -0
  38. package/build/dts/models/session.d.ts +14 -0
  39. package/build/dts/models/statement.d.ts +10 -0
  40. package/build/dts/models/transaction.d.ts +7 -0
  41. package/build/dts/models/transactionalProfile.d.ts +14 -0
  42. package/build/dts/models/transfer.d.ts +15 -0
  43. package/build/dts/models/user.d.ts +42 -0
  44. package/build/dts/models/userCredential.d.ts +10 -0
  45. package/build/dts/models/userLogin.d.ts +9 -0
  46. package/build/dts/models/userReport.d.ts +48 -0
  47. package/build/dts/models/userTosAgreement.d.ts +13 -0
  48. package/build/dts/models/verification.d.ts +12 -0
  49. package/build/dts/models/wallet.d.ts +8 -0
  50. package/build/dts/models/walletTransaction.d.ts +10 -0
  51. package/build/dts/models/whatsAppTransfer.d.ts +16 -0
  52. package/build/dts/requests/addressUpdateRequest.d.ts +17 -0
  53. package/build/dts/requests/alertRequest.d.ts +31 -0
  54. package/build/dts/requests/apiKeyRequest.d.ts +9 -0
  55. package/build/dts/requests/arpcRequest.d.ts +16 -0
  56. package/build/dts/requests/base.d.ts +2 -0
  57. package/build/dts/requests/cardActivationRequest.d.ts +11 -0
  58. package/build/dts/requests/cardRequest.d.ts +18 -0
  59. package/build/dts/requests/cardValidationRequest.d.ts +15 -0
  60. package/build/dts/requests/fileUploadRequest.d.ts +12 -0
  61. package/build/dts/requests/fraudFundsTransferRequest.d.ts +13 -0
  62. package/build/dts/requests/index.d.ts +24 -0
  63. package/build/dts/requests/kycValidationsRequest.d.ts +10 -0
  64. package/build/dts/requests/partnerUserRequest.d.ts +100 -0
  65. package/build/dts/requests/reportGenerateRequest.d.ts +8 -0
  66. package/build/dts/requests/savingRequest.d.ts +11 -0
  67. package/build/dts/requests/sessionRequest.d.ts +12 -0
  68. package/build/dts/requests/tosUpdateRequest.d.ts +11 -0
  69. package/build/dts/requests/transferRequest.d.ts +12 -0
  70. package/build/dts/requests/transferUpdateRequest.d.ts +8 -0
  71. package/build/dts/requests/userCredentialRequest.d.ts +15 -0
  72. package/build/dts/requests/userLoginRequest.d.ts +8 -0
  73. package/build/dts/requests/userReportCreateRequest.d.ts +9 -0
  74. package/build/dts/requests/userReportUpdateRequest.d.ts +28 -0
  75. package/build/dts/requests/userRequest.d.ts +39 -0
  76. package/build/dts/requests/verificationRequest.d.ts +17 -0
  77. package/build/dts/requests/walletTransactionRequest.d.ts +9 -0
  78. package/build/dts/resources/accounts.d.ts +33 -0
  79. package/build/dts/resources/alerts.d.ts +54 -0
  80. package/build/dts/resources/apiKeys.d.ts +63 -0
  81. package/build/dts/resources/arpc.d.ts +18 -0
  82. package/build/dts/resources/balanceEntries.d.ts +37 -0
  83. package/build/dts/resources/base.d.ts +135 -0
  84. package/build/dts/resources/billPayments.d.ts +34 -0
  85. package/build/dts/resources/bridgeAccounts.d.ts +49 -0
  86. package/build/dts/resources/bridgeBankAccounts.d.ts +33 -0
  87. package/build/dts/resources/bridgeClabes.d.ts +27 -0
  88. package/build/dts/resources/bridgeTransactions.d.ts +36 -0
  89. package/build/dts/resources/cardActivations.d.ts +19 -0
  90. package/build/dts/resources/cardTransactions.d.ts +34 -0
  91. package/build/dts/resources/cardValidations.d.ts +19 -0
  92. package/build/dts/resources/cards.d.ts +63 -0
  93. package/build/dts/resources/commissions.d.ts +34 -0
  94. package/build/dts/resources/deposits.d.ts +34 -0
  95. package/build/dts/resources/files.d.ts +30 -0
  96. package/build/dts/resources/fraudFundsTransfers.d.ts +18 -0
  97. package/build/dts/resources/index.d.ts +36 -0
  98. package/build/dts/resources/kycValidations.d.ts +53 -0
  99. package/build/dts/resources/loginTokens.d.ts +17 -0
  100. package/build/dts/resources/partners.d.ts +54 -0
  101. package/build/dts/resources/postalCodes.d.ts +24 -0
  102. package/build/dts/resources/reports.d.ts +8 -0
  103. package/build/dts/resources/savings.d.ts +62 -0
  104. package/build/dts/resources/serviceProviders.d.ts +32 -0
  105. package/build/dts/resources/sessions.d.ts +43 -0
  106. package/build/dts/resources/statements.d.ts +44 -0
  107. package/build/dts/resources/transfers.d.ts +64 -0
  108. package/build/dts/resources/userCredentials.d.ts +30 -0
  109. package/build/dts/resources/userLogins.d.ts +28 -0
  110. package/build/dts/resources/userReports.d.ts +54 -0
  111. package/build/dts/resources/users.d.ts +56 -0
  112. package/build/dts/resources/usersTosAgreements.d.ts +16 -0
  113. package/build/dts/resources/verifications.d.ts +31 -0
  114. package/build/dts/resources/walletTransactions.d.ts +48 -0
  115. package/build/dts/resources/whatsAppTransfers.d.ts +34 -0
  116. package/build/dts/types/enums.d.ts +579 -0
  117. package/build/dts/types/identities/address.d.ts +25 -0
  118. package/build/dts/types/identities/alertLog.d.ts +11 -0
  119. package/build/dts/types/identities/audit.d.ts +10 -0
  120. package/build/dts/types/identities/businessDetails.d.ts +9 -0
  121. package/build/dts/types/identities/externalAccount.d.ts +8 -0
  122. package/build/dts/types/identities/index.d.ts +17 -0
  123. package/build/dts/types/identities/kycFile.d.ts +14 -0
  124. package/build/dts/types/identities/legalRepresentatives.d.ts +12 -0
  125. package/build/dts/types/identities/license.d.ts +10 -0
  126. package/build/dts/types/identities/moralOperation.d.ts +8 -0
  127. package/build/dts/types/identities/physicalPerson.d.ts +12 -0
  128. package/build/dts/types/identities/shareholderMoral.d.ts +12 -0
  129. package/build/dts/types/identities/shareholderPhysical.d.ts +9 -0
  130. package/build/dts/types/identities/tosAgreements.d.ts +10 -0
  131. package/build/dts/types/identities/transactionalProfileServices.d.ts +10 -0
  132. package/build/dts/types/identities/verificationError.d.ts +10 -0
  133. package/build/dts/types/identities/vulnerableActivity.d.ts +10 -0
  134. package/build/dts/types/index.d.ts +3 -0
  135. package/build/dts/types/queries/accountQuery.d.ts +4 -0
  136. package/build/dts/types/queries/alertQuery.d.ts +12 -0
  137. package/build/dts/types/queries/apiKeyQuery.d.ts +4 -0
  138. package/build/dts/types/queries/balanceEntryQuery.d.ts +5 -0
  139. package/build/dts/types/queries/billPaymentQuery.d.ts +4 -0
  140. package/build/dts/types/queries/bridgeAccountQuery.d.ts +4 -0
  141. package/build/dts/types/queries/bridgeBankAccountQuery.d.ts +4 -0
  142. package/build/dts/types/queries/bridgeQuery.d.ts +7 -0
  143. package/build/dts/types/queries/bridgeTransactionQuery.d.ts +6 -0
  144. package/build/dts/types/queries/cardTransactionQuery.d.ts +4 -0
  145. package/build/dts/types/queries/cardsQuery.d.ts +4 -0
  146. package/build/dts/types/queries/depositQuery.d.ts +5 -0
  147. package/build/dts/types/queries/index.d.ts +26 -0
  148. package/build/dts/types/queries/partnerQuery.d.ts +4 -0
  149. package/build/dts/types/queries/postalCodeQuery.d.ts +4 -0
  150. package/build/dts/types/queries/queryParams.d.ts +15 -0
  151. package/build/dts/types/queries/statementQuery.d.ts +6 -0
  152. package/build/dts/types/queries/transactionQuery.d.ts +4 -0
  153. package/build/dts/types/queries/transferQuery.d.ts +7 -0
  154. package/build/dts/types/queries/userQuery.d.ts +11 -0
  155. package/build/dts/types/queries/userReportQuery.d.ts +4 -0
  156. package/build/dts/types/queries/walletQuery.d.ts +4 -0
  157. package/build/dts/types/queries/walletTransactionQuery.d.ts +4 -0
  158. package/build/errors/index.cjs +10 -0
  159. package/build/errors/index.mjs +10 -1
  160. package/build/index.cjs +1305 -2894
  161. package/build/index.mjs +1307 -2895
  162. package/build/jwt/index.cjs +11 -8
  163. package/build/jwt/index.mjs +11 -8
  164. package/build/requests/index.cjs +4 -22
  165. package/build/requests/index.mjs +2 -26
  166. package/build/types/index.cjs +18 -56
  167. package/build/types/index.mjs +9 -34
  168. package/build/umd/cuenca.umd.js +1 -1
  169. package/build/vulnerableActivity-61dc2846.mjs +278 -0
  170. package/build/vulnerableActivity-d5aed4a7.cjs +299 -0
  171. package/build/walletTransactionRequest-aab46c5e.cjs +461 -0
  172. package/build/walletTransactionRequest-dc11fc69.mjs +433 -0
  173. package/errors/index.d.ts +1 -0
  174. package/jwt/index.d.ts +1 -0
  175. package/package.json +26 -8
  176. package/requests/index.d.ts +1 -0
  177. package/types/index.d.ts +1 -0
  178. package/build/data-1fd00e5c.mjs +0 -1199
  179. package/build/data-72c37b60.cjs +0 -1240
  180. package/build/vulnerableActivity-7cc1734f.cjs +0 -867
  181. package/build/vulnerableActivity-bd344332.mjs +0 -831
  182. package/build/walletTransactionRequest-05d5305a.mjs +0 -1512
  183. package/build/walletTransactionRequest-c6a5c64d.cjs +0 -1539
@@ -0,0 +1,299 @@
1
+ 'use strict';
2
+
3
+ var errors_index = require('./errors/index.cjs');
4
+ var data = require('./data-ca00ac2d.cjs');
5
+
6
+ // Base query interface. See docs/adr/0001-contrato-v2.md, decisions 8 and 9:
7
+ // Mirrors Python's `Field(gt=0, le=MAX_PAGE_SIZE)`. Keep in sync with
8
+ // `cuenca_validations.types.queries.MAX_PAGE_SIZE`. An out-of-range value
9
+ // throws instead of being silently clamped.
10
+ const MAX_PAGE_SIZE = 100;
11
+ const validatePageSize = (pageSize) => {
12
+ if (pageSize === undefined)
13
+ return undefined;
14
+ if (!(pageSize > 0 && pageSize <= MAX_PAGE_SIZE)) {
15
+ throw new errors_index.ValidationError(`pageSize must satisfy 0 < pageSize <= ${MAX_PAGE_SIZE}`);
16
+ }
17
+ return pageSize;
18
+ };
19
+ // Base fields serialize first, in this fixed order, followed by whatever
20
+ // fields a `*Query` extension adds — mirroring the base-then-subclass field
21
+ // order the old `toObject` hierarchy produced.
22
+ const toParams$1 = (query) => {
23
+ const { createdAfter, createdBefore, ids, limit, pageSize, relatedTransaction, userId, count, ...rest } = query;
24
+ const params = {};
25
+ if (createdAfter !== undefined)
26
+ params.created_after = createdAfter;
27
+ if (createdBefore !== undefined)
28
+ params.created_before = createdBefore;
29
+ if (ids !== undefined)
30
+ params.ids = ids;
31
+ if (typeof limit === 'number') {
32
+ if (limit < 0) {
33
+ throw new errors_index.ValidationError('limit must be >= 0');
34
+ }
35
+ params.limit = limit;
36
+ }
37
+ const validatedPageSize = validatePageSize(pageSize);
38
+ if (validatedPageSize !== undefined)
39
+ params.page_size = validatedPageSize;
40
+ if (relatedTransaction !== undefined) {
41
+ params.related_transaction = relatedTransaction;
42
+ }
43
+ if (userId !== undefined)
44
+ params.user_id = userId;
45
+ Object.assign(params, data.snakeize(rest));
46
+ // `count: true` serializes to `count=1` on the wire, matching
47
+ // `QueryParams.model_dump` in cuenca-validations. `count` absent or
48
+ // false is simply omitted.
49
+ if (count) {
50
+ params.count = 1;
51
+ }
52
+ Object.keys(params).forEach((key) => {
53
+ if (params[key] === null || params[key] === undefined) {
54
+ delete params[key];
55
+ }
56
+ });
57
+ return params;
58
+ };
59
+ const paramsToQueryString = (params) => {
60
+ const searchParams = new URLSearchParams();
61
+ Object.entries(params).forEach(([key, value]) => {
62
+ if (Array.isArray(value)) {
63
+ searchParams.append(key, value.join(','));
64
+ }
65
+ else {
66
+ searchParams.append(key, String(value));
67
+ }
68
+ });
69
+ return searchParams.toString();
70
+ };
71
+ const toQueryString$1 = (query) => paramsToQueryString(toParams$1(query));
72
+
73
+ // `accountId` serializes to the wire key `account`, not `account_id` — an
74
+ // irregularity of this one endpoint. The generic serializer in
75
+ // `queryParams.ts` can't know about it, so `BridgeResource`s that use this
76
+ // query (and `BridgeTransactionQuery`, which extends it) opt into this
77
+ // serializer instead of the generic one.
78
+ const remapAccount = (params) => {
79
+ const { account_id: accountId, ...rest } = params;
80
+ return accountId === undefined ? rest : { ...rest, account: accountId };
81
+ };
82
+ const toParams = (query) => remapAccount(toParams$1(query));
83
+ const toQueryString = (query) => paramsToQueryString(toParams(query));
84
+
85
+ // Interfaces carry no constructor, so this validation — previously run by
86
+ // `StatementQuery`'s `set d` — is now an explicit step callers (in
87
+ // practice, `StatementResource#downloadFiles`) run before serializing.
88
+ const validateStatementQuery = ({ month, year, }) => {
89
+ if (month === undefined && year === undefined)
90
+ return;
91
+ const m = Number(month);
92
+ const y = Number(year);
93
+ if (!Number.isInteger(m) || m < 1 || m > 12) {
94
+ throw new errors_index.ValidationError('month must be an integer between 1 and 12');
95
+ }
96
+ if (!Number.isInteger(y) || y < 1900 || y > 9999) {
97
+ throw new errors_index.ValidationError('year must be an integer between 1900 and 9999');
98
+ }
99
+ const candidate = new Date(Date.UTC(y, m - 1, 1));
100
+ const nowUtc = new Date();
101
+ const currentMonthStart = new Date(Date.UTC(nowUtc.getUTCFullYear(), nowUtc.getUTCMonth(), 1));
102
+ if (candidate.getTime() >= currentMonthStart.getTime()) {
103
+ const mm = String(m).padStart(2, '0');
104
+ throw new errors_index.ValidationError(`${y}-${mm} is not a valid year-month pair`);
105
+ }
106
+ };
107
+
108
+ const Address = {
109
+ fromObject: (obj = {}) => data.coerceDatesWithDefaults({
110
+ city: obj.city,
111
+ colonia: obj.colonia,
112
+ country: obj.country,
113
+ state: obj.state,
114
+ street: obj.street,
115
+ createdAt: obj.created_at,
116
+ extNumber: obj.ext_number,
117
+ fullName: obj.full_name,
118
+ intNumber: obj.int_number,
119
+ postalCode: obj.postal_code,
120
+ }, ['createdAt']),
121
+ };
122
+
123
+ const AlertLog = {
124
+ fromObject: (obj = {}) => data.coerceDatesWithDefaults({
125
+ agent: obj.agent,
126
+ comments: obj.comments,
127
+ status: obj.status,
128
+ createdAt: obj.created_at,
129
+ updatedAt: obj.updated_at,
130
+ }, ['createdAt', 'updatedAt']),
131
+ };
132
+
133
+ const Audit = {
134
+ fromObject: (obj = {}) => data.coerceDatesWithDefaults({
135
+ hasAudit: obj.has_audit,
136
+ auditProvider: obj.audit_provider,
137
+ auditComments: obj.audit_comments,
138
+ auditDate: obj.audit_date,
139
+ }, ['auditDate']),
140
+ };
141
+
142
+ const BusinessDetails = {
143
+ fromObject: (obj = {}) => ({
144
+ accountUsageDescription: obj.account_usage_description ?? null,
145
+ businessDescription: obj.business_description ?? null,
146
+ }),
147
+ toObject: (req) => ({
148
+ account_usage_description: req.accountUsageDescription,
149
+ business_description: req.businessDescription,
150
+ }),
151
+ };
152
+
153
+ const ExternalAccount = {
154
+ fromObject: (obj = {}) => ({
155
+ bank: obj.bank,
156
+ account: obj.account,
157
+ }),
158
+ };
159
+
160
+ const VerificationError = {
161
+ fromObject: (obj = {}) => ({
162
+ code: obj.code,
163
+ error: obj.error,
164
+ identifier: obj.identifier,
165
+ message: obj.message,
166
+ }),
167
+ };
168
+
169
+ const KYCFile = {
170
+ fromObject: (obj = {}) => {
171
+ const errors = obj.errors;
172
+ return {
173
+ data: obj.data,
174
+ status: obj.status,
175
+ type: obj.type,
176
+ isMx: obj.is_mx,
177
+ uriBack: obj.uri_back,
178
+ uriFront: obj.uri_front,
179
+ ...(errors && errors.length > 0
180
+ ? { errors: errors.map(VerificationError.fromObject) }
181
+ : {}),
182
+ };
183
+ },
184
+ };
185
+
186
+ const License = {
187
+ fromObject: (obj = {}) => ({
188
+ licenseRequired: obj.license_required ?? false,
189
+ supervisoryEntity: obj.supervisory_entity ?? null,
190
+ licenseType: obj.license_type ?? null,
191
+ licenseDate: obj.license_date
192
+ ? data.dateToUTC(obj.license_date)
193
+ : null,
194
+ }),
195
+ };
196
+
197
+ const PhysicalPerson = {
198
+ fromObject: (obj = {}) => ({
199
+ names: obj.names,
200
+ curp: obj.curp,
201
+ rfc: obj.rfc,
202
+ firstSurname: obj.first_surname,
203
+ secondSurname: obj.second_surname,
204
+ }),
205
+ toObject: (person) => ({
206
+ names: person.names,
207
+ curp: person.curp,
208
+ rfc: person.rfc,
209
+ first_surname: person.firstSurname,
210
+ second_surname: person.secondSurname,
211
+ }),
212
+ };
213
+
214
+ const LegalRepresentatives = {
215
+ fromObject: (obj = {}) => ({
216
+ ...PhysicalPerson.fromObject(obj),
217
+ job: obj.job,
218
+ phoneNumber: obj.phone_number,
219
+ emailAddress: obj.email_address,
220
+ address: obj.address
221
+ ? Address.fromObject(obj.address)
222
+ : undefined,
223
+ }),
224
+ };
225
+
226
+ const ShareholderPhysical = {
227
+ fromObject: (obj = {}) => ({
228
+ ...PhysicalPerson.fromObject(obj),
229
+ percentage: obj.percentage,
230
+ shareCapital: obj.share_capital,
231
+ }),
232
+ };
233
+
234
+ const toShareholders = (obj) => {
235
+ const shareholders = obj.shareholders;
236
+ return shareholders ? shareholders.map(ShareholderPhysical.fromObject) : [];
237
+ };
238
+ const toLegalRepresentatives = (obj) => {
239
+ const legalRepresentatives = obj.legal_representatives;
240
+ return legalRepresentatives
241
+ ? legalRepresentatives.map(LegalRepresentatives.fromObject)
242
+ : [];
243
+ };
244
+ const ShareholderMoral = {
245
+ fromObject: (obj = {}) => ({
246
+ name: obj.name,
247
+ percentage: obj.percentage,
248
+ shareholders: toShareholders(obj),
249
+ legalRepresentatives: toLegalRepresentatives(obj),
250
+ }),
251
+ };
252
+
253
+ const TransactionalProfileServices = {
254
+ fromObject: (obj = {}) => ({
255
+ speiTransfersNum: obj.spei_transfers_num,
256
+ speiTransfersAmount: obj.spei_transfers_amount,
257
+ internalTransfersNum: obj.internal_transfers_num,
258
+ internalTransfersAmount: obj.internal_transfers_amount,
259
+ }),
260
+ };
261
+
262
+ const TOSAgreements = {
263
+ fromObject: (obj = {}) => ({
264
+ ip: obj.ip,
265
+ location: obj.location,
266
+ type: obj.type,
267
+ version: obj.version,
268
+ }),
269
+ };
270
+
271
+ const VulnerableActivity = {
272
+ fromObject: (obj = {}) => data.coerceDatesWithDefaults({
273
+ isVulnerableActivity: obj.is_vulnerable_activity,
274
+ hasSatRegister: obj.has_sat_register,
275
+ isInCompliance: obj.is_in_compliance,
276
+ satRegisteredDate: obj.sat_registered_date,
277
+ }, ['satRegisteredDate']),
278
+ };
279
+
280
+ exports.Address = Address;
281
+ exports.AlertLog = AlertLog;
282
+ exports.Audit = Audit;
283
+ exports.BusinessDetails = BusinessDetails;
284
+ exports.ExternalAccount = ExternalAccount;
285
+ exports.KYCFile = KYCFile;
286
+ exports.LegalRepresentatives = LegalRepresentatives;
287
+ exports.License = License;
288
+ exports.PhysicalPerson = PhysicalPerson;
289
+ exports.ShareholderMoral = ShareholderMoral;
290
+ exports.ShareholderPhysical = ShareholderPhysical;
291
+ exports.TOSAgreements = TOSAgreements;
292
+ exports.TransactionalProfileServices = TransactionalProfileServices;
293
+ exports.VerificationError = VerificationError;
294
+ exports.VulnerableActivity = VulnerableActivity;
295
+ exports.toParams = toParams$1;
296
+ exports.toParams$1 = toParams;
297
+ exports.toQueryString = toQueryString$1;
298
+ exports.toQueryString$1 = toQueryString;
299
+ exports.validateStatementQuery = validateStatementQuery;