@platelet-app/types 1.0.6 → 1.0.8
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/dist/API.d.ts +485 -393
- package/dist/API.js +9 -9
- package/dist/graphql/mutations.d.ts +53 -47
- package/dist/graphql/mutations.js +2907 -2959
- package/dist/graphql/queries.d.ts +53 -47
- package/dist/graphql/queries.js +1684 -1735
- package/dist/graphql/subscriptions.d.ts +45 -39
- package/dist/graphql/subscriptions.js +2357 -2396
- package/dist/index.js +7 -17
- package/package.json +3 -2
package/dist/API.d.ts
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
export type CreateTenantInput = {
|
|
1
|
+
export declare type CreateTenantInput = {
|
|
2
2
|
id?: string | null;
|
|
3
3
|
name: string;
|
|
4
4
|
referenceIdentifier: string;
|
|
5
5
|
_version?: number | null;
|
|
6
6
|
tenantAdminId: string;
|
|
7
7
|
};
|
|
8
|
-
export type ModelTenantConditionInput = {
|
|
8
|
+
export declare type ModelTenantConditionInput = {
|
|
9
9
|
name?: ModelStringInput | null;
|
|
10
10
|
referenceIdentifier?: ModelStringInput | null;
|
|
11
11
|
and?: Array<ModelTenantConditionInput | null> | null;
|
|
12
12
|
or?: Array<ModelTenantConditionInput | null> | null;
|
|
13
13
|
not?: ModelTenantConditionInput | null;
|
|
14
14
|
_deleted?: ModelBooleanInput | null;
|
|
15
|
+
createdAt?: ModelStringInput | null;
|
|
16
|
+
updatedAt?: ModelStringInput | null;
|
|
15
17
|
tenantAdminId?: ModelIDInput | null;
|
|
16
18
|
};
|
|
17
|
-
export type ModelStringInput = {
|
|
19
|
+
export declare type ModelStringInput = {
|
|
18
20
|
ne?: string | null;
|
|
19
21
|
eq?: string | null;
|
|
20
22
|
le?: string | null;
|
|
@@ -41,7 +43,7 @@ export declare enum ModelAttributeTypes {
|
|
|
41
43
|
stringSet = "stringSet",
|
|
42
44
|
_null = "_null"
|
|
43
45
|
}
|
|
44
|
-
export type ModelSizeInput = {
|
|
46
|
+
export declare type ModelSizeInput = {
|
|
45
47
|
ne?: number | null;
|
|
46
48
|
eq?: number | null;
|
|
47
49
|
le?: number | null;
|
|
@@ -50,13 +52,13 @@ export type ModelSizeInput = {
|
|
|
50
52
|
gt?: number | null;
|
|
51
53
|
between?: Array<number | null> | null;
|
|
52
54
|
};
|
|
53
|
-
export type ModelBooleanInput = {
|
|
55
|
+
export declare type ModelBooleanInput = {
|
|
54
56
|
ne?: boolean | null;
|
|
55
57
|
eq?: boolean | null;
|
|
56
58
|
attributeExists?: boolean | null;
|
|
57
59
|
attributeType?: ModelAttributeTypes | null;
|
|
58
60
|
};
|
|
59
|
-
export type ModelIDInput = {
|
|
61
|
+
export declare type ModelIDInput = {
|
|
60
62
|
ne?: string | null;
|
|
61
63
|
eq?: string | null;
|
|
62
64
|
le?: string | null;
|
|
@@ -71,7 +73,7 @@ export type ModelIDInput = {
|
|
|
71
73
|
attributeType?: ModelAttributeTypes | null;
|
|
72
74
|
size?: ModelSizeInput | null;
|
|
73
75
|
};
|
|
74
|
-
export type Tenant = {
|
|
76
|
+
export declare type Tenant = {
|
|
75
77
|
__typename: "Tenant";
|
|
76
78
|
id: string;
|
|
77
79
|
name: string;
|
|
@@ -84,7 +86,7 @@ export type Tenant = {
|
|
|
84
86
|
_lastChangedAt: number;
|
|
85
87
|
tenantAdminId: string;
|
|
86
88
|
};
|
|
87
|
-
export type User = {
|
|
89
|
+
export declare type User = {
|
|
88
90
|
__typename: "User";
|
|
89
91
|
id: string;
|
|
90
92
|
username: string;
|
|
@@ -113,7 +115,7 @@ export type User = {
|
|
|
113
115
|
_deleted?: boolean | null;
|
|
114
116
|
_lastChangedAt: number;
|
|
115
117
|
};
|
|
116
|
-
export type AddressAndContactDetails = {
|
|
118
|
+
export declare type AddressAndContactDetails = {
|
|
117
119
|
__typename: "AddressAndContactDetails";
|
|
118
120
|
name?: string | null;
|
|
119
121
|
telephoneNumber?: string | null;
|
|
@@ -136,13 +138,13 @@ export declare enum Role {
|
|
|
136
138
|
RIDER = "RIDER",
|
|
137
139
|
ADMIN = "ADMIN"
|
|
138
140
|
}
|
|
139
|
-
export type ModelPossibleRiderResponsibilitiesConnection = {
|
|
141
|
+
export declare type ModelPossibleRiderResponsibilitiesConnection = {
|
|
140
142
|
__typename: "ModelPossibleRiderResponsibilitiesConnection";
|
|
141
143
|
items: Array<PossibleRiderResponsibilities | null>;
|
|
142
144
|
nextToken?: string | null;
|
|
143
145
|
startedAt?: number | null;
|
|
144
146
|
};
|
|
145
|
-
export type PossibleRiderResponsibilities = {
|
|
147
|
+
export declare type PossibleRiderResponsibilities = {
|
|
146
148
|
__typename: "PossibleRiderResponsibilities";
|
|
147
149
|
id: string;
|
|
148
150
|
tenantId: string;
|
|
@@ -156,7 +158,7 @@ export type PossibleRiderResponsibilities = {
|
|
|
156
158
|
userPossibleRiderResponsibilitiesId?: string | null;
|
|
157
159
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
158
160
|
};
|
|
159
|
-
export type RiderResponsibility = {
|
|
161
|
+
export declare type RiderResponsibility = {
|
|
160
162
|
__typename: "RiderResponsibility";
|
|
161
163
|
id: string;
|
|
162
164
|
tenantId: string;
|
|
@@ -169,19 +171,19 @@ export type RiderResponsibility = {
|
|
|
169
171
|
_deleted?: boolean | null;
|
|
170
172
|
_lastChangedAt: number;
|
|
171
173
|
};
|
|
172
|
-
export type S3Object = {
|
|
174
|
+
export declare type S3Object = {
|
|
173
175
|
__typename: "S3Object";
|
|
174
176
|
bucket: string;
|
|
175
177
|
key: string;
|
|
176
178
|
region: string;
|
|
177
179
|
};
|
|
178
|
-
export type ModelCommentConnection = {
|
|
180
|
+
export declare type ModelCommentConnection = {
|
|
179
181
|
__typename: "ModelCommentConnection";
|
|
180
182
|
items: Array<Comment | null>;
|
|
181
183
|
nextToken?: string | null;
|
|
182
184
|
startedAt?: number | null;
|
|
183
185
|
};
|
|
184
|
-
export type Comment = {
|
|
186
|
+
export declare type Comment = {
|
|
185
187
|
__typename: "Comment";
|
|
186
188
|
id: string;
|
|
187
189
|
parentId?: string | null;
|
|
@@ -202,13 +204,13 @@ export declare enum CommentVisibility {
|
|
|
202
204
|
EVERYONE = "EVERYONE",
|
|
203
205
|
ME = "ME"
|
|
204
206
|
}
|
|
205
|
-
export type ModelTaskAssigneeConnection = {
|
|
207
|
+
export declare type ModelTaskAssigneeConnection = {
|
|
206
208
|
__typename: "ModelTaskAssigneeConnection";
|
|
207
209
|
items: Array<TaskAssignee | null>;
|
|
208
210
|
nextToken?: string | null;
|
|
209
211
|
startedAt?: number | null;
|
|
210
212
|
};
|
|
211
|
-
export type TaskAssignee = {
|
|
213
|
+
export declare type TaskAssignee = {
|
|
212
214
|
__typename: "TaskAssignee";
|
|
213
215
|
id: string;
|
|
214
216
|
tenantId: string;
|
|
@@ -224,7 +226,7 @@ export type TaskAssignee = {
|
|
|
224
226
|
userAssignmentsId?: string | null;
|
|
225
227
|
taskAssigneesId?: string | null;
|
|
226
228
|
};
|
|
227
|
-
export type Task = {
|
|
229
|
+
export declare type Task = {
|
|
228
230
|
__typename: "Task";
|
|
229
231
|
id: string;
|
|
230
232
|
tenantId: string;
|
|
@@ -263,7 +265,7 @@ export type Task = {
|
|
|
263
265
|
_lastChangedAt: number;
|
|
264
266
|
userCreatedTasksId?: string | null;
|
|
265
267
|
};
|
|
266
|
-
export type Location = {
|
|
268
|
+
export declare type Location = {
|
|
267
269
|
__typename: "Location";
|
|
268
270
|
id: string;
|
|
269
271
|
tenantId: string;
|
|
@@ -298,19 +300,19 @@ export type Location = {
|
|
|
298
300
|
_lastChangedAt: number;
|
|
299
301
|
userCreatedLocationsId?: string | null;
|
|
300
302
|
};
|
|
301
|
-
export type ModelTaskConnection = {
|
|
303
|
+
export declare type ModelTaskConnection = {
|
|
302
304
|
__typename: "ModelTaskConnection";
|
|
303
305
|
items: Array<Task | null>;
|
|
304
306
|
nextToken?: string | null;
|
|
305
307
|
startedAt?: number | null;
|
|
306
308
|
};
|
|
307
|
-
export type ModelScheduledTaskConnection = {
|
|
309
|
+
export declare type ModelScheduledTaskConnection = {
|
|
308
310
|
__typename: "ModelScheduledTaskConnection";
|
|
309
311
|
items: Array<ScheduledTask | null>;
|
|
310
312
|
nextToken?: string | null;
|
|
311
313
|
startedAt?: number | null;
|
|
312
314
|
};
|
|
313
|
-
export type ScheduledTask = {
|
|
315
|
+
export declare type ScheduledTask = {
|
|
314
316
|
__typename: "ScheduledTask";
|
|
315
317
|
id: string;
|
|
316
318
|
tenantId: string;
|
|
@@ -340,13 +342,13 @@ export declare enum Priority {
|
|
|
340
342
|
MEDIUM = "MEDIUM",
|
|
341
343
|
LOW = "LOW"
|
|
342
344
|
}
|
|
343
|
-
export type ModelDeliverableConnection = {
|
|
345
|
+
export declare type ModelDeliverableConnection = {
|
|
344
346
|
__typename: "ModelDeliverableConnection";
|
|
345
347
|
items: Array<Deliverable | null>;
|
|
346
348
|
nextToken?: string | null;
|
|
347
349
|
startedAt?: number | null;
|
|
348
350
|
};
|
|
349
|
-
export type Deliverable = {
|
|
351
|
+
export declare type Deliverable = {
|
|
350
352
|
__typename: "Deliverable";
|
|
351
353
|
id: string;
|
|
352
354
|
tenantId: string;
|
|
@@ -367,7 +369,7 @@ export type Deliverable = {
|
|
|
367
369
|
scheduledTaskDeliverablesId?: string | null;
|
|
368
370
|
deliverableTypeDeliverablesId?: string | null;
|
|
369
371
|
};
|
|
370
|
-
export type DeliverableType = {
|
|
372
|
+
export declare type DeliverableType = {
|
|
371
373
|
__typename: "DeliverableType";
|
|
372
374
|
id: string;
|
|
373
375
|
label: string;
|
|
@@ -398,7 +400,7 @@ export declare enum DeliverableUnit {
|
|
|
398
400
|
ITEM = "ITEM",
|
|
399
401
|
BOX = "BOX"
|
|
400
402
|
}
|
|
401
|
-
export type Schedule = {
|
|
403
|
+
export declare type Schedule = {
|
|
402
404
|
__typename: "Schedule";
|
|
403
405
|
relation?: TimeRelation | null;
|
|
404
406
|
timePrimary?: string | null;
|
|
@@ -423,13 +425,13 @@ export declare enum TaskStatus {
|
|
|
423
425
|
PENDING = "PENDING",
|
|
424
426
|
FUTURE = "FUTURE"
|
|
425
427
|
}
|
|
426
|
-
export type ModelVehicleAssignmentConnection = {
|
|
428
|
+
export declare type ModelVehicleAssignmentConnection = {
|
|
427
429
|
__typename: "ModelVehicleAssignmentConnection";
|
|
428
430
|
items: Array<VehicleAssignment | null>;
|
|
429
431
|
nextToken?: string | null;
|
|
430
432
|
startedAt?: number | null;
|
|
431
433
|
};
|
|
432
|
-
export type VehicleAssignment = {
|
|
434
|
+
export declare type VehicleAssignment = {
|
|
433
435
|
__typename: "VehicleAssignment";
|
|
434
436
|
id: string;
|
|
435
437
|
tenantId: string;
|
|
@@ -443,7 +445,7 @@ export type VehicleAssignment = {
|
|
|
443
445
|
userVehicleAssignmentsId?: string | null;
|
|
444
446
|
vehicleAssignmentsId?: string | null;
|
|
445
447
|
};
|
|
446
|
-
export type Vehicle = {
|
|
448
|
+
export declare type Vehicle = {
|
|
447
449
|
__typename: "Vehicle";
|
|
448
450
|
id: string;
|
|
449
451
|
tenantId: string;
|
|
@@ -463,30 +465,30 @@ export type Vehicle = {
|
|
|
463
465
|
_lastChangedAt: number;
|
|
464
466
|
userCreatedVehiclesId?: string | null;
|
|
465
467
|
};
|
|
466
|
-
export type ModelLocationConnection = {
|
|
468
|
+
export declare type ModelLocationConnection = {
|
|
467
469
|
__typename: "ModelLocationConnection";
|
|
468
470
|
items: Array<Location | null>;
|
|
469
471
|
nextToken?: string | null;
|
|
470
472
|
startedAt?: number | null;
|
|
471
473
|
};
|
|
472
|
-
export type ModelVehicleConnection = {
|
|
474
|
+
export declare type ModelVehicleConnection = {
|
|
473
475
|
__typename: "ModelVehicleConnection";
|
|
474
476
|
items: Array<Vehicle | null>;
|
|
475
477
|
nextToken?: string | null;
|
|
476
478
|
startedAt?: number | null;
|
|
477
479
|
};
|
|
478
|
-
export type UpdateTenantInput = {
|
|
480
|
+
export declare type UpdateTenantInput = {
|
|
479
481
|
id: string;
|
|
480
482
|
name?: string | null;
|
|
481
483
|
referenceIdentifier?: string | null;
|
|
482
484
|
_version?: number | null;
|
|
483
485
|
tenantAdminId?: string | null;
|
|
484
486
|
};
|
|
485
|
-
export type DeleteTenantInput = {
|
|
487
|
+
export declare type DeleteTenantInput = {
|
|
486
488
|
id: string;
|
|
487
489
|
_version?: number | null;
|
|
488
490
|
};
|
|
489
|
-
export type CreateUserInput = {
|
|
491
|
+
export declare type CreateUserInput = {
|
|
490
492
|
id?: string | null;
|
|
491
493
|
username: string;
|
|
492
494
|
cognitoId: string;
|
|
@@ -502,7 +504,7 @@ export type CreateUserInput = {
|
|
|
502
504
|
disabled?: number | null;
|
|
503
505
|
_version?: number | null;
|
|
504
506
|
};
|
|
505
|
-
export type AddressAndContactDetailsInput = {
|
|
507
|
+
export declare type AddressAndContactDetailsInput = {
|
|
506
508
|
name?: string | null;
|
|
507
509
|
telephoneNumber?: string | null;
|
|
508
510
|
mobileNumber?: string | null;
|
|
@@ -518,12 +520,12 @@ export type AddressAndContactDetailsInput = {
|
|
|
518
520
|
postcode?: string | null;
|
|
519
521
|
what3words?: string | null;
|
|
520
522
|
};
|
|
521
|
-
export type S3ObjectInput = {
|
|
523
|
+
export declare type S3ObjectInput = {
|
|
522
524
|
bucket: string;
|
|
523
525
|
key: string;
|
|
524
526
|
region: string;
|
|
525
527
|
};
|
|
526
|
-
export type ModelUserConditionInput = {
|
|
528
|
+
export declare type ModelUserConditionInput = {
|
|
527
529
|
username?: ModelStringInput | null;
|
|
528
530
|
cognitoId?: ModelIDInput | null;
|
|
529
531
|
tenantId?: ModelIDInput | null;
|
|
@@ -538,8 +540,10 @@ export type ModelUserConditionInput = {
|
|
|
538
540
|
or?: Array<ModelUserConditionInput | null> | null;
|
|
539
541
|
not?: ModelUserConditionInput | null;
|
|
540
542
|
_deleted?: ModelBooleanInput | null;
|
|
543
|
+
createdAt?: ModelStringInput | null;
|
|
544
|
+
updatedAt?: ModelStringInput | null;
|
|
541
545
|
};
|
|
542
|
-
export type ModelIntInput = {
|
|
546
|
+
export declare type ModelIntInput = {
|
|
543
547
|
ne?: number | null;
|
|
544
548
|
eq?: number | null;
|
|
545
549
|
le?: number | null;
|
|
@@ -550,11 +554,11 @@ export type ModelIntInput = {
|
|
|
550
554
|
attributeExists?: boolean | null;
|
|
551
555
|
attributeType?: ModelAttributeTypes | null;
|
|
552
556
|
};
|
|
553
|
-
export type ModelRoleInput = {
|
|
557
|
+
export declare type ModelRoleInput = {
|
|
554
558
|
eq?: Role | null;
|
|
555
559
|
ne?: Role | null;
|
|
556
560
|
};
|
|
557
|
-
export type UpdateUserInput = {
|
|
561
|
+
export declare type UpdateUserInput = {
|
|
558
562
|
id: string;
|
|
559
563
|
username?: string | null;
|
|
560
564
|
cognitoId?: string | null;
|
|
@@ -570,38 +574,40 @@ export type UpdateUserInput = {
|
|
|
570
574
|
disabled?: number | null;
|
|
571
575
|
_version?: number | null;
|
|
572
576
|
};
|
|
573
|
-
export type DeleteUserInput = {
|
|
577
|
+
export declare type DeleteUserInput = {
|
|
574
578
|
id: string;
|
|
575
579
|
_version?: number | null;
|
|
576
580
|
};
|
|
577
|
-
export type CreatePossibleRiderResponsibilitiesInput = {
|
|
581
|
+
export declare type CreatePossibleRiderResponsibilitiesInput = {
|
|
578
582
|
id?: string | null;
|
|
579
583
|
tenantId: string;
|
|
580
584
|
_version?: number | null;
|
|
581
585
|
userPossibleRiderResponsibilitiesId?: string | null;
|
|
582
586
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
583
587
|
};
|
|
584
|
-
export type ModelPossibleRiderResponsibilitiesConditionInput = {
|
|
588
|
+
export declare type ModelPossibleRiderResponsibilitiesConditionInput = {
|
|
585
589
|
tenantId?: ModelIDInput | null;
|
|
586
590
|
and?: Array<ModelPossibleRiderResponsibilitiesConditionInput | null> | null;
|
|
587
591
|
or?: Array<ModelPossibleRiderResponsibilitiesConditionInput | null> | null;
|
|
588
592
|
not?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
589
593
|
_deleted?: ModelBooleanInput | null;
|
|
594
|
+
createdAt?: ModelStringInput | null;
|
|
595
|
+
updatedAt?: ModelStringInput | null;
|
|
590
596
|
userPossibleRiderResponsibilitiesId?: ModelIDInput | null;
|
|
591
597
|
riderResponsibilityPossibleUsersId?: ModelIDInput | null;
|
|
592
598
|
};
|
|
593
|
-
export type UpdatePossibleRiderResponsibilitiesInput = {
|
|
599
|
+
export declare type UpdatePossibleRiderResponsibilitiesInput = {
|
|
594
600
|
id: string;
|
|
595
601
|
tenantId?: string | null;
|
|
596
602
|
_version?: number | null;
|
|
597
603
|
userPossibleRiderResponsibilitiesId?: string | null;
|
|
598
604
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
599
605
|
};
|
|
600
|
-
export type DeletePossibleRiderResponsibilitiesInput = {
|
|
606
|
+
export declare type DeletePossibleRiderResponsibilitiesInput = {
|
|
601
607
|
id: string;
|
|
602
608
|
_version?: number | null;
|
|
603
609
|
};
|
|
604
|
-
export type CreateVehicleInput = {
|
|
610
|
+
export declare type CreateVehicleInput = {
|
|
605
611
|
id?: string | null;
|
|
606
612
|
tenantId: string;
|
|
607
613
|
name?: string | null;
|
|
@@ -613,7 +619,7 @@ export type CreateVehicleInput = {
|
|
|
613
619
|
_version?: number | null;
|
|
614
620
|
userCreatedVehiclesId?: string | null;
|
|
615
621
|
};
|
|
616
|
-
export type ModelVehicleConditionInput = {
|
|
622
|
+
export declare type ModelVehicleConditionInput = {
|
|
617
623
|
tenantId?: ModelIDInput | null;
|
|
618
624
|
name?: ModelStringInput | null;
|
|
619
625
|
manufacturer?: ModelStringInput | null;
|
|
@@ -625,9 +631,11 @@ export type ModelVehicleConditionInput = {
|
|
|
625
631
|
or?: Array<ModelVehicleConditionInput | null> | null;
|
|
626
632
|
not?: ModelVehicleConditionInput | null;
|
|
627
633
|
_deleted?: ModelBooleanInput | null;
|
|
634
|
+
createdAt?: ModelStringInput | null;
|
|
635
|
+
updatedAt?: ModelStringInput | null;
|
|
628
636
|
userCreatedVehiclesId?: ModelIDInput | null;
|
|
629
637
|
};
|
|
630
|
-
export type UpdateVehicleInput = {
|
|
638
|
+
export declare type UpdateVehicleInput = {
|
|
631
639
|
id: string;
|
|
632
640
|
tenantId?: string | null;
|
|
633
641
|
name?: string | null;
|
|
@@ -639,38 +647,40 @@ export type UpdateVehicleInput = {
|
|
|
639
647
|
_version?: number | null;
|
|
640
648
|
userCreatedVehiclesId?: string | null;
|
|
641
649
|
};
|
|
642
|
-
export type DeleteVehicleInput = {
|
|
650
|
+
export declare type DeleteVehicleInput = {
|
|
643
651
|
id: string;
|
|
644
652
|
_version?: number | null;
|
|
645
653
|
};
|
|
646
|
-
export type CreateVehicleAssignmentInput = {
|
|
654
|
+
export declare type CreateVehicleAssignmentInput = {
|
|
647
655
|
id?: string | null;
|
|
648
656
|
tenantId: string;
|
|
649
657
|
_version?: number | null;
|
|
650
658
|
userVehicleAssignmentsId?: string | null;
|
|
651
659
|
vehicleAssignmentsId?: string | null;
|
|
652
660
|
};
|
|
653
|
-
export type ModelVehicleAssignmentConditionInput = {
|
|
661
|
+
export declare type ModelVehicleAssignmentConditionInput = {
|
|
654
662
|
tenantId?: ModelIDInput | null;
|
|
655
663
|
and?: Array<ModelVehicleAssignmentConditionInput | null> | null;
|
|
656
664
|
or?: Array<ModelVehicleAssignmentConditionInput | null> | null;
|
|
657
665
|
not?: ModelVehicleAssignmentConditionInput | null;
|
|
658
666
|
_deleted?: ModelBooleanInput | null;
|
|
667
|
+
createdAt?: ModelStringInput | null;
|
|
668
|
+
updatedAt?: ModelStringInput | null;
|
|
659
669
|
userVehicleAssignmentsId?: ModelIDInput | null;
|
|
660
670
|
vehicleAssignmentsId?: ModelIDInput | null;
|
|
661
671
|
};
|
|
662
|
-
export type UpdateVehicleAssignmentInput = {
|
|
672
|
+
export declare type UpdateVehicleAssignmentInput = {
|
|
663
673
|
id: string;
|
|
664
674
|
tenantId?: string | null;
|
|
665
675
|
_version?: number | null;
|
|
666
676
|
userVehicleAssignmentsId?: string | null;
|
|
667
677
|
vehicleAssignmentsId?: string | null;
|
|
668
678
|
};
|
|
669
|
-
export type DeleteVehicleAssignmentInput = {
|
|
679
|
+
export declare type DeleteVehicleAssignmentInput = {
|
|
670
680
|
id: string;
|
|
671
681
|
_version?: number | null;
|
|
672
682
|
};
|
|
673
|
-
export type CreateLocationInput = {
|
|
683
|
+
export declare type CreateLocationInput = {
|
|
674
684
|
id?: string | null;
|
|
675
685
|
tenantId: string;
|
|
676
686
|
name?: string | null;
|
|
@@ -692,7 +702,7 @@ export type CreateLocationInput = {
|
|
|
692
702
|
_version?: number | null;
|
|
693
703
|
userCreatedLocationsId?: string | null;
|
|
694
704
|
};
|
|
695
|
-
export type ModelLocationConditionInput = {
|
|
705
|
+
export declare type ModelLocationConditionInput = {
|
|
696
706
|
tenantId?: ModelIDInput | null;
|
|
697
707
|
name?: ModelStringInput | null;
|
|
698
708
|
listed?: ModelIntInput | null;
|
|
@@ -713,9 +723,11 @@ export type ModelLocationConditionInput = {
|
|
|
713
723
|
or?: Array<ModelLocationConditionInput | null> | null;
|
|
714
724
|
not?: ModelLocationConditionInput | null;
|
|
715
725
|
_deleted?: ModelBooleanInput | null;
|
|
726
|
+
createdAt?: ModelStringInput | null;
|
|
727
|
+
updatedAt?: ModelStringInput | null;
|
|
716
728
|
userCreatedLocationsId?: ModelIDInput | null;
|
|
717
729
|
};
|
|
718
|
-
export type UpdateLocationInput = {
|
|
730
|
+
export declare type UpdateLocationInput = {
|
|
719
731
|
id: string;
|
|
720
732
|
tenantId?: string | null;
|
|
721
733
|
name?: string | null;
|
|
@@ -737,11 +749,11 @@ export type UpdateLocationInput = {
|
|
|
737
749
|
_version?: number | null;
|
|
738
750
|
userCreatedLocationsId?: string | null;
|
|
739
751
|
};
|
|
740
|
-
export type DeleteLocationInput = {
|
|
752
|
+
export declare type DeleteLocationInput = {
|
|
741
753
|
id: string;
|
|
742
754
|
_version?: number | null;
|
|
743
755
|
};
|
|
744
|
-
export type CreateTaskInput = {
|
|
756
|
+
export declare type CreateTaskInput = {
|
|
745
757
|
id?: string | null;
|
|
746
758
|
tenantId: string;
|
|
747
759
|
createdAt?: string | null;
|
|
@@ -769,12 +781,12 @@ export type CreateTaskInput = {
|
|
|
769
781
|
_version?: number | null;
|
|
770
782
|
userCreatedTasksId?: string | null;
|
|
771
783
|
};
|
|
772
|
-
export type ScheduleInput = {
|
|
784
|
+
export declare type ScheduleInput = {
|
|
773
785
|
relation?: TimeRelation | null;
|
|
774
786
|
timePrimary?: string | null;
|
|
775
787
|
timeSecondary?: string | null;
|
|
776
788
|
};
|
|
777
|
-
export type ModelTaskConditionInput = {
|
|
789
|
+
export declare type ModelTaskConditionInput = {
|
|
778
790
|
tenantId?: ModelIDInput | null;
|
|
779
791
|
createdAt?: ModelStringInput | null;
|
|
780
792
|
dateCreated?: ModelStringInput | null;
|
|
@@ -799,17 +811,18 @@ export type ModelTaskConditionInput = {
|
|
|
799
811
|
or?: Array<ModelTaskConditionInput | null> | null;
|
|
800
812
|
not?: ModelTaskConditionInput | null;
|
|
801
813
|
_deleted?: ModelBooleanInput | null;
|
|
814
|
+
updatedAt?: ModelStringInput | null;
|
|
802
815
|
userCreatedTasksId?: ModelIDInput | null;
|
|
803
816
|
};
|
|
804
|
-
export type ModelPriorityInput = {
|
|
817
|
+
export declare type ModelPriorityInput = {
|
|
805
818
|
eq?: Priority | null;
|
|
806
819
|
ne?: Priority | null;
|
|
807
820
|
};
|
|
808
|
-
export type ModelTaskStatusInput = {
|
|
821
|
+
export declare type ModelTaskStatusInput = {
|
|
809
822
|
eq?: TaskStatus | null;
|
|
810
823
|
ne?: TaskStatus | null;
|
|
811
824
|
};
|
|
812
|
-
export type UpdateTaskInput = {
|
|
825
|
+
export declare type UpdateTaskInput = {
|
|
813
826
|
id: string;
|
|
814
827
|
tenantId?: string | null;
|
|
815
828
|
createdAt?: string | null;
|
|
@@ -837,11 +850,11 @@ export type UpdateTaskInput = {
|
|
|
837
850
|
_version?: number | null;
|
|
838
851
|
userCreatedTasksId?: string | null;
|
|
839
852
|
};
|
|
840
|
-
export type DeleteTaskInput = {
|
|
853
|
+
export declare type DeleteTaskInput = {
|
|
841
854
|
id: string;
|
|
842
855
|
_version?: number | null;
|
|
843
856
|
};
|
|
844
|
-
export type CreateTaskAssigneeInput = {
|
|
857
|
+
export declare type CreateTaskAssigneeInput = {
|
|
845
858
|
id?: string | null;
|
|
846
859
|
tenantId: string;
|
|
847
860
|
role: Role;
|
|
@@ -850,7 +863,7 @@ export type CreateTaskAssigneeInput = {
|
|
|
850
863
|
userAssignmentsId?: string | null;
|
|
851
864
|
taskAssigneesId?: string | null;
|
|
852
865
|
};
|
|
853
|
-
export type ModelTaskAssigneeConditionInput = {
|
|
866
|
+
export declare type ModelTaskAssigneeConditionInput = {
|
|
854
867
|
tenantId?: ModelIDInput | null;
|
|
855
868
|
role?: ModelRoleInput | null;
|
|
856
869
|
archived?: ModelIntInput | null;
|
|
@@ -858,10 +871,12 @@ export type ModelTaskAssigneeConditionInput = {
|
|
|
858
871
|
or?: Array<ModelTaskAssigneeConditionInput | null> | null;
|
|
859
872
|
not?: ModelTaskAssigneeConditionInput | null;
|
|
860
873
|
_deleted?: ModelBooleanInput | null;
|
|
874
|
+
createdAt?: ModelStringInput | null;
|
|
875
|
+
updatedAt?: ModelStringInput | null;
|
|
861
876
|
userAssignmentsId?: ModelIDInput | null;
|
|
862
877
|
taskAssigneesId?: ModelIDInput | null;
|
|
863
878
|
};
|
|
864
|
-
export type UpdateTaskAssigneeInput = {
|
|
879
|
+
export declare type UpdateTaskAssigneeInput = {
|
|
865
880
|
id: string;
|
|
866
881
|
tenantId?: string | null;
|
|
867
882
|
role?: Role | null;
|
|
@@ -870,11 +885,11 @@ export type UpdateTaskAssigneeInput = {
|
|
|
870
885
|
userAssignmentsId?: string | null;
|
|
871
886
|
taskAssigneesId?: string | null;
|
|
872
887
|
};
|
|
873
|
-
export type DeleteTaskAssigneeInput = {
|
|
888
|
+
export declare type DeleteTaskAssigneeInput = {
|
|
874
889
|
id: string;
|
|
875
890
|
_version?: number | null;
|
|
876
891
|
};
|
|
877
|
-
export type CreateScheduledTaskInput = {
|
|
892
|
+
export declare type CreateScheduledTaskInput = {
|
|
878
893
|
id?: string | null;
|
|
879
894
|
tenantId: string;
|
|
880
895
|
requesterContact?: AddressAndContactDetailsInput | null;
|
|
@@ -889,7 +904,7 @@ export type CreateScheduledTaskInput = {
|
|
|
889
904
|
_version?: number | null;
|
|
890
905
|
userCreatedScheduledTasksId?: string | null;
|
|
891
906
|
};
|
|
892
|
-
export type ModelScheduledTaskConditionInput = {
|
|
907
|
+
export declare type ModelScheduledTaskConditionInput = {
|
|
893
908
|
tenantId?: ModelIDInput | null;
|
|
894
909
|
cronExpression?: ModelStringInput | null;
|
|
895
910
|
pickUpLocationId?: ModelIDInput | null;
|
|
@@ -901,9 +916,11 @@ export type ModelScheduledTaskConditionInput = {
|
|
|
901
916
|
or?: Array<ModelScheduledTaskConditionInput | null> | null;
|
|
902
917
|
not?: ModelScheduledTaskConditionInput | null;
|
|
903
918
|
_deleted?: ModelBooleanInput | null;
|
|
919
|
+
createdAt?: ModelStringInput | null;
|
|
920
|
+
updatedAt?: ModelStringInput | null;
|
|
904
921
|
userCreatedScheduledTasksId?: ModelIDInput | null;
|
|
905
922
|
};
|
|
906
|
-
export type UpdateScheduledTaskInput = {
|
|
923
|
+
export declare type UpdateScheduledTaskInput = {
|
|
907
924
|
id: string;
|
|
908
925
|
tenantId?: string | null;
|
|
909
926
|
requesterContact?: AddressAndContactDetailsInput | null;
|
|
@@ -918,11 +935,11 @@ export type UpdateScheduledTaskInput = {
|
|
|
918
935
|
_version?: number | null;
|
|
919
936
|
userCreatedScheduledTasksId?: string | null;
|
|
920
937
|
};
|
|
921
|
-
export type DeleteScheduledTaskInput = {
|
|
938
|
+
export declare type DeleteScheduledTaskInput = {
|
|
922
939
|
id: string;
|
|
923
940
|
_version?: number | null;
|
|
924
941
|
};
|
|
925
|
-
export type CreateCommentInput = {
|
|
942
|
+
export declare type CreateCommentInput = {
|
|
926
943
|
id?: string | null;
|
|
927
944
|
parentId?: string | null;
|
|
928
945
|
owner?: string | null;
|
|
@@ -933,7 +950,7 @@ export type CreateCommentInput = {
|
|
|
933
950
|
_version?: number | null;
|
|
934
951
|
userCommentsId?: string | null;
|
|
935
952
|
};
|
|
936
|
-
export type ModelCommentConditionInput = {
|
|
953
|
+
export declare type ModelCommentConditionInput = {
|
|
937
954
|
parentId?: ModelIDInput | null;
|
|
938
955
|
owner?: ModelStringInput | null;
|
|
939
956
|
tenantId?: ModelIDInput | null;
|
|
@@ -944,13 +961,15 @@ export type ModelCommentConditionInput = {
|
|
|
944
961
|
or?: Array<ModelCommentConditionInput | null> | null;
|
|
945
962
|
not?: ModelCommentConditionInput | null;
|
|
946
963
|
_deleted?: ModelBooleanInput | null;
|
|
964
|
+
createdAt?: ModelStringInput | null;
|
|
965
|
+
updatedAt?: ModelStringInput | null;
|
|
947
966
|
userCommentsId?: ModelIDInput | null;
|
|
948
967
|
};
|
|
949
|
-
export type ModelCommentVisibilityInput = {
|
|
968
|
+
export declare type ModelCommentVisibilityInput = {
|
|
950
969
|
eq?: CommentVisibility | null;
|
|
951
970
|
ne?: CommentVisibility | null;
|
|
952
971
|
};
|
|
953
|
-
export type UpdateCommentInput = {
|
|
972
|
+
export declare type UpdateCommentInput = {
|
|
954
973
|
id: string;
|
|
955
974
|
parentId?: string | null;
|
|
956
975
|
owner?: string | null;
|
|
@@ -961,11 +980,11 @@ export type UpdateCommentInput = {
|
|
|
961
980
|
_version?: number | null;
|
|
962
981
|
userCommentsId?: string | null;
|
|
963
982
|
};
|
|
964
|
-
export type DeleteCommentInput = {
|
|
983
|
+
export declare type DeleteCommentInput = {
|
|
965
984
|
id: string;
|
|
966
985
|
_version?: number | null;
|
|
967
986
|
};
|
|
968
|
-
export type CreateDeliverableTypeInput = {
|
|
987
|
+
export declare type CreateDeliverableTypeInput = {
|
|
969
988
|
id?: string | null;
|
|
970
989
|
label: string;
|
|
971
990
|
tenantId: string;
|
|
@@ -975,7 +994,7 @@ export type CreateDeliverableTypeInput = {
|
|
|
975
994
|
disabled?: number | null;
|
|
976
995
|
_version?: number | null;
|
|
977
996
|
};
|
|
978
|
-
export type ModelDeliverableTypeConditionInput = {
|
|
997
|
+
export declare type ModelDeliverableTypeConditionInput = {
|
|
979
998
|
label?: ModelStringInput | null;
|
|
980
999
|
tenantId?: ModelIDInput | null;
|
|
981
1000
|
icon?: ModelDeliverableTypeIconInput | null;
|
|
@@ -986,16 +1005,18 @@ export type ModelDeliverableTypeConditionInput = {
|
|
|
986
1005
|
or?: Array<ModelDeliverableTypeConditionInput | null> | null;
|
|
987
1006
|
not?: ModelDeliverableTypeConditionInput | null;
|
|
988
1007
|
_deleted?: ModelBooleanInput | null;
|
|
1008
|
+
createdAt?: ModelStringInput | null;
|
|
1009
|
+
updatedAt?: ModelStringInput | null;
|
|
989
1010
|
};
|
|
990
|
-
export type ModelDeliverableTypeIconInput = {
|
|
1011
|
+
export declare type ModelDeliverableTypeIconInput = {
|
|
991
1012
|
eq?: DeliverableTypeIcon | null;
|
|
992
1013
|
ne?: DeliverableTypeIcon | null;
|
|
993
1014
|
};
|
|
994
|
-
export type ModelDeliverableUnitInput = {
|
|
1015
|
+
export declare type ModelDeliverableUnitInput = {
|
|
995
1016
|
eq?: DeliverableUnit | null;
|
|
996
1017
|
ne?: DeliverableUnit | null;
|
|
997
1018
|
};
|
|
998
|
-
export type UpdateDeliverableTypeInput = {
|
|
1019
|
+
export declare type UpdateDeliverableTypeInput = {
|
|
999
1020
|
id: string;
|
|
1000
1021
|
label?: string | null;
|
|
1001
1022
|
tenantId?: string | null;
|
|
@@ -1005,11 +1026,11 @@ export type UpdateDeliverableTypeInput = {
|
|
|
1005
1026
|
disabled?: number | null;
|
|
1006
1027
|
_version?: number | null;
|
|
1007
1028
|
};
|
|
1008
|
-
export type DeleteDeliverableTypeInput = {
|
|
1029
|
+
export declare type DeleteDeliverableTypeInput = {
|
|
1009
1030
|
id: string;
|
|
1010
1031
|
_version?: number | null;
|
|
1011
1032
|
};
|
|
1012
|
-
export type CreateDeliverableInput = {
|
|
1033
|
+
export declare type CreateDeliverableInput = {
|
|
1013
1034
|
id?: string | null;
|
|
1014
1035
|
tenantId: string;
|
|
1015
1036
|
count?: number | null;
|
|
@@ -1021,7 +1042,7 @@ export type CreateDeliverableInput = {
|
|
|
1021
1042
|
scheduledTaskDeliverablesId?: string | null;
|
|
1022
1043
|
deliverableTypeDeliverablesId?: string | null;
|
|
1023
1044
|
};
|
|
1024
|
-
export type ModelDeliverableConditionInput = {
|
|
1045
|
+
export declare type ModelDeliverableConditionInput = {
|
|
1025
1046
|
tenantId?: ModelIDInput | null;
|
|
1026
1047
|
count?: ModelIntInput | null;
|
|
1027
1048
|
unit?: ModelDeliverableUnitInput | null;
|
|
@@ -1031,11 +1052,13 @@ export type ModelDeliverableConditionInput = {
|
|
|
1031
1052
|
or?: Array<ModelDeliverableConditionInput | null> | null;
|
|
1032
1053
|
not?: ModelDeliverableConditionInput | null;
|
|
1033
1054
|
_deleted?: ModelBooleanInput | null;
|
|
1055
|
+
createdAt?: ModelStringInput | null;
|
|
1056
|
+
updatedAt?: ModelStringInput | null;
|
|
1034
1057
|
taskDeliverablesId?: ModelIDInput | null;
|
|
1035
1058
|
scheduledTaskDeliverablesId?: ModelIDInput | null;
|
|
1036
1059
|
deliverableTypeDeliverablesId?: ModelIDInput | null;
|
|
1037
1060
|
};
|
|
1038
|
-
export type UpdateDeliverableInput = {
|
|
1061
|
+
export declare type UpdateDeliverableInput = {
|
|
1039
1062
|
id: string;
|
|
1040
1063
|
tenantId?: string | null;
|
|
1041
1064
|
count?: number | null;
|
|
@@ -1047,18 +1070,18 @@ export type UpdateDeliverableInput = {
|
|
|
1047
1070
|
scheduledTaskDeliverablesId?: string | null;
|
|
1048
1071
|
deliverableTypeDeliverablesId?: string | null;
|
|
1049
1072
|
};
|
|
1050
|
-
export type DeleteDeliverableInput = {
|
|
1073
|
+
export declare type DeleteDeliverableInput = {
|
|
1051
1074
|
id: string;
|
|
1052
1075
|
_version?: number | null;
|
|
1053
1076
|
};
|
|
1054
|
-
export type CreateRiderResponsibilityInput = {
|
|
1077
|
+
export declare type CreateRiderResponsibilityInput = {
|
|
1055
1078
|
id?: string | null;
|
|
1056
1079
|
tenantId: string;
|
|
1057
1080
|
label: string;
|
|
1058
1081
|
disabled?: number | null;
|
|
1059
1082
|
_version?: number | null;
|
|
1060
1083
|
};
|
|
1061
|
-
export type ModelRiderResponsibilityConditionInput = {
|
|
1084
|
+
export declare type ModelRiderResponsibilityConditionInput = {
|
|
1062
1085
|
tenantId?: ModelIDInput | null;
|
|
1063
1086
|
label?: ModelStringInput | null;
|
|
1064
1087
|
disabled?: ModelIntInput | null;
|
|
@@ -1066,33 +1089,37 @@ export type ModelRiderResponsibilityConditionInput = {
|
|
|
1066
1089
|
or?: Array<ModelRiderResponsibilityConditionInput | null> | null;
|
|
1067
1090
|
not?: ModelRiderResponsibilityConditionInput | null;
|
|
1068
1091
|
_deleted?: ModelBooleanInput | null;
|
|
1092
|
+
createdAt?: ModelStringInput | null;
|
|
1093
|
+
updatedAt?: ModelStringInput | null;
|
|
1069
1094
|
};
|
|
1070
|
-
export type UpdateRiderResponsibilityInput = {
|
|
1095
|
+
export declare type UpdateRiderResponsibilityInput = {
|
|
1071
1096
|
id: string;
|
|
1072
1097
|
tenantId?: string | null;
|
|
1073
1098
|
label?: string | null;
|
|
1074
1099
|
disabled?: number | null;
|
|
1075
1100
|
_version?: number | null;
|
|
1076
1101
|
};
|
|
1077
|
-
export type DeleteRiderResponsibilityInput = {
|
|
1102
|
+
export declare type DeleteRiderResponsibilityInput = {
|
|
1078
1103
|
id: string;
|
|
1079
1104
|
_version?: number | null;
|
|
1080
1105
|
};
|
|
1081
|
-
export type SendFeedback = {
|
|
1106
|
+
export declare type SendFeedback = {
|
|
1082
1107
|
__typename: "SendFeedback";
|
|
1083
1108
|
successState?: boolean | null;
|
|
1084
1109
|
};
|
|
1085
|
-
export type ModelTenantFilterInput = {
|
|
1110
|
+
export declare type ModelTenantFilterInput = {
|
|
1086
1111
|
id?: ModelIDInput | null;
|
|
1087
1112
|
name?: ModelStringInput | null;
|
|
1088
1113
|
referenceIdentifier?: ModelStringInput | null;
|
|
1114
|
+
createdAt?: ModelStringInput | null;
|
|
1115
|
+
updatedAt?: ModelStringInput | null;
|
|
1089
1116
|
and?: Array<ModelTenantFilterInput | null> | null;
|
|
1090
1117
|
or?: Array<ModelTenantFilterInput | null> | null;
|
|
1091
1118
|
not?: ModelTenantFilterInput | null;
|
|
1092
1119
|
_deleted?: ModelBooleanInput | null;
|
|
1093
1120
|
tenantAdminId?: ModelIDInput | null;
|
|
1094
1121
|
};
|
|
1095
|
-
export type ModelTenantConnection = {
|
|
1122
|
+
export declare type ModelTenantConnection = {
|
|
1096
1123
|
__typename: "ModelTenantConnection";
|
|
1097
1124
|
items: Array<Tenant | null>;
|
|
1098
1125
|
nextToken?: string | null;
|
|
@@ -1102,7 +1129,7 @@ export declare enum ModelSortDirection {
|
|
|
1102
1129
|
ASC = "ASC",
|
|
1103
1130
|
DESC = "DESC"
|
|
1104
1131
|
}
|
|
1105
|
-
export type ModelUserFilterInput = {
|
|
1132
|
+
export declare type ModelUserFilterInput = {
|
|
1106
1133
|
id?: ModelIDInput | null;
|
|
1107
1134
|
username?: ModelStringInput | null;
|
|
1108
1135
|
cognitoId?: ModelIDInput | null;
|
|
@@ -1114,20 +1141,24 @@ export type ModelUserFilterInput = {
|
|
|
1114
1141
|
dateOfBirth?: ModelStringInput | null;
|
|
1115
1142
|
riderResponsibility?: ModelStringInput | null;
|
|
1116
1143
|
disabled?: ModelIntInput | null;
|
|
1144
|
+
createdAt?: ModelStringInput | null;
|
|
1145
|
+
updatedAt?: ModelStringInput | null;
|
|
1117
1146
|
and?: Array<ModelUserFilterInput | null> | null;
|
|
1118
1147
|
or?: Array<ModelUserFilterInput | null> | null;
|
|
1119
1148
|
not?: ModelUserFilterInput | null;
|
|
1120
1149
|
_deleted?: ModelBooleanInput | null;
|
|
1121
1150
|
};
|
|
1122
|
-
export type ModelUserConnection = {
|
|
1151
|
+
export declare type ModelUserConnection = {
|
|
1123
1152
|
__typename: "ModelUserConnection";
|
|
1124
1153
|
items: Array<User | null>;
|
|
1125
1154
|
nextToken?: string | null;
|
|
1126
1155
|
startedAt?: number | null;
|
|
1127
1156
|
};
|
|
1128
|
-
export type ModelPossibleRiderResponsibilitiesFilterInput = {
|
|
1157
|
+
export declare type ModelPossibleRiderResponsibilitiesFilterInput = {
|
|
1129
1158
|
id?: ModelIDInput | null;
|
|
1130
1159
|
tenantId?: ModelIDInput | null;
|
|
1160
|
+
createdAt?: ModelStringInput | null;
|
|
1161
|
+
updatedAt?: ModelStringInput | null;
|
|
1131
1162
|
and?: Array<ModelPossibleRiderResponsibilitiesFilterInput | null> | null;
|
|
1132
1163
|
or?: Array<ModelPossibleRiderResponsibilitiesFilterInput | null> | null;
|
|
1133
1164
|
not?: ModelPossibleRiderResponsibilitiesFilterInput | null;
|
|
@@ -1135,7 +1166,7 @@ export type ModelPossibleRiderResponsibilitiesFilterInput = {
|
|
|
1135
1166
|
userPossibleRiderResponsibilitiesId?: ModelIDInput | null;
|
|
1136
1167
|
riderResponsibilityPossibleUsersId?: ModelIDInput | null;
|
|
1137
1168
|
};
|
|
1138
|
-
export type ModelVehicleFilterInput = {
|
|
1169
|
+
export declare type ModelVehicleFilterInput = {
|
|
1139
1170
|
id?: ModelIDInput | null;
|
|
1140
1171
|
tenantId?: ModelIDInput | null;
|
|
1141
1172
|
name?: ModelStringInput | null;
|
|
@@ -1144,15 +1175,19 @@ export type ModelVehicleFilterInput = {
|
|
|
1144
1175
|
dateOfManufacture?: ModelStringInput | null;
|
|
1145
1176
|
dateOfRegistration?: ModelStringInput | null;
|
|
1146
1177
|
disabled?: ModelIntInput | null;
|
|
1178
|
+
createdAt?: ModelStringInput | null;
|
|
1179
|
+
updatedAt?: ModelStringInput | null;
|
|
1147
1180
|
and?: Array<ModelVehicleFilterInput | null> | null;
|
|
1148
1181
|
or?: Array<ModelVehicleFilterInput | null> | null;
|
|
1149
1182
|
not?: ModelVehicleFilterInput | null;
|
|
1150
1183
|
_deleted?: ModelBooleanInput | null;
|
|
1151
1184
|
userCreatedVehiclesId?: ModelIDInput | null;
|
|
1152
1185
|
};
|
|
1153
|
-
export type ModelVehicleAssignmentFilterInput = {
|
|
1186
|
+
export declare type ModelVehicleAssignmentFilterInput = {
|
|
1154
1187
|
id?: ModelIDInput | null;
|
|
1155
1188
|
tenantId?: ModelIDInput | null;
|
|
1189
|
+
createdAt?: ModelStringInput | null;
|
|
1190
|
+
updatedAt?: ModelStringInput | null;
|
|
1156
1191
|
and?: Array<ModelVehicleAssignmentFilterInput | null> | null;
|
|
1157
1192
|
or?: Array<ModelVehicleAssignmentFilterInput | null> | null;
|
|
1158
1193
|
not?: ModelVehicleAssignmentFilterInput | null;
|
|
@@ -1160,7 +1195,7 @@ export type ModelVehicleAssignmentFilterInput = {
|
|
|
1160
1195
|
userVehicleAssignmentsId?: ModelIDInput | null;
|
|
1161
1196
|
vehicleAssignmentsId?: ModelIDInput | null;
|
|
1162
1197
|
};
|
|
1163
|
-
export type ModelLocationFilterInput = {
|
|
1198
|
+
export declare type ModelLocationFilterInput = {
|
|
1164
1199
|
id?: ModelIDInput | null;
|
|
1165
1200
|
tenantId?: ModelIDInput | null;
|
|
1166
1201
|
name?: ModelStringInput | null;
|
|
@@ -1178,13 +1213,15 @@ export type ModelLocationFilterInput = {
|
|
|
1178
1213
|
disabled?: ModelIntInput | null;
|
|
1179
1214
|
googleMapsPlaceId?: ModelStringInput | null;
|
|
1180
1215
|
archived?: ModelIntInput | null;
|
|
1216
|
+
createdAt?: ModelStringInput | null;
|
|
1217
|
+
updatedAt?: ModelStringInput | null;
|
|
1181
1218
|
and?: Array<ModelLocationFilterInput | null> | null;
|
|
1182
1219
|
or?: Array<ModelLocationFilterInput | null> | null;
|
|
1183
1220
|
not?: ModelLocationFilterInput | null;
|
|
1184
1221
|
_deleted?: ModelBooleanInput | null;
|
|
1185
1222
|
userCreatedLocationsId?: ModelIDInput | null;
|
|
1186
1223
|
};
|
|
1187
|
-
export type ModelTaskFilterInput = {
|
|
1224
|
+
export declare type ModelTaskFilterInput = {
|
|
1188
1225
|
id?: ModelIDInput | null;
|
|
1189
1226
|
tenantId?: ModelIDInput | null;
|
|
1190
1227
|
createdAt?: ModelStringInput | null;
|
|
@@ -1206,13 +1243,14 @@ export type ModelTaskFilterInput = {
|
|
|
1206
1243
|
status?: ModelTaskStatusInput | null;
|
|
1207
1244
|
isRiderUsingOwnVehicle?: ModelIntInput | null;
|
|
1208
1245
|
archived?: ModelIntInput | null;
|
|
1246
|
+
updatedAt?: ModelStringInput | null;
|
|
1209
1247
|
and?: Array<ModelTaskFilterInput | null> | null;
|
|
1210
1248
|
or?: Array<ModelTaskFilterInput | null> | null;
|
|
1211
1249
|
not?: ModelTaskFilterInput | null;
|
|
1212
1250
|
_deleted?: ModelBooleanInput | null;
|
|
1213
1251
|
userCreatedTasksId?: ModelIDInput | null;
|
|
1214
1252
|
};
|
|
1215
|
-
export type ModelStringKeyConditionInput = {
|
|
1253
|
+
export declare type ModelStringKeyConditionInput = {
|
|
1216
1254
|
eq?: string | null;
|
|
1217
1255
|
le?: string | null;
|
|
1218
1256
|
lt?: string | null;
|
|
@@ -1221,11 +1259,13 @@ export type ModelStringKeyConditionInput = {
|
|
|
1221
1259
|
between?: Array<string | null> | null;
|
|
1222
1260
|
beginsWith?: string | null;
|
|
1223
1261
|
};
|
|
1224
|
-
export type ModelTaskAssigneeFilterInput = {
|
|
1262
|
+
export declare type ModelTaskAssigneeFilterInput = {
|
|
1225
1263
|
id?: ModelIDInput | null;
|
|
1226
1264
|
tenantId?: ModelIDInput | null;
|
|
1227
1265
|
role?: ModelRoleInput | null;
|
|
1228
1266
|
archived?: ModelIntInput | null;
|
|
1267
|
+
createdAt?: ModelStringInput | null;
|
|
1268
|
+
updatedAt?: ModelStringInput | null;
|
|
1229
1269
|
and?: Array<ModelTaskAssigneeFilterInput | null> | null;
|
|
1230
1270
|
or?: Array<ModelTaskAssigneeFilterInput | null> | null;
|
|
1231
1271
|
not?: ModelTaskAssigneeFilterInput | null;
|
|
@@ -1233,7 +1273,7 @@ export type ModelTaskAssigneeFilterInput = {
|
|
|
1233
1273
|
userAssignmentsId?: ModelIDInput | null;
|
|
1234
1274
|
taskAssigneesId?: ModelIDInput | null;
|
|
1235
1275
|
};
|
|
1236
|
-
export type ModelScheduledTaskFilterInput = {
|
|
1276
|
+
export declare type ModelScheduledTaskFilterInput = {
|
|
1237
1277
|
id?: ModelIDInput | null;
|
|
1238
1278
|
tenantId?: ModelIDInput | null;
|
|
1239
1279
|
cronExpression?: ModelStringInput | null;
|
|
@@ -1242,13 +1282,15 @@ export type ModelScheduledTaskFilterInput = {
|
|
|
1242
1282
|
establishmentLocationId?: ModelIDInput | null;
|
|
1243
1283
|
priority?: ModelPriorityInput | null;
|
|
1244
1284
|
disabled?: ModelIntInput | null;
|
|
1285
|
+
createdAt?: ModelStringInput | null;
|
|
1286
|
+
updatedAt?: ModelStringInput | null;
|
|
1245
1287
|
and?: Array<ModelScheduledTaskFilterInput | null> | null;
|
|
1246
1288
|
or?: Array<ModelScheduledTaskFilterInput | null> | null;
|
|
1247
1289
|
not?: ModelScheduledTaskFilterInput | null;
|
|
1248
1290
|
_deleted?: ModelBooleanInput | null;
|
|
1249
1291
|
userCreatedScheduledTasksId?: ModelIDInput | null;
|
|
1250
1292
|
};
|
|
1251
|
-
export type ModelCommentFilterInput = {
|
|
1293
|
+
export declare type ModelCommentFilterInput = {
|
|
1252
1294
|
id?: ModelIDInput | null;
|
|
1253
1295
|
parentId?: ModelIDInput | null;
|
|
1254
1296
|
owner?: ModelStringInput | null;
|
|
@@ -1256,13 +1298,15 @@ export type ModelCommentFilterInput = {
|
|
|
1256
1298
|
body?: ModelStringInput | null;
|
|
1257
1299
|
visibility?: ModelCommentVisibilityInput | null;
|
|
1258
1300
|
archived?: ModelIntInput | null;
|
|
1301
|
+
createdAt?: ModelStringInput | null;
|
|
1302
|
+
updatedAt?: ModelStringInput | null;
|
|
1259
1303
|
and?: Array<ModelCommentFilterInput | null> | null;
|
|
1260
1304
|
or?: Array<ModelCommentFilterInput | null> | null;
|
|
1261
1305
|
not?: ModelCommentFilterInput | null;
|
|
1262
1306
|
_deleted?: ModelBooleanInput | null;
|
|
1263
1307
|
userCommentsId?: ModelIDInput | null;
|
|
1264
1308
|
};
|
|
1265
|
-
export type ModelDeliverableTypeFilterInput = {
|
|
1309
|
+
export declare type ModelDeliverableTypeFilterInput = {
|
|
1266
1310
|
id?: ModelIDInput | null;
|
|
1267
1311
|
label?: ModelStringInput | null;
|
|
1268
1312
|
tenantId?: ModelIDInput | null;
|
|
@@ -1270,24 +1314,28 @@ export type ModelDeliverableTypeFilterInput = {
|
|
|
1270
1314
|
defaultUnit?: ModelDeliverableUnitInput | null;
|
|
1271
1315
|
tags?: ModelStringInput | null;
|
|
1272
1316
|
disabled?: ModelIntInput | null;
|
|
1317
|
+
createdAt?: ModelStringInput | null;
|
|
1318
|
+
updatedAt?: ModelStringInput | null;
|
|
1273
1319
|
and?: Array<ModelDeliverableTypeFilterInput | null> | null;
|
|
1274
1320
|
or?: Array<ModelDeliverableTypeFilterInput | null> | null;
|
|
1275
1321
|
not?: ModelDeliverableTypeFilterInput | null;
|
|
1276
1322
|
_deleted?: ModelBooleanInput | null;
|
|
1277
1323
|
};
|
|
1278
|
-
export type ModelDeliverableTypeConnection = {
|
|
1324
|
+
export declare type ModelDeliverableTypeConnection = {
|
|
1279
1325
|
__typename: "ModelDeliverableTypeConnection";
|
|
1280
1326
|
items: Array<DeliverableType | null>;
|
|
1281
1327
|
nextToken?: string | null;
|
|
1282
1328
|
startedAt?: number | null;
|
|
1283
1329
|
};
|
|
1284
|
-
export type ModelDeliverableFilterInput = {
|
|
1330
|
+
export declare type ModelDeliverableFilterInput = {
|
|
1285
1331
|
id?: ModelIDInput | null;
|
|
1286
1332
|
tenantId?: ModelIDInput | null;
|
|
1287
1333
|
count?: ModelIntInput | null;
|
|
1288
1334
|
unit?: ModelDeliverableUnitInput | null;
|
|
1289
1335
|
orderInGrid?: ModelIntInput | null;
|
|
1290
1336
|
archived?: ModelIntInput | null;
|
|
1337
|
+
createdAt?: ModelStringInput | null;
|
|
1338
|
+
updatedAt?: ModelStringInput | null;
|
|
1291
1339
|
and?: Array<ModelDeliverableFilterInput | null> | null;
|
|
1292
1340
|
or?: Array<ModelDeliverableFilterInput | null> | null;
|
|
1293
1341
|
not?: ModelDeliverableFilterInput | null;
|
|
@@ -1296,31 +1344,36 @@ export type ModelDeliverableFilterInput = {
|
|
|
1296
1344
|
scheduledTaskDeliverablesId?: ModelIDInput | null;
|
|
1297
1345
|
deliverableTypeDeliverablesId?: ModelIDInput | null;
|
|
1298
1346
|
};
|
|
1299
|
-
export type ModelRiderResponsibilityFilterInput = {
|
|
1347
|
+
export declare type ModelRiderResponsibilityFilterInput = {
|
|
1300
1348
|
id?: ModelIDInput | null;
|
|
1301
1349
|
tenantId?: ModelIDInput | null;
|
|
1302
1350
|
label?: ModelStringInput | null;
|
|
1303
1351
|
disabled?: ModelIntInput | null;
|
|
1352
|
+
createdAt?: ModelStringInput | null;
|
|
1353
|
+
updatedAt?: ModelStringInput | null;
|
|
1304
1354
|
and?: Array<ModelRiderResponsibilityFilterInput | null> | null;
|
|
1305
1355
|
or?: Array<ModelRiderResponsibilityFilterInput | null> | null;
|
|
1306
1356
|
not?: ModelRiderResponsibilityFilterInput | null;
|
|
1307
1357
|
_deleted?: ModelBooleanInput | null;
|
|
1308
1358
|
};
|
|
1309
|
-
export type ModelRiderResponsibilityConnection = {
|
|
1359
|
+
export declare type ModelRiderResponsibilityConnection = {
|
|
1310
1360
|
__typename: "ModelRiderResponsibilityConnection";
|
|
1311
1361
|
items: Array<RiderResponsibility | null>;
|
|
1312
1362
|
nextToken?: string | null;
|
|
1313
1363
|
startedAt?: number | null;
|
|
1314
1364
|
};
|
|
1315
|
-
export type ModelSubscriptionTenantFilterInput = {
|
|
1365
|
+
export declare type ModelSubscriptionTenantFilterInput = {
|
|
1316
1366
|
id?: ModelSubscriptionIDInput | null;
|
|
1317
1367
|
name?: ModelSubscriptionStringInput | null;
|
|
1318
1368
|
referenceIdentifier?: ModelSubscriptionStringInput | null;
|
|
1369
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1370
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1319
1371
|
and?: Array<ModelSubscriptionTenantFilterInput | null> | null;
|
|
1320
1372
|
or?: Array<ModelSubscriptionTenantFilterInput | null> | null;
|
|
1321
1373
|
_deleted?: ModelBooleanInput | null;
|
|
1374
|
+
tenantAdminId?: ModelSubscriptionIDInput | null;
|
|
1322
1375
|
};
|
|
1323
|
-
export type ModelSubscriptionIDInput = {
|
|
1376
|
+
export declare type ModelSubscriptionIDInput = {
|
|
1324
1377
|
ne?: string | null;
|
|
1325
1378
|
eq?: string | null;
|
|
1326
1379
|
le?: string | null;
|
|
@@ -1334,7 +1387,7 @@ export type ModelSubscriptionIDInput = {
|
|
|
1334
1387
|
in?: Array<string | null> | null;
|
|
1335
1388
|
notIn?: Array<string | null> | null;
|
|
1336
1389
|
};
|
|
1337
|
-
export type ModelSubscriptionStringInput = {
|
|
1390
|
+
export declare type ModelSubscriptionStringInput = {
|
|
1338
1391
|
ne?: string | null;
|
|
1339
1392
|
eq?: string | null;
|
|
1340
1393
|
le?: string | null;
|
|
@@ -1348,7 +1401,7 @@ export type ModelSubscriptionStringInput = {
|
|
|
1348
1401
|
in?: Array<string | null> | null;
|
|
1349
1402
|
notIn?: Array<string | null> | null;
|
|
1350
1403
|
};
|
|
1351
|
-
export type ModelSubscriptionUserFilterInput = {
|
|
1404
|
+
export declare type ModelSubscriptionUserFilterInput = {
|
|
1352
1405
|
id?: ModelSubscriptionIDInput | null;
|
|
1353
1406
|
username?: ModelSubscriptionStringInput | null;
|
|
1354
1407
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
@@ -1359,11 +1412,22 @@ export type ModelSubscriptionUserFilterInput = {
|
|
|
1359
1412
|
dateOfBirth?: ModelSubscriptionStringInput | null;
|
|
1360
1413
|
riderResponsibility?: ModelSubscriptionStringInput | null;
|
|
1361
1414
|
disabled?: ModelSubscriptionIntInput | null;
|
|
1415
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1416
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1362
1417
|
and?: Array<ModelSubscriptionUserFilterInput | null> | null;
|
|
1363
1418
|
or?: Array<ModelSubscriptionUserFilterInput | null> | null;
|
|
1364
1419
|
_deleted?: ModelBooleanInput | null;
|
|
1365
|
-
|
|
1366
|
-
|
|
1420
|
+
userPossibleRiderResponsibilitiesId?: ModelSubscriptionIDInput | null;
|
|
1421
|
+
userCommentsId?: ModelSubscriptionIDInput | null;
|
|
1422
|
+
userAssignmentsId?: ModelSubscriptionIDInput | null;
|
|
1423
|
+
userVehicleAssignmentsId?: ModelSubscriptionIDInput | null;
|
|
1424
|
+
userCreatedTasksId?: ModelSubscriptionIDInput | null;
|
|
1425
|
+
userCreatedLocationsId?: ModelSubscriptionIDInput | null;
|
|
1426
|
+
userCreatedVehiclesId?: ModelSubscriptionIDInput | null;
|
|
1427
|
+
userCreatedScheduledTasksId?: ModelSubscriptionIDInput | null;
|
|
1428
|
+
cognitoId?: ModelStringInput | null;
|
|
1429
|
+
};
|
|
1430
|
+
export declare type ModelSubscriptionIntInput = {
|
|
1367
1431
|
ne?: number | null;
|
|
1368
1432
|
eq?: number | null;
|
|
1369
1433
|
le?: number | null;
|
|
@@ -1374,14 +1438,16 @@ export type ModelSubscriptionIntInput = {
|
|
|
1374
1438
|
in?: Array<number | null> | null;
|
|
1375
1439
|
notIn?: Array<number | null> | null;
|
|
1376
1440
|
};
|
|
1377
|
-
export type ModelSubscriptionPossibleRiderResponsibilitiesFilterInput = {
|
|
1441
|
+
export declare type ModelSubscriptionPossibleRiderResponsibilitiesFilterInput = {
|
|
1378
1442
|
id?: ModelSubscriptionIDInput | null;
|
|
1379
1443
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1444
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1445
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1380
1446
|
and?: Array<ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null> | null;
|
|
1381
1447
|
or?: Array<ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null> | null;
|
|
1382
1448
|
_deleted?: ModelBooleanInput | null;
|
|
1383
1449
|
};
|
|
1384
|
-
export type ModelSubscriptionVehicleFilterInput = {
|
|
1450
|
+
export declare type ModelSubscriptionVehicleFilterInput = {
|
|
1385
1451
|
id?: ModelSubscriptionIDInput | null;
|
|
1386
1452
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1387
1453
|
name?: ModelSubscriptionStringInput | null;
|
|
@@ -1390,18 +1456,23 @@ export type ModelSubscriptionVehicleFilterInput = {
|
|
|
1390
1456
|
dateOfManufacture?: ModelSubscriptionStringInput | null;
|
|
1391
1457
|
dateOfRegistration?: ModelSubscriptionStringInput | null;
|
|
1392
1458
|
disabled?: ModelSubscriptionIntInput | null;
|
|
1459
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1460
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1393
1461
|
and?: Array<ModelSubscriptionVehicleFilterInput | null> | null;
|
|
1394
1462
|
or?: Array<ModelSubscriptionVehicleFilterInput | null> | null;
|
|
1395
1463
|
_deleted?: ModelBooleanInput | null;
|
|
1464
|
+
vehicleAssignmentsId?: ModelSubscriptionIDInput | null;
|
|
1396
1465
|
};
|
|
1397
|
-
export type ModelSubscriptionVehicleAssignmentFilterInput = {
|
|
1466
|
+
export declare type ModelSubscriptionVehicleAssignmentFilterInput = {
|
|
1398
1467
|
id?: ModelSubscriptionIDInput | null;
|
|
1399
1468
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1469
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1470
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1400
1471
|
and?: Array<ModelSubscriptionVehicleAssignmentFilterInput | null> | null;
|
|
1401
1472
|
or?: Array<ModelSubscriptionVehicleAssignmentFilterInput | null> | null;
|
|
1402
1473
|
_deleted?: ModelBooleanInput | null;
|
|
1403
1474
|
};
|
|
1404
|
-
export type ModelSubscriptionLocationFilterInput = {
|
|
1475
|
+
export declare type ModelSubscriptionLocationFilterInput = {
|
|
1405
1476
|
id?: ModelSubscriptionIDInput | null;
|
|
1406
1477
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1407
1478
|
name?: ModelSubscriptionStringInput | null;
|
|
@@ -1419,11 +1490,13 @@ export type ModelSubscriptionLocationFilterInput = {
|
|
|
1419
1490
|
disabled?: ModelSubscriptionIntInput | null;
|
|
1420
1491
|
googleMapsPlaceId?: ModelSubscriptionStringInput | null;
|
|
1421
1492
|
archived?: ModelSubscriptionIntInput | null;
|
|
1493
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1494
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1422
1495
|
and?: Array<ModelSubscriptionLocationFilterInput | null> | null;
|
|
1423
1496
|
or?: Array<ModelSubscriptionLocationFilterInput | null> | null;
|
|
1424
1497
|
_deleted?: ModelBooleanInput | null;
|
|
1425
1498
|
};
|
|
1426
|
-
export type ModelSubscriptionTaskFilterInput = {
|
|
1499
|
+
export declare type ModelSubscriptionTaskFilterInput = {
|
|
1427
1500
|
id?: ModelSubscriptionIDInput | null;
|
|
1428
1501
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1429
1502
|
createdAt?: ModelSubscriptionStringInput | null;
|
|
@@ -1445,20 +1518,25 @@ export type ModelSubscriptionTaskFilterInput = {
|
|
|
1445
1518
|
status?: ModelSubscriptionStringInput | null;
|
|
1446
1519
|
isRiderUsingOwnVehicle?: ModelSubscriptionIntInput | null;
|
|
1447
1520
|
archived?: ModelSubscriptionIntInput | null;
|
|
1521
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1448
1522
|
and?: Array<ModelSubscriptionTaskFilterInput | null> | null;
|
|
1449
1523
|
or?: Array<ModelSubscriptionTaskFilterInput | null> | null;
|
|
1450
1524
|
_deleted?: ModelBooleanInput | null;
|
|
1525
|
+
taskAssigneesId?: ModelSubscriptionIDInput | null;
|
|
1526
|
+
taskDeliverablesId?: ModelSubscriptionIDInput | null;
|
|
1451
1527
|
};
|
|
1452
|
-
export type ModelSubscriptionTaskAssigneeFilterInput = {
|
|
1528
|
+
export declare type ModelSubscriptionTaskAssigneeFilterInput = {
|
|
1453
1529
|
id?: ModelSubscriptionIDInput | null;
|
|
1454
1530
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1455
1531
|
role?: ModelSubscriptionStringInput | null;
|
|
1456
1532
|
archived?: ModelSubscriptionIntInput | null;
|
|
1533
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1534
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1457
1535
|
and?: Array<ModelSubscriptionTaskAssigneeFilterInput | null> | null;
|
|
1458
1536
|
or?: Array<ModelSubscriptionTaskAssigneeFilterInput | null> | null;
|
|
1459
1537
|
_deleted?: ModelBooleanInput | null;
|
|
1460
1538
|
};
|
|
1461
|
-
export type ModelSubscriptionScheduledTaskFilterInput = {
|
|
1539
|
+
export declare type ModelSubscriptionScheduledTaskFilterInput = {
|
|
1462
1540
|
id?: ModelSubscriptionIDInput | null;
|
|
1463
1541
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1464
1542
|
cronExpression?: ModelSubscriptionStringInput | null;
|
|
@@ -1467,22 +1545,28 @@ export type ModelSubscriptionScheduledTaskFilterInput = {
|
|
|
1467
1545
|
establishmentLocationId?: ModelSubscriptionIDInput | null;
|
|
1468
1546
|
priority?: ModelSubscriptionStringInput | null;
|
|
1469
1547
|
disabled?: ModelSubscriptionIntInput | null;
|
|
1548
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1549
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1470
1550
|
and?: Array<ModelSubscriptionScheduledTaskFilterInput | null> | null;
|
|
1471
1551
|
or?: Array<ModelSubscriptionScheduledTaskFilterInput | null> | null;
|
|
1472
1552
|
_deleted?: ModelBooleanInput | null;
|
|
1553
|
+
scheduledTaskDeliverablesId?: ModelSubscriptionIDInput | null;
|
|
1473
1554
|
};
|
|
1474
|
-
export type ModelSubscriptionCommentFilterInput = {
|
|
1555
|
+
export declare type ModelSubscriptionCommentFilterInput = {
|
|
1475
1556
|
id?: ModelSubscriptionIDInput | null;
|
|
1476
1557
|
parentId?: ModelSubscriptionIDInput | null;
|
|
1477
1558
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1478
1559
|
body?: ModelSubscriptionStringInput | null;
|
|
1479
1560
|
visibility?: ModelSubscriptionStringInput | null;
|
|
1480
1561
|
archived?: ModelSubscriptionIntInput | null;
|
|
1562
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1563
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1481
1564
|
and?: Array<ModelSubscriptionCommentFilterInput | null> | null;
|
|
1482
1565
|
or?: Array<ModelSubscriptionCommentFilterInput | null> | null;
|
|
1483
1566
|
_deleted?: ModelBooleanInput | null;
|
|
1567
|
+
owner?: ModelStringInput | null;
|
|
1484
1568
|
};
|
|
1485
|
-
export type ModelSubscriptionDeliverableTypeFilterInput = {
|
|
1569
|
+
export declare type ModelSubscriptionDeliverableTypeFilterInput = {
|
|
1486
1570
|
id?: ModelSubscriptionIDInput | null;
|
|
1487
1571
|
label?: ModelSubscriptionStringInput | null;
|
|
1488
1572
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
@@ -1490,35 +1574,43 @@ export type ModelSubscriptionDeliverableTypeFilterInput = {
|
|
|
1490
1574
|
defaultUnit?: ModelSubscriptionStringInput | null;
|
|
1491
1575
|
tags?: ModelSubscriptionStringInput | null;
|
|
1492
1576
|
disabled?: ModelSubscriptionIntInput | null;
|
|
1577
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1578
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1493
1579
|
and?: Array<ModelSubscriptionDeliverableTypeFilterInput | null> | null;
|
|
1494
1580
|
or?: Array<ModelSubscriptionDeliverableTypeFilterInput | null> | null;
|
|
1495
1581
|
_deleted?: ModelBooleanInput | null;
|
|
1582
|
+
deliverableTypeDeliverablesId?: ModelSubscriptionIDInput | null;
|
|
1496
1583
|
};
|
|
1497
|
-
export type ModelSubscriptionDeliverableFilterInput = {
|
|
1584
|
+
export declare type ModelSubscriptionDeliverableFilterInput = {
|
|
1498
1585
|
id?: ModelSubscriptionIDInput | null;
|
|
1499
1586
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1500
1587
|
count?: ModelSubscriptionIntInput | null;
|
|
1501
1588
|
unit?: ModelSubscriptionStringInput | null;
|
|
1502
1589
|
orderInGrid?: ModelSubscriptionIntInput | null;
|
|
1503
1590
|
archived?: ModelSubscriptionIntInput | null;
|
|
1591
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1592
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1504
1593
|
and?: Array<ModelSubscriptionDeliverableFilterInput | null> | null;
|
|
1505
1594
|
or?: Array<ModelSubscriptionDeliverableFilterInput | null> | null;
|
|
1506
1595
|
_deleted?: ModelBooleanInput | null;
|
|
1507
1596
|
};
|
|
1508
|
-
export type ModelSubscriptionRiderResponsibilityFilterInput = {
|
|
1597
|
+
export declare type ModelSubscriptionRiderResponsibilityFilterInput = {
|
|
1509
1598
|
id?: ModelSubscriptionIDInput | null;
|
|
1510
1599
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1511
1600
|
label?: ModelSubscriptionStringInput | null;
|
|
1512
1601
|
disabled?: ModelSubscriptionIntInput | null;
|
|
1602
|
+
createdAt?: ModelSubscriptionStringInput | null;
|
|
1603
|
+
updatedAt?: ModelSubscriptionStringInput | null;
|
|
1513
1604
|
and?: Array<ModelSubscriptionRiderResponsibilityFilterInput | null> | null;
|
|
1514
1605
|
or?: Array<ModelSubscriptionRiderResponsibilityFilterInput | null> | null;
|
|
1515
1606
|
_deleted?: ModelBooleanInput | null;
|
|
1607
|
+
riderResponsibilityPossibleUsersId?: ModelSubscriptionIDInput | null;
|
|
1516
1608
|
};
|
|
1517
|
-
export type CreateTenantMutationVariables = {
|
|
1609
|
+
export declare type CreateTenantMutationVariables = {
|
|
1518
1610
|
input: CreateTenantInput;
|
|
1519
1611
|
condition?: ModelTenantConditionInput | null;
|
|
1520
1612
|
};
|
|
1521
|
-
export type CreateTenantMutation = {
|
|
1613
|
+
export declare type CreateTenantMutation = {
|
|
1522
1614
|
createTenant?: {
|
|
1523
1615
|
__typename: "Tenant";
|
|
1524
1616
|
id: string;
|
|
@@ -1551,11 +1643,11 @@ export type CreateTenantMutation = {
|
|
|
1551
1643
|
tenantAdminId: string;
|
|
1552
1644
|
} | null;
|
|
1553
1645
|
};
|
|
1554
|
-
export type UpdateTenantMutationVariables = {
|
|
1646
|
+
export declare type UpdateTenantMutationVariables = {
|
|
1555
1647
|
input: UpdateTenantInput;
|
|
1556
1648
|
condition?: ModelTenantConditionInput | null;
|
|
1557
1649
|
};
|
|
1558
|
-
export type UpdateTenantMutation = {
|
|
1650
|
+
export declare type UpdateTenantMutation = {
|
|
1559
1651
|
updateTenant?: {
|
|
1560
1652
|
__typename: "Tenant";
|
|
1561
1653
|
id: string;
|
|
@@ -1588,11 +1680,11 @@ export type UpdateTenantMutation = {
|
|
|
1588
1680
|
tenantAdminId: string;
|
|
1589
1681
|
} | null;
|
|
1590
1682
|
};
|
|
1591
|
-
export type DeleteTenantMutationVariables = {
|
|
1683
|
+
export declare type DeleteTenantMutationVariables = {
|
|
1592
1684
|
input: DeleteTenantInput;
|
|
1593
1685
|
condition?: ModelTenantConditionInput | null;
|
|
1594
1686
|
};
|
|
1595
|
-
export type DeleteTenantMutation = {
|
|
1687
|
+
export declare type DeleteTenantMutation = {
|
|
1596
1688
|
deleteTenant?: {
|
|
1597
1689
|
__typename: "Tenant";
|
|
1598
1690
|
id: string;
|
|
@@ -1625,11 +1717,11 @@ export type DeleteTenantMutation = {
|
|
|
1625
1717
|
tenantAdminId: string;
|
|
1626
1718
|
} | null;
|
|
1627
1719
|
};
|
|
1628
|
-
export type CreateUserMutationVariables = {
|
|
1720
|
+
export declare type CreateUserMutationVariables = {
|
|
1629
1721
|
input: CreateUserInput;
|
|
1630
1722
|
condition?: ModelUserConditionInput | null;
|
|
1631
1723
|
};
|
|
1632
|
-
export type CreateUserMutation = {
|
|
1724
|
+
export declare type CreateUserMutation = {
|
|
1633
1725
|
createUser?: {
|
|
1634
1726
|
__typename: "User";
|
|
1635
1727
|
id: string;
|
|
@@ -1713,11 +1805,11 @@ export type CreateUserMutation = {
|
|
|
1713
1805
|
_lastChangedAt: number;
|
|
1714
1806
|
} | null;
|
|
1715
1807
|
};
|
|
1716
|
-
export type UpdateUserMutationVariables = {
|
|
1808
|
+
export declare type UpdateUserMutationVariables = {
|
|
1717
1809
|
input: UpdateUserInput;
|
|
1718
1810
|
condition?: ModelUserConditionInput | null;
|
|
1719
1811
|
};
|
|
1720
|
-
export type UpdateUserMutation = {
|
|
1812
|
+
export declare type UpdateUserMutation = {
|
|
1721
1813
|
updateUser?: {
|
|
1722
1814
|
__typename: "User";
|
|
1723
1815
|
id: string;
|
|
@@ -1801,11 +1893,11 @@ export type UpdateUserMutation = {
|
|
|
1801
1893
|
_lastChangedAt: number;
|
|
1802
1894
|
} | null;
|
|
1803
1895
|
};
|
|
1804
|
-
export type DeleteUserMutationVariables = {
|
|
1896
|
+
export declare type DeleteUserMutationVariables = {
|
|
1805
1897
|
input: DeleteUserInput;
|
|
1806
1898
|
condition?: ModelUserConditionInput | null;
|
|
1807
1899
|
};
|
|
1808
|
-
export type DeleteUserMutation = {
|
|
1900
|
+
export declare type DeleteUserMutation = {
|
|
1809
1901
|
deleteUser?: {
|
|
1810
1902
|
__typename: "User";
|
|
1811
1903
|
id: string;
|
|
@@ -1889,11 +1981,11 @@ export type DeleteUserMutation = {
|
|
|
1889
1981
|
_lastChangedAt: number;
|
|
1890
1982
|
} | null;
|
|
1891
1983
|
};
|
|
1892
|
-
export type CreatePossibleRiderResponsibilitiesMutationVariables = {
|
|
1984
|
+
export declare type CreatePossibleRiderResponsibilitiesMutationVariables = {
|
|
1893
1985
|
input: CreatePossibleRiderResponsibilitiesInput;
|
|
1894
1986
|
condition?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
1895
1987
|
};
|
|
1896
|
-
export type CreatePossibleRiderResponsibilitiesMutation = {
|
|
1988
|
+
export declare type CreatePossibleRiderResponsibilitiesMutation = {
|
|
1897
1989
|
createPossibleRiderResponsibilities?: {
|
|
1898
1990
|
__typename: "PossibleRiderResponsibilities";
|
|
1899
1991
|
id: string;
|
|
@@ -1938,11 +2030,11 @@ export type CreatePossibleRiderResponsibilitiesMutation = {
|
|
|
1938
2030
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
1939
2031
|
} | null;
|
|
1940
2032
|
};
|
|
1941
|
-
export type UpdatePossibleRiderResponsibilitiesMutationVariables = {
|
|
2033
|
+
export declare type UpdatePossibleRiderResponsibilitiesMutationVariables = {
|
|
1942
2034
|
input: UpdatePossibleRiderResponsibilitiesInput;
|
|
1943
2035
|
condition?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
1944
2036
|
};
|
|
1945
|
-
export type UpdatePossibleRiderResponsibilitiesMutation = {
|
|
2037
|
+
export declare type UpdatePossibleRiderResponsibilitiesMutation = {
|
|
1946
2038
|
updatePossibleRiderResponsibilities?: {
|
|
1947
2039
|
__typename: "PossibleRiderResponsibilities";
|
|
1948
2040
|
id: string;
|
|
@@ -1987,11 +2079,11 @@ export type UpdatePossibleRiderResponsibilitiesMutation = {
|
|
|
1987
2079
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
1988
2080
|
} | null;
|
|
1989
2081
|
};
|
|
1990
|
-
export type DeletePossibleRiderResponsibilitiesMutationVariables = {
|
|
2082
|
+
export declare type DeletePossibleRiderResponsibilitiesMutationVariables = {
|
|
1991
2083
|
input: DeletePossibleRiderResponsibilitiesInput;
|
|
1992
2084
|
condition?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
1993
2085
|
};
|
|
1994
|
-
export type DeletePossibleRiderResponsibilitiesMutation = {
|
|
2086
|
+
export declare type DeletePossibleRiderResponsibilitiesMutation = {
|
|
1995
2087
|
deletePossibleRiderResponsibilities?: {
|
|
1996
2088
|
__typename: "PossibleRiderResponsibilities";
|
|
1997
2089
|
id: string;
|
|
@@ -2036,11 +2128,11 @@ export type DeletePossibleRiderResponsibilitiesMutation = {
|
|
|
2036
2128
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
2037
2129
|
} | null;
|
|
2038
2130
|
};
|
|
2039
|
-
export type CreateVehicleMutationVariables = {
|
|
2131
|
+
export declare type CreateVehicleMutationVariables = {
|
|
2040
2132
|
input: CreateVehicleInput;
|
|
2041
2133
|
condition?: ModelVehicleConditionInput | null;
|
|
2042
2134
|
};
|
|
2043
|
-
export type CreateVehicleMutation = {
|
|
2135
|
+
export declare type CreateVehicleMutation = {
|
|
2044
2136
|
createVehicle?: {
|
|
2045
2137
|
__typename: "Vehicle";
|
|
2046
2138
|
id: string;
|
|
@@ -2088,11 +2180,11 @@ export type CreateVehicleMutation = {
|
|
|
2088
2180
|
userCreatedVehiclesId?: string | null;
|
|
2089
2181
|
} | null;
|
|
2090
2182
|
};
|
|
2091
|
-
export type UpdateVehicleMutationVariables = {
|
|
2183
|
+
export declare type UpdateVehicleMutationVariables = {
|
|
2092
2184
|
input: UpdateVehicleInput;
|
|
2093
2185
|
condition?: ModelVehicleConditionInput | null;
|
|
2094
2186
|
};
|
|
2095
|
-
export type UpdateVehicleMutation = {
|
|
2187
|
+
export declare type UpdateVehicleMutation = {
|
|
2096
2188
|
updateVehicle?: {
|
|
2097
2189
|
__typename: "Vehicle";
|
|
2098
2190
|
id: string;
|
|
@@ -2140,11 +2232,11 @@ export type UpdateVehicleMutation = {
|
|
|
2140
2232
|
userCreatedVehiclesId?: string | null;
|
|
2141
2233
|
} | null;
|
|
2142
2234
|
};
|
|
2143
|
-
export type DeleteVehicleMutationVariables = {
|
|
2235
|
+
export declare type DeleteVehicleMutationVariables = {
|
|
2144
2236
|
input: DeleteVehicleInput;
|
|
2145
2237
|
condition?: ModelVehicleConditionInput | null;
|
|
2146
2238
|
};
|
|
2147
|
-
export type DeleteVehicleMutation = {
|
|
2239
|
+
export declare type DeleteVehicleMutation = {
|
|
2148
2240
|
deleteVehicle?: {
|
|
2149
2241
|
__typename: "Vehicle";
|
|
2150
2242
|
id: string;
|
|
@@ -2192,11 +2284,11 @@ export type DeleteVehicleMutation = {
|
|
|
2192
2284
|
userCreatedVehiclesId?: string | null;
|
|
2193
2285
|
} | null;
|
|
2194
2286
|
};
|
|
2195
|
-
export type CreateVehicleAssignmentMutationVariables = {
|
|
2287
|
+
export declare type CreateVehicleAssignmentMutationVariables = {
|
|
2196
2288
|
input: CreateVehicleAssignmentInput;
|
|
2197
2289
|
condition?: ModelVehicleAssignmentConditionInput | null;
|
|
2198
2290
|
};
|
|
2199
|
-
export type CreateVehicleAssignmentMutation = {
|
|
2291
|
+
export declare type CreateVehicleAssignmentMutation = {
|
|
2200
2292
|
createVehicleAssignment?: {
|
|
2201
2293
|
__typename: "VehicleAssignment";
|
|
2202
2294
|
id: string;
|
|
@@ -2246,11 +2338,11 @@ export type CreateVehicleAssignmentMutation = {
|
|
|
2246
2338
|
vehicleAssignmentsId?: string | null;
|
|
2247
2339
|
} | null;
|
|
2248
2340
|
};
|
|
2249
|
-
export type UpdateVehicleAssignmentMutationVariables = {
|
|
2341
|
+
export declare type UpdateVehicleAssignmentMutationVariables = {
|
|
2250
2342
|
input: UpdateVehicleAssignmentInput;
|
|
2251
2343
|
condition?: ModelVehicleAssignmentConditionInput | null;
|
|
2252
2344
|
};
|
|
2253
|
-
export type UpdateVehicleAssignmentMutation = {
|
|
2345
|
+
export declare type UpdateVehicleAssignmentMutation = {
|
|
2254
2346
|
updateVehicleAssignment?: {
|
|
2255
2347
|
__typename: "VehicleAssignment";
|
|
2256
2348
|
id: string;
|
|
@@ -2300,11 +2392,11 @@ export type UpdateVehicleAssignmentMutation = {
|
|
|
2300
2392
|
vehicleAssignmentsId?: string | null;
|
|
2301
2393
|
} | null;
|
|
2302
2394
|
};
|
|
2303
|
-
export type DeleteVehicleAssignmentMutationVariables = {
|
|
2395
|
+
export declare type DeleteVehicleAssignmentMutationVariables = {
|
|
2304
2396
|
input: DeleteVehicleAssignmentInput;
|
|
2305
2397
|
condition?: ModelVehicleAssignmentConditionInput | null;
|
|
2306
2398
|
};
|
|
2307
|
-
export type DeleteVehicleAssignmentMutation = {
|
|
2399
|
+
export declare type DeleteVehicleAssignmentMutation = {
|
|
2308
2400
|
deleteVehicleAssignment?: {
|
|
2309
2401
|
__typename: "VehicleAssignment";
|
|
2310
2402
|
id: string;
|
|
@@ -2354,11 +2446,11 @@ export type DeleteVehicleAssignmentMutation = {
|
|
|
2354
2446
|
vehicleAssignmentsId?: string | null;
|
|
2355
2447
|
} | null;
|
|
2356
2448
|
};
|
|
2357
|
-
export type CreateLocationMutationVariables = {
|
|
2449
|
+
export declare type CreateLocationMutationVariables = {
|
|
2358
2450
|
input: CreateLocationInput;
|
|
2359
2451
|
condition?: ModelLocationConditionInput | null;
|
|
2360
2452
|
};
|
|
2361
|
-
export type CreateLocationMutation = {
|
|
2453
|
+
export declare type CreateLocationMutation = {
|
|
2362
2454
|
createLocation?: {
|
|
2363
2455
|
__typename: "Location";
|
|
2364
2456
|
id: string;
|
|
@@ -2457,11 +2549,11 @@ export type CreateLocationMutation = {
|
|
|
2457
2549
|
userCreatedLocationsId?: string | null;
|
|
2458
2550
|
} | null;
|
|
2459
2551
|
};
|
|
2460
|
-
export type UpdateLocationMutationVariables = {
|
|
2552
|
+
export declare type UpdateLocationMutationVariables = {
|
|
2461
2553
|
input: UpdateLocationInput;
|
|
2462
2554
|
condition?: ModelLocationConditionInput | null;
|
|
2463
2555
|
};
|
|
2464
|
-
export type UpdateLocationMutation = {
|
|
2556
|
+
export declare type UpdateLocationMutation = {
|
|
2465
2557
|
updateLocation?: {
|
|
2466
2558
|
__typename: "Location";
|
|
2467
2559
|
id: string;
|
|
@@ -2560,11 +2652,11 @@ export type UpdateLocationMutation = {
|
|
|
2560
2652
|
userCreatedLocationsId?: string | null;
|
|
2561
2653
|
} | null;
|
|
2562
2654
|
};
|
|
2563
|
-
export type DeleteLocationMutationVariables = {
|
|
2655
|
+
export declare type DeleteLocationMutationVariables = {
|
|
2564
2656
|
input: DeleteLocationInput;
|
|
2565
2657
|
condition?: ModelLocationConditionInput | null;
|
|
2566
2658
|
};
|
|
2567
|
-
export type DeleteLocationMutation = {
|
|
2659
|
+
export declare type DeleteLocationMutation = {
|
|
2568
2660
|
deleteLocation?: {
|
|
2569
2661
|
__typename: "Location";
|
|
2570
2662
|
id: string;
|
|
@@ -2663,11 +2755,11 @@ export type DeleteLocationMutation = {
|
|
|
2663
2755
|
userCreatedLocationsId?: string | null;
|
|
2664
2756
|
} | null;
|
|
2665
2757
|
};
|
|
2666
|
-
export type CreateTaskMutationVariables = {
|
|
2758
|
+
export declare type CreateTaskMutationVariables = {
|
|
2667
2759
|
input: CreateTaskInput;
|
|
2668
2760
|
condition?: ModelTaskConditionInput | null;
|
|
2669
2761
|
};
|
|
2670
|
-
export type CreateTaskMutation = {
|
|
2762
|
+
export declare type CreateTaskMutation = {
|
|
2671
2763
|
createTask?: {
|
|
2672
2764
|
__typename: "Task";
|
|
2673
2765
|
id: string;
|
|
@@ -2839,11 +2931,11 @@ export type CreateTaskMutation = {
|
|
|
2839
2931
|
userCreatedTasksId?: string | null;
|
|
2840
2932
|
} | null;
|
|
2841
2933
|
};
|
|
2842
|
-
export type UpdateTaskMutationVariables = {
|
|
2934
|
+
export declare type UpdateTaskMutationVariables = {
|
|
2843
2935
|
input: UpdateTaskInput;
|
|
2844
2936
|
condition?: ModelTaskConditionInput | null;
|
|
2845
2937
|
};
|
|
2846
|
-
export type UpdateTaskMutation = {
|
|
2938
|
+
export declare type UpdateTaskMutation = {
|
|
2847
2939
|
updateTask?: {
|
|
2848
2940
|
__typename: "Task";
|
|
2849
2941
|
id: string;
|
|
@@ -3015,11 +3107,11 @@ export type UpdateTaskMutation = {
|
|
|
3015
3107
|
userCreatedTasksId?: string | null;
|
|
3016
3108
|
} | null;
|
|
3017
3109
|
};
|
|
3018
|
-
export type DeleteTaskMutationVariables = {
|
|
3110
|
+
export declare type DeleteTaskMutationVariables = {
|
|
3019
3111
|
input: DeleteTaskInput;
|
|
3020
3112
|
condition?: ModelTaskConditionInput | null;
|
|
3021
3113
|
};
|
|
3022
|
-
export type DeleteTaskMutation = {
|
|
3114
|
+
export declare type DeleteTaskMutation = {
|
|
3023
3115
|
deleteTask?: {
|
|
3024
3116
|
__typename: "Task";
|
|
3025
3117
|
id: string;
|
|
@@ -3191,11 +3283,11 @@ export type DeleteTaskMutation = {
|
|
|
3191
3283
|
userCreatedTasksId?: string | null;
|
|
3192
3284
|
} | null;
|
|
3193
3285
|
};
|
|
3194
|
-
export type CreateTaskAssigneeMutationVariables = {
|
|
3286
|
+
export declare type CreateTaskAssigneeMutationVariables = {
|
|
3195
3287
|
input: CreateTaskAssigneeInput;
|
|
3196
3288
|
condition?: ModelTaskAssigneeConditionInput | null;
|
|
3197
3289
|
};
|
|
3198
|
-
export type CreateTaskAssigneeMutation = {
|
|
3290
|
+
export declare type CreateTaskAssigneeMutation = {
|
|
3199
3291
|
createTaskAssignee?: {
|
|
3200
3292
|
__typename: "TaskAssignee";
|
|
3201
3293
|
id: string;
|
|
@@ -3259,11 +3351,11 @@ export type CreateTaskAssigneeMutation = {
|
|
|
3259
3351
|
taskAssigneesId?: string | null;
|
|
3260
3352
|
} | null;
|
|
3261
3353
|
};
|
|
3262
|
-
export type UpdateTaskAssigneeMutationVariables = {
|
|
3354
|
+
export declare type UpdateTaskAssigneeMutationVariables = {
|
|
3263
3355
|
input: UpdateTaskAssigneeInput;
|
|
3264
3356
|
condition?: ModelTaskAssigneeConditionInput | null;
|
|
3265
3357
|
};
|
|
3266
|
-
export type UpdateTaskAssigneeMutation = {
|
|
3358
|
+
export declare type UpdateTaskAssigneeMutation = {
|
|
3267
3359
|
updateTaskAssignee?: {
|
|
3268
3360
|
__typename: "TaskAssignee";
|
|
3269
3361
|
id: string;
|
|
@@ -3327,11 +3419,11 @@ export type UpdateTaskAssigneeMutation = {
|
|
|
3327
3419
|
taskAssigneesId?: string | null;
|
|
3328
3420
|
} | null;
|
|
3329
3421
|
};
|
|
3330
|
-
export type DeleteTaskAssigneeMutationVariables = {
|
|
3422
|
+
export declare type DeleteTaskAssigneeMutationVariables = {
|
|
3331
3423
|
input: DeleteTaskAssigneeInput;
|
|
3332
3424
|
condition?: ModelTaskAssigneeConditionInput | null;
|
|
3333
3425
|
};
|
|
3334
|
-
export type DeleteTaskAssigneeMutation = {
|
|
3426
|
+
export declare type DeleteTaskAssigneeMutation = {
|
|
3335
3427
|
deleteTaskAssignee?: {
|
|
3336
3428
|
__typename: "TaskAssignee";
|
|
3337
3429
|
id: string;
|
|
@@ -3395,11 +3487,11 @@ export type DeleteTaskAssigneeMutation = {
|
|
|
3395
3487
|
taskAssigneesId?: string | null;
|
|
3396
3488
|
} | null;
|
|
3397
3489
|
};
|
|
3398
|
-
export type CreateScheduledTaskMutationVariables = {
|
|
3490
|
+
export declare type CreateScheduledTaskMutationVariables = {
|
|
3399
3491
|
input: CreateScheduledTaskInput;
|
|
3400
3492
|
condition?: ModelScheduledTaskConditionInput | null;
|
|
3401
3493
|
};
|
|
3402
|
-
export type CreateScheduledTaskMutation = {
|
|
3494
|
+
export declare type CreateScheduledTaskMutation = {
|
|
3403
3495
|
createScheduledTask?: {
|
|
3404
3496
|
__typename: "ScheduledTask";
|
|
3405
3497
|
id: string;
|
|
@@ -3549,11 +3641,11 @@ export type CreateScheduledTaskMutation = {
|
|
|
3549
3641
|
userCreatedScheduledTasksId?: string | null;
|
|
3550
3642
|
} | null;
|
|
3551
3643
|
};
|
|
3552
|
-
export type UpdateScheduledTaskMutationVariables = {
|
|
3644
|
+
export declare type UpdateScheduledTaskMutationVariables = {
|
|
3553
3645
|
input: UpdateScheduledTaskInput;
|
|
3554
3646
|
condition?: ModelScheduledTaskConditionInput | null;
|
|
3555
3647
|
};
|
|
3556
|
-
export type UpdateScheduledTaskMutation = {
|
|
3648
|
+
export declare type UpdateScheduledTaskMutation = {
|
|
3557
3649
|
updateScheduledTask?: {
|
|
3558
3650
|
__typename: "ScheduledTask";
|
|
3559
3651
|
id: string;
|
|
@@ -3703,11 +3795,11 @@ export type UpdateScheduledTaskMutation = {
|
|
|
3703
3795
|
userCreatedScheduledTasksId?: string | null;
|
|
3704
3796
|
} | null;
|
|
3705
3797
|
};
|
|
3706
|
-
export type DeleteScheduledTaskMutationVariables = {
|
|
3798
|
+
export declare type DeleteScheduledTaskMutationVariables = {
|
|
3707
3799
|
input: DeleteScheduledTaskInput;
|
|
3708
3800
|
condition?: ModelScheduledTaskConditionInput | null;
|
|
3709
3801
|
};
|
|
3710
|
-
export type DeleteScheduledTaskMutation = {
|
|
3802
|
+
export declare type DeleteScheduledTaskMutation = {
|
|
3711
3803
|
deleteScheduledTask?: {
|
|
3712
3804
|
__typename: "ScheduledTask";
|
|
3713
3805
|
id: string;
|
|
@@ -3857,11 +3949,11 @@ export type DeleteScheduledTaskMutation = {
|
|
|
3857
3949
|
userCreatedScheduledTasksId?: string | null;
|
|
3858
3950
|
} | null;
|
|
3859
3951
|
};
|
|
3860
|
-
export type CreateCommentMutationVariables = {
|
|
3952
|
+
export declare type CreateCommentMutationVariables = {
|
|
3861
3953
|
input: CreateCommentInput;
|
|
3862
3954
|
condition?: ModelCommentConditionInput | null;
|
|
3863
3955
|
};
|
|
3864
|
-
export type CreateCommentMutation = {
|
|
3956
|
+
export declare type CreateCommentMutation = {
|
|
3865
3957
|
createComment?: {
|
|
3866
3958
|
__typename: "Comment";
|
|
3867
3959
|
id: string;
|
|
@@ -3898,11 +3990,11 @@ export type CreateCommentMutation = {
|
|
|
3898
3990
|
userCommentsId?: string | null;
|
|
3899
3991
|
} | null;
|
|
3900
3992
|
};
|
|
3901
|
-
export type UpdateCommentMutationVariables = {
|
|
3993
|
+
export declare type UpdateCommentMutationVariables = {
|
|
3902
3994
|
input: UpdateCommentInput;
|
|
3903
3995
|
condition?: ModelCommentConditionInput | null;
|
|
3904
3996
|
};
|
|
3905
|
-
export type UpdateCommentMutation = {
|
|
3997
|
+
export declare type UpdateCommentMutation = {
|
|
3906
3998
|
updateComment?: {
|
|
3907
3999
|
__typename: "Comment";
|
|
3908
4000
|
id: string;
|
|
@@ -3939,11 +4031,11 @@ export type UpdateCommentMutation = {
|
|
|
3939
4031
|
userCommentsId?: string | null;
|
|
3940
4032
|
} | null;
|
|
3941
4033
|
};
|
|
3942
|
-
export type DeleteCommentMutationVariables = {
|
|
4034
|
+
export declare type DeleteCommentMutationVariables = {
|
|
3943
4035
|
input: DeleteCommentInput;
|
|
3944
4036
|
condition?: ModelCommentConditionInput | null;
|
|
3945
4037
|
};
|
|
3946
|
-
export type DeleteCommentMutation = {
|
|
4038
|
+
export declare type DeleteCommentMutation = {
|
|
3947
4039
|
deleteComment?: {
|
|
3948
4040
|
__typename: "Comment";
|
|
3949
4041
|
id: string;
|
|
@@ -3980,11 +4072,11 @@ export type DeleteCommentMutation = {
|
|
|
3980
4072
|
userCommentsId?: string | null;
|
|
3981
4073
|
} | null;
|
|
3982
4074
|
};
|
|
3983
|
-
export type CreateDeliverableTypeMutationVariables = {
|
|
4075
|
+
export declare type CreateDeliverableTypeMutationVariables = {
|
|
3984
4076
|
input: CreateDeliverableTypeInput;
|
|
3985
4077
|
condition?: ModelDeliverableTypeConditionInput | null;
|
|
3986
4078
|
};
|
|
3987
|
-
export type CreateDeliverableTypeMutation = {
|
|
4079
|
+
export declare type CreateDeliverableTypeMutation = {
|
|
3988
4080
|
createDeliverableType?: {
|
|
3989
4081
|
__typename: "DeliverableType";
|
|
3990
4082
|
id: string;
|
|
@@ -4006,11 +4098,11 @@ export type CreateDeliverableTypeMutation = {
|
|
|
4006
4098
|
_lastChangedAt: number;
|
|
4007
4099
|
} | null;
|
|
4008
4100
|
};
|
|
4009
|
-
export type UpdateDeliverableTypeMutationVariables = {
|
|
4101
|
+
export declare type UpdateDeliverableTypeMutationVariables = {
|
|
4010
4102
|
input: UpdateDeliverableTypeInput;
|
|
4011
4103
|
condition?: ModelDeliverableTypeConditionInput | null;
|
|
4012
4104
|
};
|
|
4013
|
-
export type UpdateDeliverableTypeMutation = {
|
|
4105
|
+
export declare type UpdateDeliverableTypeMutation = {
|
|
4014
4106
|
updateDeliverableType?: {
|
|
4015
4107
|
__typename: "DeliverableType";
|
|
4016
4108
|
id: string;
|
|
@@ -4032,11 +4124,11 @@ export type UpdateDeliverableTypeMutation = {
|
|
|
4032
4124
|
_lastChangedAt: number;
|
|
4033
4125
|
} | null;
|
|
4034
4126
|
};
|
|
4035
|
-
export type DeleteDeliverableTypeMutationVariables = {
|
|
4127
|
+
export declare type DeleteDeliverableTypeMutationVariables = {
|
|
4036
4128
|
input: DeleteDeliverableTypeInput;
|
|
4037
4129
|
condition?: ModelDeliverableTypeConditionInput | null;
|
|
4038
4130
|
};
|
|
4039
|
-
export type DeleteDeliverableTypeMutation = {
|
|
4131
|
+
export declare type DeleteDeliverableTypeMutation = {
|
|
4040
4132
|
deleteDeliverableType?: {
|
|
4041
4133
|
__typename: "DeliverableType";
|
|
4042
4134
|
id: string;
|
|
@@ -4058,11 +4150,11 @@ export type DeleteDeliverableTypeMutation = {
|
|
|
4058
4150
|
_lastChangedAt: number;
|
|
4059
4151
|
} | null;
|
|
4060
4152
|
};
|
|
4061
|
-
export type CreateDeliverableMutationVariables = {
|
|
4153
|
+
export declare type CreateDeliverableMutationVariables = {
|
|
4062
4154
|
input: CreateDeliverableInput;
|
|
4063
4155
|
condition?: ModelDeliverableConditionInput | null;
|
|
4064
4156
|
};
|
|
4065
|
-
export type CreateDeliverableMutation = {
|
|
4157
|
+
export declare type CreateDeliverableMutation = {
|
|
4066
4158
|
createDeliverable?: {
|
|
4067
4159
|
__typename: "Deliverable";
|
|
4068
4160
|
id: string;
|
|
@@ -4147,11 +4239,11 @@ export type CreateDeliverableMutation = {
|
|
|
4147
4239
|
deliverableTypeDeliverablesId?: string | null;
|
|
4148
4240
|
} | null;
|
|
4149
4241
|
};
|
|
4150
|
-
export type UpdateDeliverableMutationVariables = {
|
|
4242
|
+
export declare type UpdateDeliverableMutationVariables = {
|
|
4151
4243
|
input: UpdateDeliverableInput;
|
|
4152
4244
|
condition?: ModelDeliverableConditionInput | null;
|
|
4153
4245
|
};
|
|
4154
|
-
export type UpdateDeliverableMutation = {
|
|
4246
|
+
export declare type UpdateDeliverableMutation = {
|
|
4155
4247
|
updateDeliverable?: {
|
|
4156
4248
|
__typename: "Deliverable";
|
|
4157
4249
|
id: string;
|
|
@@ -4236,11 +4328,11 @@ export type UpdateDeliverableMutation = {
|
|
|
4236
4328
|
deliverableTypeDeliverablesId?: string | null;
|
|
4237
4329
|
} | null;
|
|
4238
4330
|
};
|
|
4239
|
-
export type DeleteDeliverableMutationVariables = {
|
|
4331
|
+
export declare type DeleteDeliverableMutationVariables = {
|
|
4240
4332
|
input: DeleteDeliverableInput;
|
|
4241
4333
|
condition?: ModelDeliverableConditionInput | null;
|
|
4242
4334
|
};
|
|
4243
|
-
export type DeleteDeliverableMutation = {
|
|
4335
|
+
export declare type DeleteDeliverableMutation = {
|
|
4244
4336
|
deleteDeliverable?: {
|
|
4245
4337
|
__typename: "Deliverable";
|
|
4246
4338
|
id: string;
|
|
@@ -4325,11 +4417,11 @@ export type DeleteDeliverableMutation = {
|
|
|
4325
4417
|
deliverableTypeDeliverablesId?: string | null;
|
|
4326
4418
|
} | null;
|
|
4327
4419
|
};
|
|
4328
|
-
export type CreateRiderResponsibilityMutationVariables = {
|
|
4420
|
+
export declare type CreateRiderResponsibilityMutationVariables = {
|
|
4329
4421
|
input: CreateRiderResponsibilityInput;
|
|
4330
4422
|
condition?: ModelRiderResponsibilityConditionInput | null;
|
|
4331
4423
|
};
|
|
4332
|
-
export type CreateRiderResponsibilityMutation = {
|
|
4424
|
+
export declare type CreateRiderResponsibilityMutation = {
|
|
4333
4425
|
createRiderResponsibility?: {
|
|
4334
4426
|
__typename: "RiderResponsibility";
|
|
4335
4427
|
id: string;
|
|
@@ -4348,11 +4440,11 @@ export type CreateRiderResponsibilityMutation = {
|
|
|
4348
4440
|
_lastChangedAt: number;
|
|
4349
4441
|
} | null;
|
|
4350
4442
|
};
|
|
4351
|
-
export type UpdateRiderResponsibilityMutationVariables = {
|
|
4443
|
+
export declare type UpdateRiderResponsibilityMutationVariables = {
|
|
4352
4444
|
input: UpdateRiderResponsibilityInput;
|
|
4353
4445
|
condition?: ModelRiderResponsibilityConditionInput | null;
|
|
4354
4446
|
};
|
|
4355
|
-
export type UpdateRiderResponsibilityMutation = {
|
|
4447
|
+
export declare type UpdateRiderResponsibilityMutation = {
|
|
4356
4448
|
updateRiderResponsibility?: {
|
|
4357
4449
|
__typename: "RiderResponsibility";
|
|
4358
4450
|
id: string;
|
|
@@ -4371,11 +4463,11 @@ export type UpdateRiderResponsibilityMutation = {
|
|
|
4371
4463
|
_lastChangedAt: number;
|
|
4372
4464
|
} | null;
|
|
4373
4465
|
};
|
|
4374
|
-
export type DeleteRiderResponsibilityMutationVariables = {
|
|
4466
|
+
export declare type DeleteRiderResponsibilityMutationVariables = {
|
|
4375
4467
|
input: DeleteRiderResponsibilityInput;
|
|
4376
4468
|
condition?: ModelRiderResponsibilityConditionInput | null;
|
|
4377
4469
|
};
|
|
4378
|
-
export type DeleteRiderResponsibilityMutation = {
|
|
4470
|
+
export declare type DeleteRiderResponsibilityMutation = {
|
|
4379
4471
|
deleteRiderResponsibility?: {
|
|
4380
4472
|
__typename: "RiderResponsibility";
|
|
4381
4473
|
id: string;
|
|
@@ -4394,13 +4486,13 @@ export type DeleteRiderResponsibilityMutation = {
|
|
|
4394
4486
|
_lastChangedAt: number;
|
|
4395
4487
|
} | null;
|
|
4396
4488
|
};
|
|
4397
|
-
export type RegisterUserMutationVariables = {
|
|
4489
|
+
export declare type RegisterUserMutationVariables = {
|
|
4398
4490
|
name?: string | null;
|
|
4399
4491
|
email?: string | null;
|
|
4400
4492
|
tenantId?: string | null;
|
|
4401
4493
|
roles?: Array<Role | null> | null;
|
|
4402
4494
|
};
|
|
4403
|
-
export type RegisterUserMutation = {
|
|
4495
|
+
export declare type RegisterUserMutation = {
|
|
4404
4496
|
registerUser?: {
|
|
4405
4497
|
__typename: "User";
|
|
4406
4498
|
id: string;
|
|
@@ -4484,12 +4576,12 @@ export type RegisterUserMutation = {
|
|
|
4484
4576
|
_lastChangedAt: number;
|
|
4485
4577
|
} | null;
|
|
4486
4578
|
};
|
|
4487
|
-
export type RegisterTenantMutationVariables = {
|
|
4579
|
+
export declare type RegisterTenantMutationVariables = {
|
|
4488
4580
|
name?: string | null;
|
|
4489
4581
|
emailAddress?: string | null;
|
|
4490
4582
|
tenantName?: string | null;
|
|
4491
4583
|
};
|
|
4492
|
-
export type RegisterTenantMutation = {
|
|
4584
|
+
export declare type RegisterTenantMutation = {
|
|
4493
4585
|
registerTenant?: {
|
|
4494
4586
|
__typename: "Tenant";
|
|
4495
4587
|
id: string;
|
|
@@ -4522,11 +4614,11 @@ export type RegisterTenantMutation = {
|
|
|
4522
4614
|
tenantAdminId: string;
|
|
4523
4615
|
} | null;
|
|
4524
4616
|
};
|
|
4525
|
-
export type UpdateUserRolesMutationVariables = {
|
|
4617
|
+
export declare type UpdateUserRolesMutationVariables = {
|
|
4526
4618
|
userId?: string | null;
|
|
4527
4619
|
roles?: Array<Role | null> | null;
|
|
4528
4620
|
};
|
|
4529
|
-
export type UpdateUserRolesMutation = {
|
|
4621
|
+
export declare type UpdateUserRolesMutation = {
|
|
4530
4622
|
updateUserRoles?: {
|
|
4531
4623
|
__typename: "User";
|
|
4532
4624
|
id: string;
|
|
@@ -4610,10 +4702,10 @@ export type UpdateUserRolesMutation = {
|
|
|
4610
4702
|
_lastChangedAt: number;
|
|
4611
4703
|
} | null;
|
|
4612
4704
|
};
|
|
4613
|
-
export type DisableUserMutationVariables = {
|
|
4705
|
+
export declare type DisableUserMutationVariables = {
|
|
4614
4706
|
userId?: string | null;
|
|
4615
4707
|
};
|
|
4616
|
-
export type DisableUserMutation = {
|
|
4708
|
+
export declare type DisableUserMutation = {
|
|
4617
4709
|
disableUser?: {
|
|
4618
4710
|
__typename: "User";
|
|
4619
4711
|
id: string;
|
|
@@ -4697,10 +4789,10 @@ export type DisableUserMutation = {
|
|
|
4697
4789
|
_lastChangedAt: number;
|
|
4698
4790
|
} | null;
|
|
4699
4791
|
};
|
|
4700
|
-
export type EnableUserMutationVariables = {
|
|
4792
|
+
export declare type EnableUserMutationVariables = {
|
|
4701
4793
|
userId?: string | null;
|
|
4702
4794
|
};
|
|
4703
|
-
export type EnableUserMutation = {
|
|
4795
|
+
export declare type EnableUserMutation = {
|
|
4704
4796
|
enableUser?: {
|
|
4705
4797
|
__typename: "User";
|
|
4706
4798
|
id: string;
|
|
@@ -4784,11 +4876,11 @@ export type EnableUserMutation = {
|
|
|
4784
4876
|
_lastChangedAt: number;
|
|
4785
4877
|
} | null;
|
|
4786
4878
|
};
|
|
4787
|
-
export type UpdateUserEmailMutationVariables = {
|
|
4879
|
+
export declare type UpdateUserEmailMutationVariables = {
|
|
4788
4880
|
userId?: string | null;
|
|
4789
4881
|
emailAddress?: string | null;
|
|
4790
4882
|
};
|
|
4791
|
-
export type UpdateUserEmailMutation = {
|
|
4883
|
+
export declare type UpdateUserEmailMutation = {
|
|
4792
4884
|
updateUserEmail?: {
|
|
4793
4885
|
__typename: "User";
|
|
4794
4886
|
id: string;
|
|
@@ -4872,19 +4964,19 @@ export type UpdateUserEmailMutation = {
|
|
|
4872
4964
|
_lastChangedAt: number;
|
|
4873
4965
|
} | null;
|
|
4874
4966
|
};
|
|
4875
|
-
export type ResetUserPasswordMutationVariables = {
|
|
4967
|
+
export declare type ResetUserPasswordMutationVariables = {
|
|
4876
4968
|
userId?: string | null;
|
|
4877
4969
|
};
|
|
4878
|
-
export type ResetUserPasswordMutation = {
|
|
4970
|
+
export declare type ResetUserPasswordMutation = {
|
|
4879
4971
|
resetUserPassword?: {
|
|
4880
4972
|
__typename: "SendFeedback";
|
|
4881
4973
|
successState?: boolean | null;
|
|
4882
4974
|
} | null;
|
|
4883
4975
|
};
|
|
4884
|
-
export type AdminDeleteRiderResponsibilityMutationVariables = {
|
|
4976
|
+
export declare type AdminDeleteRiderResponsibilityMutationVariables = {
|
|
4885
4977
|
riderResponsibilityId?: string | null;
|
|
4886
4978
|
};
|
|
4887
|
-
export type AdminDeleteRiderResponsibilityMutation = {
|
|
4979
|
+
export declare type AdminDeleteRiderResponsibilityMutation = {
|
|
4888
4980
|
adminDeleteRiderResponsibility?: {
|
|
4889
4981
|
__typename: "RiderResponsibility";
|
|
4890
4982
|
id: string;
|
|
@@ -4903,10 +4995,10 @@ export type AdminDeleteRiderResponsibilityMutation = {
|
|
|
4903
4995
|
_lastChangedAt: number;
|
|
4904
4996
|
} | null;
|
|
4905
4997
|
};
|
|
4906
|
-
export type GetTenantQueryVariables = {
|
|
4998
|
+
export declare type GetTenantQueryVariables = {
|
|
4907
4999
|
id: string;
|
|
4908
5000
|
};
|
|
4909
|
-
export type GetTenantQuery = {
|
|
5001
|
+
export declare type GetTenantQuery = {
|
|
4910
5002
|
getTenant?: {
|
|
4911
5003
|
__typename: "Tenant";
|
|
4912
5004
|
id: string;
|
|
@@ -4939,12 +5031,12 @@ export type GetTenantQuery = {
|
|
|
4939
5031
|
tenantAdminId: string;
|
|
4940
5032
|
} | null;
|
|
4941
5033
|
};
|
|
4942
|
-
export type ListTenantsQueryVariables = {
|
|
5034
|
+
export declare type ListTenantsQueryVariables = {
|
|
4943
5035
|
filter?: ModelTenantFilterInput | null;
|
|
4944
5036
|
limit?: number | null;
|
|
4945
5037
|
nextToken?: string | null;
|
|
4946
5038
|
};
|
|
4947
|
-
export type ListTenantsQuery = {
|
|
5039
|
+
export declare type ListTenantsQuery = {
|
|
4948
5040
|
listTenants?: {
|
|
4949
5041
|
__typename: "ModelTenantConnection";
|
|
4950
5042
|
items: Array<{
|
|
@@ -4963,13 +5055,13 @@ export type ListTenantsQuery = {
|
|
|
4963
5055
|
startedAt?: number | null;
|
|
4964
5056
|
} | null;
|
|
4965
5057
|
};
|
|
4966
|
-
export type SyncTenantsQueryVariables = {
|
|
5058
|
+
export declare type SyncTenantsQueryVariables = {
|
|
4967
5059
|
filter?: ModelTenantFilterInput | null;
|
|
4968
5060
|
limit?: number | null;
|
|
4969
5061
|
nextToken?: string | null;
|
|
4970
5062
|
lastSync?: number | null;
|
|
4971
5063
|
};
|
|
4972
|
-
export type SyncTenantsQuery = {
|
|
5064
|
+
export declare type SyncTenantsQuery = {
|
|
4973
5065
|
syncTenants?: {
|
|
4974
5066
|
__typename: "ModelTenantConnection";
|
|
4975
5067
|
items: Array<{
|
|
@@ -4988,14 +5080,14 @@ export type SyncTenantsQuery = {
|
|
|
4988
5080
|
startedAt?: number | null;
|
|
4989
5081
|
} | null;
|
|
4990
5082
|
};
|
|
4991
|
-
export type GetTenantByTenantNameQueryVariables = {
|
|
5083
|
+
export declare type GetTenantByTenantNameQueryVariables = {
|
|
4992
5084
|
name: string;
|
|
4993
5085
|
sortDirection?: ModelSortDirection | null;
|
|
4994
5086
|
filter?: ModelTenantFilterInput | null;
|
|
4995
5087
|
limit?: number | null;
|
|
4996
5088
|
nextToken?: string | null;
|
|
4997
5089
|
};
|
|
4998
|
-
export type GetTenantByTenantNameQuery = {
|
|
5090
|
+
export declare type GetTenantByTenantNameQuery = {
|
|
4999
5091
|
getTenantByTenantName?: {
|
|
5000
5092
|
__typename: "ModelTenantConnection";
|
|
5001
5093
|
items: Array<{
|
|
@@ -5014,10 +5106,10 @@ export type GetTenantByTenantNameQuery = {
|
|
|
5014
5106
|
startedAt?: number | null;
|
|
5015
5107
|
} | null;
|
|
5016
5108
|
};
|
|
5017
|
-
export type GetUserQueryVariables = {
|
|
5109
|
+
export declare type GetUserQueryVariables = {
|
|
5018
5110
|
id: string;
|
|
5019
5111
|
};
|
|
5020
|
-
export type GetUserQuery = {
|
|
5112
|
+
export declare type GetUserQuery = {
|
|
5021
5113
|
getUser?: {
|
|
5022
5114
|
__typename: "User";
|
|
5023
5115
|
id: string;
|
|
@@ -5101,12 +5193,12 @@ export type GetUserQuery = {
|
|
|
5101
5193
|
_lastChangedAt: number;
|
|
5102
5194
|
} | null;
|
|
5103
5195
|
};
|
|
5104
|
-
export type ListUsersQueryVariables = {
|
|
5196
|
+
export declare type ListUsersQueryVariables = {
|
|
5105
5197
|
filter?: ModelUserFilterInput | null;
|
|
5106
5198
|
limit?: number | null;
|
|
5107
5199
|
nextToken?: string | null;
|
|
5108
5200
|
};
|
|
5109
|
-
export type ListUsersQuery = {
|
|
5201
|
+
export declare type ListUsersQuery = {
|
|
5110
5202
|
listUsers?: {
|
|
5111
5203
|
__typename: "ModelUserConnection";
|
|
5112
5204
|
items: Array<{
|
|
@@ -5132,13 +5224,13 @@ export type ListUsersQuery = {
|
|
|
5132
5224
|
startedAt?: number | null;
|
|
5133
5225
|
} | null;
|
|
5134
5226
|
};
|
|
5135
|
-
export type SyncUsersQueryVariables = {
|
|
5227
|
+
export declare type SyncUsersQueryVariables = {
|
|
5136
5228
|
filter?: ModelUserFilterInput | null;
|
|
5137
5229
|
limit?: number | null;
|
|
5138
5230
|
nextToken?: string | null;
|
|
5139
5231
|
lastSync?: number | null;
|
|
5140
5232
|
};
|
|
5141
|
-
export type SyncUsersQuery = {
|
|
5233
|
+
export declare type SyncUsersQuery = {
|
|
5142
5234
|
syncUsers?: {
|
|
5143
5235
|
__typename: "ModelUserConnection";
|
|
5144
5236
|
items: Array<{
|
|
@@ -5164,14 +5256,14 @@ export type SyncUsersQuery = {
|
|
|
5164
5256
|
startedAt?: number | null;
|
|
5165
5257
|
} | null;
|
|
5166
5258
|
};
|
|
5167
|
-
export type GetUserByCognitoIdQueryVariables = {
|
|
5259
|
+
export declare type GetUserByCognitoIdQueryVariables = {
|
|
5168
5260
|
cognitoId: string;
|
|
5169
5261
|
sortDirection?: ModelSortDirection | null;
|
|
5170
5262
|
filter?: ModelUserFilterInput | null;
|
|
5171
5263
|
limit?: number | null;
|
|
5172
5264
|
nextToken?: string | null;
|
|
5173
5265
|
};
|
|
5174
|
-
export type GetUserByCognitoIdQuery = {
|
|
5266
|
+
export declare type GetUserByCognitoIdQuery = {
|
|
5175
5267
|
getUserByCognitoId?: {
|
|
5176
5268
|
__typename: "ModelUserConnection";
|
|
5177
5269
|
items: Array<{
|
|
@@ -5197,10 +5289,10 @@ export type GetUserByCognitoIdQuery = {
|
|
|
5197
5289
|
startedAt?: number | null;
|
|
5198
5290
|
} | null;
|
|
5199
5291
|
};
|
|
5200
|
-
export type GetPossibleRiderResponsibilitiesQueryVariables = {
|
|
5292
|
+
export declare type GetPossibleRiderResponsibilitiesQueryVariables = {
|
|
5201
5293
|
id: string;
|
|
5202
5294
|
};
|
|
5203
|
-
export type GetPossibleRiderResponsibilitiesQuery = {
|
|
5295
|
+
export declare type GetPossibleRiderResponsibilitiesQuery = {
|
|
5204
5296
|
getPossibleRiderResponsibilities?: {
|
|
5205
5297
|
__typename: "PossibleRiderResponsibilities";
|
|
5206
5298
|
id: string;
|
|
@@ -5245,12 +5337,12 @@ export type GetPossibleRiderResponsibilitiesQuery = {
|
|
|
5245
5337
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
5246
5338
|
} | null;
|
|
5247
5339
|
};
|
|
5248
|
-
export type ListPossibleRiderResponsibilitiesQueryVariables = {
|
|
5340
|
+
export declare type ListPossibleRiderResponsibilitiesQueryVariables = {
|
|
5249
5341
|
filter?: ModelPossibleRiderResponsibilitiesFilterInput | null;
|
|
5250
5342
|
limit?: number | null;
|
|
5251
5343
|
nextToken?: string | null;
|
|
5252
5344
|
};
|
|
5253
|
-
export type ListPossibleRiderResponsibilitiesQuery = {
|
|
5345
|
+
export declare type ListPossibleRiderResponsibilitiesQuery = {
|
|
5254
5346
|
listPossibleRiderResponsibilities?: {
|
|
5255
5347
|
__typename: "ModelPossibleRiderResponsibilitiesConnection";
|
|
5256
5348
|
items: Array<{
|
|
@@ -5269,13 +5361,13 @@ export type ListPossibleRiderResponsibilitiesQuery = {
|
|
|
5269
5361
|
startedAt?: number | null;
|
|
5270
5362
|
} | null;
|
|
5271
5363
|
};
|
|
5272
|
-
export type SyncPossibleRiderResponsibilitiesQueryVariables = {
|
|
5364
|
+
export declare type SyncPossibleRiderResponsibilitiesQueryVariables = {
|
|
5273
5365
|
filter?: ModelPossibleRiderResponsibilitiesFilterInput | null;
|
|
5274
5366
|
limit?: number | null;
|
|
5275
5367
|
nextToken?: string | null;
|
|
5276
5368
|
lastSync?: number | null;
|
|
5277
5369
|
};
|
|
5278
|
-
export type SyncPossibleRiderResponsibilitiesQuery = {
|
|
5370
|
+
export declare type SyncPossibleRiderResponsibilitiesQuery = {
|
|
5279
5371
|
syncPossibleRiderResponsibilities?: {
|
|
5280
5372
|
__typename: "ModelPossibleRiderResponsibilitiesConnection";
|
|
5281
5373
|
items: Array<{
|
|
@@ -5294,10 +5386,10 @@ export type SyncPossibleRiderResponsibilitiesQuery = {
|
|
|
5294
5386
|
startedAt?: number | null;
|
|
5295
5387
|
} | null;
|
|
5296
5388
|
};
|
|
5297
|
-
export type GetVehicleQueryVariables = {
|
|
5389
|
+
export declare type GetVehicleQueryVariables = {
|
|
5298
5390
|
id: string;
|
|
5299
5391
|
};
|
|
5300
|
-
export type GetVehicleQuery = {
|
|
5392
|
+
export declare type GetVehicleQuery = {
|
|
5301
5393
|
getVehicle?: {
|
|
5302
5394
|
__typename: "Vehicle";
|
|
5303
5395
|
id: string;
|
|
@@ -5345,12 +5437,12 @@ export type GetVehicleQuery = {
|
|
|
5345
5437
|
userCreatedVehiclesId?: string | null;
|
|
5346
5438
|
} | null;
|
|
5347
5439
|
};
|
|
5348
|
-
export type ListVehiclesQueryVariables = {
|
|
5440
|
+
export declare type ListVehiclesQueryVariables = {
|
|
5349
5441
|
filter?: ModelVehicleFilterInput | null;
|
|
5350
5442
|
limit?: number | null;
|
|
5351
5443
|
nextToken?: string | null;
|
|
5352
5444
|
};
|
|
5353
|
-
export type ListVehiclesQuery = {
|
|
5445
|
+
export declare type ListVehiclesQuery = {
|
|
5354
5446
|
listVehicles?: {
|
|
5355
5447
|
__typename: "ModelVehicleConnection";
|
|
5356
5448
|
items: Array<{
|
|
@@ -5374,13 +5466,13 @@ export type ListVehiclesQuery = {
|
|
|
5374
5466
|
startedAt?: number | null;
|
|
5375
5467
|
} | null;
|
|
5376
5468
|
};
|
|
5377
|
-
export type SyncVehiclesQueryVariables = {
|
|
5469
|
+
export declare type SyncVehiclesQueryVariables = {
|
|
5378
5470
|
filter?: ModelVehicleFilterInput | null;
|
|
5379
5471
|
limit?: number | null;
|
|
5380
5472
|
nextToken?: string | null;
|
|
5381
5473
|
lastSync?: number | null;
|
|
5382
5474
|
};
|
|
5383
|
-
export type SyncVehiclesQuery = {
|
|
5475
|
+
export declare type SyncVehiclesQuery = {
|
|
5384
5476
|
syncVehicles?: {
|
|
5385
5477
|
__typename: "ModelVehicleConnection";
|
|
5386
5478
|
items: Array<{
|
|
@@ -5404,10 +5496,10 @@ export type SyncVehiclesQuery = {
|
|
|
5404
5496
|
startedAt?: number | null;
|
|
5405
5497
|
} | null;
|
|
5406
5498
|
};
|
|
5407
|
-
export type GetVehicleAssignmentQueryVariables = {
|
|
5499
|
+
export declare type GetVehicleAssignmentQueryVariables = {
|
|
5408
5500
|
id: string;
|
|
5409
5501
|
};
|
|
5410
|
-
export type GetVehicleAssignmentQuery = {
|
|
5502
|
+
export declare type GetVehicleAssignmentQuery = {
|
|
5411
5503
|
getVehicleAssignment?: {
|
|
5412
5504
|
__typename: "VehicleAssignment";
|
|
5413
5505
|
id: string;
|
|
@@ -5457,12 +5549,12 @@ export type GetVehicleAssignmentQuery = {
|
|
|
5457
5549
|
vehicleAssignmentsId?: string | null;
|
|
5458
5550
|
} | null;
|
|
5459
5551
|
};
|
|
5460
|
-
export type ListVehicleAssignmentsQueryVariables = {
|
|
5552
|
+
export declare type ListVehicleAssignmentsQueryVariables = {
|
|
5461
5553
|
filter?: ModelVehicleAssignmentFilterInput | null;
|
|
5462
5554
|
limit?: number | null;
|
|
5463
5555
|
nextToken?: string | null;
|
|
5464
5556
|
};
|
|
5465
|
-
export type ListVehicleAssignmentsQuery = {
|
|
5557
|
+
export declare type ListVehicleAssignmentsQuery = {
|
|
5466
5558
|
listVehicleAssignments?: {
|
|
5467
5559
|
__typename: "ModelVehicleAssignmentConnection";
|
|
5468
5560
|
items: Array<{
|
|
@@ -5481,13 +5573,13 @@ export type ListVehicleAssignmentsQuery = {
|
|
|
5481
5573
|
startedAt?: number | null;
|
|
5482
5574
|
} | null;
|
|
5483
5575
|
};
|
|
5484
|
-
export type SyncVehicleAssignmentsQueryVariables = {
|
|
5576
|
+
export declare type SyncVehicleAssignmentsQueryVariables = {
|
|
5485
5577
|
filter?: ModelVehicleAssignmentFilterInput | null;
|
|
5486
5578
|
limit?: number | null;
|
|
5487
5579
|
nextToken?: string | null;
|
|
5488
5580
|
lastSync?: number | null;
|
|
5489
5581
|
};
|
|
5490
|
-
export type SyncVehicleAssignmentsQuery = {
|
|
5582
|
+
export declare type SyncVehicleAssignmentsQuery = {
|
|
5491
5583
|
syncVehicleAssignments?: {
|
|
5492
5584
|
__typename: "ModelVehicleAssignmentConnection";
|
|
5493
5585
|
items: Array<{
|
|
@@ -5506,10 +5598,10 @@ export type SyncVehicleAssignmentsQuery = {
|
|
|
5506
5598
|
startedAt?: number | null;
|
|
5507
5599
|
} | null;
|
|
5508
5600
|
};
|
|
5509
|
-
export type GetLocationQueryVariables = {
|
|
5601
|
+
export declare type GetLocationQueryVariables = {
|
|
5510
5602
|
id: string;
|
|
5511
5603
|
};
|
|
5512
|
-
export type GetLocationQuery = {
|
|
5604
|
+
export declare type GetLocationQuery = {
|
|
5513
5605
|
getLocation?: {
|
|
5514
5606
|
__typename: "Location";
|
|
5515
5607
|
id: string;
|
|
@@ -5608,12 +5700,12 @@ export type GetLocationQuery = {
|
|
|
5608
5700
|
userCreatedLocationsId?: string | null;
|
|
5609
5701
|
} | null;
|
|
5610
5702
|
};
|
|
5611
|
-
export type ListLocationsQueryVariables = {
|
|
5703
|
+
export declare type ListLocationsQueryVariables = {
|
|
5612
5704
|
filter?: ModelLocationFilterInput | null;
|
|
5613
5705
|
limit?: number | null;
|
|
5614
5706
|
nextToken?: string | null;
|
|
5615
5707
|
};
|
|
5616
|
-
export type ListLocationsQuery = {
|
|
5708
|
+
export declare type ListLocationsQuery = {
|
|
5617
5709
|
listLocations?: {
|
|
5618
5710
|
__typename: "ModelLocationConnection";
|
|
5619
5711
|
items: Array<{
|
|
@@ -5646,13 +5738,13 @@ export type ListLocationsQuery = {
|
|
|
5646
5738
|
startedAt?: number | null;
|
|
5647
5739
|
} | null;
|
|
5648
5740
|
};
|
|
5649
|
-
export type SyncLocationsQueryVariables = {
|
|
5741
|
+
export declare type SyncLocationsQueryVariables = {
|
|
5650
5742
|
filter?: ModelLocationFilterInput | null;
|
|
5651
5743
|
limit?: number | null;
|
|
5652
5744
|
nextToken?: string | null;
|
|
5653
5745
|
lastSync?: number | null;
|
|
5654
5746
|
};
|
|
5655
|
-
export type SyncLocationsQuery = {
|
|
5747
|
+
export declare type SyncLocationsQuery = {
|
|
5656
5748
|
syncLocations?: {
|
|
5657
5749
|
__typename: "ModelLocationConnection";
|
|
5658
5750
|
items: Array<{
|
|
@@ -5685,10 +5777,10 @@ export type SyncLocationsQuery = {
|
|
|
5685
5777
|
startedAt?: number | null;
|
|
5686
5778
|
} | null;
|
|
5687
5779
|
};
|
|
5688
|
-
export type GetTaskQueryVariables = {
|
|
5780
|
+
export declare type GetTaskQueryVariables = {
|
|
5689
5781
|
id: string;
|
|
5690
5782
|
};
|
|
5691
|
-
export type GetTaskQuery = {
|
|
5783
|
+
export declare type GetTaskQuery = {
|
|
5692
5784
|
getTask?: {
|
|
5693
5785
|
__typename: "Task";
|
|
5694
5786
|
id: string;
|
|
@@ -5860,12 +5952,12 @@ export type GetTaskQuery = {
|
|
|
5860
5952
|
userCreatedTasksId?: string | null;
|
|
5861
5953
|
} | null;
|
|
5862
5954
|
};
|
|
5863
|
-
export type ListTasksQueryVariables = {
|
|
5955
|
+
export declare type ListTasksQueryVariables = {
|
|
5864
5956
|
filter?: ModelTaskFilterInput | null;
|
|
5865
5957
|
limit?: number | null;
|
|
5866
5958
|
nextToken?: string | null;
|
|
5867
5959
|
};
|
|
5868
|
-
export type ListTasksQuery = {
|
|
5960
|
+
export declare type ListTasksQuery = {
|
|
5869
5961
|
listTasks?: {
|
|
5870
5962
|
__typename: "ModelTaskConnection";
|
|
5871
5963
|
items: Array<{
|
|
@@ -5901,13 +5993,13 @@ export type ListTasksQuery = {
|
|
|
5901
5993
|
startedAt?: number | null;
|
|
5902
5994
|
} | null;
|
|
5903
5995
|
};
|
|
5904
|
-
export type SyncTasksQueryVariables = {
|
|
5996
|
+
export declare type SyncTasksQueryVariables = {
|
|
5905
5997
|
filter?: ModelTaskFilterInput | null;
|
|
5906
5998
|
limit?: number | null;
|
|
5907
5999
|
nextToken?: string | null;
|
|
5908
6000
|
lastSync?: number | null;
|
|
5909
6001
|
};
|
|
5910
|
-
export type SyncTasksQuery = {
|
|
6002
|
+
export declare type SyncTasksQuery = {
|
|
5911
6003
|
syncTasks?: {
|
|
5912
6004
|
__typename: "ModelTaskConnection";
|
|
5913
6005
|
items: Array<{
|
|
@@ -5943,7 +6035,7 @@ export type SyncTasksQuery = {
|
|
|
5943
6035
|
startedAt?: number | null;
|
|
5944
6036
|
} | null;
|
|
5945
6037
|
};
|
|
5946
|
-
export type ListTasksByTenantIdQueryVariables = {
|
|
6038
|
+
export declare type ListTasksByTenantIdQueryVariables = {
|
|
5947
6039
|
tenantId: string;
|
|
5948
6040
|
createdAt?: ModelStringKeyConditionInput | null;
|
|
5949
6041
|
sortDirection?: ModelSortDirection | null;
|
|
@@ -5951,7 +6043,7 @@ export type ListTasksByTenantIdQueryVariables = {
|
|
|
5951
6043
|
limit?: number | null;
|
|
5952
6044
|
nextToken?: string | null;
|
|
5953
6045
|
};
|
|
5954
|
-
export type ListTasksByTenantIdQuery = {
|
|
6046
|
+
export declare type ListTasksByTenantIdQuery = {
|
|
5955
6047
|
listTasksByTenantId?: {
|
|
5956
6048
|
__typename: "ModelTaskConnection";
|
|
5957
6049
|
items: Array<{
|
|
@@ -5987,14 +6079,14 @@ export type ListTasksByTenantIdQuery = {
|
|
|
5987
6079
|
startedAt?: number | null;
|
|
5988
6080
|
} | null;
|
|
5989
6081
|
};
|
|
5990
|
-
export type TasksByStatusQueryVariables = {
|
|
6082
|
+
export declare type TasksByStatusQueryVariables = {
|
|
5991
6083
|
status: TaskStatus;
|
|
5992
6084
|
sortDirection?: ModelSortDirection | null;
|
|
5993
6085
|
filter?: ModelTaskFilterInput | null;
|
|
5994
6086
|
limit?: number | null;
|
|
5995
6087
|
nextToken?: string | null;
|
|
5996
6088
|
};
|
|
5997
|
-
export type TasksByStatusQuery = {
|
|
6089
|
+
export declare type TasksByStatusQuery = {
|
|
5998
6090
|
tasksByStatus?: {
|
|
5999
6091
|
__typename: "ModelTaskConnection";
|
|
6000
6092
|
items: Array<{
|
|
@@ -6030,7 +6122,7 @@ export type TasksByStatusQuery = {
|
|
|
6030
6122
|
startedAt?: number | null;
|
|
6031
6123
|
} | null;
|
|
6032
6124
|
};
|
|
6033
|
-
export type TasksByArchivedStatusQueryVariables = {
|
|
6125
|
+
export declare type TasksByArchivedStatusQueryVariables = {
|
|
6034
6126
|
archived: number;
|
|
6035
6127
|
status?: ModelStringKeyConditionInput | null;
|
|
6036
6128
|
sortDirection?: ModelSortDirection | null;
|
|
@@ -6038,7 +6130,7 @@ export type TasksByArchivedStatusQueryVariables = {
|
|
|
6038
6130
|
limit?: number | null;
|
|
6039
6131
|
nextToken?: string | null;
|
|
6040
6132
|
};
|
|
6041
|
-
export type TasksByArchivedStatusQuery = {
|
|
6133
|
+
export declare type TasksByArchivedStatusQuery = {
|
|
6042
6134
|
tasksByArchivedStatus?: {
|
|
6043
6135
|
__typename: "ModelTaskConnection";
|
|
6044
6136
|
items: Array<{
|
|
@@ -6074,10 +6166,10 @@ export type TasksByArchivedStatusQuery = {
|
|
|
6074
6166
|
startedAt?: number | null;
|
|
6075
6167
|
} | null;
|
|
6076
6168
|
};
|
|
6077
|
-
export type GetTaskAssigneeQueryVariables = {
|
|
6169
|
+
export declare type GetTaskAssigneeQueryVariables = {
|
|
6078
6170
|
id: string;
|
|
6079
6171
|
};
|
|
6080
|
-
export type GetTaskAssigneeQuery = {
|
|
6172
|
+
export declare type GetTaskAssigneeQuery = {
|
|
6081
6173
|
getTaskAssignee?: {
|
|
6082
6174
|
__typename: "TaskAssignee";
|
|
6083
6175
|
id: string;
|
|
@@ -6141,12 +6233,12 @@ export type GetTaskAssigneeQuery = {
|
|
|
6141
6233
|
taskAssigneesId?: string | null;
|
|
6142
6234
|
} | null;
|
|
6143
6235
|
};
|
|
6144
|
-
export type ListTaskAssigneesQueryVariables = {
|
|
6236
|
+
export declare type ListTaskAssigneesQueryVariables = {
|
|
6145
6237
|
filter?: ModelTaskAssigneeFilterInput | null;
|
|
6146
6238
|
limit?: number | null;
|
|
6147
6239
|
nextToken?: string | null;
|
|
6148
6240
|
};
|
|
6149
|
-
export type ListTaskAssigneesQuery = {
|
|
6241
|
+
export declare type ListTaskAssigneesQuery = {
|
|
6150
6242
|
listTaskAssignees?: {
|
|
6151
6243
|
__typename: "ModelTaskAssigneeConnection";
|
|
6152
6244
|
items: Array<{
|
|
@@ -6167,13 +6259,13 @@ export type ListTaskAssigneesQuery = {
|
|
|
6167
6259
|
startedAt?: number | null;
|
|
6168
6260
|
} | null;
|
|
6169
6261
|
};
|
|
6170
|
-
export type SyncTaskAssigneesQueryVariables = {
|
|
6262
|
+
export declare type SyncTaskAssigneesQueryVariables = {
|
|
6171
6263
|
filter?: ModelTaskAssigneeFilterInput | null;
|
|
6172
6264
|
limit?: number | null;
|
|
6173
6265
|
nextToken?: string | null;
|
|
6174
6266
|
lastSync?: number | null;
|
|
6175
6267
|
};
|
|
6176
|
-
export type SyncTaskAssigneesQuery = {
|
|
6268
|
+
export declare type SyncTaskAssigneesQuery = {
|
|
6177
6269
|
syncTaskAssignees?: {
|
|
6178
6270
|
__typename: "ModelTaskAssigneeConnection";
|
|
6179
6271
|
items: Array<{
|
|
@@ -6194,10 +6286,10 @@ export type SyncTaskAssigneesQuery = {
|
|
|
6194
6286
|
startedAt?: number | null;
|
|
6195
6287
|
} | null;
|
|
6196
6288
|
};
|
|
6197
|
-
export type GetScheduledTaskQueryVariables = {
|
|
6289
|
+
export declare type GetScheduledTaskQueryVariables = {
|
|
6198
6290
|
id: string;
|
|
6199
6291
|
};
|
|
6200
|
-
export type GetScheduledTaskQuery = {
|
|
6292
|
+
export declare type GetScheduledTaskQuery = {
|
|
6201
6293
|
getScheduledTask?: {
|
|
6202
6294
|
__typename: "ScheduledTask";
|
|
6203
6295
|
id: string;
|
|
@@ -6347,12 +6439,12 @@ export type GetScheduledTaskQuery = {
|
|
|
6347
6439
|
userCreatedScheduledTasksId?: string | null;
|
|
6348
6440
|
} | null;
|
|
6349
6441
|
};
|
|
6350
|
-
export type ListScheduledTasksQueryVariables = {
|
|
6442
|
+
export declare type ListScheduledTasksQueryVariables = {
|
|
6351
6443
|
filter?: ModelScheduledTaskFilterInput | null;
|
|
6352
6444
|
limit?: number | null;
|
|
6353
6445
|
nextToken?: string | null;
|
|
6354
6446
|
};
|
|
6355
|
-
export type ListScheduledTasksQuery = {
|
|
6447
|
+
export declare type ListScheduledTasksQuery = {
|
|
6356
6448
|
listScheduledTasks?: {
|
|
6357
6449
|
__typename: "ModelScheduledTaskConnection";
|
|
6358
6450
|
items: Array<{
|
|
@@ -6376,13 +6468,13 @@ export type ListScheduledTasksQuery = {
|
|
|
6376
6468
|
startedAt?: number | null;
|
|
6377
6469
|
} | null;
|
|
6378
6470
|
};
|
|
6379
|
-
export type SyncScheduledTasksQueryVariables = {
|
|
6471
|
+
export declare type SyncScheduledTasksQueryVariables = {
|
|
6380
6472
|
filter?: ModelScheduledTaskFilterInput | null;
|
|
6381
6473
|
limit?: number | null;
|
|
6382
6474
|
nextToken?: string | null;
|
|
6383
6475
|
lastSync?: number | null;
|
|
6384
6476
|
};
|
|
6385
|
-
export type SyncScheduledTasksQuery = {
|
|
6477
|
+
export declare type SyncScheduledTasksQuery = {
|
|
6386
6478
|
syncScheduledTasks?: {
|
|
6387
6479
|
__typename: "ModelScheduledTaskConnection";
|
|
6388
6480
|
items: Array<{
|
|
@@ -6406,10 +6498,10 @@ export type SyncScheduledTasksQuery = {
|
|
|
6406
6498
|
startedAt?: number | null;
|
|
6407
6499
|
} | null;
|
|
6408
6500
|
};
|
|
6409
|
-
export type GetCommentQueryVariables = {
|
|
6501
|
+
export declare type GetCommentQueryVariables = {
|
|
6410
6502
|
id: string;
|
|
6411
6503
|
};
|
|
6412
|
-
export type GetCommentQuery = {
|
|
6504
|
+
export declare type GetCommentQuery = {
|
|
6413
6505
|
getComment?: {
|
|
6414
6506
|
__typename: "Comment";
|
|
6415
6507
|
id: string;
|
|
@@ -6446,12 +6538,12 @@ export type GetCommentQuery = {
|
|
|
6446
6538
|
userCommentsId?: string | null;
|
|
6447
6539
|
} | null;
|
|
6448
6540
|
};
|
|
6449
|
-
export type ListCommentsQueryVariables = {
|
|
6541
|
+
export declare type ListCommentsQueryVariables = {
|
|
6450
6542
|
filter?: ModelCommentFilterInput | null;
|
|
6451
6543
|
limit?: number | null;
|
|
6452
6544
|
nextToken?: string | null;
|
|
6453
6545
|
};
|
|
6454
|
-
export type ListCommentsQuery = {
|
|
6546
|
+
export declare type ListCommentsQuery = {
|
|
6455
6547
|
listComments?: {
|
|
6456
6548
|
__typename: "ModelCommentConnection";
|
|
6457
6549
|
items: Array<{
|
|
@@ -6474,13 +6566,13 @@ export type ListCommentsQuery = {
|
|
|
6474
6566
|
startedAt?: number | null;
|
|
6475
6567
|
} | null;
|
|
6476
6568
|
};
|
|
6477
|
-
export type SyncCommentsQueryVariables = {
|
|
6569
|
+
export declare type SyncCommentsQueryVariables = {
|
|
6478
6570
|
filter?: ModelCommentFilterInput | null;
|
|
6479
6571
|
limit?: number | null;
|
|
6480
6572
|
nextToken?: string | null;
|
|
6481
6573
|
lastSync?: number | null;
|
|
6482
6574
|
};
|
|
6483
|
-
export type SyncCommentsQuery = {
|
|
6575
|
+
export declare type SyncCommentsQuery = {
|
|
6484
6576
|
syncComments?: {
|
|
6485
6577
|
__typename: "ModelCommentConnection";
|
|
6486
6578
|
items: Array<{
|
|
@@ -6503,10 +6595,10 @@ export type SyncCommentsQuery = {
|
|
|
6503
6595
|
startedAt?: number | null;
|
|
6504
6596
|
} | null;
|
|
6505
6597
|
};
|
|
6506
|
-
export type GetDeliverableTypeQueryVariables = {
|
|
6598
|
+
export declare type GetDeliverableTypeQueryVariables = {
|
|
6507
6599
|
id: string;
|
|
6508
6600
|
};
|
|
6509
|
-
export type GetDeliverableTypeQuery = {
|
|
6601
|
+
export declare type GetDeliverableTypeQuery = {
|
|
6510
6602
|
getDeliverableType?: {
|
|
6511
6603
|
__typename: "DeliverableType";
|
|
6512
6604
|
id: string;
|
|
@@ -6528,12 +6620,12 @@ export type GetDeliverableTypeQuery = {
|
|
|
6528
6620
|
_lastChangedAt: number;
|
|
6529
6621
|
} | null;
|
|
6530
6622
|
};
|
|
6531
|
-
export type ListDeliverableTypesQueryVariables = {
|
|
6623
|
+
export declare type ListDeliverableTypesQueryVariables = {
|
|
6532
6624
|
filter?: ModelDeliverableTypeFilterInput | null;
|
|
6533
6625
|
limit?: number | null;
|
|
6534
6626
|
nextToken?: string | null;
|
|
6535
6627
|
};
|
|
6536
|
-
export type ListDeliverableTypesQuery = {
|
|
6628
|
+
export declare type ListDeliverableTypesQuery = {
|
|
6537
6629
|
listDeliverableTypes?: {
|
|
6538
6630
|
__typename: "ModelDeliverableTypeConnection";
|
|
6539
6631
|
items: Array<{
|
|
@@ -6555,13 +6647,13 @@ export type ListDeliverableTypesQuery = {
|
|
|
6555
6647
|
startedAt?: number | null;
|
|
6556
6648
|
} | null;
|
|
6557
6649
|
};
|
|
6558
|
-
export type SyncDeliverableTypesQueryVariables = {
|
|
6650
|
+
export declare type SyncDeliverableTypesQueryVariables = {
|
|
6559
6651
|
filter?: ModelDeliverableTypeFilterInput | null;
|
|
6560
6652
|
limit?: number | null;
|
|
6561
6653
|
nextToken?: string | null;
|
|
6562
6654
|
lastSync?: number | null;
|
|
6563
6655
|
};
|
|
6564
|
-
export type SyncDeliverableTypesQuery = {
|
|
6656
|
+
export declare type SyncDeliverableTypesQuery = {
|
|
6565
6657
|
syncDeliverableTypes?: {
|
|
6566
6658
|
__typename: "ModelDeliverableTypeConnection";
|
|
6567
6659
|
items: Array<{
|
|
@@ -6583,10 +6675,10 @@ export type SyncDeliverableTypesQuery = {
|
|
|
6583
6675
|
startedAt?: number | null;
|
|
6584
6676
|
} | null;
|
|
6585
6677
|
};
|
|
6586
|
-
export type GetDeliverableQueryVariables = {
|
|
6678
|
+
export declare type GetDeliverableQueryVariables = {
|
|
6587
6679
|
id: string;
|
|
6588
6680
|
};
|
|
6589
|
-
export type GetDeliverableQuery = {
|
|
6681
|
+
export declare type GetDeliverableQuery = {
|
|
6590
6682
|
getDeliverable?: {
|
|
6591
6683
|
__typename: "Deliverable";
|
|
6592
6684
|
id: string;
|
|
@@ -6671,12 +6763,12 @@ export type GetDeliverableQuery = {
|
|
|
6671
6763
|
deliverableTypeDeliverablesId?: string | null;
|
|
6672
6764
|
} | null;
|
|
6673
6765
|
};
|
|
6674
|
-
export type ListDeliverablesQueryVariables = {
|
|
6766
|
+
export declare type ListDeliverablesQueryVariables = {
|
|
6675
6767
|
filter?: ModelDeliverableFilterInput | null;
|
|
6676
6768
|
limit?: number | null;
|
|
6677
6769
|
nextToken?: string | null;
|
|
6678
6770
|
};
|
|
6679
|
-
export type ListDeliverablesQuery = {
|
|
6771
|
+
export declare type ListDeliverablesQuery = {
|
|
6680
6772
|
listDeliverables?: {
|
|
6681
6773
|
__typename: "ModelDeliverableConnection";
|
|
6682
6774
|
items: Array<{
|
|
@@ -6700,13 +6792,13 @@ export type ListDeliverablesQuery = {
|
|
|
6700
6792
|
startedAt?: number | null;
|
|
6701
6793
|
} | null;
|
|
6702
6794
|
};
|
|
6703
|
-
export type SyncDeliverablesQueryVariables = {
|
|
6795
|
+
export declare type SyncDeliverablesQueryVariables = {
|
|
6704
6796
|
filter?: ModelDeliverableFilterInput | null;
|
|
6705
6797
|
limit?: number | null;
|
|
6706
6798
|
nextToken?: string | null;
|
|
6707
6799
|
lastSync?: number | null;
|
|
6708
6800
|
};
|
|
6709
|
-
export type SyncDeliverablesQuery = {
|
|
6801
|
+
export declare type SyncDeliverablesQuery = {
|
|
6710
6802
|
syncDeliverables?: {
|
|
6711
6803
|
__typename: "ModelDeliverableConnection";
|
|
6712
6804
|
items: Array<{
|
|
@@ -6730,10 +6822,10 @@ export type SyncDeliverablesQuery = {
|
|
|
6730
6822
|
startedAt?: number | null;
|
|
6731
6823
|
} | null;
|
|
6732
6824
|
};
|
|
6733
|
-
export type GetRiderResponsibilityQueryVariables = {
|
|
6825
|
+
export declare type GetRiderResponsibilityQueryVariables = {
|
|
6734
6826
|
id: string;
|
|
6735
6827
|
};
|
|
6736
|
-
export type GetRiderResponsibilityQuery = {
|
|
6828
|
+
export declare type GetRiderResponsibilityQuery = {
|
|
6737
6829
|
getRiderResponsibility?: {
|
|
6738
6830
|
__typename: "RiderResponsibility";
|
|
6739
6831
|
id: string;
|
|
@@ -6752,12 +6844,12 @@ export type GetRiderResponsibilityQuery = {
|
|
|
6752
6844
|
_lastChangedAt: number;
|
|
6753
6845
|
} | null;
|
|
6754
6846
|
};
|
|
6755
|
-
export type ListRiderResponsibilitiesQueryVariables = {
|
|
6847
|
+
export declare type ListRiderResponsibilitiesQueryVariables = {
|
|
6756
6848
|
filter?: ModelRiderResponsibilityFilterInput | null;
|
|
6757
6849
|
limit?: number | null;
|
|
6758
6850
|
nextToken?: string | null;
|
|
6759
6851
|
};
|
|
6760
|
-
export type ListRiderResponsibilitiesQuery = {
|
|
6852
|
+
export declare type ListRiderResponsibilitiesQuery = {
|
|
6761
6853
|
listRiderResponsibilities?: {
|
|
6762
6854
|
__typename: "ModelRiderResponsibilityConnection";
|
|
6763
6855
|
items: Array<{
|
|
@@ -6776,13 +6868,13 @@ export type ListRiderResponsibilitiesQuery = {
|
|
|
6776
6868
|
startedAt?: number | null;
|
|
6777
6869
|
} | null;
|
|
6778
6870
|
};
|
|
6779
|
-
export type SyncRiderResponsibilitiesQueryVariables = {
|
|
6871
|
+
export declare type SyncRiderResponsibilitiesQueryVariables = {
|
|
6780
6872
|
filter?: ModelRiderResponsibilityFilterInput | null;
|
|
6781
6873
|
limit?: number | null;
|
|
6782
6874
|
nextToken?: string | null;
|
|
6783
6875
|
lastSync?: number | null;
|
|
6784
6876
|
};
|
|
6785
|
-
export type SyncRiderResponsibilitiesQuery = {
|
|
6877
|
+
export declare type SyncRiderResponsibilitiesQuery = {
|
|
6786
6878
|
syncRiderResponsibilities?: {
|
|
6787
6879
|
__typename: "ModelRiderResponsibilityConnection";
|
|
6788
6880
|
items: Array<{
|
|
@@ -6801,34 +6893,34 @@ export type SyncRiderResponsibilitiesQuery = {
|
|
|
6801
6893
|
startedAt?: number | null;
|
|
6802
6894
|
} | null;
|
|
6803
6895
|
};
|
|
6804
|
-
export type ProfilePictureUploadURLQueryVariables = {
|
|
6896
|
+
export declare type ProfilePictureUploadURLQueryVariables = {
|
|
6805
6897
|
userId: string;
|
|
6806
6898
|
};
|
|
6807
|
-
export type ProfilePictureUploadURLQuery = {
|
|
6899
|
+
export declare type ProfilePictureUploadURLQuery = {
|
|
6808
6900
|
profilePictureUploadURL?: string | null;
|
|
6809
6901
|
};
|
|
6810
|
-
export type ProfilePictureURLQueryVariables = {
|
|
6902
|
+
export declare type ProfilePictureURLQueryVariables = {
|
|
6811
6903
|
userId: string;
|
|
6812
6904
|
width?: number | null;
|
|
6813
6905
|
height?: number | null;
|
|
6814
6906
|
};
|
|
6815
|
-
export type ProfilePictureURLQuery = {
|
|
6907
|
+
export declare type ProfilePictureURLQuery = {
|
|
6816
6908
|
profilePictureURL?: string | null;
|
|
6817
6909
|
};
|
|
6818
|
-
export type SendUserFeedbackQueryVariables = {
|
|
6910
|
+
export declare type SendUserFeedbackQueryVariables = {
|
|
6819
6911
|
emailAddress?: string | null;
|
|
6820
6912
|
body?: string | null;
|
|
6821
6913
|
};
|
|
6822
|
-
export type SendUserFeedbackQuery = {
|
|
6914
|
+
export declare type SendUserFeedbackQuery = {
|
|
6823
6915
|
sendUserFeedback?: {
|
|
6824
6916
|
__typename: "SendFeedback";
|
|
6825
6917
|
successState?: boolean | null;
|
|
6826
6918
|
} | null;
|
|
6827
6919
|
};
|
|
6828
|
-
export type OnCreateTenantSubscriptionVariables = {
|
|
6920
|
+
export declare type OnCreateTenantSubscriptionVariables = {
|
|
6829
6921
|
filter?: ModelSubscriptionTenantFilterInput | null;
|
|
6830
6922
|
};
|
|
6831
|
-
export type OnCreateTenantSubscription = {
|
|
6923
|
+
export declare type OnCreateTenantSubscription = {
|
|
6832
6924
|
onCreateTenant?: {
|
|
6833
6925
|
__typename: "Tenant";
|
|
6834
6926
|
id: string;
|
|
@@ -6861,10 +6953,10 @@ export type OnCreateTenantSubscription = {
|
|
|
6861
6953
|
tenantAdminId: string;
|
|
6862
6954
|
} | null;
|
|
6863
6955
|
};
|
|
6864
|
-
export type OnUpdateTenantSubscriptionVariables = {
|
|
6956
|
+
export declare type OnUpdateTenantSubscriptionVariables = {
|
|
6865
6957
|
filter?: ModelSubscriptionTenantFilterInput | null;
|
|
6866
6958
|
};
|
|
6867
|
-
export type OnUpdateTenantSubscription = {
|
|
6959
|
+
export declare type OnUpdateTenantSubscription = {
|
|
6868
6960
|
onUpdateTenant?: {
|
|
6869
6961
|
__typename: "Tenant";
|
|
6870
6962
|
id: string;
|
|
@@ -6897,10 +6989,10 @@ export type OnUpdateTenantSubscription = {
|
|
|
6897
6989
|
tenantAdminId: string;
|
|
6898
6990
|
} | null;
|
|
6899
6991
|
};
|
|
6900
|
-
export type OnDeleteTenantSubscriptionVariables = {
|
|
6992
|
+
export declare type OnDeleteTenantSubscriptionVariables = {
|
|
6901
6993
|
filter?: ModelSubscriptionTenantFilterInput | null;
|
|
6902
6994
|
};
|
|
6903
|
-
export type OnDeleteTenantSubscription = {
|
|
6995
|
+
export declare type OnDeleteTenantSubscription = {
|
|
6904
6996
|
onDeleteTenant?: {
|
|
6905
6997
|
__typename: "Tenant";
|
|
6906
6998
|
id: string;
|
|
@@ -6933,11 +7025,11 @@ export type OnDeleteTenantSubscription = {
|
|
|
6933
7025
|
tenantAdminId: string;
|
|
6934
7026
|
} | null;
|
|
6935
7027
|
};
|
|
6936
|
-
export type OnCreateUserSubscriptionVariables = {
|
|
7028
|
+
export declare type OnCreateUserSubscriptionVariables = {
|
|
6937
7029
|
filter?: ModelSubscriptionUserFilterInput | null;
|
|
6938
7030
|
cognitoId?: string | null;
|
|
6939
7031
|
};
|
|
6940
|
-
export type OnCreateUserSubscription = {
|
|
7032
|
+
export declare type OnCreateUserSubscription = {
|
|
6941
7033
|
onCreateUser?: {
|
|
6942
7034
|
__typename: "User";
|
|
6943
7035
|
id: string;
|
|
@@ -7021,11 +7113,11 @@ export type OnCreateUserSubscription = {
|
|
|
7021
7113
|
_lastChangedAt: number;
|
|
7022
7114
|
} | null;
|
|
7023
7115
|
};
|
|
7024
|
-
export type OnUpdateUserSubscriptionVariables = {
|
|
7116
|
+
export declare type OnUpdateUserSubscriptionVariables = {
|
|
7025
7117
|
filter?: ModelSubscriptionUserFilterInput | null;
|
|
7026
7118
|
cognitoId?: string | null;
|
|
7027
7119
|
};
|
|
7028
|
-
export type OnUpdateUserSubscription = {
|
|
7120
|
+
export declare type OnUpdateUserSubscription = {
|
|
7029
7121
|
onUpdateUser?: {
|
|
7030
7122
|
__typename: "User";
|
|
7031
7123
|
id: string;
|
|
@@ -7109,11 +7201,11 @@ export type OnUpdateUserSubscription = {
|
|
|
7109
7201
|
_lastChangedAt: number;
|
|
7110
7202
|
} | null;
|
|
7111
7203
|
};
|
|
7112
|
-
export type OnDeleteUserSubscriptionVariables = {
|
|
7204
|
+
export declare type OnDeleteUserSubscriptionVariables = {
|
|
7113
7205
|
filter?: ModelSubscriptionUserFilterInput | null;
|
|
7114
7206
|
cognitoId?: string | null;
|
|
7115
7207
|
};
|
|
7116
|
-
export type OnDeleteUserSubscription = {
|
|
7208
|
+
export declare type OnDeleteUserSubscription = {
|
|
7117
7209
|
onDeleteUser?: {
|
|
7118
7210
|
__typename: "User";
|
|
7119
7211
|
id: string;
|
|
@@ -7197,10 +7289,10 @@ export type OnDeleteUserSubscription = {
|
|
|
7197
7289
|
_lastChangedAt: number;
|
|
7198
7290
|
} | null;
|
|
7199
7291
|
};
|
|
7200
|
-
export type OnCreatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7292
|
+
export declare type OnCreatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7201
7293
|
filter?: ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null;
|
|
7202
7294
|
};
|
|
7203
|
-
export type OnCreatePossibleRiderResponsibilitiesSubscription = {
|
|
7295
|
+
export declare type OnCreatePossibleRiderResponsibilitiesSubscription = {
|
|
7204
7296
|
onCreatePossibleRiderResponsibilities?: {
|
|
7205
7297
|
__typename: "PossibleRiderResponsibilities";
|
|
7206
7298
|
id: string;
|
|
@@ -7245,10 +7337,10 @@ export type OnCreatePossibleRiderResponsibilitiesSubscription = {
|
|
|
7245
7337
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
7246
7338
|
} | null;
|
|
7247
7339
|
};
|
|
7248
|
-
export type OnUpdatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7340
|
+
export declare type OnUpdatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7249
7341
|
filter?: ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null;
|
|
7250
7342
|
};
|
|
7251
|
-
export type OnUpdatePossibleRiderResponsibilitiesSubscription = {
|
|
7343
|
+
export declare type OnUpdatePossibleRiderResponsibilitiesSubscription = {
|
|
7252
7344
|
onUpdatePossibleRiderResponsibilities?: {
|
|
7253
7345
|
__typename: "PossibleRiderResponsibilities";
|
|
7254
7346
|
id: string;
|
|
@@ -7293,10 +7385,10 @@ export type OnUpdatePossibleRiderResponsibilitiesSubscription = {
|
|
|
7293
7385
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
7294
7386
|
} | null;
|
|
7295
7387
|
};
|
|
7296
|
-
export type OnDeletePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7388
|
+
export declare type OnDeletePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7297
7389
|
filter?: ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null;
|
|
7298
7390
|
};
|
|
7299
|
-
export type OnDeletePossibleRiderResponsibilitiesSubscription = {
|
|
7391
|
+
export declare type OnDeletePossibleRiderResponsibilitiesSubscription = {
|
|
7300
7392
|
onDeletePossibleRiderResponsibilities?: {
|
|
7301
7393
|
__typename: "PossibleRiderResponsibilities";
|
|
7302
7394
|
id: string;
|
|
@@ -7341,10 +7433,10 @@ export type OnDeletePossibleRiderResponsibilitiesSubscription = {
|
|
|
7341
7433
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
7342
7434
|
} | null;
|
|
7343
7435
|
};
|
|
7344
|
-
export type OnCreateVehicleSubscriptionVariables = {
|
|
7436
|
+
export declare type OnCreateVehicleSubscriptionVariables = {
|
|
7345
7437
|
filter?: ModelSubscriptionVehicleFilterInput | null;
|
|
7346
7438
|
};
|
|
7347
|
-
export type OnCreateVehicleSubscription = {
|
|
7439
|
+
export declare type OnCreateVehicleSubscription = {
|
|
7348
7440
|
onCreateVehicle?: {
|
|
7349
7441
|
__typename: "Vehicle";
|
|
7350
7442
|
id: string;
|
|
@@ -7392,10 +7484,10 @@ export type OnCreateVehicleSubscription = {
|
|
|
7392
7484
|
userCreatedVehiclesId?: string | null;
|
|
7393
7485
|
} | null;
|
|
7394
7486
|
};
|
|
7395
|
-
export type OnUpdateVehicleSubscriptionVariables = {
|
|
7487
|
+
export declare type OnUpdateVehicleSubscriptionVariables = {
|
|
7396
7488
|
filter?: ModelSubscriptionVehicleFilterInput | null;
|
|
7397
7489
|
};
|
|
7398
|
-
export type OnUpdateVehicleSubscription = {
|
|
7490
|
+
export declare type OnUpdateVehicleSubscription = {
|
|
7399
7491
|
onUpdateVehicle?: {
|
|
7400
7492
|
__typename: "Vehicle";
|
|
7401
7493
|
id: string;
|
|
@@ -7443,10 +7535,10 @@ export type OnUpdateVehicleSubscription = {
|
|
|
7443
7535
|
userCreatedVehiclesId?: string | null;
|
|
7444
7536
|
} | null;
|
|
7445
7537
|
};
|
|
7446
|
-
export type OnDeleteVehicleSubscriptionVariables = {
|
|
7538
|
+
export declare type OnDeleteVehicleSubscriptionVariables = {
|
|
7447
7539
|
filter?: ModelSubscriptionVehicleFilterInput | null;
|
|
7448
7540
|
};
|
|
7449
|
-
export type OnDeleteVehicleSubscription = {
|
|
7541
|
+
export declare type OnDeleteVehicleSubscription = {
|
|
7450
7542
|
onDeleteVehicle?: {
|
|
7451
7543
|
__typename: "Vehicle";
|
|
7452
7544
|
id: string;
|
|
@@ -7494,10 +7586,10 @@ export type OnDeleteVehicleSubscription = {
|
|
|
7494
7586
|
userCreatedVehiclesId?: string | null;
|
|
7495
7587
|
} | null;
|
|
7496
7588
|
};
|
|
7497
|
-
export type OnCreateVehicleAssignmentSubscriptionVariables = {
|
|
7589
|
+
export declare type OnCreateVehicleAssignmentSubscriptionVariables = {
|
|
7498
7590
|
filter?: ModelSubscriptionVehicleAssignmentFilterInput | null;
|
|
7499
7591
|
};
|
|
7500
|
-
export type OnCreateVehicleAssignmentSubscription = {
|
|
7592
|
+
export declare type OnCreateVehicleAssignmentSubscription = {
|
|
7501
7593
|
onCreateVehicleAssignment?: {
|
|
7502
7594
|
__typename: "VehicleAssignment";
|
|
7503
7595
|
id: string;
|
|
@@ -7547,10 +7639,10 @@ export type OnCreateVehicleAssignmentSubscription = {
|
|
|
7547
7639
|
vehicleAssignmentsId?: string | null;
|
|
7548
7640
|
} | null;
|
|
7549
7641
|
};
|
|
7550
|
-
export type OnUpdateVehicleAssignmentSubscriptionVariables = {
|
|
7642
|
+
export declare type OnUpdateVehicleAssignmentSubscriptionVariables = {
|
|
7551
7643
|
filter?: ModelSubscriptionVehicleAssignmentFilterInput | null;
|
|
7552
7644
|
};
|
|
7553
|
-
export type OnUpdateVehicleAssignmentSubscription = {
|
|
7645
|
+
export declare type OnUpdateVehicleAssignmentSubscription = {
|
|
7554
7646
|
onUpdateVehicleAssignment?: {
|
|
7555
7647
|
__typename: "VehicleAssignment";
|
|
7556
7648
|
id: string;
|
|
@@ -7600,10 +7692,10 @@ export type OnUpdateVehicleAssignmentSubscription = {
|
|
|
7600
7692
|
vehicleAssignmentsId?: string | null;
|
|
7601
7693
|
} | null;
|
|
7602
7694
|
};
|
|
7603
|
-
export type OnDeleteVehicleAssignmentSubscriptionVariables = {
|
|
7695
|
+
export declare type OnDeleteVehicleAssignmentSubscriptionVariables = {
|
|
7604
7696
|
filter?: ModelSubscriptionVehicleAssignmentFilterInput | null;
|
|
7605
7697
|
};
|
|
7606
|
-
export type OnDeleteVehicleAssignmentSubscription = {
|
|
7698
|
+
export declare type OnDeleteVehicleAssignmentSubscription = {
|
|
7607
7699
|
onDeleteVehicleAssignment?: {
|
|
7608
7700
|
__typename: "VehicleAssignment";
|
|
7609
7701
|
id: string;
|
|
@@ -7653,10 +7745,10 @@ export type OnDeleteVehicleAssignmentSubscription = {
|
|
|
7653
7745
|
vehicleAssignmentsId?: string | null;
|
|
7654
7746
|
} | null;
|
|
7655
7747
|
};
|
|
7656
|
-
export type OnCreateLocationSubscriptionVariables = {
|
|
7748
|
+
export declare type OnCreateLocationSubscriptionVariables = {
|
|
7657
7749
|
filter?: ModelSubscriptionLocationFilterInput | null;
|
|
7658
7750
|
};
|
|
7659
|
-
export type OnCreateLocationSubscription = {
|
|
7751
|
+
export declare type OnCreateLocationSubscription = {
|
|
7660
7752
|
onCreateLocation?: {
|
|
7661
7753
|
__typename: "Location";
|
|
7662
7754
|
id: string;
|
|
@@ -7755,10 +7847,10 @@ export type OnCreateLocationSubscription = {
|
|
|
7755
7847
|
userCreatedLocationsId?: string | null;
|
|
7756
7848
|
} | null;
|
|
7757
7849
|
};
|
|
7758
|
-
export type OnUpdateLocationSubscriptionVariables = {
|
|
7850
|
+
export declare type OnUpdateLocationSubscriptionVariables = {
|
|
7759
7851
|
filter?: ModelSubscriptionLocationFilterInput | null;
|
|
7760
7852
|
};
|
|
7761
|
-
export type OnUpdateLocationSubscription = {
|
|
7853
|
+
export declare type OnUpdateLocationSubscription = {
|
|
7762
7854
|
onUpdateLocation?: {
|
|
7763
7855
|
__typename: "Location";
|
|
7764
7856
|
id: string;
|
|
@@ -7857,10 +7949,10 @@ export type OnUpdateLocationSubscription = {
|
|
|
7857
7949
|
userCreatedLocationsId?: string | null;
|
|
7858
7950
|
} | null;
|
|
7859
7951
|
};
|
|
7860
|
-
export type OnDeleteLocationSubscriptionVariables = {
|
|
7952
|
+
export declare type OnDeleteLocationSubscriptionVariables = {
|
|
7861
7953
|
filter?: ModelSubscriptionLocationFilterInput | null;
|
|
7862
7954
|
};
|
|
7863
|
-
export type OnDeleteLocationSubscription = {
|
|
7955
|
+
export declare type OnDeleteLocationSubscription = {
|
|
7864
7956
|
onDeleteLocation?: {
|
|
7865
7957
|
__typename: "Location";
|
|
7866
7958
|
id: string;
|
|
@@ -7959,10 +8051,10 @@ export type OnDeleteLocationSubscription = {
|
|
|
7959
8051
|
userCreatedLocationsId?: string | null;
|
|
7960
8052
|
} | null;
|
|
7961
8053
|
};
|
|
7962
|
-
export type OnCreateTaskSubscriptionVariables = {
|
|
8054
|
+
export declare type OnCreateTaskSubscriptionVariables = {
|
|
7963
8055
|
filter?: ModelSubscriptionTaskFilterInput | null;
|
|
7964
8056
|
};
|
|
7965
|
-
export type OnCreateTaskSubscription = {
|
|
8057
|
+
export declare type OnCreateTaskSubscription = {
|
|
7966
8058
|
onCreateTask?: {
|
|
7967
8059
|
__typename: "Task";
|
|
7968
8060
|
id: string;
|
|
@@ -8134,10 +8226,10 @@ export type OnCreateTaskSubscription = {
|
|
|
8134
8226
|
userCreatedTasksId?: string | null;
|
|
8135
8227
|
} | null;
|
|
8136
8228
|
};
|
|
8137
|
-
export type OnUpdateTaskSubscriptionVariables = {
|
|
8229
|
+
export declare type OnUpdateTaskSubscriptionVariables = {
|
|
8138
8230
|
filter?: ModelSubscriptionTaskFilterInput | null;
|
|
8139
8231
|
};
|
|
8140
|
-
export type OnUpdateTaskSubscription = {
|
|
8232
|
+
export declare type OnUpdateTaskSubscription = {
|
|
8141
8233
|
onUpdateTask?: {
|
|
8142
8234
|
__typename: "Task";
|
|
8143
8235
|
id: string;
|
|
@@ -8309,10 +8401,10 @@ export type OnUpdateTaskSubscription = {
|
|
|
8309
8401
|
userCreatedTasksId?: string | null;
|
|
8310
8402
|
} | null;
|
|
8311
8403
|
};
|
|
8312
|
-
export type OnDeleteTaskSubscriptionVariables = {
|
|
8404
|
+
export declare type OnDeleteTaskSubscriptionVariables = {
|
|
8313
8405
|
filter?: ModelSubscriptionTaskFilterInput | null;
|
|
8314
8406
|
};
|
|
8315
|
-
export type OnDeleteTaskSubscription = {
|
|
8407
|
+
export declare type OnDeleteTaskSubscription = {
|
|
8316
8408
|
onDeleteTask?: {
|
|
8317
8409
|
__typename: "Task";
|
|
8318
8410
|
id: string;
|
|
@@ -8484,10 +8576,10 @@ export type OnDeleteTaskSubscription = {
|
|
|
8484
8576
|
userCreatedTasksId?: string | null;
|
|
8485
8577
|
} | null;
|
|
8486
8578
|
};
|
|
8487
|
-
export type OnCreateTaskAssigneeSubscriptionVariables = {
|
|
8579
|
+
export declare type OnCreateTaskAssigneeSubscriptionVariables = {
|
|
8488
8580
|
filter?: ModelSubscriptionTaskAssigneeFilterInput | null;
|
|
8489
8581
|
};
|
|
8490
|
-
export type OnCreateTaskAssigneeSubscription = {
|
|
8582
|
+
export declare type OnCreateTaskAssigneeSubscription = {
|
|
8491
8583
|
onCreateTaskAssignee?: {
|
|
8492
8584
|
__typename: "TaskAssignee";
|
|
8493
8585
|
id: string;
|
|
@@ -8551,10 +8643,10 @@ export type OnCreateTaskAssigneeSubscription = {
|
|
|
8551
8643
|
taskAssigneesId?: string | null;
|
|
8552
8644
|
} | null;
|
|
8553
8645
|
};
|
|
8554
|
-
export type OnUpdateTaskAssigneeSubscriptionVariables = {
|
|
8646
|
+
export declare type OnUpdateTaskAssigneeSubscriptionVariables = {
|
|
8555
8647
|
filter?: ModelSubscriptionTaskAssigneeFilterInput | null;
|
|
8556
8648
|
};
|
|
8557
|
-
export type OnUpdateTaskAssigneeSubscription = {
|
|
8649
|
+
export declare type OnUpdateTaskAssigneeSubscription = {
|
|
8558
8650
|
onUpdateTaskAssignee?: {
|
|
8559
8651
|
__typename: "TaskAssignee";
|
|
8560
8652
|
id: string;
|
|
@@ -8618,10 +8710,10 @@ export type OnUpdateTaskAssigneeSubscription = {
|
|
|
8618
8710
|
taskAssigneesId?: string | null;
|
|
8619
8711
|
} | null;
|
|
8620
8712
|
};
|
|
8621
|
-
export type OnDeleteTaskAssigneeSubscriptionVariables = {
|
|
8713
|
+
export declare type OnDeleteTaskAssigneeSubscriptionVariables = {
|
|
8622
8714
|
filter?: ModelSubscriptionTaskAssigneeFilterInput | null;
|
|
8623
8715
|
};
|
|
8624
|
-
export type OnDeleteTaskAssigneeSubscription = {
|
|
8716
|
+
export declare type OnDeleteTaskAssigneeSubscription = {
|
|
8625
8717
|
onDeleteTaskAssignee?: {
|
|
8626
8718
|
__typename: "TaskAssignee";
|
|
8627
8719
|
id: string;
|
|
@@ -8685,10 +8777,10 @@ export type OnDeleteTaskAssigneeSubscription = {
|
|
|
8685
8777
|
taskAssigneesId?: string | null;
|
|
8686
8778
|
} | null;
|
|
8687
8779
|
};
|
|
8688
|
-
export type OnCreateScheduledTaskSubscriptionVariables = {
|
|
8780
|
+
export declare type OnCreateScheduledTaskSubscriptionVariables = {
|
|
8689
8781
|
filter?: ModelSubscriptionScheduledTaskFilterInput | null;
|
|
8690
8782
|
};
|
|
8691
|
-
export type OnCreateScheduledTaskSubscription = {
|
|
8783
|
+
export declare type OnCreateScheduledTaskSubscription = {
|
|
8692
8784
|
onCreateScheduledTask?: {
|
|
8693
8785
|
__typename: "ScheduledTask";
|
|
8694
8786
|
id: string;
|
|
@@ -8838,10 +8930,10 @@ export type OnCreateScheduledTaskSubscription = {
|
|
|
8838
8930
|
userCreatedScheduledTasksId?: string | null;
|
|
8839
8931
|
} | null;
|
|
8840
8932
|
};
|
|
8841
|
-
export type OnUpdateScheduledTaskSubscriptionVariables = {
|
|
8933
|
+
export declare type OnUpdateScheduledTaskSubscriptionVariables = {
|
|
8842
8934
|
filter?: ModelSubscriptionScheduledTaskFilterInput | null;
|
|
8843
8935
|
};
|
|
8844
|
-
export type OnUpdateScheduledTaskSubscription = {
|
|
8936
|
+
export declare type OnUpdateScheduledTaskSubscription = {
|
|
8845
8937
|
onUpdateScheduledTask?: {
|
|
8846
8938
|
__typename: "ScheduledTask";
|
|
8847
8939
|
id: string;
|
|
@@ -8991,10 +9083,10 @@ export type OnUpdateScheduledTaskSubscription = {
|
|
|
8991
9083
|
userCreatedScheduledTasksId?: string | null;
|
|
8992
9084
|
} | null;
|
|
8993
9085
|
};
|
|
8994
|
-
export type OnDeleteScheduledTaskSubscriptionVariables = {
|
|
9086
|
+
export declare type OnDeleteScheduledTaskSubscriptionVariables = {
|
|
8995
9087
|
filter?: ModelSubscriptionScheduledTaskFilterInput | null;
|
|
8996
9088
|
};
|
|
8997
|
-
export type OnDeleteScheduledTaskSubscription = {
|
|
9089
|
+
export declare type OnDeleteScheduledTaskSubscription = {
|
|
8998
9090
|
onDeleteScheduledTask?: {
|
|
8999
9091
|
__typename: "ScheduledTask";
|
|
9000
9092
|
id: string;
|
|
@@ -9144,11 +9236,11 @@ export type OnDeleteScheduledTaskSubscription = {
|
|
|
9144
9236
|
userCreatedScheduledTasksId?: string | null;
|
|
9145
9237
|
} | null;
|
|
9146
9238
|
};
|
|
9147
|
-
export type OnCreateCommentSubscriptionVariables = {
|
|
9239
|
+
export declare type OnCreateCommentSubscriptionVariables = {
|
|
9148
9240
|
filter?: ModelSubscriptionCommentFilterInput | null;
|
|
9149
9241
|
owner?: string | null;
|
|
9150
9242
|
};
|
|
9151
|
-
export type OnCreateCommentSubscription = {
|
|
9243
|
+
export declare type OnCreateCommentSubscription = {
|
|
9152
9244
|
onCreateComment?: {
|
|
9153
9245
|
__typename: "Comment";
|
|
9154
9246
|
id: string;
|
|
@@ -9185,11 +9277,11 @@ export type OnCreateCommentSubscription = {
|
|
|
9185
9277
|
userCommentsId?: string | null;
|
|
9186
9278
|
} | null;
|
|
9187
9279
|
};
|
|
9188
|
-
export type OnUpdateCommentSubscriptionVariables = {
|
|
9280
|
+
export declare type OnUpdateCommentSubscriptionVariables = {
|
|
9189
9281
|
filter?: ModelSubscriptionCommentFilterInput | null;
|
|
9190
9282
|
owner?: string | null;
|
|
9191
9283
|
};
|
|
9192
|
-
export type OnUpdateCommentSubscription = {
|
|
9284
|
+
export declare type OnUpdateCommentSubscription = {
|
|
9193
9285
|
onUpdateComment?: {
|
|
9194
9286
|
__typename: "Comment";
|
|
9195
9287
|
id: string;
|
|
@@ -9226,11 +9318,11 @@ export type OnUpdateCommentSubscription = {
|
|
|
9226
9318
|
userCommentsId?: string | null;
|
|
9227
9319
|
} | null;
|
|
9228
9320
|
};
|
|
9229
|
-
export type OnDeleteCommentSubscriptionVariables = {
|
|
9321
|
+
export declare type OnDeleteCommentSubscriptionVariables = {
|
|
9230
9322
|
filter?: ModelSubscriptionCommentFilterInput | null;
|
|
9231
9323
|
owner?: string | null;
|
|
9232
9324
|
};
|
|
9233
|
-
export type OnDeleteCommentSubscription = {
|
|
9325
|
+
export declare type OnDeleteCommentSubscription = {
|
|
9234
9326
|
onDeleteComment?: {
|
|
9235
9327
|
__typename: "Comment";
|
|
9236
9328
|
id: string;
|
|
@@ -9267,10 +9359,10 @@ export type OnDeleteCommentSubscription = {
|
|
|
9267
9359
|
userCommentsId?: string | null;
|
|
9268
9360
|
} | null;
|
|
9269
9361
|
};
|
|
9270
|
-
export type OnCreateDeliverableTypeSubscriptionVariables = {
|
|
9362
|
+
export declare type OnCreateDeliverableTypeSubscriptionVariables = {
|
|
9271
9363
|
filter?: ModelSubscriptionDeliverableTypeFilterInput | null;
|
|
9272
9364
|
};
|
|
9273
|
-
export type OnCreateDeliverableTypeSubscription = {
|
|
9365
|
+
export declare type OnCreateDeliverableTypeSubscription = {
|
|
9274
9366
|
onCreateDeliverableType?: {
|
|
9275
9367
|
__typename: "DeliverableType";
|
|
9276
9368
|
id: string;
|
|
@@ -9292,10 +9384,10 @@ export type OnCreateDeliverableTypeSubscription = {
|
|
|
9292
9384
|
_lastChangedAt: number;
|
|
9293
9385
|
} | null;
|
|
9294
9386
|
};
|
|
9295
|
-
export type OnUpdateDeliverableTypeSubscriptionVariables = {
|
|
9387
|
+
export declare type OnUpdateDeliverableTypeSubscriptionVariables = {
|
|
9296
9388
|
filter?: ModelSubscriptionDeliverableTypeFilterInput | null;
|
|
9297
9389
|
};
|
|
9298
|
-
export type OnUpdateDeliverableTypeSubscription = {
|
|
9390
|
+
export declare type OnUpdateDeliverableTypeSubscription = {
|
|
9299
9391
|
onUpdateDeliverableType?: {
|
|
9300
9392
|
__typename: "DeliverableType";
|
|
9301
9393
|
id: string;
|
|
@@ -9317,10 +9409,10 @@ export type OnUpdateDeliverableTypeSubscription = {
|
|
|
9317
9409
|
_lastChangedAt: number;
|
|
9318
9410
|
} | null;
|
|
9319
9411
|
};
|
|
9320
|
-
export type OnDeleteDeliverableTypeSubscriptionVariables = {
|
|
9412
|
+
export declare type OnDeleteDeliverableTypeSubscriptionVariables = {
|
|
9321
9413
|
filter?: ModelSubscriptionDeliverableTypeFilterInput | null;
|
|
9322
9414
|
};
|
|
9323
|
-
export type OnDeleteDeliverableTypeSubscription = {
|
|
9415
|
+
export declare type OnDeleteDeliverableTypeSubscription = {
|
|
9324
9416
|
onDeleteDeliverableType?: {
|
|
9325
9417
|
__typename: "DeliverableType";
|
|
9326
9418
|
id: string;
|
|
@@ -9342,10 +9434,10 @@ export type OnDeleteDeliverableTypeSubscription = {
|
|
|
9342
9434
|
_lastChangedAt: number;
|
|
9343
9435
|
} | null;
|
|
9344
9436
|
};
|
|
9345
|
-
export type OnCreateDeliverableSubscriptionVariables = {
|
|
9437
|
+
export declare type OnCreateDeliverableSubscriptionVariables = {
|
|
9346
9438
|
filter?: ModelSubscriptionDeliverableFilterInput | null;
|
|
9347
9439
|
};
|
|
9348
|
-
export type OnCreateDeliverableSubscription = {
|
|
9440
|
+
export declare type OnCreateDeliverableSubscription = {
|
|
9349
9441
|
onCreateDeliverable?: {
|
|
9350
9442
|
__typename: "Deliverable";
|
|
9351
9443
|
id: string;
|
|
@@ -9430,10 +9522,10 @@ export type OnCreateDeliverableSubscription = {
|
|
|
9430
9522
|
deliverableTypeDeliverablesId?: string | null;
|
|
9431
9523
|
} | null;
|
|
9432
9524
|
};
|
|
9433
|
-
export type OnUpdateDeliverableSubscriptionVariables = {
|
|
9525
|
+
export declare type OnUpdateDeliverableSubscriptionVariables = {
|
|
9434
9526
|
filter?: ModelSubscriptionDeliverableFilterInput | null;
|
|
9435
9527
|
};
|
|
9436
|
-
export type OnUpdateDeliverableSubscription = {
|
|
9528
|
+
export declare type OnUpdateDeliverableSubscription = {
|
|
9437
9529
|
onUpdateDeliverable?: {
|
|
9438
9530
|
__typename: "Deliverable";
|
|
9439
9531
|
id: string;
|
|
@@ -9518,10 +9610,10 @@ export type OnUpdateDeliverableSubscription = {
|
|
|
9518
9610
|
deliverableTypeDeliverablesId?: string | null;
|
|
9519
9611
|
} | null;
|
|
9520
9612
|
};
|
|
9521
|
-
export type OnDeleteDeliverableSubscriptionVariables = {
|
|
9613
|
+
export declare type OnDeleteDeliverableSubscriptionVariables = {
|
|
9522
9614
|
filter?: ModelSubscriptionDeliverableFilterInput | null;
|
|
9523
9615
|
};
|
|
9524
|
-
export type OnDeleteDeliverableSubscription = {
|
|
9616
|
+
export declare type OnDeleteDeliverableSubscription = {
|
|
9525
9617
|
onDeleteDeliverable?: {
|
|
9526
9618
|
__typename: "Deliverable";
|
|
9527
9619
|
id: string;
|
|
@@ -9606,10 +9698,10 @@ export type OnDeleteDeliverableSubscription = {
|
|
|
9606
9698
|
deliverableTypeDeliverablesId?: string | null;
|
|
9607
9699
|
} | null;
|
|
9608
9700
|
};
|
|
9609
|
-
export type OnCreateRiderResponsibilitySubscriptionVariables = {
|
|
9701
|
+
export declare type OnCreateRiderResponsibilitySubscriptionVariables = {
|
|
9610
9702
|
filter?: ModelSubscriptionRiderResponsibilityFilterInput | null;
|
|
9611
9703
|
};
|
|
9612
|
-
export type OnCreateRiderResponsibilitySubscription = {
|
|
9704
|
+
export declare type OnCreateRiderResponsibilitySubscription = {
|
|
9613
9705
|
onCreateRiderResponsibility?: {
|
|
9614
9706
|
__typename: "RiderResponsibility";
|
|
9615
9707
|
id: string;
|
|
@@ -9628,10 +9720,10 @@ export type OnCreateRiderResponsibilitySubscription = {
|
|
|
9628
9720
|
_lastChangedAt: number;
|
|
9629
9721
|
} | null;
|
|
9630
9722
|
};
|
|
9631
|
-
export type OnUpdateRiderResponsibilitySubscriptionVariables = {
|
|
9723
|
+
export declare type OnUpdateRiderResponsibilitySubscriptionVariables = {
|
|
9632
9724
|
filter?: ModelSubscriptionRiderResponsibilityFilterInput | null;
|
|
9633
9725
|
};
|
|
9634
|
-
export type OnUpdateRiderResponsibilitySubscription = {
|
|
9726
|
+
export declare type OnUpdateRiderResponsibilitySubscription = {
|
|
9635
9727
|
onUpdateRiderResponsibility?: {
|
|
9636
9728
|
__typename: "RiderResponsibility";
|
|
9637
9729
|
id: string;
|
|
@@ -9650,10 +9742,10 @@ export type OnUpdateRiderResponsibilitySubscription = {
|
|
|
9650
9742
|
_lastChangedAt: number;
|
|
9651
9743
|
} | null;
|
|
9652
9744
|
};
|
|
9653
|
-
export type OnDeleteRiderResponsibilitySubscriptionVariables = {
|
|
9745
|
+
export declare type OnDeleteRiderResponsibilitySubscriptionVariables = {
|
|
9654
9746
|
filter?: ModelSubscriptionRiderResponsibilityFilterInput | null;
|
|
9655
9747
|
};
|
|
9656
|
-
export type OnDeleteRiderResponsibilitySubscription = {
|
|
9748
|
+
export declare type OnDeleteRiderResponsibilitySubscription = {
|
|
9657
9749
|
onDeleteRiderResponsibility?: {
|
|
9658
9750
|
__typename: "RiderResponsibility";
|
|
9659
9751
|
id: string;
|