@saasquatch/mint-components 2.1.7 → 2.1.8-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/dist/cjs/loader.cjs.js +1 -1
  2. package/dist/cjs/mint-components.cjs.js +1 -1
  3. package/dist/cjs/sqm-banking-info-form_10.cjs.entry.js +391 -50
  4. package/dist/collection/components/tax-and-cash/sqm-banking-info-form/formDefinitions.js +75 -37
  5. package/dist/collection/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.js +688 -13
  6. package/dist/collection/components/tax-and-cash/sqm-banking-info-form/useBankingInfoForm.js +109 -1
  7. package/dist/esm/loader.js +1 -1
  8. package/dist/esm/mint-components.js +1 -1
  9. package/dist/esm/sqm-banking-info-form_10.entry.js +391 -50
  10. package/dist/esm-es5/loader.js +1 -1
  11. package/dist/esm-es5/mint-components.js +1 -1
  12. package/dist/esm-es5/sqm-banking-info-form_10.entry.js +1 -1
  13. package/dist/mint-components/mint-components.esm.js +1 -1
  14. package/dist/mint-components/p-17b32de7.system.entry.js +1 -0
  15. package/dist/mint-components/p-7d16ee0e.entry.js +108 -0
  16. package/dist/mint-components/p-ca098be1.system.js +1 -1
  17. package/dist/types/components/tax-and-cash/sqm-banking-info-form/formDefinitions.d.ts +2 -0
  18. package/dist/types/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form-view.d.ts +4 -0
  19. package/dist/types/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.d.ts +165 -0
  20. package/dist/types/components.d.ts +240 -0
  21. package/docs/docs.docx +0 -0
  22. package/docs/raisins.json +1 -1
  23. package/grapesjs/grapesjs.js +1 -1
  24. package/package.json +1 -1
  25. package/dist/mint-components/p-cacb897d.system.entry.js +0 -1
  26. package/dist/mint-components/p-ff378015.entry.js +0 -106
