@star-insure/sdk 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
1
  export * from './auth';
2
2
  export * from './claims';
3
3
  export * from './oracle';
4
+ export * from './quotes';
@@ -0,0 +1,17 @@
1
+ import { PostalAddress } from "./PostalAddress";
2
+ export interface Lead {
3
+ id: number;
4
+ first_name: string;
5
+ last_name: string;
6
+ email: string;
7
+ mobile: string;
8
+ status: string;
9
+ source: string;
10
+ postal_address_id: PostalAddress['id'];
11
+ current_insurer: string | null;
12
+ current_insurance_expires_at: string | null;
13
+ current_insurance_is_monthly: boolean;
14
+ vehicle_details: string | null;
15
+ notes: string | null;
16
+ import_data: string | null;
17
+ }
@@ -1,9 +1,11 @@
1
+ import { Product, VehicleType } from "../../api";
1
2
  import { Club } from "./Club";
3
+ import { QuoteRequestIncident } from "./QuoteRequestForm";
2
4
  import { Lead } from "./Lead";
3
5
  import { PostalAddress } from "./PostalAddress";
4
6
  import { QuoteRequestDeclaration } from "./QuoteRequestDeclaration";
5
7
  import { QuoteRequestLog } from "./QuoteRequestLog";
6
- import { QuoteRequestPurchaseOption } from "./QuoteRequestPurchaseOption";
8
+ import { PaymentFrequency, PremiumType, QuoteRequestPurchaseOption } from "./QuoteRequestPurchaseOption";
7
9
  import { QuoteRequestReferrer } from "./QuoteRequestReferrer";
8
10
  import { QuoteRequestReferrerCategory } from "./QuoteRequestReferrerCategory";
9
11
  import { QuoteRequestVehicle } from "./QuoteRequestVehicle";
@@ -22,32 +24,32 @@ export interface QuoteRequestUserGroup {
22
24
  }
