@star-insure/sdk 0.3.1 → 0.3.2
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,6 +1,8 @@
|
|
|
1
1
|
export declare type InformationRequestStatus = 'open' | 'closed';
|
|
2
2
|
export interface InformationRequest {
|
|
3
3
|
id: string;
|
|
4
|
+
created_at: string;
|
|
5
|
+
updated_at: string;
|
|
4
6
|
user_id: number | null;
|
|
5
7
|
quote_request_id: string;
|
|
6
8
|
subject: string;
|
|
@@ -9,6 +11,8 @@ export interface InformationRequest {
|
|
|
9
11
|
}
|
|
10
12
|
export interface InformationRequestMessage {
|
|
11
13
|
id: number;
|
|
14
|
+
created_at: string;
|
|
15
|
+
updated_at: string;
|
|
12
16
|
quote_information_request_id: string;
|
|
13
17
|
user_id: number | null;
|
|
14
18
|
content: string;
|
|
@@ -16,6 +20,8 @@ export interface InformationRequestMessage {
|
|
|
16
20
|
}
|
|
17
21
|
export interface InformationRequestAttachment {
|
|
18
22
|
id: number;
|
|
23
|
+
created_at: string;
|
|
24
|
+
updated_at: string;
|
|
19
25
|
quote_information_request_message_id: string;
|
|
20
26
|
title: string;
|
|
21
27
|
url: string;
|
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.3.
|
|
5
|
+
"version": "0.3.2",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -2,6 +2,8 @@ export type InformationRequestStatus = 'open' | 'closed';
|
|
|
2
2
|
|
|
3
3
|
export interface InformationRequest {
|
|
4
4
|
id: string;
|
|
5
|
+
created_at: string;
|
|
6
|
+
updated_at: string;
|
|
5
7
|
user_id: number | null;
|
|
6
8
|
quote_request_id: string;
|
|
7
9
|
subject: string;
|
|
@@ -11,6 +13,8 @@ export interface InformationRequest {
|
|
|
11
13
|
|
|
12
14
|
export interface InformationRequestMessage {
|
|
13
15
|
id: number;
|
|
16
|
+
created_at: string;
|
|
17
|
+
updated_at: string;
|
|
14
18
|
quote_information_request_id: string;
|
|
15
19
|
user_id: number | null;
|
|
16
20
|
content: string;
|
|
@@ -19,6 +23,8 @@ export interface InformationRequestMessage {
|
|
|
19
23
|
|
|
20
24
|
export interface InformationRequestAttachment {
|
|
21
25
|
id: number;
|
|
26
|
+
created_at: string;
|
|
27
|
+
updated_at: string;
|
|
22
28
|
quote_information_request_message_id: string;
|
|
23
29
|
title: string;
|
|
24
30
|
url: string;
|