fix: Firebase analytics issue and handled data connect

This commit is contained in:
dhinesh-m24
2026-02-02 16:44:16 +05:30
parent cb25b33d04
commit fa208f2838
196 changed files with 19919 additions and 31464 deletions

View File

@@ -2,7 +2,6 @@ mutation createOrder(
$vendorId: UUID
$businessId: UUID!
$orderType: OrderType!
$location: String
$status: OrderStatus
$date: Timestamp
$startDate: Timestamp
@@ -14,7 +13,6 @@ mutation createOrder(
$assignedStaff: Any
$shifts: Any
$requested: Int
$hub: String
$recurringDays: Any
$permanentStartDate: Timestamp
$permanentDays: Any
@@ -27,7 +25,6 @@ mutation createOrder(
vendorId: $vendorId
businessId: $businessId
orderType: $orderType
location: $location
status: $status
date: $date
startDate: $startDate
@@ -39,7 +36,6 @@ mutation createOrder(
assignedStaff: $assignedStaff
shifts: $shifts
requested: $requested
hub: $hub
recurringDays: $recurringDays
permanentDays: $permanentDays
notes: $notes
@@ -53,7 +49,6 @@ mutation updateOrder(
$id: UUID!
$vendorId: UUID
$businessId: UUID
$location: String
$status: OrderStatus
$date: Timestamp
$startDate: Timestamp
@@ -63,7 +58,6 @@ mutation updateOrder(
$assignedStaff: Any
$shifts: Any
$requested: Int
$hub: String
$recurringDays: Any
$permanentDays: Any
$notes: String
@@ -75,7 +69,6 @@ mutation updateOrder(
data: {
vendorId: $vendorId
businessId: $businessId
location: $location
status: $status
date: $date
startDate: $startDate
@@ -85,7 +78,6 @@ mutation updateOrder(
assignedStaff: $assignedStaff
shifts: $shifts
requested: $requested
hub: $hub
recurringDays: $recurringDays
permanentDays: $permanentDays
notes: $notes