@@ -275,6 +275,149 @@ export declare class BankingInfoForm {
275
275
  * @uiName Information modal button text
276
276
  */
277
277
  modalButtonText: string;
278
+ /**
279
+ * Error messages for the beneficiary / account holder name field.
280
+ * Supports error codes: empty, invalidCharacters, numeric, tooLong,
281
+ * nonEnglish, businessNameMismatch, nameMismatch, businessPayeeMismatch, payeeMismatch
282
+ * @uiName Beneficiary account name error
283
+ * @uiWidget textArea
284
+ */
285
+ beneficiaryAccountNameError: string;
286
+ /**
287
+ * Error messages for the bank account number / IBAN field.
288
+ * Supports error codes: empty, invalidUk, invalid, ibanEmpty,
289
+ * ibanAlphanumeric, ibanInvalid, ibanCountryMismatch
290
+ * @uiName Bank account number / IBAN error
291
+ * @uiWidget textArea
292
+ */
293
+ bankAccountNumberError: string;
294
+ /**
295
+ * Error messages for the routing code / sort code / BSB field.
296
+ * Supports error codes: invalidBsb, invalidSortCode, empty, invalid
297
+ * @uiName Routing code error
298
+ * @uiWidget textArea
299
+ */
300
+ routingCodeError: string;
301
+ /**
302
+ * Error messages for the SWIFT / BIC code field.
303
+ * Supports error codes: empty, alphanumeric, invalid
304
+ * @uiName SWIFT code error
305
+ * @uiWidget textArea
306
+ */
307
+ swiftCodeError: string;
308
+ /**
309
+ * Error messages for the bank account type field.
310
+ * Supports error codes: empty
311
+ * @uiName Bank account type error
312
+ * @uiWidget textArea
313
+ */
314
+ bankAccountTypeError: string;
315
+ /**
316
+ * Error messages for the bank name field.
317
+ * Supports error codes: empty
318
+ * @uiName Bank name error
319
+ * @uiWidget textArea
320
+ */
321
+ bankNameError: string;
322
+ /**
323
+ * Error messages for the tax payer ID / classification entity field.
324
+ * Supports error codes: empty, emptyAr, emptyKr, alphanumeric, alphanumericAr,
325
+ * alphanumericKr, invalid, invalidAr, invalidKr, invalidKzt, cnpjTooShort, cpfTooShort
326
+ * @uiName Tax payer ID error
327
+ * @uiWidget textArea
328
+ */
329
+ taxPayerIdError: string;
330
+ /**
331
+ * Error messages for the patronymic name field.
332
+ * Supports error codes: empty, alphanumeric
333
+ * @uiName Patronymic name error
334
+ * @uiWidget textArea
335
+ */
336
+ patronymicNameError: string;
337
+ /**
338
+ * Error messages for the VO code field.
339
+ * Supports error codes: empty, alphanumeric
340
+ * @uiName VO code error
341
+ * @uiWidget textArea
342
+ */
343
+ voCodeError: string;
344
+ /**
345
+ * Error messages for the agency code field.
346
+ * Supports error codes: empty, alphanumeric, tooShort
347
+ * @uiName Agency code error
348
+ * @uiWidget textArea
349
+ */
350
+ agencyCodeError: string;
351
+ /**
352
+ * Error messages for the bank address field.
353
+ * Supports error codes: empty
354
+ * @uiName Bank address error
355
+ * @uiWidget textArea
356
+ */
357
+ bankAddressError: string;
358
+ /**
359
+ * Error messages for the bank city field.
360
+ * Supports error codes: empty
361
+ * @uiName Bank city error
362
+ * @uiWidget textArea
363
+ */
364
+ bankCityError: string;
365
+ /**
366
+ * Error messages for the bank province/state field.
367
+ * Supports error codes: empty
368
+ * @uiName Bank province/state error
369
+ * @uiWidget textArea
370
+ */
371
+ bankStateError: string;
372
+ /**
373
+ * Error messages for the bank postal code field.
374
+ * Supports error codes: empty
375
+ * @uiName Bank postal code error
376
+ * @uiWidget textArea
377
+ */
378
+ bankPostalCodeError: string;
379
+ /**
380
+ * Error messages for the branch code field.
381
+ * Supports error codes: invalid
382
+ * @uiName Branch code error
383
+ * @uiWidget textArea
384
+ */
385
+ branchCodeError: string;
386
+ /**
387
+ * Error messages for the branch name field.
388
+ * Supports error codes: empty
389
+ * @uiName Branch name error
390
+ * @uiWidget textArea
391
+ */
392
+ branchNameError: string;
393
+ /**
394
+ * Error messages for the classification code field.
395
+ * Supports error codes: empty, invalidKzt
396
+ * @uiName Classification code error
397
+ * @uiWidget textArea
398
+ */
399
+ classificationCodeError: string;
400
+ /**
401
+ * Error messages for the PayPal email field.
402
+ * Supports error codes: empty, unsupportedCurrency, invalidEmail, verificationIncomplete
403
+ * @uiName PayPal email error
404
+ * @uiWidget textArea
405
+ */
406
+ paypalEmailError: string;
407
+ /**
408
+ * Error messages for the payment threshold field.
409
+ * Supports error codes: empty, invalid
410
+ * @uiName Payment threshold error
411
+ * @uiWidget textArea
412
+ */
413
+ paymentThresholdError: string;
414
+ /**
415
+ * Error messages for the payment day field.
416
+ * Supports error codes: empty, invalid
417
+ * @uiName Payment day error
418
+ * @uiWidget textArea
419
+ */
420
+ paymentDayError: string;
278
421
  /**
279
422
  * @undocumented
280
423
  * @uiType object
@@ -289,6 +432,28 @@ export declare class BankingInfoForm {
289
432
  loadingErrorAlertDescription: string;
290
433
  loadingErrorAlertHeader: string;
291
434
  };
435
+ errorMessages: {
436
+ beneficiaryAccountName: string;
437
+ bankAccountNumber: string;
438
+ routingCode: string;
439
+ swiftCode: string;
440
+ bankAccountType: string;
441
+ bankName: string;
442
+ taxPayerId: string;
443
+ patronymicName: string;
444
+ voCode: string;
445
+ agencyCode: string;
446
+ bankAddress: string;
447
+ bankCity: string;
448
+ bankState: string;
449
+ bankPostalCode: string;
450
+ branchCode: string;
451
+ branchName: string;
452
+ beneficiaryClassification: string;
453
+ paypalEmailAddress: string;
454
+ paymentThreshold: string;
455
+ paymentDay: string;
456
+ };
292
457
  };
293
458
  render(): any;
294
459
  }
@@ -64,6 +64,12 @@ export namespace Components {
64
64
  "renderLabel": (idx: any) => Promise<any>;
65
65
  }
66
66
  interface SqmBankingInfoForm {
67
+ /**
68
+ * Error messages for the agency code field. Supports error codes: empty, alphanumeric, tooShort
69
+ * @uiName Agency code error
70
+ * @uiWidget textArea
71
+ */
72
+ "agencyCodeError": string;
67
73
  /**
68
74
  * @uiName Agency code field label
69
75
  */
@@ -73,18 +79,42 @@ export namespace Components {
73
79
  * @uiName Back button label
74
80
  */
75
81
  "backButton": string;
82
+ /**
83
+ * Error messages for the bank account number / IBAN field. Supports error codes: empty, invalidUk, invalid, ibanEmpty, ibanAlphanumeric, ibanInvalid, ibanCountryMismatch
84
+ * @uiName Bank account number / IBAN error
85
+ * @uiWidget textArea
86
+ */
87
+ "bankAccountNumberError": string;
76
88
  /**
77
89
  * @uiName Bank account number field label
78
90
  */
79
91
  "bankAccountNumberLabel": string;
92
+ /**
93
+ * Error messages for the bank account type field. Supports error codes: empty
94
+ * @uiName Bank account type error
95
+ * @uiWidget textArea
96
+ */
97
+ "bankAccountTypeError": string;
80
98
  /**
81
99
  * @uiName Bank account type field label
82
100
  */
83
101
  "bankAccountTypeLabel": string;
102
+ /**
103
+ * Error messages for the bank address field. Supports error codes: empty
104
+ * @uiName Bank address error
105
+ * @uiWidget textArea
106
+ */
107
+ "bankAddressError": string;
84
108
  /**
85
109
  * @uiName Bank address field label
86
110
  */
87
111
  "bankAddressLabel": string;
112
+ /**
113
+ * Error messages for the bank city field. Supports error codes: empty
114
+ * @uiName Bank city error
115
+ * @uiWidget textArea
116
+ */
117
+ "bankCityError": string;
88
118
  /**
89
119
  * @uiName Bank city field label
90
120
  */
@@ -93,14 +123,32 @@ export namespace Components {
93
123
  * @uiName Bank country field label
94
124
  */
95
125
  "bankLocationLabel": string;
126
+ /**
127
+ * Error messages for the bank name field. Supports error codes: empty
128
+ * @uiName Bank name error
129
+ * @uiWidget textArea
130
+ */
131
+ "bankNameError": string;
96
132
  /**
97
133
  * @uiName Bank name field label
98
134
  */
99
135
  "bankNameLabel": string;
136
+ /**
137
+ * Error messages for the bank postal code field. Supports error codes: empty
138
+ * @uiName Bank postal code error
139
+ * @uiWidget textArea
140
+ */
141
+ "bankPostalCodeError": string;
100
142
  /**
101
143
  * @uiName Bank postal code field label
102
144
  */
103
145
  "bankPostalCodeLabel": string;
146
+ /**
147
+ * Error messages for the bank province/state field. Supports error codes: empty
148
+ * @uiName Bank province/state error
149
+ * @uiWidget textArea
150
+ */
151
+ "bankStateError": string;
104
152
  /**
105
153
  * @uiName Bank province/state field label
106
154
  */
@@ -109,14 +157,32 @@ export namespace Components {
109
157
  * @uiName Beneficiary account field description
110
158
  */
111
159
  "beneficiaryAccountNameDescription": string;
160
+ /**
161
+ * Error messages for the beneficiary / account holder name field. Supports error codes: empty, invalidCharacters, numeric, tooLong, nonEnglish, businessNameMismatch, nameMismatch, businessPayeeMismatch, payeeMismatch
162
+ * @uiName Beneficiary account name error
163
+ * @uiWidget textArea
164
+ */
165
+ "beneficiaryAccountNameError": string;
112
166
  /**
113
167
  * @uiName Beneficiary account field label
114
168
  */
115
169
  "beneficiaryAccountNameLabel": string;
170
+ /**
171
+ * Error messages for the branch code field. Supports error codes: invalid
172
+ * @uiName Branch code error
173
+ * @uiWidget textArea
174
+ */
175
+ "branchCodeError": string;
116
176
  /**
117
177
  * @uiName Branch code field label
118
178
  */
119
179
  "branchCodeLabel": string;
180
+ /**
181
+ * Error messages for the branch name field. Supports error codes: empty
182
+ * @uiName Branch name error
183
+ * @uiWidget textArea
184
+ */
185
+ "branchNameError": string;
120
186
  /**
121
187
  * One of three options listed for the classification field
122
188
  * @uiName Business classification option
@@ -130,6 +196,12 @@ export namespace Components {
130
196
  * @uiName Classification CPF field label
131
197
  */
132
198
  "classificationCPFLabel": string;
199
+ /**
200
+ * Error messages for the classification code field. Supports error codes: empty, invalidKzt
201
+ * @uiName Classification code error
202
+ * @uiWidget textArea
203
+ */
204
+ "classificationCodeError": string;
133
205
  /**
134
206
  * @uiName Classification entity field label
135
207
  */
@@ -237,6 +309,12 @@ export namespace Components {
237
309
  * @uiName Information modal title
238
310
  */
239
311
  "modalTitle": string;
312
+ /**
313
+ * Error messages for the patronymic name field. Supports error codes: empty, alphanumeric
314
+ * @uiName Patronymic name error
315
+ * @uiWidget textArea
316
+ */
317
+ "patronymicNameError": string;
240
318
  /**
241
319
  * @uiName Patronymic name field label
242
320
  */
@@ -246,6 +324,12 @@ export namespace Components {
246
324
  * @uiName PayPal email field label
247
325
  */
248
326
  "payPalInputLabel": string;
327
+ /**
328
+ * Error messages for the payment day field. Supports error codes: empty, invalid
329
+ * @uiName Payment day error
330
+ * @uiWidget textArea
331
+ */
332
+ "paymentDayError": string;
249
333
  /**
250
334
  * Label text for the payment day select option for the fifteenth of the month
251
335
  * @uiName Fifteenth of month payday option
@@ -281,11 +365,29 @@ export namespace Components {
281
365
  * @uiName Fixed day payment schedule option
282
366
  */
283
367
  "paymentScheduleFixedDay": string;
368
+ /**
369
+ * Error messages for the payment threshold field. Supports error codes: empty, invalid
370
+ * @uiName Payment threshold error
371
+ * @uiWidget textArea
372
+ */
373
+ "paymentThresholdError": string;
284
374
  /**
285
375
  * Participant use this field to select the balance at which they want to be paid
286
376
  * @uiName Payment threshold field label
287
377
  */
288
378
  "paymentThresholdSelectLabel": string;
379
+ /**
380
+ * Error messages for the PayPal email field. Supports error codes: empty, unsupportedCurrency, invalidEmail, verificationIncomplete
381
+ * @uiName PayPal email error
382
+ * @uiWidget textArea
383
+ */
384
+ "paypalEmailError": string;
385
+ /**
386
+ * Error messages for the routing code / sort code / BSB field. Supports error codes: invalidBsb, invalidSortCode, empty, invalid
387
+ * @uiName Routing code error
388
+ * @uiWidget textArea
389
+ */
390
+ "routingCodeError": string;
289
391
  /**
290
392
  * @uiName Routing code field label
291
393
  */
@@ -303,6 +405,12 @@ export namespace Components {
303
405
  * @uiName Support link text
304
406
  */
305
407
  "supportLink": string;
408
+ /**
409
+ * Error messages for the SWIFT / BIC code field. Supports error codes: empty, alphanumeric, invalid
410
+ * @uiName SWIFT code error
411
+ * @uiWidget textArea
412
+ */
413
+ "swiftCodeError": string;
306
414
  /**
307
415
  * @uiName SWIFT code field label
308
416
  */
@@ -316,6 +424,12 @@ export namespace Components {
316
424
  * @uiName Page description
317
425
  */
318
426
  "taxAndPayoutsDescription": string;
427
+ /**
428
+ * Error messages for the tax payer ID / classification entity field. Supports error codes: empty, emptyAr, emptyKr, alphanumeric, alphanumericAr, alphanumericKr, invalid, invalidAr, invalidKr, invalidKzt, cnpjTooShort, cpfTooShort
429
+ * @uiName Tax payer ID error
430
+ * @uiWidget textArea
431
+ */
432
+ "taxPayerIdError": string;
319
433
  /**
320
434
  * @uiName Taxpayer ID field label
321
435
  */
@@ -333,6 +447,12 @@ export namespace Components {
333
447
  * @uiName Verify email header
334
448
  */
335
449
  "verifyEmailHeaderText": string;
450
+ /**
451
+ * Error messages for the VO code field. Supports error codes: empty, alphanumeric
452
+ * @uiName VO code error
453
+ * @uiWidget textArea
454
+ */
455
+ "voCodeError": string;
336
456
  /**
337
457
  * @uiName VO code field label
338
458
  */
@@ -7986,6 +8106,12 @@ declare namespace LocalJSX {
7986
8106
  interface RaisinsPlopTarget {
7987
8107
  }
7988
8108
  interface SqmBankingInfoForm {
8109
+ /**
8110
+ * Error messages for the agency code field. Supports error codes: empty, alphanumeric, tooShort
8111
+ * @uiName Agency code error
8112
+ * @uiWidget textArea
8113
+ */
8114
+ "agencyCodeError"?: string;
7989
8115
  /**
7990
8116
  * @uiName Agency code field label
7991
8117
  */
@@ -7995,18 +8121,42 @@ declare namespace LocalJSX {
7995
8121
  * @uiName Back button label
7996
8122
  */
7997
8123
  "backButton"?: string;
8124
+ /**
8125
+ * Error messages for the bank account number / IBAN field. Supports error codes: empty, invalidUk, invalid, ibanEmpty, ibanAlphanumeric, ibanInvalid, ibanCountryMismatch
8126
+ * @uiName Bank account number / IBAN error
8127
+ * @uiWidget textArea
8128
+ */
8129
+ "bankAccountNumberError"?: string;
7998
8130
  /**
7999
8131
  * @uiName Bank account number field label
8000
8132
  */
8001
8133
  "bankAccountNumberLabel"?: string;
8134
+ /**
8135
+ * Error messages for the bank account type field. Supports error codes: empty
8136
+ * @uiName Bank account type error
8137
+ * @uiWidget textArea
8138
+ */
8139
+ "bankAccountTypeError"?: string;
8002
8140
  /**
8003
8141
  * @uiName Bank account type field label
8004
8142
  */
8005
8143
  "bankAccountTypeLabel"?: string;
8144
+ /**
8145
+ * Error messages for the bank address field. Supports error codes: empty
8146
+ * @uiName Bank address error
8147
+ * @uiWidget textArea
8148
+ */
8149
+ "bankAddressError"?: string;
8006
8150
  /**
8007
8151
  * @uiName Bank address field label
8008
8152
  */
8009
8153
  "bankAddressLabel"?: string;
8154
+ /**
8155
+ * Error messages for the bank city field. Supports error codes: empty
8156
+ * @uiName Bank city error
8157
+ * @uiWidget textArea
8158
+ */
8159
+ "bankCityError"?: string;
8010
8160
  /**
8011
8161
  * @uiName Bank city field label
8012
8162
  */
@@ -8015,14 +8165,32 @@ declare namespace LocalJSX {
8015
8165
  * @uiName Bank country field label
8016
8166
  */
8017
8167
  "bankLocationLabel"?: string;
8168
+ /**
8169
+ * Error messages for the bank name field. Supports error codes: empty
8170
+ * @uiName Bank name error
8171
+ * @uiWidget textArea
8172
+ */
8173
+ "bankNameError"?: string;
8018
8174
  /**
8019
8175
  * @uiName Bank name field label
8020
8176
  */
8021
8177
  "bankNameLabel"?: string;
8178
+ /**
8179
+ * Error messages for the bank postal code field. Supports error codes: empty
8180
+ * @uiName Bank postal code error
8181
+ * @uiWidget textArea
8182
+ */
8183
+ "bankPostalCodeError"?: string;
8022
8184
  /**
8023
8185
  * @uiName Bank postal code field label
8024
8186
  */
8025
8187
  "bankPostalCodeLabel"?: string;
8188
+ /**
8189
+ * Error messages for the bank province/state field. Supports error codes: empty
8190
+ * @uiName Bank province/state error
8191
+ * @uiWidget textArea
8192
+ */
8193
+ "bankStateError"?: string;
8026
8194
  /**
8027
8195
  * @uiName Bank province/state field label
8028
8196
  */
@@ -8031,14 +8199,32 @@ declare namespace LocalJSX {
8031
8199
  * @uiName Beneficiary account field description
8032
8200
  */
8033
8201
  "beneficiaryAccountNameDescription"?: string;
8202
+ /**
8203
+ * Error messages for the beneficiary / account holder name field. Supports error codes: empty, invalidCharacters, numeric, tooLong, nonEnglish, businessNameMismatch, nameMismatch, businessPayeeMismatch, payeeMismatch
8204
+ * @uiName Beneficiary account name error
8205
+ * @uiWidget textArea
8206
+ */
8207
+ "beneficiaryAccountNameError"?: string;
8034
8208
  /**
8035
8209
  * @uiName Beneficiary account field label
8036
8210
  */
8037
8211
  "beneficiaryAccountNameLabel"?: string;
8212
+ /**
8213
+ * Error messages for the branch code field. Supports error codes: invalid
8214
+ * @uiName Branch code error
8215
+ * @uiWidget textArea
8216
+ */
8217
+ "branchCodeError"?: string;
8038
8218
  /**
8039
8219
  * @uiName Branch code field label
8040
8220
  */
8041
8221
  "branchCodeLabel"?: string;
8222
+ /**
8223
+ * Error messages for the branch name field. Supports error codes: empty
8224
+ * @uiName Branch name error
8225
+ * @uiWidget textArea
8226
+ */
8227
+ "branchNameError"?: string;
8042
8228
  /**
8043
8229
  * One of three options listed for the classification field
8044
8230
  * @uiName Business classification option
@@ -8052,6 +8238,12 @@ declare namespace LocalJSX {
8052
8238
  * @uiName Classification CPF field label
8053
8239
  */
8054
8240
  "classificationCPFLabel"?: string;
8241
+ /**
8242
+ * Error messages for the classification code field. Supports error codes: empty, invalidKzt
8243
+ * @uiName Classification code error
8244
+ * @uiWidget textArea
8245
+ */
8246
+ "classificationCodeError"?: string;
8055
8247
  /**
8056
8248
  * @uiName Classification entity field label
8057
8249
  */
@@ -8159,6 +8351,12 @@ declare namespace LocalJSX {
8159
8351
  * @uiName Information modal title
8160
8352
  */
8161
8353
  "modalTitle"?: string;
8354
+ /**
8355
+ * Error messages for the patronymic name field. Supports error codes: empty, alphanumeric
8356
+ * @uiName Patronymic name error
8357
+ * @uiWidget textArea
8358
+ */
8359
+ "patronymicNameError"?: string;
8162
8360
  /**
8163
8361
  * @uiName Patronymic name field label
8164
8362
  */
@@ -8168,6 +8366,12 @@ declare namespace LocalJSX {
8168
8366
  * @uiName PayPal email field label
8169
8367
  */
8170
8368
  "payPalInputLabel"?: string;
8369
+ /**
8370
+ * Error messages for the payment day field. Supports error codes: empty, invalid
8371
+ * @uiName Payment day error
8372
+ * @uiWidget textArea
8373
+ */
8374
+ "paymentDayError"?: string;
8171
8375
  /**
8172
8376
  * Label text for the payment day select option for the fifteenth of the month
8173
8377
  * @uiName Fifteenth of month payday option
@@ -8203,11 +8407,29 @@ declare namespace LocalJSX {
8203
8407
  * @uiName Fixed day payment schedule option
8204
8408
  */
8205
8409
  "paymentScheduleFixedDay"?: string;
8410
+ /**
8411
+ * Error messages for the payment threshold field. Supports error codes: empty, invalid
8412
+ * @uiName Payment threshold error
8413
+ * @uiWidget textArea
8414
+ */
8415
+ "paymentThresholdError"?: string;
8206
8416
  /**
8207
8417
  * Participant use this field to select the balance at which they want to be paid
8208
8418
  * @uiName Payment threshold field label
8209
8419
  */
8210
8420
  "paymentThresholdSelectLabel"?: string;
8421
+ /**
8422
+ * Error messages for the PayPal email field. Supports error codes: empty, unsupportedCurrency, invalidEmail, verificationIncomplete
8423
+ * @uiName PayPal email error
8424
+ * @uiWidget textArea
8425
+ */
8426
+ "paypalEmailError"?: string;
8427
+ /**
8428
+ * Error messages for the routing code / sort code / BSB field. Supports error codes: invalidBsb, invalidSortCode, empty, invalid
8429
+ * @uiName Routing code error
8430
+ * @uiWidget textArea
8431
+ */
8432
+ "routingCodeError"?: string;
8211
8433
  /**
8212
8434
  * @uiName Routing code field label
8213
8435
  */
@@ -8225,6 +8447,12 @@ declare namespace LocalJSX {
8225
8447
  * @uiName Support link text
8226
8448
  */
8227
8449
  "supportLink"?: string;
8450
+ /**
8451
+ * Error messages for the SWIFT / BIC code field. Supports error codes: empty, alphanumeric, invalid
8452
+ * @uiName SWIFT code error
8453
+ * @uiWidget textArea
8454
+ */
8455
+ "swiftCodeError"?: string;
8228
8456
  /**
8229
8457
  * @uiName SWIFT code field label
8230
8458
  */
@@ -8238,6 +8466,12 @@ declare namespace LocalJSX {
8238
8466
  * @uiName Page description
8239
8467
  */
8240
8468
  "taxAndPayoutsDescription"?: string;
8469
+ /**
8470
+ * Error messages for the tax payer ID / classification entity field. Supports error codes: empty, emptyAr, emptyKr, alphanumeric, alphanumericAr, alphanumericKr, invalid, invalidAr, invalidKr, invalidKzt, cnpjTooShort, cpfTooShort
8471
+ * @uiName Tax payer ID error
8472
+ * @uiWidget textArea
8473
+ */
8474
+ "taxPayerIdError"?: string;
8241
8475
  /**
8242
8476
  * @uiName Taxpayer ID field label
8243
8477
  */
@@ -8255,6 +8489,12 @@ declare namespace LocalJSX {
8255
8489
  * @uiName Verify email header
8256
8490
  */
8257
8491
  "verifyEmailHeaderText"?: string;
8492
+ /**
8493
+ * Error messages for the VO code field. Supports error codes: empty, alphanumeric
8494
+ * @uiName VO code error
8495
+ * @uiWidget textArea
8496
+ */
8497
+ "voCodeError"?: string;
8258
8498
  /**
8259
8499
  * @uiName VO code field label
8260
8500
  */
package/docs/docs.docx CHANGED
Binary file