@@ -23,6 +23,8 @@ export type ApplicationFormStage =
23
23
"EnterSoleProprietorshipInformation" |
24
24
"SoleProprietorshipPhoneVerification" |
25
25
"SoleProprietorshipApplicationCreated"
26
+ export type AllowedApplicationTypes = "Individual" | "SoleProprietorship" | "Business" | "MultipleMemberBusiness" | "SingleMemberBusiness"
27
+
26
28
27
29
export interface CreateApplicationForm {
28
30
type : "applicationForm"
@@ -38,7 +40,7 @@ export interface CreateApplicationForm {
38
40
/**
39
41
* Optional. Array of Individual, Business or SoleProprietorship. Restrict the available application type for this specific application.
40
42
*/
41
- allowedApplicationTypes ?: Array < "Individual" | "SoleProprietorship" | "Business" >
43
+ allowedApplicationTypes ?: Array < AllowedApplicationTypes >
42
44
/**
43
45
* Optional. Override disclosure and redirect URLs that were defined in the application form settings.
44
46
*/
@@ -71,7 +73,7 @@ export interface CreateApplicationFormV2 {
71
73
/**
72
74
* Optional. Array of Individual, Business or SoleProprietorship. Restrict the available application type for this specific application.
73
75
*/
74
- allowedApplicationTypes ?: Array < "Individual" | "SoleProprietorship" | "Business" >
76
+ allowedApplicationTypes ?: Array < AllowedApplicationTypes >
75
77
/**
76
78
* Optional. Override disclosure and redirect URLs that were defined in the application form settings.
77
79
*/
@@ -179,7 +181,7 @@ export interface ApplicationFormPrefill {
179
181
/**
180
182
* Optional. One of "Individual", "Business" or "SoleProprietorship".
181
183
*/
182
- applicationType ?: "Individual" | "SoleProprietorship" | "Business"
184
+ applicationType ?: AllowedApplicationTypes
183
185
184
186
/**
185
187
* Individual. Optional. Full name of the individual.
0 commit comments