feat: deal card, deal status, deal new dates, indicator, hide navbar
This commit is contained in:
		@@ -25,7 +25,6 @@ export type { BaseEnumListSchema } from './models/BaseEnumListSchema';
 | 
			
		||||
export type { BaseEnumSchema } from './models/BaseEnumSchema';
 | 
			
		||||
export type { BaseMarketplaceSchema } from './models/BaseMarketplaceSchema';
 | 
			
		||||
export type { BaseShippingWarehouseSchema } from './models/BaseShippingWarehouseSchema';
 | 
			
		||||
export type { BillPaymentInfo } from './models/BillPaymentInfo';
 | 
			
		||||
export type { BillPaymentStatus } from './models/BillPaymentStatus';
 | 
			
		||||
export type { BillStatusUpdateRequest } from './models/BillStatusUpdateRequest';
 | 
			
		||||
export type { Body_upload_product_image } from './models/Body_upload_product_image';
 | 
			
		||||
 
 | 
			
		||||
@@ -2,12 +2,11 @@
 | 
			
		||||
/* istanbul ignore file */
 | 
			
		||||
/* tslint:disable */
 | 
			
		||||
/* eslint-disable */
 | 
			
		||||
import type { BillPaymentInfo } from './BillPaymentInfo';
 | 
			
		||||
import type { BillPaymentStatus } from './BillPaymentStatus';
 | 
			
		||||
import type { NotificationChannel } from './NotificationChannel';
 | 
			
		||||
export type BillStatusUpdateRequest = {
 | 
			
		||||
    listenerTransactionId: number;
 | 
			
		||||
    channel: NotificationChannel;
 | 
			
		||||
    info: (BillPaymentInfo | BillPaymentStatus);
 | 
			
		||||
    info: BillPaymentStatus;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -26,5 +26,7 @@ export type DealSchema = {
 | 
			
		||||
    shippingWarehouse?: (ShippingWarehouseSchema | string | null);
 | 
			
		||||
    billRequest?: (DealBillRequestSchema | null);
 | 
			
		||||
    category?: (ServicePriceCategorySchema | null);
 | 
			
		||||
    deliveryDate?: (string | null);
 | 
			
		||||
    receivingSlotDate?: (string | null);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -17,5 +17,7 @@ export type DealSummary = {
 | 
			
		||||
    totalProducts: number;
 | 
			
		||||
    shipmentWarehouseId: (number | null);
 | 
			
		||||
    shipmentWarehouseName: (string | null);
 | 
			
		||||
    deliveryDate?: (string | null);
 | 
			
		||||
    receivingSlotDate?: (string | null);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user