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.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
- legalName: z.ZodString;
162
- dbaName: z.ZodOptional<z.ZodString>;
163
- businessType: z.ZodString;
164
- taxId: z.ZodString;
165
- formationDate: z.ZodOptional<z.ZodString>;
166
- idType: z.ZodOptional<z.ZodString>;
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
- website: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
169
- email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
170
- mobilePhone: z.ZodOptional<z.ZodString>;
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
- achCompanyId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
174
- achCompanyName: z.ZodOptional<z.ZodString>;
175
- externalId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
176
- productId: z.ZodOptional<z.ZodNumber>;
177
- contactFirstName: z.ZodOptional<z.ZodString>;
178
- contactLastName: z.ZodOptional<z.ZodString>;
179
- contactEmail: z.ZodOptional<z.ZodString>;
180
- contactPhone: z.ZodOptional<z.ZodString>;
181
- address: z.ZodObject<{
182
- streetAddress: z.ZodString;
183
- apartment: z.ZodOptional<z.ZodString>;
184
- city: z.ZodString;
185
- state: z.ZodString;
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
- country?: string;
192
- streetAddress?: string;
193
- apartment?: string;
189
+ line1?: string;
190
+ line2?: string;
194
191
  city?: string;
195
192
  postalCode?: string;
196
- addressType?: string;
193
+ countryCode?: string;
197
194
  }, {
195
+ type?: string;
198
196
  state?: string;
199
- country?: string;
200
- streetAddress?: string;
201
- apartment?: string;
197
+ line1?: string;
198
+ line2?: string;
202
199
  city?: string;
203
200
  postalCode?: string;
204
- addressType?: string;
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
- email?: string;
220
+ name?: string;
208
221
  address?: {
222
+ type?: string;
209
223
  state?: string;
210
- country?: string;
211
- streetAddress?: string;
212
- apartment?: string;
224
+ line1?: string;
225
+ line2?: string;
213
226
  city?: string;
214
227
  postalCode?: string;
215
- addressType?: string;
228
+ countryCode?: string;
216
229
  };
217
- legalName?: string;
218
- dbaName?: string;
219
- businessType?: string;
220
- taxId?: string;
221
230
  website?: string;
222
- formationDate?: string;
223
- idType?: string;
231
+ productId?: number;
232
+ businessIdType?: string;
233
+ idNumber?: string;
234
+ dba?: string;
235
+ businessEntityType?: string;
224
236
  incorporationState?: string;
225
- mobilePhone?: string;
237
+ formationDate?: string;
238
+ achCompanyId?: string;
226
239
  mcc?: string;
227
240
  naics?: string;
228
- achCompanyId?: string;
229
- achCompanyName?: string;
230
- externalId?: string;
231
- productId?: number;
232
- contactFirstName?: string;
233
- contactLastName?: string;
234
- contactEmail?: string;
235
- contactPhone?: string;
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
- email?: string;
253
+ name?: string;
238
254
  address?: {
255
+ type?: string;
239
256
  state?: string;
240
- country?: string;
241
- streetAddress?: string;
242
- apartment?: string;
257
+ line1?: string;
258
+ line2?: string;
243
259
  city?: string;
244
260
  postalCode?: string;
245
- addressType?: string;
261
+ countryCode?: string;
246
262
  };
247
- legalName?: string;
248
- dbaName?: string;
249
- businessType?: string;
250
- taxId?: string;
251
263
  website?: string;
252
- formationDate?: string;
253
- idType?: string;
264
+ productId?: number;
265
+ businessIdType?: string;
266
+ idNumber?: string;
267
+ dba?: string;
268
+ businessEntityType?: string;
254
269
  incorporationState?: string;
255
- mobilePhone?: string;
270
+ formationDate?: string;
271
+ achCompanyId?: string;
256
272
  mcc?: string;
257
273
  naics?: string;
258
- achCompanyId?: string;
259
- achCompanyName?: string;
260
- externalId?: string;
261
- productId?: number;
262
- contactFirstName?: string;
263
- contactLastName?: string;
264
- contactEmail?: string;
265
- contactPhone?: string;
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
- streetAddress: z.ZodString;
409
- apartment: z.ZodOptional<z.ZodString>;
410
- city: z.ZodString;
411
- state: z.ZodString;
412
- postalCode: z.ZodString;
413
- country: z.ZodString;
414
- addressType: z.ZodOptional<z.ZodString>;
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
- country?: string;
418
- streetAddress?: string;
419
- apartment?: string;
437
+ line1?: string;
438
+ line2?: string;
420
439
  city?: string;
421
440
  postalCode?: string;
422
- addressType?: string;
441
+ countryCode?: string;
423
442
  }, {
443
+ type?: string;
424
444
  state?: string;
425
- country?: string;
426
- streetAddress?: string;
427
- apartment?: string;
445
+ line1?: string;
446
+ line2?: string;
428
447
  city?: string;
429
448
  postalCode?: string;
430
- addressType?: string;
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
- streetAddress: z.ZodString;
442
- apartment: z.ZodOptional<z.ZodString>;
443
- city: z.ZodString;
444
- state: z.ZodString;
445
- postalCode: z.ZodString;
446
- country: z.ZodString;
447
- addressType: z.ZodOptional<z.ZodString>;
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
- country?: string;
451
- streetAddress?: string;
452
- apartment?: string;
470
+ line1?: string;
471
+ line2?: string;
453
472
  city?: string;
454
473
  postalCode?: string;
455
- addressType?: string;
474
+ countryCode?: string;
456
475
  }, {
476
+ type?: string;
457
477
  state?: string;
458
- country?: string;
459
- streetAddress?: string;
460
- apartment?: string;
478
+ line1?: string;
479
+ line2?: string;
461
480
  city?: string;
462
481
  postalCode?: string;
463
- addressType?: string;
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
- country?: string;
470
- streetAddress?: string;
471
- apartment?: string;
489
+ line1?: string;
490
+ line2?: string;
472
491
  city?: string;
473
492
  postalCode?: string;
474
- addressType?: string;
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
- country?: string;
484
- streetAddress?: string;
485
- apartment?: string;
503
+ line1?: string;
504
+ line2?: string;
486
505
  city?: string;
487
506
  postalCode?: string;
488
- addressType?: string;
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
- legalName: z.ZodString;
162
- dbaName: z.ZodOptional<z.ZodString>;
163
- businessType: z.ZodString;
164
- taxId: z.ZodString;
165
- formationDate: z.ZodOptional<z.ZodString>;
166
- idType: z.ZodOptional<z.ZodString>;
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
- website: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
169
- email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
170
- mobilePhone: z.ZodOptional<z.ZodString>;
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
- achCompanyId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
174
- achCompanyName: z.ZodOptional<z.ZodString>;
175
- externalId: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
176
- productId: z.ZodOptional<z.ZodNumber>;
177
- contactFirstName: z.ZodOptional<z.ZodString>;
178
- contactLastName: z.ZodOptional<z.ZodString>;
179
- contactEmail: z.ZodOptional<z.ZodString>;
180
- contactPhone: z.ZodOptional<z.ZodString>;
181
- address: z.ZodObject<{
182
- streetAddress: z.ZodString;
183
- apartment: z.ZodOptional<z.ZodString>;
184
- city: z.ZodString;
185
- state: z.ZodString;
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
- country?: string;
192
- streetAddress?: string;
193
- apartment?: string;
189
+ line1?: string;
190
+ line2?: string;
194
191
  city?: string;
195
192
  postalCode?: string;
196
- addressType?: string;
193
+ countryCode?: string;
197
194
  }, {
195
+ type?: string;
198
196
  state?: string;
199
- country?: string;
200
- streetAddress?: string;
201
- apartment?: string;
197
+ line1?: string;
198
+ line2?: string;
202
199
  city?: string;
203
200
  postalCode?: string;
204
- addressType?: string;
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
- email?: string;
220
+ name?: string;
208
221
  address?: {
222
+ type?: string;
209
223
  state?: string;
210
- country?: string;
211
- streetAddress?: string;
212
- apartment?: string;
224
+ line1?: string;
225
+ line2?: string;
213
226
  city?: string;
214
227
  postalCode?: string;
215
- addressType?: string;
228
+ countryCode?: string;
216
229
  };
217
- legalName?: string;
218
- dbaName?: string;
219
- businessType?: string;
220
- taxId?: string;
221
230
  website?: string;
222
- formationDate?: string;
223
- idType?: string;
231
+ productId?: number;
232
+ businessIdType?: string;
233
+ idNumber?: string;
234
+ dba?: string;
235
+ businessEntityType?: string;
224
236
  incorporationState?: string;
225
- mobilePhone?: string;
237
+ formationDate?: string;
238
+ achCompanyId?: string;
226
239
  mcc?: string;
227
240
  naics?: string;
228
- achCompanyId?: string;
229
- achCompanyName?: string;
230
- externalId?: string;
231
- productId?: number;
232
- contactFirstName?: string;
233
- contactLastName?: string;
234
- contactEmail?: string;
235
- contactPhone?: string;
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
- email?: string;
253
+ name?: string;
238
254
  address?: {
255
+ type?: string;
239
256
  state?: string;
240
- country?: string;
241
- streetAddress?: string;
242
- apartment?: string;
257
+ line1?: string;
258
+ line2?: string;
243
259
  city?: string;
244
260
  postalCode?: string;
245
- addressType?: string;
261
+ countryCode?: string;
246
262
  };
247
- legalName?: string;
248
- dbaName?: string;
249
- businessType?: string;
250
- taxId?: string;
251
263
  website?: string;
252
- formationDate?: string;
253
- idType?: string;
264
+ productId?: number;
265
+ businessIdType?: string;
266
+ idNumber?: string;
267
+ dba?: string;
268
+ businessEntityType?: string;
254
269
  incorporationState?: string;
255
- mobilePhone?: string;
270
+ formationDate?: string;
271
+ achCompanyId?: string;
256
272
  mcc?: string;
257
273
  naics?: string;
258
- achCompanyId?: string;
259
- achCompanyName?: string;
260
- externalId?: string;
261
- productId?: number;
262
- contactFirstName?: string;
263
- contactLastName?: string;
264
- contactEmail?: string;
265
- contactPhone?: string;
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
- streetAddress: z.ZodString;
409
- apartment: z.ZodOptional<z.ZodString>;
410
- city: z.ZodString;
411
- state: z.ZodString;
412
- postalCode: z.ZodString;
413
- country: z.ZodString;
414
- addressType: z.ZodOptional<z.ZodString>;
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
- country?: string;
418
- streetAddress?: string;
419
- apartment?: string;
437
+ line1?: string;
438
+ line2?: string;
420
439
  city?: string;
421
440
  postalCode?: string;
422
- addressType?: string;
441
+ countryCode?: string;
423
442
  }, {
443
+ type?: string;
424
444
  state?: string;
425
- country?: string;
426
- streetAddress?: string;
427
- apartment?: string;
445
+ line1?: string;
446
+ line2?: string;
428
447
  city?: string;
429
448
  postalCode?: string;
430
- addressType?: string;
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
- streetAddress: z.ZodString;
442
- apartment: z.ZodOptional<z.ZodString>;
443
- city: z.ZodString;
444
- state: z.ZodString;
445
- postalCode: z.ZodString;
446
- country: z.ZodString;
447
- addressType: z.ZodOptional<z.ZodString>;
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
- country?: string;
451
- streetAddress?: string;
452
- apartment?: string;
470
+ line1?: string;
471
+ line2?: string;
453
472
  city?: string;
454
473
  postalCode?: string;
455
- addressType?: string;
474
+ countryCode?: string;
456
475
  }, {
476
+ type?: string;
457
477
  state?: string;
458
- country?: string;
459
- streetAddress?: string;
460
- apartment?: string;
478
+ line1?: string;
479
+ line2?: string;
461
480
  city?: string;
462
481
  postalCode?: string;
463
- addressType?: string;
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
- country?: string;
470
- streetAddress?: string;
471
- apartment?: string;
489
+ line1?: string;
490
+ line2?: string;
472
491
  city?: string;
473
492
  postalCode?: string;
474
- addressType?: string;
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
- country?: string;
484
- streetAddress?: string;
485
- apartment?: string;
503
+ line1?: string;
504
+ line2?: string;
486
505
  city?: string;
487
506
  postalCode?: string;
488
- addressType?: string;
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