@star-insure/sdk 0.4.2 → 0.4.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.
@@ -11,7 +11,7 @@ import { QuoteRequestVehicle } from "./QuoteRequestVehicle";
11
11
  import { StreetAddress } from "./StreetAddress";
12
12
  export declare type QuoteRequestStatus = 'new' | 'draft' | 'in-progress' | 'with-customer' | 'sold' | 'bound' | 'customer-modified' | 'closed';
13
13
  export declare type QuoteRequestSource = 'web' | 'phone' | 'show' | 'existing-customer' | 'mighway' | 'agent' | 'entry-form' | 'bularangi';
14
- export declare type QuoteRequestAutomatch = 'QUOTE' | 'EMAIL' | 'REGISTRATION' | 'DUPLICATE';
14
+ export declare type QuoteRequestAutomatch = 'quote' | 'email' | 'registration' | 'duplicate';
15
15
  export interface QuoteRequestUser {
16
16
  id: number;
17
17
  name: string;
@@ -38,6 +38,7 @@ export interface QuoteRequest {
38
38
  has_automatch?: boolean;
39
39
  automatch_by?: QuoteRequestAutomatch;
40
40
  automatch_client_id?: string;
41
+ automatch_registrations?: string;
41
42
  promo_code?: string;
42
43
  club_membership_number?: string;
43
44
  broker_fee?: 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": "0.4.2",
5
+ "version": "0.4.3",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -14,7 +14,7 @@ export type QuoteRequestStatus = 'new' | 'draft' | 'in-progress' | 'with-custome
14
14
 
15
15
  export type QuoteRequestSource = 'web' | 'phone' | 'show' | 'existing-customer' | 'mighway' | 'agent' | 'entry-form' | 'bularangi';
16
16
 
17
- export type QuoteRequestAutomatch = 'QUOTE' | 'EMAIL' | 'REGISTRATION' | 'DUPLICATE';
17
+ export type QuoteRequestAutomatch = 'quote' | 'email' | 'registration' | 'duplicate';
18
18
 
19
19
  export interface QuoteRequestUser {
20
20
  id: number;
@@ -44,6 +44,7 @@ export interface QuoteRequest {
44
44
  has_automatch?: boolean;
45
45
  automatch_by?: QuoteRequestAutomatch;
46
46
  automatch_client_id?: string;
47
+ automatch_registrations?: string;
47
48
  promo_code?: string;
48
49
  club_membership_number?: string;
49
50
  broker_fee?: number;