@natch-the-storage/heathershaw-platform-types 1.15.5 → 1.15.6
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.
- package/build/validators.d.ts +2 -1
- package/package.json +1 -1
package/build/validators.d.ts
CHANGED
|
@@ -321,9 +321,10 @@ export interface Quote {
|
|
|
321
321
|
details?: string;
|
|
322
322
|
token?: string;
|
|
323
323
|
fileKey?: string;
|
|
324
|
+
productId?: number;
|
|
324
325
|
created: string;
|
|
325
326
|
}
|
|
326
|
-
export type QuoteCreate = Omit<Quote, 'id' | 'status' | 'created'>;
|
|
327
|
+
export type QuoteCreate = Omit<Quote, 'id' | 'status' | 'created' | 'productId'>;
|
|
327
328
|
export interface RepeatReminder {
|
|
328
329
|
id: number;
|
|
329
330
|
orderId?: number;
|