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