@react-pakistan/util-functions 1.23.3 → 1.23.4
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.
|
@@ -192,7 +192,7 @@ export interface ProfileBE {
|
|
|
192
192
|
userId: string;
|
|
193
193
|
}
|
|
194
194
|
export interface QuoteInvoiceBE {
|
|
195
|
-
category: '
|
|
195
|
+
category: 'QUOTE' | 'INVOICE';
|
|
196
196
|
company: CompanyBE;
|
|
197
197
|
createdAt: string;
|
|
198
198
|
currency: string;
|
|
@@ -202,12 +202,13 @@ export interface QuoteInvoiceBE {
|
|
|
202
202
|
discountUnit: string;
|
|
203
203
|
expiryDate: string;
|
|
204
204
|
id: string;
|
|
205
|
+
invoiceStatus: 'UNPAID' | 'PAID';
|
|
205
206
|
note: string;
|
|
206
207
|
payments: Array<PaymentBE>;
|
|
208
|
+
products: Array<ProductBE>;
|
|
209
|
+
quoteStatus: 'DRAFT' | 'PENDING' | 'SENT' | 'ACCEPTED' | 'DECLINED';
|
|
207
210
|
ref: string;
|
|
208
211
|
services: Array<any>;
|
|
209
|
-
products: Array<ProductBE>;
|
|
210
|
-
status: 'DRAFT' | 'PENDING' | 'SENT' | 'ACCEPTED' | 'DECLINED';
|
|
211
212
|
subTotal: string;
|
|
212
213
|
taxValue: string;
|
|
213
214
|
total: string;
|