@star-insure/sdk 1.1.29 → 1.1.31

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.
@@ -40,6 +40,7 @@ export interface ClaimRequest {
40
40
  'driver_gender'?: string;
41
41
  'is_assessor_required'?: boolean;
42
42
  'acceptance_code'?: string;
43
+ 'client_number'?: string;
43
44
  'attachments'?: ClaimRequestAttachment[];
44
45
  }
45
46
  export interface ClaimRequestAttachment {
@@ -56,6 +57,7 @@ export interface DamageClaimRequest extends ClaimRequest {
56
57
  'claim_type': 'damage';
57
58
  'vehicle_registration'?: string;
58
59
  'vehicle_vin'?: string;
60
+ 'vehicle_make_and_model'?: string;
59
61
  'vehicle_make'?: string;
60
62
  'vehicle_model'?: string;
61
63
  'vehicle_year'?: string | number;
@@ -161,6 +163,7 @@ export interface GlassClaimRequest extends ClaimRequest {
161
163
  'claim_type': 'glass';
162
164
  'vehicle_registration'?: string;
163
165
  'vehicle_vin'?: string;
166
+ 'vehicle_make_and_model'?: string;
164
167
  'vehicle_make'?: string;
165
168
  'vehicle_model'?: string;
166
169
  'vehicle_year'?: string | number;
@@ -200,6 +203,7 @@ export interface TheftClaimRequest extends ClaimRequest {
200
203
  'additional_information_details'?: string;
201
204
  'vehicle_registration'?: string;
202
205
  'vehicle_vin'?: string;
206
+ 'vehicle_make_and_model'?: string;
203
207
  'vehicle_make'?: string;
204
208
  'vehicle_model'?: string;
205
209
  'vehicle_year'?: string | number;
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": "1.1.29",
5
+ "version": "1.1.31",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -42,6 +42,7 @@ export interface ClaimRequest {
42
42
  'driver_gender'?: string;
43
43
  'is_assessor_required'?: boolean;
44
44
  'acceptance_code'?: string;
45
+ 'client_number'?: string;
45
46
  'attachments'?: ClaimRequestAttachment[];
46
47
  }
47
48
 
@@ -60,6 +61,7 @@ export interface DamageClaimRequest extends ClaimRequest {
60
61
  'claim_type': 'damage';
61
62
  'vehicle_registration'?: string;
62
63
  'vehicle_vin'?: string;
64
+ 'vehicle_make_and_model'?: string;
63
65
  'vehicle_make'?: string;
64
66
  'vehicle_model'?: string;
65
67
  'vehicle_year'?: string|number;
@@ -170,6 +172,7 @@ export interface GlassClaimRequest extends ClaimRequest {
170
172
  'claim_type': 'glass';
171
173
  'vehicle_registration'?: string;
172
174
  'vehicle_vin'?: string;
175
+ 'vehicle_make_and_model'?: string;
173
176
  'vehicle_make'?: string;
174
177
  'vehicle_model'?: string;
175
178
  'vehicle_year'?: string|number;
@@ -214,6 +217,7 @@ export interface TheftClaimRequest extends ClaimRequest {
214
217
  // Vehicle details
215
218
  'vehicle_registration'?: string;
216
219
  'vehicle_vin'?: string;
220
+ 'vehicle_make_and_model'?: string;
217
221
  'vehicle_make'?: string;
218
222
  'vehicle_model'?: string;
219
223
  'vehicle_year'?: string|number;