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