@star-insure/sdk 3.2.14 → 3.2.16

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.
@@ -23,6 +23,13 @@ export interface QuoteRequestUserGroup {
23
23
  id: number;
24
24
  name: string;
25
25
  }
26
+ export interface Automatch {
27
+ client_number: string;
28
+ id: number;
29
+ matched_by: QuoteRequestAutomatch;
30
+ matched_by_value: string;
31
+ quote_request_id: string;
32
+ }
26
33
  export interface QuoteRequest {
27
34
  id?: string;
28
35
  status?: QuoteRequestStatus;
@@ -97,4 +104,5 @@ export interface QuoteRequest {
97
104
  blacklist_entry?: BlacklistEntry;
98
105
  is_follow_up_required: boolean;
99
106
  payments?: Payment[];
107
+ automatches?: Automatch[];
100
108
  }
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": "3.2.14",
5
+ "version": "3.2.16",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -56,7 +56,7 @@
56
56
  "@types/react-dom": "^18.0.6",
57
57
  "@types/uuid": "^8.3.4",
58
58
  "husky": "^8.0.1",
59
- "np": "^7.6.1",
59
+ "np": "^9.2.0",
60
60
  "react": "^18.2.0",
61
61
  "size-limit": "^7.0.8",
62
62
  "tsdx": "^0.14.1",
@@ -29,6 +29,14 @@ export interface QuoteRequestUserGroup {
29
29
  name: string;
30
30
  }
31
31
 
32
+ export interface Automatch {
33
+ client_number: string;
34
+ id: number;
35
+ matched_by: QuoteRequestAutomatch;
36
+ matched_by_value: string;
37
+ quote_request_id: string;
38
+ }
39
+
32
40
  export interface QuoteRequest {
33
41
  id?: string;
34
42
  status?: QuoteRequestStatus;
@@ -109,4 +117,5 @@ export interface QuoteRequest {
109
117
  blacklist_entry?: BlacklistEntry;
110
118
  is_follow_up_required: boolean;
111
119
  payments?: Payment[];
120
+ automatches?: Automatch[];
112
121
  }