@burdenoff/microfe-movethewheels 2026.525.2 → 2026.525.3
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/package.json +1 -1
- package/dist/dev/main.d.ts +0 -1
- package/dist/generated/global-operations.d.ts +0 -1
- package/dist/generated/global-types.d.ts +0 -23526
- package/dist/generated/wspace-operations.d.ts +0 -3704
- package/dist/generated/wspace-types.d.ts +0 -57850
- package/dist/index.d.ts +0 -4
- package/dist/movethewheels/MoveTheWheelsRoot.d.ts +0 -25
- package/dist/movethewheels/MoveTheWheelsRoutes.d.ts +0 -7
- package/dist/movethewheels/components/DataTable.d.ts +0 -32
- package/dist/movethewheels/components/MetricCard.d.ts +0 -43
- package/dist/movethewheels/components/PageLayout.d.ts +0 -68
- package/dist/movethewheels/components/StatusBadge.d.ts +0 -49
- package/dist/movethewheels/components/index.d.ts +0 -10
- package/dist/movethewheels/components/ui.d.ts +0 -22
- package/dist/movethewheels/constants/index.d.ts +0 -24
- package/dist/movethewheels/constants/mockData.d.ts +0 -33
- package/dist/movethewheels/hooks/index.d.ts +0 -12
- package/dist/movethewheels/hooks/useAnalytics.d.ts +0 -118
- package/dist/movethewheels/hooks/useCustomers.d.ts +0 -37
- package/dist/movethewheels/hooks/useFleet.d.ts +0 -71
- package/dist/movethewheels/hooks/useInventory.d.ts +0 -60
- package/dist/movethewheels/hooks/useOrders.d.ts +0 -47
- package/dist/movethewheels/hooks/useRoutes.d.ts +0 -41
- package/dist/movethewheels/hooks/useTracking.d.ts +0 -69
- package/dist/movethewheels/index.d.ts +0 -30
- package/dist/movethewheels/pages/AIAssistantPage.d.ts +0 -4
- package/dist/movethewheels/pages/AnalyticsPage.d.ts +0 -4
- package/dist/movethewheels/pages/CreateOrderPage.d.ts +0 -6
- package/dist/movethewheels/pages/CustomerDetailsPage.d.ts +0 -4
- package/dist/movethewheels/pages/CustomersPage.d.ts +0 -4
- package/dist/movethewheels/pages/DashboardPage.d.ts +0 -6
- package/dist/movethewheels/pages/DriverDetailsPage.d.ts +0 -4
- package/dist/movethewheels/pages/DriversPage.d.ts +0 -4
- package/dist/movethewheels/pages/FinancePage.d.ts +0 -4
- package/dist/movethewheels/pages/FleetPage.d.ts +0 -6
- package/dist/movethewheels/pages/ImportExportPage.d.ts +0 -4
- package/dist/movethewheels/pages/InventoryPage.d.ts +0 -4
- package/dist/movethewheels/pages/LiveTrackingPage.d.ts +0 -6
- package/dist/movethewheels/pages/MarketplacePage.d.ts +0 -4
- package/dist/movethewheels/pages/OrderDetailsPage.d.ts +0 -6
- package/dist/movethewheels/pages/OrdersListPage.d.ts +0 -6
- package/dist/movethewheels/pages/ProductDetailsPage.d.ts +0 -4
- package/dist/movethewheels/pages/ProductsPage.d.ts +0 -4
- package/dist/movethewheels/pages/ReportsPage.d.ts +0 -4
- package/dist/movethewheels/pages/RouteDetailsPage.d.ts +0 -4
- package/dist/movethewheels/pages/RoutesPage.d.ts +0 -4
- package/dist/movethewheels/pages/SettingsPage.d.ts +0 -4
- package/dist/movethewheels/pages/TrackingPage.d.ts +0 -6
- package/dist/movethewheels/pages/VehicleDetailsPage.d.ts +0 -4
- package/dist/movethewheels/pages/VehiclesPage.d.ts +0 -4
- package/dist/movethewheels/pages/WarehouseDetailsPage.d.ts +0 -4
- package/dist/movethewheels/pages/WarehousesPage.d.ts +0 -4
- package/dist/movethewheels/providers/MoveTheWheelsProvider.d.ts +0 -16
- package/dist/movethewheels/store/movethewheelsStore.d.ts +0 -73
- package/dist/movethewheels/types/index.d.ts +0 -655
- package/dist/movethewheels/utils/cn.d.ts +0 -6
- package/dist/movethewheels/utils/formatters.d.ts +0 -60
- package/dist/movethewheels/utils/graphqlClient.d.ts +0 -11
- package/dist/movethewheels/utils/index.d.ts +0 -7
- package/dist/movethewheels/utils/navigation.d.ts +0 -23
|
@@ -1,3704 +0,0 @@
|
|
|
1
|
-
import * as Types from './wspace-types';
|
|
2
|
-
import * as Apollo from '@apollo/client';
|
|
3
|
-
import * as ApolloReactHooks from '@apollo/client/react';
|
|
4
|
-
export type MovethewheelsOrderCoreFragment = {
|
|
5
|
-
__typename?: 'MovethewheelsOrder';
|
|
6
|
-
id: string;
|
|
7
|
-
orderNumber: string;
|
|
8
|
-
orderType: Types.OrderType;
|
|
9
|
-
status: Types.OrderStatus;
|
|
10
|
-
priority: Types.OrderPriority;
|
|
11
|
-
customerId: string;
|
|
12
|
-
trackingNumber?: string | null;
|
|
13
|
-
pickupAddress: Record<string, unknown>;
|
|
14
|
-
deliveryAddress: Record<string, unknown>;
|
|
15
|
-
items: Record<string, unknown>;
|
|
16
|
-
pricing?: Record<string, unknown> | null;
|
|
17
|
-
scheduledDelivery?: string | null;
|
|
18
|
-
vehicleId?: string | null;
|
|
19
|
-
driverId?: string | null;
|
|
20
|
-
createdAt: string;
|
|
21
|
-
updatedAt: string;
|
|
22
|
-
};
|
|
23
|
-
export type CustomerCoreFragment = {
|
|
24
|
-
__typename?: 'Customer';
|
|
25
|
-
id: string;
|
|
26
|
-
name: string;
|
|
27
|
-
email?: string | null;
|
|
28
|
-
phone?: string | null;
|
|
29
|
-
type: string;
|
|
30
|
-
company?: string | null;
|
|
31
|
-
address?: Record<string, unknown> | null;
|
|
32
|
-
rating?: number | null;
|
|
33
|
-
createdAt: string;
|
|
34
|
-
updatedAt: string;
|
|
35
|
-
};
|
|
36
|
-
export type ProductCoreFragment = {
|
|
37
|
-
__typename?: 'Product';
|
|
38
|
-
id: string;
|
|
39
|
-
sku: string;
|
|
40
|
-
name: string;
|
|
41
|
-
description?: string | null;
|
|
42
|
-
category?: string | null;
|
|
43
|
-
brand?: string | null;
|
|
44
|
-
dimensions?: Record<string, unknown> | null;
|
|
45
|
-
weight?: number | null;
|
|
46
|
-
value?: number | null;
|
|
47
|
-
hazardous: boolean;
|
|
48
|
-
fragile: boolean;
|
|
49
|
-
temperatureControlled: boolean;
|
|
50
|
-
createdAt: string;
|
|
51
|
-
updatedAt: string;
|
|
52
|
-
};
|
|
53
|
-
export type VehicleCoreFragment = {
|
|
54
|
-
__typename?: 'Vehicle';
|
|
55
|
-
id: string;
|
|
56
|
-
vehicleNumber: string;
|
|
57
|
-
make?: string | null;
|
|
58
|
-
model?: string | null;
|
|
59
|
-
year?: number | null;
|
|
60
|
-
licensePlate?: string | null;
|
|
61
|
-
type: Types.VehicleType;
|
|
62
|
-
ownershipType?: string | null;
|
|
63
|
-
capacity?: Record<string, unknown> | null;
|
|
64
|
-
status: Types.VehicleStatus;
|
|
65
|
-
currentLocation?: Record<string, unknown> | null;
|
|
66
|
-
fuelLevel?: number | null;
|
|
67
|
-
mileage?: number | null;
|
|
68
|
-
createdAt: string;
|
|
69
|
-
updatedAt: string;
|
|
70
|
-
};
|
|
71
|
-
export type DriverCoreFragment = {
|
|
72
|
-
__typename?: 'Driver';
|
|
73
|
-
id: string;
|
|
74
|
-
employeeId: string;
|
|
75
|
-
firstName: string;
|
|
76
|
-
lastName: string;
|
|
77
|
-
phone?: string | null;
|
|
78
|
-
email?: string | null;
|
|
79
|
-
licenseNumber?: string | null;
|
|
80
|
-
licenseClass?: string | null;
|
|
81
|
-
licenseExpiry?: string | null;
|
|
82
|
-
status: Types.DriverStatus;
|
|
83
|
-
currentLocation?: Record<string, unknown> | null;
|
|
84
|
-
rating?: number | null;
|
|
85
|
-
userId?: string | null;
|
|
86
|
-
vehicleId?: string | null;
|
|
87
|
-
createdAt: string;
|
|
88
|
-
updatedAt: string;
|
|
89
|
-
};
|
|
90
|
-
export type WarehouseCoreFragment = {
|
|
91
|
-
__typename?: 'Warehouse';
|
|
92
|
-
id: string;
|
|
93
|
-
name: string;
|
|
94
|
-
code: string;
|
|
95
|
-
type: Types.WarehouseType;
|
|
96
|
-
address: Record<string, unknown>;
|
|
97
|
-
contactInfo?: Record<string, unknown> | null;
|
|
98
|
-
operatingHours?: Record<string, unknown> | null;
|
|
99
|
-
capabilities?: Record<string, unknown> | null;
|
|
100
|
-
status: string;
|
|
101
|
-
totalCapacity?: number | null;
|
|
102
|
-
usedCapacity?: number | null;
|
|
103
|
-
createdAt: string;
|
|
104
|
-
updatedAt: string;
|
|
105
|
-
};
|
|
106
|
-
export type InventoryItemCoreFragment = {
|
|
107
|
-
__typename?: 'InventoryItem';
|
|
108
|
-
id: string;
|
|
109
|
-
productId: string;
|
|
110
|
-
warehouseId: string;
|
|
111
|
-
locationId?: string | null;
|
|
112
|
-
onHand: number;
|
|
113
|
-
available: number;
|
|
114
|
-
allocated: number;
|
|
115
|
-
damaged: number;
|
|
116
|
-
unitCost?: number | null;
|
|
117
|
-
reorderPoint?: number | null;
|
|
118
|
-
safetyStock?: number | null;
|
|
119
|
-
createdAt: string;
|
|
120
|
-
updatedAt: string;
|
|
121
|
-
};
|
|
122
|
-
export type RouteCoreFragment = {
|
|
123
|
-
__typename?: 'Route';
|
|
124
|
-
id: string;
|
|
125
|
-
name: string;
|
|
126
|
-
status: Types.RouteStatus;
|
|
127
|
-
shipmentId?: string | null;
|
|
128
|
-
vehicleId?: string | null;
|
|
129
|
-
driverId?: string | null;
|
|
130
|
-
waypoints: Record<string, unknown>;
|
|
131
|
-
estimatedDistance?: number | null;
|
|
132
|
-
estimatedDuration?: number | null;
|
|
133
|
-
actualDistance?: number | null;
|
|
134
|
-
actualDuration?: number | null;
|
|
135
|
-
fuelCost?: number | null;
|
|
136
|
-
createdAt: string;
|
|
137
|
-
updatedAt: string;
|
|
138
|
-
};
|
|
139
|
-
export type ShipmentCoreFragment = {
|
|
140
|
-
__typename?: 'Shipment';
|
|
141
|
-
id: string;
|
|
142
|
-
shipmentNumber: string;
|
|
143
|
-
orderId: string;
|
|
144
|
-
customerId?: string | null;
|
|
145
|
-
carrierId?: string | null;
|
|
146
|
-
status: Types.ShipmentStatus;
|
|
147
|
-
origin: Record<string, unknown>;
|
|
148
|
-
destination: Record<string, unknown>;
|
|
149
|
-
cargoDetails?: Record<string, unknown> | null;
|
|
150
|
-
trackingNumber?: string | null;
|
|
151
|
-
estimatedDelivery?: string | null;
|
|
152
|
-
actualDelivery?: string | null;
|
|
153
|
-
createdAt: string;
|
|
154
|
-
updatedAt: string;
|
|
155
|
-
};
|
|
156
|
-
export type ServiceProviderCoreFragment = {
|
|
157
|
-
__typename?: 'ServiceProvider';
|
|
158
|
-
id: string;
|
|
159
|
-
name: string;
|
|
160
|
-
type: string;
|
|
161
|
-
description?: string | null;
|
|
162
|
-
rating?: number | null;
|
|
163
|
-
contactInfo?: Record<string, unknown> | null;
|
|
164
|
-
services?: Record<string, unknown> | null;
|
|
165
|
-
isVerified: boolean;
|
|
166
|
-
isActive: boolean;
|
|
167
|
-
createdAt: string;
|
|
168
|
-
updatedAt: string;
|
|
169
|
-
};
|
|
170
|
-
export type ServiceOfferingCoreFragment = {
|
|
171
|
-
__typename?: 'ServiceOffering';
|
|
172
|
-
id: string;
|
|
173
|
-
providerId: string;
|
|
174
|
-
name: string;
|
|
175
|
-
description?: string | null;
|
|
176
|
-
category?: string | null;
|
|
177
|
-
price: number;
|
|
178
|
-
currency: string;
|
|
179
|
-
availability?: Record<string, unknown> | null;
|
|
180
|
-
createdAt: string;
|
|
181
|
-
updatedAt: string;
|
|
182
|
-
};
|
|
183
|
-
export type MovethewheelsReportCoreFragment = {
|
|
184
|
-
__typename?: 'MovethewheelsReport';
|
|
185
|
-
id: string;
|
|
186
|
-
name: string;
|
|
187
|
-
type: string;
|
|
188
|
-
description?: string | null;
|
|
189
|
-
schedule?: string | null;
|
|
190
|
-
lastGenerated?: string | null;
|
|
191
|
-
configuration?: Record<string, unknown> | null;
|
|
192
|
-
status: string;
|
|
193
|
-
createdAt: string;
|
|
194
|
-
updatedAt: string;
|
|
195
|
-
};
|
|
196
|
-
export type CreateCustomerMutationVariables = Types.Exact<{
|
|
197
|
-
input: Types.CreateCustomerInput;
|
|
198
|
-
}>;
|
|
199
|
-
export type CreateCustomerMutation = {
|
|
200
|
-
__typename?: 'Mutation';
|
|
201
|
-
createCustomer: {
|
|
202
|
-
__typename?: 'Customer';
|
|
203
|
-
id: string;
|
|
204
|
-
name: string;
|
|
205
|
-
email?: string | null;
|
|
206
|
-
phone?: string | null;
|
|
207
|
-
type: string;
|
|
208
|
-
company?: string | null;
|
|
209
|
-
address?: Record<string, unknown> | null;
|
|
210
|
-
rating?: number | null;
|
|
211
|
-
createdAt: string;
|
|
212
|
-
updatedAt: string;
|
|
213
|
-
};
|
|
214
|
-
};
|
|
215
|
-
export type UpdateCustomerMutationVariables = Types.Exact<{
|
|
216
|
-
id: Types.Scalars['ID']['input'];
|
|
217
|
-
input: Types.UpdateCustomerInput;
|
|
218
|
-
}>;
|
|
219
|
-
export type UpdateCustomerMutation = {
|
|
220
|
-
__typename?: 'Mutation';
|
|
221
|
-
updateCustomer: {
|
|
222
|
-
__typename?: 'Customer';
|
|
223
|
-
id: string;
|
|
224
|
-
name: string;
|
|
225
|
-
email?: string | null;
|
|
226
|
-
phone?: string | null;
|
|
227
|
-
type: string;
|
|
228
|
-
company?: string | null;
|
|
229
|
-
address?: Record<string, unknown> | null;
|
|
230
|
-
rating?: number | null;
|
|
231
|
-
createdAt: string;
|
|
232
|
-
updatedAt: string;
|
|
233
|
-
};
|
|
234
|
-
};
|
|
235
|
-
export type DeleteCustomerMutationVariables = Types.Exact<{
|
|
236
|
-
id: Types.Scalars['ID']['input'];
|
|
237
|
-
}>;
|
|
238
|
-
export type DeleteCustomerMutation = {
|
|
239
|
-
__typename?: 'Mutation';
|
|
240
|
-
deleteCustomer: boolean;
|
|
241
|
-
};
|
|
242
|
-
export type CreateProductMutationVariables = Types.Exact<{
|
|
243
|
-
input: Types.CreateProductInput;
|
|
244
|
-
}>;
|
|
245
|
-
export type CreateProductMutation = {
|
|
246
|
-
__typename?: 'Mutation';
|
|
247
|
-
createProduct: {
|
|
248
|
-
__typename?: 'Product';
|
|
249
|
-
id: string;
|
|
250
|
-
sku: string;
|
|
251
|
-
name: string;
|
|
252
|
-
description?: string | null;
|
|
253
|
-
category?: string | null;
|
|
254
|
-
brand?: string | null;
|
|
255
|
-
dimensions?: Record<string, unknown> | null;
|
|
256
|
-
weight?: number | null;
|
|
257
|
-
value?: number | null;
|
|
258
|
-
hazardous: boolean;
|
|
259
|
-
fragile: boolean;
|
|
260
|
-
temperatureControlled: boolean;
|
|
261
|
-
createdAt: string;
|
|
262
|
-
updatedAt: string;
|
|
263
|
-
};
|
|
264
|
-
};
|
|
265
|
-
export type UpdateProductMutationVariables = Types.Exact<{
|
|
266
|
-
id: Types.Scalars['ID']['input'];
|
|
267
|
-
input: Types.UpdateProductInput;
|
|
268
|
-
}>;
|
|
269
|
-
export type UpdateProductMutation = {
|
|
270
|
-
__typename?: 'Mutation';
|
|
271
|
-
updateProduct: {
|
|
272
|
-
__typename?: 'Product';
|
|
273
|
-
id: string;
|
|
274
|
-
sku: string;
|
|
275
|
-
name: string;
|
|
276
|
-
description?: string | null;
|
|
277
|
-
category?: string | null;
|
|
278
|
-
brand?: string | null;
|
|
279
|
-
dimensions?: Record<string, unknown> | null;
|
|
280
|
-
weight?: number | null;
|
|
281
|
-
value?: number | null;
|
|
282
|
-
hazardous: boolean;
|
|
283
|
-
fragile: boolean;
|
|
284
|
-
temperatureControlled: boolean;
|
|
285
|
-
createdAt: string;
|
|
286
|
-
updatedAt: string;
|
|
287
|
-
};
|
|
288
|
-
};
|
|
289
|
-
export type DeleteProductMutationVariables = Types.Exact<{
|
|
290
|
-
id: Types.Scalars['ID']['input'];
|
|
291
|
-
}>;
|
|
292
|
-
export type DeleteProductMutation = {
|
|
293
|
-
__typename?: 'Mutation';
|
|
294
|
-
deleteProduct: boolean;
|
|
295
|
-
};
|
|
296
|
-
export type CreateVehicleMutationVariables = Types.Exact<{
|
|
297
|
-
input: Types.CreateVehicleInput;
|
|
298
|
-
}>;
|
|
299
|
-
export type CreateVehicleMutation = {
|
|
300
|
-
__typename?: 'Mutation';
|
|
301
|
-
createVehicle: {
|
|
302
|
-
__typename?: 'Vehicle';
|
|
303
|
-
id: string;
|
|
304
|
-
vehicleNumber: string;
|
|
305
|
-
make?: string | null;
|
|
306
|
-
model?: string | null;
|
|
307
|
-
year?: number | null;
|
|
308
|
-
licensePlate?: string | null;
|
|
309
|
-
type: Types.VehicleType;
|
|
310
|
-
ownershipType?: string | null;
|
|
311
|
-
capacity?: Record<string, unknown> | null;
|
|
312
|
-
status: Types.VehicleStatus;
|
|
313
|
-
currentLocation?: Record<string, unknown> | null;
|
|
314
|
-
fuelLevel?: number | null;
|
|
315
|
-
mileage?: number | null;
|
|
316
|
-
createdAt: string;
|
|
317
|
-
updatedAt: string;
|
|
318
|
-
};
|
|
319
|
-
};
|
|
320
|
-
export type UpdateVehicleMutationVariables = Types.Exact<{
|
|
321
|
-
id: Types.Scalars['ID']['input'];
|
|
322
|
-
input: Types.UpdateVehicleInput;
|
|
323
|
-
}>;
|
|
324
|
-
export type UpdateVehicleMutation = {
|
|
325
|
-
__typename?: 'Mutation';
|
|
326
|
-
updateVehicle: {
|
|
327
|
-
__typename?: 'Vehicle';
|
|
328
|
-
id: string;
|
|
329
|
-
vehicleNumber: string;
|
|
330
|
-
make?: string | null;
|
|
331
|
-
model?: string | null;
|
|
332
|
-
year?: number | null;
|
|
333
|
-
licensePlate?: string | null;
|
|
334
|
-
type: Types.VehicleType;
|
|
335
|
-
ownershipType?: string | null;
|
|
336
|
-
capacity?: Record<string, unknown> | null;
|
|
337
|
-
status: Types.VehicleStatus;
|
|
338
|
-
currentLocation?: Record<string, unknown> | null;
|
|
339
|
-
fuelLevel?: number | null;
|
|
340
|
-
mileage?: number | null;
|
|
341
|
-
createdAt: string;
|
|
342
|
-
updatedAt: string;
|
|
343
|
-
};
|
|
344
|
-
};
|
|
345
|
-
export type UpdateVehicleStatusMutationVariables = Types.Exact<{
|
|
346
|
-
id: Types.Scalars['ID']['input'];
|
|
347
|
-
status: Types.VehicleStatus;
|
|
348
|
-
}>;
|
|
349
|
-
export type UpdateVehicleStatusMutation = {
|
|
350
|
-
__typename?: 'Mutation';
|
|
351
|
-
updateVehicleStatus: {
|
|
352
|
-
__typename?: 'Vehicle';
|
|
353
|
-
id: string;
|
|
354
|
-
vehicleNumber: string;
|
|
355
|
-
make?: string | null;
|
|
356
|
-
model?: string | null;
|
|
357
|
-
year?: number | null;
|
|
358
|
-
licensePlate?: string | null;
|
|
359
|
-
type: Types.VehicleType;
|
|
360
|
-
ownershipType?: string | null;
|
|
361
|
-
capacity?: Record<string, unknown> | null;
|
|
362
|
-
status: Types.VehicleStatus;
|
|
363
|
-
currentLocation?: Record<string, unknown> | null;
|
|
364
|
-
fuelLevel?: number | null;
|
|
365
|
-
mileage?: number | null;
|
|
366
|
-
createdAt: string;
|
|
367
|
-
updatedAt: string;
|
|
368
|
-
};
|
|
369
|
-
};
|
|
370
|
-
export type UpdateVehicleLocationMutationVariables = Types.Exact<{
|
|
371
|
-
id: Types.Scalars['ID']['input'];
|
|
372
|
-
location: Types.Scalars['JSON']['input'];
|
|
373
|
-
}>;
|
|
374
|
-
export type UpdateVehicleLocationMutation = {
|
|
375
|
-
__typename?: 'Mutation';
|
|
376
|
-
updateVehicleLocation: {
|
|
377
|
-
__typename?: 'Vehicle';
|
|
378
|
-
id: string;
|
|
379
|
-
vehicleNumber: string;
|
|
380
|
-
make?: string | null;
|
|
381
|
-
model?: string | null;
|
|
382
|
-
year?: number | null;
|
|
383
|
-
licensePlate?: string | null;
|
|
384
|
-
type: Types.VehicleType;
|
|
385
|
-
ownershipType?: string | null;
|
|
386
|
-
capacity?: Record<string, unknown> | null;
|
|
387
|
-
status: Types.VehicleStatus;
|
|
388
|
-
currentLocation?: Record<string, unknown> | null;
|
|
389
|
-
fuelLevel?: number | null;
|
|
390
|
-
mileage?: number | null;
|
|
391
|
-
createdAt: string;
|
|
392
|
-
updatedAt: string;
|
|
393
|
-
};
|
|
394
|
-
};
|
|
395
|
-
export type DeleteVehicleMutationVariables = Types.Exact<{
|
|
396
|
-
id: Types.Scalars['ID']['input'];
|
|
397
|
-
}>;
|
|
398
|
-
export type DeleteVehicleMutation = {
|
|
399
|
-
__typename?: 'Mutation';
|
|
400
|
-
deleteVehicle: boolean;
|
|
401
|
-
};
|
|
402
|
-
export type CreateDriverMutationVariables = Types.Exact<{
|
|
403
|
-
input: Types.CreateDriverInput;
|
|
404
|
-
}>;
|
|
405
|
-
export type CreateDriverMutation = {
|
|
406
|
-
__typename?: 'Mutation';
|
|
407
|
-
createDriver: {
|
|
408
|
-
__typename?: 'Driver';
|
|
409
|
-
id: string;
|
|
410
|
-
employeeId: string;
|
|
411
|
-
firstName: string;
|
|
412
|
-
lastName: string;
|
|
413
|
-
phone?: string | null;
|
|
414
|
-
email?: string | null;
|
|
415
|
-
licenseNumber?: string | null;
|
|
416
|
-
licenseClass?: string | null;
|
|
417
|
-
licenseExpiry?: string | null;
|
|
418
|
-
status: Types.DriverStatus;
|
|
419
|
-
currentLocation?: Record<string, unknown> | null;
|
|
420
|
-
rating?: number | null;
|
|
421
|
-
userId?: string | null;
|
|
422
|
-
vehicleId?: string | null;
|
|
423
|
-
createdAt: string;
|
|
424
|
-
updatedAt: string;
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
export type UpdateDriverMutationVariables = Types.Exact<{
|
|
428
|
-
id: Types.Scalars['ID']['input'];
|
|
429
|
-
input: Types.UpdateDriverInput;
|
|
430
|
-
}>;
|
|
431
|
-
export type UpdateDriverMutation = {
|
|
432
|
-
__typename?: 'Mutation';
|
|
433
|
-
updateDriver: {
|
|
434
|
-
__typename?: 'Driver';
|
|
435
|
-
id: string;
|
|
436
|
-
employeeId: string;
|
|
437
|
-
firstName: string;
|
|
438
|
-
lastName: string;
|
|
439
|
-
phone?: string | null;
|
|
440
|
-
email?: string | null;
|
|
441
|
-
licenseNumber?: string | null;
|
|
442
|
-
licenseClass?: string | null;
|
|
443
|
-
licenseExpiry?: string | null;
|
|
444
|
-
status: Types.DriverStatus;
|
|
445
|
-
currentLocation?: Record<string, unknown> | null;
|
|
446
|
-
rating?: number | null;
|
|
447
|
-
userId?: string | null;
|
|
448
|
-
vehicleId?: string | null;
|
|
449
|
-
createdAt: string;
|
|
450
|
-
updatedAt: string;
|
|
451
|
-
};
|
|
452
|
-
};
|
|
453
|
-
export type UpdateDriverStatusMutationVariables = Types.Exact<{
|
|
454
|
-
id: Types.Scalars['ID']['input'];
|
|
455
|
-
status: Types.DriverStatus;
|
|
456
|
-
}>;
|
|
457
|
-
export type UpdateDriverStatusMutation = {
|
|
458
|
-
__typename?: 'Mutation';
|
|
459
|
-
updateDriverStatus: {
|
|
460
|
-
__typename?: 'Driver';
|
|
461
|
-
id: string;
|
|
462
|
-
employeeId: string;
|
|
463
|
-
firstName: string;
|
|
464
|
-
lastName: string;
|
|
465
|
-
phone?: string | null;
|
|
466
|
-
email?: string | null;
|
|
467
|
-
licenseNumber?: string | null;
|
|
468
|
-
licenseClass?: string | null;
|
|
469
|
-
licenseExpiry?: string | null;
|
|
470
|
-
status: Types.DriverStatus;
|
|
471
|
-
currentLocation?: Record<string, unknown> | null;
|
|
472
|
-
rating?: number | null;
|
|
473
|
-
userId?: string | null;
|
|
474
|
-
vehicleId?: string | null;
|
|
475
|
-
createdAt: string;
|
|
476
|
-
updatedAt: string;
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
export type AssignDriverVehicleMutationVariables = Types.Exact<{
|
|
480
|
-
id: Types.Scalars['ID']['input'];
|
|
481
|
-
vehicleId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
|
|
482
|
-
}>;
|
|
483
|
-
export type AssignDriverVehicleMutation = {
|
|
484
|
-
__typename?: 'Mutation';
|
|
485
|
-
assignDriverVehicle: {
|
|
486
|
-
__typename?: 'Driver';
|
|
487
|
-
id: string;
|
|
488
|
-
employeeId: string;
|
|
489
|
-
firstName: string;
|
|
490
|
-
lastName: string;
|
|
491
|
-
phone?: string | null;
|
|
492
|
-
email?: string | null;
|
|
493
|
-
licenseNumber?: string | null;
|
|
494
|
-
licenseClass?: string | null;
|
|
495
|
-
licenseExpiry?: string | null;
|
|
496
|
-
status: Types.DriverStatus;
|
|
497
|
-
currentLocation?: Record<string, unknown> | null;
|
|
498
|
-
rating?: number | null;
|
|
499
|
-
userId?: string | null;
|
|
500
|
-
vehicleId?: string | null;
|
|
501
|
-
createdAt: string;
|
|
502
|
-
updatedAt: string;
|
|
503
|
-
};
|
|
504
|
-
};
|
|
505
|
-
export type DeleteDriverMutationVariables = Types.Exact<{
|
|
506
|
-
id: Types.Scalars['ID']['input'];
|
|
507
|
-
}>;
|
|
508
|
-
export type DeleteDriverMutation = {
|
|
509
|
-
__typename?: 'Mutation';
|
|
510
|
-
deleteDriver: boolean;
|
|
511
|
-
};
|
|
512
|
-
export type CreateWarehouseMutationVariables = Types.Exact<{
|
|
513
|
-
input: Types.CreateWarehouseInput;
|
|
514
|
-
}>;
|
|
515
|
-
export type CreateWarehouseMutation = {
|
|
516
|
-
__typename?: 'Mutation';
|
|
517
|
-
createWarehouse: {
|
|
518
|
-
__typename?: 'Warehouse';
|
|
519
|
-
id: string;
|
|
520
|
-
name: string;
|
|
521
|
-
code: string;
|
|
522
|
-
type: Types.WarehouseType;
|
|
523
|
-
address: Record<string, unknown>;
|
|
524
|
-
contactInfo?: Record<string, unknown> | null;
|
|
525
|
-
operatingHours?: Record<string, unknown> | null;
|
|
526
|
-
capabilities?: Record<string, unknown> | null;
|
|
527
|
-
status: string;
|
|
528
|
-
totalCapacity?: number | null;
|
|
529
|
-
usedCapacity?: number | null;
|
|
530
|
-
createdAt: string;
|
|
531
|
-
updatedAt: string;
|
|
532
|
-
};
|
|
533
|
-
};
|
|
534
|
-
export type UpdateWarehouseMutationVariables = Types.Exact<{
|
|
535
|
-
id: Types.Scalars['ID']['input'];
|
|
536
|
-
input: Types.UpdateWarehouseInput;
|
|
537
|
-
}>;
|
|
538
|
-
export type UpdateWarehouseMutation = {
|
|
539
|
-
__typename?: 'Mutation';
|
|
540
|
-
updateWarehouse: {
|
|
541
|
-
__typename?: 'Warehouse';
|
|
542
|
-
id: string;
|
|
543
|
-
name: string;
|
|
544
|
-
code: string;
|
|
545
|
-
type: Types.WarehouseType;
|
|
546
|
-
address: Record<string, unknown>;
|
|
547
|
-
contactInfo?: Record<string, unknown> | null;
|
|
548
|
-
operatingHours?: Record<string, unknown> | null;
|
|
549
|
-
capabilities?: Record<string, unknown> | null;
|
|
550
|
-
status: string;
|
|
551
|
-
totalCapacity?: number | null;
|
|
552
|
-
usedCapacity?: number | null;
|
|
553
|
-
createdAt: string;
|
|
554
|
-
updatedAt: string;
|
|
555
|
-
};
|
|
556
|
-
};
|
|
557
|
-
export type DeleteWarehouseMutationVariables = Types.Exact<{
|
|
558
|
-
id: Types.Scalars['ID']['input'];
|
|
559
|
-
}>;
|
|
560
|
-
export type DeleteWarehouseMutation = {
|
|
561
|
-
__typename?: 'Mutation';
|
|
562
|
-
deleteWarehouse: boolean;
|
|
563
|
-
};
|
|
564
|
-
export type CreateInventoryItemMutationVariables = Types.Exact<{
|
|
565
|
-
input: Types.CreateInventoryItemInput;
|
|
566
|
-
}>;
|
|
567
|
-
export type CreateInventoryItemMutation = {
|
|
568
|
-
__typename?: 'Mutation';
|
|
569
|
-
createInventoryItem: {
|
|
570
|
-
__typename?: 'InventoryItem';
|
|
571
|
-
id: string;
|
|
572
|
-
productId: string;
|
|
573
|
-
warehouseId: string;
|
|
574
|
-
locationId?: string | null;
|
|
575
|
-
onHand: number;
|
|
576
|
-
available: number;
|
|
577
|
-
allocated: number;
|
|
578
|
-
damaged: number;
|
|
579
|
-
unitCost?: number | null;
|
|
580
|
-
reorderPoint?: number | null;
|
|
581
|
-
safetyStock?: number | null;
|
|
582
|
-
createdAt: string;
|
|
583
|
-
updatedAt: string;
|
|
584
|
-
};
|
|
585
|
-
};
|
|
586
|
-
export type UpdateInventoryItemMutationVariables = Types.Exact<{
|
|
587
|
-
id: Types.Scalars['ID']['input'];
|
|
588
|
-
input: Types.UpdateInventoryItemInput;
|
|
589
|
-
}>;
|
|
590
|
-
export type UpdateInventoryItemMutation = {
|
|
591
|
-
__typename?: 'Mutation';
|
|
592
|
-
updateInventoryItem: {
|
|
593
|
-
__typename?: 'InventoryItem';
|
|
594
|
-
id: string;
|
|
595
|
-
productId: string;
|
|
596
|
-
warehouseId: string;
|
|
597
|
-
locationId?: string | null;
|
|
598
|
-
onHand: number;
|
|
599
|
-
available: number;
|
|
600
|
-
allocated: number;
|
|
601
|
-
damaged: number;
|
|
602
|
-
unitCost?: number | null;
|
|
603
|
-
reorderPoint?: number | null;
|
|
604
|
-
safetyStock?: number | null;
|
|
605
|
-
createdAt: string;
|
|
606
|
-
updatedAt: string;
|
|
607
|
-
};
|
|
608
|
-
};
|
|
609
|
-
export type AdjustInventoryStockMutationVariables = Types.Exact<{
|
|
610
|
-
input: Types.AdjustInventoryStockInput;
|
|
611
|
-
}>;
|
|
612
|
-
export type AdjustInventoryStockMutation = {
|
|
613
|
-
__typename?: 'Mutation';
|
|
614
|
-
adjustInventoryStock: {
|
|
615
|
-
__typename?: 'InventoryItem';
|
|
616
|
-
id: string;
|
|
617
|
-
productId: string;
|
|
618
|
-
warehouseId: string;
|
|
619
|
-
locationId?: string | null;
|
|
620
|
-
onHand: number;
|
|
621
|
-
available: number;
|
|
622
|
-
allocated: number;
|
|
623
|
-
damaged: number;
|
|
624
|
-
unitCost?: number | null;
|
|
625
|
-
reorderPoint?: number | null;
|
|
626
|
-
safetyStock?: number | null;
|
|
627
|
-
createdAt: string;
|
|
628
|
-
updatedAt: string;
|
|
629
|
-
};
|
|
630
|
-
};
|
|
631
|
-
export type DeleteInventoryItemMutationVariables = Types.Exact<{
|
|
632
|
-
id: Types.Scalars['ID']['input'];
|
|
633
|
-
}>;
|
|
634
|
-
export type DeleteInventoryItemMutation = {
|
|
635
|
-
__typename?: 'Mutation';
|
|
636
|
-
deleteInventoryItem: boolean;
|
|
637
|
-
};
|
|
638
|
-
export type CreateRouteMutationVariables = Types.Exact<{
|
|
639
|
-
input: Types.CreateRouteInput;
|
|
640
|
-
}>;
|
|
641
|
-
export type CreateRouteMutation = {
|
|
642
|
-
__typename?: 'Mutation';
|
|
643
|
-
createRoute: {
|
|
644
|
-
__typename?: 'Route';
|
|
645
|
-
id: string;
|
|
646
|
-
name: string;
|
|
647
|
-
status: Types.RouteStatus;
|
|
648
|
-
shipmentId?: string | null;
|
|
649
|
-
vehicleId?: string | null;
|
|
650
|
-
driverId?: string | null;
|
|
651
|
-
waypoints: Record<string, unknown>;
|
|
652
|
-
estimatedDistance?: number | null;
|
|
653
|
-
estimatedDuration?: number | null;
|
|
654
|
-
actualDistance?: number | null;
|
|
655
|
-
actualDuration?: number | null;
|
|
656
|
-
fuelCost?: number | null;
|
|
657
|
-
createdAt: string;
|
|
658
|
-
updatedAt: string;
|
|
659
|
-
};
|
|
660
|
-
};
|
|
661
|
-
export type UpdateRouteMutationVariables = Types.Exact<{
|
|
662
|
-
id: Types.Scalars['ID']['input'];
|
|
663
|
-
input: Types.UpdateRouteInput;
|
|
664
|
-
}>;
|
|
665
|
-
export type UpdateRouteMutation = {
|
|
666
|
-
__typename?: 'Mutation';
|
|
667
|
-
updateRoute: {
|
|
668
|
-
__typename?: 'Route';
|
|
669
|
-
id: string;
|
|
670
|
-
name: string;
|
|
671
|
-
status: Types.RouteStatus;
|
|
672
|
-
shipmentId?: string | null;
|
|
673
|
-
vehicleId?: string | null;
|
|
674
|
-
driverId?: string | null;
|
|
675
|
-
waypoints: Record<string, unknown>;
|
|
676
|
-
estimatedDistance?: number | null;
|
|
677
|
-
estimatedDuration?: number | null;
|
|
678
|
-
actualDistance?: number | null;
|
|
679
|
-
actualDuration?: number | null;
|
|
680
|
-
fuelCost?: number | null;
|
|
681
|
-
createdAt: string;
|
|
682
|
-
updatedAt: string;
|
|
683
|
-
};
|
|
684
|
-
};
|
|
685
|
-
export type OptimizeRouteMutationVariables = Types.Exact<{
|
|
686
|
-
id: Types.Scalars['ID']['input'];
|
|
687
|
-
}>;
|
|
688
|
-
export type OptimizeRouteMutation = {
|
|
689
|
-
__typename?: 'Mutation';
|
|
690
|
-
optimizeRoute: {
|
|
691
|
-
__typename?: 'Route';
|
|
692
|
-
id: string;
|
|
693
|
-
name: string;
|
|
694
|
-
status: Types.RouteStatus;
|
|
695
|
-
shipmentId?: string | null;
|
|
696
|
-
vehicleId?: string | null;
|
|
697
|
-
driverId?: string | null;
|
|
698
|
-
waypoints: Record<string, unknown>;
|
|
699
|
-
estimatedDistance?: number | null;
|
|
700
|
-
estimatedDuration?: number | null;
|
|
701
|
-
actualDistance?: number | null;
|
|
702
|
-
actualDuration?: number | null;
|
|
703
|
-
fuelCost?: number | null;
|
|
704
|
-
createdAt: string;
|
|
705
|
-
updatedAt: string;
|
|
706
|
-
};
|
|
707
|
-
};
|
|
708
|
-
export type DeleteRouteMutationVariables = Types.Exact<{
|
|
709
|
-
id: Types.Scalars['ID']['input'];
|
|
710
|
-
}>;
|
|
711
|
-
export type DeleteRouteMutation = {
|
|
712
|
-
__typename?: 'Mutation';
|
|
713
|
-
deleteRoute: boolean;
|
|
714
|
-
};
|
|
715
|
-
export type CreateShipmentMutationVariables = Types.Exact<{
|
|
716
|
-
input: Types.CreateShipmentInput;
|
|
717
|
-
}>;
|
|
718
|
-
export type CreateShipmentMutation = {
|
|
719
|
-
__typename?: 'Mutation';
|
|
720
|
-
createShipment: {
|
|
721
|
-
__typename?: 'Shipment';
|
|
722
|
-
id: string;
|
|
723
|
-
shipmentNumber: string;
|
|
724
|
-
orderId: string;
|
|
725
|
-
customerId?: string | null;
|
|
726
|
-
carrierId?: string | null;
|
|
727
|
-
status: Types.ShipmentStatus;
|
|
728
|
-
origin: Record<string, unknown>;
|
|
729
|
-
destination: Record<string, unknown>;
|
|
730
|
-
cargoDetails?: Record<string, unknown> | null;
|
|
731
|
-
trackingNumber?: string | null;
|
|
732
|
-
estimatedDelivery?: string | null;
|
|
733
|
-
actualDelivery?: string | null;
|
|
734
|
-
createdAt: string;
|
|
735
|
-
updatedAt: string;
|
|
736
|
-
};
|
|
737
|
-
};
|
|
738
|
-
export type UpdateShipmentMutationVariables = Types.Exact<{
|
|
739
|
-
id: Types.Scalars['ID']['input'];
|
|
740
|
-
input: Types.UpdateShipmentInput;
|
|
741
|
-
}>;
|
|
742
|
-
export type UpdateShipmentMutation = {
|
|
743
|
-
__typename?: 'Mutation';
|
|
744
|
-
updateShipment: {
|
|
745
|
-
__typename?: 'Shipment';
|
|
746
|
-
id: string;
|
|
747
|
-
shipmentNumber: string;
|
|
748
|
-
orderId: string;
|
|
749
|
-
customerId?: string | null;
|
|
750
|
-
carrierId?: string | null;
|
|
751
|
-
status: Types.ShipmentStatus;
|
|
752
|
-
origin: Record<string, unknown>;
|
|
753
|
-
destination: Record<string, unknown>;
|
|
754
|
-
cargoDetails?: Record<string, unknown> | null;
|
|
755
|
-
trackingNumber?: string | null;
|
|
756
|
-
estimatedDelivery?: string | null;
|
|
757
|
-
actualDelivery?: string | null;
|
|
758
|
-
createdAt: string;
|
|
759
|
-
updatedAt: string;
|
|
760
|
-
};
|
|
761
|
-
};
|
|
762
|
-
export type DeleteShipmentMutationVariables = Types.Exact<{
|
|
763
|
-
id: Types.Scalars['ID']['input'];
|
|
764
|
-
}>;
|
|
765
|
-
export type DeleteShipmentMutation = {
|
|
766
|
-
__typename?: 'Mutation';
|
|
767
|
-
deleteShipment: boolean;
|
|
768
|
-
};
|
|
769
|
-
export type AddTrackingEventMutationVariables = Types.Exact<{
|
|
770
|
-
input: Types.AddTrackingEventInput;
|
|
771
|
-
}>;
|
|
772
|
-
export type AddTrackingEventMutation = {
|
|
773
|
-
__typename?: 'Mutation';
|
|
774
|
-
addTrackingEvent: {
|
|
775
|
-
__typename?: 'TrackingEvent';
|
|
776
|
-
id: string;
|
|
777
|
-
shipmentId: string;
|
|
778
|
-
eventType: Types.TrackingEventType;
|
|
779
|
-
location?: Record<string, unknown> | null;
|
|
780
|
-
details?: string | null;
|
|
781
|
-
timestamp: string;
|
|
782
|
-
};
|
|
783
|
-
};
|
|
784
|
-
export type CreateServiceProviderMutationVariables = Types.Exact<{
|
|
785
|
-
input: Types.CreateServiceProviderInput;
|
|
786
|
-
}>;
|
|
787
|
-
export type CreateServiceProviderMutation = {
|
|
788
|
-
__typename?: 'Mutation';
|
|
789
|
-
createServiceProvider: {
|
|
790
|
-
__typename?: 'ServiceProvider';
|
|
791
|
-
id: string;
|
|
792
|
-
name: string;
|
|
793
|
-
type: string;
|
|
794
|
-
description?: string | null;
|
|
795
|
-
rating?: number | null;
|
|
796
|
-
contactInfo?: Record<string, unknown> | null;
|
|
797
|
-
services?: Record<string, unknown> | null;
|
|
798
|
-
isVerified: boolean;
|
|
799
|
-
isActive: boolean;
|
|
800
|
-
createdAt: string;
|
|
801
|
-
updatedAt: string;
|
|
802
|
-
};
|
|
803
|
-
};
|
|
804
|
-
export type UpdateServiceProviderMutationVariables = Types.Exact<{
|
|
805
|
-
id: Types.Scalars['ID']['input'];
|
|
806
|
-
input: Types.UpdateServiceProviderInput;
|
|
807
|
-
}>;
|
|
808
|
-
export type UpdateServiceProviderMutation = {
|
|
809
|
-
__typename?: 'Mutation';
|
|
810
|
-
updateServiceProvider: {
|
|
811
|
-
__typename?: 'ServiceProvider';
|
|
812
|
-
id: string;
|
|
813
|
-
name: string;
|
|
814
|
-
type: string;
|
|
815
|
-
description?: string | null;
|
|
816
|
-
rating?: number | null;
|
|
817
|
-
contactInfo?: Record<string, unknown> | null;
|
|
818
|
-
services?: Record<string, unknown> | null;
|
|
819
|
-
isVerified: boolean;
|
|
820
|
-
isActive: boolean;
|
|
821
|
-
createdAt: string;
|
|
822
|
-
updatedAt: string;
|
|
823
|
-
};
|
|
824
|
-
};
|
|
825
|
-
export type DeleteServiceProviderMutationVariables = Types.Exact<{
|
|
826
|
-
id: Types.Scalars['ID']['input'];
|
|
827
|
-
}>;
|
|
828
|
-
export type DeleteServiceProviderMutation = {
|
|
829
|
-
__typename?: 'Mutation';
|
|
830
|
-
deleteServiceProvider: boolean;
|
|
831
|
-
};
|
|
832
|
-
export type CreateServiceOfferingMutationVariables = Types.Exact<{
|
|
833
|
-
input: Types.CreateServiceOfferingInput;
|
|
834
|
-
}>;
|
|
835
|
-
export type CreateServiceOfferingMutation = {
|
|
836
|
-
__typename?: 'Mutation';
|
|
837
|
-
createServiceOffering: {
|
|
838
|
-
__typename?: 'ServiceOffering';
|
|
839
|
-
id: string;
|
|
840
|
-
providerId: string;
|
|
841
|
-
name: string;
|
|
842
|
-
description?: string | null;
|
|
843
|
-
category?: string | null;
|
|
844
|
-
price: number;
|
|
845
|
-
currency: string;
|
|
846
|
-
availability?: Record<string, unknown> | null;
|
|
847
|
-
createdAt: string;
|
|
848
|
-
updatedAt: string;
|
|
849
|
-
};
|
|
850
|
-
};
|
|
851
|
-
export type UpdateServiceOfferingMutationVariables = Types.Exact<{
|
|
852
|
-
id: Types.Scalars['ID']['input'];
|
|
853
|
-
input: Types.UpdateServiceOfferingInput;
|
|
854
|
-
}>;
|
|
855
|
-
export type UpdateServiceOfferingMutation = {
|
|
856
|
-
__typename?: 'Mutation';
|
|
857
|
-
updateServiceOffering: {
|
|
858
|
-
__typename?: 'ServiceOffering';
|
|
859
|
-
id: string;
|
|
860
|
-
providerId: string;
|
|
861
|
-
name: string;
|
|
862
|
-
description?: string | null;
|
|
863
|
-
category?: string | null;
|
|
864
|
-
price: number;
|
|
865
|
-
currency: string;
|
|
866
|
-
availability?: Record<string, unknown> | null;
|
|
867
|
-
createdAt: string;
|
|
868
|
-
updatedAt: string;
|
|
869
|
-
};
|
|
870
|
-
};
|
|
871
|
-
export type DeleteServiceOfferingMutationVariables = Types.Exact<{
|
|
872
|
-
id: Types.Scalars['ID']['input'];
|
|
873
|
-
}>;
|
|
874
|
-
export type DeleteServiceOfferingMutation = {
|
|
875
|
-
__typename?: 'Mutation';
|
|
876
|
-
deleteServiceOffering: boolean;
|
|
877
|
-
};
|
|
878
|
-
export type CreateMovethewheelsReportMutationVariables = Types.Exact<{
|
|
879
|
-
input: Types.CreateMovethewheelsReportInput;
|
|
880
|
-
}>;
|
|
881
|
-
export type CreateMovethewheelsReportMutation = {
|
|
882
|
-
__typename?: 'Mutation';
|
|
883
|
-
createMovethewheelsReport: {
|
|
884
|
-
__typename?: 'MovethewheelsReport';
|
|
885
|
-
id: string;
|
|
886
|
-
name: string;
|
|
887
|
-
type: string;
|
|
888
|
-
description?: string | null;
|
|
889
|
-
schedule?: string | null;
|
|
890
|
-
lastGenerated?: string | null;
|
|
891
|
-
configuration?: Record<string, unknown> | null;
|
|
892
|
-
status: string;
|
|
893
|
-
createdAt: string;
|
|
894
|
-
updatedAt: string;
|
|
895
|
-
};
|
|
896
|
-
};
|
|
897
|
-
export type UpdateMovethewheelsReportMutationVariables = Types.Exact<{
|
|
898
|
-
id: Types.Scalars['ID']['input'];
|
|
899
|
-
input: Types.UpdateMovethewheelsReportInput;
|
|
900
|
-
}>;
|
|
901
|
-
export type UpdateMovethewheelsReportMutation = {
|
|
902
|
-
__typename?: 'Mutation';
|
|
903
|
-
updateMovethewheelsReport: {
|
|
904
|
-
__typename?: 'MovethewheelsReport';
|
|
905
|
-
id: string;
|
|
906
|
-
name: string;
|
|
907
|
-
type: string;
|
|
908
|
-
description?: string | null;
|
|
909
|
-
schedule?: string | null;
|
|
910
|
-
lastGenerated?: string | null;
|
|
911
|
-
configuration?: Record<string, unknown> | null;
|
|
912
|
-
status: string;
|
|
913
|
-
createdAt: string;
|
|
914
|
-
updatedAt: string;
|
|
915
|
-
};
|
|
916
|
-
};
|
|
917
|
-
export type DeleteMovethewheelsReportMutationVariables = Types.Exact<{
|
|
918
|
-
id: Types.Scalars['ID']['input'];
|
|
919
|
-
}>;
|
|
920
|
-
export type DeleteMovethewheelsReportMutation = {
|
|
921
|
-
__typename?: 'Mutation';
|
|
922
|
-
deleteMovethewheelsReport: boolean;
|
|
923
|
-
};
|
|
924
|
-
export type GenerateMovethewheelsReportMutationVariables = Types.Exact<{
|
|
925
|
-
input: Types.GenerateMovethewheelsReportInput;
|
|
926
|
-
}>;
|
|
927
|
-
export type GenerateMovethewheelsReportMutation = {
|
|
928
|
-
__typename?: 'Mutation';
|
|
929
|
-
generateMovethewheelsReport: {
|
|
930
|
-
__typename?: 'GeneratedReport';
|
|
931
|
-
generatedAt: string;
|
|
932
|
-
result?: Record<string, unknown> | null;
|
|
933
|
-
report: {
|
|
934
|
-
__typename?: 'MovethewheelsReport';
|
|
935
|
-
id: string;
|
|
936
|
-
name: string;
|
|
937
|
-
type: string;
|
|
938
|
-
description?: string | null;
|
|
939
|
-
schedule?: string | null;
|
|
940
|
-
lastGenerated?: string | null;
|
|
941
|
-
configuration?: Record<string, unknown> | null;
|
|
942
|
-
status: string;
|
|
943
|
-
createdAt: string;
|
|
944
|
-
updatedAt: string;
|
|
945
|
-
};
|
|
946
|
-
};
|
|
947
|
-
};
|
|
948
|
-
export type ImportMovethewheelsDataMutationVariables = Types.Exact<{
|
|
949
|
-
input: Types.MovethewheelsImportDataInput;
|
|
950
|
-
}>;
|
|
951
|
-
export type ImportMovethewheelsDataMutation = {
|
|
952
|
-
__typename?: 'Mutation';
|
|
953
|
-
importData: {
|
|
954
|
-
__typename?: 'ImportExportResult';
|
|
955
|
-
success: boolean;
|
|
956
|
-
message: string;
|
|
957
|
-
payload?: Record<string, unknown> | null;
|
|
958
|
-
};
|
|
959
|
-
};
|
|
960
|
-
export type ExportMovethewheelsDataMutationVariables = Types.Exact<{
|
|
961
|
-
input: Types.MovethewheelsExportDataInput;
|
|
962
|
-
}>;
|
|
963
|
-
export type ExportMovethewheelsDataMutation = {
|
|
964
|
-
__typename?: 'Mutation';
|
|
965
|
-
exportData: {
|
|
966
|
-
__typename?: 'ImportExportResult';
|
|
967
|
-
success: boolean;
|
|
968
|
-
message: string;
|
|
969
|
-
payload?: Record<string, unknown> | null;
|
|
970
|
-
};
|
|
971
|
-
};
|
|
972
|
-
export type UpdateMovethewheelsModuleSettingsMutationVariables = Types.Exact<{
|
|
973
|
-
input: Types.UpdateMovethewheelsModuleSettingsInput;
|
|
974
|
-
}>;
|
|
975
|
-
export type UpdateMovethewheelsModuleSettingsMutation = {
|
|
976
|
-
__typename?: 'Mutation';
|
|
977
|
-
updateModuleSettings: {
|
|
978
|
-
__typename?: 'ModuleSettings';
|
|
979
|
-
workspaceId: string;
|
|
980
|
-
preferences: Record<string, unknown>;
|
|
981
|
-
updatedAt: string;
|
|
982
|
-
};
|
|
983
|
-
};
|
|
984
|
-
export type CreateMovethewheelsOrderMutationVariables = Types.Exact<{
|
|
985
|
-
input: Types.CreateOrderInput;
|
|
986
|
-
}>;
|
|
987
|
-
export type CreateMovethewheelsOrderMutation = {
|
|
988
|
-
__typename?: 'Mutation';
|
|
989
|
-
createMovethewheelsOrder: {
|
|
990
|
-
__typename?: 'MovethewheelsOrder';
|
|
991
|
-
id: string;
|
|
992
|
-
orderNumber: string;
|
|
993
|
-
orderType: Types.OrderType;
|
|
994
|
-
status: Types.OrderStatus;
|
|
995
|
-
priority: Types.OrderPriority;
|
|
996
|
-
customerId: string;
|
|
997
|
-
trackingNumber?: string | null;
|
|
998
|
-
pickupAddress: Record<string, unknown>;
|
|
999
|
-
deliveryAddress: Record<string, unknown>;
|
|
1000
|
-
items: Record<string, unknown>;
|
|
1001
|
-
pricing?: Record<string, unknown> | null;
|
|
1002
|
-
scheduledDelivery?: string | null;
|
|
1003
|
-
vehicleId?: string | null;
|
|
1004
|
-
driverId?: string | null;
|
|
1005
|
-
createdAt: string;
|
|
1006
|
-
updatedAt: string;
|
|
1007
|
-
};
|
|
1008
|
-
};
|
|
1009
|
-
export type UpdateMovethewheelsOrderMutationVariables = Types.Exact<{
|
|
1010
|
-
id: Types.Scalars['ID']['input'];
|
|
1011
|
-
input: Types.UpdateOrderInput;
|
|
1012
|
-
}>;
|
|
1013
|
-
export type UpdateMovethewheelsOrderMutation = {
|
|
1014
|
-
__typename?: 'Mutation';
|
|
1015
|
-
updateMovethewheelsOrder: {
|
|
1016
|
-
__typename?: 'MovethewheelsOrder';
|
|
1017
|
-
id: string;
|
|
1018
|
-
orderNumber: string;
|
|
1019
|
-
orderType: Types.OrderType;
|
|
1020
|
-
status: Types.OrderStatus;
|
|
1021
|
-
priority: Types.OrderPriority;
|
|
1022
|
-
customerId: string;
|
|
1023
|
-
trackingNumber?: string | null;
|
|
1024
|
-
pickupAddress: Record<string, unknown>;
|
|
1025
|
-
deliveryAddress: Record<string, unknown>;
|
|
1026
|
-
items: Record<string, unknown>;
|
|
1027
|
-
pricing?: Record<string, unknown> | null;
|
|
1028
|
-
scheduledDelivery?: string | null;
|
|
1029
|
-
vehicleId?: string | null;
|
|
1030
|
-
driverId?: string | null;
|
|
1031
|
-
createdAt: string;
|
|
1032
|
-
updatedAt: string;
|
|
1033
|
-
};
|
|
1034
|
-
};
|
|
1035
|
-
export type UpdateMovethewheelsOrderStatusMutationVariables = Types.Exact<{
|
|
1036
|
-
id: Types.Scalars['ID']['input'];
|
|
1037
|
-
input: Types.UpdateOrderStatusInput;
|
|
1038
|
-
}>;
|
|
1039
|
-
export type UpdateMovethewheelsOrderStatusMutation = {
|
|
1040
|
-
__typename?: 'Mutation';
|
|
1041
|
-
updateMovethewheelsOrderStatus: {
|
|
1042
|
-
__typename?: 'MovethewheelsOrder';
|
|
1043
|
-
id: string;
|
|
1044
|
-
orderNumber: string;
|
|
1045
|
-
orderType: Types.OrderType;
|
|
1046
|
-
status: Types.OrderStatus;
|
|
1047
|
-
priority: Types.OrderPriority;
|
|
1048
|
-
customerId: string;
|
|
1049
|
-
trackingNumber?: string | null;
|
|
1050
|
-
pickupAddress: Record<string, unknown>;
|
|
1051
|
-
deliveryAddress: Record<string, unknown>;
|
|
1052
|
-
items: Record<string, unknown>;
|
|
1053
|
-
pricing?: Record<string, unknown> | null;
|
|
1054
|
-
scheduledDelivery?: string | null;
|
|
1055
|
-
vehicleId?: string | null;
|
|
1056
|
-
driverId?: string | null;
|
|
1057
|
-
createdAt: string;
|
|
1058
|
-
updatedAt: string;
|
|
1059
|
-
};
|
|
1060
|
-
};
|
|
1061
|
-
export type DeleteMovethewheelsOrderMutationVariables = Types.Exact<{
|
|
1062
|
-
id: Types.Scalars['ID']['input'];
|
|
1063
|
-
}>;
|
|
1064
|
-
export type DeleteMovethewheelsOrderMutation = {
|
|
1065
|
-
__typename?: 'Mutation';
|
|
1066
|
-
deleteMovethewheelsOrder: boolean;
|
|
1067
|
-
};
|
|
1068
|
-
export type GetMovethewheelsDashboardQueryVariables = Types.Exact<{
|
|
1069
|
-
[key: string]: never;
|
|
1070
|
-
}>;
|
|
1071
|
-
export type GetMovethewheelsDashboardQuery = {
|
|
1072
|
-
__typename?: 'Query';
|
|
1073
|
-
dashboardMetrics: {
|
|
1074
|
-
__typename?: 'DashboardMetrics';
|
|
1075
|
-
totalOrders: number;
|
|
1076
|
-
activeDeliveries: number;
|
|
1077
|
-
availableDrivers: number;
|
|
1078
|
-
activeVehicles: number;
|
|
1079
|
-
lowStockItems: number;
|
|
1080
|
-
totalRevenue: number;
|
|
1081
|
-
recentOrders: Array<{
|
|
1082
|
-
__typename?: 'MovethewheelsOrder';
|
|
1083
|
-
id: string;
|
|
1084
|
-
orderNumber: string;
|
|
1085
|
-
orderType: Types.OrderType;
|
|
1086
|
-
status: Types.OrderStatus;
|
|
1087
|
-
priority: Types.OrderPriority;
|
|
1088
|
-
customerId: string;
|
|
1089
|
-
trackingNumber?: string | null;
|
|
1090
|
-
pickupAddress: Record<string, unknown>;
|
|
1091
|
-
deliveryAddress: Record<string, unknown>;
|
|
1092
|
-
items: Record<string, unknown>;
|
|
1093
|
-
pricing?: Record<string, unknown> | null;
|
|
1094
|
-
scheduledDelivery?: string | null;
|
|
1095
|
-
vehicleId?: string | null;
|
|
1096
|
-
driverId?: string | null;
|
|
1097
|
-
createdAt: string;
|
|
1098
|
-
updatedAt: string;
|
|
1099
|
-
}>;
|
|
1100
|
-
};
|
|
1101
|
-
orderStats: {
|
|
1102
|
-
__typename?: 'OrderStats';
|
|
1103
|
-
total: number;
|
|
1104
|
-
pending: number;
|
|
1105
|
-
inTransit: number;
|
|
1106
|
-
delivered: number;
|
|
1107
|
-
cancelled: number;
|
|
1108
|
-
failed: number;
|
|
1109
|
-
};
|
|
1110
|
-
fleetStats: {
|
|
1111
|
-
__typename?: 'FleetStats';
|
|
1112
|
-
totalVehicles: number;
|
|
1113
|
-
activeVehicles: number;
|
|
1114
|
-
inTransitVehicles: number;
|
|
1115
|
-
maintenanceVehicles: number;
|
|
1116
|
-
totalDrivers: number;
|
|
1117
|
-
availableDrivers: number;
|
|
1118
|
-
onDeliveryDrivers: number;
|
|
1119
|
-
};
|
|
1120
|
-
financeMetrics: {
|
|
1121
|
-
__typename?: 'FinanceMetrics';
|
|
1122
|
-
fuelCost: number;
|
|
1123
|
-
openInvoices: number;
|
|
1124
|
-
revenue: {
|
|
1125
|
-
__typename?: 'RevenueMetrics';
|
|
1126
|
-
totalRevenue: number;
|
|
1127
|
-
averageOrderValue: number;
|
|
1128
|
-
deliveredRevenue: number;
|
|
1129
|
-
};
|
|
1130
|
-
};
|
|
1131
|
-
analytics: {
|
|
1132
|
-
__typename?: 'AnalyticsSeries';
|
|
1133
|
-
deliveryTrend: Array<{
|
|
1134
|
-
__typename?: 'AnalyticsPoint';
|
|
1135
|
-
label: string;
|
|
1136
|
-
value: number;
|
|
1137
|
-
}>;
|
|
1138
|
-
orderTrend: Array<{
|
|
1139
|
-
__typename?: 'AnalyticsPoint';
|
|
1140
|
-
label: string;
|
|
1141
|
-
value: number;
|
|
1142
|
-
}>;
|
|
1143
|
-
revenueTrend: Array<{
|
|
1144
|
-
__typename?: 'AnalyticsPoint';
|
|
1145
|
-
label: string;
|
|
1146
|
-
value: number;
|
|
1147
|
-
}>;
|
|
1148
|
-
};
|
|
1149
|
-
};
|
|
1150
|
-
export type GetAssistantInsightsQueryVariables = Types.Exact<{
|
|
1151
|
-
question: Types.Scalars['String']['input'];
|
|
1152
|
-
}>;
|
|
1153
|
-
export type GetAssistantInsightsQuery = {
|
|
1154
|
-
__typename?: 'Query';
|
|
1155
|
-
assistantInsights: {
|
|
1156
|
-
__typename?: 'AssistantInsights';
|
|
1157
|
-
question: string;
|
|
1158
|
-
answer: string;
|
|
1159
|
-
generatedAt: string;
|
|
1160
|
-
};
|
|
1161
|
-
};
|
|
1162
|
-
export type ListCustomersQueryVariables = Types.Exact<{
|
|
1163
|
-
filter?: Types.InputMaybe<Types.CustomerFilterInput>;
|
|
1164
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1165
|
-
}>;
|
|
1166
|
-
export type ListCustomersQuery = {
|
|
1167
|
-
__typename?: 'Query';
|
|
1168
|
-
customers: Array<{
|
|
1169
|
-
__typename?: 'Customer';
|
|
1170
|
-
id: string;
|
|
1171
|
-
name: string;
|
|
1172
|
-
email?: string | null;
|
|
1173
|
-
phone?: string | null;
|
|
1174
|
-
type: string;
|
|
1175
|
-
company?: string | null;
|
|
1176
|
-
address?: Record<string, unknown> | null;
|
|
1177
|
-
rating?: number | null;
|
|
1178
|
-
createdAt: string;
|
|
1179
|
-
updatedAt: string;
|
|
1180
|
-
}>;
|
|
1181
|
-
};
|
|
1182
|
-
export type GetCustomerQueryVariables = Types.Exact<{
|
|
1183
|
-
id: Types.Scalars['ID']['input'];
|
|
1184
|
-
}>;
|
|
1185
|
-
export type GetCustomerQuery = {
|
|
1186
|
-
__typename?: 'Query';
|
|
1187
|
-
customer?: {
|
|
1188
|
-
__typename?: 'Customer';
|
|
1189
|
-
id: string;
|
|
1190
|
-
name: string;
|
|
1191
|
-
email?: string | null;
|
|
1192
|
-
phone?: string | null;
|
|
1193
|
-
type: string;
|
|
1194
|
-
company?: string | null;
|
|
1195
|
-
address?: Record<string, unknown> | null;
|
|
1196
|
-
rating?: number | null;
|
|
1197
|
-
createdAt: string;
|
|
1198
|
-
updatedAt: string;
|
|
1199
|
-
} | null;
|
|
1200
|
-
};
|
|
1201
|
-
export type ListProductsQueryVariables = Types.Exact<{
|
|
1202
|
-
filter?: Types.InputMaybe<Types.ProductFilterInput>;
|
|
1203
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1204
|
-
}>;
|
|
1205
|
-
export type ListProductsQuery = {
|
|
1206
|
-
__typename?: 'Query';
|
|
1207
|
-
products: Array<{
|
|
1208
|
-
__typename?: 'Product';
|
|
1209
|
-
id: string;
|
|
1210
|
-
sku: string;
|
|
1211
|
-
name: string;
|
|
1212
|
-
description?: string | null;
|
|
1213
|
-
category?: string | null;
|
|
1214
|
-
brand?: string | null;
|
|
1215
|
-
dimensions?: Record<string, unknown> | null;
|
|
1216
|
-
weight?: number | null;
|
|
1217
|
-
value?: number | null;
|
|
1218
|
-
hazardous: boolean;
|
|
1219
|
-
fragile: boolean;
|
|
1220
|
-
temperatureControlled: boolean;
|
|
1221
|
-
createdAt: string;
|
|
1222
|
-
updatedAt: string;
|
|
1223
|
-
}>;
|
|
1224
|
-
};
|
|
1225
|
-
export type GetProductQueryVariables = Types.Exact<{
|
|
1226
|
-
id: Types.Scalars['ID']['input'];
|
|
1227
|
-
}>;
|
|
1228
|
-
export type GetProductQuery = {
|
|
1229
|
-
__typename?: 'Query';
|
|
1230
|
-
product?: {
|
|
1231
|
-
__typename?: 'Product';
|
|
1232
|
-
id: string;
|
|
1233
|
-
sku: string;
|
|
1234
|
-
name: string;
|
|
1235
|
-
description?: string | null;
|
|
1236
|
-
category?: string | null;
|
|
1237
|
-
brand?: string | null;
|
|
1238
|
-
dimensions?: Record<string, unknown> | null;
|
|
1239
|
-
weight?: number | null;
|
|
1240
|
-
value?: number | null;
|
|
1241
|
-
hazardous: boolean;
|
|
1242
|
-
fragile: boolean;
|
|
1243
|
-
temperatureControlled: boolean;
|
|
1244
|
-
createdAt: string;
|
|
1245
|
-
updatedAt: string;
|
|
1246
|
-
} | null;
|
|
1247
|
-
};
|
|
1248
|
-
export type ListVehiclesQueryVariables = Types.Exact<{
|
|
1249
|
-
filter?: Types.InputMaybe<Types.VehicleFilterInput>;
|
|
1250
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1251
|
-
}>;
|
|
1252
|
-
export type ListVehiclesQuery = {
|
|
1253
|
-
__typename?: 'Query';
|
|
1254
|
-
vehicles: Array<{
|
|
1255
|
-
__typename?: 'Vehicle';
|
|
1256
|
-
id: string;
|
|
1257
|
-
vehicleNumber: string;
|
|
1258
|
-
make?: string | null;
|
|
1259
|
-
model?: string | null;
|
|
1260
|
-
year?: number | null;
|
|
1261
|
-
licensePlate?: string | null;
|
|
1262
|
-
type: Types.VehicleType;
|
|
1263
|
-
ownershipType?: string | null;
|
|
1264
|
-
capacity?: Record<string, unknown> | null;
|
|
1265
|
-
status: Types.VehicleStatus;
|
|
1266
|
-
currentLocation?: Record<string, unknown> | null;
|
|
1267
|
-
fuelLevel?: number | null;
|
|
1268
|
-
mileage?: number | null;
|
|
1269
|
-
createdAt: string;
|
|
1270
|
-
updatedAt: string;
|
|
1271
|
-
}>;
|
|
1272
|
-
};
|
|
1273
|
-
export type GetVehicleQueryVariables = Types.Exact<{
|
|
1274
|
-
id: Types.Scalars['ID']['input'];
|
|
1275
|
-
}>;
|
|
1276
|
-
export type GetVehicleQuery = {
|
|
1277
|
-
__typename?: 'Query';
|
|
1278
|
-
vehicle?: {
|
|
1279
|
-
__typename?: 'Vehicle';
|
|
1280
|
-
id: string;
|
|
1281
|
-
vehicleNumber: string;
|
|
1282
|
-
make?: string | null;
|
|
1283
|
-
model?: string | null;
|
|
1284
|
-
year?: number | null;
|
|
1285
|
-
licensePlate?: string | null;
|
|
1286
|
-
type: Types.VehicleType;
|
|
1287
|
-
ownershipType?: string | null;
|
|
1288
|
-
capacity?: Record<string, unknown> | null;
|
|
1289
|
-
status: Types.VehicleStatus;
|
|
1290
|
-
currentLocation?: Record<string, unknown> | null;
|
|
1291
|
-
fuelLevel?: number | null;
|
|
1292
|
-
mileage?: number | null;
|
|
1293
|
-
createdAt: string;
|
|
1294
|
-
updatedAt: string;
|
|
1295
|
-
} | null;
|
|
1296
|
-
};
|
|
1297
|
-
export type ListDriversQueryVariables = Types.Exact<{
|
|
1298
|
-
filter?: Types.InputMaybe<Types.DriverFilterInput>;
|
|
1299
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1300
|
-
}>;
|
|
1301
|
-
export type ListDriversQuery = {
|
|
1302
|
-
__typename?: 'Query';
|
|
1303
|
-
drivers: Array<{
|
|
1304
|
-
__typename?: 'Driver';
|
|
1305
|
-
id: string;
|
|
1306
|
-
employeeId: string;
|
|
1307
|
-
firstName: string;
|
|
1308
|
-
lastName: string;
|
|
1309
|
-
phone?: string | null;
|
|
1310
|
-
email?: string | null;
|
|
1311
|
-
licenseNumber?: string | null;
|
|
1312
|
-
licenseClass?: string | null;
|
|
1313
|
-
licenseExpiry?: string | null;
|
|
1314
|
-
status: Types.DriverStatus;
|
|
1315
|
-
currentLocation?: Record<string, unknown> | null;
|
|
1316
|
-
rating?: number | null;
|
|
1317
|
-
userId?: string | null;
|
|
1318
|
-
vehicleId?: string | null;
|
|
1319
|
-
createdAt: string;
|
|
1320
|
-
updatedAt: string;
|
|
1321
|
-
}>;
|
|
1322
|
-
};
|
|
1323
|
-
export type GetDriverQueryVariables = Types.Exact<{
|
|
1324
|
-
id: Types.Scalars['ID']['input'];
|
|
1325
|
-
}>;
|
|
1326
|
-
export type GetDriverQuery = {
|
|
1327
|
-
__typename?: 'Query';
|
|
1328
|
-
driver?: {
|
|
1329
|
-
__typename?: 'Driver';
|
|
1330
|
-
id: string;
|
|
1331
|
-
employeeId: string;
|
|
1332
|
-
firstName: string;
|
|
1333
|
-
lastName: string;
|
|
1334
|
-
phone?: string | null;
|
|
1335
|
-
email?: string | null;
|
|
1336
|
-
licenseNumber?: string | null;
|
|
1337
|
-
licenseClass?: string | null;
|
|
1338
|
-
licenseExpiry?: string | null;
|
|
1339
|
-
status: Types.DriverStatus;
|
|
1340
|
-
currentLocation?: Record<string, unknown> | null;
|
|
1341
|
-
rating?: number | null;
|
|
1342
|
-
userId?: string | null;
|
|
1343
|
-
vehicleId?: string | null;
|
|
1344
|
-
createdAt: string;
|
|
1345
|
-
updatedAt: string;
|
|
1346
|
-
} | null;
|
|
1347
|
-
};
|
|
1348
|
-
export type ListWarehousesQueryVariables = Types.Exact<{
|
|
1349
|
-
filter?: Types.InputMaybe<Types.WarehouseFilterInput>;
|
|
1350
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1351
|
-
}>;
|
|
1352
|
-
export type ListWarehousesQuery = {
|
|
1353
|
-
__typename?: 'Query';
|
|
1354
|
-
warehouses: Array<{
|
|
1355
|
-
__typename?: 'Warehouse';
|
|
1356
|
-
id: string;
|
|
1357
|
-
name: string;
|
|
1358
|
-
code: string;
|
|
1359
|
-
type: Types.WarehouseType;
|
|
1360
|
-
address: Record<string, unknown>;
|
|
1361
|
-
contactInfo?: Record<string, unknown> | null;
|
|
1362
|
-
operatingHours?: Record<string, unknown> | null;
|
|
1363
|
-
capabilities?: Record<string, unknown> | null;
|
|
1364
|
-
status: string;
|
|
1365
|
-
totalCapacity?: number | null;
|
|
1366
|
-
usedCapacity?: number | null;
|
|
1367
|
-
createdAt: string;
|
|
1368
|
-
updatedAt: string;
|
|
1369
|
-
locations: Array<{
|
|
1370
|
-
__typename?: 'WarehouseLocation';
|
|
1371
|
-
id: string;
|
|
1372
|
-
locationCode: string;
|
|
1373
|
-
zone?: string | null;
|
|
1374
|
-
aisle?: string | null;
|
|
1375
|
-
rack?: string | null;
|
|
1376
|
-
shelf?: string | null;
|
|
1377
|
-
bin?: string | null;
|
|
1378
|
-
locationType?: string | null;
|
|
1379
|
-
capacity?: number | null;
|
|
1380
|
-
status: string;
|
|
1381
|
-
}>;
|
|
1382
|
-
}>;
|
|
1383
|
-
};
|
|
1384
|
-
export type GetWarehouseQueryVariables = Types.Exact<{
|
|
1385
|
-
id: Types.Scalars['ID']['input'];
|
|
1386
|
-
}>;
|
|
1387
|
-
export type GetWarehouseQuery = {
|
|
1388
|
-
__typename?: 'Query';
|
|
1389
|
-
warehouse?: {
|
|
1390
|
-
__typename?: 'Warehouse';
|
|
1391
|
-
id: string;
|
|
1392
|
-
name: string;
|
|
1393
|
-
code: string;
|
|
1394
|
-
type: Types.WarehouseType;
|
|
1395
|
-
address: Record<string, unknown>;
|
|
1396
|
-
contactInfo?: Record<string, unknown> | null;
|
|
1397
|
-
operatingHours?: Record<string, unknown> | null;
|
|
1398
|
-
capabilities?: Record<string, unknown> | null;
|
|
1399
|
-
status: string;
|
|
1400
|
-
totalCapacity?: number | null;
|
|
1401
|
-
usedCapacity?: number | null;
|
|
1402
|
-
createdAt: string;
|
|
1403
|
-
updatedAt: string;
|
|
1404
|
-
locations: Array<{
|
|
1405
|
-
__typename?: 'WarehouseLocation';
|
|
1406
|
-
id: string;
|
|
1407
|
-
locationCode: string;
|
|
1408
|
-
zone?: string | null;
|
|
1409
|
-
aisle?: string | null;
|
|
1410
|
-
rack?: string | null;
|
|
1411
|
-
shelf?: string | null;
|
|
1412
|
-
bin?: string | null;
|
|
1413
|
-
locationType?: string | null;
|
|
1414
|
-
capacity?: number | null;
|
|
1415
|
-
status: string;
|
|
1416
|
-
}>;
|
|
1417
|
-
} | null;
|
|
1418
|
-
};
|
|
1419
|
-
export type ListInventoryItemsQueryVariables = Types.Exact<{
|
|
1420
|
-
filter?: Types.InputMaybe<Types.InventoryFilterInput>;
|
|
1421
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1422
|
-
}>;
|
|
1423
|
-
export type ListInventoryItemsQuery = {
|
|
1424
|
-
__typename?: 'Query';
|
|
1425
|
-
inventoryItems: Array<{
|
|
1426
|
-
__typename?: 'InventoryItem';
|
|
1427
|
-
id: string;
|
|
1428
|
-
productId: string;
|
|
1429
|
-
warehouseId: string;
|
|
1430
|
-
locationId?: string | null;
|
|
1431
|
-
onHand: number;
|
|
1432
|
-
available: number;
|
|
1433
|
-
allocated: number;
|
|
1434
|
-
damaged: number;
|
|
1435
|
-
unitCost?: number | null;
|
|
1436
|
-
reorderPoint?: number | null;
|
|
1437
|
-
safetyStock?: number | null;
|
|
1438
|
-
createdAt: string;
|
|
1439
|
-
updatedAt: string;
|
|
1440
|
-
product?: {
|
|
1441
|
-
__typename?: 'Product';
|
|
1442
|
-
id: string;
|
|
1443
|
-
name: string;
|
|
1444
|
-
sku: string;
|
|
1445
|
-
category?: string | null;
|
|
1446
|
-
} | null;
|
|
1447
|
-
warehouse?: {
|
|
1448
|
-
__typename?: 'Warehouse';
|
|
1449
|
-
id: string;
|
|
1450
|
-
name: string;
|
|
1451
|
-
code: string;
|
|
1452
|
-
type: Types.WarehouseType;
|
|
1453
|
-
} | null;
|
|
1454
|
-
}>;
|
|
1455
|
-
};
|
|
1456
|
-
export type GetInventoryStatsQueryVariables = Types.Exact<{
|
|
1457
|
-
[key: string]: never;
|
|
1458
|
-
}>;
|
|
1459
|
-
export type GetInventoryStatsQuery = {
|
|
1460
|
-
__typename?: 'Query';
|
|
1461
|
-
inventoryStats: {
|
|
1462
|
-
__typename?: 'InventoryStats';
|
|
1463
|
-
totalOnHand: number;
|
|
1464
|
-
totalAvailable: number;
|
|
1465
|
-
totalAllocated: number;
|
|
1466
|
-
totalDamaged: number;
|
|
1467
|
-
lowStockCount: number;
|
|
1468
|
-
};
|
|
1469
|
-
};
|
|
1470
|
-
export type ListRoutesQueryVariables = Types.Exact<{
|
|
1471
|
-
filter?: Types.InputMaybe<Types.RouteFilterInput>;
|
|
1472
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1473
|
-
}>;
|
|
1474
|
-
export type ListRoutesQuery = {
|
|
1475
|
-
__typename?: 'Query';
|
|
1476
|
-
routes: Array<{
|
|
1477
|
-
__typename?: 'Route';
|
|
1478
|
-
id: string;
|
|
1479
|
-
name: string;
|
|
1480
|
-
status: Types.RouteStatus;
|
|
1481
|
-
shipmentId?: string | null;
|
|
1482
|
-
vehicleId?: string | null;
|
|
1483
|
-
driverId?: string | null;
|
|
1484
|
-
waypoints: Record<string, unknown>;
|
|
1485
|
-
estimatedDistance?: number | null;
|
|
1486
|
-
estimatedDuration?: number | null;
|
|
1487
|
-
actualDistance?: number | null;
|
|
1488
|
-
actualDuration?: number | null;
|
|
1489
|
-
fuelCost?: number | null;
|
|
1490
|
-
createdAt: string;
|
|
1491
|
-
updatedAt: string;
|
|
1492
|
-
}>;
|
|
1493
|
-
};
|
|
1494
|
-
export type GetRouteQueryVariables = Types.Exact<{
|
|
1495
|
-
id: Types.Scalars['ID']['input'];
|
|
1496
|
-
}>;
|
|
1497
|
-
export type GetRouteQuery = {
|
|
1498
|
-
__typename?: 'Query';
|
|
1499
|
-
route?: {
|
|
1500
|
-
__typename?: 'Route';
|
|
1501
|
-
id: string;
|
|
1502
|
-
name: string;
|
|
1503
|
-
status: Types.RouteStatus;
|
|
1504
|
-
shipmentId?: string | null;
|
|
1505
|
-
vehicleId?: string | null;
|
|
1506
|
-
driverId?: string | null;
|
|
1507
|
-
waypoints: Record<string, unknown>;
|
|
1508
|
-
estimatedDistance?: number | null;
|
|
1509
|
-
estimatedDuration?: number | null;
|
|
1510
|
-
actualDistance?: number | null;
|
|
1511
|
-
actualDuration?: number | null;
|
|
1512
|
-
fuelCost?: number | null;
|
|
1513
|
-
createdAt: string;
|
|
1514
|
-
updatedAt: string;
|
|
1515
|
-
} | null;
|
|
1516
|
-
};
|
|
1517
|
-
export type ListShipmentsQueryVariables = Types.Exact<{
|
|
1518
|
-
filter?: Types.InputMaybe<Types.ShipmentFilterInput>;
|
|
1519
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1520
|
-
}>;
|
|
1521
|
-
export type ListShipmentsQuery = {
|
|
1522
|
-
__typename?: 'Query';
|
|
1523
|
-
shipments: Array<{
|
|
1524
|
-
__typename?: 'Shipment';
|
|
1525
|
-
id: string;
|
|
1526
|
-
shipmentNumber: string;
|
|
1527
|
-
orderId: string;
|
|
1528
|
-
customerId?: string | null;
|
|
1529
|
-
carrierId?: string | null;
|
|
1530
|
-
status: Types.ShipmentStatus;
|
|
1531
|
-
origin: Record<string, unknown>;
|
|
1532
|
-
destination: Record<string, unknown>;
|
|
1533
|
-
cargoDetails?: Record<string, unknown> | null;
|
|
1534
|
-
trackingNumber?: string | null;
|
|
1535
|
-
estimatedDelivery?: string | null;
|
|
1536
|
-
actualDelivery?: string | null;
|
|
1537
|
-
createdAt: string;
|
|
1538
|
-
updatedAt: string;
|
|
1539
|
-
}>;
|
|
1540
|
-
};
|
|
1541
|
-
export type GetShipmentQueryVariables = Types.Exact<{
|
|
1542
|
-
id: Types.Scalars['ID']['input'];
|
|
1543
|
-
}>;
|
|
1544
|
-
export type GetShipmentQuery = {
|
|
1545
|
-
__typename?: 'Query';
|
|
1546
|
-
shipment?: {
|
|
1547
|
-
__typename?: 'Shipment';
|
|
1548
|
-
id: string;
|
|
1549
|
-
shipmentNumber: string;
|
|
1550
|
-
orderId: string;
|
|
1551
|
-
customerId?: string | null;
|
|
1552
|
-
carrierId?: string | null;
|
|
1553
|
-
status: Types.ShipmentStatus;
|
|
1554
|
-
origin: Record<string, unknown>;
|
|
1555
|
-
destination: Record<string, unknown>;
|
|
1556
|
-
cargoDetails?: Record<string, unknown> | null;
|
|
1557
|
-
trackingNumber?: string | null;
|
|
1558
|
-
estimatedDelivery?: string | null;
|
|
1559
|
-
actualDelivery?: string | null;
|
|
1560
|
-
createdAt: string;
|
|
1561
|
-
updatedAt: string;
|
|
1562
|
-
trackingEvents: Array<{
|
|
1563
|
-
__typename?: 'TrackingEvent';
|
|
1564
|
-
id: string;
|
|
1565
|
-
eventType: Types.TrackingEventType;
|
|
1566
|
-
location?: Record<string, unknown> | null;
|
|
1567
|
-
details?: string | null;
|
|
1568
|
-
timestamp: string;
|
|
1569
|
-
}>;
|
|
1570
|
-
} | null;
|
|
1571
|
-
};
|
|
1572
|
-
export type GetOrderTrackingQueryVariables = Types.Exact<{
|
|
1573
|
-
orderId: Types.Scalars['ID']['input'];
|
|
1574
|
-
}>;
|
|
1575
|
-
export type GetOrderTrackingQuery = {
|
|
1576
|
-
__typename?: 'Query';
|
|
1577
|
-
orderTracking: Array<{
|
|
1578
|
-
__typename?: 'TrackingEvent';
|
|
1579
|
-
id: string;
|
|
1580
|
-
shipmentId: string;
|
|
1581
|
-
eventType: Types.TrackingEventType;
|
|
1582
|
-
location?: Record<string, unknown> | null;
|
|
1583
|
-
details?: string | null;
|
|
1584
|
-
timestamp: string;
|
|
1585
|
-
}>;
|
|
1586
|
-
};
|
|
1587
|
-
export type GetActiveDeliveriesQueryVariables = Types.Exact<{
|
|
1588
|
-
[key: string]: never;
|
|
1589
|
-
}>;
|
|
1590
|
-
export type GetActiveDeliveriesQuery = {
|
|
1591
|
-
__typename?: 'Query';
|
|
1592
|
-
activeDeliveries: Array<{
|
|
1593
|
-
__typename?: 'Shipment';
|
|
1594
|
-
id: string;
|
|
1595
|
-
shipmentNumber: string;
|
|
1596
|
-
orderId: string;
|
|
1597
|
-
customerId?: string | null;
|
|
1598
|
-
carrierId?: string | null;
|
|
1599
|
-
status: Types.ShipmentStatus;
|
|
1600
|
-
origin: Record<string, unknown>;
|
|
1601
|
-
destination: Record<string, unknown>;
|
|
1602
|
-
cargoDetails?: Record<string, unknown> | null;
|
|
1603
|
-
trackingNumber?: string | null;
|
|
1604
|
-
estimatedDelivery?: string | null;
|
|
1605
|
-
actualDelivery?: string | null;
|
|
1606
|
-
createdAt: string;
|
|
1607
|
-
updatedAt: string;
|
|
1608
|
-
}>;
|
|
1609
|
-
};
|
|
1610
|
-
export type GetTrackingAlertsQueryVariables = Types.Exact<{
|
|
1611
|
-
[key: string]: never;
|
|
1612
|
-
}>;
|
|
1613
|
-
export type GetTrackingAlertsQuery = {
|
|
1614
|
-
__typename?: 'Query';
|
|
1615
|
-
trackingAlerts: Array<{
|
|
1616
|
-
__typename?: 'TrackingAlert';
|
|
1617
|
-
shipmentId: string;
|
|
1618
|
-
shipmentNumber: string;
|
|
1619
|
-
alertType: string;
|
|
1620
|
-
message: string;
|
|
1621
|
-
}>;
|
|
1622
|
-
};
|
|
1623
|
-
export type ListServiceProvidersQueryVariables = Types.Exact<{
|
|
1624
|
-
filter?: Types.InputMaybe<Types.ServiceProviderFilterInput>;
|
|
1625
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1626
|
-
}>;
|
|
1627
|
-
export type ListServiceProvidersQuery = {
|
|
1628
|
-
__typename?: 'Query';
|
|
1629
|
-
serviceProviders: Array<{
|
|
1630
|
-
__typename?: 'ServiceProvider';
|
|
1631
|
-
id: string;
|
|
1632
|
-
name: string;
|
|
1633
|
-
type: string;
|
|
1634
|
-
description?: string | null;
|
|
1635
|
-
rating?: number | null;
|
|
1636
|
-
contactInfo?: Record<string, unknown> | null;
|
|
1637
|
-
services?: Record<string, unknown> | null;
|
|
1638
|
-
isVerified: boolean;
|
|
1639
|
-
isActive: boolean;
|
|
1640
|
-
createdAt: string;
|
|
1641
|
-
updatedAt: string;
|
|
1642
|
-
}>;
|
|
1643
|
-
};
|
|
1644
|
-
export type ListServiceOfferingsQueryVariables = Types.Exact<{
|
|
1645
|
-
filter?: Types.InputMaybe<Types.ServiceOfferingFilterInput>;
|
|
1646
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1647
|
-
}>;
|
|
1648
|
-
export type ListServiceOfferingsQuery = {
|
|
1649
|
-
__typename?: 'Query';
|
|
1650
|
-
serviceOfferings: Array<{
|
|
1651
|
-
__typename?: 'ServiceOffering';
|
|
1652
|
-
id: string;
|
|
1653
|
-
providerId: string;
|
|
1654
|
-
name: string;
|
|
1655
|
-
description?: string | null;
|
|
1656
|
-
category?: string | null;
|
|
1657
|
-
price: number;
|
|
1658
|
-
currency: string;
|
|
1659
|
-
availability?: Record<string, unknown> | null;
|
|
1660
|
-
createdAt: string;
|
|
1661
|
-
updatedAt: string;
|
|
1662
|
-
provider?: {
|
|
1663
|
-
__typename?: 'ServiceProvider';
|
|
1664
|
-
id: string;
|
|
1665
|
-
name: string;
|
|
1666
|
-
type: string;
|
|
1667
|
-
rating?: number | null;
|
|
1668
|
-
} | null;
|
|
1669
|
-
}>;
|
|
1670
|
-
};
|
|
1671
|
-
export type ListMovethewheelsReportsQueryVariables = Types.Exact<{
|
|
1672
|
-
filter?: Types.InputMaybe<Types.MovethewheelsReportFilterInput>;
|
|
1673
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1674
|
-
}>;
|
|
1675
|
-
export type ListMovethewheelsReportsQuery = {
|
|
1676
|
-
__typename?: 'Query';
|
|
1677
|
-
movethewheelsReports: Array<{
|
|
1678
|
-
__typename?: 'MovethewheelsReport';
|
|
1679
|
-
id: string;
|
|
1680
|
-
name: string;
|
|
1681
|
-
type: string;
|
|
1682
|
-
description?: string | null;
|
|
1683
|
-
schedule?: string | null;
|
|
1684
|
-
lastGenerated?: string | null;
|
|
1685
|
-
configuration?: Record<string, unknown> | null;
|
|
1686
|
-
status: string;
|
|
1687
|
-
createdAt: string;
|
|
1688
|
-
updatedAt: string;
|
|
1689
|
-
}>;
|
|
1690
|
-
};
|
|
1691
|
-
export type GetMovethewheelsReportQueryVariables = Types.Exact<{
|
|
1692
|
-
id: Types.Scalars['ID']['input'];
|
|
1693
|
-
}>;
|
|
1694
|
-
export type GetMovethewheelsReportQuery = {
|
|
1695
|
-
__typename?: 'Query';
|
|
1696
|
-
movethewheelsReport?: {
|
|
1697
|
-
__typename?: 'MovethewheelsReport';
|
|
1698
|
-
id: string;
|
|
1699
|
-
name: string;
|
|
1700
|
-
type: string;
|
|
1701
|
-
description?: string | null;
|
|
1702
|
-
schedule?: string | null;
|
|
1703
|
-
lastGenerated?: string | null;
|
|
1704
|
-
configuration?: Record<string, unknown> | null;
|
|
1705
|
-
status: string;
|
|
1706
|
-
createdAt: string;
|
|
1707
|
-
updatedAt: string;
|
|
1708
|
-
} | null;
|
|
1709
|
-
};
|
|
1710
|
-
export type GetMovethewheelsModuleSettingsQueryVariables = Types.Exact<{
|
|
1711
|
-
[key: string]: never;
|
|
1712
|
-
}>;
|
|
1713
|
-
export type GetMovethewheelsModuleSettingsQuery = {
|
|
1714
|
-
__typename?: 'Query';
|
|
1715
|
-
moduleSettings: {
|
|
1716
|
-
__typename?: 'ModuleSettings';
|
|
1717
|
-
workspaceId: string;
|
|
1718
|
-
preferences: Record<string, unknown>;
|
|
1719
|
-
updatedAt: string;
|
|
1720
|
-
};
|
|
1721
|
-
};
|
|
1722
|
-
export type ListMovethewheelsOrdersQueryVariables = Types.Exact<{
|
|
1723
|
-
filter?: Types.InputMaybe<Types.OrderFilterInput>;
|
|
1724
|
-
pagination?: Types.InputMaybe<Types.PaginationInput>;
|
|
1725
|
-
}>;
|
|
1726
|
-
export type ListMovethewheelsOrdersQuery = {
|
|
1727
|
-
__typename?: 'Query';
|
|
1728
|
-
movethewheelsOrders: Array<{
|
|
1729
|
-
__typename?: 'MovethewheelsOrder';
|
|
1730
|
-
id: string;
|
|
1731
|
-
orderNumber: string;
|
|
1732
|
-
orderType: Types.OrderType;
|
|
1733
|
-
status: Types.OrderStatus;
|
|
1734
|
-
priority: Types.OrderPriority;
|
|
1735
|
-
customerId: string;
|
|
1736
|
-
trackingNumber?: string | null;
|
|
1737
|
-
pickupAddress: Record<string, unknown>;
|
|
1738
|
-
deliveryAddress: Record<string, unknown>;
|
|
1739
|
-
items: Record<string, unknown>;
|
|
1740
|
-
pricing?: Record<string, unknown> | null;
|
|
1741
|
-
scheduledDelivery?: string | null;
|
|
1742
|
-
vehicleId?: string | null;
|
|
1743
|
-
driverId?: string | null;
|
|
1744
|
-
createdAt: string;
|
|
1745
|
-
updatedAt: string;
|
|
1746
|
-
}>;
|
|
1747
|
-
};
|
|
1748
|
-
export type GetMovethewheelsOrderQueryVariables = Types.Exact<{
|
|
1749
|
-
id: Types.Scalars['ID']['input'];
|
|
1750
|
-
}>;
|
|
1751
|
-
export type GetMovethewheelsOrderQuery = {
|
|
1752
|
-
__typename?: 'Query';
|
|
1753
|
-
movethewheelsOrder?: {
|
|
1754
|
-
__typename?: 'MovethewheelsOrder';
|
|
1755
|
-
id: string;
|
|
1756
|
-
orderNumber: string;
|
|
1757
|
-
orderType: Types.OrderType;
|
|
1758
|
-
status: Types.OrderStatus;
|
|
1759
|
-
priority: Types.OrderPriority;
|
|
1760
|
-
customerId: string;
|
|
1761
|
-
trackingNumber?: string | null;
|
|
1762
|
-
pickupAddress: Record<string, unknown>;
|
|
1763
|
-
deliveryAddress: Record<string, unknown>;
|
|
1764
|
-
items: Record<string, unknown>;
|
|
1765
|
-
pricing?: Record<string, unknown> | null;
|
|
1766
|
-
scheduledDelivery?: string | null;
|
|
1767
|
-
vehicleId?: string | null;
|
|
1768
|
-
driverId?: string | null;
|
|
1769
|
-
createdAt: string;
|
|
1770
|
-
updatedAt: string;
|
|
1771
|
-
customer?: {
|
|
1772
|
-
__typename?: 'Customer';
|
|
1773
|
-
id: string;
|
|
1774
|
-
name: string;
|
|
1775
|
-
email?: string | null;
|
|
1776
|
-
phone?: string | null;
|
|
1777
|
-
} | null;
|
|
1778
|
-
vehicle?: {
|
|
1779
|
-
__typename?: 'Vehicle';
|
|
1780
|
-
id: string;
|
|
1781
|
-
vehicleNumber: string;
|
|
1782
|
-
type: Types.VehicleType;
|
|
1783
|
-
status: Types.VehicleStatus;
|
|
1784
|
-
} | null;
|
|
1785
|
-
driver?: {
|
|
1786
|
-
__typename?: 'Driver';
|
|
1787
|
-
id: string;
|
|
1788
|
-
firstName: string;
|
|
1789
|
-
lastName: string;
|
|
1790
|
-
status: Types.DriverStatus;
|
|
1791
|
-
} | null;
|
|
1792
|
-
statusHistory: Array<{
|
|
1793
|
-
__typename?: 'OrderStatusHistory';
|
|
1794
|
-
id: string;
|
|
1795
|
-
status: Types.OrderStatus;
|
|
1796
|
-
previousStatus?: Types.OrderStatus | null;
|
|
1797
|
-
notes?: string | null;
|
|
1798
|
-
location?: Record<string, unknown> | null;
|
|
1799
|
-
createdAt: string;
|
|
1800
|
-
}>;
|
|
1801
|
-
shipment?: {
|
|
1802
|
-
__typename?: 'Shipment';
|
|
1803
|
-
id: string;
|
|
1804
|
-
shipmentNumber: string;
|
|
1805
|
-
status: Types.ShipmentStatus;
|
|
1806
|
-
trackingNumber?: string | null;
|
|
1807
|
-
} | null;
|
|
1808
|
-
} | null;
|
|
1809
|
-
};
|
|
1810
|
-
export declare const MovethewheelsOrderCoreFragmentDoc: Apollo.DocumentNode;
|
|
1811
|
-
export declare const CustomerCoreFragmentDoc: Apollo.DocumentNode;
|
|
1812
|
-
export declare const ProductCoreFragmentDoc: Apollo.DocumentNode;
|
|
1813
|
-
export declare const VehicleCoreFragmentDoc: Apollo.DocumentNode;
|
|
1814
|
-
export declare const DriverCoreFragmentDoc: Apollo.DocumentNode;
|
|
1815
|
-
export declare const WarehouseCoreFragmentDoc: Apollo.DocumentNode;
|
|
1816
|
-
export declare const InventoryItemCoreFragmentDoc: Apollo.DocumentNode;
|
|
1817
|
-
export declare const RouteCoreFragmentDoc: Apollo.DocumentNode;
|
|
1818
|
-
export declare const ShipmentCoreFragmentDoc: Apollo.DocumentNode;
|
|
1819
|
-
export declare const ServiceProviderCoreFragmentDoc: Apollo.DocumentNode;
|
|
1820
|
-
export declare const ServiceOfferingCoreFragmentDoc: Apollo.DocumentNode;
|
|
1821
|
-
export declare const MovethewheelsReportCoreFragmentDoc: Apollo.DocumentNode;
|
|
1822
|
-
export declare const CreateCustomerDocument: Apollo.DocumentNode;
|
|
1823
|
-
export type CreateCustomerMutationFn = Apollo.MutationFunction<Types.CreateCustomerMutation, Types.CreateCustomerMutationVariables>;
|
|
1824
|
-
/**
|
|
1825
|
-
* __useCreateCustomerMutation__
|
|
1826
|
-
*
|
|
1827
|
-
* To run a mutation, you first call `useCreateCustomerMutation` within a React component and pass it any options that fit your needs.
|
|
1828
|
-
* When your component renders, `useCreateCustomerMutation` returns a tuple that includes:
|
|
1829
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1830
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1831
|
-
*
|
|
1832
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1833
|
-
*
|
|
1834
|
-
* @example
|
|
1835
|
-
* const [createCustomerMutation, { data, loading, error }] = useCreateCustomerMutation({
|
|
1836
|
-
* variables: {
|
|
1837
|
-
* input: // value for 'input'
|
|
1838
|
-
* },
|
|
1839
|
-
* });
|
|
1840
|
-
*/
|
|
1841
|
-
export declare function useCreateCustomerMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateCustomerMutation, Types.CreateCustomerMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateCustomerMutation, any, Apollo.ApolloCache>;
|
|
1842
|
-
export type CreateCustomerMutationHookResult = ReturnType<typeof useCreateCustomerMutation>;
|
|
1843
|
-
export type CreateCustomerMutationResult = Apollo.MutationResult<Types.CreateCustomerMutation>;
|
|
1844
|
-
export type CreateCustomerMutationOptions = Apollo.BaseMutationOptions<Types.CreateCustomerMutation, Types.CreateCustomerMutationVariables>;
|
|
1845
|
-
export declare const UpdateCustomerDocument: Apollo.DocumentNode;
|
|
1846
|
-
export type UpdateCustomerMutationFn = Apollo.MutationFunction<Types.UpdateCustomerMutation, Types.UpdateCustomerMutationVariables>;
|
|
1847
|
-
/**
|
|
1848
|
-
* __useUpdateCustomerMutation__
|
|
1849
|
-
*
|
|
1850
|
-
* To run a mutation, you first call `useUpdateCustomerMutation` within a React component and pass it any options that fit your needs.
|
|
1851
|
-
* When your component renders, `useUpdateCustomerMutation` returns a tuple that includes:
|
|
1852
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1853
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1854
|
-
*
|
|
1855
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1856
|
-
*
|
|
1857
|
-
* @example
|
|
1858
|
-
* const [updateCustomerMutation, { data, loading, error }] = useUpdateCustomerMutation({
|
|
1859
|
-
* variables: {
|
|
1860
|
-
* id: // value for 'id'
|
|
1861
|
-
* input: // value for 'input'
|
|
1862
|
-
* },
|
|
1863
|
-
* });
|
|
1864
|
-
*/
|
|
1865
|
-
export declare function useUpdateCustomerMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateCustomerMutation, Types.UpdateCustomerMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateCustomerMutation, any, Apollo.ApolloCache>;
|
|
1866
|
-
export type UpdateCustomerMutationHookResult = ReturnType<typeof useUpdateCustomerMutation>;
|
|
1867
|
-
export type UpdateCustomerMutationResult = Apollo.MutationResult<Types.UpdateCustomerMutation>;
|
|
1868
|
-
export type UpdateCustomerMutationOptions = Apollo.BaseMutationOptions<Types.UpdateCustomerMutation, Types.UpdateCustomerMutationVariables>;
|
|
1869
|
-
export declare const DeleteCustomerDocument: Apollo.DocumentNode;
|
|
1870
|
-
export type DeleteCustomerMutationFn = Apollo.MutationFunction<Types.DeleteCustomerMutation, Types.DeleteCustomerMutationVariables>;
|
|
1871
|
-
/**
|
|
1872
|
-
* __useDeleteCustomerMutation__
|
|
1873
|
-
*
|
|
1874
|
-
* To run a mutation, you first call `useDeleteCustomerMutation` within a React component and pass it any options that fit your needs.
|
|
1875
|
-
* When your component renders, `useDeleteCustomerMutation` returns a tuple that includes:
|
|
1876
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1877
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1878
|
-
*
|
|
1879
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1880
|
-
*
|
|
1881
|
-
* @example
|
|
1882
|
-
* const [deleteCustomerMutation, { data, loading, error }] = useDeleteCustomerMutation({
|
|
1883
|
-
* variables: {
|
|
1884
|
-
* id: // value for 'id'
|
|
1885
|
-
* },
|
|
1886
|
-
* });
|
|
1887
|
-
*/
|
|
1888
|
-
export declare function useDeleteCustomerMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteCustomerMutation, Types.DeleteCustomerMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteCustomerMutation, any, Apollo.ApolloCache>;
|
|
1889
|
-
export type DeleteCustomerMutationHookResult = ReturnType<typeof useDeleteCustomerMutation>;
|
|
1890
|
-
export type DeleteCustomerMutationResult = Apollo.MutationResult<Types.DeleteCustomerMutation>;
|
|
1891
|
-
export type DeleteCustomerMutationOptions = Apollo.BaseMutationOptions<Types.DeleteCustomerMutation, Types.DeleteCustomerMutationVariables>;
|
|
1892
|
-
export declare const CreateProductDocument: Apollo.DocumentNode;
|
|
1893
|
-
export type CreateProductMutationFn = Apollo.MutationFunction<Types.CreateProductMutation, Types.CreateProductMutationVariables>;
|
|
1894
|
-
/**
|
|
1895
|
-
* __useCreateProductMutation__
|
|
1896
|
-
*
|
|
1897
|
-
* To run a mutation, you first call `useCreateProductMutation` within a React component and pass it any options that fit your needs.
|
|
1898
|
-
* When your component renders, `useCreateProductMutation` returns a tuple that includes:
|
|
1899
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1900
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1901
|
-
*
|
|
1902
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1903
|
-
*
|
|
1904
|
-
* @example
|
|
1905
|
-
* const [createProductMutation, { data, loading, error }] = useCreateProductMutation({
|
|
1906
|
-
* variables: {
|
|
1907
|
-
* input: // value for 'input'
|
|
1908
|
-
* },
|
|
1909
|
-
* });
|
|
1910
|
-
*/
|
|
1911
|
-
export declare function useCreateProductMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateProductMutation, Types.CreateProductMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateProductMutation, any, Apollo.ApolloCache>;
|
|
1912
|
-
export type CreateProductMutationHookResult = ReturnType<typeof useCreateProductMutation>;
|
|
1913
|
-
export type CreateProductMutationResult = Apollo.MutationResult<Types.CreateProductMutation>;
|
|
1914
|
-
export type CreateProductMutationOptions = Apollo.BaseMutationOptions<Types.CreateProductMutation, Types.CreateProductMutationVariables>;
|
|
1915
|
-
export declare const UpdateProductDocument: Apollo.DocumentNode;
|
|
1916
|
-
export type UpdateProductMutationFn = Apollo.MutationFunction<Types.UpdateProductMutation, Types.UpdateProductMutationVariables>;
|
|
1917
|
-
/**
|
|
1918
|
-
* __useUpdateProductMutation__
|
|
1919
|
-
*
|
|
1920
|
-
* To run a mutation, you first call `useUpdateProductMutation` within a React component and pass it any options that fit your needs.
|
|
1921
|
-
* When your component renders, `useUpdateProductMutation` returns a tuple that includes:
|
|
1922
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1923
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1924
|
-
*
|
|
1925
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1926
|
-
*
|
|
1927
|
-
* @example
|
|
1928
|
-
* const [updateProductMutation, { data, loading, error }] = useUpdateProductMutation({
|
|
1929
|
-
* variables: {
|
|
1930
|
-
* id: // value for 'id'
|
|
1931
|
-
* input: // value for 'input'
|
|
1932
|
-
* },
|
|
1933
|
-
* });
|
|
1934
|
-
*/
|
|
1935
|
-
export declare function useUpdateProductMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateProductMutation, Types.UpdateProductMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateProductMutation, any, Apollo.ApolloCache>;
|
|
1936
|
-
export type UpdateProductMutationHookResult = ReturnType<typeof useUpdateProductMutation>;
|
|
1937
|
-
export type UpdateProductMutationResult = Apollo.MutationResult<Types.UpdateProductMutation>;
|
|
1938
|
-
export type UpdateProductMutationOptions = Apollo.BaseMutationOptions<Types.UpdateProductMutation, Types.UpdateProductMutationVariables>;
|
|
1939
|
-
export declare const DeleteProductDocument: Apollo.DocumentNode;
|
|
1940
|
-
export type DeleteProductMutationFn = Apollo.MutationFunction<Types.DeleteProductMutation, Types.DeleteProductMutationVariables>;
|
|
1941
|
-
/**
|
|
1942
|
-
* __useDeleteProductMutation__
|
|
1943
|
-
*
|
|
1944
|
-
* To run a mutation, you first call `useDeleteProductMutation` within a React component and pass it any options that fit your needs.
|
|
1945
|
-
* When your component renders, `useDeleteProductMutation` returns a tuple that includes:
|
|
1946
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1947
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1948
|
-
*
|
|
1949
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1950
|
-
*
|
|
1951
|
-
* @example
|
|
1952
|
-
* const [deleteProductMutation, { data, loading, error }] = useDeleteProductMutation({
|
|
1953
|
-
* variables: {
|
|
1954
|
-
* id: // value for 'id'
|
|
1955
|
-
* },
|
|
1956
|
-
* });
|
|
1957
|
-
*/
|
|
1958
|
-
export declare function useDeleteProductMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteProductMutation, Types.DeleteProductMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteProductMutation, any, Apollo.ApolloCache>;
|
|
1959
|
-
export type DeleteProductMutationHookResult = ReturnType<typeof useDeleteProductMutation>;
|
|
1960
|
-
export type DeleteProductMutationResult = Apollo.MutationResult<Types.DeleteProductMutation>;
|
|
1961
|
-
export type DeleteProductMutationOptions = Apollo.BaseMutationOptions<Types.DeleteProductMutation, Types.DeleteProductMutationVariables>;
|
|
1962
|
-
export declare const CreateVehicleDocument: Apollo.DocumentNode;
|
|
1963
|
-
export type CreateVehicleMutationFn = Apollo.MutationFunction<Types.CreateVehicleMutation, Types.CreateVehicleMutationVariables>;
|
|
1964
|
-
/**
|
|
1965
|
-
* __useCreateVehicleMutation__
|
|
1966
|
-
*
|
|
1967
|
-
* To run a mutation, you first call `useCreateVehicleMutation` within a React component and pass it any options that fit your needs.
|
|
1968
|
-
* When your component renders, `useCreateVehicleMutation` returns a tuple that includes:
|
|
1969
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1970
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1971
|
-
*
|
|
1972
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1973
|
-
*
|
|
1974
|
-
* @example
|
|
1975
|
-
* const [createVehicleMutation, { data, loading, error }] = useCreateVehicleMutation({
|
|
1976
|
-
* variables: {
|
|
1977
|
-
* input: // value for 'input'
|
|
1978
|
-
* },
|
|
1979
|
-
* });
|
|
1980
|
-
*/
|
|
1981
|
-
export declare function useCreateVehicleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateVehicleMutation, Types.CreateVehicleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateVehicleMutation, any, Apollo.ApolloCache>;
|
|
1982
|
-
export type CreateVehicleMutationHookResult = ReturnType<typeof useCreateVehicleMutation>;
|
|
1983
|
-
export type CreateVehicleMutationResult = Apollo.MutationResult<Types.CreateVehicleMutation>;
|
|
1984
|
-
export type CreateVehicleMutationOptions = Apollo.BaseMutationOptions<Types.CreateVehicleMutation, Types.CreateVehicleMutationVariables>;
|
|
1985
|
-
export declare const UpdateVehicleDocument: Apollo.DocumentNode;
|
|
1986
|
-
export type UpdateVehicleMutationFn = Apollo.MutationFunction<Types.UpdateVehicleMutation, Types.UpdateVehicleMutationVariables>;
|
|
1987
|
-
/**
|
|
1988
|
-
* __useUpdateVehicleMutation__
|
|
1989
|
-
*
|
|
1990
|
-
* To run a mutation, you first call `useUpdateVehicleMutation` within a React component and pass it any options that fit your needs.
|
|
1991
|
-
* When your component renders, `useUpdateVehicleMutation` returns a tuple that includes:
|
|
1992
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
1993
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
1994
|
-
*
|
|
1995
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1996
|
-
*
|
|
1997
|
-
* @example
|
|
1998
|
-
* const [updateVehicleMutation, { data, loading, error }] = useUpdateVehicleMutation({
|
|
1999
|
-
* variables: {
|
|
2000
|
-
* id: // value for 'id'
|
|
2001
|
-
* input: // value for 'input'
|
|
2002
|
-
* },
|
|
2003
|
-
* });
|
|
2004
|
-
*/
|
|
2005
|
-
export declare function useUpdateVehicleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateVehicleMutation, Types.UpdateVehicleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateVehicleMutation, any, Apollo.ApolloCache>;
|
|
2006
|
-
export type UpdateVehicleMutationHookResult = ReturnType<typeof useUpdateVehicleMutation>;
|
|
2007
|
-
export type UpdateVehicleMutationResult = Apollo.MutationResult<Types.UpdateVehicleMutation>;
|
|
2008
|
-
export type UpdateVehicleMutationOptions = Apollo.BaseMutationOptions<Types.UpdateVehicleMutation, Types.UpdateVehicleMutationVariables>;
|
|
2009
|
-
export declare const UpdateVehicleStatusDocument: Apollo.DocumentNode;
|
|
2010
|
-
export type UpdateVehicleStatusMutationFn = Apollo.MutationFunction<Types.UpdateVehicleStatusMutation, Types.UpdateVehicleStatusMutationVariables>;
|
|
2011
|
-
/**
|
|
2012
|
-
* __useUpdateVehicleStatusMutation__
|
|
2013
|
-
*
|
|
2014
|
-
* To run a mutation, you first call `useUpdateVehicleStatusMutation` within a React component and pass it any options that fit your needs.
|
|
2015
|
-
* When your component renders, `useUpdateVehicleStatusMutation` returns a tuple that includes:
|
|
2016
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2017
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2018
|
-
*
|
|
2019
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2020
|
-
*
|
|
2021
|
-
* @example
|
|
2022
|
-
* const [updateVehicleStatusMutation, { data, loading, error }] = useUpdateVehicleStatusMutation({
|
|
2023
|
-
* variables: {
|
|
2024
|
-
* id: // value for 'id'
|
|
2025
|
-
* status: // value for 'status'
|
|
2026
|
-
* },
|
|
2027
|
-
* });
|
|
2028
|
-
*/
|
|
2029
|
-
export declare function useUpdateVehicleStatusMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateVehicleStatusMutation, Types.UpdateVehicleStatusMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateVehicleStatusMutation, any, Apollo.ApolloCache>;
|
|
2030
|
-
export type UpdateVehicleStatusMutationHookResult = ReturnType<typeof useUpdateVehicleStatusMutation>;
|
|
2031
|
-
export type UpdateVehicleStatusMutationResult = Apollo.MutationResult<Types.UpdateVehicleStatusMutation>;
|
|
2032
|
-
export type UpdateVehicleStatusMutationOptions = Apollo.BaseMutationOptions<Types.UpdateVehicleStatusMutation, Types.UpdateVehicleStatusMutationVariables>;
|
|
2033
|
-
export declare const UpdateVehicleLocationDocument: Apollo.DocumentNode;
|
|
2034
|
-
export type UpdateVehicleLocationMutationFn = Apollo.MutationFunction<Types.UpdateVehicleLocationMutation, Types.UpdateVehicleLocationMutationVariables>;
|
|
2035
|
-
/**
|
|
2036
|
-
* __useUpdateVehicleLocationMutation__
|
|
2037
|
-
*
|
|
2038
|
-
* To run a mutation, you first call `useUpdateVehicleLocationMutation` within a React component and pass it any options that fit your needs.
|
|
2039
|
-
* When your component renders, `useUpdateVehicleLocationMutation` returns a tuple that includes:
|
|
2040
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2041
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2042
|
-
*
|
|
2043
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2044
|
-
*
|
|
2045
|
-
* @example
|
|
2046
|
-
* const [updateVehicleLocationMutation, { data, loading, error }] = useUpdateVehicleLocationMutation({
|
|
2047
|
-
* variables: {
|
|
2048
|
-
* id: // value for 'id'
|
|
2049
|
-
* location: // value for 'location'
|
|
2050
|
-
* },
|
|
2051
|
-
* });
|
|
2052
|
-
*/
|
|
2053
|
-
export declare function useUpdateVehicleLocationMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateVehicleLocationMutation, Types.UpdateVehicleLocationMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateVehicleLocationMutation, any, Apollo.ApolloCache>;
|
|
2054
|
-
export type UpdateVehicleLocationMutationHookResult = ReturnType<typeof useUpdateVehicleLocationMutation>;
|
|
2055
|
-
export type UpdateVehicleLocationMutationResult = Apollo.MutationResult<Types.UpdateVehicleLocationMutation>;
|
|
2056
|
-
export type UpdateVehicleLocationMutationOptions = Apollo.BaseMutationOptions<Types.UpdateVehicleLocationMutation, Types.UpdateVehicleLocationMutationVariables>;
|
|
2057
|
-
export declare const DeleteVehicleDocument: Apollo.DocumentNode;
|
|
2058
|
-
export type DeleteVehicleMutationFn = Apollo.MutationFunction<Types.DeleteVehicleMutation, Types.DeleteVehicleMutationVariables>;
|
|
2059
|
-
/**
|
|
2060
|
-
* __useDeleteVehicleMutation__
|
|
2061
|
-
*
|
|
2062
|
-
* To run a mutation, you first call `useDeleteVehicleMutation` within a React component and pass it any options that fit your needs.
|
|
2063
|
-
* When your component renders, `useDeleteVehicleMutation` returns a tuple that includes:
|
|
2064
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2065
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2066
|
-
*
|
|
2067
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2068
|
-
*
|
|
2069
|
-
* @example
|
|
2070
|
-
* const [deleteVehicleMutation, { data, loading, error }] = useDeleteVehicleMutation({
|
|
2071
|
-
* variables: {
|
|
2072
|
-
* id: // value for 'id'
|
|
2073
|
-
* },
|
|
2074
|
-
* });
|
|
2075
|
-
*/
|
|
2076
|
-
export declare function useDeleteVehicleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteVehicleMutation, Types.DeleteVehicleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteVehicleMutation, any, Apollo.ApolloCache>;
|
|
2077
|
-
export type DeleteVehicleMutationHookResult = ReturnType<typeof useDeleteVehicleMutation>;
|
|
2078
|
-
export type DeleteVehicleMutationResult = Apollo.MutationResult<Types.DeleteVehicleMutation>;
|
|
2079
|
-
export type DeleteVehicleMutationOptions = Apollo.BaseMutationOptions<Types.DeleteVehicleMutation, Types.DeleteVehicleMutationVariables>;
|
|
2080
|
-
export declare const CreateDriverDocument: Apollo.DocumentNode;
|
|
2081
|
-
export type CreateDriverMutationFn = Apollo.MutationFunction<Types.CreateDriverMutation, Types.CreateDriverMutationVariables>;
|
|
2082
|
-
/**
|
|
2083
|
-
* __useCreateDriverMutation__
|
|
2084
|
-
*
|
|
2085
|
-
* To run a mutation, you first call `useCreateDriverMutation` within a React component and pass it any options that fit your needs.
|
|
2086
|
-
* When your component renders, `useCreateDriverMutation` returns a tuple that includes:
|
|
2087
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2088
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2089
|
-
*
|
|
2090
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2091
|
-
*
|
|
2092
|
-
* @example
|
|
2093
|
-
* const [createDriverMutation, { data, loading, error }] = useCreateDriverMutation({
|
|
2094
|
-
* variables: {
|
|
2095
|
-
* input: // value for 'input'
|
|
2096
|
-
* },
|
|
2097
|
-
* });
|
|
2098
|
-
*/
|
|
2099
|
-
export declare function useCreateDriverMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateDriverMutation, Types.CreateDriverMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateDriverMutation, any, Apollo.ApolloCache>;
|
|
2100
|
-
export type CreateDriverMutationHookResult = ReturnType<typeof useCreateDriverMutation>;
|
|
2101
|
-
export type CreateDriverMutationResult = Apollo.MutationResult<Types.CreateDriverMutation>;
|
|
2102
|
-
export type CreateDriverMutationOptions = Apollo.BaseMutationOptions<Types.CreateDriverMutation, Types.CreateDriverMutationVariables>;
|
|
2103
|
-
export declare const UpdateDriverDocument: Apollo.DocumentNode;
|
|
2104
|
-
export type UpdateDriverMutationFn = Apollo.MutationFunction<Types.UpdateDriverMutation, Types.UpdateDriverMutationVariables>;
|
|
2105
|
-
/**
|
|
2106
|
-
* __useUpdateDriverMutation__
|
|
2107
|
-
*
|
|
2108
|
-
* To run a mutation, you first call `useUpdateDriverMutation` within a React component and pass it any options that fit your needs.
|
|
2109
|
-
* When your component renders, `useUpdateDriverMutation` returns a tuple that includes:
|
|
2110
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2111
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2112
|
-
*
|
|
2113
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2114
|
-
*
|
|
2115
|
-
* @example
|
|
2116
|
-
* const [updateDriverMutation, { data, loading, error }] = useUpdateDriverMutation({
|
|
2117
|
-
* variables: {
|
|
2118
|
-
* id: // value for 'id'
|
|
2119
|
-
* input: // value for 'input'
|
|
2120
|
-
* },
|
|
2121
|
-
* });
|
|
2122
|
-
*/
|
|
2123
|
-
export declare function useUpdateDriverMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateDriverMutation, Types.UpdateDriverMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateDriverMutation, any, Apollo.ApolloCache>;
|
|
2124
|
-
export type UpdateDriverMutationHookResult = ReturnType<typeof useUpdateDriverMutation>;
|
|
2125
|
-
export type UpdateDriverMutationResult = Apollo.MutationResult<Types.UpdateDriverMutation>;
|
|
2126
|
-
export type UpdateDriverMutationOptions = Apollo.BaseMutationOptions<Types.UpdateDriverMutation, Types.UpdateDriverMutationVariables>;
|
|
2127
|
-
export declare const UpdateDriverStatusDocument: Apollo.DocumentNode;
|
|
2128
|
-
export type UpdateDriverStatusMutationFn = Apollo.MutationFunction<Types.UpdateDriverStatusMutation, Types.UpdateDriverStatusMutationVariables>;
|
|
2129
|
-
/**
|
|
2130
|
-
* __useUpdateDriverStatusMutation__
|
|
2131
|
-
*
|
|
2132
|
-
* To run a mutation, you first call `useUpdateDriverStatusMutation` within a React component and pass it any options that fit your needs.
|
|
2133
|
-
* When your component renders, `useUpdateDriverStatusMutation` returns a tuple that includes:
|
|
2134
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2135
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2136
|
-
*
|
|
2137
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2138
|
-
*
|
|
2139
|
-
* @example
|
|
2140
|
-
* const [updateDriverStatusMutation, { data, loading, error }] = useUpdateDriverStatusMutation({
|
|
2141
|
-
* variables: {
|
|
2142
|
-
* id: // value for 'id'
|
|
2143
|
-
* status: // value for 'status'
|
|
2144
|
-
* },
|
|
2145
|
-
* });
|
|
2146
|
-
*/
|
|
2147
|
-
export declare function useUpdateDriverStatusMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateDriverStatusMutation, Types.UpdateDriverStatusMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateDriverStatusMutation, any, Apollo.ApolloCache>;
|
|
2148
|
-
export type UpdateDriverStatusMutationHookResult = ReturnType<typeof useUpdateDriverStatusMutation>;
|
|
2149
|
-
export type UpdateDriverStatusMutationResult = Apollo.MutationResult<Types.UpdateDriverStatusMutation>;
|
|
2150
|
-
export type UpdateDriverStatusMutationOptions = Apollo.BaseMutationOptions<Types.UpdateDriverStatusMutation, Types.UpdateDriverStatusMutationVariables>;
|
|
2151
|
-
export declare const AssignDriverVehicleDocument: Apollo.DocumentNode;
|
|
2152
|
-
export type AssignDriverVehicleMutationFn = Apollo.MutationFunction<Types.AssignDriverVehicleMutation, Types.AssignDriverVehicleMutationVariables>;
|
|
2153
|
-
/**
|
|
2154
|
-
* __useAssignDriverVehicleMutation__
|
|
2155
|
-
*
|
|
2156
|
-
* To run a mutation, you first call `useAssignDriverVehicleMutation` within a React component and pass it any options that fit your needs.
|
|
2157
|
-
* When your component renders, `useAssignDriverVehicleMutation` returns a tuple that includes:
|
|
2158
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2159
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2160
|
-
*
|
|
2161
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2162
|
-
*
|
|
2163
|
-
* @example
|
|
2164
|
-
* const [assignDriverVehicleMutation, { data, loading, error }] = useAssignDriverVehicleMutation({
|
|
2165
|
-
* variables: {
|
|
2166
|
-
* id: // value for 'id'
|
|
2167
|
-
* vehicleId: // value for 'vehicleId'
|
|
2168
|
-
* },
|
|
2169
|
-
* });
|
|
2170
|
-
*/
|
|
2171
|
-
export declare function useAssignDriverVehicleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AssignDriverVehicleMutation, Types.AssignDriverVehicleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AssignDriverVehicleMutation, any, Apollo.ApolloCache>;
|
|
2172
|
-
export type AssignDriverVehicleMutationHookResult = ReturnType<typeof useAssignDriverVehicleMutation>;
|
|
2173
|
-
export type AssignDriverVehicleMutationResult = Apollo.MutationResult<Types.AssignDriverVehicleMutation>;
|
|
2174
|
-
export type AssignDriverVehicleMutationOptions = Apollo.BaseMutationOptions<Types.AssignDriverVehicleMutation, Types.AssignDriverVehicleMutationVariables>;
|
|
2175
|
-
export declare const DeleteDriverDocument: Apollo.DocumentNode;
|
|
2176
|
-
export type DeleteDriverMutationFn = Apollo.MutationFunction<Types.DeleteDriverMutation, Types.DeleteDriverMutationVariables>;
|
|
2177
|
-
/**
|
|
2178
|
-
* __useDeleteDriverMutation__
|
|
2179
|
-
*
|
|
2180
|
-
* To run a mutation, you first call `useDeleteDriverMutation` within a React component and pass it any options that fit your needs.
|
|
2181
|
-
* When your component renders, `useDeleteDriverMutation` returns a tuple that includes:
|
|
2182
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2183
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2184
|
-
*
|
|
2185
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2186
|
-
*
|
|
2187
|
-
* @example
|
|
2188
|
-
* const [deleteDriverMutation, { data, loading, error }] = useDeleteDriverMutation({
|
|
2189
|
-
* variables: {
|
|
2190
|
-
* id: // value for 'id'
|
|
2191
|
-
* },
|
|
2192
|
-
* });
|
|
2193
|
-
*/
|
|
2194
|
-
export declare function useDeleteDriverMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteDriverMutation, Types.DeleteDriverMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteDriverMutation, any, Apollo.ApolloCache>;
|
|
2195
|
-
export type DeleteDriverMutationHookResult = ReturnType<typeof useDeleteDriverMutation>;
|
|
2196
|
-
export type DeleteDriverMutationResult = Apollo.MutationResult<Types.DeleteDriverMutation>;
|
|
2197
|
-
export type DeleteDriverMutationOptions = Apollo.BaseMutationOptions<Types.DeleteDriverMutation, Types.DeleteDriverMutationVariables>;
|
|
2198
|
-
export declare const CreateWarehouseDocument: Apollo.DocumentNode;
|
|
2199
|
-
export type CreateWarehouseMutationFn = Apollo.MutationFunction<Types.CreateWarehouseMutation, Types.CreateWarehouseMutationVariables>;
|
|
2200
|
-
/**
|
|
2201
|
-
* __useCreateWarehouseMutation__
|
|
2202
|
-
*
|
|
2203
|
-
* To run a mutation, you first call `useCreateWarehouseMutation` within a React component and pass it any options that fit your needs.
|
|
2204
|
-
* When your component renders, `useCreateWarehouseMutation` returns a tuple that includes:
|
|
2205
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2206
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2207
|
-
*
|
|
2208
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2209
|
-
*
|
|
2210
|
-
* @example
|
|
2211
|
-
* const [createWarehouseMutation, { data, loading, error }] = useCreateWarehouseMutation({
|
|
2212
|
-
* variables: {
|
|
2213
|
-
* input: // value for 'input'
|
|
2214
|
-
* },
|
|
2215
|
-
* });
|
|
2216
|
-
*/
|
|
2217
|
-
export declare function useCreateWarehouseMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateWarehouseMutation, Types.CreateWarehouseMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateWarehouseMutation, any, Apollo.ApolloCache>;
|
|
2218
|
-
export type CreateWarehouseMutationHookResult = ReturnType<typeof useCreateWarehouseMutation>;
|
|
2219
|
-
export type CreateWarehouseMutationResult = Apollo.MutationResult<Types.CreateWarehouseMutation>;
|
|
2220
|
-
export type CreateWarehouseMutationOptions = Apollo.BaseMutationOptions<Types.CreateWarehouseMutation, Types.CreateWarehouseMutationVariables>;
|
|
2221
|
-
export declare const UpdateWarehouseDocument: Apollo.DocumentNode;
|
|
2222
|
-
export type UpdateWarehouseMutationFn = Apollo.MutationFunction<Types.UpdateWarehouseMutation, Types.UpdateWarehouseMutationVariables>;
|
|
2223
|
-
/**
|
|
2224
|
-
* __useUpdateWarehouseMutation__
|
|
2225
|
-
*
|
|
2226
|
-
* To run a mutation, you first call `useUpdateWarehouseMutation` within a React component and pass it any options that fit your needs.
|
|
2227
|
-
* When your component renders, `useUpdateWarehouseMutation` returns a tuple that includes:
|
|
2228
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2229
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2230
|
-
*
|
|
2231
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2232
|
-
*
|
|
2233
|
-
* @example
|
|
2234
|
-
* const [updateWarehouseMutation, { data, loading, error }] = useUpdateWarehouseMutation({
|
|
2235
|
-
* variables: {
|
|
2236
|
-
* id: // value for 'id'
|
|
2237
|
-
* input: // value for 'input'
|
|
2238
|
-
* },
|
|
2239
|
-
* });
|
|
2240
|
-
*/
|
|
2241
|
-
export declare function useUpdateWarehouseMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateWarehouseMutation, Types.UpdateWarehouseMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateWarehouseMutation, any, Apollo.ApolloCache>;
|
|
2242
|
-
export type UpdateWarehouseMutationHookResult = ReturnType<typeof useUpdateWarehouseMutation>;
|
|
2243
|
-
export type UpdateWarehouseMutationResult = Apollo.MutationResult<Types.UpdateWarehouseMutation>;
|
|
2244
|
-
export type UpdateWarehouseMutationOptions = Apollo.BaseMutationOptions<Types.UpdateWarehouseMutation, Types.UpdateWarehouseMutationVariables>;
|
|
2245
|
-
export declare const DeleteWarehouseDocument: Apollo.DocumentNode;
|
|
2246
|
-
export type DeleteWarehouseMutationFn = Apollo.MutationFunction<Types.DeleteWarehouseMutation, Types.DeleteWarehouseMutationVariables>;
|
|
2247
|
-
/**
|
|
2248
|
-
* __useDeleteWarehouseMutation__
|
|
2249
|
-
*
|
|
2250
|
-
* To run a mutation, you first call `useDeleteWarehouseMutation` within a React component and pass it any options that fit your needs.
|
|
2251
|
-
* When your component renders, `useDeleteWarehouseMutation` returns a tuple that includes:
|
|
2252
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2253
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2254
|
-
*
|
|
2255
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2256
|
-
*
|
|
2257
|
-
* @example
|
|
2258
|
-
* const [deleteWarehouseMutation, { data, loading, error }] = useDeleteWarehouseMutation({
|
|
2259
|
-
* variables: {
|
|
2260
|
-
* id: // value for 'id'
|
|
2261
|
-
* },
|
|
2262
|
-
* });
|
|
2263
|
-
*/
|
|
2264
|
-
export declare function useDeleteWarehouseMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteWarehouseMutation, Types.DeleteWarehouseMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteWarehouseMutation, any, Apollo.ApolloCache>;
|
|
2265
|
-
export type DeleteWarehouseMutationHookResult = ReturnType<typeof useDeleteWarehouseMutation>;
|
|
2266
|
-
export type DeleteWarehouseMutationResult = Apollo.MutationResult<Types.DeleteWarehouseMutation>;
|
|
2267
|
-
export type DeleteWarehouseMutationOptions = Apollo.BaseMutationOptions<Types.DeleteWarehouseMutation, Types.DeleteWarehouseMutationVariables>;
|
|
2268
|
-
export declare const CreateInventoryItemDocument: Apollo.DocumentNode;
|
|
2269
|
-
export type CreateInventoryItemMutationFn = Apollo.MutationFunction<Types.CreateInventoryItemMutation, Types.CreateInventoryItemMutationVariables>;
|
|
2270
|
-
/**
|
|
2271
|
-
* __useCreateInventoryItemMutation__
|
|
2272
|
-
*
|
|
2273
|
-
* To run a mutation, you first call `useCreateInventoryItemMutation` within a React component and pass it any options that fit your needs.
|
|
2274
|
-
* When your component renders, `useCreateInventoryItemMutation` returns a tuple that includes:
|
|
2275
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2276
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2277
|
-
*
|
|
2278
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2279
|
-
*
|
|
2280
|
-
* @example
|
|
2281
|
-
* const [createInventoryItemMutation, { data, loading, error }] = useCreateInventoryItemMutation({
|
|
2282
|
-
* variables: {
|
|
2283
|
-
* input: // value for 'input'
|
|
2284
|
-
* },
|
|
2285
|
-
* });
|
|
2286
|
-
*/
|
|
2287
|
-
export declare function useCreateInventoryItemMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateInventoryItemMutation, Types.CreateInventoryItemMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateInventoryItemMutation, any, Apollo.ApolloCache>;
|
|
2288
|
-
export type CreateInventoryItemMutationHookResult = ReturnType<typeof useCreateInventoryItemMutation>;
|
|
2289
|
-
export type CreateInventoryItemMutationResult = Apollo.MutationResult<Types.CreateInventoryItemMutation>;
|
|
2290
|
-
export type CreateInventoryItemMutationOptions = Apollo.BaseMutationOptions<Types.CreateInventoryItemMutation, Types.CreateInventoryItemMutationVariables>;
|
|
2291
|
-
export declare const UpdateInventoryItemDocument: Apollo.DocumentNode;
|
|
2292
|
-
export type UpdateInventoryItemMutationFn = Apollo.MutationFunction<Types.UpdateInventoryItemMutation, Types.UpdateInventoryItemMutationVariables>;
|
|
2293
|
-
/**
|
|
2294
|
-
* __useUpdateInventoryItemMutation__
|
|
2295
|
-
*
|
|
2296
|
-
* To run a mutation, you first call `useUpdateInventoryItemMutation` within a React component and pass it any options that fit your needs.
|
|
2297
|
-
* When your component renders, `useUpdateInventoryItemMutation` returns a tuple that includes:
|
|
2298
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2299
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2300
|
-
*
|
|
2301
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2302
|
-
*
|
|
2303
|
-
* @example
|
|
2304
|
-
* const [updateInventoryItemMutation, { data, loading, error }] = useUpdateInventoryItemMutation({
|
|
2305
|
-
* variables: {
|
|
2306
|
-
* id: // value for 'id'
|
|
2307
|
-
* input: // value for 'input'
|
|
2308
|
-
* },
|
|
2309
|
-
* });
|
|
2310
|
-
*/
|
|
2311
|
-
export declare function useUpdateInventoryItemMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateInventoryItemMutation, Types.UpdateInventoryItemMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateInventoryItemMutation, any, Apollo.ApolloCache>;
|
|
2312
|
-
export type UpdateInventoryItemMutationHookResult = ReturnType<typeof useUpdateInventoryItemMutation>;
|
|
2313
|
-
export type UpdateInventoryItemMutationResult = Apollo.MutationResult<Types.UpdateInventoryItemMutation>;
|
|
2314
|
-
export type UpdateInventoryItemMutationOptions = Apollo.BaseMutationOptions<Types.UpdateInventoryItemMutation, Types.UpdateInventoryItemMutationVariables>;
|
|
2315
|
-
export declare const AdjustInventoryStockDocument: Apollo.DocumentNode;
|
|
2316
|
-
export type AdjustInventoryStockMutationFn = Apollo.MutationFunction<Types.AdjustInventoryStockMutation, Types.AdjustInventoryStockMutationVariables>;
|
|
2317
|
-
/**
|
|
2318
|
-
* __useAdjustInventoryStockMutation__
|
|
2319
|
-
*
|
|
2320
|
-
* To run a mutation, you first call `useAdjustInventoryStockMutation` within a React component and pass it any options that fit your needs.
|
|
2321
|
-
* When your component renders, `useAdjustInventoryStockMutation` returns a tuple that includes:
|
|
2322
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2323
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2324
|
-
*
|
|
2325
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2326
|
-
*
|
|
2327
|
-
* @example
|
|
2328
|
-
* const [adjustInventoryStockMutation, { data, loading, error }] = useAdjustInventoryStockMutation({
|
|
2329
|
-
* variables: {
|
|
2330
|
-
* input: // value for 'input'
|
|
2331
|
-
* },
|
|
2332
|
-
* });
|
|
2333
|
-
*/
|
|
2334
|
-
export declare function useAdjustInventoryStockMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AdjustInventoryStockMutation, Types.AdjustInventoryStockMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AdjustInventoryStockMutation, any, Apollo.ApolloCache>;
|
|
2335
|
-
export type AdjustInventoryStockMutationHookResult = ReturnType<typeof useAdjustInventoryStockMutation>;
|
|
2336
|
-
export type AdjustInventoryStockMutationResult = Apollo.MutationResult<Types.AdjustInventoryStockMutation>;
|
|
2337
|
-
export type AdjustInventoryStockMutationOptions = Apollo.BaseMutationOptions<Types.AdjustInventoryStockMutation, Types.AdjustInventoryStockMutationVariables>;
|
|
2338
|
-
export declare const DeleteInventoryItemDocument: Apollo.DocumentNode;
|
|
2339
|
-
export type DeleteInventoryItemMutationFn = Apollo.MutationFunction<Types.DeleteInventoryItemMutation, Types.DeleteInventoryItemMutationVariables>;
|
|
2340
|
-
/**
|
|
2341
|
-
* __useDeleteInventoryItemMutation__
|
|
2342
|
-
*
|
|
2343
|
-
* To run a mutation, you first call `useDeleteInventoryItemMutation` within a React component and pass it any options that fit your needs.
|
|
2344
|
-
* When your component renders, `useDeleteInventoryItemMutation` returns a tuple that includes:
|
|
2345
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2346
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2347
|
-
*
|
|
2348
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2349
|
-
*
|
|
2350
|
-
* @example
|
|
2351
|
-
* const [deleteInventoryItemMutation, { data, loading, error }] = useDeleteInventoryItemMutation({
|
|
2352
|
-
* variables: {
|
|
2353
|
-
* id: // value for 'id'
|
|
2354
|
-
* },
|
|
2355
|
-
* });
|
|
2356
|
-
*/
|
|
2357
|
-
export declare function useDeleteInventoryItemMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteInventoryItemMutation, Types.DeleteInventoryItemMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteInventoryItemMutation, any, Apollo.ApolloCache>;
|
|
2358
|
-
export type DeleteInventoryItemMutationHookResult = ReturnType<typeof useDeleteInventoryItemMutation>;
|
|
2359
|
-
export type DeleteInventoryItemMutationResult = Apollo.MutationResult<Types.DeleteInventoryItemMutation>;
|
|
2360
|
-
export type DeleteInventoryItemMutationOptions = Apollo.BaseMutationOptions<Types.DeleteInventoryItemMutation, Types.DeleteInventoryItemMutationVariables>;
|
|
2361
|
-
export declare const CreateRouteDocument: Apollo.DocumentNode;
|
|
2362
|
-
export type CreateRouteMutationFn = Apollo.MutationFunction<Types.CreateRouteMutation, Types.CreateRouteMutationVariables>;
|
|
2363
|
-
/**
|
|
2364
|
-
* __useCreateRouteMutation__
|
|
2365
|
-
*
|
|
2366
|
-
* To run a mutation, you first call `useCreateRouteMutation` within a React component and pass it any options that fit your needs.
|
|
2367
|
-
* When your component renders, `useCreateRouteMutation` returns a tuple that includes:
|
|
2368
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2369
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2370
|
-
*
|
|
2371
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2372
|
-
*
|
|
2373
|
-
* @example
|
|
2374
|
-
* const [createRouteMutation, { data, loading, error }] = useCreateRouteMutation({
|
|
2375
|
-
* variables: {
|
|
2376
|
-
* input: // value for 'input'
|
|
2377
|
-
* },
|
|
2378
|
-
* });
|
|
2379
|
-
*/
|
|
2380
|
-
export declare function useCreateRouteMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRouteMutation, Types.CreateRouteMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateRouteMutation, any, Apollo.ApolloCache>;
|
|
2381
|
-
export type CreateRouteMutationHookResult = ReturnType<typeof useCreateRouteMutation>;
|
|
2382
|
-
export type CreateRouteMutationResult = Apollo.MutationResult<Types.CreateRouteMutation>;
|
|
2383
|
-
export type CreateRouteMutationOptions = Apollo.BaseMutationOptions<Types.CreateRouteMutation, Types.CreateRouteMutationVariables>;
|
|
2384
|
-
export declare const UpdateRouteDocument: Apollo.DocumentNode;
|
|
2385
|
-
export type UpdateRouteMutationFn = Apollo.MutationFunction<Types.UpdateRouteMutation, Types.UpdateRouteMutationVariables>;
|
|
2386
|
-
/**
|
|
2387
|
-
* __useUpdateRouteMutation__
|
|
2388
|
-
*
|
|
2389
|
-
* To run a mutation, you first call `useUpdateRouteMutation` within a React component and pass it any options that fit your needs.
|
|
2390
|
-
* When your component renders, `useUpdateRouteMutation` returns a tuple that includes:
|
|
2391
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2392
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2393
|
-
*
|
|
2394
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2395
|
-
*
|
|
2396
|
-
* @example
|
|
2397
|
-
* const [updateRouteMutation, { data, loading, error }] = useUpdateRouteMutation({
|
|
2398
|
-
* variables: {
|
|
2399
|
-
* id: // value for 'id'
|
|
2400
|
-
* input: // value for 'input'
|
|
2401
|
-
* },
|
|
2402
|
-
* });
|
|
2403
|
-
*/
|
|
2404
|
-
export declare function useUpdateRouteMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateRouteMutation, Types.UpdateRouteMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateRouteMutation, any, Apollo.ApolloCache>;
|
|
2405
|
-
export type UpdateRouteMutationHookResult = ReturnType<typeof useUpdateRouteMutation>;
|
|
2406
|
-
export type UpdateRouteMutationResult = Apollo.MutationResult<Types.UpdateRouteMutation>;
|
|
2407
|
-
export type UpdateRouteMutationOptions = Apollo.BaseMutationOptions<Types.UpdateRouteMutation, Types.UpdateRouteMutationVariables>;
|
|
2408
|
-
export declare const OptimizeRouteDocument: Apollo.DocumentNode;
|
|
2409
|
-
export type OptimizeRouteMutationFn = Apollo.MutationFunction<Types.OptimizeRouteMutation, Types.OptimizeRouteMutationVariables>;
|
|
2410
|
-
/**
|
|
2411
|
-
* __useOptimizeRouteMutation__
|
|
2412
|
-
*
|
|
2413
|
-
* To run a mutation, you first call `useOptimizeRouteMutation` within a React component and pass it any options that fit your needs.
|
|
2414
|
-
* When your component renders, `useOptimizeRouteMutation` returns a tuple that includes:
|
|
2415
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2416
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2417
|
-
*
|
|
2418
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2419
|
-
*
|
|
2420
|
-
* @example
|
|
2421
|
-
* const [optimizeRouteMutation, { data, loading, error }] = useOptimizeRouteMutation({
|
|
2422
|
-
* variables: {
|
|
2423
|
-
* id: // value for 'id'
|
|
2424
|
-
* },
|
|
2425
|
-
* });
|
|
2426
|
-
*/
|
|
2427
|
-
export declare function useOptimizeRouteMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.OptimizeRouteMutation, Types.OptimizeRouteMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.OptimizeRouteMutation, any, Apollo.ApolloCache>;
|
|
2428
|
-
export type OptimizeRouteMutationHookResult = ReturnType<typeof useOptimizeRouteMutation>;
|
|
2429
|
-
export type OptimizeRouteMutationResult = Apollo.MutationResult<Types.OptimizeRouteMutation>;
|
|
2430
|
-
export type OptimizeRouteMutationOptions = Apollo.BaseMutationOptions<Types.OptimizeRouteMutation, Types.OptimizeRouteMutationVariables>;
|
|
2431
|
-
export declare const DeleteRouteDocument: Apollo.DocumentNode;
|
|
2432
|
-
export type DeleteRouteMutationFn = Apollo.MutationFunction<Types.DeleteRouteMutation, Types.DeleteRouteMutationVariables>;
|
|
2433
|
-
/**
|
|
2434
|
-
* __useDeleteRouteMutation__
|
|
2435
|
-
*
|
|
2436
|
-
* To run a mutation, you first call `useDeleteRouteMutation` within a React component and pass it any options that fit your needs.
|
|
2437
|
-
* When your component renders, `useDeleteRouteMutation` returns a tuple that includes:
|
|
2438
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2439
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2440
|
-
*
|
|
2441
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2442
|
-
*
|
|
2443
|
-
* @example
|
|
2444
|
-
* const [deleteRouteMutation, { data, loading, error }] = useDeleteRouteMutation({
|
|
2445
|
-
* variables: {
|
|
2446
|
-
* id: // value for 'id'
|
|
2447
|
-
* },
|
|
2448
|
-
* });
|
|
2449
|
-
*/
|
|
2450
|
-
export declare function useDeleteRouteMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteRouteMutation, Types.DeleteRouteMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteRouteMutation, any, Apollo.ApolloCache>;
|
|
2451
|
-
export type DeleteRouteMutationHookResult = ReturnType<typeof useDeleteRouteMutation>;
|
|
2452
|
-
export type DeleteRouteMutationResult = Apollo.MutationResult<Types.DeleteRouteMutation>;
|
|
2453
|
-
export type DeleteRouteMutationOptions = Apollo.BaseMutationOptions<Types.DeleteRouteMutation, Types.DeleteRouteMutationVariables>;
|
|
2454
|
-
export declare const CreateShipmentDocument: Apollo.DocumentNode;
|
|
2455
|
-
export type CreateShipmentMutationFn = Apollo.MutationFunction<Types.CreateShipmentMutation, Types.CreateShipmentMutationVariables>;
|
|
2456
|
-
/**
|
|
2457
|
-
* __useCreateShipmentMutation__
|
|
2458
|
-
*
|
|
2459
|
-
* To run a mutation, you first call `useCreateShipmentMutation` within a React component and pass it any options that fit your needs.
|
|
2460
|
-
* When your component renders, `useCreateShipmentMutation` returns a tuple that includes:
|
|
2461
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2462
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2463
|
-
*
|
|
2464
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2465
|
-
*
|
|
2466
|
-
* @example
|
|
2467
|
-
* const [createShipmentMutation, { data, loading, error }] = useCreateShipmentMutation({
|
|
2468
|
-
* variables: {
|
|
2469
|
-
* input: // value for 'input'
|
|
2470
|
-
* },
|
|
2471
|
-
* });
|
|
2472
|
-
*/
|
|
2473
|
-
export declare function useCreateShipmentMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateShipmentMutation, Types.CreateShipmentMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateShipmentMutation, any, Apollo.ApolloCache>;
|
|
2474
|
-
export type CreateShipmentMutationHookResult = ReturnType<typeof useCreateShipmentMutation>;
|
|
2475
|
-
export type CreateShipmentMutationResult = Apollo.MutationResult<Types.CreateShipmentMutation>;
|
|
2476
|
-
export type CreateShipmentMutationOptions = Apollo.BaseMutationOptions<Types.CreateShipmentMutation, Types.CreateShipmentMutationVariables>;
|
|
2477
|
-
export declare const UpdateShipmentDocument: Apollo.DocumentNode;
|
|
2478
|
-
export type UpdateShipmentMutationFn = Apollo.MutationFunction<Types.UpdateShipmentMutation, Types.UpdateShipmentMutationVariables>;
|
|
2479
|
-
/**
|
|
2480
|
-
* __useUpdateShipmentMutation__
|
|
2481
|
-
*
|
|
2482
|
-
* To run a mutation, you first call `useUpdateShipmentMutation` within a React component and pass it any options that fit your needs.
|
|
2483
|
-
* When your component renders, `useUpdateShipmentMutation` returns a tuple that includes:
|
|
2484
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2485
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2486
|
-
*
|
|
2487
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2488
|
-
*
|
|
2489
|
-
* @example
|
|
2490
|
-
* const [updateShipmentMutation, { data, loading, error }] = useUpdateShipmentMutation({
|
|
2491
|
-
* variables: {
|
|
2492
|
-
* id: // value for 'id'
|
|
2493
|
-
* input: // value for 'input'
|
|
2494
|
-
* },
|
|
2495
|
-
* });
|
|
2496
|
-
*/
|
|
2497
|
-
export declare function useUpdateShipmentMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateShipmentMutation, Types.UpdateShipmentMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateShipmentMutation, any, Apollo.ApolloCache>;
|
|
2498
|
-
export type UpdateShipmentMutationHookResult = ReturnType<typeof useUpdateShipmentMutation>;
|
|
2499
|
-
export type UpdateShipmentMutationResult = Apollo.MutationResult<Types.UpdateShipmentMutation>;
|
|
2500
|
-
export type UpdateShipmentMutationOptions = Apollo.BaseMutationOptions<Types.UpdateShipmentMutation, Types.UpdateShipmentMutationVariables>;
|
|
2501
|
-
export declare const DeleteShipmentDocument: Apollo.DocumentNode;
|
|
2502
|
-
export type DeleteShipmentMutationFn = Apollo.MutationFunction<Types.DeleteShipmentMutation, Types.DeleteShipmentMutationVariables>;
|
|
2503
|
-
/**
|
|
2504
|
-
* __useDeleteShipmentMutation__
|
|
2505
|
-
*
|
|
2506
|
-
* To run a mutation, you first call `useDeleteShipmentMutation` within a React component and pass it any options that fit your needs.
|
|
2507
|
-
* When your component renders, `useDeleteShipmentMutation` returns a tuple that includes:
|
|
2508
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2509
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2510
|
-
*
|
|
2511
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2512
|
-
*
|
|
2513
|
-
* @example
|
|
2514
|
-
* const [deleteShipmentMutation, { data, loading, error }] = useDeleteShipmentMutation({
|
|
2515
|
-
* variables: {
|
|
2516
|
-
* id: // value for 'id'
|
|
2517
|
-
* },
|
|
2518
|
-
* });
|
|
2519
|
-
*/
|
|
2520
|
-
export declare function useDeleteShipmentMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteShipmentMutation, Types.DeleteShipmentMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteShipmentMutation, any, Apollo.ApolloCache>;
|
|
2521
|
-
export type DeleteShipmentMutationHookResult = ReturnType<typeof useDeleteShipmentMutation>;
|
|
2522
|
-
export type DeleteShipmentMutationResult = Apollo.MutationResult<Types.DeleteShipmentMutation>;
|
|
2523
|
-
export type DeleteShipmentMutationOptions = Apollo.BaseMutationOptions<Types.DeleteShipmentMutation, Types.DeleteShipmentMutationVariables>;
|
|
2524
|
-
export declare const AddTrackingEventDocument: Apollo.DocumentNode;
|
|
2525
|
-
export type AddTrackingEventMutationFn = Apollo.MutationFunction<Types.AddTrackingEventMutation, Types.AddTrackingEventMutationVariables>;
|
|
2526
|
-
/**
|
|
2527
|
-
* __useAddTrackingEventMutation__
|
|
2528
|
-
*
|
|
2529
|
-
* To run a mutation, you first call `useAddTrackingEventMutation` within a React component and pass it any options that fit your needs.
|
|
2530
|
-
* When your component renders, `useAddTrackingEventMutation` returns a tuple that includes:
|
|
2531
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2532
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2533
|
-
*
|
|
2534
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2535
|
-
*
|
|
2536
|
-
* @example
|
|
2537
|
-
* const [addTrackingEventMutation, { data, loading, error }] = useAddTrackingEventMutation({
|
|
2538
|
-
* variables: {
|
|
2539
|
-
* input: // value for 'input'
|
|
2540
|
-
* },
|
|
2541
|
-
* });
|
|
2542
|
-
*/
|
|
2543
|
-
export declare function useAddTrackingEventMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddTrackingEventMutation, Types.AddTrackingEventMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AddTrackingEventMutation, any, Apollo.ApolloCache>;
|
|
2544
|
-
export type AddTrackingEventMutationHookResult = ReturnType<typeof useAddTrackingEventMutation>;
|
|
2545
|
-
export type AddTrackingEventMutationResult = Apollo.MutationResult<Types.AddTrackingEventMutation>;
|
|
2546
|
-
export type AddTrackingEventMutationOptions = Apollo.BaseMutationOptions<Types.AddTrackingEventMutation, Types.AddTrackingEventMutationVariables>;
|
|
2547
|
-
export declare const CreateServiceProviderDocument: Apollo.DocumentNode;
|
|
2548
|
-
export type CreateServiceProviderMutationFn = Apollo.MutationFunction<Types.CreateServiceProviderMutation, Types.CreateServiceProviderMutationVariables>;
|
|
2549
|
-
/**
|
|
2550
|
-
* __useCreateServiceProviderMutation__
|
|
2551
|
-
*
|
|
2552
|
-
* To run a mutation, you first call `useCreateServiceProviderMutation` within a React component and pass it any options that fit your needs.
|
|
2553
|
-
* When your component renders, `useCreateServiceProviderMutation` returns a tuple that includes:
|
|
2554
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2555
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2556
|
-
*
|
|
2557
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2558
|
-
*
|
|
2559
|
-
* @example
|
|
2560
|
-
* const [createServiceProviderMutation, { data, loading, error }] = useCreateServiceProviderMutation({
|
|
2561
|
-
* variables: {
|
|
2562
|
-
* input: // value for 'input'
|
|
2563
|
-
* },
|
|
2564
|
-
* });
|
|
2565
|
-
*/
|
|
2566
|
-
export declare function useCreateServiceProviderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateServiceProviderMutation, Types.CreateServiceProviderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateServiceProviderMutation, any, Apollo.ApolloCache>;
|
|
2567
|
-
export type CreateServiceProviderMutationHookResult = ReturnType<typeof useCreateServiceProviderMutation>;
|
|
2568
|
-
export type CreateServiceProviderMutationResult = Apollo.MutationResult<Types.CreateServiceProviderMutation>;
|
|
2569
|
-
export type CreateServiceProviderMutationOptions = Apollo.BaseMutationOptions<Types.CreateServiceProviderMutation, Types.CreateServiceProviderMutationVariables>;
|
|
2570
|
-
export declare const UpdateServiceProviderDocument: Apollo.DocumentNode;
|
|
2571
|
-
export type UpdateServiceProviderMutationFn = Apollo.MutationFunction<Types.UpdateServiceProviderMutation, Types.UpdateServiceProviderMutationVariables>;
|
|
2572
|
-
/**
|
|
2573
|
-
* __useUpdateServiceProviderMutation__
|
|
2574
|
-
*
|
|
2575
|
-
* To run a mutation, you first call `useUpdateServiceProviderMutation` within a React component and pass it any options that fit your needs.
|
|
2576
|
-
* When your component renders, `useUpdateServiceProviderMutation` returns a tuple that includes:
|
|
2577
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2578
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2579
|
-
*
|
|
2580
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2581
|
-
*
|
|
2582
|
-
* @example
|
|
2583
|
-
* const [updateServiceProviderMutation, { data, loading, error }] = useUpdateServiceProviderMutation({
|
|
2584
|
-
* variables: {
|
|
2585
|
-
* id: // value for 'id'
|
|
2586
|
-
* input: // value for 'input'
|
|
2587
|
-
* },
|
|
2588
|
-
* });
|
|
2589
|
-
*/
|
|
2590
|
-
export declare function useUpdateServiceProviderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateServiceProviderMutation, Types.UpdateServiceProviderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateServiceProviderMutation, any, Apollo.ApolloCache>;
|
|
2591
|
-
export type UpdateServiceProviderMutationHookResult = ReturnType<typeof useUpdateServiceProviderMutation>;
|
|
2592
|
-
export type UpdateServiceProviderMutationResult = Apollo.MutationResult<Types.UpdateServiceProviderMutation>;
|
|
2593
|
-
export type UpdateServiceProviderMutationOptions = Apollo.BaseMutationOptions<Types.UpdateServiceProviderMutation, Types.UpdateServiceProviderMutationVariables>;
|
|
2594
|
-
export declare const DeleteServiceProviderDocument: Apollo.DocumentNode;
|
|
2595
|
-
export type DeleteServiceProviderMutationFn = Apollo.MutationFunction<Types.DeleteServiceProviderMutation, Types.DeleteServiceProviderMutationVariables>;
|
|
2596
|
-
/**
|
|
2597
|
-
* __useDeleteServiceProviderMutation__
|
|
2598
|
-
*
|
|
2599
|
-
* To run a mutation, you first call `useDeleteServiceProviderMutation` within a React component and pass it any options that fit your needs.
|
|
2600
|
-
* When your component renders, `useDeleteServiceProviderMutation` returns a tuple that includes:
|
|
2601
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2602
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2603
|
-
*
|
|
2604
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2605
|
-
*
|
|
2606
|
-
* @example
|
|
2607
|
-
* const [deleteServiceProviderMutation, { data, loading, error }] = useDeleteServiceProviderMutation({
|
|
2608
|
-
* variables: {
|
|
2609
|
-
* id: // value for 'id'
|
|
2610
|
-
* },
|
|
2611
|
-
* });
|
|
2612
|
-
*/
|
|
2613
|
-
export declare function useDeleteServiceProviderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteServiceProviderMutation, Types.DeleteServiceProviderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteServiceProviderMutation, any, Apollo.ApolloCache>;
|
|
2614
|
-
export type DeleteServiceProviderMutationHookResult = ReturnType<typeof useDeleteServiceProviderMutation>;
|
|
2615
|
-
export type DeleteServiceProviderMutationResult = Apollo.MutationResult<Types.DeleteServiceProviderMutation>;
|
|
2616
|
-
export type DeleteServiceProviderMutationOptions = Apollo.BaseMutationOptions<Types.DeleteServiceProviderMutation, Types.DeleteServiceProviderMutationVariables>;
|
|
2617
|
-
export declare const CreateServiceOfferingDocument: Apollo.DocumentNode;
|
|
2618
|
-
export type CreateServiceOfferingMutationFn = Apollo.MutationFunction<Types.CreateServiceOfferingMutation, Types.CreateServiceOfferingMutationVariables>;
|
|
2619
|
-
/**
|
|
2620
|
-
* __useCreateServiceOfferingMutation__
|
|
2621
|
-
*
|
|
2622
|
-
* To run a mutation, you first call `useCreateServiceOfferingMutation` within a React component and pass it any options that fit your needs.
|
|
2623
|
-
* When your component renders, `useCreateServiceOfferingMutation` returns a tuple that includes:
|
|
2624
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2625
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2626
|
-
*
|
|
2627
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2628
|
-
*
|
|
2629
|
-
* @example
|
|
2630
|
-
* const [createServiceOfferingMutation, { data, loading, error }] = useCreateServiceOfferingMutation({
|
|
2631
|
-
* variables: {
|
|
2632
|
-
* input: // value for 'input'
|
|
2633
|
-
* },
|
|
2634
|
-
* });
|
|
2635
|
-
*/
|
|
2636
|
-
export declare function useCreateServiceOfferingMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateServiceOfferingMutation, Types.CreateServiceOfferingMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateServiceOfferingMutation, any, Apollo.ApolloCache>;
|
|
2637
|
-
export type CreateServiceOfferingMutationHookResult = ReturnType<typeof useCreateServiceOfferingMutation>;
|
|
2638
|
-
export type CreateServiceOfferingMutationResult = Apollo.MutationResult<Types.CreateServiceOfferingMutation>;
|
|
2639
|
-
export type CreateServiceOfferingMutationOptions = Apollo.BaseMutationOptions<Types.CreateServiceOfferingMutation, Types.CreateServiceOfferingMutationVariables>;
|
|
2640
|
-
export declare const UpdateServiceOfferingDocument: Apollo.DocumentNode;
|
|
2641
|
-
export type UpdateServiceOfferingMutationFn = Apollo.MutationFunction<Types.UpdateServiceOfferingMutation, Types.UpdateServiceOfferingMutationVariables>;
|
|
2642
|
-
/**
|
|
2643
|
-
* __useUpdateServiceOfferingMutation__
|
|
2644
|
-
*
|
|
2645
|
-
* To run a mutation, you first call `useUpdateServiceOfferingMutation` within a React component and pass it any options that fit your needs.
|
|
2646
|
-
* When your component renders, `useUpdateServiceOfferingMutation` returns a tuple that includes:
|
|
2647
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2648
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2649
|
-
*
|
|
2650
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2651
|
-
*
|
|
2652
|
-
* @example
|
|
2653
|
-
* const [updateServiceOfferingMutation, { data, loading, error }] = useUpdateServiceOfferingMutation({
|
|
2654
|
-
* variables: {
|
|
2655
|
-
* id: // value for 'id'
|
|
2656
|
-
* input: // value for 'input'
|
|
2657
|
-
* },
|
|
2658
|
-
* });
|
|
2659
|
-
*/
|
|
2660
|
-
export declare function useUpdateServiceOfferingMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateServiceOfferingMutation, Types.UpdateServiceOfferingMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateServiceOfferingMutation, any, Apollo.ApolloCache>;
|
|
2661
|
-
export type UpdateServiceOfferingMutationHookResult = ReturnType<typeof useUpdateServiceOfferingMutation>;
|
|
2662
|
-
export type UpdateServiceOfferingMutationResult = Apollo.MutationResult<Types.UpdateServiceOfferingMutation>;
|
|
2663
|
-
export type UpdateServiceOfferingMutationOptions = Apollo.BaseMutationOptions<Types.UpdateServiceOfferingMutation, Types.UpdateServiceOfferingMutationVariables>;
|
|
2664
|
-
export declare const DeleteServiceOfferingDocument: Apollo.DocumentNode;
|
|
2665
|
-
export type DeleteServiceOfferingMutationFn = Apollo.MutationFunction<Types.DeleteServiceOfferingMutation, Types.DeleteServiceOfferingMutationVariables>;
|
|
2666
|
-
/**
|
|
2667
|
-
* __useDeleteServiceOfferingMutation__
|
|
2668
|
-
*
|
|
2669
|
-
* To run a mutation, you first call `useDeleteServiceOfferingMutation` within a React component and pass it any options that fit your needs.
|
|
2670
|
-
* When your component renders, `useDeleteServiceOfferingMutation` returns a tuple that includes:
|
|
2671
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2672
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2673
|
-
*
|
|
2674
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2675
|
-
*
|
|
2676
|
-
* @example
|
|
2677
|
-
* const [deleteServiceOfferingMutation, { data, loading, error }] = useDeleteServiceOfferingMutation({
|
|
2678
|
-
* variables: {
|
|
2679
|
-
* id: // value for 'id'
|
|
2680
|
-
* },
|
|
2681
|
-
* });
|
|
2682
|
-
*/
|
|
2683
|
-
export declare function useDeleteServiceOfferingMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteServiceOfferingMutation, Types.DeleteServiceOfferingMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteServiceOfferingMutation, any, Apollo.ApolloCache>;
|
|
2684
|
-
export type DeleteServiceOfferingMutationHookResult = ReturnType<typeof useDeleteServiceOfferingMutation>;
|
|
2685
|
-
export type DeleteServiceOfferingMutationResult = Apollo.MutationResult<Types.DeleteServiceOfferingMutation>;
|
|
2686
|
-
export type DeleteServiceOfferingMutationOptions = Apollo.BaseMutationOptions<Types.DeleteServiceOfferingMutation, Types.DeleteServiceOfferingMutationVariables>;
|
|
2687
|
-
export declare const CreateMovethewheelsReportDocument: Apollo.DocumentNode;
|
|
2688
|
-
export type CreateMovethewheelsReportMutationFn = Apollo.MutationFunction<Types.CreateMovethewheelsReportMutation, Types.CreateMovethewheelsReportMutationVariables>;
|
|
2689
|
-
/**
|
|
2690
|
-
* __useCreateMovethewheelsReportMutation__
|
|
2691
|
-
*
|
|
2692
|
-
* To run a mutation, you first call `useCreateMovethewheelsReportMutation` within a React component and pass it any options that fit your needs.
|
|
2693
|
-
* When your component renders, `useCreateMovethewheelsReportMutation` returns a tuple that includes:
|
|
2694
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2695
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2696
|
-
*
|
|
2697
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2698
|
-
*
|
|
2699
|
-
* @example
|
|
2700
|
-
* const [createMovethewheelsReportMutation, { data, loading, error }] = useCreateMovethewheelsReportMutation({
|
|
2701
|
-
* variables: {
|
|
2702
|
-
* input: // value for 'input'
|
|
2703
|
-
* },
|
|
2704
|
-
* });
|
|
2705
|
-
*/
|
|
2706
|
-
export declare function useCreateMovethewheelsReportMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateMovethewheelsReportMutation, Types.CreateMovethewheelsReportMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateMovethewheelsReportMutation, any, Apollo.ApolloCache>;
|
|
2707
|
-
export type CreateMovethewheelsReportMutationHookResult = ReturnType<typeof useCreateMovethewheelsReportMutation>;
|
|
2708
|
-
export type CreateMovethewheelsReportMutationResult = Apollo.MutationResult<Types.CreateMovethewheelsReportMutation>;
|
|
2709
|
-
export type CreateMovethewheelsReportMutationOptions = Apollo.BaseMutationOptions<Types.CreateMovethewheelsReportMutation, Types.CreateMovethewheelsReportMutationVariables>;
|
|
2710
|
-
export declare const UpdateMovethewheelsReportDocument: Apollo.DocumentNode;
|
|
2711
|
-
export type UpdateMovethewheelsReportMutationFn = Apollo.MutationFunction<Types.UpdateMovethewheelsReportMutation, Types.UpdateMovethewheelsReportMutationVariables>;
|
|
2712
|
-
/**
|
|
2713
|
-
* __useUpdateMovethewheelsReportMutation__
|
|
2714
|
-
*
|
|
2715
|
-
* To run a mutation, you first call `useUpdateMovethewheelsReportMutation` within a React component and pass it any options that fit your needs.
|
|
2716
|
-
* When your component renders, `useUpdateMovethewheelsReportMutation` returns a tuple that includes:
|
|
2717
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2718
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2719
|
-
*
|
|
2720
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2721
|
-
*
|
|
2722
|
-
* @example
|
|
2723
|
-
* const [updateMovethewheelsReportMutation, { data, loading, error }] = useUpdateMovethewheelsReportMutation({
|
|
2724
|
-
* variables: {
|
|
2725
|
-
* id: // value for 'id'
|
|
2726
|
-
* input: // value for 'input'
|
|
2727
|
-
* },
|
|
2728
|
-
* });
|
|
2729
|
-
*/
|
|
2730
|
-
export declare function useUpdateMovethewheelsReportMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateMovethewheelsReportMutation, Types.UpdateMovethewheelsReportMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateMovethewheelsReportMutation, any, Apollo.ApolloCache>;
|
|
2731
|
-
export type UpdateMovethewheelsReportMutationHookResult = ReturnType<typeof useUpdateMovethewheelsReportMutation>;
|
|
2732
|
-
export type UpdateMovethewheelsReportMutationResult = Apollo.MutationResult<Types.UpdateMovethewheelsReportMutation>;
|
|
2733
|
-
export type UpdateMovethewheelsReportMutationOptions = Apollo.BaseMutationOptions<Types.UpdateMovethewheelsReportMutation, Types.UpdateMovethewheelsReportMutationVariables>;
|
|
2734
|
-
export declare const DeleteMovethewheelsReportDocument: Apollo.DocumentNode;
|
|
2735
|
-
export type DeleteMovethewheelsReportMutationFn = Apollo.MutationFunction<Types.DeleteMovethewheelsReportMutation, Types.DeleteMovethewheelsReportMutationVariables>;
|
|
2736
|
-
/**
|
|
2737
|
-
* __useDeleteMovethewheelsReportMutation__
|
|
2738
|
-
*
|
|
2739
|
-
* To run a mutation, you first call `useDeleteMovethewheelsReportMutation` within a React component and pass it any options that fit your needs.
|
|
2740
|
-
* When your component renders, `useDeleteMovethewheelsReportMutation` returns a tuple that includes:
|
|
2741
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2742
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2743
|
-
*
|
|
2744
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2745
|
-
*
|
|
2746
|
-
* @example
|
|
2747
|
-
* const [deleteMovethewheelsReportMutation, { data, loading, error }] = useDeleteMovethewheelsReportMutation({
|
|
2748
|
-
* variables: {
|
|
2749
|
-
* id: // value for 'id'
|
|
2750
|
-
* },
|
|
2751
|
-
* });
|
|
2752
|
-
*/
|
|
2753
|
-
export declare function useDeleteMovethewheelsReportMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteMovethewheelsReportMutation, Types.DeleteMovethewheelsReportMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteMovethewheelsReportMutation, any, Apollo.ApolloCache>;
|
|
2754
|
-
export type DeleteMovethewheelsReportMutationHookResult = ReturnType<typeof useDeleteMovethewheelsReportMutation>;
|
|
2755
|
-
export type DeleteMovethewheelsReportMutationResult = Apollo.MutationResult<Types.DeleteMovethewheelsReportMutation>;
|
|
2756
|
-
export type DeleteMovethewheelsReportMutationOptions = Apollo.BaseMutationOptions<Types.DeleteMovethewheelsReportMutation, Types.DeleteMovethewheelsReportMutationVariables>;
|
|
2757
|
-
export declare const GenerateMovethewheelsReportDocument: Apollo.DocumentNode;
|
|
2758
|
-
export type GenerateMovethewheelsReportMutationFn = Apollo.MutationFunction<Types.GenerateMovethewheelsReportMutation, Types.GenerateMovethewheelsReportMutationVariables>;
|
|
2759
|
-
/**
|
|
2760
|
-
* __useGenerateMovethewheelsReportMutation__
|
|
2761
|
-
*
|
|
2762
|
-
* To run a mutation, you first call `useGenerateMovethewheelsReportMutation` within a React component and pass it any options that fit your needs.
|
|
2763
|
-
* When your component renders, `useGenerateMovethewheelsReportMutation` returns a tuple that includes:
|
|
2764
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2765
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2766
|
-
*
|
|
2767
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2768
|
-
*
|
|
2769
|
-
* @example
|
|
2770
|
-
* const [generateMovethewheelsReportMutation, { data, loading, error }] = useGenerateMovethewheelsReportMutation({
|
|
2771
|
-
* variables: {
|
|
2772
|
-
* input: // value for 'input'
|
|
2773
|
-
* },
|
|
2774
|
-
* });
|
|
2775
|
-
*/
|
|
2776
|
-
export declare function useGenerateMovethewheelsReportMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.GenerateMovethewheelsReportMutation, Types.GenerateMovethewheelsReportMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.GenerateMovethewheelsReportMutation, any, Apollo.ApolloCache>;
|
|
2777
|
-
export type GenerateMovethewheelsReportMutationHookResult = ReturnType<typeof useGenerateMovethewheelsReportMutation>;
|
|
2778
|
-
export type GenerateMovethewheelsReportMutationResult = Apollo.MutationResult<Types.GenerateMovethewheelsReportMutation>;
|
|
2779
|
-
export type GenerateMovethewheelsReportMutationOptions = Apollo.BaseMutationOptions<Types.GenerateMovethewheelsReportMutation, Types.GenerateMovethewheelsReportMutationVariables>;
|
|
2780
|
-
export declare const ImportMovethewheelsDataDocument: Apollo.DocumentNode;
|
|
2781
|
-
export type ImportMovethewheelsDataMutationFn = Apollo.MutationFunction<Types.ImportMovethewheelsDataMutation, Types.ImportMovethewheelsDataMutationVariables>;
|
|
2782
|
-
/**
|
|
2783
|
-
* __useImportMovethewheelsDataMutation__
|
|
2784
|
-
*
|
|
2785
|
-
* To run a mutation, you first call `useImportMovethewheelsDataMutation` within a React component and pass it any options that fit your needs.
|
|
2786
|
-
* When your component renders, `useImportMovethewheelsDataMutation` returns a tuple that includes:
|
|
2787
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2788
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2789
|
-
*
|
|
2790
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2791
|
-
*
|
|
2792
|
-
* @example
|
|
2793
|
-
* const [importMovethewheelsDataMutation, { data, loading, error }] = useImportMovethewheelsDataMutation({
|
|
2794
|
-
* variables: {
|
|
2795
|
-
* input: // value for 'input'
|
|
2796
|
-
* },
|
|
2797
|
-
* });
|
|
2798
|
-
*/
|
|
2799
|
-
export declare function useImportMovethewheelsDataMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ImportMovethewheelsDataMutation, Types.ImportMovethewheelsDataMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ImportMovethewheelsDataMutation, any, Apollo.ApolloCache>;
|
|
2800
|
-
export type ImportMovethewheelsDataMutationHookResult = ReturnType<typeof useImportMovethewheelsDataMutation>;
|
|
2801
|
-
export type ImportMovethewheelsDataMutationResult = Apollo.MutationResult<Types.ImportMovethewheelsDataMutation>;
|
|
2802
|
-
export type ImportMovethewheelsDataMutationOptions = Apollo.BaseMutationOptions<Types.ImportMovethewheelsDataMutation, Types.ImportMovethewheelsDataMutationVariables>;
|
|
2803
|
-
export declare const ExportMovethewheelsDataDocument: Apollo.DocumentNode;
|
|
2804
|
-
export type ExportMovethewheelsDataMutationFn = Apollo.MutationFunction<Types.ExportMovethewheelsDataMutation, Types.ExportMovethewheelsDataMutationVariables>;
|
|
2805
|
-
/**
|
|
2806
|
-
* __useExportMovethewheelsDataMutation__
|
|
2807
|
-
*
|
|
2808
|
-
* To run a mutation, you first call `useExportMovethewheelsDataMutation` within a React component and pass it any options that fit your needs.
|
|
2809
|
-
* When your component renders, `useExportMovethewheelsDataMutation` returns a tuple that includes:
|
|
2810
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2811
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2812
|
-
*
|
|
2813
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2814
|
-
*
|
|
2815
|
-
* @example
|
|
2816
|
-
* const [exportMovethewheelsDataMutation, { data, loading, error }] = useExportMovethewheelsDataMutation({
|
|
2817
|
-
* variables: {
|
|
2818
|
-
* input: // value for 'input'
|
|
2819
|
-
* },
|
|
2820
|
-
* });
|
|
2821
|
-
*/
|
|
2822
|
-
export declare function useExportMovethewheelsDataMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ExportMovethewheelsDataMutation, Types.ExportMovethewheelsDataMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ExportMovethewheelsDataMutation, any, Apollo.ApolloCache>;
|
|
2823
|
-
export type ExportMovethewheelsDataMutationHookResult = ReturnType<typeof useExportMovethewheelsDataMutation>;
|
|
2824
|
-
export type ExportMovethewheelsDataMutationResult = Apollo.MutationResult<Types.ExportMovethewheelsDataMutation>;
|
|
2825
|
-
export type ExportMovethewheelsDataMutationOptions = Apollo.BaseMutationOptions<Types.ExportMovethewheelsDataMutation, Types.ExportMovethewheelsDataMutationVariables>;
|
|
2826
|
-
export declare const UpdateMovethewheelsModuleSettingsDocument: Apollo.DocumentNode;
|
|
2827
|
-
export type UpdateMovethewheelsModuleSettingsMutationFn = Apollo.MutationFunction<Types.UpdateMovethewheelsModuleSettingsMutation, Types.UpdateMovethewheelsModuleSettingsMutationVariables>;
|
|
2828
|
-
/**
|
|
2829
|
-
* __useUpdateMovethewheelsModuleSettingsMutation__
|
|
2830
|
-
*
|
|
2831
|
-
* To run a mutation, you first call `useUpdateMovethewheelsModuleSettingsMutation` within a React component and pass it any options that fit your needs.
|
|
2832
|
-
* When your component renders, `useUpdateMovethewheelsModuleSettingsMutation` returns a tuple that includes:
|
|
2833
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2834
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2835
|
-
*
|
|
2836
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2837
|
-
*
|
|
2838
|
-
* @example
|
|
2839
|
-
* const [updateMovethewheelsModuleSettingsMutation, { data, loading, error }] = useUpdateMovethewheelsModuleSettingsMutation({
|
|
2840
|
-
* variables: {
|
|
2841
|
-
* input: // value for 'input'
|
|
2842
|
-
* },
|
|
2843
|
-
* });
|
|
2844
|
-
*/
|
|
2845
|
-
export declare function useUpdateMovethewheelsModuleSettingsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateMovethewheelsModuleSettingsMutation, Types.UpdateMovethewheelsModuleSettingsMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateMovethewheelsModuleSettingsMutation, any, Apollo.ApolloCache>;
|
|
2846
|
-
export type UpdateMovethewheelsModuleSettingsMutationHookResult = ReturnType<typeof useUpdateMovethewheelsModuleSettingsMutation>;
|
|
2847
|
-
export type UpdateMovethewheelsModuleSettingsMutationResult = Apollo.MutationResult<Types.UpdateMovethewheelsModuleSettingsMutation>;
|
|
2848
|
-
export type UpdateMovethewheelsModuleSettingsMutationOptions = Apollo.BaseMutationOptions<Types.UpdateMovethewheelsModuleSettingsMutation, Types.UpdateMovethewheelsModuleSettingsMutationVariables>;
|
|
2849
|
-
export declare const CreateMovethewheelsOrderDocument: Apollo.DocumentNode;
|
|
2850
|
-
export type CreateMovethewheelsOrderMutationFn = Apollo.MutationFunction<Types.CreateMovethewheelsOrderMutation, Types.CreateMovethewheelsOrderMutationVariables>;
|
|
2851
|
-
/**
|
|
2852
|
-
* __useCreateMovethewheelsOrderMutation__
|
|
2853
|
-
*
|
|
2854
|
-
* To run a mutation, you first call `useCreateMovethewheelsOrderMutation` within a React component and pass it any options that fit your needs.
|
|
2855
|
-
* When your component renders, `useCreateMovethewheelsOrderMutation` returns a tuple that includes:
|
|
2856
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2857
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2858
|
-
*
|
|
2859
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2860
|
-
*
|
|
2861
|
-
* @example
|
|
2862
|
-
* const [createMovethewheelsOrderMutation, { data, loading, error }] = useCreateMovethewheelsOrderMutation({
|
|
2863
|
-
* variables: {
|
|
2864
|
-
* input: // value for 'input'
|
|
2865
|
-
* },
|
|
2866
|
-
* });
|
|
2867
|
-
*/
|
|
2868
|
-
export declare function useCreateMovethewheelsOrderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateMovethewheelsOrderMutation, Types.CreateMovethewheelsOrderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateMovethewheelsOrderMutation, any, Apollo.ApolloCache>;
|
|
2869
|
-
export type CreateMovethewheelsOrderMutationHookResult = ReturnType<typeof useCreateMovethewheelsOrderMutation>;
|
|
2870
|
-
export type CreateMovethewheelsOrderMutationResult = Apollo.MutationResult<Types.CreateMovethewheelsOrderMutation>;
|
|
2871
|
-
export type CreateMovethewheelsOrderMutationOptions = Apollo.BaseMutationOptions<Types.CreateMovethewheelsOrderMutation, Types.CreateMovethewheelsOrderMutationVariables>;
|
|
2872
|
-
export declare const UpdateMovethewheelsOrderDocument: Apollo.DocumentNode;
|
|
2873
|
-
export type UpdateMovethewheelsOrderMutationFn = Apollo.MutationFunction<Types.UpdateMovethewheelsOrderMutation, Types.UpdateMovethewheelsOrderMutationVariables>;
|
|
2874
|
-
/**
|
|
2875
|
-
* __useUpdateMovethewheelsOrderMutation__
|
|
2876
|
-
*
|
|
2877
|
-
* To run a mutation, you first call `useUpdateMovethewheelsOrderMutation` within a React component and pass it any options that fit your needs.
|
|
2878
|
-
* When your component renders, `useUpdateMovethewheelsOrderMutation` returns a tuple that includes:
|
|
2879
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2880
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2881
|
-
*
|
|
2882
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2883
|
-
*
|
|
2884
|
-
* @example
|
|
2885
|
-
* const [updateMovethewheelsOrderMutation, { data, loading, error }] = useUpdateMovethewheelsOrderMutation({
|
|
2886
|
-
* variables: {
|
|
2887
|
-
* id: // value for 'id'
|
|
2888
|
-
* input: // value for 'input'
|
|
2889
|
-
* },
|
|
2890
|
-
* });
|
|
2891
|
-
*/
|
|
2892
|
-
export declare function useUpdateMovethewheelsOrderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateMovethewheelsOrderMutation, Types.UpdateMovethewheelsOrderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateMovethewheelsOrderMutation, any, Apollo.ApolloCache>;
|
|
2893
|
-
export type UpdateMovethewheelsOrderMutationHookResult = ReturnType<typeof useUpdateMovethewheelsOrderMutation>;
|
|
2894
|
-
export type UpdateMovethewheelsOrderMutationResult = Apollo.MutationResult<Types.UpdateMovethewheelsOrderMutation>;
|
|
2895
|
-
export type UpdateMovethewheelsOrderMutationOptions = Apollo.BaseMutationOptions<Types.UpdateMovethewheelsOrderMutation, Types.UpdateMovethewheelsOrderMutationVariables>;
|
|
2896
|
-
export declare const UpdateMovethewheelsOrderStatusDocument: Apollo.DocumentNode;
|
|
2897
|
-
export type UpdateMovethewheelsOrderStatusMutationFn = Apollo.MutationFunction<Types.UpdateMovethewheelsOrderStatusMutation, Types.UpdateMovethewheelsOrderStatusMutationVariables>;
|
|
2898
|
-
/**
|
|
2899
|
-
* __useUpdateMovethewheelsOrderStatusMutation__
|
|
2900
|
-
*
|
|
2901
|
-
* To run a mutation, you first call `useUpdateMovethewheelsOrderStatusMutation` within a React component and pass it any options that fit your needs.
|
|
2902
|
-
* When your component renders, `useUpdateMovethewheelsOrderStatusMutation` returns a tuple that includes:
|
|
2903
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2904
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2905
|
-
*
|
|
2906
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2907
|
-
*
|
|
2908
|
-
* @example
|
|
2909
|
-
* const [updateMovethewheelsOrderStatusMutation, { data, loading, error }] = useUpdateMovethewheelsOrderStatusMutation({
|
|
2910
|
-
* variables: {
|
|
2911
|
-
* id: // value for 'id'
|
|
2912
|
-
* input: // value for 'input'
|
|
2913
|
-
* },
|
|
2914
|
-
* });
|
|
2915
|
-
*/
|
|
2916
|
-
export declare function useUpdateMovethewheelsOrderStatusMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateMovethewheelsOrderStatusMutation, Types.UpdateMovethewheelsOrderStatusMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateMovethewheelsOrderStatusMutation, any, Apollo.ApolloCache>;
|
|
2917
|
-
export type UpdateMovethewheelsOrderStatusMutationHookResult = ReturnType<typeof useUpdateMovethewheelsOrderStatusMutation>;
|
|
2918
|
-
export type UpdateMovethewheelsOrderStatusMutationResult = Apollo.MutationResult<Types.UpdateMovethewheelsOrderStatusMutation>;
|
|
2919
|
-
export type UpdateMovethewheelsOrderStatusMutationOptions = Apollo.BaseMutationOptions<Types.UpdateMovethewheelsOrderStatusMutation, Types.UpdateMovethewheelsOrderStatusMutationVariables>;
|
|
2920
|
-
export declare const DeleteMovethewheelsOrderDocument: Apollo.DocumentNode;
|
|
2921
|
-
export type DeleteMovethewheelsOrderMutationFn = Apollo.MutationFunction<Types.DeleteMovethewheelsOrderMutation, Types.DeleteMovethewheelsOrderMutationVariables>;
|
|
2922
|
-
/**
|
|
2923
|
-
* __useDeleteMovethewheelsOrderMutation__
|
|
2924
|
-
*
|
|
2925
|
-
* To run a mutation, you first call `useDeleteMovethewheelsOrderMutation` within a React component and pass it any options that fit your needs.
|
|
2926
|
-
* When your component renders, `useDeleteMovethewheelsOrderMutation` returns a tuple that includes:
|
|
2927
|
-
* - A mutate function that you can call at any time to execute the mutation
|
|
2928
|
-
* - An object with fields that represent the current status of the mutation's execution
|
|
2929
|
-
*
|
|
2930
|
-
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
2931
|
-
*
|
|
2932
|
-
* @example
|
|
2933
|
-
* const [deleteMovethewheelsOrderMutation, { data, loading, error }] = useDeleteMovethewheelsOrderMutation({
|
|
2934
|
-
* variables: {
|
|
2935
|
-
* id: // value for 'id'
|
|
2936
|
-
* },
|
|
2937
|
-
* });
|
|
2938
|
-
*/
|
|
2939
|
-
export declare function useDeleteMovethewheelsOrderMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteMovethewheelsOrderMutation, Types.DeleteMovethewheelsOrderMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteMovethewheelsOrderMutation, any, Apollo.ApolloCache>;
|
|
2940
|
-
export type DeleteMovethewheelsOrderMutationHookResult = ReturnType<typeof useDeleteMovethewheelsOrderMutation>;
|
|
2941
|
-
export type DeleteMovethewheelsOrderMutationResult = Apollo.MutationResult<Types.DeleteMovethewheelsOrderMutation>;
|
|
2942
|
-
export type DeleteMovethewheelsOrderMutationOptions = Apollo.BaseMutationOptions<Types.DeleteMovethewheelsOrderMutation, Types.DeleteMovethewheelsOrderMutationVariables>;
|
|
2943
|
-
export declare const GetMovethewheelsDashboardDocument: Apollo.DocumentNode;
|
|
2944
|
-
/**
|
|
2945
|
-
* __useGetMovethewheelsDashboardQuery__
|
|
2946
|
-
*
|
|
2947
|
-
* To run a query within a React component, call `useGetMovethewheelsDashboardQuery` and pass it any options that fit your needs.
|
|
2948
|
-
* When your component renders, `useGetMovethewheelsDashboardQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2949
|
-
* you can use to render your UI.
|
|
2950
|
-
*
|
|
2951
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
2952
|
-
*
|
|
2953
|
-
* @example
|
|
2954
|
-
* const { data, loading, error } = useGetMovethewheelsDashboardQuery({
|
|
2955
|
-
* variables: {
|
|
2956
|
-
* },
|
|
2957
|
-
* });
|
|
2958
|
-
*/
|
|
2959
|
-
export declare function useGetMovethewheelsDashboardQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables, "empty" | "complete" | "streaming", Types.GetMovethewheelsDashboardQueryVariables>;
|
|
2960
|
-
export declare function useGetMovethewheelsDashboardLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables, "empty" | "complete" | "streaming">;
|
|
2961
|
-
export declare function useGetMovethewheelsDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables>;
|
|
2962
|
-
export declare function useGetMovethewheelsDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsDashboardQuery | undefined, Types.GetMovethewheelsDashboardQueryVariables>;
|
|
2963
|
-
export type GetMovethewheelsDashboardQueryHookResult = ReturnType<typeof useGetMovethewheelsDashboardQuery>;
|
|
2964
|
-
export type GetMovethewheelsDashboardLazyQueryHookResult = ReturnType<typeof useGetMovethewheelsDashboardLazyQuery>;
|
|
2965
|
-
export type GetMovethewheelsDashboardSuspenseQueryHookResult = ReturnType<typeof useGetMovethewheelsDashboardSuspenseQuery>;
|
|
2966
|
-
export type GetMovethewheelsDashboardQueryResult = Apollo.QueryResult<Types.GetMovethewheelsDashboardQuery, Types.GetMovethewheelsDashboardQueryVariables>;
|
|
2967
|
-
export declare const GetAssistantInsightsDocument: Apollo.DocumentNode;
|
|
2968
|
-
/**
|
|
2969
|
-
* __useGetAssistantInsightsQuery__
|
|
2970
|
-
*
|
|
2971
|
-
* To run a query within a React component, call `useGetAssistantInsightsQuery` and pass it any options that fit your needs.
|
|
2972
|
-
* When your component renders, `useGetAssistantInsightsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
2973
|
-
* you can use to render your UI.
|
|
2974
|
-
*
|
|
2975
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
2976
|
-
*
|
|
2977
|
-
* @example
|
|
2978
|
-
* const { data, loading, error } = useGetAssistantInsightsQuery({
|
|
2979
|
-
* variables: {
|
|
2980
|
-
* question: // value for 'question'
|
|
2981
|
-
* },
|
|
2982
|
-
* });
|
|
2983
|
-
*/
|
|
2984
|
-
export declare function useGetAssistantInsightsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables> & ({
|
|
2985
|
-
variables: Types.GetAssistantInsightsQueryVariables;
|
|
2986
|
-
skip?: boolean;
|
|
2987
|
-
} | {
|
|
2988
|
-
skip: boolean;
|
|
2989
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables, "empty" | "complete" | "streaming", Types.GetAssistantInsightsQueryVariables>;
|
|
2990
|
-
export declare function useGetAssistantInsightsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables, "empty" | "complete" | "streaming">;
|
|
2991
|
-
export declare function useGetAssistantInsightsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables>;
|
|
2992
|
-
export declare function useGetAssistantInsightsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAssistantInsightsQuery | undefined, Types.GetAssistantInsightsQueryVariables>;
|
|
2993
|
-
export type GetAssistantInsightsQueryHookResult = ReturnType<typeof useGetAssistantInsightsQuery>;
|
|
2994
|
-
export type GetAssistantInsightsLazyQueryHookResult = ReturnType<typeof useGetAssistantInsightsLazyQuery>;
|
|
2995
|
-
export type GetAssistantInsightsSuspenseQueryHookResult = ReturnType<typeof useGetAssistantInsightsSuspenseQuery>;
|
|
2996
|
-
export type GetAssistantInsightsQueryResult = Apollo.QueryResult<Types.GetAssistantInsightsQuery, Types.GetAssistantInsightsQueryVariables>;
|
|
2997
|
-
export declare const ListCustomersDocument: Apollo.DocumentNode;
|
|
2998
|
-
/**
|
|
2999
|
-
* __useListCustomersQuery__
|
|
3000
|
-
*
|
|
3001
|
-
* To run a query within a React component, call `useListCustomersQuery` and pass it any options that fit your needs.
|
|
3002
|
-
* When your component renders, `useListCustomersQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3003
|
-
* you can use to render your UI.
|
|
3004
|
-
*
|
|
3005
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3006
|
-
*
|
|
3007
|
-
* @example
|
|
3008
|
-
* const { data, loading, error } = useListCustomersQuery({
|
|
3009
|
-
* variables: {
|
|
3010
|
-
* filter: // value for 'filter'
|
|
3011
|
-
* pagination: // value for 'pagination'
|
|
3012
|
-
* },
|
|
3013
|
-
* });
|
|
3014
|
-
*/
|
|
3015
|
-
export declare function useListCustomersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListCustomersQuery, Types.ListCustomersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListCustomersQuery, Types.ListCustomersQueryVariables, "empty" | "complete" | "streaming", Types.ListCustomersQueryVariables>;
|
|
3016
|
-
export declare function useListCustomersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListCustomersQuery, Types.ListCustomersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListCustomersQuery, Types.ListCustomersQueryVariables, "empty" | "complete" | "streaming">;
|
|
3017
|
-
export declare function useListCustomersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListCustomersQuery, Types.ListCustomersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListCustomersQuery, Types.ListCustomersQueryVariables>;
|
|
3018
|
-
export declare function useListCustomersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListCustomersQuery, Types.ListCustomersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListCustomersQuery | undefined, Types.ListCustomersQueryVariables>;
|
|
3019
|
-
export type ListCustomersQueryHookResult = ReturnType<typeof useListCustomersQuery>;
|
|
3020
|
-
export type ListCustomersLazyQueryHookResult = ReturnType<typeof useListCustomersLazyQuery>;
|
|
3021
|
-
export type ListCustomersSuspenseQueryHookResult = ReturnType<typeof useListCustomersSuspenseQuery>;
|
|
3022
|
-
export type ListCustomersQueryResult = Apollo.QueryResult<Types.ListCustomersQuery, Types.ListCustomersQueryVariables>;
|
|
3023
|
-
export declare const GetCustomerDocument: Apollo.DocumentNode;
|
|
3024
|
-
/**
|
|
3025
|
-
* __useGetCustomerQuery__
|
|
3026
|
-
*
|
|
3027
|
-
* To run a query within a React component, call `useGetCustomerQuery` and pass it any options that fit your needs.
|
|
3028
|
-
* When your component renders, `useGetCustomerQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3029
|
-
* you can use to render your UI.
|
|
3030
|
-
*
|
|
3031
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3032
|
-
*
|
|
3033
|
-
* @example
|
|
3034
|
-
* const { data, loading, error } = useGetCustomerQuery({
|
|
3035
|
-
* variables: {
|
|
3036
|
-
* id: // value for 'id'
|
|
3037
|
-
* },
|
|
3038
|
-
* });
|
|
3039
|
-
*/
|
|
3040
|
-
export declare function useGetCustomerQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCustomerQuery, Types.GetCustomerQueryVariables> & ({
|
|
3041
|
-
variables: Types.GetCustomerQueryVariables;
|
|
3042
|
-
skip?: boolean;
|
|
3043
|
-
} | {
|
|
3044
|
-
skip: boolean;
|
|
3045
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetCustomerQuery, Types.GetCustomerQueryVariables, "empty" | "complete" | "streaming", Types.GetCustomerQueryVariables>;
|
|
3046
|
-
export declare function useGetCustomerLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCustomerQuery, Types.GetCustomerQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetCustomerQuery, Types.GetCustomerQueryVariables, "empty" | "complete" | "streaming">;
|
|
3047
|
-
export declare function useGetCustomerSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCustomerQuery, Types.GetCustomerQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCustomerQuery, Types.GetCustomerQueryVariables>;
|
|
3048
|
-
export declare function useGetCustomerSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCustomerQuery, Types.GetCustomerQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCustomerQuery | undefined, Types.GetCustomerQueryVariables>;
|
|
3049
|
-
export type GetCustomerQueryHookResult = ReturnType<typeof useGetCustomerQuery>;
|
|
3050
|
-
export type GetCustomerLazyQueryHookResult = ReturnType<typeof useGetCustomerLazyQuery>;
|
|
3051
|
-
export type GetCustomerSuspenseQueryHookResult = ReturnType<typeof useGetCustomerSuspenseQuery>;
|
|
3052
|
-
export type GetCustomerQueryResult = Apollo.QueryResult<Types.GetCustomerQuery, Types.GetCustomerQueryVariables>;
|
|
3053
|
-
export declare const ListProductsDocument: Apollo.DocumentNode;
|
|
3054
|
-
/**
|
|
3055
|
-
* __useListProductsQuery__
|
|
3056
|
-
*
|
|
3057
|
-
* To run a query within a React component, call `useListProductsQuery` and pass it any options that fit your needs.
|
|
3058
|
-
* When your component renders, `useListProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3059
|
-
* you can use to render your UI.
|
|
3060
|
-
*
|
|
3061
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3062
|
-
*
|
|
3063
|
-
* @example
|
|
3064
|
-
* const { data, loading, error } = useListProductsQuery({
|
|
3065
|
-
* variables: {
|
|
3066
|
-
* filter: // value for 'filter'
|
|
3067
|
-
* pagination: // value for 'pagination'
|
|
3068
|
-
* },
|
|
3069
|
-
* });
|
|
3070
|
-
*/
|
|
3071
|
-
export declare function useListProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListProductsQuery, Types.ListProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListProductsQuery, Types.ListProductsQueryVariables, "empty" | "complete" | "streaming", Types.ListProductsQueryVariables>;
|
|
3072
|
-
export declare function useListProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListProductsQuery, Types.ListProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListProductsQuery, Types.ListProductsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3073
|
-
export declare function useListProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListProductsQuery, Types.ListProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListProductsQuery, Types.ListProductsQueryVariables>;
|
|
3074
|
-
export declare function useListProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListProductsQuery, Types.ListProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListProductsQuery | undefined, Types.ListProductsQueryVariables>;
|
|
3075
|
-
export type ListProductsQueryHookResult = ReturnType<typeof useListProductsQuery>;
|
|
3076
|
-
export type ListProductsLazyQueryHookResult = ReturnType<typeof useListProductsLazyQuery>;
|
|
3077
|
-
export type ListProductsSuspenseQueryHookResult = ReturnType<typeof useListProductsSuspenseQuery>;
|
|
3078
|
-
export type ListProductsQueryResult = Apollo.QueryResult<Types.ListProductsQuery, Types.ListProductsQueryVariables>;
|
|
3079
|
-
export declare const GetProductDocument: Apollo.DocumentNode;
|
|
3080
|
-
/**
|
|
3081
|
-
* __useGetProductQuery__
|
|
3082
|
-
*
|
|
3083
|
-
* To run a query within a React component, call `useGetProductQuery` and pass it any options that fit your needs.
|
|
3084
|
-
* When your component renders, `useGetProductQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3085
|
-
* you can use to render your UI.
|
|
3086
|
-
*
|
|
3087
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3088
|
-
*
|
|
3089
|
-
* @example
|
|
3090
|
-
* const { data, loading, error } = useGetProductQuery({
|
|
3091
|
-
* variables: {
|
|
3092
|
-
* id: // value for 'id'
|
|
3093
|
-
* },
|
|
3094
|
-
* });
|
|
3095
|
-
*/
|
|
3096
|
-
export declare function useGetProductQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables> & ({
|
|
3097
|
-
variables: Types.GetProductQueryVariables;
|
|
3098
|
-
skip?: boolean;
|
|
3099
|
-
} | {
|
|
3100
|
-
skip: boolean;
|
|
3101
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetProductQuery, Types.GetProductQueryVariables, "empty" | "complete" | "streaming", Types.GetProductQueryVariables>;
|
|
3102
|
-
export declare function useGetProductLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetProductQuery, Types.GetProductQueryVariables, "empty" | "complete" | "streaming">;
|
|
3103
|
-
export declare function useGetProductSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductQuery, Types.GetProductQueryVariables>;
|
|
3104
|
-
export declare function useGetProductSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetProductQuery, Types.GetProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetProductQuery | undefined, Types.GetProductQueryVariables>;
|
|
3105
|
-
export type GetProductQueryHookResult = ReturnType<typeof useGetProductQuery>;
|
|
3106
|
-
export type GetProductLazyQueryHookResult = ReturnType<typeof useGetProductLazyQuery>;
|
|
3107
|
-
export type GetProductSuspenseQueryHookResult = ReturnType<typeof useGetProductSuspenseQuery>;
|
|
3108
|
-
export type GetProductQueryResult = Apollo.QueryResult<Types.GetProductQuery, Types.GetProductQueryVariables>;
|
|
3109
|
-
export declare const ListVehiclesDocument: Apollo.DocumentNode;
|
|
3110
|
-
/**
|
|
3111
|
-
* __useListVehiclesQuery__
|
|
3112
|
-
*
|
|
3113
|
-
* To run a query within a React component, call `useListVehiclesQuery` and pass it any options that fit your needs.
|
|
3114
|
-
* When your component renders, `useListVehiclesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3115
|
-
* you can use to render your UI.
|
|
3116
|
-
*
|
|
3117
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3118
|
-
*
|
|
3119
|
-
* @example
|
|
3120
|
-
* const { data, loading, error } = useListVehiclesQuery({
|
|
3121
|
-
* variables: {
|
|
3122
|
-
* filter: // value for 'filter'
|
|
3123
|
-
* pagination: // value for 'pagination'
|
|
3124
|
-
* },
|
|
3125
|
-
* });
|
|
3126
|
-
*/
|
|
3127
|
-
export declare function useListVehiclesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables, "empty" | "complete" | "streaming", Types.ListVehiclesQueryVariables>;
|
|
3128
|
-
export declare function useListVehiclesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables, "empty" | "complete" | "streaming">;
|
|
3129
|
-
export declare function useListVehiclesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables>;
|
|
3130
|
-
export declare function useListVehiclesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListVehiclesQuery | undefined, Types.ListVehiclesQueryVariables>;
|
|
3131
|
-
export type ListVehiclesQueryHookResult = ReturnType<typeof useListVehiclesQuery>;
|
|
3132
|
-
export type ListVehiclesLazyQueryHookResult = ReturnType<typeof useListVehiclesLazyQuery>;
|
|
3133
|
-
export type ListVehiclesSuspenseQueryHookResult = ReturnType<typeof useListVehiclesSuspenseQuery>;
|
|
3134
|
-
export type ListVehiclesQueryResult = Apollo.QueryResult<Types.ListVehiclesQuery, Types.ListVehiclesQueryVariables>;
|
|
3135
|
-
export declare const GetVehicleDocument: Apollo.DocumentNode;
|
|
3136
|
-
/**
|
|
3137
|
-
* __useGetVehicleQuery__
|
|
3138
|
-
*
|
|
3139
|
-
* To run a query within a React component, call `useGetVehicleQuery` and pass it any options that fit your needs.
|
|
3140
|
-
* When your component renders, `useGetVehicleQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3141
|
-
* you can use to render your UI.
|
|
3142
|
-
*
|
|
3143
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3144
|
-
*
|
|
3145
|
-
* @example
|
|
3146
|
-
* const { data, loading, error } = useGetVehicleQuery({
|
|
3147
|
-
* variables: {
|
|
3148
|
-
* id: // value for 'id'
|
|
3149
|
-
* },
|
|
3150
|
-
* });
|
|
3151
|
-
*/
|
|
3152
|
-
export declare function useGetVehicleQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetVehicleQuery, Types.GetVehicleQueryVariables> & ({
|
|
3153
|
-
variables: Types.GetVehicleQueryVariables;
|
|
3154
|
-
skip?: boolean;
|
|
3155
|
-
} | {
|
|
3156
|
-
skip: boolean;
|
|
3157
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetVehicleQuery, Types.GetVehicleQueryVariables, "empty" | "complete" | "streaming", Types.GetVehicleQueryVariables>;
|
|
3158
|
-
export declare function useGetVehicleLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetVehicleQuery, Types.GetVehicleQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetVehicleQuery, Types.GetVehicleQueryVariables, "empty" | "complete" | "streaming">;
|
|
3159
|
-
export declare function useGetVehicleSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetVehicleQuery, Types.GetVehicleQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetVehicleQuery, Types.GetVehicleQueryVariables>;
|
|
3160
|
-
export declare function useGetVehicleSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetVehicleQuery, Types.GetVehicleQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetVehicleQuery | undefined, Types.GetVehicleQueryVariables>;
|
|
3161
|
-
export type GetVehicleQueryHookResult = ReturnType<typeof useGetVehicleQuery>;
|
|
3162
|
-
export type GetVehicleLazyQueryHookResult = ReturnType<typeof useGetVehicleLazyQuery>;
|
|
3163
|
-
export type GetVehicleSuspenseQueryHookResult = ReturnType<typeof useGetVehicleSuspenseQuery>;
|
|
3164
|
-
export type GetVehicleQueryResult = Apollo.QueryResult<Types.GetVehicleQuery, Types.GetVehicleQueryVariables>;
|
|
3165
|
-
export declare const ListDriversDocument: Apollo.DocumentNode;
|
|
3166
|
-
/**
|
|
3167
|
-
* __useListDriversQuery__
|
|
3168
|
-
*
|
|
3169
|
-
* To run a query within a React component, call `useListDriversQuery` and pass it any options that fit your needs.
|
|
3170
|
-
* When your component renders, `useListDriversQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3171
|
-
* you can use to render your UI.
|
|
3172
|
-
*
|
|
3173
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3174
|
-
*
|
|
3175
|
-
* @example
|
|
3176
|
-
* const { data, loading, error } = useListDriversQuery({
|
|
3177
|
-
* variables: {
|
|
3178
|
-
* filter: // value for 'filter'
|
|
3179
|
-
* pagination: // value for 'pagination'
|
|
3180
|
-
* },
|
|
3181
|
-
* });
|
|
3182
|
-
*/
|
|
3183
|
-
export declare function useListDriversQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListDriversQuery, Types.ListDriversQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListDriversQuery, Types.ListDriversQueryVariables, "empty" | "complete" | "streaming", Types.ListDriversQueryVariables>;
|
|
3184
|
-
export declare function useListDriversLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListDriversQuery, Types.ListDriversQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListDriversQuery, Types.ListDriversQueryVariables, "empty" | "complete" | "streaming">;
|
|
3185
|
-
export declare function useListDriversSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListDriversQuery, Types.ListDriversQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListDriversQuery, Types.ListDriversQueryVariables>;
|
|
3186
|
-
export declare function useListDriversSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListDriversQuery, Types.ListDriversQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListDriversQuery | undefined, Types.ListDriversQueryVariables>;
|
|
3187
|
-
export type ListDriversQueryHookResult = ReturnType<typeof useListDriversQuery>;
|
|
3188
|
-
export type ListDriversLazyQueryHookResult = ReturnType<typeof useListDriversLazyQuery>;
|
|
3189
|
-
export type ListDriversSuspenseQueryHookResult = ReturnType<typeof useListDriversSuspenseQuery>;
|
|
3190
|
-
export type ListDriversQueryResult = Apollo.QueryResult<Types.ListDriversQuery, Types.ListDriversQueryVariables>;
|
|
3191
|
-
export declare const GetDriverDocument: Apollo.DocumentNode;
|
|
3192
|
-
/**
|
|
3193
|
-
* __useGetDriverQuery__
|
|
3194
|
-
*
|
|
3195
|
-
* To run a query within a React component, call `useGetDriverQuery` and pass it any options that fit your needs.
|
|
3196
|
-
* When your component renders, `useGetDriverQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3197
|
-
* you can use to render your UI.
|
|
3198
|
-
*
|
|
3199
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3200
|
-
*
|
|
3201
|
-
* @example
|
|
3202
|
-
* const { data, loading, error } = useGetDriverQuery({
|
|
3203
|
-
* variables: {
|
|
3204
|
-
* id: // value for 'id'
|
|
3205
|
-
* },
|
|
3206
|
-
* });
|
|
3207
|
-
*/
|
|
3208
|
-
export declare function useGetDriverQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetDriverQuery, Types.GetDriverQueryVariables> & ({
|
|
3209
|
-
variables: Types.GetDriverQueryVariables;
|
|
3210
|
-
skip?: boolean;
|
|
3211
|
-
} | {
|
|
3212
|
-
skip: boolean;
|
|
3213
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetDriverQuery, Types.GetDriverQueryVariables, "empty" | "complete" | "streaming", Types.GetDriverQueryVariables>;
|
|
3214
|
-
export declare function useGetDriverLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDriverQuery, Types.GetDriverQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDriverQuery, Types.GetDriverQueryVariables, "empty" | "complete" | "streaming">;
|
|
3215
|
-
export declare function useGetDriverSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDriverQuery, Types.GetDriverQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDriverQuery, Types.GetDriverQueryVariables>;
|
|
3216
|
-
export declare function useGetDriverSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDriverQuery, Types.GetDriverQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDriverQuery | undefined, Types.GetDriverQueryVariables>;
|
|
3217
|
-
export type GetDriverQueryHookResult = ReturnType<typeof useGetDriverQuery>;
|
|
3218
|
-
export type GetDriverLazyQueryHookResult = ReturnType<typeof useGetDriverLazyQuery>;
|
|
3219
|
-
export type GetDriverSuspenseQueryHookResult = ReturnType<typeof useGetDriverSuspenseQuery>;
|
|
3220
|
-
export type GetDriverQueryResult = Apollo.QueryResult<Types.GetDriverQuery, Types.GetDriverQueryVariables>;
|
|
3221
|
-
export declare const ListWarehousesDocument: Apollo.DocumentNode;
|
|
3222
|
-
/**
|
|
3223
|
-
* __useListWarehousesQuery__
|
|
3224
|
-
*
|
|
3225
|
-
* To run a query within a React component, call `useListWarehousesQuery` and pass it any options that fit your needs.
|
|
3226
|
-
* When your component renders, `useListWarehousesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3227
|
-
* you can use to render your UI.
|
|
3228
|
-
*
|
|
3229
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3230
|
-
*
|
|
3231
|
-
* @example
|
|
3232
|
-
* const { data, loading, error } = useListWarehousesQuery({
|
|
3233
|
-
* variables: {
|
|
3234
|
-
* filter: // value for 'filter'
|
|
3235
|
-
* pagination: // value for 'pagination'
|
|
3236
|
-
* },
|
|
3237
|
-
* });
|
|
3238
|
-
*/
|
|
3239
|
-
export declare function useListWarehousesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables, "empty" | "complete" | "streaming", Types.ListWarehousesQueryVariables>;
|
|
3240
|
-
export declare function useListWarehousesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables, "empty" | "complete" | "streaming">;
|
|
3241
|
-
export declare function useListWarehousesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables>;
|
|
3242
|
-
export declare function useListWarehousesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListWarehousesQuery | undefined, Types.ListWarehousesQueryVariables>;
|
|
3243
|
-
export type ListWarehousesQueryHookResult = ReturnType<typeof useListWarehousesQuery>;
|
|
3244
|
-
export type ListWarehousesLazyQueryHookResult = ReturnType<typeof useListWarehousesLazyQuery>;
|
|
3245
|
-
export type ListWarehousesSuspenseQueryHookResult = ReturnType<typeof useListWarehousesSuspenseQuery>;
|
|
3246
|
-
export type ListWarehousesQueryResult = Apollo.QueryResult<Types.ListWarehousesQuery, Types.ListWarehousesQueryVariables>;
|
|
3247
|
-
export declare const GetWarehouseDocument: Apollo.DocumentNode;
|
|
3248
|
-
/**
|
|
3249
|
-
* __useGetWarehouseQuery__
|
|
3250
|
-
*
|
|
3251
|
-
* To run a query within a React component, call `useGetWarehouseQuery` and pass it any options that fit your needs.
|
|
3252
|
-
* When your component renders, `useGetWarehouseQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3253
|
-
* you can use to render your UI.
|
|
3254
|
-
*
|
|
3255
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3256
|
-
*
|
|
3257
|
-
* @example
|
|
3258
|
-
* const { data, loading, error } = useGetWarehouseQuery({
|
|
3259
|
-
* variables: {
|
|
3260
|
-
* id: // value for 'id'
|
|
3261
|
-
* },
|
|
3262
|
-
* });
|
|
3263
|
-
*/
|
|
3264
|
-
export declare function useGetWarehouseQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables> & ({
|
|
3265
|
-
variables: Types.GetWarehouseQueryVariables;
|
|
3266
|
-
skip?: boolean;
|
|
3267
|
-
} | {
|
|
3268
|
-
skip: boolean;
|
|
3269
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables, "empty" | "complete" | "streaming", Types.GetWarehouseQueryVariables>;
|
|
3270
|
-
export declare function useGetWarehouseLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables, "empty" | "complete" | "streaming">;
|
|
3271
|
-
export declare function useGetWarehouseSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables>;
|
|
3272
|
-
export declare function useGetWarehouseSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetWarehouseQuery | undefined, Types.GetWarehouseQueryVariables>;
|
|
3273
|
-
export type GetWarehouseQueryHookResult = ReturnType<typeof useGetWarehouseQuery>;
|
|
3274
|
-
export type GetWarehouseLazyQueryHookResult = ReturnType<typeof useGetWarehouseLazyQuery>;
|
|
3275
|
-
export type GetWarehouseSuspenseQueryHookResult = ReturnType<typeof useGetWarehouseSuspenseQuery>;
|
|
3276
|
-
export type GetWarehouseQueryResult = Apollo.QueryResult<Types.GetWarehouseQuery, Types.GetWarehouseQueryVariables>;
|
|
3277
|
-
export declare const ListInventoryItemsDocument: Apollo.DocumentNode;
|
|
3278
|
-
/**
|
|
3279
|
-
* __useListInventoryItemsQuery__
|
|
3280
|
-
*
|
|
3281
|
-
* To run a query within a React component, call `useListInventoryItemsQuery` and pass it any options that fit your needs.
|
|
3282
|
-
* When your component renders, `useListInventoryItemsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3283
|
-
* you can use to render your UI.
|
|
3284
|
-
*
|
|
3285
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3286
|
-
*
|
|
3287
|
-
* @example
|
|
3288
|
-
* const { data, loading, error } = useListInventoryItemsQuery({
|
|
3289
|
-
* variables: {
|
|
3290
|
-
* filter: // value for 'filter'
|
|
3291
|
-
* pagination: // value for 'pagination'
|
|
3292
|
-
* },
|
|
3293
|
-
* });
|
|
3294
|
-
*/
|
|
3295
|
-
export declare function useListInventoryItemsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables, "empty" | "complete" | "streaming", Types.ListInventoryItemsQueryVariables>;
|
|
3296
|
-
export declare function useListInventoryItemsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3297
|
-
export declare function useListInventoryItemsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables>;
|
|
3298
|
-
export declare function useListInventoryItemsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListInventoryItemsQuery | undefined, Types.ListInventoryItemsQueryVariables>;
|
|
3299
|
-
export type ListInventoryItemsQueryHookResult = ReturnType<typeof useListInventoryItemsQuery>;
|
|
3300
|
-
export type ListInventoryItemsLazyQueryHookResult = ReturnType<typeof useListInventoryItemsLazyQuery>;
|
|
3301
|
-
export type ListInventoryItemsSuspenseQueryHookResult = ReturnType<typeof useListInventoryItemsSuspenseQuery>;
|
|
3302
|
-
export type ListInventoryItemsQueryResult = Apollo.QueryResult<Types.ListInventoryItemsQuery, Types.ListInventoryItemsQueryVariables>;
|
|
3303
|
-
export declare const GetInventoryStatsDocument: Apollo.DocumentNode;
|
|
3304
|
-
/**
|
|
3305
|
-
* __useGetInventoryStatsQuery__
|
|
3306
|
-
*
|
|
3307
|
-
* To run a query within a React component, call `useGetInventoryStatsQuery` and pass it any options that fit your needs.
|
|
3308
|
-
* When your component renders, `useGetInventoryStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3309
|
-
* you can use to render your UI.
|
|
3310
|
-
*
|
|
3311
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3312
|
-
*
|
|
3313
|
-
* @example
|
|
3314
|
-
* const { data, loading, error } = useGetInventoryStatsQuery({
|
|
3315
|
-
* variables: {
|
|
3316
|
-
* },
|
|
3317
|
-
* });
|
|
3318
|
-
*/
|
|
3319
|
-
export declare function useGetInventoryStatsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables, "empty" | "complete" | "streaming", Types.GetInventoryStatsQueryVariables>;
|
|
3320
|
-
export declare function useGetInventoryStatsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3321
|
-
export declare function useGetInventoryStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables>;
|
|
3322
|
-
export declare function useGetInventoryStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInventoryStatsQuery | undefined, Types.GetInventoryStatsQueryVariables>;
|
|
3323
|
-
export type GetInventoryStatsQueryHookResult = ReturnType<typeof useGetInventoryStatsQuery>;
|
|
3324
|
-
export type GetInventoryStatsLazyQueryHookResult = ReturnType<typeof useGetInventoryStatsLazyQuery>;
|
|
3325
|
-
export type GetInventoryStatsSuspenseQueryHookResult = ReturnType<typeof useGetInventoryStatsSuspenseQuery>;
|
|
3326
|
-
export type GetInventoryStatsQueryResult = Apollo.QueryResult<Types.GetInventoryStatsQuery, Types.GetInventoryStatsQueryVariables>;
|
|
3327
|
-
export declare const ListRoutesDocument: Apollo.DocumentNode;
|
|
3328
|
-
/**
|
|
3329
|
-
* __useListRoutesQuery__
|
|
3330
|
-
*
|
|
3331
|
-
* To run a query within a React component, call `useListRoutesQuery` and pass it any options that fit your needs.
|
|
3332
|
-
* When your component renders, `useListRoutesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3333
|
-
* you can use to render your UI.
|
|
3334
|
-
*
|
|
3335
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3336
|
-
*
|
|
3337
|
-
* @example
|
|
3338
|
-
* const { data, loading, error } = useListRoutesQuery({
|
|
3339
|
-
* variables: {
|
|
3340
|
-
* filter: // value for 'filter'
|
|
3341
|
-
* pagination: // value for 'pagination'
|
|
3342
|
-
* },
|
|
3343
|
-
* });
|
|
3344
|
-
*/
|
|
3345
|
-
export declare function useListRoutesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListRoutesQuery, Types.ListRoutesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListRoutesQuery, Types.ListRoutesQueryVariables, "empty" | "complete" | "streaming", Types.ListRoutesQueryVariables>;
|
|
3346
|
-
export declare function useListRoutesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListRoutesQuery, Types.ListRoutesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListRoutesQuery, Types.ListRoutesQueryVariables, "empty" | "complete" | "streaming">;
|
|
3347
|
-
export declare function useListRoutesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListRoutesQuery, Types.ListRoutesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListRoutesQuery, Types.ListRoutesQueryVariables>;
|
|
3348
|
-
export declare function useListRoutesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListRoutesQuery, Types.ListRoutesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListRoutesQuery | undefined, Types.ListRoutesQueryVariables>;
|
|
3349
|
-
export type ListRoutesQueryHookResult = ReturnType<typeof useListRoutesQuery>;
|
|
3350
|
-
export type ListRoutesLazyQueryHookResult = ReturnType<typeof useListRoutesLazyQuery>;
|
|
3351
|
-
export type ListRoutesSuspenseQueryHookResult = ReturnType<typeof useListRoutesSuspenseQuery>;
|
|
3352
|
-
export type ListRoutesQueryResult = Apollo.QueryResult<Types.ListRoutesQuery, Types.ListRoutesQueryVariables>;
|
|
3353
|
-
export declare const GetRouteDocument: Apollo.DocumentNode;
|
|
3354
|
-
/**
|
|
3355
|
-
* __useGetRouteQuery__
|
|
3356
|
-
*
|
|
3357
|
-
* To run a query within a React component, call `useGetRouteQuery` and pass it any options that fit your needs.
|
|
3358
|
-
* When your component renders, `useGetRouteQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3359
|
-
* you can use to render your UI.
|
|
3360
|
-
*
|
|
3361
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3362
|
-
*
|
|
3363
|
-
* @example
|
|
3364
|
-
* const { data, loading, error } = useGetRouteQuery({
|
|
3365
|
-
* variables: {
|
|
3366
|
-
* id: // value for 'id'
|
|
3367
|
-
* },
|
|
3368
|
-
* });
|
|
3369
|
-
*/
|
|
3370
|
-
export declare function useGetRouteQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetRouteQuery, Types.GetRouteQueryVariables> & ({
|
|
3371
|
-
variables: Types.GetRouteQueryVariables;
|
|
3372
|
-
skip?: boolean;
|
|
3373
|
-
} | {
|
|
3374
|
-
skip: boolean;
|
|
3375
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetRouteQuery, Types.GetRouteQueryVariables, "empty" | "complete" | "streaming", Types.GetRouteQueryVariables>;
|
|
3376
|
-
export declare function useGetRouteLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetRouteQuery, Types.GetRouteQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetRouteQuery, Types.GetRouteQueryVariables, "empty" | "complete" | "streaming">;
|
|
3377
|
-
export declare function useGetRouteSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRouteQuery, Types.GetRouteQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRouteQuery, Types.GetRouteQueryVariables>;
|
|
3378
|
-
export declare function useGetRouteSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRouteQuery, Types.GetRouteQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRouteQuery | undefined, Types.GetRouteQueryVariables>;
|
|
3379
|
-
export type GetRouteQueryHookResult = ReturnType<typeof useGetRouteQuery>;
|
|
3380
|
-
export type GetRouteLazyQueryHookResult = ReturnType<typeof useGetRouteLazyQuery>;
|
|
3381
|
-
export type GetRouteSuspenseQueryHookResult = ReturnType<typeof useGetRouteSuspenseQuery>;
|
|
3382
|
-
export type GetRouteQueryResult = Apollo.QueryResult<Types.GetRouteQuery, Types.GetRouteQueryVariables>;
|
|
3383
|
-
export declare const ListShipmentsDocument: Apollo.DocumentNode;
|
|
3384
|
-
/**
|
|
3385
|
-
* __useListShipmentsQuery__
|
|
3386
|
-
*
|
|
3387
|
-
* To run a query within a React component, call `useListShipmentsQuery` and pass it any options that fit your needs.
|
|
3388
|
-
* When your component renders, `useListShipmentsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3389
|
-
* you can use to render your UI.
|
|
3390
|
-
*
|
|
3391
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3392
|
-
*
|
|
3393
|
-
* @example
|
|
3394
|
-
* const { data, loading, error } = useListShipmentsQuery({
|
|
3395
|
-
* variables: {
|
|
3396
|
-
* filter: // value for 'filter'
|
|
3397
|
-
* pagination: // value for 'pagination'
|
|
3398
|
-
* },
|
|
3399
|
-
* });
|
|
3400
|
-
*/
|
|
3401
|
-
export declare function useListShipmentsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables, "empty" | "complete" | "streaming", Types.ListShipmentsQueryVariables>;
|
|
3402
|
-
export declare function useListShipmentsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3403
|
-
export declare function useListShipmentsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables>;
|
|
3404
|
-
export declare function useListShipmentsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListShipmentsQuery | undefined, Types.ListShipmentsQueryVariables>;
|
|
3405
|
-
export type ListShipmentsQueryHookResult = ReturnType<typeof useListShipmentsQuery>;
|
|
3406
|
-
export type ListShipmentsLazyQueryHookResult = ReturnType<typeof useListShipmentsLazyQuery>;
|
|
3407
|
-
export type ListShipmentsSuspenseQueryHookResult = ReturnType<typeof useListShipmentsSuspenseQuery>;
|
|
3408
|
-
export type ListShipmentsQueryResult = Apollo.QueryResult<Types.ListShipmentsQuery, Types.ListShipmentsQueryVariables>;
|
|
3409
|
-
export declare const GetShipmentDocument: Apollo.DocumentNode;
|
|
3410
|
-
/**
|
|
3411
|
-
* __useGetShipmentQuery__
|
|
3412
|
-
*
|
|
3413
|
-
* To run a query within a React component, call `useGetShipmentQuery` and pass it any options that fit your needs.
|
|
3414
|
-
* When your component renders, `useGetShipmentQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3415
|
-
* you can use to render your UI.
|
|
3416
|
-
*
|
|
3417
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3418
|
-
*
|
|
3419
|
-
* @example
|
|
3420
|
-
* const { data, loading, error } = useGetShipmentQuery({
|
|
3421
|
-
* variables: {
|
|
3422
|
-
* id: // value for 'id'
|
|
3423
|
-
* },
|
|
3424
|
-
* });
|
|
3425
|
-
*/
|
|
3426
|
-
export declare function useGetShipmentQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetShipmentQuery, Types.GetShipmentQueryVariables> & ({
|
|
3427
|
-
variables: Types.GetShipmentQueryVariables;
|
|
3428
|
-
skip?: boolean;
|
|
3429
|
-
} | {
|
|
3430
|
-
skip: boolean;
|
|
3431
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetShipmentQuery, Types.GetShipmentQueryVariables, "empty" | "complete" | "streaming", Types.GetShipmentQueryVariables>;
|
|
3432
|
-
export declare function useGetShipmentLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetShipmentQuery, Types.GetShipmentQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetShipmentQuery, Types.GetShipmentQueryVariables, "empty" | "complete" | "streaming">;
|
|
3433
|
-
export declare function useGetShipmentSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetShipmentQuery, Types.GetShipmentQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetShipmentQuery, Types.GetShipmentQueryVariables>;
|
|
3434
|
-
export declare function useGetShipmentSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetShipmentQuery, Types.GetShipmentQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetShipmentQuery | undefined, Types.GetShipmentQueryVariables>;
|
|
3435
|
-
export type GetShipmentQueryHookResult = ReturnType<typeof useGetShipmentQuery>;
|
|
3436
|
-
export type GetShipmentLazyQueryHookResult = ReturnType<typeof useGetShipmentLazyQuery>;
|
|
3437
|
-
export type GetShipmentSuspenseQueryHookResult = ReturnType<typeof useGetShipmentSuspenseQuery>;
|
|
3438
|
-
export type GetShipmentQueryResult = Apollo.QueryResult<Types.GetShipmentQuery, Types.GetShipmentQueryVariables>;
|
|
3439
|
-
export declare const GetOrderTrackingDocument: Apollo.DocumentNode;
|
|
3440
|
-
/**
|
|
3441
|
-
* __useGetOrderTrackingQuery__
|
|
3442
|
-
*
|
|
3443
|
-
* To run a query within a React component, call `useGetOrderTrackingQuery` and pass it any options that fit your needs.
|
|
3444
|
-
* When your component renders, `useGetOrderTrackingQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3445
|
-
* you can use to render your UI.
|
|
3446
|
-
*
|
|
3447
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3448
|
-
*
|
|
3449
|
-
* @example
|
|
3450
|
-
* const { data, loading, error } = useGetOrderTrackingQuery({
|
|
3451
|
-
* variables: {
|
|
3452
|
-
* orderId: // value for 'orderId'
|
|
3453
|
-
* },
|
|
3454
|
-
* });
|
|
3455
|
-
*/
|
|
3456
|
-
export declare function useGetOrderTrackingQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables> & ({
|
|
3457
|
-
variables: Types.GetOrderTrackingQueryVariables;
|
|
3458
|
-
skip?: boolean;
|
|
3459
|
-
} | {
|
|
3460
|
-
skip: boolean;
|
|
3461
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables, "empty" | "complete" | "streaming", Types.GetOrderTrackingQueryVariables>;
|
|
3462
|
-
export declare function useGetOrderTrackingLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables, "empty" | "complete" | "streaming">;
|
|
3463
|
-
export declare function useGetOrderTrackingSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables>;
|
|
3464
|
-
export declare function useGetOrderTrackingSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetOrderTrackingQuery | undefined, Types.GetOrderTrackingQueryVariables>;
|
|
3465
|
-
export type GetOrderTrackingQueryHookResult = ReturnType<typeof useGetOrderTrackingQuery>;
|
|
3466
|
-
export type GetOrderTrackingLazyQueryHookResult = ReturnType<typeof useGetOrderTrackingLazyQuery>;
|
|
3467
|
-
export type GetOrderTrackingSuspenseQueryHookResult = ReturnType<typeof useGetOrderTrackingSuspenseQuery>;
|
|
3468
|
-
export type GetOrderTrackingQueryResult = Apollo.QueryResult<Types.GetOrderTrackingQuery, Types.GetOrderTrackingQueryVariables>;
|
|
3469
|
-
export declare const GetActiveDeliveriesDocument: Apollo.DocumentNode;
|
|
3470
|
-
/**
|
|
3471
|
-
* __useGetActiveDeliveriesQuery__
|
|
3472
|
-
*
|
|
3473
|
-
* To run a query within a React component, call `useGetActiveDeliveriesQuery` and pass it any options that fit your needs.
|
|
3474
|
-
* When your component renders, `useGetActiveDeliveriesQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3475
|
-
* you can use to render your UI.
|
|
3476
|
-
*
|
|
3477
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3478
|
-
*
|
|
3479
|
-
* @example
|
|
3480
|
-
* const { data, loading, error } = useGetActiveDeliveriesQuery({
|
|
3481
|
-
* variables: {
|
|
3482
|
-
* },
|
|
3483
|
-
* });
|
|
3484
|
-
*/
|
|
3485
|
-
export declare function useGetActiveDeliveriesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables, "empty" | "complete" | "streaming", Types.GetActiveDeliveriesQueryVariables>;
|
|
3486
|
-
export declare function useGetActiveDeliveriesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables, "empty" | "complete" | "streaming">;
|
|
3487
|
-
export declare function useGetActiveDeliveriesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables>;
|
|
3488
|
-
export declare function useGetActiveDeliveriesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveDeliveriesQuery | undefined, Types.GetActiveDeliveriesQueryVariables>;
|
|
3489
|
-
export type GetActiveDeliveriesQueryHookResult = ReturnType<typeof useGetActiveDeliveriesQuery>;
|
|
3490
|
-
export type GetActiveDeliveriesLazyQueryHookResult = ReturnType<typeof useGetActiveDeliveriesLazyQuery>;
|
|
3491
|
-
export type GetActiveDeliveriesSuspenseQueryHookResult = ReturnType<typeof useGetActiveDeliveriesSuspenseQuery>;
|
|
3492
|
-
export type GetActiveDeliveriesQueryResult = Apollo.QueryResult<Types.GetActiveDeliveriesQuery, Types.GetActiveDeliveriesQueryVariables>;
|
|
3493
|
-
export declare const GetTrackingAlertsDocument: Apollo.DocumentNode;
|
|
3494
|
-
/**
|
|
3495
|
-
* __useGetTrackingAlertsQuery__
|
|
3496
|
-
*
|
|
3497
|
-
* To run a query within a React component, call `useGetTrackingAlertsQuery` and pass it any options that fit your needs.
|
|
3498
|
-
* When your component renders, `useGetTrackingAlertsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3499
|
-
* you can use to render your UI.
|
|
3500
|
-
*
|
|
3501
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3502
|
-
*
|
|
3503
|
-
* @example
|
|
3504
|
-
* const { data, loading, error } = useGetTrackingAlertsQuery({
|
|
3505
|
-
* variables: {
|
|
3506
|
-
* },
|
|
3507
|
-
* });
|
|
3508
|
-
*/
|
|
3509
|
-
export declare function useGetTrackingAlertsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables, "empty" | "complete" | "streaming", Types.GetTrackingAlertsQueryVariables>;
|
|
3510
|
-
export declare function useGetTrackingAlertsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3511
|
-
export declare function useGetTrackingAlertsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables>;
|
|
3512
|
-
export declare function useGetTrackingAlertsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTrackingAlertsQuery | undefined, Types.GetTrackingAlertsQueryVariables>;
|
|
3513
|
-
export type GetTrackingAlertsQueryHookResult = ReturnType<typeof useGetTrackingAlertsQuery>;
|
|
3514
|
-
export type GetTrackingAlertsLazyQueryHookResult = ReturnType<typeof useGetTrackingAlertsLazyQuery>;
|
|
3515
|
-
export type GetTrackingAlertsSuspenseQueryHookResult = ReturnType<typeof useGetTrackingAlertsSuspenseQuery>;
|
|
3516
|
-
export type GetTrackingAlertsQueryResult = Apollo.QueryResult<Types.GetTrackingAlertsQuery, Types.GetTrackingAlertsQueryVariables>;
|
|
3517
|
-
export declare const ListServiceProvidersDocument: Apollo.DocumentNode;
|
|
3518
|
-
/**
|
|
3519
|
-
* __useListServiceProvidersQuery__
|
|
3520
|
-
*
|
|
3521
|
-
* To run a query within a React component, call `useListServiceProvidersQuery` and pass it any options that fit your needs.
|
|
3522
|
-
* When your component renders, `useListServiceProvidersQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3523
|
-
* you can use to render your UI.
|
|
3524
|
-
*
|
|
3525
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3526
|
-
*
|
|
3527
|
-
* @example
|
|
3528
|
-
* const { data, loading, error } = useListServiceProvidersQuery({
|
|
3529
|
-
* variables: {
|
|
3530
|
-
* filter: // value for 'filter'
|
|
3531
|
-
* pagination: // value for 'pagination'
|
|
3532
|
-
* },
|
|
3533
|
-
* });
|
|
3534
|
-
*/
|
|
3535
|
-
export declare function useListServiceProvidersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables, "empty" | "complete" | "streaming", Types.ListServiceProvidersQueryVariables>;
|
|
3536
|
-
export declare function useListServiceProvidersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables, "empty" | "complete" | "streaming">;
|
|
3537
|
-
export declare function useListServiceProvidersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables>;
|
|
3538
|
-
export declare function useListServiceProvidersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListServiceProvidersQuery | undefined, Types.ListServiceProvidersQueryVariables>;
|
|
3539
|
-
export type ListServiceProvidersQueryHookResult = ReturnType<typeof useListServiceProvidersQuery>;
|
|
3540
|
-
export type ListServiceProvidersLazyQueryHookResult = ReturnType<typeof useListServiceProvidersLazyQuery>;
|
|
3541
|
-
export type ListServiceProvidersSuspenseQueryHookResult = ReturnType<typeof useListServiceProvidersSuspenseQuery>;
|
|
3542
|
-
export type ListServiceProvidersQueryResult = Apollo.QueryResult<Types.ListServiceProvidersQuery, Types.ListServiceProvidersQueryVariables>;
|
|
3543
|
-
export declare const ListServiceOfferingsDocument: Apollo.DocumentNode;
|
|
3544
|
-
/**
|
|
3545
|
-
* __useListServiceOfferingsQuery__
|
|
3546
|
-
*
|
|
3547
|
-
* To run a query within a React component, call `useListServiceOfferingsQuery` and pass it any options that fit your needs.
|
|
3548
|
-
* When your component renders, `useListServiceOfferingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3549
|
-
* you can use to render your UI.
|
|
3550
|
-
*
|
|
3551
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3552
|
-
*
|
|
3553
|
-
* @example
|
|
3554
|
-
* const { data, loading, error } = useListServiceOfferingsQuery({
|
|
3555
|
-
* variables: {
|
|
3556
|
-
* filter: // value for 'filter'
|
|
3557
|
-
* pagination: // value for 'pagination'
|
|
3558
|
-
* },
|
|
3559
|
-
* });
|
|
3560
|
-
*/
|
|
3561
|
-
export declare function useListServiceOfferingsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables, "empty" | "complete" | "streaming", Types.ListServiceOfferingsQueryVariables>;
|
|
3562
|
-
export declare function useListServiceOfferingsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3563
|
-
export declare function useListServiceOfferingsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables>;
|
|
3564
|
-
export declare function useListServiceOfferingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListServiceOfferingsQuery | undefined, Types.ListServiceOfferingsQueryVariables>;
|
|
3565
|
-
export type ListServiceOfferingsQueryHookResult = ReturnType<typeof useListServiceOfferingsQuery>;
|
|
3566
|
-
export type ListServiceOfferingsLazyQueryHookResult = ReturnType<typeof useListServiceOfferingsLazyQuery>;
|
|
3567
|
-
export type ListServiceOfferingsSuspenseQueryHookResult = ReturnType<typeof useListServiceOfferingsSuspenseQuery>;
|
|
3568
|
-
export type ListServiceOfferingsQueryResult = Apollo.QueryResult<Types.ListServiceOfferingsQuery, Types.ListServiceOfferingsQueryVariables>;
|
|
3569
|
-
export declare const ListMovethewheelsReportsDocument: Apollo.DocumentNode;
|
|
3570
|
-
/**
|
|
3571
|
-
* __useListMovethewheelsReportsQuery__
|
|
3572
|
-
*
|
|
3573
|
-
* To run a query within a React component, call `useListMovethewheelsReportsQuery` and pass it any options that fit your needs.
|
|
3574
|
-
* When your component renders, `useListMovethewheelsReportsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3575
|
-
* you can use to render your UI.
|
|
3576
|
-
*
|
|
3577
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3578
|
-
*
|
|
3579
|
-
* @example
|
|
3580
|
-
* const { data, loading, error } = useListMovethewheelsReportsQuery({
|
|
3581
|
-
* variables: {
|
|
3582
|
-
* filter: // value for 'filter'
|
|
3583
|
-
* pagination: // value for 'pagination'
|
|
3584
|
-
* },
|
|
3585
|
-
* });
|
|
3586
|
-
*/
|
|
3587
|
-
export declare function useListMovethewheelsReportsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables, "empty" | "complete" | "streaming", Types.ListMovethewheelsReportsQueryVariables>;
|
|
3588
|
-
export declare function useListMovethewheelsReportsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3589
|
-
export declare function useListMovethewheelsReportsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables>;
|
|
3590
|
-
export declare function useListMovethewheelsReportsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListMovethewheelsReportsQuery | undefined, Types.ListMovethewheelsReportsQueryVariables>;
|
|
3591
|
-
export type ListMovethewheelsReportsQueryHookResult = ReturnType<typeof useListMovethewheelsReportsQuery>;
|
|
3592
|
-
export type ListMovethewheelsReportsLazyQueryHookResult = ReturnType<typeof useListMovethewheelsReportsLazyQuery>;
|
|
3593
|
-
export type ListMovethewheelsReportsSuspenseQueryHookResult = ReturnType<typeof useListMovethewheelsReportsSuspenseQuery>;
|
|
3594
|
-
export type ListMovethewheelsReportsQueryResult = Apollo.QueryResult<Types.ListMovethewheelsReportsQuery, Types.ListMovethewheelsReportsQueryVariables>;
|
|
3595
|
-
export declare const GetMovethewheelsReportDocument: Apollo.DocumentNode;
|
|
3596
|
-
/**
|
|
3597
|
-
* __useGetMovethewheelsReportQuery__
|
|
3598
|
-
*
|
|
3599
|
-
* To run a query within a React component, call `useGetMovethewheelsReportQuery` and pass it any options that fit your needs.
|
|
3600
|
-
* When your component renders, `useGetMovethewheelsReportQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3601
|
-
* you can use to render your UI.
|
|
3602
|
-
*
|
|
3603
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3604
|
-
*
|
|
3605
|
-
* @example
|
|
3606
|
-
* const { data, loading, error } = useGetMovethewheelsReportQuery({
|
|
3607
|
-
* variables: {
|
|
3608
|
-
* id: // value for 'id'
|
|
3609
|
-
* },
|
|
3610
|
-
* });
|
|
3611
|
-
*/
|
|
3612
|
-
export declare function useGetMovethewheelsReportQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables> & ({
|
|
3613
|
-
variables: Types.GetMovethewheelsReportQueryVariables;
|
|
3614
|
-
skip?: boolean;
|
|
3615
|
-
} | {
|
|
3616
|
-
skip: boolean;
|
|
3617
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables, "empty" | "complete" | "streaming", Types.GetMovethewheelsReportQueryVariables>;
|
|
3618
|
-
export declare function useGetMovethewheelsReportLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables, "empty" | "complete" | "streaming">;
|
|
3619
|
-
export declare function useGetMovethewheelsReportSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables>;
|
|
3620
|
-
export declare function useGetMovethewheelsReportSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsReportQuery | undefined, Types.GetMovethewheelsReportQueryVariables>;
|
|
3621
|
-
export type GetMovethewheelsReportQueryHookResult = ReturnType<typeof useGetMovethewheelsReportQuery>;
|
|
3622
|
-
export type GetMovethewheelsReportLazyQueryHookResult = ReturnType<typeof useGetMovethewheelsReportLazyQuery>;
|
|
3623
|
-
export type GetMovethewheelsReportSuspenseQueryHookResult = ReturnType<typeof useGetMovethewheelsReportSuspenseQuery>;
|
|
3624
|
-
export type GetMovethewheelsReportQueryResult = Apollo.QueryResult<Types.GetMovethewheelsReportQuery, Types.GetMovethewheelsReportQueryVariables>;
|
|
3625
|
-
export declare const GetMovethewheelsModuleSettingsDocument: Apollo.DocumentNode;
|
|
3626
|
-
/**
|
|
3627
|
-
* __useGetMovethewheelsModuleSettingsQuery__
|
|
3628
|
-
*
|
|
3629
|
-
* To run a query within a React component, call `useGetMovethewheelsModuleSettingsQuery` and pass it any options that fit your needs.
|
|
3630
|
-
* When your component renders, `useGetMovethewheelsModuleSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3631
|
-
* you can use to render your UI.
|
|
3632
|
-
*
|
|
3633
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3634
|
-
*
|
|
3635
|
-
* @example
|
|
3636
|
-
* const { data, loading, error } = useGetMovethewheelsModuleSettingsQuery({
|
|
3637
|
-
* variables: {
|
|
3638
|
-
* },
|
|
3639
|
-
* });
|
|
3640
|
-
*/
|
|
3641
|
-
export declare function useGetMovethewheelsModuleSettingsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables, "empty" | "complete" | "streaming", Types.GetMovethewheelsModuleSettingsQueryVariables>;
|
|
3642
|
-
export declare function useGetMovethewheelsModuleSettingsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables, "empty" | "complete" | "streaming">;
|
|
3643
|
-
export declare function useGetMovethewheelsModuleSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables>;
|
|
3644
|
-
export declare function useGetMovethewheelsModuleSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsModuleSettingsQuery | undefined, Types.GetMovethewheelsModuleSettingsQueryVariables>;
|
|
3645
|
-
export type GetMovethewheelsModuleSettingsQueryHookResult = ReturnType<typeof useGetMovethewheelsModuleSettingsQuery>;
|
|
3646
|
-
export type GetMovethewheelsModuleSettingsLazyQueryHookResult = ReturnType<typeof useGetMovethewheelsModuleSettingsLazyQuery>;
|
|
3647
|
-
export type GetMovethewheelsModuleSettingsSuspenseQueryHookResult = ReturnType<typeof useGetMovethewheelsModuleSettingsSuspenseQuery>;
|
|
3648
|
-
export type GetMovethewheelsModuleSettingsQueryResult = Apollo.QueryResult<Types.GetMovethewheelsModuleSettingsQuery, Types.GetMovethewheelsModuleSettingsQueryVariables>;
|
|
3649
|
-
export declare const ListMovethewheelsOrdersDocument: Apollo.DocumentNode;
|
|
3650
|
-
/**
|
|
3651
|
-
* __useListMovethewheelsOrdersQuery__
|
|
3652
|
-
*
|
|
3653
|
-
* To run a query within a React component, call `useListMovethewheelsOrdersQuery` and pass it any options that fit your needs.
|
|
3654
|
-
* When your component renders, `useListMovethewheelsOrdersQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3655
|
-
* you can use to render your UI.
|
|
3656
|
-
*
|
|
3657
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3658
|
-
*
|
|
3659
|
-
* @example
|
|
3660
|
-
* const { data, loading, error } = useListMovethewheelsOrdersQuery({
|
|
3661
|
-
* variables: {
|
|
3662
|
-
* filter: // value for 'filter'
|
|
3663
|
-
* pagination: // value for 'pagination'
|
|
3664
|
-
* },
|
|
3665
|
-
* });
|
|
3666
|
-
*/
|
|
3667
|
-
export declare function useListMovethewheelsOrdersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables, "empty" | "complete" | "streaming", Types.ListMovethewheelsOrdersQueryVariables>;
|
|
3668
|
-
export declare function useListMovethewheelsOrdersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables, "empty" | "complete" | "streaming">;
|
|
3669
|
-
export declare function useListMovethewheelsOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables>;
|
|
3670
|
-
export declare function useListMovethewheelsOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListMovethewheelsOrdersQuery | undefined, Types.ListMovethewheelsOrdersQueryVariables>;
|
|
3671
|
-
export type ListMovethewheelsOrdersQueryHookResult = ReturnType<typeof useListMovethewheelsOrdersQuery>;
|
|
3672
|
-
export type ListMovethewheelsOrdersLazyQueryHookResult = ReturnType<typeof useListMovethewheelsOrdersLazyQuery>;
|
|
3673
|
-
export type ListMovethewheelsOrdersSuspenseQueryHookResult = ReturnType<typeof useListMovethewheelsOrdersSuspenseQuery>;
|
|
3674
|
-
export type ListMovethewheelsOrdersQueryResult = Apollo.QueryResult<Types.ListMovethewheelsOrdersQuery, Types.ListMovethewheelsOrdersQueryVariables>;
|
|
3675
|
-
export declare const GetMovethewheelsOrderDocument: Apollo.DocumentNode;
|
|
3676
|
-
/**
|
|
3677
|
-
* __useGetMovethewheelsOrderQuery__
|
|
3678
|
-
*
|
|
3679
|
-
* To run a query within a React component, call `useGetMovethewheelsOrderQuery` and pass it any options that fit your needs.
|
|
3680
|
-
* When your component renders, `useGetMovethewheelsOrderQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
3681
|
-
* you can use to render your UI.
|
|
3682
|
-
*
|
|
3683
|
-
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
3684
|
-
*
|
|
3685
|
-
* @example
|
|
3686
|
-
* const { data, loading, error } = useGetMovethewheelsOrderQuery({
|
|
3687
|
-
* variables: {
|
|
3688
|
-
* id: // value for 'id'
|
|
3689
|
-
* },
|
|
3690
|
-
* });
|
|
3691
|
-
*/
|
|
3692
|
-
export declare function useGetMovethewheelsOrderQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables> & ({
|
|
3693
|
-
variables: Types.GetMovethewheelsOrderQueryVariables;
|
|
3694
|
-
skip?: boolean;
|
|
3695
|
-
} | {
|
|
3696
|
-
skip: boolean;
|
|
3697
|
-
})): ApolloReactHooks.useQuery.Result<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables, "empty" | "complete" | "streaming", Types.GetMovethewheelsOrderQueryVariables>;
|
|
3698
|
-
export declare function useGetMovethewheelsOrderLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables, "empty" | "complete" | "streaming">;
|
|
3699
|
-
export declare function useGetMovethewheelsOrderSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables>;
|
|
3700
|
-
export declare function useGetMovethewheelsOrderSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMovethewheelsOrderQuery | undefined, Types.GetMovethewheelsOrderQueryVariables>;
|
|
3701
|
-
export type GetMovethewheelsOrderQueryHookResult = ReturnType<typeof useGetMovethewheelsOrderQuery>;
|
|
3702
|
-
export type GetMovethewheelsOrderLazyQueryHookResult = ReturnType<typeof useGetMovethewheelsOrderLazyQuery>;
|
|
3703
|
-
export type GetMovethewheelsOrderSuspenseQueryHookResult = ReturnType<typeof useGetMovethewheelsOrderSuspenseQuery>;
|
|
3704
|
-
export type GetMovethewheelsOrderQueryResult = Apollo.QueryResult<Types.GetMovethewheelsOrderQuery, Types.GetMovethewheelsOrderQueryVariables>;
|