@wf-financing/ui-assets 1.2.2 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +190 -160
- package/dist/index.es.js.map +1 -1
- package/dist/schemas/copyBundle.d.ts +328 -235
- package/dist/schemas/journeyScreens.d.ts +221 -170
- package/dist/utils/detectBrowserLanguage.d.ts +1 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/supportedLanguages.d.ts +1 -0
- package/dist/utils/tests/detectBrowserLanguage.test.d.ts +1 -0
- package/package.json +2 -2
|
@@ -8,7 +8,7 @@ import { SignContract } from './signContract';
|
|
|
8
8
|
import { ConsentModal } from './consentModal';
|
|
9
9
|
import { PartnerTemplate } from './partnerTemplate';
|
|
10
10
|
import { ProvideAdditionalInfo } from './provideAdditionalInfo';
|
|
11
|
-
import { SlideoutPanel, ContactDetailsScreen, UserConsentScreen, CountryOfIncorporationScreen, EmailAlreadyRegisteredScreen, StateProvinceScreen, CompanyDetailsScreen, MonthlyRevenueScreen, BusinessDetails, BusinessModelScreen, NotInYourCountryYetScreen, NotInYourCountryYetConfirmationScreen, IneligibleCountryScreen, BusinessAlreadyOnWayflyerScreen, HandoverToWayflyerScreen } from './journeyScreens';
|
|
11
|
+
import { SlideoutPanel, ContactDetailsScreen, UserConsentScreen, CountryOfIncorporationScreen, EmailAlreadyRegisteredScreen, StateProvinceScreen, CompanyDetailsScreen, MonthlyRevenueScreen, BusinessDetails, BusinessModelScreen, NotInYourCountryYetScreen, NotInYourCountryYetConfirmationScreen, IneligibleCountryScreen, IneligibleBusinessModelScreen, BusinessAlreadyOnWayflyerScreen, HandoverToWayflyerScreen } from './journeyScreens';
|
|
12
12
|
|
|
13
13
|
type CohortMapOf<T> = {
|
|
14
14
|
default: T;
|
|
@@ -39,6 +39,7 @@ export interface CopyBundle {
|
|
|
39
39
|
notInYourCountryYetScreen?: LanguageMapOf<NotInYourCountryYetScreen>;
|
|
40
40
|
notInYourCountryYetConfirmationScreen?: LanguageMapOf<NotInYourCountryYetConfirmationScreen>;
|
|
41
41
|
ineligibleCountryScreen?: LanguageMapOf<IneligibleCountryScreen>;
|
|
42
|
+
ineligibleBusinessModelScreen?: LanguageMapOf<IneligibleBusinessModelScreen>;
|
|
42
43
|
businessAlreadyOnWayflyerScreen?: LanguageMapOf<BusinessAlreadyOnWayflyerScreen>;
|
|
43
44
|
handoverToWayflyerScreen?: LanguageMapOf<HandoverToWayflyerScreen>;
|
|
44
45
|
}
|
|
@@ -271,6 +272,19 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
271
272
|
} & {
|
|
272
273
|
header: z.ZodString;
|
|
273
274
|
secondaryAction: z.ZodString;
|
|
275
|
+
helpPopover: z.ZodObject<{
|
|
276
|
+
heading: z.ZodString;
|
|
277
|
+
text: z.ZodString;
|
|
278
|
+
linkLabel: z.ZodString;
|
|
279
|
+
}, "strip", z.ZodTypeAny, {
|
|
280
|
+
heading: string;
|
|
281
|
+
text: string;
|
|
282
|
+
linkLabel: string;
|
|
283
|
+
}, {
|
|
284
|
+
heading: string;
|
|
285
|
+
text: string;
|
|
286
|
+
linkLabel: string;
|
|
287
|
+
}>;
|
|
274
288
|
}, "strip", z.ZodTypeAny, {
|
|
275
289
|
version: string;
|
|
276
290
|
language: string;
|
|
@@ -278,6 +292,11 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
278
292
|
type: string;
|
|
279
293
|
header: string;
|
|
280
294
|
secondaryAction: string;
|
|
295
|
+
helpPopover: {
|
|
296
|
+
heading: string;
|
|
297
|
+
text: string;
|
|
298
|
+
linkLabel: string;
|
|
299
|
+
};
|
|
281
300
|
}, {
|
|
282
301
|
version: string;
|
|
283
302
|
language: string;
|
|
@@ -285,6 +304,11 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
285
304
|
type: string;
|
|
286
305
|
header: string;
|
|
287
306
|
secondaryAction: string;
|
|
307
|
+
helpPopover: {
|
|
308
|
+
heading: string;
|
|
309
|
+
text: string;
|
|
310
|
+
linkLabel: string;
|
|
311
|
+
};
|
|
288
312
|
}>;
|
|
289
313
|
contactDetailsScreen: z.ZodObject<{
|
|
290
314
|
version: z.ZodString;
|
|
@@ -356,11 +380,25 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
356
380
|
contactSupportUrl: string;
|
|
357
381
|
textAfterLink: string;
|
|
358
382
|
}>;
|
|
383
|
+
validation: z.ZodObject<{
|
|
384
|
+
phoneNumber: z.ZodString;
|
|
385
|
+
email: z.ZodString;
|
|
386
|
+
}, "strip", z.ZodTypeAny, {
|
|
387
|
+
email: string;
|
|
388
|
+
phoneNumber: string;
|
|
389
|
+
}, {
|
|
390
|
+
email: string;
|
|
391
|
+
phoneNumber: string;
|
|
392
|
+
}>;
|
|
359
393
|
}, "strip", z.ZodTypeAny, {
|
|
360
394
|
version: string;
|
|
361
395
|
language: string;
|
|
362
396
|
cohort: string;
|
|
363
397
|
type: string;
|
|
398
|
+
validation: {
|
|
399
|
+
email: string;
|
|
400
|
+
phoneNumber: string;
|
|
401
|
+
};
|
|
364
402
|
header: string;
|
|
365
403
|
text: string;
|
|
366
404
|
email: {
|
|
@@ -392,6 +430,10 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
392
430
|
language: string;
|
|
393
431
|
cohort: string;
|
|
394
432
|
type: string;
|
|
433
|
+
validation: {
|
|
434
|
+
email: string;
|
|
435
|
+
phoneNumber: string;
|
|
436
|
+
};
|
|
395
437
|
header: string;
|
|
396
438
|
text: string;
|
|
397
439
|
email: {
|
|
@@ -456,7 +498,31 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
456
498
|
alreadyHaveAnAccountText: string;
|
|
457
499
|
wayflyerSignInUrl: string;
|
|
458
500
|
}>;
|
|
459
|
-
consentNotice: z.
|
|
501
|
+
consentNotice: z.ZodObject<{
|
|
502
|
+
textBeforePrivacyLink: z.ZodString;
|
|
503
|
+
privacyPolicyLinkText: z.ZodString;
|
|
504
|
+
privacyPolicyUrl: z.ZodString;
|
|
505
|
+
textBetweenLinks: z.ZodString;
|
|
506
|
+
termsLinkText: z.ZodString;
|
|
507
|
+
termsUrl: z.ZodString;
|
|
508
|
+
textAfterTermsLink: z.ZodString;
|
|
509
|
+
}, "strip", z.ZodTypeAny, {
|
|
510
|
+
termsUrl: string;
|
|
511
|
+
textBeforePrivacyLink: string;
|
|
512
|
+
privacyPolicyLinkText: string;
|
|
513
|
+
privacyPolicyUrl: string;
|
|
514
|
+
textBetweenLinks: string;
|
|
515
|
+
termsLinkText: string;
|
|
516
|
+
textAfterTermsLink: string;
|
|
517
|
+
}, {
|
|
518
|
+
termsUrl: string;
|
|
519
|
+
textBeforePrivacyLink: string;
|
|
520
|
+
privacyPolicyLinkText: string;
|
|
521
|
+
privacyPolicyUrl: string;
|
|
522
|
+
textBetweenLinks: string;
|
|
523
|
+
termsLinkText: string;
|
|
524
|
+
textAfterTermsLink: string;
|
|
525
|
+
}>;
|
|
460
526
|
primaryAction: z.ZodObject<{
|
|
461
527
|
label: z.ZodString;
|
|
462
528
|
accessibilityLabel: z.ZodString;
|
|
@@ -508,7 +574,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
508
574
|
alreadyHaveAnAccountText: string;
|
|
509
575
|
wayflyerSignInUrl: string;
|
|
510
576
|
};
|
|
511
|
-
consentNotice:
|
|
577
|
+
consentNotice: {
|
|
578
|
+
termsUrl: string;
|
|
579
|
+
textBeforePrivacyLink: string;
|
|
580
|
+
privacyPolicyLinkText: string;
|
|
581
|
+
privacyPolicyUrl: string;
|
|
582
|
+
textBetweenLinks: string;
|
|
583
|
+
termsLinkText: string;
|
|
584
|
+
textAfterTermsLink: string;
|
|
585
|
+
};
|
|
512
586
|
startError: {
|
|
513
587
|
headline: string;
|
|
514
588
|
textBeforeLink: string;
|
|
@@ -538,7 +612,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
538
612
|
alreadyHaveAnAccountText: string;
|
|
539
613
|
wayflyerSignInUrl: string;
|
|
540
614
|
};
|
|
541
|
-
consentNotice:
|
|
615
|
+
consentNotice: {
|
|
616
|
+
termsUrl: string;
|
|
617
|
+
textBeforePrivacyLink: string;
|
|
618
|
+
privacyPolicyLinkText: string;
|
|
619
|
+
privacyPolicyUrl: string;
|
|
620
|
+
textBetweenLinks: string;
|
|
621
|
+
termsLinkText: string;
|
|
622
|
+
textAfterTermsLink: string;
|
|
623
|
+
};
|
|
542
624
|
startError: {
|
|
543
625
|
headline: string;
|
|
544
626
|
textBeforeLink: string;
|
|
@@ -563,86 +645,21 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
563
645
|
}, {
|
|
564
646
|
label: string;
|
|
565
647
|
}>;
|
|
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
648
|
}, "strip", z.ZodTypeAny, {
|
|
602
649
|
agreedOnApplicationServicesUpdateNews: {
|
|
603
650
|
label: string;
|
|
604
651
|
};
|
|
605
|
-
agreedWithTermsAndCondition: {
|
|
606
|
-
label: {
|
|
607
|
-
textOne: string;
|
|
608
|
-
textTwo: string;
|
|
609
|
-
wayflyerTermsAndConditionsUrl: string;
|
|
610
|
-
wayflyerPrivacyPolicyUrl: string;
|
|
611
|
-
};
|
|
612
|
-
error: string;
|
|
613
|
-
};
|
|
614
652
|
}, {
|
|
615
653
|
agreedOnApplicationServicesUpdateNews: {
|
|
616
654
|
label: string;
|
|
617
655
|
};
|
|
618
|
-
agreedWithTermsAndCondition: {
|
|
619
|
-
label: {
|
|
620
|
-
textOne: string;
|
|
621
|
-
textTwo: string;
|
|
622
|
-
wayflyerTermsAndConditionsUrl: string;
|
|
623
|
-
wayflyerPrivacyPolicyUrl: string;
|
|
624
|
-
};
|
|
625
|
-
error: string;
|
|
626
|
-
};
|
|
627
656
|
}>;
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
textOne: z.ZodString;
|
|
631
|
-
textTwo: z.ZodString;
|
|
632
|
-
wayflyerGetInTouchUrl: z.ZodString;
|
|
633
|
-
wayflyerHelpCenterUrl: z.ZodString;
|
|
657
|
+
validation: z.ZodObject<{
|
|
658
|
+
countryRequired: z.ZodString;
|
|
634
659
|
}, "strip", z.ZodTypeAny, {
|
|
635
|
-
|
|
636
|
-
textTwo: string;
|
|
637
|
-
head: string;
|
|
638
|
-
wayflyerGetInTouchUrl: string;
|
|
639
|
-
wayflyerHelpCenterUrl: string;
|
|
660
|
+
countryRequired: string;
|
|
640
661
|
}, {
|
|
641
|
-
|
|
642
|
-
textTwo: string;
|
|
643
|
-
head: string;
|
|
644
|
-
wayflyerGetInTouchUrl: string;
|
|
645
|
-
wayflyerHelpCenterUrl: string;
|
|
662
|
+
countryRequired: string;
|
|
646
663
|
}>;
|
|
647
664
|
primaryAction: z.ZodObject<{
|
|
648
665
|
label: z.ZodString;
|
|
@@ -659,6 +676,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
659
676
|
language: string;
|
|
660
677
|
cohort: string;
|
|
661
678
|
type: string;
|
|
679
|
+
validation: {
|
|
680
|
+
countryRequired: string;
|
|
681
|
+
};
|
|
662
682
|
header: string;
|
|
663
683
|
text: string;
|
|
664
684
|
primaryAction: {
|
|
@@ -669,28 +689,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
669
689
|
agreedOnApplicationServicesUpdateNews: {
|
|
670
690
|
label: string;
|
|
671
691
|
};
|
|
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
692
|
};
|
|
689
693
|
}, {
|
|
690
694
|
version: string;
|
|
691
695
|
language: string;
|
|
692
696
|
cohort: string;
|
|
693
697
|
type: string;
|
|
698
|
+
validation: {
|
|
699
|
+
countryRequired: string;
|
|
700
|
+
};
|
|
694
701
|
header: string;
|
|
695
702
|
text: string;
|
|
696
703
|
primaryAction: {
|
|
@@ -701,22 +708,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
701
708
|
agreedOnApplicationServicesUpdateNews: {
|
|
702
709
|
label: string;
|
|
703
710
|
};
|
|
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
711
|
};
|
|
721
712
|
}>;
|
|
722
713
|
emailAlreadyRegisteredScreen: z.ZodObject<{
|
|
@@ -728,19 +719,13 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
728
719
|
header: z.ZodString;
|
|
729
720
|
body: z.ZodObject<{
|
|
730
721
|
textOne: z.ZodString;
|
|
731
|
-
supportTeamLink: z.ZodString;
|
|
732
|
-
supportTeamUrl: z.ZodString;
|
|
733
722
|
textTwo: z.ZodString;
|
|
734
723
|
}, "strip", z.ZodTypeAny, {
|
|
735
724
|
textOne: string;
|
|
736
725
|
textTwo: string;
|
|
737
|
-
supportTeamLink: string;
|
|
738
|
-
supportTeamUrl: string;
|
|
739
726
|
}, {
|
|
740
727
|
textOne: string;
|
|
741
728
|
textTwo: string;
|
|
742
|
-
supportTeamLink: string;
|
|
743
|
-
supportTeamUrl: string;
|
|
744
729
|
}>;
|
|
745
730
|
primaryAction: z.ZodObject<{
|
|
746
731
|
label: z.ZodString;
|
|
@@ -770,8 +755,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
770
755
|
body: {
|
|
771
756
|
textOne: string;
|
|
772
757
|
textTwo: string;
|
|
773
|
-
supportTeamLink: string;
|
|
774
|
-
supportTeamUrl: string;
|
|
775
758
|
};
|
|
776
759
|
}, {
|
|
777
760
|
version: string;
|
|
@@ -787,8 +770,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
787
770
|
body: {
|
|
788
771
|
textOne: string;
|
|
789
772
|
textTwo: string;
|
|
790
|
-
supportTeamLink: string;
|
|
791
|
-
supportTeamUrl: string;
|
|
792
773
|
};
|
|
793
774
|
}>;
|
|
794
775
|
stateProvinceScreen: z.ZodObject<{
|
|
@@ -843,6 +824,16 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
843
824
|
searchPlaceholder: string;
|
|
844
825
|
helperText: string;
|
|
845
826
|
}>;
|
|
827
|
+
validation: z.ZodObject<{
|
|
828
|
+
stateRequired: z.ZodString;
|
|
829
|
+
pobRequired: z.ZodString;
|
|
830
|
+
}, "strip", z.ZodTypeAny, {
|
|
831
|
+
stateRequired: string;
|
|
832
|
+
pobRequired: string;
|
|
833
|
+
}, {
|
|
834
|
+
stateRequired: string;
|
|
835
|
+
pobRequired: string;
|
|
836
|
+
}>;
|
|
846
837
|
primaryAction: z.ZodObject<{
|
|
847
838
|
label: z.ZodString;
|
|
848
839
|
accessibilityLabel: z.ZodString;
|
|
@@ -858,6 +849,10 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
858
849
|
language: string;
|
|
859
850
|
cohort: string;
|
|
860
851
|
type: string;
|
|
852
|
+
validation: {
|
|
853
|
+
stateRequired: string;
|
|
854
|
+
pobRequired: string;
|
|
855
|
+
};
|
|
861
856
|
primaryAction: {
|
|
862
857
|
label: string;
|
|
863
858
|
accessibilityLabel: string;
|
|
@@ -887,6 +882,10 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
887
882
|
language: string;
|
|
888
883
|
cohort: string;
|
|
889
884
|
type: string;
|
|
885
|
+
validation: {
|
|
886
|
+
stateRequired: string;
|
|
887
|
+
pobRequired: string;
|
|
888
|
+
};
|
|
890
889
|
primaryAction: {
|
|
891
890
|
label: string;
|
|
892
891
|
accessibilityLabel: string;
|
|
@@ -1158,10 +1157,13 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1158
1157
|
}>;
|
|
1159
1158
|
dateOfIncorporationInput: z.ZodObject<{
|
|
1160
1159
|
label: z.ZodString;
|
|
1160
|
+
helperText: z.ZodString;
|
|
1161
1161
|
}, "strip", z.ZodTypeAny, {
|
|
1162
1162
|
label: string;
|
|
1163
|
+
helperText: string;
|
|
1163
1164
|
}, {
|
|
1164
1165
|
label: string;
|
|
1166
|
+
helperText: string;
|
|
1165
1167
|
}>;
|
|
1166
1168
|
industryInput: z.ZodObject<{
|
|
1167
1169
|
label: z.ZodString;
|
|
@@ -1197,16 +1199,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1197
1199
|
}, {
|
|
1198
1200
|
label: string;
|
|
1199
1201
|
}>;
|
|
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
1202
|
proofOfRegistration: z.ZodObject<{
|
|
1211
1203
|
title: z.ZodString;
|
|
1212
1204
|
description: z.ZodString;
|
|
@@ -1238,6 +1230,34 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1238
1230
|
accessibilityLabel: string;
|
|
1239
1231
|
};
|
|
1240
1232
|
}>;
|
|
1233
|
+
validation: z.ZodObject<{
|
|
1234
|
+
legalName: z.ZodString;
|
|
1235
|
+
dateOfIncorporation: z.ZodString;
|
|
1236
|
+
dateOfIncorporationRequired: z.ZodString;
|
|
1237
|
+
businessType: z.ZodString;
|
|
1238
|
+
industryType: z.ZodString;
|
|
1239
|
+
websiteOrNoWebsite: z.ZodString;
|
|
1240
|
+
websiteUrl: z.ZodString;
|
|
1241
|
+
proofOfRegistration: z.ZodString;
|
|
1242
|
+
}, "strip", z.ZodTypeAny, {
|
|
1243
|
+
proofOfRegistration: string;
|
|
1244
|
+
legalName: string;
|
|
1245
|
+
dateOfIncorporation: string;
|
|
1246
|
+
dateOfIncorporationRequired: string;
|
|
1247
|
+
businessType: string;
|
|
1248
|
+
industryType: string;
|
|
1249
|
+
websiteOrNoWebsite: string;
|
|
1250
|
+
websiteUrl: string;
|
|
1251
|
+
}, {
|
|
1252
|
+
proofOfRegistration: string;
|
|
1253
|
+
legalName: string;
|
|
1254
|
+
dateOfIncorporation: string;
|
|
1255
|
+
dateOfIncorporationRequired: string;
|
|
1256
|
+
businessType: string;
|
|
1257
|
+
industryType: string;
|
|
1258
|
+
websiteOrNoWebsite: string;
|
|
1259
|
+
websiteUrl: string;
|
|
1260
|
+
}>;
|
|
1241
1261
|
primaryAction: z.ZodObject<{
|
|
1242
1262
|
label: z.ZodString;
|
|
1243
1263
|
accessibilityLabel: z.ZodString;
|
|
@@ -1253,6 +1273,16 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1253
1273
|
language: string;
|
|
1254
1274
|
cohort: string;
|
|
1255
1275
|
type: string;
|
|
1276
|
+
validation: {
|
|
1277
|
+
proofOfRegistration: string;
|
|
1278
|
+
legalName: string;
|
|
1279
|
+
dateOfIncorporation: string;
|
|
1280
|
+
dateOfIncorporationRequired: string;
|
|
1281
|
+
businessType: string;
|
|
1282
|
+
industryType: string;
|
|
1283
|
+
websiteOrNoWebsite: string;
|
|
1284
|
+
websiteUrl: string;
|
|
1285
|
+
};
|
|
1256
1286
|
header: string;
|
|
1257
1287
|
text: string;
|
|
1258
1288
|
phoneNumberInput: {
|
|
@@ -1262,10 +1292,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1262
1292
|
label: string;
|
|
1263
1293
|
accessibilityLabel: string;
|
|
1264
1294
|
};
|
|
1265
|
-
helperTextsBlock: {
|
|
1266
|
-
textOne: string;
|
|
1267
|
-
textTwo: string;
|
|
1268
|
-
};
|
|
1269
1295
|
businessSearchInput: {
|
|
1270
1296
|
label: string;
|
|
1271
1297
|
placeholder: string;
|
|
@@ -1277,6 +1303,7 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1277
1303
|
};
|
|
1278
1304
|
dateOfIncorporationInput: {
|
|
1279
1305
|
label: string;
|
|
1306
|
+
helperText: string;
|
|
1280
1307
|
};
|
|
1281
1308
|
industryInput: {
|
|
1282
1309
|
label: string;
|
|
@@ -1303,6 +1330,16 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1303
1330
|
language: string;
|
|
1304
1331
|
cohort: string;
|
|
1305
1332
|
type: string;
|
|
1333
|
+
validation: {
|
|
1334
|
+
proofOfRegistration: string;
|
|
1335
|
+
legalName: string;
|
|
1336
|
+
dateOfIncorporation: string;
|
|
1337
|
+
dateOfIncorporationRequired: string;
|
|
1338
|
+
businessType: string;
|
|
1339
|
+
industryType: string;
|
|
1340
|
+
websiteOrNoWebsite: string;
|
|
1341
|
+
websiteUrl: string;
|
|
1342
|
+
};
|
|
1306
1343
|
header: string;
|
|
1307
1344
|
text: string;
|
|
1308
1345
|
phoneNumberInput: {
|
|
@@ -1312,10 +1349,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1312
1349
|
label: string;
|
|
1313
1350
|
accessibilityLabel: string;
|
|
1314
1351
|
};
|
|
1315
|
-
helperTextsBlock: {
|
|
1316
|
-
textOne: string;
|
|
1317
|
-
textTwo: string;
|
|
1318
|
-
};
|
|
1319
1352
|
businessSearchInput: {
|
|
1320
1353
|
label: string;
|
|
1321
1354
|
placeholder: string;
|
|
@@ -1327,6 +1360,7 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1327
1360
|
};
|
|
1328
1361
|
dateOfIncorporationInput: {
|
|
1329
1362
|
label: string;
|
|
1363
|
+
helperText: string;
|
|
1330
1364
|
};
|
|
1331
1365
|
industryInput: {
|
|
1332
1366
|
label: string;
|
|
@@ -1532,27 +1566,12 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1532
1566
|
label: string;
|
|
1533
1567
|
accessibilityLabel: string;
|
|
1534
1568
|
}>;
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
textBeforeLink: z.ZodString;
|
|
1538
|
-
linkText: z.ZodString;
|
|
1539
|
-
textAfterLink: z.ZodString;
|
|
1540
|
-
linkAccessibilityLabel: z.ZodString;
|
|
1541
|
-
supportArticleUrl: z.ZodString;
|
|
1569
|
+
validation: z.ZodObject<{
|
|
1570
|
+
atLeastOneRequired: z.ZodString;
|
|
1542
1571
|
}, "strip", z.ZodTypeAny, {
|
|
1543
|
-
|
|
1544
|
-
textBeforeLink: string;
|
|
1545
|
-
textAfterLink: string;
|
|
1546
|
-
linkText: string;
|
|
1547
|
-
linkAccessibilityLabel: string;
|
|
1548
|
-
supportArticleUrl: string;
|
|
1572
|
+
atLeastOneRequired: string;
|
|
1549
1573
|
}, {
|
|
1550
|
-
|
|
1551
|
-
textBeforeLink: string;
|
|
1552
|
-
textAfterLink: string;
|
|
1553
|
-
linkText: string;
|
|
1554
|
-
linkAccessibilityLabel: string;
|
|
1555
|
-
supportArticleUrl: string;
|
|
1574
|
+
atLeastOneRequired: string;
|
|
1556
1575
|
}>;
|
|
1557
1576
|
submitError: z.ZodObject<{
|
|
1558
1577
|
message: z.ZodString;
|
|
@@ -1566,6 +1585,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1566
1585
|
language: string;
|
|
1567
1586
|
cohort: string;
|
|
1568
1587
|
type: string;
|
|
1588
|
+
validation: {
|
|
1589
|
+
atLeastOneRequired: string;
|
|
1590
|
+
};
|
|
1569
1591
|
header: string;
|
|
1570
1592
|
text: string;
|
|
1571
1593
|
primaryAction: {
|
|
@@ -1616,19 +1638,14 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1616
1638
|
description: string;
|
|
1617
1639
|
};
|
|
1618
1640
|
};
|
|
1619
|
-
unsupportedBusinessModel: {
|
|
1620
|
-
title: string;
|
|
1621
|
-
textBeforeLink: string;
|
|
1622
|
-
textAfterLink: string;
|
|
1623
|
-
linkText: string;
|
|
1624
|
-
linkAccessibilityLabel: string;
|
|
1625
|
-
supportArticleUrl: string;
|
|
1626
|
-
};
|
|
1627
1641
|
}, {
|
|
1628
1642
|
version: string;
|
|
1629
1643
|
language: string;
|
|
1630
1644
|
cohort: string;
|
|
1631
1645
|
type: string;
|
|
1646
|
+
validation: {
|
|
1647
|
+
atLeastOneRequired: string;
|
|
1648
|
+
};
|
|
1632
1649
|
header: string;
|
|
1633
1650
|
text: string;
|
|
1634
1651
|
primaryAction: {
|
|
@@ -1679,14 +1696,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1679
1696
|
description: string;
|
|
1680
1697
|
};
|
|
1681
1698
|
};
|
|
1682
|
-
unsupportedBusinessModel: {
|
|
1683
|
-
title: string;
|
|
1684
|
-
textBeforeLink: string;
|
|
1685
|
-
textAfterLink: string;
|
|
1686
|
-
linkText: string;
|
|
1687
|
-
linkAccessibilityLabel: string;
|
|
1688
|
-
supportArticleUrl: string;
|
|
1689
|
-
};
|
|
1690
1699
|
}>;
|
|
1691
1700
|
notInYourCountryYetScreen: z.ZodObject<{
|
|
1692
1701
|
version: z.ZodString;
|
|
@@ -1713,6 +1722,13 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1713
1722
|
}, {
|
|
1714
1723
|
label: string;
|
|
1715
1724
|
}>;
|
|
1725
|
+
validation: z.ZodObject<{
|
|
1726
|
+
countryRequired: z.ZodString;
|
|
1727
|
+
}, "strip", z.ZodTypeAny, {
|
|
1728
|
+
countryRequired: string;
|
|
1729
|
+
}, {
|
|
1730
|
+
countryRequired: string;
|
|
1731
|
+
}>;
|
|
1716
1732
|
primaryAction: z.ZodObject<{
|
|
1717
1733
|
label: z.ZodString;
|
|
1718
1734
|
accessibilityLabel: z.ZodString;
|
|
@@ -1728,6 +1744,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1728
1744
|
language: string;
|
|
1729
1745
|
cohort: string;
|
|
1730
1746
|
type: string;
|
|
1747
|
+
validation: {
|
|
1748
|
+
countryRequired: string;
|
|
1749
|
+
};
|
|
1731
1750
|
header: string;
|
|
1732
1751
|
text: string;
|
|
1733
1752
|
primaryAction: {
|
|
@@ -1746,6 +1765,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1746
1765
|
language: string;
|
|
1747
1766
|
cohort: string;
|
|
1748
1767
|
type: string;
|
|
1768
|
+
validation: {
|
|
1769
|
+
countryRequired: string;
|
|
1770
|
+
};
|
|
1749
1771
|
header: string;
|
|
1750
1772
|
text: string;
|
|
1751
1773
|
primaryAction: {
|
|
@@ -1888,6 +1910,38 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1888
1910
|
linkUrl: string;
|
|
1889
1911
|
};
|
|
1890
1912
|
}>;
|
|
1913
|
+
ineligibleBusinessModelScreen: z.ZodObject<{
|
|
1914
|
+
version: z.ZodString;
|
|
1915
|
+
language: z.ZodString;
|
|
1916
|
+
cohort: z.ZodString;
|
|
1917
|
+
type: z.ZodString;
|
|
1918
|
+
} & {
|
|
1919
|
+
header: z.ZodString;
|
|
1920
|
+
textBeforeLink: z.ZodString;
|
|
1921
|
+
linkText: z.ZodString;
|
|
1922
|
+
linkUrl: z.ZodString;
|
|
1923
|
+
textAfterLink: z.ZodString;
|
|
1924
|
+
}, "strip", z.ZodTypeAny, {
|
|
1925
|
+
version: string;
|
|
1926
|
+
language: string;
|
|
1927
|
+
cohort: string;
|
|
1928
|
+
type: string;
|
|
1929
|
+
header: string;
|
|
1930
|
+
textBeforeLink: string;
|
|
1931
|
+
textAfterLink: string;
|
|
1932
|
+
linkText: string;
|
|
1933
|
+
linkUrl: string;
|
|
1934
|
+
}, {
|
|
1935
|
+
version: string;
|
|
1936
|
+
language: string;
|
|
1937
|
+
cohort: string;
|
|
1938
|
+
type: string;
|
|
1939
|
+
header: string;
|
|
1940
|
+
textBeforeLink: string;
|
|
1941
|
+
textAfterLink: string;
|
|
1942
|
+
linkText: string;
|
|
1943
|
+
linkUrl: string;
|
|
1944
|
+
}>;
|
|
1891
1945
|
businessAlreadyOnWayflyerScreen: z.ZodObject<{
|
|
1892
1946
|
version: z.ZodString;
|
|
1893
1947
|
language: z.ZodString;
|
|
@@ -1985,7 +2039,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
1985
2039
|
reviewFundingOffer: string;
|
|
1986
2040
|
receiveFunds: string;
|
|
1987
2041
|
}>;
|
|
1988
|
-
footerNote: z.ZodString;
|
|
1989
2042
|
primaryAction: z.ZodObject<{
|
|
1990
2043
|
label: z.ZodString;
|
|
1991
2044
|
accessibilityLabel: z.ZodString;
|
|
@@ -2025,7 +2078,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2025
2078
|
reviewFundingOffer: string;
|
|
2026
2079
|
receiveFunds: string;
|
|
2027
2080
|
};
|
|
2028
|
-
footerNote: string;
|
|
2029
2081
|
}, {
|
|
2030
2082
|
version: string;
|
|
2031
2083
|
language: string;
|
|
@@ -2048,7 +2100,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2048
2100
|
reviewFundingOffer: string;
|
|
2049
2101
|
receiveFunds: string;
|
|
2050
2102
|
};
|
|
2051
|
-
footerNote: string;
|
|
2052
2103
|
}>;
|
|
2053
2104
|
}, "strip", z.ZodTypeAny, {
|
|
2054
2105
|
genericOffer: {
|
|
@@ -2127,12 +2178,21 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2127
2178
|
type: string;
|
|
2128
2179
|
header: string;
|
|
2129
2180
|
secondaryAction: string;
|
|
2181
|
+
helpPopover: {
|
|
2182
|
+
heading: string;
|
|
2183
|
+
text: string;
|
|
2184
|
+
linkLabel: string;
|
|
2185
|
+
};
|
|
2130
2186
|
};
|
|
2131
2187
|
contactDetailsScreen: {
|
|
2132
2188
|
version: string;
|
|
2133
2189
|
language: string;
|
|
2134
2190
|
cohort: string;
|
|
2135
2191
|
type: string;
|
|
2192
|
+
validation: {
|
|
2193
|
+
email: string;
|
|
2194
|
+
phoneNumber: string;
|
|
2195
|
+
};
|
|
2136
2196
|
header: string;
|
|
2137
2197
|
text: string;
|
|
2138
2198
|
email: {
|
|
@@ -2182,7 +2242,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2182
2242
|
alreadyHaveAnAccountText: string;
|
|
2183
2243
|
wayflyerSignInUrl: string;
|
|
2184
2244
|
};
|
|
2185
|
-
consentNotice:
|
|
2245
|
+
consentNotice: {
|
|
2246
|
+
termsUrl: string;
|
|
2247
|
+
textBeforePrivacyLink: string;
|
|
2248
|
+
privacyPolicyLinkText: string;
|
|
2249
|
+
privacyPolicyUrl: string;
|
|
2250
|
+
textBetweenLinks: string;
|
|
2251
|
+
termsLinkText: string;
|
|
2252
|
+
textAfterTermsLink: string;
|
|
2253
|
+
};
|
|
2186
2254
|
startError: {
|
|
2187
2255
|
headline: string;
|
|
2188
2256
|
textBeforeLink: string;
|
|
@@ -2196,6 +2264,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2196
2264
|
language: string;
|
|
2197
2265
|
cohort: string;
|
|
2198
2266
|
type: string;
|
|
2267
|
+
validation: {
|
|
2268
|
+
countryRequired: string;
|
|
2269
|
+
};
|
|
2199
2270
|
header: string;
|
|
2200
2271
|
text: string;
|
|
2201
2272
|
primaryAction: {
|
|
@@ -2206,22 +2277,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2206
2277
|
agreedOnApplicationServicesUpdateNews: {
|
|
2207
2278
|
label: string;
|
|
2208
2279
|
};
|
|
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
2280
|
};
|
|
2226
2281
|
};
|
|
2227
2282
|
emailAlreadyRegisteredScreen: {
|
|
@@ -2238,8 +2293,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2238
2293
|
body: {
|
|
2239
2294
|
textOne: string;
|
|
2240
2295
|
textTwo: string;
|
|
2241
|
-
supportTeamLink: string;
|
|
2242
|
-
supportTeamUrl: string;
|
|
2243
2296
|
};
|
|
2244
2297
|
};
|
|
2245
2298
|
stateProvinceScreen: {
|
|
@@ -2247,6 +2300,10 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2247
2300
|
language: string;
|
|
2248
2301
|
cohort: string;
|
|
2249
2302
|
type: string;
|
|
2303
|
+
validation: {
|
|
2304
|
+
stateRequired: string;
|
|
2305
|
+
pobRequired: string;
|
|
2306
|
+
};
|
|
2250
2307
|
primaryAction: {
|
|
2251
2308
|
label: string;
|
|
2252
2309
|
accessibilityLabel: string;
|
|
@@ -2324,6 +2381,16 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2324
2381
|
language: string;
|
|
2325
2382
|
cohort: string;
|
|
2326
2383
|
type: string;
|
|
2384
|
+
validation: {
|
|
2385
|
+
proofOfRegistration: string;
|
|
2386
|
+
legalName: string;
|
|
2387
|
+
dateOfIncorporation: string;
|
|
2388
|
+
dateOfIncorporationRequired: string;
|
|
2389
|
+
businessType: string;
|
|
2390
|
+
industryType: string;
|
|
2391
|
+
websiteOrNoWebsite: string;
|
|
2392
|
+
websiteUrl: string;
|
|
2393
|
+
};
|
|
2327
2394
|
header: string;
|
|
2328
2395
|
text: string;
|
|
2329
2396
|
phoneNumberInput: {
|
|
@@ -2333,10 +2400,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2333
2400
|
label: string;
|
|
2334
2401
|
accessibilityLabel: string;
|
|
2335
2402
|
};
|
|
2336
|
-
helperTextsBlock: {
|
|
2337
|
-
textOne: string;
|
|
2338
|
-
textTwo: string;
|
|
2339
|
-
};
|
|
2340
2403
|
businessSearchInput: {
|
|
2341
2404
|
label: string;
|
|
2342
2405
|
placeholder: string;
|
|
@@ -2348,6 +2411,7 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2348
2411
|
};
|
|
2349
2412
|
dateOfIncorporationInput: {
|
|
2350
2413
|
label: string;
|
|
2414
|
+
helperText: string;
|
|
2351
2415
|
};
|
|
2352
2416
|
industryInput: {
|
|
2353
2417
|
label: string;
|
|
@@ -2375,6 +2439,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2375
2439
|
language: string;
|
|
2376
2440
|
cohort: string;
|
|
2377
2441
|
type: string;
|
|
2442
|
+
validation: {
|
|
2443
|
+
atLeastOneRequired: string;
|
|
2444
|
+
};
|
|
2378
2445
|
header: string;
|
|
2379
2446
|
text: string;
|
|
2380
2447
|
primaryAction: {
|
|
@@ -2425,20 +2492,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2425
2492
|
description: string;
|
|
2426
2493
|
};
|
|
2427
2494
|
};
|
|
2428
|
-
unsupportedBusinessModel: {
|
|
2429
|
-
title: string;
|
|
2430
|
-
textBeforeLink: string;
|
|
2431
|
-
textAfterLink: string;
|
|
2432
|
-
linkText: string;
|
|
2433
|
-
linkAccessibilityLabel: string;
|
|
2434
|
-
supportArticleUrl: string;
|
|
2435
|
-
};
|
|
2436
2495
|
};
|
|
2437
2496
|
notInYourCountryYetScreen: {
|
|
2438
2497
|
version: string;
|
|
2439
2498
|
language: string;
|
|
2440
2499
|
cohort: string;
|
|
2441
2500
|
type: string;
|
|
2501
|
+
validation: {
|
|
2502
|
+
countryRequired: string;
|
|
2503
|
+
};
|
|
2442
2504
|
header: string;
|
|
2443
2505
|
text: string;
|
|
2444
2506
|
primaryAction: {
|
|
@@ -2487,6 +2549,17 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2487
2549
|
linkUrl: string;
|
|
2488
2550
|
};
|
|
2489
2551
|
};
|
|
2552
|
+
ineligibleBusinessModelScreen: {
|
|
2553
|
+
version: string;
|
|
2554
|
+
language: string;
|
|
2555
|
+
cohort: string;
|
|
2556
|
+
type: string;
|
|
2557
|
+
header: string;
|
|
2558
|
+
textBeforeLink: string;
|
|
2559
|
+
textAfterLink: string;
|
|
2560
|
+
linkText: string;
|
|
2561
|
+
linkUrl: string;
|
|
2562
|
+
};
|
|
2490
2563
|
businessAlreadyOnWayflyerScreen: {
|
|
2491
2564
|
version: string;
|
|
2492
2565
|
language: string;
|
|
@@ -2527,7 +2600,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2527
2600
|
reviewFundingOffer: string;
|
|
2528
2601
|
receiveFunds: string;
|
|
2529
2602
|
};
|
|
2530
|
-
footerNote: string;
|
|
2531
2603
|
};
|
|
2532
2604
|
partnerTemplate?: {
|
|
2533
2605
|
version: string;
|
|
@@ -2613,12 +2685,21 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2613
2685
|
type: string;
|
|
2614
2686
|
header: string;
|
|
2615
2687
|
secondaryAction: string;
|
|
2688
|
+
helpPopover: {
|
|
2689
|
+
heading: string;
|
|
2690
|
+
text: string;
|
|
2691
|
+
linkLabel: string;
|
|
2692
|
+
};
|
|
2616
2693
|
};
|
|
2617
2694
|
contactDetailsScreen: {
|
|
2618
2695
|
version: string;
|
|
2619
2696
|
language: string;
|
|
2620
2697
|
cohort: string;
|
|
2621
2698
|
type: string;
|
|
2699
|
+
validation: {
|
|
2700
|
+
email: string;
|
|
2701
|
+
phoneNumber: string;
|
|
2702
|
+
};
|
|
2622
2703
|
header: string;
|
|
2623
2704
|
text: string;
|
|
2624
2705
|
email: {
|
|
@@ -2668,7 +2749,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2668
2749
|
alreadyHaveAnAccountText: string;
|
|
2669
2750
|
wayflyerSignInUrl: string;
|
|
2670
2751
|
};
|
|
2671
|
-
consentNotice:
|
|
2752
|
+
consentNotice: {
|
|
2753
|
+
termsUrl: string;
|
|
2754
|
+
textBeforePrivacyLink: string;
|
|
2755
|
+
privacyPolicyLinkText: string;
|
|
2756
|
+
privacyPolicyUrl: string;
|
|
2757
|
+
textBetweenLinks: string;
|
|
2758
|
+
termsLinkText: string;
|
|
2759
|
+
textAfterTermsLink: string;
|
|
2760
|
+
};
|
|
2672
2761
|
startError: {
|
|
2673
2762
|
headline: string;
|
|
2674
2763
|
textBeforeLink: string;
|
|
@@ -2682,6 +2771,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2682
2771
|
language: string;
|
|
2683
2772
|
cohort: string;
|
|
2684
2773
|
type: string;
|
|
2774
|
+
validation: {
|
|
2775
|
+
countryRequired: string;
|
|
2776
|
+
};
|
|
2685
2777
|
header: string;
|
|
2686
2778
|
text: string;
|
|
2687
2779
|
primaryAction: {
|
|
@@ -2692,22 +2784,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2692
2784
|
agreedOnApplicationServicesUpdateNews: {
|
|
2693
2785
|
label: string;
|
|
2694
2786
|
};
|
|
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
2787
|
};
|
|
2712
2788
|
};
|
|
2713
2789
|
emailAlreadyRegisteredScreen: {
|
|
@@ -2724,8 +2800,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2724
2800
|
body: {
|
|
2725
2801
|
textOne: string;
|
|
2726
2802
|
textTwo: string;
|
|
2727
|
-
supportTeamLink: string;
|
|
2728
|
-
supportTeamUrl: string;
|
|
2729
2803
|
};
|
|
2730
2804
|
};
|
|
2731
2805
|
stateProvinceScreen: {
|
|
@@ -2733,6 +2807,10 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2733
2807
|
language: string;
|
|
2734
2808
|
cohort: string;
|
|
2735
2809
|
type: string;
|
|
2810
|
+
validation: {
|
|
2811
|
+
stateRequired: string;
|
|
2812
|
+
pobRequired: string;
|
|
2813
|
+
};
|
|
2736
2814
|
primaryAction: {
|
|
2737
2815
|
label: string;
|
|
2738
2816
|
accessibilityLabel: string;
|
|
@@ -2810,6 +2888,16 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2810
2888
|
language: string;
|
|
2811
2889
|
cohort: string;
|
|
2812
2890
|
type: string;
|
|
2891
|
+
validation: {
|
|
2892
|
+
proofOfRegistration: string;
|
|
2893
|
+
legalName: string;
|
|
2894
|
+
dateOfIncorporation: string;
|
|
2895
|
+
dateOfIncorporationRequired: string;
|
|
2896
|
+
businessType: string;
|
|
2897
|
+
industryType: string;
|
|
2898
|
+
websiteOrNoWebsite: string;
|
|
2899
|
+
websiteUrl: string;
|
|
2900
|
+
};
|
|
2813
2901
|
header: string;
|
|
2814
2902
|
text: string;
|
|
2815
2903
|
phoneNumberInput: {
|
|
@@ -2819,10 +2907,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2819
2907
|
label: string;
|
|
2820
2908
|
accessibilityLabel: string;
|
|
2821
2909
|
};
|
|
2822
|
-
helperTextsBlock: {
|
|
2823
|
-
textOne: string;
|
|
2824
|
-
textTwo: string;
|
|
2825
|
-
};
|
|
2826
2910
|
businessSearchInput: {
|
|
2827
2911
|
label: string;
|
|
2828
2912
|
placeholder: string;
|
|
@@ -2834,6 +2918,7 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2834
2918
|
};
|
|
2835
2919
|
dateOfIncorporationInput: {
|
|
2836
2920
|
label: string;
|
|
2921
|
+
helperText: string;
|
|
2837
2922
|
};
|
|
2838
2923
|
industryInput: {
|
|
2839
2924
|
label: string;
|
|
@@ -2861,6 +2946,9 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2861
2946
|
language: string;
|
|
2862
2947
|
cohort: string;
|
|
2863
2948
|
type: string;
|
|
2949
|
+
validation: {
|
|
2950
|
+
atLeastOneRequired: string;
|
|
2951
|
+
};
|
|
2864
2952
|
header: string;
|
|
2865
2953
|
text: string;
|
|
2866
2954
|
primaryAction: {
|
|
@@ -2911,20 +2999,15 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2911
2999
|
description: string;
|
|
2912
3000
|
};
|
|
2913
3001
|
};
|
|
2914
|
-
unsupportedBusinessModel: {
|
|
2915
|
-
title: string;
|
|
2916
|
-
textBeforeLink: string;
|
|
2917
|
-
textAfterLink: string;
|
|
2918
|
-
linkText: string;
|
|
2919
|
-
linkAccessibilityLabel: string;
|
|
2920
|
-
supportArticleUrl: string;
|
|
2921
|
-
};
|
|
2922
3002
|
};
|
|
2923
3003
|
notInYourCountryYetScreen: {
|
|
2924
3004
|
version: string;
|
|
2925
3005
|
language: string;
|
|
2926
3006
|
cohort: string;
|
|
2927
3007
|
type: string;
|
|
3008
|
+
validation: {
|
|
3009
|
+
countryRequired: string;
|
|
3010
|
+
};
|
|
2928
3011
|
header: string;
|
|
2929
3012
|
text: string;
|
|
2930
3013
|
primaryAction: {
|
|
@@ -2973,6 +3056,17 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
2973
3056
|
linkUrl: string;
|
|
2974
3057
|
};
|
|
2975
3058
|
};
|
|
3059
|
+
ineligibleBusinessModelScreen: {
|
|
3060
|
+
version: string;
|
|
3061
|
+
language: string;
|
|
3062
|
+
cohort: string;
|
|
3063
|
+
type: string;
|
|
3064
|
+
header: string;
|
|
3065
|
+
textBeforeLink: string;
|
|
3066
|
+
textAfterLink: string;
|
|
3067
|
+
linkText: string;
|
|
3068
|
+
linkUrl: string;
|
|
3069
|
+
};
|
|
2976
3070
|
businessAlreadyOnWayflyerScreen: {
|
|
2977
3071
|
version: string;
|
|
2978
3072
|
language: string;
|
|
@@ -3013,7 +3107,6 @@ export declare const CopySchema: z.ZodObject<{
|
|
|
3013
3107
|
reviewFundingOffer: string;
|
|
3014
3108
|
receiveFunds: string;
|
|
3015
3109
|
};
|
|
3016
|
-
footerNote: string;
|
|
3017
3110
|
};
|
|
3018
3111
|
partnerTemplate?: {
|
|
3019
3112
|
version: string;
|