@star-insure/sdk 0.1.14 → 0.1.15

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.
@@ -163,7 +163,7 @@ export interface QuoteRequestForm {
163
163
  licence_other?: string;
164
164
  }[];
165
165
  }[];
166
- purchaseOptions?: {
166
+ purchase_options?: {
167
167
  id?: number;
168
168
  level_of_insurance_id?: number;
169
169
  sort_order?: number;
@@ -179,5 +179,5 @@ export interface QuoteRequestForm {
179
179
  sold_at?: string;
180
180
  is_paid?: boolean;
181
181
  payment_frequency?: PaymentFrequency;
182
- };
182
+ }[];
183
183
  }
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.1.14",
5
+ "version": "0.1.15",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
@@ -183,7 +183,7 @@ export interface QuoteRequestForm {
183
183
  }[];
184
184
  }[],
185
185
 
186
- purchaseOptions?: {
186
+ purchase_options?: {
187
187
  id?: number;
188
188
  level_of_insurance_id?: number;
189
189
  sort_order?: number;
@@ -199,5 +199,5 @@ export interface QuoteRequestForm {
199
199
  sold_at?: string;
200
200
  is_paid?: boolean;
201
201
  payment_frequency?: PaymentFrequency;
202
- },
202
+ }[],
203
203
  }