23
25
  export interface QuoteRequest {
24
26
  id: string;
27
+ status: QuoteRequestStatus;
28
+ source: QuoteRequestSource;
25
29
  reference: string;
26
30
  client_number: string;
27
- first_name: string;
28
- last_name: string;
29
- phone: string;
30
- mobile: string;
31
- email: string;
32
- license: string;
31
+ first_name: string | null;
32
+ last_name: string | null;
33
+ phone: string | null;
34
+ mobile: string | null;
35
+ email: string | null;
36
+ license: string | null;
33
37
  license_other: string | null;
34
- has_automatch: boolean;
38
+ has_automatch: boolean | null;
35
39
  automatch_by: QuoteRequestAutomatch;
36
40
  automatch_client_id: string | null;
37
41
  promo_code: string | null;
38
- club_membership_number: string;
39
- broker_fee: number;
42
+ club_membership_number: string | null;
43
+ broker_fee: number | null;
40
44
  length_of_insurance: string | null;
41
45
  theme: string | null;
42
46
  created_at: string;
43
47
  updated_at: string;
44
- dob: string;
48
+ dob: string | null;
45
49
  sold_at: string | null;
46
50
  sent_at: string | null;
47
51
  pricing_expires_at: string | null;
48
52
  follow_up_at: string | null;
49
- status_id: QuoteRequestStatus;
50
- source_id: QuoteRequestSource;
51
53
  resubmit_id: QuoteRequest['id'] | null;
52
54
  referrer_id: QuoteRequestReferrer['id'] | null;
53
55
  referrer_category_id: QuoteRequestReferrerCategory['id'] | null;
@@ -58,8 +60,6 @@ export interface QuoteRequest {
58
60
  broker_id: QuoteRequestUser['id'] | null;
59
61
  club_id: Club['id'] | null;
60
62
  lead_id: Lead['id'] | null;
61
- status?: QuoteRequestStatus;
62
- source?: QuoteRequestSource;
63
63
  declaration?: QuoteRequestDeclaration;
64
64
  street_address?: StreetAddress;
65
65
  postal_address?: PostalAddress;
@@ -77,3 +77,98 @@ export interface QuoteRequest {
77
77
  purchase_options?: QuoteRequestPurchaseOption[];
78
78
  logs?: QuoteRequestLog[];
79
79
  }
80
+ export interface QuoteRequestForm {
81
+ id?: string;
82
+ status?: QuoteRequestStatus;
83
+ source?: QuoteRequestSource;
84
+ reference?: string | null;
85
+ client_number?: string | null;
86
+ first_name?: string | null;
87
+ last_name?: string | null;
88
+ phone?: string | null;
89
+ mobile?: string | null;
90
+ email?: string | null;
91
+ license?: string | null;
92
+ license_other?: string | null;
93
+ promo_code?: string | null;
94
+ club_membership_number?: string | null;
95
+ broker_fee?: number | null;
96
+ length_of_insurance?: string | null;
97
+ theme?: string | null;
98
+ dob?: string | null;
99
+ sold_at?: string | null;
100
+ sent_at?: string | null;
101
+ pricing_expires_at?: string | null;
102
+ follow_up_at?: string | null;
103
+ status_id?: QuoteRequestStatus;
104
+ source_id?: QuoteRequestSource;
105
+ referrer_id?: QuoteRequestReferrer['id'] | null;
106
+ referrer_category_id?: QuoteRequestReferrerCategory['id'] | null;
107
+ staff_member_id?: QuoteRequestUser['id'] | null;
108
+ agent_id?: QuoteRequestUser['id'] | null;
109
+ agent_firm_id?: QuoteRequestUserGroup['id'] | null;
110
+ broker_firm_id?: QuoteRequestUserGroup['id'] | null;
111
+ broker_id?: QuoteRequestUser['id'] | null;
112
+ club_id?: Club['id'] | null;
113
+ declaration: {
114
+ id?: number;
115
+ had_incident?: boolean | null;
116
+ incidents?: QuoteRequestIncident[] | null;
117
+ has_demerit_points?: boolean | null;
118
+ demerit_points?: string | null;
119
+ has_lost_license?: boolean | null;
120
+ lost_license_details?: string | null;
121
+ was_refused_insurance?: boolean | null;
122
+ refused_insurance_details?: string | null;
123
+ has_criminal_conviction?: boolean | null;
124
+ criminal_conviction_details?: string | null;
125
+ has_vehicle_modifications?: boolean | null;
126
+ vehicle_modifications_details?: string | null;
127
+ has_previous_insurer?: boolean | null;
128
+ previous_insurer_details?: string | null;
129
+ previous_insurer_expires_at?: string | null;
130
+ additional_details?: string | null;
131
+ };
132
+ vehicles: {
133
+ id?: number;
134
+ vehicle_type?: VehicleType | null;
135
+ registration?: string | null;
136
+ make?: string | null;
137
+ model?: string | null;
138
+ year?: string | null;
139
+ usage?: string | null;
140
+ product?: Product | null;
141
+ has_financially_interested_party?: boolean | null;
142
+ financially_interested_party_detail?: string | null;
143
+ owned_duration?: string | null;
144
+ value?: number | null;
145
+ storage_location?: string | null;
146
+ is_heavy?: boolean | null;
147
+ drivers: {
148
+ id?: number;
149
+ first_name?: string;
150
+ last_name?: string;
151
+ dob?: string | null;
152
+ relationship?: string | null;
153
+ licence?: string | null;
154
+ licence_other?: string | null;
155
+ }[];
156
+ }[];
157
+ purchaseOptions?: {
158
+ id?: number;
159
+ level_of_insurance_id?: number | null;
160
+ sort_order?: number | null;
161
+ description?: string | null;
162
+ base_premium?: number | null;
163
+ premium?: number | null;
164
+ monthly_premium?: number | null;
165
+ show_monthly?: boolean | null;
166
+ fsl?: number | null;
167
+ gst?: number | null;
168
+ premium_type?: PremiumType | null;
169
+ policy_starts_at?: string | null;
170
+ sold_at?: string | null;
171
+ is_paid?: boolean | null;
172
+ payment_frequency?: PaymentFrequency | null;
173
+ };
174
+ }
@@ -0,0 +1,22 @@
1
+ import { QuoteRequest } from "./QuoteRequest";
2
+ import { QuoteRequestIncident } from "./QuoteRequestForm";
3
+ export interface QuoteRequestDeclaration {
4
+ id: number;
5
+ quote_request_id: QuoteRequest['id'] | null;
6
+ had_incident: boolean | null;
7
+ incidents: QuoteRequestIncident[] | null;
8
+ has_demerit_points: boolean | null;
9
+ demerit_points: string | null;
10
+ has_lost_license: boolean | null;
11
+ lost_license_details: string | null;
12
+ was_refused_insurance: boolean | null;
13
+ refused_insurance_details: string | null;
14
+ has_criminal_conviction: boolean | null;
15
+ criminal_conviction_details: string | null;
16
+ has_vehicle_modifications: boolean | null;
17
+ vehicle_modifications_details: string | null;
18
+ has_previous_insurer: boolean | null;
19
+ previous_insurer_details: string | null;
20
+ previous_insurer_expires_at: string | null;
21
+ additional_details: string | null;
22
+ }
@@ -0,0 +1,5 @@
1
+ export interface QuoteRequestIncident {
2
+ year?: string | null;
3
+ month?: string | null;
4
+ description?: string | null;
5
+ }
@@ -1,20 +1,20 @@
1
1
  export interface QuoteRequestPurchaseOption {
2
2
  id: number;
3
3
  quote_request_id: string;
4
- level_of_insurance_id: number;
5
- sort_order: number;
6
- description: string;
7
- base_premium: number;
8
- premium: number;
9
- monthly_premium: number;
10
- show_monthly: boolean;
11
- fsl: number;
12
- gst: number;
13
- premium_type: PremiumType;
14
- policy_starts_at: string | null;
15
- sold_at: string | null;
16
- is_paid: boolean;
17
- payment_frequency: PaymentFrequency;
4
+ level_of_insurance_id: number | null;
5
+ sort_order: number | null;
6
+ description: string | null;
7
+ base_premium: number | null;
8
+ premium: number | null;
9
+ monthly_premium: number | null;
10
+ show_monthly: boolean | null;
11
+ fsl: number | null;
12
+ gst: number | null;
13
+ premium_type: PremiumType | null;
14
+ policy_starts_at: string | null | null;
15
+ sold_at: string | null | null;
16
+ is_paid: boolean | null;
17
+ payment_frequency: PaymentFrequency | null;
18
18
  }
19
19
  export declare type PremiumType = 'annual' | 'total-due';
20
20
  export declare type PaymentFrequency = 'monthly' | 'annually';
@@ -0,0 +1,7 @@
1
+ import { QuoteRequestReferrerCategory } from "./QuoteRequestReferrerCategory";
2
+ export interface QuoteRequestReferrer {
3
+ id: number;
4
+ name: string;
5
+ category_id: QuoteRequestReferrerCategory['id'];
6
+ category?: QuoteRequestReferrerCategory;
7
+ }
@@ -2,19 +2,19 @@ import { Product, VehicleType } from "../../api";
2
2
  import { QuoteRequestVehicleDriver } from "./QuoteRequestVehicleDriver";
3
3
  export interface QuoteRequestVehicle {
4
4
  id: number;
5
- vehicle_type: VehicleType;
5
+ vehicle_type: VehicleType | null;
6
6
  registration: string | null;
7
7
  make: string | null;
8
8
  model: string | null;
9
9
  year: string | null;
10
10
  usage: string | null;
11
- product: Product;
12
- has_financially_interested_party: boolean;
11
+ product: Product | null;
12
+ has_financially_interested_party: boolean | null;
13
13
  financially_interested_party_detail: string | null;
14
14
  owned_duration: string | null;
15
15
  value: number | null;
16
16
  storage_location: string | null;
17
- is_heavy: boolean;
17
+ is_heavy: boolean | null;
18
18
  quote_request_id: string;
19
19
  drivers?: QuoteRequestVehicleDriver[];
20
20
  }
@@ -1,7 +1,7 @@
1
1
  export interface QuoteRequestVehicleDriver {
2
2
  id: number;
3
- first_name: string;
4
- last_name: string;
3
+ first_name: string | null;
4
+ last_name: string | null;
5
5
  dob: string | null;
6
6
  relationship: string | null;
7
7
  licence: string | null;
@@ -10,3 +10,4 @@ export * from './Club';
10
10
  export * from './Lead';
11
11
  export * from './StreetAddress';
12
12
  export * from './PostalAddress';
13
+ export * from './QuoteRequestForm';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@star-insure/sdk",
3
3
  "description": "The SDK for Star Insure client apps with shared helper functions and TypeScript definitions.",
4
4
  "author": "alexclark_nz",
5
- "version": "0.1.3",
5
+ "version": "0.1.4",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -1,3 +1,4 @@
1
1
  export * from './auth';
2
2
  export * from './claims';
3
3
  export * from './oracle';
4
+ export * from './quotes';
@@ -1,3 +1,5 @@
1
+ import { PostalAddress } from "./PostalAddress";
2
+
1
3
  export interface Lead {
2
4
  id: number;
3
5
  first_name: string;
@@ -1,9 +1,11 @@
1
+ import { Product, VehicleType } from "../../api";
1
2
  import { Club } from "./Club";
3
+ import { QuoteRequestIncident } from "./QuoteRequestForm";
2
4
  import { Lead } from "./Lead";
3
5
  import { PostalAddress } from "./PostalAddress";
4
6
  import { QuoteRequestDeclaration } from "./QuoteRequestDeclaration";
5
7
  import { QuoteRequestLog } from "./QuoteRequestLog";
6
- import { QuoteRequestPurchaseOption } from "./QuoteRequestPurchaseOption";
8
+ import { PaymentFrequency, PremiumType, QuoteRequestPurchaseOption } from "./QuoteRequestPurchaseOption";
7
9
  import { QuoteRequestReferrer } from "./QuoteRequestReferrer";
8
10
  import { QuoteRequestReferrerCategory } from "./QuoteRequestReferrerCategory";
9
11
  import { QuoteRequestVehicle } from "./QuoteRequestVehicle";
@@ -28,36 +30,36 @@ export interface QuoteRequestUserGroup {
28
30
 
29
31
  export interface QuoteRequest {
30
32
  id: string;
33
+ status: QuoteRequestStatus;
34
+ source: QuoteRequestSource;
31
35
  reference: string;
32
36
  client_number: string;
33
- first_name: string;
34
- last_name: string;
35
- phone: string;
36
- mobile: string;
37
- email: string;
38
- license: string;
37
+ first_name: string | null;
38
+ last_name: string | null;
39
+ phone: string | null;
40
+ mobile: string | null;
41
+ email: string | null;
42
+ license: string | null;
39
43
  license_other: string | null;
40
- has_automatch: boolean;
44
+ has_automatch: boolean | null;
41
45
  automatch_by: QuoteRequestAutomatch;
42
46
  automatch_client_id: string | null;
43
47
  promo_code: string | null;
44
- club_membership_number: string;
45
- broker_fee: number;
48
+ club_membership_number: string | null;
49
+ broker_fee: number | null;
46
50
  length_of_insurance: string | null;
47
51
  theme: string | null;
48
52
 
49
53
  // Dates
50
54
  created_at: string;
51
55
  updated_at: string;
52
- dob: string;
56
+ dob: string | null;
53
57
  sold_at: string | null;
54
58
  sent_at: string | null;
55
59
  pricing_expires_at: string | null;
56
60
  follow_up_at: string | null;
57
61
 
58
62
  // Foreign keys
59
- status_id: QuoteRequestStatus;
60
- source_id: QuoteRequestSource;
61
63
  resubmit_id: QuoteRequest['id'] | null;
62
64
  referrer_id: QuoteRequestReferrer['id'] | null;
63
65
  referrer_category_id: QuoteRequestReferrerCategory['id'] | null;
@@ -70,8 +72,6 @@ export interface QuoteRequest {
70
72
  lead_id: Lead['id'] | null;
71
73
 
72
74
  // Relationships
73
- status?: QuoteRequestStatus;
74
- source?: QuoteRequestSource;
75
75
  declaration?: QuoteRequestDeclaration;
76
76
  street_address?: StreetAddress;
77
77
  postal_address?: PostalAddress;
@@ -89,3 +89,105 @@ export interface QuoteRequest {
89
89
  purchase_options?: QuoteRequestPurchaseOption[];
90
90
  logs?: QuoteRequestLog[];
91
91
  }
92
+
93
+ export interface QuoteRequestForm {
94
+ id?: string;
95
+ status?: QuoteRequestStatus;
96
+ source?: QuoteRequestSource;
97
+ reference?: string | null;
98
+ client_number?: string | null;
99
+ first_name?: string | null;
100
+ last_name?: string | null;
101
+ phone?: string | null;
102
+ mobile?: string | null;
103
+ email?: string | null;
104
+ license?: string | null;
105
+ license_other?: string | null;
106
+ promo_code?: string | null;
107
+ club_membership_number?: string | null;
108
+ broker_fee?: number | null;
109
+ length_of_insurance?: string | null;
110
+ theme?: string | null;
111
+
112
+ dob?: string | null;
113
+ sold_at?: string | null;
114
+ sent_at?: string | null;
115
+ pricing_expires_at?: string | null;
116
+ follow_up_at?: string | null;
117
+
118
+ // Foreign keys
119
+ status_id?: QuoteRequestStatus;
120
+ source_id?: QuoteRequestSource;
121
+ referrer_id?: QuoteRequestReferrer['id'] | null;
122
+ referrer_category_id?: QuoteRequestReferrerCategory['id'] | null;
123
+ staff_member_id?: QuoteRequestUser['id'] | null;
124
+ agent_id?: QuoteRequestUser['id'] | null;
125
+ agent_firm_id?: QuoteRequestUserGroup['id'] | null;
126
+ broker_firm_id?: QuoteRequestUserGroup['id'] | null;
127
+ broker_id?: QuoteRequestUser['id'] | null;
128
+ club_id?: Club['id'] | null;
129
+
130
+ declaration: {
131
+ id?: number;
132
+ had_incident?: boolean | null;
133
+ incidents?: QuoteRequestIncident[] | null;
134
+ has_demerit_points?: boolean | null;
135
+ demerit_points?: string | null;
136
+ has_lost_license?: boolean | null;
137
+ lost_license_details?: string | null;
138
+ was_refused_insurance?: boolean | null;
139
+ refused_insurance_details?: string | null;
140
+ has_criminal_conviction?: boolean | null;
141
+ criminal_conviction_details?: string | null;
142
+ has_vehicle_modifications?: boolean | null;
143
+ vehicle_modifications_details?: string | null;
144
+ has_previous_insurer?: boolean | null;
145
+ previous_insurer_details?: string | null;
146
+ previous_insurer_expires_at?: string | null;
147
+ additional_details?: string | null;
148
+ }
149
+
150
+ vehicles: {
151
+ id?: number;
152
+ vehicle_type?: VehicleType | null;
153
+ registration?: string | null;
154
+ make?: string | null;
155
+ model?: string | null;
156
+ year?: string | null;
157
+ usage?: string | null;
158
+ product?: Product | null;
159
+ has_financially_interested_party?: boolean | null;
160
+ financially_interested_party_detail?: string | null;
161
+ owned_duration?: string | null;
162
+ value?: number | null;
163
+ storage_location?: string | null;
164
+ is_heavy?: boolean | null;
165
+ drivers: {
166
+ id?: number;
167
+ first_name?: string;
168
+ last_name?: string;
169
+ dob?: string | null;
170
+ relationship?: string | null;
171
+ licence?: string | null;
172
+ licence_other?: string | null;
173
+ }[];
174
+ }[],
175
+
176
+ purchaseOptions?: {
177
+ id?: number;
178
+ level_of_insurance_id?: number | null;
179
+ sort_order?: number | null;
180
+ description?: string | null;
181
+ base_premium?: number | null;
182
+ premium?: number | null;
183
+ monthly_premium?: number | null;
184
+ show_monthly?: boolean | null;
185
+ fsl?: number | null;
186
+ gst?: number | null;
187
+ premium_type?: PremiumType | null;
188
+ policy_starts_at?: string | null;
189
+ sold_at?: string | null;
190
+ is_paid?: boolean | null;
191
+ payment_frequency?: PaymentFrequency | null;
192
+ },
193
+ }
@@ -1,18 +1,21 @@
1
+ import { QuoteRequest } from "./QuoteRequest";
2
+ import { QuoteRequestIncident } from "./QuoteRequestForm";
1
3
  export interface QuoteRequestDeclaration {
2
4
  id: number;
3
- quote_request_id: QuoteRequest['id'];
4
- had_incident: boolean;
5
- has_demerit_points: boolean;
5
+ quote_request_id: QuoteRequest['id'] | null;
6
+ had_incident: boolean | null;
7
+ incidents: QuoteRequestIncident[] | null;
8
+ has_demerit_points: boolean | null;
6
9
  demerit_points: string | null;
7
- has_lost_license: boolean;
10
+ has_lost_license: boolean | null;
8
11
  lost_license_details: string | null;
9
- was_refused_insurance: boolean;
12
+ was_refused_insurance: boolean | null;
10
13
  refused_insurance_details: string | null;
11
- has_criminal_conviction: boolean;
14
+ has_criminal_conviction: boolean | null;
12
15
  criminal_conviction_details: string | null;
13
- has_vehicle_modifications: boolean;
16
+ has_vehicle_modifications: boolean | null;
14
17
  vehicle_modifications_details: string | null;
15
- has_previous_insurer: boolean;
18
+ has_previous_insurer: boolean | null;
16
19
  previous_insurer_details: string | null;
17
20
  previous_insurer_expires_at: string | null;
18
21
  additional_details: string | null;
@@ -0,0 +1,5 @@
1
+ export interface QuoteRequestIncident {
2
+ year?: string | null;
3
+ month?: string | null;
4
+ description?: string | null;
5
+ }
@@ -1,20 +1,20 @@
1
1
  export interface QuoteRequestPurchaseOption {
2
2
  id: number;
3
3
  quote_request_id: string;
4
- level_of_insurance_id: number;
5
- sort_order: number;
6
- description: string;
7
- base_premium: number;
8
- premium: number;
9
- monthly_premium: number;
10
- show_monthly: boolean;
11
- fsl: number;
12
- gst: number;
13
- premium_type: PremiumType;
14
- policy_starts_at: string | null;
15
- sold_at: string | null;
16
- is_paid: boolean;
17
- payment_frequency: PaymentFrequency;
4
+ level_of_insurance_id: number | null;
5
+ sort_order: number | null;
6
+ description: string | null;
7
+ base_premium: number | null;
8
+ premium: number | null;
9
+ monthly_premium: number | null;
10
+ show_monthly: boolean | null;
11
+ fsl: number | null;
12
+ gst: number | null;
13
+ premium_type: PremiumType | null;
14
+ policy_starts_at: string | null | null;
15
+ sold_at: string | null | null;
16
+ is_paid: boolean | null;
17
+ payment_frequency: PaymentFrequency | null;
18
18
  }
19
19
 
20
20
  export type PremiumType = 'annual' | 'total-due';
@@ -1,3 +1,5 @@
1
+ import { QuoteRequestReferrerCategory } from "./QuoteRequestReferrerCategory";
2
+
1
3
  export interface QuoteRequestReferrer {
2
4
  id: number;
3
5
  name: string;
@@ -3,19 +3,19 @@ import { QuoteRequestVehicleDriver } from "./QuoteRequestVehicleDriver";
3
3
 
4
4
  export interface QuoteRequestVehicle {
5
5
  id: number;
6
- vehicle_type: VehicleType;
6
+ vehicle_type: VehicleType | null;
7
7
  registration: string | null;
8
8
  make: string | null;
9
9
  model: string | null;
10
10
  year: string | null;
11
11
  usage: string | null;
12
- product: Product;
13
- has_financially_interested_party: boolean;
12
+ product: Product | null;
13
+ has_financially_interested_party: boolean | null;
14
14
  financially_interested_party_detail: string | null;
15
15
  owned_duration: string | null;
16
16
  value: number | null;
17
17
  storage_location: string | null;
18
- is_heavy: boolean;
18
+ is_heavy: boolean | null;
19
19
  quote_request_id: string;
20
20
  drivers?: QuoteRequestVehicleDriver[];
21
21
  }
@@ -1,7 +1,7 @@
1
1
  export interface QuoteRequestVehicleDriver {
2
2
  id: number;
3
- first_name: string;
4
- last_name: string;
3
+ first_name: string | null;
4
+ last_name: string | null;
5
5
  dob: string | null;
6
6
  relationship: string | null;
7
7
  licence: string | null;
@@ -10,3 +10,4 @@ export * from './Club';
10
10
  export * from './Lead';
11
11
  export * from './StreetAddress';
12
12
  export * from './PostalAddress';
13
+ export * from './QuoteRequestForm';