@star-insure/sdk 6.0.16 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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": "6.0.16",
5
+ "version": "6.1.0",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -24,6 +24,7 @@ export const initialData: QuoteRequestForm = {
24
24
  email: '',
25
25
  licence: '',
26
26
  licence_other: '',
27
+ insured_name: '',
27
28
  promo_code: '',
28
29
  club_membership_number: '',
29
30
  length_of_insurance: '',
@@ -41,6 +42,13 @@ export const initialData: QuoteRequestForm = {
41
42
  city: '',
42
43
  post_code: '',
43
44
  },
45
+ postal_address: {
46
+ postal_line_1: '',
47
+ postal_line_2: '',
48
+ postal_line_3: '',
49
+ postal_line_4: '',
50
+ postal_line_5: '',
51
+ },
44
52
  declaration: {
45
53
  had_incident: undefined,
46
54
  incidents: [],
@@ -4,4 +4,5 @@ export interface PostalAddress {
4
4
  postal_line_2?: string;
5
5
  postal_line_3?: string;
6
6
  postal_line_4?: string;
7
+ postal_line_5?: string;
7
8
  }
@@ -51,6 +51,7 @@ export interface QuoteRequest {
51
51
  email?: string;
52
52
  licence?: string;
53
53
  licence_other?: string;
54
+ insured_name?: string;
54
55
  has_automatch?: boolean;
55
56
  automatch_by?: QuoteRequestAutomatch;
56
57
  automatch_registrations?: string;