@wf-financing/ui-assets 1.2.1 → 1.2.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.
@@ -1,7 +1,50 @@
1
1
  import { z } from 'zod';
2
+ import { GenericOffer } from './genericOffer';
3
+ import { IndicativeOffer } from './indicativeOffer';
4
+ import { CompleteApplication } from './completeApplication.ts';
5
+ import { CompleteKyc } from './completeKyc.ts';
6
+ import { SelectOffer } from './selectOffer.ts';
7
+ import { SignContract } from './signContract';
8
+ import { ConsentModal } from './consentModal';
9
+ import { PartnerTemplate } from './partnerTemplate';
10
+ import { ProvideAdditionalInfo } from './provideAdditionalInfo';
11
+ import { SlideoutPanel, ContactDetailsScreen, UserConsentScreen, CountryOfIncorporationScreen, EmailAlreadyRegisteredScreen, StateProvinceScreen, CompanyDetailsScreen, MonthlyRevenueScreen, BusinessDetails, BusinessModelScreen, NotInYourCountryYetScreen, NotInYourCountryYetConfirmationScreen, IneligibleCountryScreen, BusinessAlreadyOnWayflyerScreen, HandoverToWayflyerScreen } from './journeyScreens';
2
12
 
3
- export declare const CopyBundleSchema: z.ZodObject<{
4
- genericOffer: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
13
+ type CohortMapOf<T> = {
14
+ default: T;
15
+ } & Record<string, T>;
16
+ type LanguageMapOf<T> = {
17
+ en: CohortMapOf<T>;
18
+ } & Record<string, CohortMapOf<T>>;
19
+ export interface CopyBundle {
20
+ genericOffer: LanguageMapOf<GenericOffer>;
21
+ indicativeOffer: LanguageMapOf<IndicativeOffer>;
22
+ consentModal: LanguageMapOf<ConsentModal>;
23
+ completeApplication: LanguageMapOf<CompleteApplication>;
24
+ completeKyc: LanguageMapOf<CompleteKyc>;
25
+ signContract: LanguageMapOf<SignContract>;
26
+ selectOffer: LanguageMapOf<SelectOffer>;
27
+ provideAdditionalInfo: LanguageMapOf<ProvideAdditionalInfo>;
28
+ partnerTemplate?: LanguageMapOf<PartnerTemplate>;
29
+ slideoutPanel?: LanguageMapOf<SlideoutPanel>;
30
+ contactDetailsScreen?: LanguageMapOf<ContactDetailsScreen>;
31
+ userConsentScreen?: LanguageMapOf<UserConsentScreen>;
32
+ countryOfIncorporationScreen?: LanguageMapOf<CountryOfIncorporationScreen>;
33
+ emailAlreadyRegisteredScreen?: LanguageMapOf<EmailAlreadyRegisteredScreen>;
34
+ stateProvinceScreen?: LanguageMapOf<StateProvinceScreen>;
35
+ companyDetailsScreen?: LanguageMapOf<CompanyDetailsScreen>;
36
+ monthlyRevenueScreen?: LanguageMapOf<MonthlyRevenueScreen>;
37
+ businessDetails?: LanguageMapOf<BusinessDetails>;
38
+ businessModelScreen?: LanguageMapOf<BusinessModelScreen>;
39
+ notInYourCountryYetScreen?: LanguageMapOf<NotInYourCountryYetScreen>;
40
+ notInYourCountryYetConfirmationScreen?: LanguageMapOf<NotInYourCountryYetConfirmationScreen>;
41
+ ineligibleCountryScreen?: LanguageMapOf<IneligibleCountryScreen>;
42
+ businessAlreadyOnWayflyerScreen?: LanguageMapOf<BusinessAlreadyOnWayflyerScreen>;
43
+ handoverToWayflyerScreen?: LanguageMapOf<HandoverToWayflyerScreen>;
44
+ }
45
+ export declare const CopyBundleSchema: z.ZodType<CopyBundle>;
46
+ export declare const CopySchema: z.ZodObject<{
47
+ genericOffer: z.ZodObject<{
5
48
  version: z.ZodString;
6
49
  language: z.ZodString;
7
50
  cohort: z.ZodString;
@@ -26,8 +69,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
26
69
  mainText: string;
27
70
  bulletPoints: string[];
28
71
  buttonText: string;
29
- }>>>;
30
- indicativeOffer: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
72
+ }>;
73
+ indicativeOffer: z.ZodObject<{
31
74
  version: z.ZodString;
32
75
  language: z.ZodString;
33
76
  cohort: z.ZodString;
@@ -52,8 +95,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
52
95
  mainText: string;
53
96
  bulletPoints: string[];
54
97
  buttonText: string;
55
- }>>>;
56
- consentModal: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
98
+ }>;
99
+ consentModal: z.ZodObject<{
57
100
  version: z.ZodString;
58
101
  language: z.ZodString;
59
102
  cohort: z.ZodString;
@@ -84,8 +127,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
84
127
  title: string;
85
128
  button: string;
86
129
  termsAndConditions: string;
87
- }>>>;
88
- completeApplication: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
130
+ }>;
131
+ completeApplication: z.ZodObject<{
89
132
  version: z.ZodString;
90
133
  language: z.ZodString;
91
134
  cohort: z.ZodString;
@@ -107,8 +150,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
107
150
  type: string;
108
151
  mainText: string;
109
152
  buttonText: string;
110
- }>>>;
111
- completeKyc: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
153
+ }>;
154
+ completeKyc: z.ZodObject<{
112
155
  version: z.ZodString;
113
156
  language: z.ZodString;
114
157
  cohort: z.ZodString;
@@ -130,8 +173,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
130
173
  type: string;
131
174
  mainText: string;
132
175
  buttonText: string;
133
- }>>>;
134
- signContract: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
176
+ }>;
177
+ signContract: z.ZodObject<{
135
178
  version: z.ZodString;
136
179
  language: z.ZodString;
137
180
  cohort: z.ZodString;
@@ -153,8 +196,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
153
196
  type: string;
154
197
  mainText: string;
155
198
  buttonText: string;
156
- }>>>;
157
- selectOffer: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
199
+ }>;
200
+ selectOffer: z.ZodObject<{
158
201
  version: z.ZodString;
159
202
  language: z.ZodString;
160
203
  cohort: z.ZodString;
@@ -176,8 +219,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
176
219
  type: string;
177
220
  mainText: string;
178
221
  buttonText: string;
179
- }>>>;
180
- provideAdditionalInfo: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
222
+ }>;
223
+ provideAdditionalInfo: z.ZodObject<{
181
224
  version: z.ZodString;
182
225
  language: z.ZodString;
183
226
  cohort: z.ZodString;
@@ -199,8 +242,8 @@ export declare const CopyBundleSchema: z.ZodObject<{
199
242
  type: string;
200
243
  mainText: string;
201
244
  buttonText: string;
202
- }>>>;
203
- partnerTemplate: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
245
+ }>;
246
+ partnerTemplate: z.ZodOptional<z.ZodObject<{
204
247
  version: z.ZodString;
205
248
  language: z.ZodString;
206
249
  cohort: z.ZodString;
@@ -219,382 +262,1794 @@ export declare const CopyBundleSchema: z.ZodObject<{
219
262
  cohort: string;
220
263
  type: string;
221
264
  partnerLogoUrl: string;
222
- }>>>>;
223
- }, "strip", z.ZodTypeAny, {
224
- genericOffer: Record<string, Record<string, {
225
- version: string;
226
- language: string;
227
- cohort: string;
228
- type: string;
229
- mainText: string;
230
- bulletPoints: string[];
231
- buttonText: string;
232
265
  }>>;
233
- indicativeOffer: Record<string, Record<string, {
234
- version: string;
235
- language: string;
236
- cohort: string;
237
- type: string;
238
- mainText: string;
239
- bulletPoints: string[];
240
- buttonText: string;
241
- }>>;
242
- consentModal: Record<string, Record<string, {
243
- version: string;
244
- language: string;
245
- cohort: string;
246
- type: string;
247
- bulletPoints: string[];
248
- logoUrl: string;
249
- title: string;
250
- button: string;
251
- termsAndConditions: string;
252
- }>>;
253
- completeApplication: Record<string, Record<string, {
254
- version: string;
255
- language: string;
256
- cohort: string;
257
- type: string;
258
- mainText: string;
259
- buttonText: string;
260
- }>>;
261
- completeKyc: Record<string, Record<string, {
262
- version: string;
263
- language: string;
264
- cohort: string;
265
- type: string;
266
- mainText: string;
267
- buttonText: string;
268
- }>>;
269
- signContract: Record<string, Record<string, {
270
- version: string;
271
- language: string;
272
- cohort: string;
273
- type: string;
274
- mainText: string;
275
- buttonText: string;
276
- }>>;
277
- selectOffer: Record<string, Record<string, {
266
+ slideoutPanel: z.ZodObject<{
267
+ version: z.ZodString;
268
+ language: z.ZodString;
269
+ cohort: z.ZodString;
270
+ type: z.ZodString;
271
+ } & {
272
+ header: z.ZodString;
273
+ secondaryAction: z.ZodString;
274
+ }, "strip", z.ZodTypeAny, {
278
275
  version: string;
279
276
  language: string;
280
277
  cohort: string;
281
278
  type: string;
282
- mainText: string;
283
- buttonText: string;
284
- }>>;
285
- provideAdditionalInfo: Record<string, Record<string, {
279
+ header: string;
280
+ secondaryAction: string;
281
+ }, {
286
282
  version: string;
287
283
  language: string;
288
284
  cohort: string;
289
285
  type: string;
290
- mainText: string;
291
- buttonText: string;
292
- }>>;
293
- partnerTemplate?: Record<string, Record<string, {
286
+ header: string;
287
+ secondaryAction: string;
288
+ }>;
289
+ contactDetailsScreen: z.ZodObject<{
290
+ version: z.ZodString;
291
+ language: z.ZodString;
292
+ cohort: z.ZodString;
293
+ type: z.ZodString;
294
+ } & {
295
+ header: z.ZodString;
296
+ text: z.ZodString;
297
+ email: z.ZodObject<{
298
+ label: z.ZodString;
299
+ }, "strip", z.ZodTypeAny, {
300
+ label: string;
301
+ }, {
302
+ label: string;
303
+ }>;
304
+ phoneNumberInput: z.ZodObject<{
305
+ label: z.ZodString;
306
+ }, "strip", z.ZodTypeAny, {
307
+ label: string;
308
+ }, {
309
+ label: string;
310
+ }>;
311
+ primaryAction: z.ZodObject<{
312
+ label: z.ZodString;
313
+ accessibilityLabel: z.ZodString;
314
+ }, "strip", z.ZodTypeAny, {
315
+ label: string;
316
+ accessibilityLabel: string;
317
+ }, {
318
+ label: string;
319
+ accessibilityLabel: string;
320
+ }>;
321
+ submitError: z.ZodObject<{
322
+ headline: z.ZodString;
323
+ textBeforeLink: z.ZodString;
324
+ contactSupportLinkText: z.ZodString;
325
+ contactSupportUrl: z.ZodString;
326
+ textAfterLink: z.ZodString;
327
+ }, "strip", z.ZodTypeAny, {
328
+ headline: string;
329
+ textBeforeLink: string;
330
+ contactSupportLinkText: string;
331
+ contactSupportUrl: string;
332
+ textAfterLink: string;
333
+ }, {
334
+ headline: string;
335
+ textBeforeLink: string;
336
+ contactSupportLinkText: string;
337
+ contactSupportUrl: string;
338
+ textAfterLink: string;
339
+ }>;
340
+ changeLimitReached: z.ZodObject<{
341
+ headline: z.ZodString;
342
+ textBeforeLink: z.ZodString;
343
+ contactSupportLinkText: z.ZodString;
344
+ contactSupportUrl: z.ZodString;
345
+ textAfterLink: z.ZodString;
346
+ }, "strip", z.ZodTypeAny, {
347
+ headline: string;
348
+ textBeforeLink: string;
349
+ contactSupportLinkText: string;
350
+ contactSupportUrl: string;
351
+ textAfterLink: string;
352
+ }, {
353
+ headline: string;
354
+ textBeforeLink: string;
355
+ contactSupportLinkText: string;
356
+ contactSupportUrl: string;
357
+ textAfterLink: string;
358
+ }>;
359
+ }, "strip", z.ZodTypeAny, {
294
360
  version: string;
295
361
  language: string;
296
362
  cohort: string;
297
363
  type: string;
298
- partnerLogoUrl: string;
299
- }>> | undefined;
300
- }, {
301
- genericOffer: Record<string, Record<string, {
364
+ header: string;
365
+ text: string;
366
+ email: {
367
+ label: string;
368
+ };
369
+ phoneNumberInput: {
370
+ label: string;
371
+ };
372
+ primaryAction: {
373
+ label: string;
374
+ accessibilityLabel: string;
375
+ };
376
+ submitError: {
377
+ headline: string;
378
+ textBeforeLink: string;
379
+ contactSupportLinkText: string;
380
+ contactSupportUrl: string;
381
+ textAfterLink: string;
382
+ };
383
+ changeLimitReached: {
384
+ headline: string;
385
+ textBeforeLink: string;
386
+ contactSupportLinkText: string;
387
+ contactSupportUrl: string;
388
+ textAfterLink: string;
389
+ };
390
+ }, {
302
391
  version: string;
303
392
  language: string;
304
393
  cohort: string;
305
394
  type: string;
306
- mainText: string;
307
- bulletPoints: string[];
308
- buttonText: string;
309
- }>>;
310
- indicativeOffer: Record<string, Record<string, {
395
+ header: string;
396
+ text: string;
397
+ email: {
398
+ label: string;
399
+ };
400
+ phoneNumberInput: {
401
+ label: string;
402
+ };
403
+ primaryAction: {
404
+ label: string;
405
+ accessibilityLabel: string;
406
+ };
407
+ submitError: {
408
+ headline: string;
409
+ textBeforeLink: string;
410
+ contactSupportLinkText: string;
411
+ contactSupportUrl: string;
412
+ textAfterLink: string;
413
+ };
414
+ changeLimitReached: {
415
+ headline: string;
416
+ textBeforeLink: string;
417
+ contactSupportLinkText: string;
418
+ contactSupportUrl: string;
419
+ textAfterLink: string;
420
+ };
421
+ }>;
422
+ userConsentScreen: z.ZodObject<{
423
+ version: z.ZodString;
424
+ language: z.ZodString;
425
+ cohort: z.ZodString;
426
+ type: z.ZodString;
427
+ } & {
428
+ genericOfferHeader: z.ZodString;
429
+ indicativeOfferHeader: z.ZodString;
430
+ bulletPoints: z.ZodObject<{
431
+ bulletOne: z.ZodString;
432
+ bulletTwo: z.ZodString;
433
+ bulletThree: z.ZodString;
434
+ bulletFour: z.ZodString;
435
+ wayflyerAboutUsUrl: z.ZodString;
436
+ }, "strip", z.ZodTypeAny, {
437
+ bulletOne: string;
438
+ bulletTwo: string;
439
+ bulletThree: string;
440
+ bulletFour: string;
441
+ wayflyerAboutUsUrl: string;
442
+ }, {
443
+ bulletOne: string;
444
+ bulletTwo: string;
445
+ bulletThree: string;
446
+ bulletFour: string;
447
+ wayflyerAboutUsUrl: string;
448
+ }>;
449
+ alreadyHaveAnAccount: z.ZodObject<{
450
+ alreadyHaveAnAccountText: z.ZodString;
451
+ wayflyerSignInUrl: z.ZodString;
452
+ }, "strip", z.ZodTypeAny, {
453
+ alreadyHaveAnAccountText: string;
454
+ wayflyerSignInUrl: string;
455
+ }, {
456
+ alreadyHaveAnAccountText: string;
457
+ wayflyerSignInUrl: string;
458
+ }>;
459
+ consentNotice: z.ZodString;
460
+ primaryAction: z.ZodObject<{
461
+ label: z.ZodString;
462
+ accessibilityLabel: z.ZodString;
463
+ }, "strip", z.ZodTypeAny, {
464
+ label: string;
465
+ accessibilityLabel: string;
466
+ }, {
467
+ label: string;
468
+ accessibilityLabel: string;
469
+ }>;
470
+ startError: z.ZodObject<{
471
+ headline: z.ZodString;
472
+ textBeforeLink: z.ZodString;
473
+ contactSupportLinkText: z.ZodString;
474
+ contactSupportUrl: z.ZodString;
475
+ textAfterLink: z.ZodString;
476
+ }, "strip", z.ZodTypeAny, {
477
+ headline: string;
478
+ textBeforeLink: string;
479
+ contactSupportLinkText: string;
480
+ contactSupportUrl: string;
481
+ textAfterLink: string;
482
+ }, {
483
+ headline: string;
484
+ textBeforeLink: string;
485
+ contactSupportLinkText: string;
486
+ contactSupportUrl: string;
487
+ textAfterLink: string;
488
+ }>;
489
+ }, "strip", z.ZodTypeAny, {
311
490
  version: string;
312
491
  language: string;
313
492
  cohort: string;
314
493
  type: string;
315
- mainText: string;
316
- bulletPoints: string[];
317
- buttonText: string;
318
- }>>;
319
- consentModal: Record<string, Record<string, {
494
+ bulletPoints: {
495
+ bulletOne: string;
496
+ bulletTwo: string;
497
+ bulletThree: string;
498
+ bulletFour: string;
499
+ wayflyerAboutUsUrl: string;
500
+ };
501
+ primaryAction: {
502
+ label: string;
503
+ accessibilityLabel: string;
504
+ };
505
+ genericOfferHeader: string;
506
+ indicativeOfferHeader: string;
507
+ alreadyHaveAnAccount: {
508
+ alreadyHaveAnAccountText: string;
509
+ wayflyerSignInUrl: string;
510
+ };
511
+ consentNotice: string;
512
+ startError: {
513
+ headline: string;
514
+ textBeforeLink: string;
515
+ contactSupportLinkText: string;
516
+ contactSupportUrl: string;
517
+ textAfterLink: string;
518
+ };
519
+ }, {
320
520
  version: string;
321
521
  language: string;
322
522
  cohort: string;
323
523
  type: string;
324
- bulletPoints: string[];
325
- logoUrl: string;
326
- title: string;
327
- button: string;
328
- termsAndConditions: string;
329
- }>>;
330
- completeApplication: Record<string, Record<string, {
524
+ bulletPoints: {
525
+ bulletOne: string;
526
+ bulletTwo: string;
527
+ bulletThree: string;
528
+ bulletFour: string;
529
+ wayflyerAboutUsUrl: string;
530
+ };
531
+ primaryAction: {
532
+ label: string;
533
+ accessibilityLabel: string;
534
+ };
535
+ genericOfferHeader: string;
536
+ indicativeOfferHeader: string;
537
+ alreadyHaveAnAccount: {
538
+ alreadyHaveAnAccountText: string;
539
+ wayflyerSignInUrl: string;
540
+ };
541
+ consentNotice: string;
542
+ startError: {
543
+ headline: string;
544
+ textBeforeLink: string;
545
+ contactSupportLinkText: string;
546
+ contactSupportUrl: string;
547
+ textAfterLink: string;
548
+ };
549
+ }>;
550
+ countryOfIncorporationScreen: z.ZodObject<{
551
+ version: z.ZodString;
552
+ language: z.ZodString;
553
+ cohort: z.ZodString;
554
+ type: z.ZodString;
555
+ } & {
556
+ header: z.ZodString;
557
+ text: z.ZodString;
558
+ checkboxes: z.ZodObject<{
559
+ agreedOnApplicationServicesUpdateNews: z.ZodObject<{
560
+ label: z.ZodString;
561
+ }, "strip", z.ZodTypeAny, {
562
+ label: string;
563
+ }, {
564
+ label: string;
565
+ }>;
566
+ agreedWithTermsAndCondition: z.ZodObject<{
567
+ label: z.ZodObject<{
568
+ textOne: z.ZodString;
569
+ textTwo: z.ZodString;
570
+ wayflyerTermsAndConditionsUrl: z.ZodString;
571
+ wayflyerPrivacyPolicyUrl: z.ZodString;
572
+ }, "strip", z.ZodTypeAny, {
573
+ textOne: string;
574
+ textTwo: string;
575
+ wayflyerTermsAndConditionsUrl: string;
576
+ wayflyerPrivacyPolicyUrl: string;
577
+ }, {
578
+ textOne: string;
579
+ textTwo: string;
580
+ wayflyerTermsAndConditionsUrl: string;
581
+ wayflyerPrivacyPolicyUrl: string;
582
+ }>;
583
+ error: z.ZodString;
584
+ }, "strip", z.ZodTypeAny, {
585
+ label: {
586
+ textOne: string;
587
+ textTwo: string;
588
+ wayflyerTermsAndConditionsUrl: string;
589
+ wayflyerPrivacyPolicyUrl: string;
590
+ };
591
+ error: string;
592
+ }, {
593
+ label: {
594
+ textOne: string;
595
+ textTwo: string;
596
+ wayflyerTermsAndConditionsUrl: string;
597
+ wayflyerPrivacyPolicyUrl: string;
598
+ };
599
+ error: string;
600
+ }>;
601
+ }, "strip", z.ZodTypeAny, {
602
+ agreedOnApplicationServicesUpdateNews: {
603
+ label: string;
604
+ };
605
+ agreedWithTermsAndCondition: {
606
+ label: {
607
+ textOne: string;
608
+ textTwo: string;
609
+ wayflyerTermsAndConditionsUrl: string;
610
+ wayflyerPrivacyPolicyUrl: string;
611
+ };
612
+ error: string;
613
+ };
614
+ }, {
615
+ agreedOnApplicationServicesUpdateNews: {
616
+ label: string;
617
+ };
618
+ agreedWithTermsAndCondition: {
619
+ label: {
620
+ textOne: string;
621
+ textTwo: string;
622
+ wayflyerTermsAndConditionsUrl: string;
623
+ wayflyerPrivacyPolicyUrl: string;
624
+ };
625
+ error: string;
626
+ };
627
+ }>;
628
+ cantSeeYourCountryBlock: z.ZodObject<{
629
+ head: z.ZodString;
630
+ textOne: z.ZodString;
631
+ textTwo: z.ZodString;
632
+ wayflyerGetInTouchUrl: z.ZodString;
633
+ wayflyerHelpCenterUrl: z.ZodString;
634
+ }, "strip", z.ZodTypeAny, {
635
+ textOne: string;
636
+ textTwo: string;
637
+ head: string;
638
+ wayflyerGetInTouchUrl: string;
639
+ wayflyerHelpCenterUrl: string;
640
+ }, {
641
+ textOne: string;
642
+ textTwo: string;
643
+ head: string;
644
+ wayflyerGetInTouchUrl: string;
645
+ wayflyerHelpCenterUrl: string;
646
+ }>;
647
+ primaryAction: z.ZodObject<{
648
+ label: z.ZodString;
649
+ accessibilityLabel: z.ZodString;
650
+ }, "strip", z.ZodTypeAny, {
651
+ label: string;
652
+ accessibilityLabel: string;
653
+ }, {
654
+ label: string;
655
+ accessibilityLabel: string;
656
+ }>;
657
+ }, "strip", z.ZodTypeAny, {
331
658
  version: string;
332
659
  language: string;
333
660
  cohort: string;
334
661
  type: string;
335
- mainText: string;
336
- buttonText: string;
337
- }>>;
338
- completeKyc: Record<string, Record<string, {
662
+ header: string;
663
+ text: string;
664
+ primaryAction: {
665
+ label: string;
666
+ accessibilityLabel: string;
667
+ };
668
+ checkboxes: {
669
+ agreedOnApplicationServicesUpdateNews: {
670
+ label: string;
671
+ };
672
+ agreedWithTermsAndCondition: {
673
+ label: {
674
+ textOne: string;
675
+ textTwo: string;
676
+ wayflyerTermsAndConditionsUrl: string;
677
+ wayflyerPrivacyPolicyUrl: string;
678
+ };
679
+ error: string;
680
+ };
681
+ };
682
+ cantSeeYourCountryBlock: {
683
+ textOne: string;
684
+ textTwo: string;
685
+ head: string;
686
+ wayflyerGetInTouchUrl: string;
687
+ wayflyerHelpCenterUrl: string;
688
+ };
689
+ }, {
339
690
  version: string;
340
691
  language: string;
341
692
  cohort: string;
342
693
  type: string;
343
- mainText: string;
344
- buttonText: string;
345
- }>>;
346
- signContract: Record<string, Record<string, {
694
+ header: string;
695
+ text: string;
696
+ primaryAction: {
697
+ label: string;
698
+ accessibilityLabel: string;
699
+ };
700
+ checkboxes: {
701
+ agreedOnApplicationServicesUpdateNews: {
702
+ label: string;
703
+ };
704
+ agreedWithTermsAndCondition: {
705
+ label: {
706
+ textOne: string;
707
+ textTwo: string;
708
+ wayflyerTermsAndConditionsUrl: string;
709
+ wayflyerPrivacyPolicyUrl: string;
710
+ };
711
+ error: string;
712
+ };
713
+ };
714
+ cantSeeYourCountryBlock: {
715
+ textOne: string;
716
+ textTwo: string;
717
+ head: string;
718
+ wayflyerGetInTouchUrl: string;
719
+ wayflyerHelpCenterUrl: string;
720
+ };
721
+ }>;
722
+ emailAlreadyRegisteredScreen: z.ZodObject<{
723
+ version: z.ZodString;
724
+ language: z.ZodString;
725
+ cohort: z.ZodString;
726
+ type: z.ZodString;
727
+ } & {
728
+ header: z.ZodString;
729
+ body: z.ZodObject<{
730
+ textOne: z.ZodString;
731
+ supportTeamLink: z.ZodString;
732
+ supportTeamUrl: z.ZodString;
733
+ textTwo: z.ZodString;
734
+ }, "strip", z.ZodTypeAny, {
735
+ textOne: string;
736
+ textTwo: string;
737
+ supportTeamLink: string;
738
+ supportTeamUrl: string;
739
+ }, {
740
+ textOne: string;
741
+ textTwo: string;
742
+ supportTeamLink: string;
743
+ supportTeamUrl: string;
744
+ }>;
745
+ primaryAction: z.ZodObject<{
746
+ label: z.ZodString;
747
+ accessibilityLabel: z.ZodString;
748
+ } & {
749
+ url: z.ZodString;
750
+ }, "strip", z.ZodTypeAny, {
751
+ label: string;
752
+ accessibilityLabel: string;
753
+ url: string;
754
+ }, {
755
+ label: string;
756
+ accessibilityLabel: string;
757
+ url: string;
758
+ }>;
759
+ }, "strip", z.ZodTypeAny, {
347
760
  version: string;
348
761
  language: string;
349
762
  cohort: string;
350
763
  type: string;
351
- mainText: string;
352
- buttonText: string;
353
- }>>;
354
- selectOffer: Record<string, Record<string, {
764
+ header: string;
765
+ primaryAction: {
766
+ label: string;
767
+ accessibilityLabel: string;
768
+ url: string;
769
+ };
770
+ body: {
771
+ textOne: string;
772
+ textTwo: string;
773
+ supportTeamLink: string;
774
+ supportTeamUrl: string;
775
+ };
776
+ }, {
355
777
  version: string;
356
778
  language: string;
357
779
  cohort: string;
358
780
  type: string;
359
- mainText: string;
360
- buttonText: string;
361
- }>>;
362
- provideAdditionalInfo: Record<string, Record<string, {
781
+ header: string;
782
+ primaryAction: {
783
+ label: string;
784
+ accessibilityLabel: string;
785
+ url: string;
786
+ };
787
+ body: {
788
+ textOne: string;
789
+ textTwo: string;
790
+ supportTeamLink: string;
791
+ supportTeamUrl: string;
792
+ };
793
+ }>;
794
+ stateProvinceScreen: z.ZodObject<{
795
+ version: z.ZodString;
796
+ language: z.ZodString;
797
+ cohort: z.ZodString;
798
+ type: z.ZodString;
799
+ } & {
800
+ headerUS: z.ZodString;
801
+ headerCA: z.ZodString;
802
+ subHeader: z.ZodString;
803
+ incorporationHelperText: z.ZodString;
804
+ stateField: z.ZodObject<{
805
+ label: z.ZodString;
806
+ placeholder: z.ZodString;
807
+ searchPlaceholder: z.ZodString;
808
+ }, "strip", z.ZodTypeAny, {
809
+ label: string;
810
+ placeholder: string;
811
+ searchPlaceholder: string;
812
+ }, {
813
+ label: string;
814
+ placeholder: string;
815
+ searchPlaceholder: string;
816
+ }>;
817
+ provinceField: z.ZodObject<{
818
+ label: z.ZodString;
819
+ placeholder: z.ZodString;
820
+ searchPlaceholder: z.ZodString;
821
+ }, "strip", z.ZodTypeAny, {
822
+ label: string;
823
+ placeholder: string;
824
+ searchPlaceholder: string;
825
+ }, {
826
+ label: string;
827
+ placeholder: string;
828
+ searchPlaceholder: string;
829
+ }>;
830
+ pobField: z.ZodObject<{
831
+ label: z.ZodString;
832
+ placeholder: z.ZodString;
833
+ searchPlaceholder: z.ZodString;
834
+ helperText: z.ZodString;
835
+ }, "strip", z.ZodTypeAny, {
836
+ label: string;
837
+ placeholder: string;
838
+ searchPlaceholder: string;
839
+ helperText: string;
840
+ }, {
841
+ label: string;
842
+ placeholder: string;
843
+ searchPlaceholder: string;
844
+ helperText: string;
845
+ }>;
846
+ primaryAction: z.ZodObject<{
847
+ label: z.ZodString;
848
+ accessibilityLabel: z.ZodString;
849
+ }, "strip", z.ZodTypeAny, {
850
+ label: string;
851
+ accessibilityLabel: string;
852
+ }, {
853
+ label: string;
854
+ accessibilityLabel: string;
855
+ }>;
856
+ }, "strip", z.ZodTypeAny, {
363
857
  version: string;
364
858
  language: string;
365
859
  cohort: string;
366
860
  type: string;
367
- mainText: string;
368
- buttonText: string;
369
- }>>;
370
- partnerTemplate?: Record<string, Record<string, {
861
+ primaryAction: {
862
+ label: string;
863
+ accessibilityLabel: string;
864
+ };
865
+ headerUS: string;
866
+ headerCA: string;
867
+ subHeader: string;
868
+ incorporationHelperText: string;
869
+ stateField: {
870
+ label: string;
871
+ placeholder: string;
872
+ searchPlaceholder: string;
873
+ };
874
+ provinceField: {
875
+ label: string;
876
+ placeholder: string;
877
+ searchPlaceholder: string;
878
+ };
879
+ pobField: {
880
+ label: string;
881
+ placeholder: string;
882
+ searchPlaceholder: string;
883
+ helperText: string;
884
+ };
885
+ }, {
371
886
  version: string;
372
887
  language: string;
373
888
  cohort: string;
374
889
  type: string;
375
- partnerLogoUrl: string;
376
- }>> | undefined;
377
- }>;
378
- export declare const CopySchema: z.ZodObject<{
379
- genericOffer: z.ZodObject<{
890
+ primaryAction: {
891
+ label: string;
892
+ accessibilityLabel: string;
893
+ };
894
+ headerUS: string;
895
+ headerCA: string;
896
+ subHeader: string;
897
+ incorporationHelperText: string;
898
+ stateField: {
899
+ label: string;
900
+ placeholder: string;
901
+ searchPlaceholder: string;
902
+ };
903
+ provinceField: {
904
+ label: string;
905
+ placeholder: string;
906
+ searchPlaceholder: string;
907
+ };
908
+ pobField: {
909
+ label: string;
910
+ placeholder: string;
911
+ searchPlaceholder: string;
912
+ helperText: string;
913
+ };
914
+ }>;
915
+ companyDetailsScreen: z.ZodObject<{
380
916
  version: z.ZodString;
381
917
  language: z.ZodString;
382
918
  cohort: z.ZodString;
383
919
  type: z.ZodString;
384
920
  } & {
385
- mainText: z.ZodString;
386
- bulletPoints: z.ZodArray<z.ZodString, "many">;
387
- buttonText: z.ZodString;
921
+ header: z.ZodString;
922
+ text: z.ZodString;
923
+ primaryAction: z.ZodObject<{
924
+ label: z.ZodString;
925
+ accessibilityLabel: z.ZodString;
926
+ }, "strip", z.ZodTypeAny, {
927
+ label: string;
928
+ accessibilityLabel: string;
929
+ }, {
930
+ label: string;
931
+ accessibilityLabel: string;
932
+ }>;
388
933
  }, "strip", z.ZodTypeAny, {
389
934
  version: string;
390
935
  language: string;
391
936
  cohort: string;
392
937
  type: string;
393
- mainText: string;
394
- bulletPoints: string[];
395
- buttonText: string;
938
+ header: string;
939
+ text: string;
940
+ primaryAction: {
941
+ label: string;
942
+ accessibilityLabel: string;
943
+ };
396
944
  }, {
397
945
  version: string;
398
946
  language: string;
399
947
  cohort: string;
400
948
  type: string;
401
- mainText: string;
402
- bulletPoints: string[];
403
- buttonText: string;
949
+ header: string;
950
+ text: string;
951
+ primaryAction: {
952
+ label: string;
953
+ accessibilityLabel: string;
954
+ };
404
955
  }>;
405
- indicativeOffer: z.ZodObject<{
956
+ monthlyRevenueScreen: z.ZodObject<{
406
957
  version: z.ZodString;
407
958
  language: z.ZodString;
408
959
  cohort: z.ZodString;
409
960
  type: z.ZodString;
410
961
  } & {
411
- mainText: z.ZodEffects<z.ZodString, string, string>;
412
- bulletPoints: z.ZodArray<z.ZodString, "many">;
413
- buttonText: z.ZodString;
962
+ header: z.ZodString;
963
+ text: z.ZodString;
964
+ revenueSlider: z.ZodObject<{
965
+ label: z.ZodString;
966
+ }, "strip", z.ZodTypeAny, {
967
+ label: string;
968
+ }, {
969
+ label: string;
970
+ }>;
971
+ helperTextsBlock: z.ZodObject<{
972
+ initialMessage: z.ZodString;
973
+ doNotMeetRequirements: z.ZodString;
974
+ lowRevenueCheckbox: z.ZodObject<{
975
+ label: z.ZodString;
976
+ errorMessage: z.ZodString;
977
+ }, "strip", z.ZodTypeAny, {
978
+ label: string;
979
+ errorMessage: string;
980
+ }, {
981
+ label: string;
982
+ errorMessage: string;
983
+ }>;
984
+ }, "strip", z.ZodTypeAny, {
985
+ initialMessage: string;
986
+ doNotMeetRequirements: string;
987
+ lowRevenueCheckbox: {
988
+ label: string;
989
+ errorMessage: string;
990
+ };
991
+ }, {
992
+ initialMessage: string;
993
+ doNotMeetRequirements: string;
994
+ lowRevenueCheckbox: {
995
+ label: string;
996
+ errorMessage: string;
997
+ };
998
+ }>;
999
+ eligibilityHelperText: z.ZodObject<{
1000
+ defaultText: z.ZodObject<{
1001
+ textOne: z.ZodString;
1002
+ boldText: z.ZodString;
1003
+ textTwo: z.ZodString;
1004
+ }, "strip", z.ZodTypeAny, {
1005
+ textOne: string;
1006
+ textTwo: string;
1007
+ boldText: string;
1008
+ }, {
1009
+ textOne: string;
1010
+ textTwo: string;
1011
+ boldText: string;
1012
+ }>;
1013
+ highEligibilityText: z.ZodObject<{
1014
+ textOne: z.ZodString;
1015
+ boldText: z.ZodString;
1016
+ textTwo: z.ZodString;
1017
+ }, "strip", z.ZodTypeAny, {
1018
+ textOne: string;
1019
+ textTwo: string;
1020
+ boldText: string;
1021
+ }, {
1022
+ textOne: string;
1023
+ textTwo: string;
1024
+ boldText: string;
1025
+ }>;
1026
+ }, "strip", z.ZodTypeAny, {
1027
+ defaultText: {
1028
+ textOne: string;
1029
+ textTwo: string;
1030
+ boldText: string;
1031
+ };
1032
+ highEligibilityText: {
1033
+ textOne: string;
1034
+ textTwo: string;
1035
+ boldText: string;
1036
+ };
1037
+ }, {
1038
+ defaultText: {
1039
+ textOne: string;
1040
+ textTwo: string;
1041
+ boldText: string;
1042
+ };
1043
+ highEligibilityText: {
1044
+ textOne: string;
1045
+ textTwo: string;
1046
+ boldText: string;
1047
+ };
1048
+ }>;
1049
+ primaryAction: z.ZodObject<{
1050
+ label: z.ZodString;
1051
+ accessibilityLabel: z.ZodString;
1052
+ }, "strip", z.ZodTypeAny, {
1053
+ label: string;
1054
+ accessibilityLabel: string;
1055
+ }, {
1056
+ label: string;
1057
+ accessibilityLabel: string;
1058
+ }>;
414
1059
  }, "strip", z.ZodTypeAny, {
415
1060
  version: string;
416
1061
  language: string;
417
1062
  cohort: string;
418
1063
  type: string;
419
- mainText: string;
420
- bulletPoints: string[];
421
- buttonText: string;
1064
+ header: string;
1065
+ text: string;
1066
+ primaryAction: {
1067
+ label: string;
1068
+ accessibilityLabel: string;
1069
+ };
1070
+ revenueSlider: {
1071
+ label: string;
1072
+ };
1073
+ helperTextsBlock: {
1074
+ initialMessage: string;
1075
+ doNotMeetRequirements: string;
1076
+ lowRevenueCheckbox: {
1077
+ label: string;
1078
+ errorMessage: string;
1079
+ };
1080
+ };
1081
+ eligibilityHelperText: {
1082
+ defaultText: {
1083
+ textOne: string;
1084
+ textTwo: string;
1085
+ boldText: string;
1086
+ };
1087
+ highEligibilityText: {
1088
+ textOne: string;
1089
+ textTwo: string;
1090
+ boldText: string;
1091
+ };
1092
+ };
422
1093
  }, {
423
1094
  version: string;
424
1095
  language: string;
425
1096
  cohort: string;
426
1097
  type: string;
427
- mainText: string;
428
- bulletPoints: string[];
429
- buttonText: string;
1098
+ header: string;
1099
+ text: string;
1100
+ primaryAction: {
1101
+ label: string;
1102
+ accessibilityLabel: string;
1103
+ };
1104
+ revenueSlider: {
1105
+ label: string;
1106
+ };
1107
+ helperTextsBlock: {
1108
+ initialMessage: string;
1109
+ doNotMeetRequirements: string;
1110
+ lowRevenueCheckbox: {
1111
+ label: string;
1112
+ errorMessage: string;
1113
+ };
1114
+ };
1115
+ eligibilityHelperText: {
1116
+ defaultText: {
1117
+ textOne: string;
1118
+ textTwo: string;
1119
+ boldText: string;
1120
+ };
1121
+ highEligibilityText: {
1122
+ textOne: string;
1123
+ textTwo: string;
1124
+ boldText: string;
1125
+ };
1126
+ };
430
1127
  }>;
431
- consentModal: z.ZodObject<{
1128
+ businessDetails: z.ZodObject<{
432
1129
  version: z.ZodString;
433
1130
  language: z.ZodString;
434
1131
  cohort: z.ZodString;
435
1132
  type: z.ZodString;
436
1133
  } & {
437
- logoUrl: z.ZodString;
438
- title: z.ZodString;
439
- bulletPoints: z.ZodArray<z.ZodString, "many">;
440
- button: z.ZodString;
441
- termsAndConditions: z.ZodEffects<z.ZodString, string, string>;
1134
+ header: z.ZodString;
1135
+ text: z.ZodString;
1136
+ businessSearchInput: z.ZodObject<{
1137
+ label: z.ZodString;
1138
+ placeholder: z.ZodString;
1139
+ addManuallyLabel: z.ZodString;
1140
+ searchRegistryErrorMessage: z.ZodString;
1141
+ }, "strip", z.ZodTypeAny, {
1142
+ label: string;
1143
+ placeholder: string;
1144
+ addManuallyLabel: string;
1145
+ searchRegistryErrorMessage: string;
1146
+ }, {
1147
+ label: string;
1148
+ placeholder: string;
1149
+ addManuallyLabel: string;
1150
+ searchRegistryErrorMessage: string;
1151
+ }>;
1152
+ businessTypeInput: z.ZodObject<{
1153
+ label: z.ZodString;
1154
+ }, "strip", z.ZodTypeAny, {
1155
+ label: string;
1156
+ }, {
1157
+ label: string;
1158
+ }>;
1159
+ dateOfIncorporationInput: z.ZodObject<{
1160
+ label: z.ZodString;
1161
+ }, "strip", z.ZodTypeAny, {
1162
+ label: string;
1163
+ }, {
1164
+ label: string;
1165
+ }>;
1166
+ industryInput: z.ZodObject<{
1167
+ label: z.ZodString;
1168
+ placeholder: z.ZodString;
1169
+ }, "strip", z.ZodTypeAny, {
1170
+ label: string;
1171
+ placeholder: string;
1172
+ }, {
1173
+ label: string;
1174
+ placeholder: string;
1175
+ }>;
1176
+ phoneNumberInput: z.ZodObject<{
1177
+ label: z.ZodString;
1178
+ }, "strip", z.ZodTypeAny, {
1179
+ label: string;
1180
+ }, {
1181
+ label: string;
1182
+ }>;
1183
+ websiteInput: z.ZodObject<{
1184
+ label: z.ZodString;
1185
+ supportText: z.ZodString;
1186
+ }, "strip", z.ZodTypeAny, {
1187
+ label: string;
1188
+ supportText: string;
1189
+ }, {
1190
+ label: string;
1191
+ supportText: string;
1192
+ }>;
1193
+ noWebsiteCheckbox: z.ZodObject<{
1194
+ label: z.ZodString;
1195
+ }, "strip", z.ZodTypeAny, {
1196
+ label: string;
1197
+ }, {
1198
+ label: string;
1199
+ }>;
1200
+ helperTextsBlock: z.ZodObject<{
1201
+ textOne: z.ZodString;
1202
+ textTwo: z.ZodString;
1203
+ }, "strip", z.ZodTypeAny, {
1204
+ textOne: string;
1205
+ textTwo: string;
1206
+ }, {
1207
+ textOne: string;
1208
+ textTwo: string;
1209
+ }>;
1210
+ proofOfRegistration: z.ZodObject<{
1211
+ title: z.ZodString;
1212
+ description: z.ZodString;
1213
+ fileConstraints: z.ZodString;
1214
+ uploadFiles: z.ZodObject<{
1215
+ label: z.ZodString;
1216
+ accessibilityLabel: z.ZodString;
1217
+ }, "strip", z.ZodTypeAny, {
1218
+ label: string;
1219
+ accessibilityLabel: string;
1220
+ }, {
1221
+ label: string;
1222
+ accessibilityLabel: string;
1223
+ }>;
1224
+ }, "strip", z.ZodTypeAny, {
1225
+ title: string;
1226
+ description: string;
1227
+ fileConstraints: string;
1228
+ uploadFiles: {
1229
+ label: string;
1230
+ accessibilityLabel: string;
1231
+ };
1232
+ }, {
1233
+ title: string;
1234
+ description: string;
1235
+ fileConstraints: string;
1236
+ uploadFiles: {
1237
+ label: string;
1238
+ accessibilityLabel: string;
1239
+ };
1240
+ }>;
1241
+ primaryAction: z.ZodObject<{
1242
+ label: z.ZodString;
1243
+ accessibilityLabel: z.ZodString;
1244
+ }, "strip", z.ZodTypeAny, {
1245
+ label: string;
1246
+ accessibilityLabel: string;
1247
+ }, {
1248
+ label: string;
1249
+ accessibilityLabel: string;
1250
+ }>;
442
1251
  }, "strip", z.ZodTypeAny, {
443
1252
  version: string;
444
1253
  language: string;
445
1254
  cohort: string;
446
1255
  type: string;
447
- bulletPoints: string[];
448
- logoUrl: string;
449
- title: string;
450
- button: string;
451
- termsAndConditions: string;
1256
+ header: string;
1257
+ text: string;
1258
+ phoneNumberInput: {
1259
+ label: string;
1260
+ };
1261
+ primaryAction: {
1262
+ label: string;
1263
+ accessibilityLabel: string;
1264
+ };
1265
+ helperTextsBlock: {
1266
+ textOne: string;
1267
+ textTwo: string;
1268
+ };
1269
+ businessSearchInput: {
1270
+ label: string;
1271
+ placeholder: string;
1272
+ addManuallyLabel: string;
1273
+ searchRegistryErrorMessage: string;
1274
+ };
1275
+ businessTypeInput: {
1276
+ label: string;
1277
+ };
1278
+ dateOfIncorporationInput: {
1279
+ label: string;
1280
+ };
1281
+ industryInput: {
1282
+ label: string;
1283
+ placeholder: string;
1284
+ };
1285
+ websiteInput: {
1286
+ label: string;
1287
+ supportText: string;
1288
+ };
1289
+ noWebsiteCheckbox: {
1290
+ label: string;
1291
+ };
1292
+ proofOfRegistration: {
1293
+ title: string;
1294
+ description: string;
1295
+ fileConstraints: string;
1296
+ uploadFiles: {
1297
+ label: string;
1298
+ accessibilityLabel: string;
1299
+ };
1300
+ };
452
1301
  }, {
453
1302
  version: string;
454
1303
  language: string;
455
1304
  cohort: string;
456
1305
  type: string;
457
- bulletPoints: string[];
458
- logoUrl: string;
459
- title: string;
460
- button: string;
461
- termsAndConditions: string;
1306
+ header: string;
1307
+ text: string;
1308
+ phoneNumberInput: {
1309
+ label: string;
1310
+ };
1311
+ primaryAction: {
1312
+ label: string;
1313
+ accessibilityLabel: string;
1314
+ };
1315
+ helperTextsBlock: {
1316
+ textOne: string;
1317
+ textTwo: string;
1318
+ };
1319
+ businessSearchInput: {
1320
+ label: string;
1321
+ placeholder: string;
1322
+ addManuallyLabel: string;
1323
+ searchRegistryErrorMessage: string;
1324
+ };
1325
+ businessTypeInput: {
1326
+ label: string;
1327
+ };
1328
+ dateOfIncorporationInput: {
1329
+ label: string;
1330
+ };
1331
+ industryInput: {
1332
+ label: string;
1333
+ placeholder: string;
1334
+ };
1335
+ websiteInput: {
1336
+ label: string;
1337
+ supportText: string;
1338
+ };
1339
+ noWebsiteCheckbox: {
1340
+ label: string;
1341
+ };
1342
+ proofOfRegistration: {
1343
+ title: string;
1344
+ description: string;
1345
+ fileConstraints: string;
1346
+ uploadFiles: {
1347
+ label: string;
1348
+ accessibilityLabel: string;
1349
+ };
1350
+ };
462
1351
  }>;
463
- completeApplication: z.ZodObject<{
1352
+ businessModelScreen: z.ZodObject<{
464
1353
  version: z.ZodString;
465
1354
  language: z.ZodString;
466
1355
  cohort: z.ZodString;
467
1356
  type: z.ZodString;
468
1357
  } & {
469
- mainText: z.ZodString;
470
- buttonText: z.ZodString;
1358
+ header: z.ZodString;
1359
+ text: z.ZodString;
1360
+ customerSegment: z.ZodObject<{
1361
+ label: z.ZodString;
1362
+ b2c: z.ZodObject<{
1363
+ title: z.ZodString;
1364
+ description: z.ZodString;
1365
+ }, "strip", z.ZodTypeAny, {
1366
+ title: string;
1367
+ description: string;
1368
+ }, {
1369
+ title: string;
1370
+ description: string;
1371
+ }>;
1372
+ b2b: z.ZodObject<{
1373
+ title: z.ZodString;
1374
+ description: z.ZodString;
1375
+ }, "strip", z.ZodTypeAny, {
1376
+ title: string;
1377
+ description: string;
1378
+ }, {
1379
+ title: string;
1380
+ description: string;
1381
+ }>;
1382
+ }, "strip", z.ZodTypeAny, {
1383
+ label: string;
1384
+ b2c: {
1385
+ title: string;
1386
+ description: string;
1387
+ };
1388
+ b2b: {
1389
+ title: string;
1390
+ description: string;
1391
+ };
1392
+ }, {
1393
+ label: string;
1394
+ b2c: {
1395
+ title: string;
1396
+ description: string;
1397
+ };
1398
+ b2b: {
1399
+ title: string;
1400
+ description: string;
1401
+ };
1402
+ }>;
1403
+ salesChannel: z.ZodObject<{
1404
+ label: z.ZodString;
1405
+ online: z.ZodObject<{
1406
+ title: z.ZodString;
1407
+ description: z.ZodString;
1408
+ }, "strip", z.ZodTypeAny, {
1409
+ title: string;
1410
+ description: string;
1411
+ }, {
1412
+ title: string;
1413
+ description: string;
1414
+ }>;
1415
+ offline: z.ZodObject<{
1416
+ title: z.ZodString;
1417
+ description: z.ZodString;
1418
+ }, "strip", z.ZodTypeAny, {
1419
+ title: string;
1420
+ description: string;
1421
+ }, {
1422
+ title: string;
1423
+ description: string;
1424
+ }>;
1425
+ }, "strip", z.ZodTypeAny, {
1426
+ label: string;
1427
+ online: {
1428
+ title: string;
1429
+ description: string;
1430
+ };
1431
+ offline: {
1432
+ title: string;
1433
+ description: string;
1434
+ };
1435
+ }, {
1436
+ label: string;
1437
+ online: {
1438
+ title: string;
1439
+ description: string;
1440
+ };
1441
+ offline: {
1442
+ title: string;
1443
+ description: string;
1444
+ };
1445
+ }>;
1446
+ productType: z.ZodObject<{
1447
+ label: z.ZodString;
1448
+ physicalProducts: z.ZodObject<{
1449
+ title: z.ZodString;
1450
+ description: z.ZodString;
1451
+ }, "strip", z.ZodTypeAny, {
1452
+ title: string;
1453
+ description: string;
1454
+ }, {
1455
+ title: string;
1456
+ description: string;
1457
+ }>;
1458
+ digitalProducts: z.ZodObject<{
1459
+ title: z.ZodString;
1460
+ description: z.ZodString;
1461
+ }, "strip", z.ZodTypeAny, {
1462
+ title: string;
1463
+ description: string;
1464
+ }, {
1465
+ title: string;
1466
+ description: string;
1467
+ }>;
1468
+ services: z.ZodObject<{
1469
+ title: z.ZodString;
1470
+ description: z.ZodString;
1471
+ }, "strip", z.ZodTypeAny, {
1472
+ title: string;
1473
+ description: string;
1474
+ }, {
1475
+ title: string;
1476
+ description: string;
1477
+ }>;
1478
+ subscriptions: z.ZodObject<{
1479
+ title: z.ZodString;
1480
+ description: z.ZodString;
1481
+ }, "strip", z.ZodTypeAny, {
1482
+ title: string;
1483
+ description: string;
1484
+ }, {
1485
+ title: string;
1486
+ description: string;
1487
+ }>;
1488
+ }, "strip", z.ZodTypeAny, {
1489
+ label: string;
1490
+ physicalProducts: {
1491
+ title: string;
1492
+ description: string;
1493
+ };
1494
+ digitalProducts: {
1495
+ title: string;
1496
+ description: string;
1497
+ };
1498
+ services: {
1499
+ title: string;
1500
+ description: string;
1501
+ };
1502
+ subscriptions: {
1503
+ title: string;
1504
+ description: string;
1505
+ };
1506
+ }, {
1507
+ label: string;
1508
+ physicalProducts: {
1509
+ title: string;
1510
+ description: string;
1511
+ };
1512
+ digitalProducts: {
1513
+ title: string;
1514
+ description: string;
1515
+ };
1516
+ services: {
1517
+ title: string;
1518
+ description: string;
1519
+ };
1520
+ subscriptions: {
1521
+ title: string;
1522
+ description: string;
1523
+ };
1524
+ }>;
1525
+ primaryAction: z.ZodObject<{
1526
+ label: z.ZodString;
1527
+ accessibilityLabel: z.ZodString;
1528
+ }, "strip", z.ZodTypeAny, {
1529
+ label: string;
1530
+ accessibilityLabel: string;
1531
+ }, {
1532
+ label: string;
1533
+ accessibilityLabel: string;
1534
+ }>;
1535
+ unsupportedBusinessModel: z.ZodObject<{
1536
+ title: z.ZodString;
1537
+ textBeforeLink: z.ZodString;
1538
+ linkText: z.ZodString;
1539
+ textAfterLink: z.ZodString;
1540
+ linkAccessibilityLabel: z.ZodString;
1541
+ supportArticleUrl: z.ZodString;
1542
+ }, "strip", z.ZodTypeAny, {
1543
+ title: string;
1544
+ textBeforeLink: string;
1545
+ textAfterLink: string;
1546
+ linkText: string;
1547
+ linkAccessibilityLabel: string;
1548
+ supportArticleUrl: string;
1549
+ }, {
1550
+ title: string;
1551
+ textBeforeLink: string;
1552
+ textAfterLink: string;
1553
+ linkText: string;
1554
+ linkAccessibilityLabel: string;
1555
+ supportArticleUrl: string;
1556
+ }>;
1557
+ submitError: z.ZodObject<{
1558
+ message: z.ZodString;
1559
+ }, "strip", z.ZodTypeAny, {
1560
+ message: string;
1561
+ }, {
1562
+ message: string;
1563
+ }>;
471
1564
  }, "strip", z.ZodTypeAny, {
472
1565
  version: string;
473
1566
  language: string;
474
1567
  cohort: string;
475
1568
  type: string;
476
- mainText: string;
477
- buttonText: string;
1569
+ header: string;
1570
+ text: string;
1571
+ primaryAction: {
1572
+ label: string;
1573
+ accessibilityLabel: string;
1574
+ };
1575
+ submitError: {
1576
+ message: string;
1577
+ };
1578
+ customerSegment: {
1579
+ label: string;
1580
+ b2c: {
1581
+ title: string;
1582
+ description: string;
1583
+ };
1584
+ b2b: {
1585
+ title: string;
1586
+ description: string;
1587
+ };
1588
+ };
1589
+ salesChannel: {
1590
+ label: string;
1591
+ online: {
1592
+ title: string;
1593
+ description: string;
1594
+ };
1595
+ offline: {
1596
+ title: string;
1597
+ description: string;
1598
+ };
1599
+ };
1600
+ productType: {
1601
+ label: string;
1602
+ physicalProducts: {
1603
+ title: string;
1604
+ description: string;
1605
+ };
1606
+ digitalProducts: {
1607
+ title: string;
1608
+ description: string;
1609
+ };
1610
+ services: {
1611
+ title: string;
1612
+ description: string;
1613
+ };
1614
+ subscriptions: {
1615
+ title: string;
1616
+ description: string;
1617
+ };
1618
+ };
1619
+ unsupportedBusinessModel: {
1620
+ title: string;
1621
+ textBeforeLink: string;
1622
+ textAfterLink: string;
1623
+ linkText: string;
1624
+ linkAccessibilityLabel: string;
1625
+ supportArticleUrl: string;
1626
+ };
478
1627
  }, {
479
1628
  version: string;
480
1629
  language: string;
481
1630
  cohort: string;
482
1631
  type: string;
483
- mainText: string;
484
- buttonText: string;
1632
+ header: string;
1633
+ text: string;
1634
+ primaryAction: {
1635
+ label: string;
1636
+ accessibilityLabel: string;
1637
+ };
1638
+ submitError: {
1639
+ message: string;
1640
+ };
1641
+ customerSegment: {
1642
+ label: string;
1643
+ b2c: {
1644
+ title: string;
1645
+ description: string;
1646
+ };
1647
+ b2b: {
1648
+ title: string;
1649
+ description: string;
1650
+ };
1651
+ };
1652
+ salesChannel: {
1653
+ label: string;
1654
+ online: {
1655
+ title: string;
1656
+ description: string;
1657
+ };
1658
+ offline: {
1659
+ title: string;
1660
+ description: string;
1661
+ };
1662
+ };
1663
+ productType: {
1664
+ label: string;
1665
+ physicalProducts: {
1666
+ title: string;
1667
+ description: string;
1668
+ };
1669
+ digitalProducts: {
1670
+ title: string;
1671
+ description: string;
1672
+ };
1673
+ services: {
1674
+ title: string;
1675
+ description: string;
1676
+ };
1677
+ subscriptions: {
1678
+ title: string;
1679
+ description: string;
1680
+ };
1681
+ };
1682
+ unsupportedBusinessModel: {
1683
+ title: string;
1684
+ textBeforeLink: string;
1685
+ textAfterLink: string;
1686
+ linkText: string;
1687
+ linkAccessibilityLabel: string;
1688
+ supportArticleUrl: string;
1689
+ };
485
1690
  }>;
486
- completeKyc: z.ZodObject<{
1691
+ notInYourCountryYetScreen: z.ZodObject<{
487
1692
  version: z.ZodString;
488
1693
  language: z.ZodString;
489
1694
  cohort: z.ZodString;
490
1695
  type: z.ZodString;
491
1696
  } & {
492
- mainText: z.ZodString;
493
- buttonText: z.ZodString;
1697
+ header: z.ZodString;
1698
+ text: z.ZodString;
1699
+ countryField: z.ZodObject<{
1700
+ label: z.ZodString;
1701
+ placeholder: z.ZodString;
1702
+ }, "strip", z.ZodTypeAny, {
1703
+ label: string;
1704
+ placeholder: string;
1705
+ }, {
1706
+ label: string;
1707
+ placeholder: string;
1708
+ }>;
1709
+ notifyMeCheckbox: z.ZodObject<{
1710
+ label: z.ZodString;
1711
+ }, "strip", z.ZodTypeAny, {
1712
+ label: string;
1713
+ }, {
1714
+ label: string;
1715
+ }>;
1716
+ primaryAction: z.ZodObject<{
1717
+ label: z.ZodString;
1718
+ accessibilityLabel: z.ZodString;
1719
+ }, "strip", z.ZodTypeAny, {
1720
+ label: string;
1721
+ accessibilityLabel: string;
1722
+ }, {
1723
+ label: string;
1724
+ accessibilityLabel: string;
1725
+ }>;
494
1726
  }, "strip", z.ZodTypeAny, {
495
1727
  version: string;
496
1728
  language: string;
497
1729
  cohort: string;
498
1730
  type: string;
499
- mainText: string;
500
- buttonText: string;
1731
+ header: string;
1732
+ text: string;
1733
+ primaryAction: {
1734
+ label: string;
1735
+ accessibilityLabel: string;
1736
+ };
1737
+ countryField: {
1738
+ label: string;
1739
+ placeholder: string;
1740
+ };
1741
+ notifyMeCheckbox: {
1742
+ label: string;
1743
+ };
501
1744
  }, {
502
1745
  version: string;
503
1746
  language: string;
504
1747
  cohort: string;
505
1748
  type: string;
506
- mainText: string;
507
- buttonText: string;
1749
+ header: string;
1750
+ text: string;
1751
+ primaryAction: {
1752
+ label: string;
1753
+ accessibilityLabel: string;
1754
+ };
1755
+ countryField: {
1756
+ label: string;
1757
+ placeholder: string;
1758
+ };
1759
+ notifyMeCheckbox: {
1760
+ label: string;
1761
+ };
508
1762
  }>;
509
- signContract: z.ZodObject<{
1763
+ notInYourCountryYetConfirmationScreen: z.ZodObject<{
510
1764
  version: z.ZodString;
511
1765
  language: z.ZodString;
512
1766
  cohort: z.ZodString;
513
1767
  type: z.ZodString;
514
1768
  } & {
515
- mainText: z.ZodString;
516
- buttonText: z.ZodString;
1769
+ header: z.ZodString;
1770
+ body: z.ZodString;
1771
+ countryFallback: z.ZodString;
1772
+ primaryAction: z.ZodObject<{
1773
+ label: z.ZodString;
1774
+ accessibilityLabel: z.ZodString;
1775
+ }, "strip", z.ZodTypeAny, {
1776
+ label: string;
1777
+ accessibilityLabel: string;
1778
+ }, {
1779
+ label: string;
1780
+ accessibilityLabel: string;
1781
+ }>;
517
1782
  }, "strip", z.ZodTypeAny, {
518
1783
  version: string;
519
1784
  language: string;
520
1785
  cohort: string;
521
1786
  type: string;
522
- mainText: string;
523
- buttonText: string;
1787
+ header: string;
1788
+ primaryAction: {
1789
+ label: string;
1790
+ accessibilityLabel: string;
1791
+ };
1792
+ body: string;
1793
+ countryFallback: string;
524
1794
  }, {
525
1795
  version: string;
526
1796
  language: string;
527
1797
  cohort: string;
528
1798
  type: string;
529
- mainText: string;
530
- buttonText: string;
1799
+ header: string;
1800
+ primaryAction: {
1801
+ label: string;
1802
+ accessibilityLabel: string;
1803
+ };
1804
+ body: string;
1805
+ countryFallback: string;
531
1806
  }>;
532
- selectOffer: z.ZodObject<{
1807
+ ineligibleCountryScreen: z.ZodObject<{
533
1808
  version: z.ZodString;
534
1809
  language: z.ZodString;
535
1810
  cohort: z.ZodString;
536
1811
  type: z.ZodString;
537
1812
  } & {
538
- mainText: z.ZodEffects<z.ZodString, string, string>;
539
- buttonText: z.ZodString;
1813
+ header: z.ZodString;
1814
+ geographyReason: z.ZodObject<{
1815
+ paragraphOne: z.ZodString;
1816
+ paragraphTwo: z.ZodString;
1817
+ }, "strip", z.ZodTypeAny, {
1818
+ paragraphOne: string;
1819
+ paragraphTwo: string;
1820
+ }, {
1821
+ paragraphOne: string;
1822
+ paragraphTwo: string;
1823
+ }>;
1824
+ eligibilityCriteria: z.ZodObject<{
1825
+ text: z.ZodString;
1826
+ linkText: z.ZodString;
1827
+ linkUrl: z.ZodString;
1828
+ textAfterLink: z.ZodString;
1829
+ }, "strip", z.ZodTypeAny, {
1830
+ text: string;
1831
+ textAfterLink: string;
1832
+ linkText: string;
1833
+ linkUrl: string;
1834
+ }, {
1835
+ text: string;
1836
+ textAfterLink: string;
1837
+ linkText: string;
1838
+ linkUrl: string;
1839
+ }>;
1840
+ primaryAction: z.ZodObject<{
1841
+ label: z.ZodString;
1842
+ accessibilityLabel: z.ZodString;
1843
+ }, "strip", z.ZodTypeAny, {
1844
+ label: string;
1845
+ accessibilityLabel: string;
1846
+ }, {
1847
+ label: string;
1848
+ accessibilityLabel: string;
1849
+ }>;
540
1850
  }, "strip", z.ZodTypeAny, {
541
1851
  version: string;
542
1852
  language: string;
543
1853
  cohort: string;
544
1854
  type: string;
545
- mainText: string;
546
- buttonText: string;
1855
+ header: string;
1856
+ primaryAction: {
1857
+ label: string;
1858
+ accessibilityLabel: string;
1859
+ };
1860
+ geographyReason: {
1861
+ paragraphOne: string;
1862
+ paragraphTwo: string;
1863
+ };
1864
+ eligibilityCriteria: {
1865
+ text: string;
1866
+ textAfterLink: string;
1867
+ linkText: string;
1868
+ linkUrl: string;
1869
+ };
547
1870
  }, {
548
1871
  version: string;
549
1872
  language: string;
550
1873
  cohort: string;
551
1874
  type: string;
552
- mainText: string;
553
- buttonText: string;
1875
+ header: string;
1876
+ primaryAction: {
1877
+ label: string;
1878
+ accessibilityLabel: string;
1879
+ };
1880
+ geographyReason: {
1881
+ paragraphOne: string;
1882
+ paragraphTwo: string;
1883
+ };
1884
+ eligibilityCriteria: {
1885
+ text: string;
1886
+ textAfterLink: string;
1887
+ linkText: string;
1888
+ linkUrl: string;
1889
+ };
554
1890
  }>;
555
- provideAdditionalInfo: z.ZodObject<{
1891
+ businessAlreadyOnWayflyerScreen: z.ZodObject<{
556
1892
  version: z.ZodString;
557
1893
  language: z.ZodString;
558
1894
  cohort: z.ZodString;
559
1895
  type: z.ZodString;
560
1896
  } & {
561
- mainText: z.ZodString;
562
- buttonText: z.ZodString;
1897
+ fallbackBusinessName: z.ZodString;
1898
+ header: z.ZodString;
1899
+ body: z.ZodObject<{
1900
+ textOne: z.ZodString;
1901
+ textTwo: z.ZodString;
1902
+ contactSupportLink: z.ZodString;
1903
+ contactSupportUrl: z.ZodString;
1904
+ }, "strip", z.ZodTypeAny, {
1905
+ contactSupportUrl: string;
1906
+ textOne: string;
1907
+ textTwo: string;
1908
+ contactSupportLink: string;
1909
+ }, {
1910
+ contactSupportUrl: string;
1911
+ textOne: string;
1912
+ textTwo: string;
1913
+ contactSupportLink: string;
1914
+ }>;
1915
+ primaryAction: z.ZodObject<{
1916
+ label: z.ZodString;
1917
+ accessibilityLabel: z.ZodString;
1918
+ }, "strip", z.ZodTypeAny, {
1919
+ label: string;
1920
+ accessibilityLabel: string;
1921
+ }, {
1922
+ label: string;
1923
+ accessibilityLabel: string;
1924
+ }>;
563
1925
  }, "strip", z.ZodTypeAny, {
564
1926
  version: string;
565
1927
  language: string;
566
1928
  cohort: string;
567
1929
  type: string;
568
- mainText: string;
569
- buttonText: string;
1930
+ header: string;
1931
+ primaryAction: {
1932
+ label: string;
1933
+ accessibilityLabel: string;
1934
+ };
1935
+ body: {
1936
+ contactSupportUrl: string;
1937
+ textOne: string;
1938
+ textTwo: string;
1939
+ contactSupportLink: string;
1940
+ };
1941
+ fallbackBusinessName: string;
570
1942
  }, {
571
1943
  version: string;
572
1944
  language: string;
573
1945
  cohort: string;
574
1946
  type: string;
575
- mainText: string;
576
- buttonText: string;
1947
+ header: string;
1948
+ primaryAction: {
1949
+ label: string;
1950
+ accessibilityLabel: string;
1951
+ };
1952
+ body: {
1953
+ contactSupportUrl: string;
1954
+ textOne: string;
1955
+ textTwo: string;
1956
+ contactSupportLink: string;
1957
+ };
1958
+ fallbackBusinessName: string;
577
1959
  }>;
578
- partnerTemplate: z.ZodOptional<z.ZodObject<{
1960
+ handoverToWayflyerScreen: z.ZodObject<{
579
1961
  version: z.ZodString;
580
1962
  language: z.ZodString;
581
1963
  cohort: z.ZodString;
582
1964
  type: z.ZodString;
583
1965
  } & {
584
- partnerLogoUrl: z.ZodString;
1966
+ header: z.ZodString;
1967
+ text: z.ZodString;
1968
+ whatHappensNext: z.ZodString;
1969
+ steps: z.ZodObject<{
1970
+ businessDetails: z.ZodString;
1971
+ createWayflyerAccount: z.ZodString;
1972
+ connectAccounts: z.ZodString;
1973
+ reviewFundingOffer: z.ZodString;
1974
+ receiveFunds: z.ZodString;
1975
+ }, "strip", z.ZodTypeAny, {
1976
+ businessDetails: string;
1977
+ createWayflyerAccount: string;
1978
+ connectAccounts: string;
1979
+ reviewFundingOffer: string;
1980
+ receiveFunds: string;
1981
+ }, {
1982
+ businessDetails: string;
1983
+ createWayflyerAccount: string;
1984
+ connectAccounts: string;
1985
+ reviewFundingOffer: string;
1986
+ receiveFunds: string;
1987
+ }>;
1988
+ footerNote: z.ZodString;
1989
+ primaryAction: z.ZodObject<{
1990
+ label: z.ZodString;
1991
+ accessibilityLabel: z.ZodString;
1992
+ }, "strip", z.ZodTypeAny, {
1993
+ label: string;
1994
+ accessibilityLabel: string;
1995
+ }, {
1996
+ label: string;
1997
+ accessibilityLabel: string;
1998
+ }>;
1999
+ submitError: z.ZodObject<{
2000
+ message: z.ZodString;
2001
+ }, "strip", z.ZodTypeAny, {
2002
+ message: string;
2003
+ }, {
2004
+ message: string;
2005
+ }>;
585
2006
  }, "strip", z.ZodTypeAny, {
586
2007
  version: string;
587
2008
  language: string;
588
2009
  cohort: string;
589
2010
  type: string;
590
- partnerLogoUrl: string;
2011
+ header: string;
2012
+ text: string;
2013
+ primaryAction: {
2014
+ label: string;
2015
+ accessibilityLabel: string;
2016
+ };
2017
+ submitError: {
2018
+ message: string;
2019
+ };
2020
+ whatHappensNext: string;
2021
+ steps: {
2022
+ businessDetails: string;
2023
+ createWayflyerAccount: string;
2024
+ connectAccounts: string;
2025
+ reviewFundingOffer: string;
2026
+ receiveFunds: string;
2027
+ };
2028
+ footerNote: string;
591
2029
  }, {
592
2030
  version: string;
593
2031
  language: string;
594
2032
  cohort: string;
595
2033
  type: string;
596
- partnerLogoUrl: string;
597
- }>>;
2034
+ header: string;
2035
+ text: string;
2036
+ primaryAction: {
2037
+ label: string;
2038
+ accessibilityLabel: string;
2039
+ };
2040
+ submitError: {
2041
+ message: string;
2042
+ };
2043
+ whatHappensNext: string;
2044
+ steps: {
2045
+ businessDetails: string;
2046
+ createWayflyerAccount: string;
2047
+ connectAccounts: string;
2048
+ reviewFundingOffer: string;
2049
+ receiveFunds: string;
2050
+ };
2051
+ footerNote: string;
2052
+ }>;
598
2053
  }, "strip", z.ZodTypeAny, {
599
2054
  genericOffer: {
600
2055
  version: string;
@@ -665,6 +2120,415 @@ export declare const CopySchema: z.ZodObject<{
665
2120
  mainText: string;
666
2121
  buttonText: string;
667
2122
  };
2123
+ slideoutPanel: {
2124
+ version: string;
2125
+ language: string;
2126
+ cohort: string;
2127
+ type: string;
2128
+ header: string;
2129
+ secondaryAction: string;
2130
+ };
2131
+ contactDetailsScreen: {
2132
+ version: string;
2133
+ language: string;
2134
+ cohort: string;
2135
+ type: string;
2136
+ header: string;
2137
+ text: string;
2138
+ email: {
2139
+ label: string;
2140
+ };
2141
+ phoneNumberInput: {
2142
+ label: string;
2143
+ };
2144
+ primaryAction: {
2145
+ label: string;
2146
+ accessibilityLabel: string;
2147
+ };
2148
+ submitError: {
2149
+ headline: string;
2150
+ textBeforeLink: string;
2151
+ contactSupportLinkText: string;
2152
+ contactSupportUrl: string;
2153
+ textAfterLink: string;
2154
+ };
2155
+ changeLimitReached: {
2156
+ headline: string;
2157
+ textBeforeLink: string;
2158
+ contactSupportLinkText: string;
2159
+ contactSupportUrl: string;
2160
+ textAfterLink: string;
2161
+ };
2162
+ };
2163
+ userConsentScreen: {
2164
+ version: string;
2165
+ language: string;
2166
+ cohort: string;
2167
+ type: string;
2168
+ bulletPoints: {
2169
+ bulletOne: string;
2170
+ bulletTwo: string;
2171
+ bulletThree: string;
2172
+ bulletFour: string;
2173
+ wayflyerAboutUsUrl: string;
2174
+ };
2175
+ primaryAction: {
2176
+ label: string;
2177
+ accessibilityLabel: string;
2178
+ };
2179
+ genericOfferHeader: string;
2180
+ indicativeOfferHeader: string;
2181
+ alreadyHaveAnAccount: {
2182
+ alreadyHaveAnAccountText: string;
2183
+ wayflyerSignInUrl: string;
2184
+ };
2185
+ consentNotice: string;
2186
+ startError: {
2187
+ headline: string;
2188
+ textBeforeLink: string;
2189
+ contactSupportLinkText: string;
2190
+ contactSupportUrl: string;
2191
+ textAfterLink: string;
2192
+ };
2193
+ };
2194
+ countryOfIncorporationScreen: {
2195
+ version: string;
2196
+ language: string;
2197
+ cohort: string;
2198
+ type: string;
2199
+ header: string;
2200
+ text: string;
2201
+ primaryAction: {
2202
+ label: string;
2203
+ accessibilityLabel: string;
2204
+ };
2205
+ checkboxes: {
2206
+ agreedOnApplicationServicesUpdateNews: {
2207
+ label: string;
2208
+ };
2209
+ agreedWithTermsAndCondition: {
2210
+ label: {
2211
+ textOne: string;
2212
+ textTwo: string;
2213
+ wayflyerTermsAndConditionsUrl: string;
2214
+ wayflyerPrivacyPolicyUrl: string;
2215
+ };
2216
+ error: string;
2217
+ };
2218
+ };
2219
+ cantSeeYourCountryBlock: {
2220
+ textOne: string;
2221
+ textTwo: string;
2222
+ head: string;
2223
+ wayflyerGetInTouchUrl: string;
2224
+ wayflyerHelpCenterUrl: string;
2225
+ };
2226
+ };
2227
+ emailAlreadyRegisteredScreen: {
2228
+ version: string;
2229
+ language: string;
2230
+ cohort: string;
2231
+ type: string;
2232
+ header: string;
2233
+ primaryAction: {
2234
+ label: string;
2235
+ accessibilityLabel: string;
2236
+ url: string;
2237
+ };
2238
+ body: {
2239
+ textOne: string;
2240
+ textTwo: string;
2241
+ supportTeamLink: string;
2242
+ supportTeamUrl: string;
2243
+ };
2244
+ };
2245
+ stateProvinceScreen: {
2246
+ version: string;
2247
+ language: string;
2248
+ cohort: string;
2249
+ type: string;
2250
+ primaryAction: {
2251
+ label: string;
2252
+ accessibilityLabel: string;
2253
+ };
2254
+ headerUS: string;
2255
+ headerCA: string;
2256
+ subHeader: string;
2257
+ incorporationHelperText: string;
2258
+ stateField: {
2259
+ label: string;
2260
+ placeholder: string;
2261
+ searchPlaceholder: string;
2262
+ };
2263
+ provinceField: {
2264
+ label: string;
2265
+ placeholder: string;
2266
+ searchPlaceholder: string;
2267
+ };
2268
+ pobField: {
2269
+ label: string;
2270
+ placeholder: string;
2271
+ searchPlaceholder: string;
2272
+ helperText: string;
2273
+ };
2274
+ };
2275
+ companyDetailsScreen: {
2276
+ version: string;
2277
+ language: string;
2278
+ cohort: string;
2279
+ type: string;
2280
+ header: string;
2281
+ text: string;
2282
+ primaryAction: {
2283
+ label: string;
2284
+ accessibilityLabel: string;
2285
+ };
2286
+ };
2287
+ monthlyRevenueScreen: {
2288
+ version: string;
2289
+ language: string;
2290
+ cohort: string;
2291
+ type: string;
2292
+ header: string;
2293
+ text: string;
2294
+ primaryAction: {
2295
+ label: string;
2296
+ accessibilityLabel: string;
2297
+ };
2298
+ revenueSlider: {
2299
+ label: string;
2300
+ };
2301
+ helperTextsBlock: {
2302
+ initialMessage: string;
2303
+ doNotMeetRequirements: string;
2304
+ lowRevenueCheckbox: {
2305
+ label: string;
2306
+ errorMessage: string;
2307
+ };
2308
+ };
2309
+ eligibilityHelperText: {
2310
+ defaultText: {
2311
+ textOne: string;
2312
+ textTwo: string;
2313
+ boldText: string;
2314
+ };
2315
+ highEligibilityText: {
2316
+ textOne: string;
2317
+ textTwo: string;
2318
+ boldText: string;
2319
+ };
2320
+ };
2321
+ };
2322
+ businessDetails: {
2323
+ version: string;
2324
+ language: string;
2325
+ cohort: string;
2326
+ type: string;
2327
+ header: string;
2328
+ text: string;
2329
+ phoneNumberInput: {
2330
+ label: string;
2331
+ };
2332
+ primaryAction: {
2333
+ label: string;
2334
+ accessibilityLabel: string;
2335
+ };
2336
+ helperTextsBlock: {
2337
+ textOne: string;
2338
+ textTwo: string;
2339
+ };
2340
+ businessSearchInput: {
2341
+ label: string;
2342
+ placeholder: string;
2343
+ addManuallyLabel: string;
2344
+ searchRegistryErrorMessage: string;
2345
+ };
2346
+ businessTypeInput: {
2347
+ label: string;
2348
+ };
2349
+ dateOfIncorporationInput: {
2350
+ label: string;
2351
+ };
2352
+ industryInput: {
2353
+ label: string;
2354
+ placeholder: string;
2355
+ };
2356
+ websiteInput: {
2357
+ label: string;
2358
+ supportText: string;
2359
+ };
2360
+ noWebsiteCheckbox: {
2361
+ label: string;
2362
+ };
2363
+ proofOfRegistration: {
2364
+ title: string;
2365
+ description: string;
2366
+ fileConstraints: string;
2367
+ uploadFiles: {
2368
+ label: string;
2369
+ accessibilityLabel: string;
2370
+ };
2371
+ };
2372
+ };
2373
+ businessModelScreen: {
2374
+ version: string;
2375
+ language: string;
2376
+ cohort: string;
2377
+ type: string;
2378
+ header: string;
2379
+ text: string;
2380
+ primaryAction: {
2381
+ label: string;
2382
+ accessibilityLabel: string;
2383
+ };
2384
+ submitError: {
2385
+ message: string;
2386
+ };
2387
+ customerSegment: {
2388
+ label: string;
2389
+ b2c: {
2390
+ title: string;
2391
+ description: string;
2392
+ };
2393
+ b2b: {
2394
+ title: string;
2395
+ description: string;
2396
+ };
2397
+ };
2398
+ salesChannel: {
2399
+ label: string;
2400
+ online: {
2401
+ title: string;
2402
+ description: string;
2403
+ };
2404
+ offline: {
2405
+ title: string;
2406
+ description: string;
2407
+ };
2408
+ };
2409
+ productType: {
2410
+ label: string;
2411
+ physicalProducts: {
2412
+ title: string;
2413
+ description: string;
2414
+ };
2415
+ digitalProducts: {
2416
+ title: string;
2417
+ description: string;
2418
+ };
2419
+ services: {
2420
+ title: string;
2421
+ description: string;
2422
+ };
2423
+ subscriptions: {
2424
+ title: string;
2425
+ description: string;
2426
+ };
2427
+ };
2428
+ unsupportedBusinessModel: {
2429
+ title: string;
2430
+ textBeforeLink: string;
2431
+ textAfterLink: string;
2432
+ linkText: string;
2433
+ linkAccessibilityLabel: string;
2434
+ supportArticleUrl: string;
2435
+ };
2436
+ };
2437
+ notInYourCountryYetScreen: {
2438
+ version: string;
2439
+ language: string;
2440
+ cohort: string;
2441
+ type: string;
2442
+ header: string;
2443
+ text: string;
2444
+ primaryAction: {
2445
+ label: string;
2446
+ accessibilityLabel: string;
2447
+ };
2448
+ countryField: {
2449
+ label: string;
2450
+ placeholder: string;
2451
+ };
2452
+ notifyMeCheckbox: {
2453
+ label: string;
2454
+ };
2455
+ };
2456
+ notInYourCountryYetConfirmationScreen: {
2457
+ version: string;
2458
+ language: string;
2459
+ cohort: string;
2460
+ type: string;
2461
+ header: string;
2462
+ primaryAction: {
2463
+ label: string;
2464
+ accessibilityLabel: string;
2465
+ };
2466
+ body: string;
2467
+ countryFallback: string;
2468
+ };
2469
+ ineligibleCountryScreen: {
2470
+ version: string;
2471
+ language: string;
2472
+ cohort: string;
2473
+ type: string;
2474
+ header: string;
2475
+ primaryAction: {
2476
+ label: string;
2477
+ accessibilityLabel: string;
2478
+ };
2479
+ geographyReason: {
2480
+ paragraphOne: string;
2481
+ paragraphTwo: string;
2482
+ };
2483
+ eligibilityCriteria: {
2484
+ text: string;
2485
+ textAfterLink: string;
2486
+ linkText: string;
2487
+ linkUrl: string;
2488
+ };
2489
+ };
2490
+ businessAlreadyOnWayflyerScreen: {
2491
+ version: string;
2492
+ language: string;
2493
+ cohort: string;
2494
+ type: string;
2495
+ header: string;
2496
+ primaryAction: {
2497
+ label: string;
2498
+ accessibilityLabel: string;
2499
+ };
2500
+ body: {
2501
+ contactSupportUrl: string;
2502
+ textOne: string;
2503
+ textTwo: string;
2504
+ contactSupportLink: string;
2505
+ };
2506
+ fallbackBusinessName: string;
2507
+ };
2508
+ handoverToWayflyerScreen: {
2509
+ version: string;
2510
+ language: string;
2511
+ cohort: string;
2512
+ type: string;
2513
+ header: string;
2514
+ text: string;
2515
+ primaryAction: {
2516
+ label: string;
2517
+ accessibilityLabel: string;
2518
+ };
2519
+ submitError: {
2520
+ message: string;
2521
+ };
2522
+ whatHappensNext: string;
2523
+ steps: {
2524
+ businessDetails: string;
2525
+ createWayflyerAccount: string;
2526
+ connectAccounts: string;
2527
+ reviewFundingOffer: string;
2528
+ receiveFunds: string;
2529
+ };
2530
+ footerNote: string;
2531
+ };
668
2532
  partnerTemplate?: {
669
2533
  version: string;
670
2534
  language: string;
@@ -742,6 +2606,415 @@ export declare const CopySchema: z.ZodObject<{
742
2606
  mainText: string;
743
2607
  buttonText: string;
744
2608
  };
2609
+ slideoutPanel: {
2610
+ version: string;
2611
+ language: string;
2612
+ cohort: string;
2613
+ type: string;
2614
+ header: string;
2615
+ secondaryAction: string;
2616
+ };
2617
+ contactDetailsScreen: {
2618
+ version: string;
2619
+ language: string;
2620
+ cohort: string;
2621
+ type: string;
2622
+ header: string;
2623
+ text: string;
2624
+ email: {
2625
+ label: string;
2626
+ };
2627
+ phoneNumberInput: {
2628
+ label: string;
2629
+ };
2630
+ primaryAction: {
2631
+ label: string;
2632
+ accessibilityLabel: string;
2633
+ };
2634
+ submitError: {
2635
+ headline: string;
2636
+ textBeforeLink: string;
2637
+ contactSupportLinkText: string;
2638
+ contactSupportUrl: string;
2639
+ textAfterLink: string;
2640
+ };
2641
+ changeLimitReached: {
2642
+ headline: string;
2643
+ textBeforeLink: string;
2644
+ contactSupportLinkText: string;
2645
+ contactSupportUrl: string;
2646
+ textAfterLink: string;
2647
+ };
2648
+ };
2649
+ userConsentScreen: {
2650
+ version: string;
2651
+ language: string;
2652
+ cohort: string;
2653
+ type: string;
2654
+ bulletPoints: {
2655
+ bulletOne: string;
2656
+ bulletTwo: string;
2657
+ bulletThree: string;
2658
+ bulletFour: string;
2659
+ wayflyerAboutUsUrl: string;
2660
+ };
2661
+ primaryAction: {
2662
+ label: string;
2663
+ accessibilityLabel: string;
2664
+ };
2665
+ genericOfferHeader: string;
2666
+ indicativeOfferHeader: string;
2667
+ alreadyHaveAnAccount: {
2668
+ alreadyHaveAnAccountText: string;
2669
+ wayflyerSignInUrl: string;
2670
+ };
2671
+ consentNotice: string;
2672
+ startError: {
2673
+ headline: string;
2674
+ textBeforeLink: string;
2675
+ contactSupportLinkText: string;
2676
+ contactSupportUrl: string;
2677
+ textAfterLink: string;
2678
+ };
2679
+ };
2680
+ countryOfIncorporationScreen: {
2681
+ version: string;
2682
+ language: string;
2683
+ cohort: string;
2684
+ type: string;
2685
+ header: string;
2686
+ text: string;
2687
+ primaryAction: {
2688
+ label: string;
2689
+ accessibilityLabel: string;
2690
+ };
2691
+ checkboxes: {
2692
+ agreedOnApplicationServicesUpdateNews: {
2693
+ label: string;
2694
+ };
2695
+ agreedWithTermsAndCondition: {
2696
+ label: {
2697
+ textOne: string;
2698
+ textTwo: string;
2699
+ wayflyerTermsAndConditionsUrl: string;
2700
+ wayflyerPrivacyPolicyUrl: string;
2701
+ };
2702
+ error: string;
2703
+ };
2704
+ };
2705
+ cantSeeYourCountryBlock: {
2706
+ textOne: string;
2707
+ textTwo: string;
2708
+ head: string;
2709
+ wayflyerGetInTouchUrl: string;
2710
+ wayflyerHelpCenterUrl: string;
2711
+ };
2712
+ };
2713
+ emailAlreadyRegisteredScreen: {
2714
+ version: string;
2715
+ language: string;
2716
+ cohort: string;
2717
+ type: string;
2718
+ header: string;
2719
+ primaryAction: {
2720
+ label: string;
2721
+ accessibilityLabel: string;
2722
+ url: string;
2723
+ };
2724
+ body: {
2725
+ textOne: string;
2726
+ textTwo: string;
2727
+ supportTeamLink: string;
2728
+ supportTeamUrl: string;
2729
+ };
2730
+ };
2731
+ stateProvinceScreen: {
2732
+ version: string;
2733
+ language: string;
2734
+ cohort: string;
2735
+ type: string;
2736
+ primaryAction: {
2737
+ label: string;
2738
+ accessibilityLabel: string;
2739
+ };
2740
+ headerUS: string;
2741
+ headerCA: string;
2742
+ subHeader: string;
2743
+ incorporationHelperText: string;
2744
+ stateField: {
2745
+ label: string;
2746
+ placeholder: string;
2747
+ searchPlaceholder: string;
2748
+ };
2749
+ provinceField: {
2750
+ label: string;
2751
+ placeholder: string;
2752
+ searchPlaceholder: string;
2753
+ };
2754
+ pobField: {
2755
+ label: string;
2756
+ placeholder: string;
2757
+ searchPlaceholder: string;
2758
+ helperText: string;
2759
+ };
2760
+ };
2761
+ companyDetailsScreen: {
2762
+ version: string;
2763
+ language: string;
2764
+ cohort: string;
2765
+ type: string;
2766
+ header: string;
2767
+ text: string;
2768
+ primaryAction: {
2769
+ label: string;
2770
+ accessibilityLabel: string;
2771
+ };
2772
+ };
2773
+ monthlyRevenueScreen: {
2774
+ version: string;
2775
+ language: string;
2776
+ cohort: string;
2777
+ type: string;
2778
+ header: string;
2779
+ text: string;
2780
+ primaryAction: {
2781
+ label: string;
2782
+ accessibilityLabel: string;
2783
+ };
2784
+ revenueSlider: {
2785
+ label: string;
2786
+ };
2787
+ helperTextsBlock: {
2788
+ initialMessage: string;
2789
+ doNotMeetRequirements: string;
2790
+ lowRevenueCheckbox: {
2791
+ label: string;
2792
+ errorMessage: string;
2793
+ };
2794
+ };
2795
+ eligibilityHelperText: {
2796
+ defaultText: {
2797
+ textOne: string;
2798
+ textTwo: string;
2799
+ boldText: string;
2800
+ };
2801
+ highEligibilityText: {
2802
+ textOne: string;
2803
+ textTwo: string;
2804
+ boldText: string;
2805
+ };
2806
+ };
2807
+ };
2808
+ businessDetails: {
2809
+ version: string;
2810
+ language: string;
2811
+ cohort: string;
2812
+ type: string;
2813
+ header: string;
2814
+ text: string;
2815
+ phoneNumberInput: {
2816
+ label: string;
2817
+ };
2818
+ primaryAction: {
2819
+ label: string;
2820
+ accessibilityLabel: string;
2821
+ };
2822
+ helperTextsBlock: {
2823
+ textOne: string;
2824
+ textTwo: string;
2825
+ };
2826
+ businessSearchInput: {
2827
+ label: string;
2828
+ placeholder: string;
2829
+ addManuallyLabel: string;
2830
+ searchRegistryErrorMessage: string;
2831
+ };
2832
+ businessTypeInput: {
2833
+ label: string;
2834
+ };
2835
+ dateOfIncorporationInput: {
2836
+ label: string;
2837
+ };
2838
+ industryInput: {
2839
+ label: string;
2840
+ placeholder: string;
2841
+ };
2842
+ websiteInput: {
2843
+ label: string;
2844
+ supportText: string;
2845
+ };
2846
+ noWebsiteCheckbox: {
2847
+ label: string;
2848
+ };
2849
+ proofOfRegistration: {
2850
+ title: string;
2851
+ description: string;
2852
+ fileConstraints: string;
2853
+ uploadFiles: {
2854
+ label: string;
2855
+ accessibilityLabel: string;
2856
+ };
2857
+ };
2858
+ };
2859
+ businessModelScreen: {
2860
+ version: string;
2861
+ language: string;
2862
+ cohort: string;
2863
+ type: string;
2864
+ header: string;
2865
+ text: string;
2866
+ primaryAction: {
2867
+ label: string;
2868
+ accessibilityLabel: string;
2869
+ };
2870
+ submitError: {
2871
+ message: string;
2872
+ };
2873
+ customerSegment: {
2874
+ label: string;
2875
+ b2c: {
2876
+ title: string;
2877
+ description: string;
2878
+ };
2879
+ b2b: {
2880
+ title: string;
2881
+ description: string;
2882
+ };
2883
+ };
2884
+ salesChannel: {
2885
+ label: string;
2886
+ online: {
2887
+ title: string;
2888
+ description: string;
2889
+ };
2890
+ offline: {
2891
+ title: string;
2892
+ description: string;
2893
+ };
2894
+ };
2895
+ productType: {
2896
+ label: string;
2897
+ physicalProducts: {
2898
+ title: string;
2899
+ description: string;
2900
+ };
2901
+ digitalProducts: {
2902
+ title: string;
2903
+ description: string;
2904
+ };
2905
+ services: {
2906
+ title: string;
2907
+ description: string;
2908
+ };
2909
+ subscriptions: {
2910
+ title: string;
2911
+ description: string;
2912
+ };
2913
+ };
2914
+ unsupportedBusinessModel: {
2915
+ title: string;
2916
+ textBeforeLink: string;
2917
+ textAfterLink: string;
2918
+ linkText: string;
2919
+ linkAccessibilityLabel: string;
2920
+ supportArticleUrl: string;
2921
+ };
2922
+ };
2923
+ notInYourCountryYetScreen: {
2924
+ version: string;
2925
+ language: string;
2926
+ cohort: string;
2927
+ type: string;
2928
+ header: string;
2929
+ text: string;
2930
+ primaryAction: {
2931
+ label: string;
2932
+ accessibilityLabel: string;
2933
+ };
2934
+ countryField: {
2935
+ label: string;
2936
+ placeholder: string;
2937
+ };
2938
+ notifyMeCheckbox: {
2939
+ label: string;
2940
+ };
2941
+ };
2942
+ notInYourCountryYetConfirmationScreen: {
2943
+ version: string;
2944
+ language: string;
2945
+ cohort: string;
2946
+ type: string;
2947
+ header: string;
2948
+ primaryAction: {
2949
+ label: string;
2950
+ accessibilityLabel: string;
2951
+ };
2952
+ body: string;
2953
+ countryFallback: string;
2954
+ };
2955
+ ineligibleCountryScreen: {
2956
+ version: string;
2957
+ language: string;
2958
+ cohort: string;
2959
+ type: string;
2960
+ header: string;
2961
+ primaryAction: {
2962
+ label: string;
2963
+ accessibilityLabel: string;
2964
+ };
2965
+ geographyReason: {
2966
+ paragraphOne: string;
2967
+ paragraphTwo: string;
2968
+ };
2969
+ eligibilityCriteria: {
2970
+ text: string;
2971
+ textAfterLink: string;
2972
+ linkText: string;
2973
+ linkUrl: string;
2974
+ };
2975
+ };
2976
+ businessAlreadyOnWayflyerScreen: {
2977
+ version: string;
2978
+ language: string;
2979
+ cohort: string;
2980
+ type: string;
2981
+ header: string;
2982
+ primaryAction: {
2983
+ label: string;
2984
+ accessibilityLabel: string;
2985
+ };
2986
+ body: {
2987
+ contactSupportUrl: string;
2988
+ textOne: string;
2989
+ textTwo: string;
2990
+ contactSupportLink: string;
2991
+ };
2992
+ fallbackBusinessName: string;
2993
+ };
2994
+ handoverToWayflyerScreen: {
2995
+ version: string;
2996
+ language: string;
2997
+ cohort: string;
2998
+ type: string;
2999
+ header: string;
3000
+ text: string;
3001
+ primaryAction: {
3002
+ label: string;
3003
+ accessibilityLabel: string;
3004
+ };
3005
+ submitError: {
3006
+ message: string;
3007
+ };
3008
+ whatHappensNext: string;
3009
+ steps: {
3010
+ businessDetails: string;
3011
+ createWayflyerAccount: string;
3012
+ connectAccounts: string;
3013
+ reviewFundingOffer: string;
3014
+ receiveFunds: string;
3015
+ };
3016
+ footerNote: string;
3017
+ };
745
3018
  partnerTemplate?: {
746
3019
  version: string;
747
3020
  language: string;
@@ -751,4 +3024,4 @@ export declare const CopySchema: z.ZodObject<{
751
3024
  } | undefined;
752
3025
  }>;
753
3026
  export type Copy = z.infer<typeof CopySchema>;
754
- export type CopyBundle = z.infer<typeof CopyBundleSchema>;
3027
+ export {};