pricing tiers

This commit is contained in:
jackiettran
2025-11-06 15:54:27 -05:00
parent 9c258177ae
commit 3dca6c803a
14 changed files with 508 additions and 154 deletions

View File

@@ -254,6 +254,8 @@ export interface ItemRequest {
longitude?: number;
maxPricePerHour?: number;
maxPricePerDay?: number;
maxPricePerWeek?: number;
maxPricePerMonth?: number;
preferredStartDate?: string;
preferredEndDate?: string;
isFlexibleDates: boolean;
@@ -273,6 +275,8 @@ export interface ItemRequestResponse {
message: string;
offerPricePerHour?: number;
offerPricePerDay?: number;
offerPricePerWeek?: number;
offerPricePerMonth?: number;
availableStartDate?: string;
availableEndDate?: string;
existingItemId?: string;