@star-insure/sdk 2.1.0 → 2.2.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.
@@ -1,3 +1,4 @@
1
+ import { Payment } from "../payments";
1
2
  import { BlacklistEntry } from "./Blacklist";
2
3
  import { Club } from "./Club";
3
4
  import { InformationRequest } from "./InformationRequest";
@@ -90,4 +91,5 @@ export interface QuoteRequest {
90
91
  };
91
92
  blacklist_entry?: BlacklistEntry;
92
93
  is_follow_up_required: boolean;
94
+ payments?: Payment[];
93
95
  }
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": "2.1.0",
5
+ "version": "2.2.0",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -1,3 +1,4 @@
1
+ import { Payment } from "../payments";
1
2
  import { BlacklistEntry } from "./Blacklist";
2
3
  import { Club } from "./Club";
3
4
  import { InformationRequest } from "./InformationRequest";
@@ -101,6 +102,6 @@ export interface QuoteRequest {
101
102
  documentation_pdf: string;
102
103
  },
103
104
  blacklist_entry?: BlacklistEntry;
104
-
105
105
  is_follow_up_required: boolean;
106
+ payments?: Payment[];
106
107
  }