braid-ui 1.0.28 → 1.0.29
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.
- package/dist/index.cjs +288 -314
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +135 -116
- package/dist/index.d.ts +135 -116
- package/dist/index.js +289 -315
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
package/dist/index.d.cts
CHANGED
|
@@ -158,111 +158,130 @@ interface BusinessFiltersSheetProps {
|
|
|
158
158
|
declare const BusinessFiltersSheet: ({ filters, onFilterChange, onResetFilters }: BusinessFiltersSheetProps) => react_jsx_runtime.JSX.Element;
|
|
159
159
|
|
|
160
160
|
declare const businessProfileSchema: z.ZodObject<{
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
161
|
+
name: z.ZodString;
|
|
162
|
+
productId: z.ZodNumber;
|
|
163
|
+
businessIdType: z.ZodString;
|
|
164
|
+
idNumber: z.ZodString;
|
|
165
|
+
dba: z.ZodOptional<z.ZodString>;
|
|
166
|
+
businessEntityType: z.ZodOptional<z.ZodString>;
|
|
167
167
|
incorporationState: z.ZodOptional<z.ZodString>;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
168
|
+
formationDate: z.ZodOptional<z.ZodString>;
|
|
169
|
+
website: z.ZodOptional<z.ZodString>;
|
|
170
|
+
achCompanyId: z.ZodOptional<z.ZodString>;
|
|
171
171
|
mcc: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
172
172
|
naics: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
postalCode: z.ZodString;
|
|
187
|
-
country: z.ZodString;
|
|
188
|
-
addressType: z.ZodOptional<z.ZodString>;
|
|
173
|
+
mobilePhone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
174
|
+
contactPersonFirstName: z.ZodOptional<z.ZodString>;
|
|
175
|
+
contactPersonLastName: z.ZodOptional<z.ZodString>;
|
|
176
|
+
contactPersonEmail: z.ZodOptional<z.ZodString>;
|
|
177
|
+
contactPersonPhone: z.ZodOptional<z.ZodString>;
|
|
178
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
180
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
181
|
+
city: z.ZodOptional<z.ZodString>;
|
|
182
|
+
state: z.ZodOptional<z.ZodString>;
|
|
183
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
184
|
+
countryCode: z.ZodString;
|
|
185
|
+
type: z.ZodOptional<z.ZodString>;
|
|
189
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
+
type?: string;
|
|
190
188
|
state?: string;
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
apartment?: string;
|
|
189
|
+
line1?: string;
|
|
190
|
+
line2?: string;
|
|
194
191
|
city?: string;
|
|
195
192
|
postalCode?: string;
|
|
196
|
-
|
|
193
|
+
countryCode?: string;
|
|
197
194
|
}, {
|
|
195
|
+
type?: string;
|
|
198
196
|
state?: string;
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
apartment?: string;
|
|
197
|
+
line1?: string;
|
|
198
|
+
line2?: string;
|
|
202
199
|
city?: string;
|
|
203
200
|
postalCode?: string;
|
|
204
|
-
|
|
205
|
-
}
|
|
201
|
+
countryCode?: string;
|
|
202
|
+
}>>;
|
|
203
|
+
submittedBy: z.ZodOptional<z.ZodObject<{
|
|
204
|
+
contactPersonEmail: z.ZodOptional<z.ZodString>;
|
|
205
|
+
contactPersonFirstName: z.ZodOptional<z.ZodString>;
|
|
206
|
+
contactPersonLastName: z.ZodOptional<z.ZodString>;
|
|
207
|
+
contactPersonPhone: z.ZodOptional<z.ZodString>;
|
|
208
|
+
}, "strip", z.ZodTypeAny, {
|
|
209
|
+
contactPersonFirstName?: string;
|
|
210
|
+
contactPersonLastName?: string;
|
|
211
|
+
contactPersonEmail?: string;
|
|
212
|
+
contactPersonPhone?: string;
|
|
213
|
+
}, {
|
|
214
|
+
contactPersonFirstName?: string;
|
|
215
|
+
contactPersonLastName?: string;
|
|
216
|
+
contactPersonEmail?: string;
|
|
217
|
+
contactPersonPhone?: string;
|
|
218
|
+
}>>;
|
|
206
219
|
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
|
|
220
|
+
name?: string;
|
|
208
221
|
address?: {
|
|
222
|
+
type?: string;
|
|
209
223
|
state?: string;
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
apartment?: string;
|
|
224
|
+
line1?: string;
|
|
225
|
+
line2?: string;
|
|
213
226
|
city?: string;
|
|
214
227
|
postalCode?: string;
|
|
215
|
-
|
|
228
|
+
countryCode?: string;
|
|
216
229
|
};
|
|
217
|
-
legalName?: string;
|
|
218
|
-
dbaName?: string;
|
|
219
|
-
businessType?: string;
|
|
220
|
-
taxId?: string;
|
|
221
230
|
website?: string;
|
|
222
|
-
|
|
223
|
-
|
|
231
|
+
productId?: number;
|
|
232
|
+
businessIdType?: string;
|
|
233
|
+
idNumber?: string;
|
|
234
|
+
dba?: string;
|
|
235
|
+
businessEntityType?: string;
|
|
224
236
|
incorporationState?: string;
|
|
225
|
-
|
|
237
|
+
formationDate?: string;
|
|
238
|
+
achCompanyId?: string;
|
|
226
239
|
mcc?: string;
|
|
227
240
|
naics?: string;
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
241
|
+
mobilePhone?: string;
|
|
242
|
+
contactPersonFirstName?: string;
|
|
243
|
+
contactPersonLastName?: string;
|
|
244
|
+
contactPersonEmail?: string;
|
|
245
|
+
contactPersonPhone?: string;
|
|
246
|
+
submittedBy?: {
|
|
247
|
+
contactPersonFirstName?: string;
|
|
248
|
+
contactPersonLastName?: string;
|
|
249
|
+
contactPersonEmail?: string;
|
|
250
|
+
contactPersonPhone?: string;
|
|
251
|
+
};
|
|
236
252
|
}, {
|
|
237
|
-
|
|
253
|
+
name?: string;
|
|
238
254
|
address?: {
|
|
255
|
+
type?: string;
|
|
239
256
|
state?: string;
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
apartment?: string;
|
|
257
|
+
line1?: string;
|
|
258
|
+
line2?: string;
|
|
243
259
|
city?: string;
|
|
244
260
|
postalCode?: string;
|
|
245
|
-
|
|
261
|
+
countryCode?: string;
|
|
246
262
|
};
|
|
247
|
-
legalName?: string;
|
|
248
|
-
dbaName?: string;
|
|
249
|
-
businessType?: string;
|
|
250
|
-
taxId?: string;
|
|
251
263
|
website?: string;
|
|
252
|
-
|
|
253
|
-
|
|
264
|
+
productId?: number;
|
|
265
|
+
businessIdType?: string;
|
|
266
|
+
idNumber?: string;
|
|
267
|
+
dba?: string;
|
|
268
|
+
businessEntityType?: string;
|
|
254
269
|
incorporationState?: string;
|
|
255
|
-
|
|
270
|
+
formationDate?: string;
|
|
271
|
+
achCompanyId?: string;
|
|
256
272
|
mcc?: string;
|
|
257
273
|
naics?: string;
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
274
|
+
mobilePhone?: string;
|
|
275
|
+
contactPersonFirstName?: string;
|
|
276
|
+
contactPersonLastName?: string;
|
|
277
|
+
contactPersonEmail?: string;
|
|
278
|
+
contactPersonPhone?: string;
|
|
279
|
+
submittedBy?: {
|
|
280
|
+
contactPersonFirstName?: string;
|
|
281
|
+
contactPersonLastName?: string;
|
|
282
|
+
contactPersonEmail?: string;
|
|
283
|
+
contactPersonPhone?: string;
|
|
284
|
+
};
|
|
266
285
|
}>;
|
|
267
286
|
type BusinessProfile = z.infer<typeof businessProfileSchema>;
|
|
268
287
|
|
|
@@ -405,29 +424,29 @@ declare const counterpartyBasicInfoSchema: z.ZodObject<{
|
|
|
405
424
|
type?: string;
|
|
406
425
|
}>;
|
|
407
426
|
declare const addressSchema: z.ZodObject<{
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
city: z.ZodString
|
|
411
|
-
state: z.ZodString
|
|
412
|
-
postalCode: z.ZodString
|
|
413
|
-
|
|
414
|
-
|
|
427
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
428
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
429
|
+
city: z.ZodOptional<z.ZodString>;
|
|
430
|
+
state: z.ZodOptional<z.ZodString>;
|
|
431
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
432
|
+
countryCode: z.ZodString;
|
|
433
|
+
type: z.ZodOptional<z.ZodString>;
|
|
415
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
|
+
type?: string;
|
|
416
436
|
state?: string;
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
apartment?: string;
|
|
437
|
+
line1?: string;
|
|
438
|
+
line2?: string;
|
|
420
439
|
city?: string;
|
|
421
440
|
postalCode?: string;
|
|
422
|
-
|
|
441
|
+
countryCode?: string;
|
|
423
442
|
}, {
|
|
443
|
+
type?: string;
|
|
424
444
|
state?: string;
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
apartment?: string;
|
|
445
|
+
line1?: string;
|
|
446
|
+
line2?: string;
|
|
428
447
|
city?: string;
|
|
429
448
|
postalCode?: string;
|
|
430
|
-
|
|
449
|
+
countryCode?: string;
|
|
431
450
|
}>;
|
|
432
451
|
type CounterpartyBasicInfo$1 = z.infer<typeof counterpartyBasicInfoSchema>;
|
|
433
452
|
type Address = z.infer<typeof addressSchema>;
|
|
@@ -438,58 +457,58 @@ declare const intermediaryFISchema: z.ZodObject<{
|
|
|
438
457
|
idType: z.ZodOptional<z.ZodString>;
|
|
439
458
|
idNumber: z.ZodOptional<z.ZodString>;
|
|
440
459
|
address: z.ZodOptional<z.ZodObject<{
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
city: z.ZodString
|
|
444
|
-
state: z.ZodString
|
|
445
|
-
postalCode: z.ZodString
|
|
446
|
-
|
|
447
|
-
|
|
460
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
461
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
462
|
+
city: z.ZodOptional<z.ZodString>;
|
|
463
|
+
state: z.ZodOptional<z.ZodString>;
|
|
464
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
465
|
+
countryCode: z.ZodString;
|
|
466
|
+
type: z.ZodOptional<z.ZodString>;
|
|
448
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
type?: string;
|
|
449
469
|
state?: string;
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
apartment?: string;
|
|
470
|
+
line1?: string;
|
|
471
|
+
line2?: string;
|
|
453
472
|
city?: string;
|
|
454
473
|
postalCode?: string;
|
|
455
|
-
|
|
474
|
+
countryCode?: string;
|
|
456
475
|
}, {
|
|
476
|
+
type?: string;
|
|
457
477
|
state?: string;
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
apartment?: string;
|
|
478
|
+
line1?: string;
|
|
479
|
+
line2?: string;
|
|
461
480
|
city?: string;
|
|
462
481
|
postalCode?: string;
|
|
463
|
-
|
|
482
|
+
countryCode?: string;
|
|
464
483
|
}>>;
|
|
465
484
|
}, "strip", z.ZodTypeAny, {
|
|
466
485
|
name?: string;
|
|
467
486
|
address?: {
|
|
487
|
+
type?: string;
|
|
468
488
|
state?: string;
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
apartment?: string;
|
|
489
|
+
line1?: string;
|
|
490
|
+
line2?: string;
|
|
472
491
|
city?: string;
|
|
473
492
|
postalCode?: string;
|
|
474
|
-
|
|
493
|
+
countryCode?: string;
|
|
475
494
|
};
|
|
476
|
-
idType?: string;
|
|
477
|
-
accountNumber?: string;
|
|
478
495
|
idNumber?: string;
|
|
496
|
+
accountNumber?: string;
|
|
497
|
+
idType?: string;
|
|
479
498
|
}, {
|
|
480
499
|
name?: string;
|
|
481
500
|
address?: {
|
|
501
|
+
type?: string;
|
|
482
502
|
state?: string;
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
apartment?: string;
|
|
503
|
+
line1?: string;
|
|
504
|
+
line2?: string;
|
|
486
505
|
city?: string;
|
|
487
506
|
postalCode?: string;
|
|
488
|
-
|
|
507
|
+
countryCode?: string;
|
|
489
508
|
};
|
|
490
|
-
idType?: string;
|
|
491
|
-
accountNumber?: string;
|
|
492
509
|
idNumber?: string;
|
|
510
|
+
accountNumber?: string;
|
|
511
|
+
idType?: string;
|
|
493
512
|
}>;
|
|
494
513
|
type IntermediaryFI$1 = z.infer<typeof intermediaryFISchema>;
|
|
495
514
|
|
package/dist/index.d.ts
CHANGED
|
@@ -158,111 +158,130 @@ interface BusinessFiltersSheetProps {
|
|
|
158
158
|
declare const BusinessFiltersSheet: ({ filters, onFilterChange, onResetFilters }: BusinessFiltersSheetProps) => react_jsx_runtime.JSX.Element;
|
|
159
159
|
|
|
160
160
|
declare const businessProfileSchema: z.ZodObject<{
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
161
|
+
name: z.ZodString;
|
|
162
|
+
productId: z.ZodNumber;
|
|
163
|
+
businessIdType: z.ZodString;
|
|
164
|
+
idNumber: z.ZodString;
|
|
165
|
+
dba: z.ZodOptional<z.ZodString>;
|
|
166
|
+
businessEntityType: z.ZodOptional<z.ZodString>;
|
|
167
167
|
incorporationState: z.ZodOptional<z.ZodString>;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
168
|
+
formationDate: z.ZodOptional<z.ZodString>;
|
|
169
|
+
website: z.ZodOptional<z.ZodString>;
|
|
170
|
+
achCompanyId: z.ZodOptional<z.ZodString>;
|
|
171
171
|
mcc: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
172
172
|
naics: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
postalCode: z.ZodString;
|
|
187
|
-
country: z.ZodString;
|
|
188
|
-
addressType: z.ZodOptional<z.ZodString>;
|
|
173
|
+
mobilePhone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
174
|
+
contactPersonFirstName: z.ZodOptional<z.ZodString>;
|
|
175
|
+
contactPersonLastName: z.ZodOptional<z.ZodString>;
|
|
176
|
+
contactPersonEmail: z.ZodOptional<z.ZodString>;
|
|
177
|
+
contactPersonPhone: z.ZodOptional<z.ZodString>;
|
|
178
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
180
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
181
|
+
city: z.ZodOptional<z.ZodString>;
|
|
182
|
+
state: z.ZodOptional<z.ZodString>;
|
|
183
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
184
|
+
countryCode: z.ZodString;
|
|
185
|
+
type: z.ZodOptional<z.ZodString>;
|
|
189
186
|
}, "strip", z.ZodTypeAny, {
|
|
187
|
+
type?: string;
|
|
190
188
|
state?: string;
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
apartment?: string;
|
|
189
|
+
line1?: string;
|
|
190
|
+
line2?: string;
|
|
194
191
|
city?: string;
|
|
195
192
|
postalCode?: string;
|
|
196
|
-
|
|
193
|
+
countryCode?: string;
|
|
197
194
|
}, {
|
|
195
|
+
type?: string;
|
|
198
196
|
state?: string;
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
apartment?: string;
|
|
197
|
+
line1?: string;
|
|
198
|
+
line2?: string;
|
|
202
199
|
city?: string;
|
|
203
200
|
postalCode?: string;
|
|
204
|
-
|
|
205
|
-
}
|
|
201
|
+
countryCode?: string;
|
|
202
|
+
}>>;
|
|
203
|
+
submittedBy: z.ZodOptional<z.ZodObject<{
|
|
204
|
+
contactPersonEmail: z.ZodOptional<z.ZodString>;
|
|
205
|
+
contactPersonFirstName: z.ZodOptional<z.ZodString>;
|
|
206
|
+
contactPersonLastName: z.ZodOptional<z.ZodString>;
|
|
207
|
+
contactPersonPhone: z.ZodOptional<z.ZodString>;
|
|
208
|
+
}, "strip", z.ZodTypeAny, {
|
|
209
|
+
contactPersonFirstName?: string;
|
|
210
|
+
contactPersonLastName?: string;
|
|
211
|
+
contactPersonEmail?: string;
|
|
212
|
+
contactPersonPhone?: string;
|
|
213
|
+
}, {
|
|
214
|
+
contactPersonFirstName?: string;
|
|
215
|
+
contactPersonLastName?: string;
|
|
216
|
+
contactPersonEmail?: string;
|
|
217
|
+
contactPersonPhone?: string;
|
|
218
|
+
}>>;
|
|
206
219
|
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
|
|
220
|
+
name?: string;
|
|
208
221
|
address?: {
|
|
222
|
+
type?: string;
|
|
209
223
|
state?: string;
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
apartment?: string;
|
|
224
|
+
line1?: string;
|
|
225
|
+
line2?: string;
|
|
213
226
|
city?: string;
|
|
214
227
|
postalCode?: string;
|
|
215
|
-
|
|
228
|
+
countryCode?: string;
|
|
216
229
|
};
|
|
217
|
-
legalName?: string;
|
|
218
|
-
dbaName?: string;
|
|
219
|
-
businessType?: string;
|
|
220
|
-
taxId?: string;
|
|
221
230
|
website?: string;
|
|
222
|
-
|
|
223
|
-
|
|
231
|
+
productId?: number;
|
|
232
|
+
businessIdType?: string;
|
|
233
|
+
idNumber?: string;
|
|
234
|
+
dba?: string;
|
|
235
|
+
businessEntityType?: string;
|
|
224
236
|
incorporationState?: string;
|
|
225
|
-
|
|
237
|
+
formationDate?: string;
|
|
238
|
+
achCompanyId?: string;
|
|
226
239
|
mcc?: string;
|
|
227
240
|
naics?: string;
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
241
|
+
mobilePhone?: string;
|
|
242
|
+
contactPersonFirstName?: string;
|
|
243
|
+
contactPersonLastName?: string;
|
|
244
|
+
contactPersonEmail?: string;
|
|
245
|
+
contactPersonPhone?: string;
|
|
246
|
+
submittedBy?: {
|
|
247
|
+
contactPersonFirstName?: string;
|
|
248
|
+
contactPersonLastName?: string;
|
|
249
|
+
contactPersonEmail?: string;
|
|
250
|
+
contactPersonPhone?: string;
|
|
251
|
+
};
|
|
236
252
|
}, {
|
|
237
|
-
|
|
253
|
+
name?: string;
|
|
238
254
|
address?: {
|
|
255
|
+
type?: string;
|
|
239
256
|
state?: string;
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
apartment?: string;
|
|
257
|
+
line1?: string;
|
|
258
|
+
line2?: string;
|
|
243
259
|
city?: string;
|
|
244
260
|
postalCode?: string;
|
|
245
|
-
|
|
261
|
+
countryCode?: string;
|
|
246
262
|
};
|
|
247
|
-
legalName?: string;
|
|
248
|
-
dbaName?: string;
|
|
249
|
-
businessType?: string;
|
|
250
|
-
taxId?: string;
|
|
251
263
|
website?: string;
|
|
252
|
-
|
|
253
|
-
|
|
264
|
+
productId?: number;
|
|
265
|
+
businessIdType?: string;
|
|
266
|
+
idNumber?: string;
|
|
267
|
+
dba?: string;
|
|
268
|
+
businessEntityType?: string;
|
|
254
269
|
incorporationState?: string;
|
|
255
|
-
|
|
270
|
+
formationDate?: string;
|
|
271
|
+
achCompanyId?: string;
|
|
256
272
|
mcc?: string;
|
|
257
273
|
naics?: string;
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
274
|
+
mobilePhone?: string;
|
|
275
|
+
contactPersonFirstName?: string;
|
|
276
|
+
contactPersonLastName?: string;
|
|
277
|
+
contactPersonEmail?: string;
|
|
278
|
+
contactPersonPhone?: string;
|
|
279
|
+
submittedBy?: {
|
|
280
|
+
contactPersonFirstName?: string;
|
|
281
|
+
contactPersonLastName?: string;
|
|
282
|
+
contactPersonEmail?: string;
|
|
283
|
+
contactPersonPhone?: string;
|
|
284
|
+
};
|
|
266
285
|
}>;
|
|
267
286
|
type BusinessProfile = z.infer<typeof businessProfileSchema>;
|
|
268
287
|
|
|
@@ -405,29 +424,29 @@ declare const counterpartyBasicInfoSchema: z.ZodObject<{
|
|
|
405
424
|
type?: string;
|
|
406
425
|
}>;
|
|
407
426
|
declare const addressSchema: z.ZodObject<{
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
city: z.ZodString
|
|
411
|
-
state: z.ZodString
|
|
412
|
-
postalCode: z.ZodString
|
|
413
|
-
|
|
414
|
-
|
|
427
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
428
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
429
|
+
city: z.ZodOptional<z.ZodString>;
|
|
430
|
+
state: z.ZodOptional<z.ZodString>;
|
|
431
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
432
|
+
countryCode: z.ZodString;
|
|
433
|
+
type: z.ZodOptional<z.ZodString>;
|
|
415
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
|
+
type?: string;
|
|
416
436
|
state?: string;
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
apartment?: string;
|
|
437
|
+
line1?: string;
|
|
438
|
+
line2?: string;
|
|
420
439
|
city?: string;
|
|
421
440
|
postalCode?: string;
|
|
422
|
-
|
|
441
|
+
countryCode?: string;
|
|
423
442
|
}, {
|
|
443
|
+
type?: string;
|
|
424
444
|
state?: string;
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
apartment?: string;
|
|
445
|
+
line1?: string;
|
|
446
|
+
line2?: string;
|
|
428
447
|
city?: string;
|
|
429
448
|
postalCode?: string;
|
|
430
|
-
|
|
449
|
+
countryCode?: string;
|
|
431
450
|
}>;
|
|
432
451
|
type CounterpartyBasicInfo$1 = z.infer<typeof counterpartyBasicInfoSchema>;
|
|
433
452
|
type Address = z.infer<typeof addressSchema>;
|
|
@@ -438,58 +457,58 @@ declare const intermediaryFISchema: z.ZodObject<{
|
|
|
438
457
|
idType: z.ZodOptional<z.ZodString>;
|
|
439
458
|
idNumber: z.ZodOptional<z.ZodString>;
|
|
440
459
|
address: z.ZodOptional<z.ZodObject<{
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
city: z.ZodString
|
|
444
|
-
state: z.ZodString
|
|
445
|
-
postalCode: z.ZodString
|
|
446
|
-
|
|
447
|
-
|
|
460
|
+
line1: z.ZodOptional<z.ZodString>;
|
|
461
|
+
line2: z.ZodOptional<z.ZodString>;
|
|
462
|
+
city: z.ZodOptional<z.ZodString>;
|
|
463
|
+
state: z.ZodOptional<z.ZodString>;
|
|
464
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
465
|
+
countryCode: z.ZodString;
|
|
466
|
+
type: z.ZodOptional<z.ZodString>;
|
|
448
467
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
type?: string;
|
|
449
469
|
state?: string;
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
apartment?: string;
|
|
470
|
+
line1?: string;
|
|
471
|
+
line2?: string;
|
|
453
472
|
city?: string;
|
|
454
473
|
postalCode?: string;
|
|
455
|
-
|
|
474
|
+
countryCode?: string;
|
|
456
475
|
}, {
|
|
476
|
+
type?: string;
|
|
457
477
|
state?: string;
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
apartment?: string;
|
|
478
|
+
line1?: string;
|
|
479
|
+
line2?: string;
|
|
461
480
|
city?: string;
|
|
462
481
|
postalCode?: string;
|
|
463
|
-
|
|
482
|
+
countryCode?: string;
|
|
464
483
|
}>>;
|
|
465
484
|
}, "strip", z.ZodTypeAny, {
|
|
466
485
|
name?: string;
|
|
467
486
|
address?: {
|
|
487
|
+
type?: string;
|
|
468
488
|
state?: string;
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
apartment?: string;
|
|
489
|
+
line1?: string;
|
|
490
|
+
line2?: string;
|
|
472
491
|
city?: string;
|
|
473
492
|
postalCode?: string;
|
|
474
|
-
|
|
493
|
+
countryCode?: string;
|
|
475
494
|
};
|
|
476
|
-
idType?: string;
|
|
477
|
-
accountNumber?: string;
|
|
478
495
|
idNumber?: string;
|
|
496
|
+
accountNumber?: string;
|
|
497
|
+
idType?: string;
|
|
479
498
|
}, {
|
|
480
499
|
name?: string;
|
|
481
500
|
address?: {
|
|
501
|
+
type?: string;
|
|
482
502
|
state?: string;
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
apartment?: string;
|
|
503
|
+
line1?: string;
|
|
504
|
+
line2?: string;
|
|
486
505
|
city?: string;
|
|
487
506
|
postalCode?: string;
|
|
488
|
-
|
|
507
|
+
countryCode?: string;
|
|
489
508
|
};
|
|
490
|
-
idType?: string;
|
|
491
|
-
accountNumber?: string;
|
|
492
509
|
idNumber?: string;
|
|
510
|
+
accountNumber?: string;
|
|
511
|
+
idType?: string;
|
|
493
512
|
}>;
|
|
494
513
|
type IntermediaryFI$1 = z.infer<typeof intermediaryFISchema>;
|
|
495
514
|
|