@platelet-app/types 1.0.7 → 1.1.1
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 +392 -392
- package/dist/API.js +18 -21
- package/dist/api.d.ts +9766 -0
- package/dist/api.js +77 -0
- package/dist/index.d.ts +1 -5
- package/dist/index.js +1 -41
- package/package.json +5 -13
- package/src/API.ts +10179 -0
- package/src/index.ts +1 -0
- package/tsconfig.json +15 -0
- package/dist/graphql/mutations.d.ts +0 -53
- package/dist/graphql/mutations.js +0 -3387
- package/dist/graphql/queries.d.ts +0 -53
- package/dist/graphql/queries.js +0 -2002
- package/dist/graphql/subscriptions.d.ts +0 -45
- package/dist/graphql/subscriptions.js +0 -2829
package/dist/API.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
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;
|
|
@@ -16,7 +16,7 @@ export type ModelTenantConditionInput = {
|
|
|
16
16
|
updatedAt?: ModelStringInput | null;
|
|
17
17
|
tenantAdminId?: ModelIDInput | null;
|
|
18
18
|
};
|
|
19
|
-
export type ModelStringInput = {
|
|
19
|
+
export declare type ModelStringInput = {
|
|
20
20
|
ne?: string | null;
|
|
21
21
|
eq?: string | null;
|
|
22
22
|
le?: string | null;
|
|
@@ -43,7 +43,7 @@ export declare enum ModelAttributeTypes {
|
|
|
43
43
|
stringSet = "stringSet",
|
|
44
44
|
_null = "_null"
|
|
45
45
|
}
|
|
46
|
-
export type ModelSizeInput = {
|
|
46
|
+
export declare type ModelSizeInput = {
|
|
47
47
|
ne?: number | null;
|
|
48
48
|
eq?: number | null;
|
|
49
49
|
le?: number | null;
|
|
@@ -52,13 +52,13 @@ export type ModelSizeInput = {
|
|
|
52
52
|
gt?: number | null;
|
|
53
53
|
between?: Array<number | null> | null;
|
|
54
54
|
};
|
|
55
|
-
export type ModelBooleanInput = {
|
|
55
|
+
export declare type ModelBooleanInput = {
|
|
56
56
|
ne?: boolean | null;
|
|
57
57
|
eq?: boolean | null;
|
|
58
58
|
attributeExists?: boolean | null;
|
|
59
59
|
attributeType?: ModelAttributeTypes | null;
|
|
60
60
|
};
|
|
61
|
-
export type ModelIDInput = {
|
|
61
|
+
export declare type ModelIDInput = {
|
|
62
62
|
ne?: string | null;
|
|
63
63
|
eq?: string | null;
|
|
64
64
|
le?: string | null;
|
|
@@ -73,7 +73,7 @@ export type ModelIDInput = {
|
|
|
73
73
|
attributeType?: ModelAttributeTypes | null;
|
|
74
74
|
size?: ModelSizeInput | null;
|
|
75
75
|
};
|
|
76
|
-
export type Tenant = {
|
|
76
|
+
export declare type Tenant = {
|
|
77
77
|
__typename: "Tenant";
|
|
78
78
|
id: string;
|
|
79
79
|
name: string;
|
|
@@ -86,7 +86,7 @@ export type Tenant = {
|
|
|
86
86
|
_lastChangedAt: number;
|
|
87
87
|
tenantAdminId: string;
|
|
88
88
|
};
|
|
89
|
-
export type User = {
|
|
89
|
+
export declare type User = {
|
|
90
90
|
__typename: "User";
|
|
91
91
|
id: string;
|
|
92
92
|
username: string;
|
|
@@ -115,7 +115,7 @@ export type User = {
|
|
|
115
115
|
_deleted?: boolean | null;
|
|
116
116
|
_lastChangedAt: number;
|
|
117
117
|
};
|
|
118
|
-
export type AddressAndContactDetails = {
|
|
118
|
+
export declare type AddressAndContactDetails = {
|
|
119
119
|
__typename: "AddressAndContactDetails";
|
|
120
120
|
name?: string | null;
|
|
121
121
|
telephoneNumber?: string | null;
|
|
@@ -138,13 +138,13 @@ export declare enum Role {
|
|
|
138
138
|
RIDER = "RIDER",
|
|
139
139
|
ADMIN = "ADMIN"
|
|
140
140
|
}
|
|
141
|
-
export type ModelPossibleRiderResponsibilitiesConnection = {
|
|
141
|
+
export declare type ModelPossibleRiderResponsibilitiesConnection = {
|
|
142
142
|
__typename: "ModelPossibleRiderResponsibilitiesConnection";
|
|
143
143
|
items: Array<PossibleRiderResponsibilities | null>;
|
|
144
144
|
nextToken?: string | null;
|
|
145
145
|
startedAt?: number | null;
|
|
146
146
|
};
|
|
147
|
-
export type PossibleRiderResponsibilities = {
|
|
147
|
+
export declare type PossibleRiderResponsibilities = {
|
|
148
148
|
__typename: "PossibleRiderResponsibilities";
|
|
149
149
|
id: string;
|
|
150
150
|
tenantId: string;
|
|
@@ -158,7 +158,7 @@ export type PossibleRiderResponsibilities = {
|
|
|
158
158
|
userPossibleRiderResponsibilitiesId?: string | null;
|
|
159
159
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
160
160
|
};
|
|
161
|
-
export type RiderResponsibility = {
|
|
161
|
+
export declare type RiderResponsibility = {
|
|
162
162
|
__typename: "RiderResponsibility";
|
|
163
163
|
id: string;
|
|
164
164
|
tenantId: string;
|
|
@@ -171,19 +171,19 @@ export type RiderResponsibility = {
|
|
|
171
171
|
_deleted?: boolean | null;
|
|
172
172
|
_lastChangedAt: number;
|
|
173
173
|
};
|
|
174
|
-
export type S3Object = {
|
|
174
|
+
export declare type S3Object = {
|
|
175
175
|
__typename: "S3Object";
|
|
176
176
|
bucket: string;
|
|
177
177
|
key: string;
|
|
178
178
|
region: string;
|
|
179
179
|
};
|
|
180
|
-
export type ModelCommentConnection = {
|
|
180
|
+
export declare type ModelCommentConnection = {
|
|
181
181
|
__typename: "ModelCommentConnection";
|
|
182
182
|
items: Array<Comment | null>;
|
|
183
183
|
nextToken?: string | null;
|
|
184
184
|
startedAt?: number | null;
|
|
185
185
|
};
|
|
186
|
-
export type Comment = {
|
|
186
|
+
export declare type Comment = {
|
|
187
187
|
__typename: "Comment";
|
|
188
188
|
id: string;
|
|
189
189
|
parentId?: string | null;
|
|
@@ -204,13 +204,13 @@ export declare enum CommentVisibility {
|
|
|
204
204
|
EVERYONE = "EVERYONE",
|
|
205
205
|
ME = "ME"
|
|
206
206
|
}
|
|
207
|
-
export type ModelTaskAssigneeConnection = {
|
|
207
|
+
export declare type ModelTaskAssigneeConnection = {
|
|
208
208
|
__typename: "ModelTaskAssigneeConnection";
|
|
209
209
|
items: Array<TaskAssignee | null>;
|
|
210
210
|
nextToken?: string | null;
|
|
211
211
|
startedAt?: number | null;
|
|
212
212
|
};
|
|
213
|
-
export type TaskAssignee = {
|
|
213
|
+
export declare type TaskAssignee = {
|
|
214
214
|
__typename: "TaskAssignee";
|
|
215
215
|
id: string;
|
|
216
216
|
tenantId: string;
|
|
@@ -226,7 +226,7 @@ export type TaskAssignee = {
|
|
|
226
226
|
userAssignmentsId?: string | null;
|
|
227
227
|
taskAssigneesId?: string | null;
|
|
228
228
|
};
|
|
229
|
-
export type Task = {
|
|
229
|
+
export declare type Task = {
|
|
230
230
|
__typename: "Task";
|
|
231
231
|
id: string;
|
|
232
232
|
tenantId: string;
|
|
@@ -265,7 +265,7 @@ export type Task = {
|
|
|
265
265
|
_lastChangedAt: number;
|
|
266
266
|
userCreatedTasksId?: string | null;
|
|
267
267
|
};
|
|
268
|
-
export type Location = {
|
|
268
|
+
export declare type Location = {
|
|
269
269
|
__typename: "Location";
|
|
270
270
|
id: string;
|
|
271
271
|
tenantId: string;
|
|
@@ -300,19 +300,19 @@ export type Location = {
|
|
|
300
300
|
_lastChangedAt: number;
|
|
301
301
|
userCreatedLocationsId?: string | null;
|
|
302
302
|
};
|
|
303
|
-
export type ModelTaskConnection = {
|
|
303
|
+
export declare type ModelTaskConnection = {
|
|
304
304
|
__typename: "ModelTaskConnection";
|
|
305
305
|
items: Array<Task | null>;
|
|
306
306
|
nextToken?: string | null;
|
|
307
307
|
startedAt?: number | null;
|
|
308
308
|
};
|
|
309
|
-
export type ModelScheduledTaskConnection = {
|
|
309
|
+
export declare type ModelScheduledTaskConnection = {
|
|
310
310
|
__typename: "ModelScheduledTaskConnection";
|
|
311
311
|
items: Array<ScheduledTask | null>;
|
|
312
312
|
nextToken?: string | null;
|
|
313
313
|
startedAt?: number | null;
|
|
314
314
|
};
|
|
315
|
-
export type ScheduledTask = {
|
|
315
|
+
export declare type ScheduledTask = {
|
|
316
316
|
__typename: "ScheduledTask";
|
|
317
317
|
id: string;
|
|
318
318
|
tenantId: string;
|
|
@@ -342,13 +342,13 @@ export declare enum Priority {
|
|
|
342
342
|
MEDIUM = "MEDIUM",
|
|
343
343
|
LOW = "LOW"
|
|
344
344
|
}
|
|
345
|
-
export type ModelDeliverableConnection = {
|
|
345
|
+
export declare type ModelDeliverableConnection = {
|
|
346
346
|
__typename: "ModelDeliverableConnection";
|
|
347
347
|
items: Array<Deliverable | null>;
|
|
348
348
|
nextToken?: string | null;
|
|
349
349
|
startedAt?: number | null;
|
|
350
350
|
};
|
|
351
|
-
export type Deliverable = {
|
|
351
|
+
export declare type Deliverable = {
|
|
352
352
|
__typename: "Deliverable";
|
|
353
353
|
id: string;
|
|
354
354
|
tenantId: string;
|
|
@@ -369,7 +369,7 @@ export type Deliverable = {
|
|
|
369
369
|
scheduledTaskDeliverablesId?: string | null;
|
|
370
370
|
deliverableTypeDeliverablesId?: string | null;
|
|
371
371
|
};
|
|
372
|
-
export type DeliverableType = {
|
|
372
|
+
export declare type DeliverableType = {
|
|
373
373
|
__typename: "DeliverableType";
|
|
374
374
|
id: string;
|
|
375
375
|
label: string;
|
|
@@ -400,7 +400,7 @@ export declare enum DeliverableUnit {
|
|
|
400
400
|
ITEM = "ITEM",
|
|
401
401
|
BOX = "BOX"
|
|
402
402
|
}
|
|
403
|
-
export type Schedule = {
|
|
403
|
+
export declare type Schedule = {
|
|
404
404
|
__typename: "Schedule";
|
|
405
405
|
relation?: TimeRelation | null;
|
|
406
406
|
timePrimary?: string | null;
|
|
@@ -425,13 +425,13 @@ export declare enum TaskStatus {
|
|
|
425
425
|
PENDING = "PENDING",
|
|
426
426
|
FUTURE = "FUTURE"
|
|
427
427
|
}
|
|
428
|
-
export type ModelVehicleAssignmentConnection = {
|
|
428
|
+
export declare type ModelVehicleAssignmentConnection = {
|
|
429
429
|
__typename: "ModelVehicleAssignmentConnection";
|
|
430
430
|
items: Array<VehicleAssignment | null>;
|
|
431
431
|
nextToken?: string | null;
|
|
432
432
|
startedAt?: number | null;
|
|
433
433
|
};
|
|
434
|
-
export type VehicleAssignment = {
|
|
434
|
+
export declare type VehicleAssignment = {
|
|
435
435
|
__typename: "VehicleAssignment";
|
|
436
436
|
id: string;
|
|
437
437
|
tenantId: string;
|
|
@@ -445,7 +445,7 @@ export type VehicleAssignment = {
|
|
|
445
445
|
userVehicleAssignmentsId?: string | null;
|
|
446
446
|
vehicleAssignmentsId?: string | null;
|
|
447
447
|
};
|
|
448
|
-
export type Vehicle = {
|
|
448
|
+
export declare type Vehicle = {
|
|
449
449
|
__typename: "Vehicle";
|
|
450
450
|
id: string;
|
|
451
451
|
tenantId: string;
|
|
@@ -465,30 +465,30 @@ export type Vehicle = {
|
|
|
465
465
|
_lastChangedAt: number;
|
|
466
466
|
userCreatedVehiclesId?: string | null;
|
|
467
467
|
};
|
|
468
|
-
export type ModelLocationConnection = {
|
|
468
|
+
export declare type ModelLocationConnection = {
|
|
469
469
|
__typename: "ModelLocationConnection";
|
|
470
470
|
items: Array<Location | null>;
|
|
471
471
|
nextToken?: string | null;
|
|
472
472
|
startedAt?: number | null;
|
|
473
473
|
};
|
|
474
|
-
export type ModelVehicleConnection = {
|
|
474
|
+
export declare type ModelVehicleConnection = {
|
|
475
475
|
__typename: "ModelVehicleConnection";
|
|
476
476
|
items: Array<Vehicle | null>;
|
|
477
477
|
nextToken?: string | null;
|
|
478
478
|
startedAt?: number | null;
|
|
479
479
|
};
|
|
480
|
-
export type UpdateTenantInput = {
|
|
480
|
+
export declare type UpdateTenantInput = {
|
|
481
481
|
id: string;
|
|
482
482
|
name?: string | null;
|
|
483
483
|
referenceIdentifier?: string | null;
|
|
484
484
|
_version?: number | null;
|
|
485
485
|
tenantAdminId?: string | null;
|
|
486
486
|
};
|
|
487
|
-
export type DeleteTenantInput = {
|
|
487
|
+
export declare type DeleteTenantInput = {
|
|
488
488
|
id: string;
|
|
489
489
|
_version?: number | null;
|
|
490
490
|
};
|
|
491
|
-
export type CreateUserInput = {
|
|
491
|
+
export declare type CreateUserInput = {
|
|
492
492
|
id?: string | null;
|
|
493
493
|
username: string;
|
|
494
494
|
cognitoId: string;
|
|
@@ -504,7 +504,7 @@ export type CreateUserInput = {
|
|
|
504
504
|
disabled?: number | null;
|
|
505
505
|
_version?: number | null;
|
|
506
506
|
};
|
|
507
|
-
export type AddressAndContactDetailsInput = {
|
|
507
|
+
export declare type AddressAndContactDetailsInput = {
|
|
508
508
|
name?: string | null;
|
|
509
509
|
telephoneNumber?: string | null;
|
|
510
510
|
mobileNumber?: string | null;
|
|
@@ -520,12 +520,12 @@ export type AddressAndContactDetailsInput = {
|
|
|
520
520
|
postcode?: string | null;
|
|
521
521
|
what3words?: string | null;
|
|
522
522
|
};
|
|
523
|
-
export type S3ObjectInput = {
|
|
523
|
+
export declare type S3ObjectInput = {
|
|
524
524
|
bucket: string;
|
|
525
525
|
key: string;
|
|
526
526
|
region: string;
|
|
527
527
|
};
|
|
528
|
-
export type ModelUserConditionInput = {
|
|
528
|
+
export declare type ModelUserConditionInput = {
|
|
529
529
|
username?: ModelStringInput | null;
|
|
530
530
|
cognitoId?: ModelIDInput | null;
|
|
531
531
|
tenantId?: ModelIDInput | null;
|
|
@@ -543,7 +543,7 @@ export type ModelUserConditionInput = {
|
|
|
543
543
|
createdAt?: ModelStringInput | null;
|
|
544
544
|
updatedAt?: ModelStringInput | null;
|
|
545
545
|
};
|
|
546
|
-
export type ModelIntInput = {
|
|
546
|
+
export declare type ModelIntInput = {
|
|
547
547
|
ne?: number | null;
|
|
548
548
|
eq?: number | null;
|
|
549
549
|
le?: number | null;
|
|
@@ -554,11 +554,11 @@ export type ModelIntInput = {
|
|
|
554
554
|
attributeExists?: boolean | null;
|
|
555
555
|
attributeType?: ModelAttributeTypes | null;
|
|
556
556
|
};
|
|
557
|
-
export type ModelRoleInput = {
|
|
557
|
+
export declare type ModelRoleInput = {
|
|
558
558
|
eq?: Role | null;
|
|
559
559
|
ne?: Role | null;
|
|
560
560
|
};
|
|
561
|
-
export type UpdateUserInput = {
|
|
561
|
+
export declare type UpdateUserInput = {
|
|
562
562
|
id: string;
|
|
563
563
|
username?: string | null;
|
|
564
564
|
cognitoId?: string | null;
|
|
@@ -574,18 +574,18 @@ export type UpdateUserInput = {
|
|
|
574
574
|
disabled?: number | null;
|
|
575
575
|
_version?: number | null;
|
|
576
576
|
};
|
|
577
|
-
export type DeleteUserInput = {
|
|
577
|
+
export declare type DeleteUserInput = {
|
|
578
578
|
id: string;
|
|
579
579
|
_version?: number | null;
|
|
580
580
|
};
|
|
581
|
-
export type CreatePossibleRiderResponsibilitiesInput = {
|
|
581
|
+
export declare type CreatePossibleRiderResponsibilitiesInput = {
|
|
582
582
|
id?: string | null;
|
|
583
583
|
tenantId: string;
|
|
584
584
|
_version?: number | null;
|
|
585
585
|
userPossibleRiderResponsibilitiesId?: string | null;
|
|
586
586
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
587
587
|
};
|
|
588
|
-
export type ModelPossibleRiderResponsibilitiesConditionInput = {
|
|
588
|
+
export declare type ModelPossibleRiderResponsibilitiesConditionInput = {
|
|
589
589
|
tenantId?: ModelIDInput | null;
|
|
590
590
|
and?: Array<ModelPossibleRiderResponsibilitiesConditionInput | null> | null;
|
|
591
591
|
or?: Array<ModelPossibleRiderResponsibilitiesConditionInput | null> | null;
|
|
@@ -596,18 +596,18 @@ export type ModelPossibleRiderResponsibilitiesConditionInput = {
|
|
|
596
596
|
userPossibleRiderResponsibilitiesId?: ModelIDInput | null;
|
|
597
597
|
riderResponsibilityPossibleUsersId?: ModelIDInput | null;
|
|
598
598
|
};
|
|
599
|
-
export type UpdatePossibleRiderResponsibilitiesInput = {
|
|
599
|
+
export declare type UpdatePossibleRiderResponsibilitiesInput = {
|
|
600
600
|
id: string;
|
|
601
601
|
tenantId?: string | null;
|
|
602
602
|
_version?: number | null;
|
|
603
603
|
userPossibleRiderResponsibilitiesId?: string | null;
|
|
604
604
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
605
605
|
};
|
|
606
|
-
export type DeletePossibleRiderResponsibilitiesInput = {
|
|
606
|
+
export declare type DeletePossibleRiderResponsibilitiesInput = {
|
|
607
607
|
id: string;
|
|
608
608
|
_version?: number | null;
|
|
609
609
|
};
|
|
610
|
-
export type CreateVehicleInput = {
|
|
610
|
+
export declare type CreateVehicleInput = {
|
|
611
611
|
id?: string | null;
|
|
612
612
|
tenantId: string;
|
|
613
613
|
name?: string | null;
|
|
@@ -619,7 +619,7 @@ export type CreateVehicleInput = {
|
|
|
619
619
|
_version?: number | null;
|
|
620
620
|
userCreatedVehiclesId?: string | null;
|
|
621
621
|
};
|
|
622
|
-
export type ModelVehicleConditionInput = {
|
|
622
|
+
export declare type ModelVehicleConditionInput = {
|
|
623
623
|
tenantId?: ModelIDInput | null;
|
|
624
624
|
name?: ModelStringInput | null;
|
|
625
625
|
manufacturer?: ModelStringInput | null;
|
|
@@ -635,7 +635,7 @@ export type ModelVehicleConditionInput = {
|
|
|
635
635
|
updatedAt?: ModelStringInput | null;
|
|
636
636
|
userCreatedVehiclesId?: ModelIDInput | null;
|
|
637
637
|
};
|
|
638
|
-
export type UpdateVehicleInput = {
|
|
638
|
+
export declare type UpdateVehicleInput = {
|
|
639
639
|
id: string;
|
|
640
640
|
tenantId?: string | null;
|
|
641
641
|
name?: string | null;
|
|
@@ -647,18 +647,18 @@ export type UpdateVehicleInput = {
|
|
|
647
647
|
_version?: number | null;
|
|
648
648
|
userCreatedVehiclesId?: string | null;
|
|
649
649
|
};
|
|
650
|
-
export type DeleteVehicleInput = {
|
|
650
|
+
export declare type DeleteVehicleInput = {
|
|
651
651
|
id: string;
|
|
652
652
|
_version?: number | null;
|
|
653
653
|
};
|
|
654
|
-
export type CreateVehicleAssignmentInput = {
|
|
654
|
+
export declare type CreateVehicleAssignmentInput = {
|
|
655
655
|
id?: string | null;
|
|
656
656
|
tenantId: string;
|
|
657
657
|
_version?: number | null;
|
|
658
658
|
userVehicleAssignmentsId?: string | null;
|
|
659
659
|
vehicleAssignmentsId?: string | null;
|
|
660
660
|
};
|
|
661
|
-
export type ModelVehicleAssignmentConditionInput = {
|
|
661
|
+
export declare type ModelVehicleAssignmentConditionInput = {
|
|
662
662
|
tenantId?: ModelIDInput | null;
|
|
663
663
|
and?: Array<ModelVehicleAssignmentConditionInput | null> | null;
|
|
664
664
|
or?: Array<ModelVehicleAssignmentConditionInput | null> | null;
|
|
@@ -669,18 +669,18 @@ export type ModelVehicleAssignmentConditionInput = {
|
|
|
669
669
|
userVehicleAssignmentsId?: ModelIDInput | null;
|
|
670
670
|
vehicleAssignmentsId?: ModelIDInput | null;
|
|
671
671
|
};
|
|
672
|
-
export type UpdateVehicleAssignmentInput = {
|
|
672
|
+
export declare type UpdateVehicleAssignmentInput = {
|
|
673
673
|
id: string;
|
|
674
674
|
tenantId?: string | null;
|
|
675
675
|
_version?: number | null;
|
|
676
676
|
userVehicleAssignmentsId?: string | null;
|
|
677
677
|
vehicleAssignmentsId?: string | null;
|
|
678
678
|
};
|
|
679
|
-
export type DeleteVehicleAssignmentInput = {
|
|
679
|
+
export declare type DeleteVehicleAssignmentInput = {
|
|
680
680
|
id: string;
|
|
681
681
|
_version?: number | null;
|
|
682
682
|
};
|
|
683
|
-
export type CreateLocationInput = {
|
|
683
|
+
export declare type CreateLocationInput = {
|
|
684
684
|
id?: string | null;
|
|
685
685
|
tenantId: string;
|
|
686
686
|
name?: string | null;
|
|
@@ -702,7 +702,7 @@ export type CreateLocationInput = {
|
|
|
702
702
|
_version?: number | null;
|
|
703
703
|
userCreatedLocationsId?: string | null;
|
|
704
704
|
};
|
|
705
|
-
export type ModelLocationConditionInput = {
|
|
705
|
+
export declare type ModelLocationConditionInput = {
|
|
706
706
|
tenantId?: ModelIDInput | null;
|
|
707
707
|
name?: ModelStringInput | null;
|
|
708
708
|
listed?: ModelIntInput | null;
|
|
@@ -727,7 +727,7 @@ export type ModelLocationConditionInput = {
|
|
|
727
727
|
updatedAt?: ModelStringInput | null;
|
|
728
728
|
userCreatedLocationsId?: ModelIDInput | null;
|
|
729
729
|
};
|
|
730
|
-
export type UpdateLocationInput = {
|
|
730
|
+
export declare type UpdateLocationInput = {
|
|
731
731
|
id: string;
|
|
732
732
|
tenantId?: string | null;
|
|
733
733
|
name?: string | null;
|
|
@@ -749,11 +749,11 @@ export type UpdateLocationInput = {
|
|
|
749
749
|
_version?: number | null;
|
|
750
750
|
userCreatedLocationsId?: string | null;
|
|
751
751
|
};
|
|
752
|
-
export type DeleteLocationInput = {
|
|
752
|
+
export declare type DeleteLocationInput = {
|
|
753
753
|
id: string;
|
|
754
754
|
_version?: number | null;
|
|
755
755
|
};
|
|
756
|
-
export type CreateTaskInput = {
|
|
756
|
+
export declare type CreateTaskInput = {
|
|
757
757
|
id?: string | null;
|
|
758
758
|
tenantId: string;
|
|
759
759
|
createdAt?: string | null;
|
|
@@ -781,12 +781,12 @@ export type CreateTaskInput = {
|
|
|
781
781
|
_version?: number | null;
|
|
782
782
|
userCreatedTasksId?: string | null;
|
|
783
783
|
};
|
|
784
|
-
export type ScheduleInput = {
|
|
784
|
+
export declare type ScheduleInput = {
|
|
785
785
|
relation?: TimeRelation | null;
|
|
786
786
|
timePrimary?: string | null;
|
|
787
787
|
timeSecondary?: string | null;
|
|
788
788
|
};
|
|
789
|
-
export type ModelTaskConditionInput = {
|
|
789
|
+
export declare type ModelTaskConditionInput = {
|
|
790
790
|
tenantId?: ModelIDInput | null;
|
|
791
791
|
createdAt?: ModelStringInput | null;
|
|
792
792
|
dateCreated?: ModelStringInput | null;
|
|
@@ -814,15 +814,15 @@ export type ModelTaskConditionInput = {
|
|
|
814
814
|
updatedAt?: ModelStringInput | null;
|
|
815
815
|
userCreatedTasksId?: ModelIDInput | null;
|
|
816
816
|
};
|
|
817
|
-
export type ModelPriorityInput = {
|
|
817
|
+
export declare type ModelPriorityInput = {
|
|
818
818
|
eq?: Priority | null;
|
|
819
819
|
ne?: Priority | null;
|
|
820
820
|
};
|
|
821
|
-
export type ModelTaskStatusInput = {
|
|
821
|
+
export declare type ModelTaskStatusInput = {
|
|
822
822
|
eq?: TaskStatus | null;
|
|
823
823
|
ne?: TaskStatus | null;
|
|
824
824
|
};
|
|
825
|
-
export type UpdateTaskInput = {
|
|
825
|
+
export declare type UpdateTaskInput = {
|
|
826
826
|
id: string;
|
|
827
827
|
tenantId?: string | null;
|
|
828
828
|
createdAt?: string | null;
|
|
@@ -850,11 +850,11 @@ export type UpdateTaskInput = {
|
|
|
850
850
|
_version?: number | null;
|
|
851
851
|
userCreatedTasksId?: string | null;
|
|
852
852
|
};
|
|
853
|
-
export type DeleteTaskInput = {
|
|
853
|
+
export declare type DeleteTaskInput = {
|
|
854
854
|
id: string;
|
|
855
855
|
_version?: number | null;
|
|
856
856
|
};
|
|
857
|
-
export type CreateTaskAssigneeInput = {
|
|
857
|
+
export declare type CreateTaskAssigneeInput = {
|
|
858
858
|
id?: string | null;
|
|
859
859
|
tenantId: string;
|
|
860
860
|
role: Role;
|
|
@@ -863,7 +863,7 @@ export type CreateTaskAssigneeInput = {
|
|
|
863
863
|
userAssignmentsId?: string | null;
|
|
864
864
|
taskAssigneesId?: string | null;
|
|
865
865
|
};
|
|
866
|
-
export type ModelTaskAssigneeConditionInput = {
|
|
866
|
+
export declare type ModelTaskAssigneeConditionInput = {
|
|
867
867
|
tenantId?: ModelIDInput | null;
|
|
868
868
|
role?: ModelRoleInput | null;
|
|
869
869
|
archived?: ModelIntInput | null;
|
|
@@ -876,7 +876,7 @@ export type ModelTaskAssigneeConditionInput = {
|
|
|
876
876
|
userAssignmentsId?: ModelIDInput | null;
|
|
877
877
|
taskAssigneesId?: ModelIDInput | null;
|
|
878
878
|
};
|
|
879
|
-
export type UpdateTaskAssigneeInput = {
|
|
879
|
+
export declare type UpdateTaskAssigneeInput = {
|
|
880
880
|
id: string;
|
|
881
881
|
tenantId?: string | null;
|
|
882
882
|
role?: Role | null;
|
|
@@ -885,11 +885,11 @@ export type UpdateTaskAssigneeInput = {
|
|
|
885
885
|
userAssignmentsId?: string | null;
|
|
886
886
|
taskAssigneesId?: string | null;
|
|
887
887
|
};
|
|
888
|
-
export type DeleteTaskAssigneeInput = {
|
|
888
|
+
export declare type DeleteTaskAssigneeInput = {
|
|
889
889
|
id: string;
|
|
890
890
|
_version?: number | null;
|
|
891
891
|
};
|
|
892
|
-
export type CreateScheduledTaskInput = {
|
|
892
|
+
export declare type CreateScheduledTaskInput = {
|
|
893
893
|
id?: string | null;
|
|
894
894
|
tenantId: string;
|
|
895
895
|
requesterContact?: AddressAndContactDetailsInput | null;
|
|
@@ -904,7 +904,7 @@ export type CreateScheduledTaskInput = {
|
|
|
904
904
|
_version?: number | null;
|
|
905
905
|
userCreatedScheduledTasksId?: string | null;
|
|
906
906
|
};
|
|
907
|
-
export type ModelScheduledTaskConditionInput = {
|
|
907
|
+
export declare type ModelScheduledTaskConditionInput = {
|
|
908
908
|
tenantId?: ModelIDInput | null;
|
|
909
909
|
cronExpression?: ModelStringInput | null;
|
|
910
910
|
pickUpLocationId?: ModelIDInput | null;
|
|
@@ -920,7 +920,7 @@ export type ModelScheduledTaskConditionInput = {
|
|
|
920
920
|
updatedAt?: ModelStringInput | null;
|
|
921
921
|
userCreatedScheduledTasksId?: ModelIDInput | null;
|
|
922
922
|
};
|
|
923
|
-
export type UpdateScheduledTaskInput = {
|
|
923
|
+
export declare type UpdateScheduledTaskInput = {
|
|
924
924
|
id: string;
|
|
925
925
|
tenantId?: string | null;
|
|
926
926
|
requesterContact?: AddressAndContactDetailsInput | null;
|
|
@@ -935,11 +935,11 @@ export type UpdateScheduledTaskInput = {
|
|
|
935
935
|
_version?: number | null;
|
|
936
936
|
userCreatedScheduledTasksId?: string | null;
|
|
937
937
|
};
|
|
938
|
-
export type DeleteScheduledTaskInput = {
|
|
938
|
+
export declare type DeleteScheduledTaskInput = {
|
|
939
939
|
id: string;
|
|
940
940
|
_version?: number | null;
|
|
941
941
|
};
|
|
942
|
-
export type CreateCommentInput = {
|
|
942
|
+
export declare type CreateCommentInput = {
|
|
943
943
|
id?: string | null;
|
|
944
944
|
parentId?: string | null;
|
|
945
945
|
owner?: string | null;
|
|
@@ -950,7 +950,7 @@ export type CreateCommentInput = {
|
|
|
950
950
|
_version?: number | null;
|
|
951
951
|
userCommentsId?: string | null;
|
|
952
952
|
};
|
|
953
|
-
export type ModelCommentConditionInput = {
|
|
953
|
+
export declare type ModelCommentConditionInput = {
|
|
954
954
|
parentId?: ModelIDInput | null;
|
|
955
955
|
owner?: ModelStringInput | null;
|
|
956
956
|
tenantId?: ModelIDInput | null;
|
|
@@ -965,11 +965,11 @@ export type ModelCommentConditionInput = {
|
|
|
965
965
|
updatedAt?: ModelStringInput | null;
|
|
966
966
|
userCommentsId?: ModelIDInput | null;
|
|
967
967
|
};
|
|
968
|
-
export type ModelCommentVisibilityInput = {
|
|
968
|
+
export declare type ModelCommentVisibilityInput = {
|
|
969
969
|
eq?: CommentVisibility | null;
|
|
970
970
|
ne?: CommentVisibility | null;
|
|
971
971
|
};
|
|
972
|
-
export type UpdateCommentInput = {
|
|
972
|
+
export declare type UpdateCommentInput = {
|
|
973
973
|
id: string;
|
|
974
974
|
parentId?: string | null;
|
|
975
975
|
owner?: string | null;
|
|
@@ -980,11 +980,11 @@ export type UpdateCommentInput = {
|
|
|
980
980
|
_version?: number | null;
|
|
981
981
|
userCommentsId?: string | null;
|
|
982
982
|
};
|
|
983
|
-
export type DeleteCommentInput = {
|
|
983
|
+
export declare type DeleteCommentInput = {
|
|
984
984
|
id: string;
|
|
985
985
|
_version?: number | null;
|
|
986
986
|
};
|
|
987
|
-
export type CreateDeliverableTypeInput = {
|
|
987
|
+
export declare type CreateDeliverableTypeInput = {
|
|
988
988
|
id?: string | null;
|
|
989
989
|
label: string;
|
|
990
990
|
tenantId: string;
|
|
@@ -994,7 +994,7 @@ export type CreateDeliverableTypeInput = {
|
|
|
994
994
|
disabled?: number | null;
|
|
995
995
|
_version?: number | null;
|
|
996
996
|
};
|
|
997
|
-
export type ModelDeliverableTypeConditionInput = {
|
|
997
|
+
export declare type ModelDeliverableTypeConditionInput = {
|
|
998
998
|
label?: ModelStringInput | null;
|
|
999
999
|
tenantId?: ModelIDInput | null;
|
|
1000
1000
|
icon?: ModelDeliverableTypeIconInput | null;
|
|
@@ -1008,15 +1008,15 @@ export type ModelDeliverableTypeConditionInput = {
|
|
|
1008
1008
|
createdAt?: ModelStringInput | null;
|
|
1009
1009
|
updatedAt?: ModelStringInput | null;
|
|
1010
1010
|
};
|
|
1011
|
-
export type ModelDeliverableTypeIconInput = {
|
|
1011
|
+
export declare type ModelDeliverableTypeIconInput = {
|
|
1012
1012
|
eq?: DeliverableTypeIcon | null;
|
|
1013
1013
|
ne?: DeliverableTypeIcon | null;
|
|
1014
1014
|
};
|
|
1015
|
-
export type ModelDeliverableUnitInput = {
|
|
1015
|
+
export declare type ModelDeliverableUnitInput = {
|
|
1016
1016
|
eq?: DeliverableUnit | null;
|
|
1017
1017
|
ne?: DeliverableUnit | null;
|
|
1018
1018
|
};
|
|
1019
|
-
export type UpdateDeliverableTypeInput = {
|
|
1019
|
+
export declare type UpdateDeliverableTypeInput = {
|
|
1020
1020
|
id: string;
|
|
1021
1021
|
label?: string | null;
|
|
1022
1022
|
tenantId?: string | null;
|
|
@@ -1026,11 +1026,11 @@ export type UpdateDeliverableTypeInput = {
|
|
|
1026
1026
|
disabled?: number | null;
|
|
1027
1027
|
_version?: number | null;
|
|
1028
1028
|
};
|
|
1029
|
-
export type DeleteDeliverableTypeInput = {
|
|
1029
|
+
export declare type DeleteDeliverableTypeInput = {
|
|
1030
1030
|
id: string;
|
|
1031
1031
|
_version?: number | null;
|
|
1032
1032
|
};
|
|
1033
|
-
export type CreateDeliverableInput = {
|
|
1033
|
+
export declare type CreateDeliverableInput = {
|
|
1034
1034
|
id?: string | null;
|
|
1035
1035
|
tenantId: string;
|
|
1036
1036
|
count?: number | null;
|
|
@@ -1042,7 +1042,7 @@ export type CreateDeliverableInput = {
|
|
|
1042
1042
|
scheduledTaskDeliverablesId?: string | null;
|
|
1043
1043
|
deliverableTypeDeliverablesId?: string | null;
|
|
1044
1044
|
};
|
|
1045
|
-
export type ModelDeliverableConditionInput = {
|
|
1045
|
+
export declare type ModelDeliverableConditionInput = {
|
|
1046
1046
|
tenantId?: ModelIDInput | null;
|
|
1047
1047
|
count?: ModelIntInput | null;
|
|
1048
1048
|
unit?: ModelDeliverableUnitInput | null;
|
|
@@ -1058,7 +1058,7 @@ export type ModelDeliverableConditionInput = {
|
|
|
1058
1058
|
scheduledTaskDeliverablesId?: ModelIDInput | null;
|
|
1059
1059
|
deliverableTypeDeliverablesId?: ModelIDInput | null;
|
|
1060
1060
|
};
|
|
1061
|
-
export type UpdateDeliverableInput = {
|
|
1061
|
+
export declare type UpdateDeliverableInput = {
|
|
1062
1062
|
id: string;
|
|
1063
1063
|
tenantId?: string | null;
|
|
1064
1064
|
count?: number | null;
|
|
@@ -1070,18 +1070,18 @@ export type UpdateDeliverableInput = {
|
|
|
1070
1070
|
scheduledTaskDeliverablesId?: string | null;
|
|
1071
1071
|
deliverableTypeDeliverablesId?: string | null;
|
|
1072
1072
|
};
|
|
1073
|
-
export type DeleteDeliverableInput = {
|
|
1073
|
+
export declare type DeleteDeliverableInput = {
|
|
1074
1074
|
id: string;
|
|
1075
1075
|
_version?: number | null;
|
|
1076
1076
|
};
|
|
1077
|
-
export type CreateRiderResponsibilityInput = {
|
|
1077
|
+
export declare type CreateRiderResponsibilityInput = {
|
|
1078
1078
|
id?: string | null;
|
|
1079
1079
|
tenantId: string;
|
|
1080
1080
|
label: string;
|
|
1081
1081
|
disabled?: number | null;
|
|
1082
1082
|
_version?: number | null;
|
|
1083
1083
|
};
|
|
1084
|
-
export type ModelRiderResponsibilityConditionInput = {
|
|
1084
|
+
export declare type ModelRiderResponsibilityConditionInput = {
|
|
1085
1085
|
tenantId?: ModelIDInput | null;
|
|
1086
1086
|
label?: ModelStringInput | null;
|
|
1087
1087
|
disabled?: ModelIntInput | null;
|
|
@@ -1092,22 +1092,22 @@ export type ModelRiderResponsibilityConditionInput = {
|
|
|
1092
1092
|
createdAt?: ModelStringInput | null;
|
|
1093
1093
|
updatedAt?: ModelStringInput | null;
|
|
1094
1094
|
};
|
|
1095
|
-
export type UpdateRiderResponsibilityInput = {
|
|
1095
|
+
export declare type UpdateRiderResponsibilityInput = {
|
|
1096
1096
|
id: string;
|
|
1097
1097
|
tenantId?: string | null;
|
|
1098
1098
|
label?: string | null;
|
|
1099
1099
|
disabled?: number | null;
|
|
1100
1100
|
_version?: number | null;
|
|
1101
1101
|
};
|
|
1102
|
-
export type DeleteRiderResponsibilityInput = {
|
|
1102
|
+
export declare type DeleteRiderResponsibilityInput = {
|
|
1103
1103
|
id: string;
|
|
1104
1104
|
_version?: number | null;
|
|
1105
1105
|
};
|
|
1106
|
-
export type SendFeedback = {
|
|
1106
|
+
export declare type SendFeedback = {
|
|
1107
1107
|
__typename: "SendFeedback";
|
|
1108
1108
|
successState?: boolean | null;
|
|
1109
1109
|
};
|
|
1110
|
-
export type ModelTenantFilterInput = {
|
|
1110
|
+
export declare type ModelTenantFilterInput = {
|
|
1111
1111
|
id?: ModelIDInput | null;
|
|
1112
1112
|
name?: ModelStringInput | null;
|
|
1113
1113
|
referenceIdentifier?: ModelStringInput | null;
|
|
@@ -1119,7 +1119,7 @@ export type ModelTenantFilterInput = {
|
|
|
1119
1119
|
_deleted?: ModelBooleanInput | null;
|
|
1120
1120
|
tenantAdminId?: ModelIDInput | null;
|
|
1121
1121
|
};
|
|
1122
|
-
export type ModelTenantConnection = {
|
|
1122
|
+
export declare type ModelTenantConnection = {
|
|
1123
1123
|
__typename: "ModelTenantConnection";
|
|
1124
1124
|
items: Array<Tenant | null>;
|
|
1125
1125
|
nextToken?: string | null;
|
|
@@ -1129,7 +1129,7 @@ export declare enum ModelSortDirection {
|
|
|
1129
1129
|
ASC = "ASC",
|
|
1130
1130
|
DESC = "DESC"
|
|
1131
1131
|
}
|
|
1132
|
-
export type ModelUserFilterInput = {
|
|
1132
|
+
export declare type ModelUserFilterInput = {
|
|
1133
1133
|
id?: ModelIDInput | null;
|
|
1134
1134
|
username?: ModelStringInput | null;
|
|
1135
1135
|
cognitoId?: ModelIDInput | null;
|
|
@@ -1148,13 +1148,13 @@ export type ModelUserFilterInput = {
|
|
|
1148
1148
|
not?: ModelUserFilterInput | null;
|
|
1149
1149
|
_deleted?: ModelBooleanInput | null;
|
|
1150
1150
|
};
|
|
1151
|
-
export type ModelUserConnection = {
|
|
1151
|
+
export declare type ModelUserConnection = {
|
|
1152
1152
|
__typename: "ModelUserConnection";
|
|
1153
1153
|
items: Array<User | null>;
|
|
1154
1154
|
nextToken?: string | null;
|
|
1155
1155
|
startedAt?: number | null;
|
|
1156
1156
|
};
|
|
1157
|
-
export type ModelPossibleRiderResponsibilitiesFilterInput = {
|
|
1157
|
+
export declare type ModelPossibleRiderResponsibilitiesFilterInput = {
|
|
1158
1158
|
id?: ModelIDInput | null;
|
|
1159
1159
|
tenantId?: ModelIDInput | null;
|
|
1160
1160
|
createdAt?: ModelStringInput | null;
|
|
@@ -1166,7 +1166,7 @@ export type ModelPossibleRiderResponsibilitiesFilterInput = {
|
|
|
1166
1166
|
userPossibleRiderResponsibilitiesId?: ModelIDInput | null;
|
|
1167
1167
|
riderResponsibilityPossibleUsersId?: ModelIDInput | null;
|
|
1168
1168
|
};
|
|
1169
|
-
export type ModelVehicleFilterInput = {
|
|
1169
|
+
export declare type ModelVehicleFilterInput = {
|
|
1170
1170
|
id?: ModelIDInput | null;
|
|
1171
1171
|
tenantId?: ModelIDInput | null;
|
|
1172
1172
|
name?: ModelStringInput | null;
|
|
@@ -1183,7 +1183,7 @@ export type ModelVehicleFilterInput = {
|
|
|
1183
1183
|
_deleted?: ModelBooleanInput | null;
|
|
1184
1184
|
userCreatedVehiclesId?: ModelIDInput | null;
|
|
1185
1185
|
};
|
|
1186
|
-
export type ModelVehicleAssignmentFilterInput = {
|
|
1186
|
+
export declare type ModelVehicleAssignmentFilterInput = {
|
|
1187
1187
|
id?: ModelIDInput | null;
|
|
1188
1188
|
tenantId?: ModelIDInput | null;
|
|
1189
1189
|
createdAt?: ModelStringInput | null;
|
|
@@ -1195,7 +1195,7 @@ export type ModelVehicleAssignmentFilterInput = {
|
|
|
1195
1195
|
userVehicleAssignmentsId?: ModelIDInput | null;
|
|
1196
1196
|
vehicleAssignmentsId?: ModelIDInput | null;
|
|
1197
1197
|
};
|
|
1198
|
-
export type ModelLocationFilterInput = {
|
|
1198
|
+
export declare type ModelLocationFilterInput = {
|
|
1199
1199
|
id?: ModelIDInput | null;
|
|
1200
1200
|
tenantId?: ModelIDInput | null;
|
|
1201
1201
|
name?: ModelStringInput | null;
|
|
@@ -1221,7 +1221,7 @@ export type ModelLocationFilterInput = {
|
|
|
1221
1221
|
_deleted?: ModelBooleanInput | null;
|
|
1222
1222
|
userCreatedLocationsId?: ModelIDInput | null;
|
|
1223
1223
|
};
|
|
1224
|
-
export type ModelTaskFilterInput = {
|
|
1224
|
+
export declare type ModelTaskFilterInput = {
|
|
1225
1225
|
id?: ModelIDInput | null;
|
|
1226
1226
|
tenantId?: ModelIDInput | null;
|
|
1227
1227
|
createdAt?: ModelStringInput | null;
|
|
@@ -1250,7 +1250,7 @@ export type ModelTaskFilterInput = {
|
|
|
1250
1250
|
_deleted?: ModelBooleanInput | null;
|
|
1251
1251
|
userCreatedTasksId?: ModelIDInput | null;
|
|
1252
1252
|
};
|
|
1253
|
-
export type ModelStringKeyConditionInput = {
|
|
1253
|
+
export declare type ModelStringKeyConditionInput = {
|
|
1254
1254
|
eq?: string | null;
|
|
1255
1255
|
le?: string | null;
|
|
1256
1256
|
lt?: string | null;
|
|
@@ -1259,7 +1259,7 @@ export type ModelStringKeyConditionInput = {
|
|
|
1259
1259
|
between?: Array<string | null> | null;
|
|
1260
1260
|
beginsWith?: string | null;
|
|
1261
1261
|
};
|
|
1262
|
-
export type ModelTaskAssigneeFilterInput = {
|
|
1262
|
+
export declare type ModelTaskAssigneeFilterInput = {
|
|
1263
1263
|
id?: ModelIDInput | null;
|
|
1264
1264
|
tenantId?: ModelIDInput | null;
|
|
1265
1265
|
role?: ModelRoleInput | null;
|
|
@@ -1273,7 +1273,7 @@ export type ModelTaskAssigneeFilterInput = {
|
|
|
1273
1273
|
userAssignmentsId?: ModelIDInput | null;
|
|
1274
1274
|
taskAssigneesId?: ModelIDInput | null;
|
|
1275
1275
|
};
|
|
1276
|
-
export type ModelScheduledTaskFilterInput = {
|
|
1276
|
+
export declare type ModelScheduledTaskFilterInput = {
|
|
1277
1277
|
id?: ModelIDInput | null;
|
|
1278
1278
|
tenantId?: ModelIDInput | null;
|
|
1279
1279
|
cronExpression?: ModelStringInput | null;
|
|
@@ -1290,7 +1290,7 @@ export type ModelScheduledTaskFilterInput = {
|
|
|
1290
1290
|
_deleted?: ModelBooleanInput | null;
|
|
1291
1291
|
userCreatedScheduledTasksId?: ModelIDInput | null;
|
|
1292
1292
|
};
|
|
1293
|
-
export type ModelCommentFilterInput = {
|
|
1293
|
+
export declare type ModelCommentFilterInput = {
|
|
1294
1294
|
id?: ModelIDInput | null;
|
|
1295
1295
|
parentId?: ModelIDInput | null;
|
|
1296
1296
|
owner?: ModelStringInput | null;
|
|
@@ -1306,7 +1306,7 @@ export type ModelCommentFilterInput = {
|
|
|
1306
1306
|
_deleted?: ModelBooleanInput | null;
|
|
1307
1307
|
userCommentsId?: ModelIDInput | null;
|
|
1308
1308
|
};
|
|
1309
|
-
export type ModelDeliverableTypeFilterInput = {
|
|
1309
|
+
export declare type ModelDeliverableTypeFilterInput = {
|
|
1310
1310
|
id?: ModelIDInput | null;
|
|
1311
1311
|
label?: ModelStringInput | null;
|
|
1312
1312
|
tenantId?: ModelIDInput | null;
|
|
@@ -1321,13 +1321,13 @@ export type ModelDeliverableTypeFilterInput = {
|
|
|
1321
1321
|
not?: ModelDeliverableTypeFilterInput | null;
|
|
1322
1322
|
_deleted?: ModelBooleanInput | null;
|
|
1323
1323
|
};
|
|
1324
|
-
export type ModelDeliverableTypeConnection = {
|
|
1324
|
+
export declare type ModelDeliverableTypeConnection = {
|
|
1325
1325
|
__typename: "ModelDeliverableTypeConnection";
|
|
1326
1326
|
items: Array<DeliverableType | null>;
|
|
1327
1327
|
nextToken?: string | null;
|
|
1328
1328
|
startedAt?: number | null;
|
|
1329
1329
|
};
|
|
1330
|
-
export type ModelDeliverableFilterInput = {
|
|
1330
|
+
export declare type ModelDeliverableFilterInput = {
|
|
1331
1331
|
id?: ModelIDInput | null;
|
|
1332
1332
|
tenantId?: ModelIDInput | null;
|
|
1333
1333
|
count?: ModelIntInput | null;
|
|
@@ -1344,7 +1344,7 @@ export type ModelDeliverableFilterInput = {
|
|
|
1344
1344
|
scheduledTaskDeliverablesId?: ModelIDInput | null;
|
|
1345
1345
|
deliverableTypeDeliverablesId?: ModelIDInput | null;
|
|
1346
1346
|
};
|
|
1347
|
-
export type ModelRiderResponsibilityFilterInput = {
|
|
1347
|
+
export declare type ModelRiderResponsibilityFilterInput = {
|
|
1348
1348
|
id?: ModelIDInput | null;
|
|
1349
1349
|
tenantId?: ModelIDInput | null;
|
|
1350
1350
|
label?: ModelStringInput | null;
|
|
@@ -1356,13 +1356,13 @@ export type ModelRiderResponsibilityFilterInput = {
|
|
|
1356
1356
|
not?: ModelRiderResponsibilityFilterInput | null;
|
|
1357
1357
|
_deleted?: ModelBooleanInput | null;
|
|
1358
1358
|
};
|
|
1359
|
-
export type ModelRiderResponsibilityConnection = {
|
|
1359
|
+
export declare type ModelRiderResponsibilityConnection = {
|
|
1360
1360
|
__typename: "ModelRiderResponsibilityConnection";
|
|
1361
1361
|
items: Array<RiderResponsibility | null>;
|
|
1362
1362
|
nextToken?: string | null;
|
|
1363
1363
|
startedAt?: number | null;
|
|
1364
1364
|
};
|
|
1365
|
-
export type ModelSubscriptionTenantFilterInput = {
|
|
1365
|
+
export declare type ModelSubscriptionTenantFilterInput = {
|
|
1366
1366
|
id?: ModelSubscriptionIDInput | null;
|
|
1367
1367
|
name?: ModelSubscriptionStringInput | null;
|
|
1368
1368
|
referenceIdentifier?: ModelSubscriptionStringInput | null;
|
|
@@ -1373,7 +1373,7 @@ export type ModelSubscriptionTenantFilterInput = {
|
|
|
1373
1373
|
_deleted?: ModelBooleanInput | null;
|
|
1374
1374
|
tenantAdminId?: ModelSubscriptionIDInput | null;
|
|
1375
1375
|
};
|
|
1376
|
-
export type ModelSubscriptionIDInput = {
|
|
1376
|
+
export declare type ModelSubscriptionIDInput = {
|
|
1377
1377
|
ne?: string | null;
|
|
1378
1378
|
eq?: string | null;
|
|
1379
1379
|
le?: string | null;
|
|
@@ -1387,7 +1387,7 @@ export type ModelSubscriptionIDInput = {
|
|
|
1387
1387
|
in?: Array<string | null> | null;
|
|
1388
1388
|
notIn?: Array<string | null> | null;
|
|
1389
1389
|
};
|
|
1390
|
-
export type ModelSubscriptionStringInput = {
|
|
1390
|
+
export declare type ModelSubscriptionStringInput = {
|
|
1391
1391
|
ne?: string | null;
|
|
1392
1392
|
eq?: string | null;
|
|
1393
1393
|
le?: string | null;
|
|
@@ -1401,7 +1401,7 @@ export type ModelSubscriptionStringInput = {
|
|
|
1401
1401
|
in?: Array<string | null> | null;
|
|
1402
1402
|
notIn?: Array<string | null> | null;
|
|
1403
1403
|
};
|
|
1404
|
-
export type ModelSubscriptionUserFilterInput = {
|
|
1404
|
+
export declare type ModelSubscriptionUserFilterInput = {
|
|
1405
1405
|
id?: ModelSubscriptionIDInput | null;
|
|
1406
1406
|
username?: ModelSubscriptionStringInput | null;
|
|
1407
1407
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
@@ -1427,7 +1427,7 @@ export type ModelSubscriptionUserFilterInput = {
|
|
|
1427
1427
|
userCreatedScheduledTasksId?: ModelSubscriptionIDInput | null;
|
|
1428
1428
|
cognitoId?: ModelStringInput | null;
|
|
1429
1429
|
};
|
|
1430
|
-
export type ModelSubscriptionIntInput = {
|
|
1430
|
+
export declare type ModelSubscriptionIntInput = {
|
|
1431
1431
|
ne?: number | null;
|
|
1432
1432
|
eq?: number | null;
|
|
1433
1433
|
le?: number | null;
|
|
@@ -1438,7 +1438,7 @@ export type ModelSubscriptionIntInput = {
|
|
|
1438
1438
|
in?: Array<number | null> | null;
|
|
1439
1439
|
notIn?: Array<number | null> | null;
|
|
1440
1440
|
};
|
|
1441
|
-
export type ModelSubscriptionPossibleRiderResponsibilitiesFilterInput = {
|
|
1441
|
+
export declare type ModelSubscriptionPossibleRiderResponsibilitiesFilterInput = {
|
|
1442
1442
|
id?: ModelSubscriptionIDInput | null;
|
|
1443
1443
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1444
1444
|
createdAt?: ModelSubscriptionStringInput | null;
|
|
@@ -1447,7 +1447,7 @@ export type ModelSubscriptionPossibleRiderResponsibilitiesFilterInput = {
|
|
|
1447
1447
|
or?: Array<ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null> | null;
|
|
1448
1448
|
_deleted?: ModelBooleanInput | null;
|
|
1449
1449
|
};
|
|
1450
|
-
export type ModelSubscriptionVehicleFilterInput = {
|
|
1450
|
+
export declare type ModelSubscriptionVehicleFilterInput = {
|
|
1451
1451
|
id?: ModelSubscriptionIDInput | null;
|
|
1452
1452
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1453
1453
|
name?: ModelSubscriptionStringInput | null;
|
|
@@ -1463,7 +1463,7 @@ export type ModelSubscriptionVehicleFilterInput = {
|
|
|
1463
1463
|
_deleted?: ModelBooleanInput | null;
|
|
1464
1464
|
vehicleAssignmentsId?: ModelSubscriptionIDInput | null;
|
|
1465
1465
|
};
|
|
1466
|
-
export type ModelSubscriptionVehicleAssignmentFilterInput = {
|
|
1466
|
+
export declare type ModelSubscriptionVehicleAssignmentFilterInput = {
|
|
1467
1467
|
id?: ModelSubscriptionIDInput | null;
|
|
1468
1468
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1469
1469
|
createdAt?: ModelSubscriptionStringInput | null;
|
|
@@ -1472,7 +1472,7 @@ export type ModelSubscriptionVehicleAssignmentFilterInput = {
|
|
|
1472
1472
|
or?: Array<ModelSubscriptionVehicleAssignmentFilterInput | null> | null;
|
|
1473
1473
|
_deleted?: ModelBooleanInput | null;
|
|
1474
1474
|
};
|
|
1475
|
-
export type ModelSubscriptionLocationFilterInput = {
|
|
1475
|
+
export declare type ModelSubscriptionLocationFilterInput = {
|
|
1476
1476
|
id?: ModelSubscriptionIDInput | null;
|
|
1477
1477
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1478
1478
|
name?: ModelSubscriptionStringInput | null;
|
|
@@ -1496,7 +1496,7 @@ export type ModelSubscriptionLocationFilterInput = {
|
|
|
1496
1496
|
or?: Array<ModelSubscriptionLocationFilterInput | null> | null;
|
|
1497
1497
|
_deleted?: ModelBooleanInput | null;
|
|
1498
1498
|
};
|
|
1499
|
-
export type ModelSubscriptionTaskFilterInput = {
|
|
1499
|
+
export declare type ModelSubscriptionTaskFilterInput = {
|
|
1500
1500
|
id?: ModelSubscriptionIDInput | null;
|
|
1501
1501
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1502
1502
|
createdAt?: ModelSubscriptionStringInput | null;
|
|
@@ -1525,7 +1525,7 @@ export type ModelSubscriptionTaskFilterInput = {
|
|
|
1525
1525
|
taskAssigneesId?: ModelSubscriptionIDInput | null;
|
|
1526
1526
|
taskDeliverablesId?: ModelSubscriptionIDInput | null;
|
|
1527
1527
|
};
|
|
1528
|
-
export type ModelSubscriptionTaskAssigneeFilterInput = {
|
|
1528
|
+
export declare type ModelSubscriptionTaskAssigneeFilterInput = {
|
|
1529
1529
|
id?: ModelSubscriptionIDInput | null;
|
|
1530
1530
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1531
1531
|
role?: ModelSubscriptionStringInput | null;
|
|
@@ -1536,7 +1536,7 @@ export type ModelSubscriptionTaskAssigneeFilterInput = {
|
|
|
1536
1536
|
or?: Array<ModelSubscriptionTaskAssigneeFilterInput | null> | null;
|
|
1537
1537
|
_deleted?: ModelBooleanInput | null;
|
|
1538
1538
|
};
|
|
1539
|
-
export type ModelSubscriptionScheduledTaskFilterInput = {
|
|
1539
|
+
export declare type ModelSubscriptionScheduledTaskFilterInput = {
|
|
1540
1540
|
id?: ModelSubscriptionIDInput | null;
|
|
1541
1541
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1542
1542
|
cronExpression?: ModelSubscriptionStringInput | null;
|
|
@@ -1552,7 +1552,7 @@ export type ModelSubscriptionScheduledTaskFilterInput = {
|
|
|
1552
1552
|
_deleted?: ModelBooleanInput | null;
|
|
1553
1553
|
scheduledTaskDeliverablesId?: ModelSubscriptionIDInput | null;
|
|
1554
1554
|
};
|
|
1555
|
-
export type ModelSubscriptionCommentFilterInput = {
|
|
1555
|
+
export declare type ModelSubscriptionCommentFilterInput = {
|
|
1556
1556
|
id?: ModelSubscriptionIDInput | null;
|
|
1557
1557
|
parentId?: ModelSubscriptionIDInput | null;
|
|
1558
1558
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
@@ -1566,7 +1566,7 @@ export type ModelSubscriptionCommentFilterInput = {
|
|
|
1566
1566
|
_deleted?: ModelBooleanInput | null;
|
|
1567
1567
|
owner?: ModelStringInput | null;
|
|
1568
1568
|
};
|
|
1569
|
-
export type ModelSubscriptionDeliverableTypeFilterInput = {
|
|
1569
|
+
export declare type ModelSubscriptionDeliverableTypeFilterInput = {
|
|
1570
1570
|
id?: ModelSubscriptionIDInput | null;
|
|
1571
1571
|
label?: ModelSubscriptionStringInput | null;
|
|
1572
1572
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
@@ -1581,7 +1581,7 @@ export type ModelSubscriptionDeliverableTypeFilterInput = {
|
|
|
1581
1581
|
_deleted?: ModelBooleanInput | null;
|
|
1582
1582
|
deliverableTypeDeliverablesId?: ModelSubscriptionIDInput | null;
|
|
1583
1583
|
};
|
|
1584
|
-
export type ModelSubscriptionDeliverableFilterInput = {
|
|
1584
|
+
export declare type ModelSubscriptionDeliverableFilterInput = {
|
|
1585
1585
|
id?: ModelSubscriptionIDInput | null;
|
|
1586
1586
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1587
1587
|
count?: ModelSubscriptionIntInput | null;
|
|
@@ -1594,7 +1594,7 @@ export type ModelSubscriptionDeliverableFilterInput = {
|
|
|
1594
1594
|
or?: Array<ModelSubscriptionDeliverableFilterInput | null> | null;
|
|
1595
1595
|
_deleted?: ModelBooleanInput | null;
|
|
1596
1596
|
};
|
|
1597
|
-
export type ModelSubscriptionRiderResponsibilityFilterInput = {
|
|
1597
|
+
export declare type ModelSubscriptionRiderResponsibilityFilterInput = {
|
|
1598
1598
|
id?: ModelSubscriptionIDInput | null;
|
|
1599
1599
|
tenantId?: ModelSubscriptionIDInput | null;
|
|
1600
1600
|
label?: ModelSubscriptionStringInput | null;
|
|
@@ -1606,11 +1606,11 @@ export type ModelSubscriptionRiderResponsibilityFilterInput = {
|
|
|
1606
1606
|
_deleted?: ModelBooleanInput | null;
|
|
1607
1607
|
riderResponsibilityPossibleUsersId?: ModelSubscriptionIDInput | null;
|
|
1608
1608
|
};
|
|
1609
|
-
export type CreateTenantMutationVariables = {
|
|
1609
|
+
export declare type CreateTenantMutationVariables = {
|
|
1610
1610
|
input: CreateTenantInput;
|
|
1611
1611
|
condition?: ModelTenantConditionInput | null;
|
|
1612
1612
|
};
|
|
1613
|
-
export type CreateTenantMutation = {
|
|
1613
|
+
export declare type CreateTenantMutation = {
|
|
1614
1614
|
createTenant?: {
|
|
1615
1615
|
__typename: "Tenant";
|
|
1616
1616
|
id: string;
|
|
@@ -1643,11 +1643,11 @@ export type CreateTenantMutation = {
|
|
|
1643
1643
|
tenantAdminId: string;
|
|
1644
1644
|
} | null;
|
|
1645
1645
|
};
|
|
1646
|
-
export type UpdateTenantMutationVariables = {
|
|
1646
|
+
export declare type UpdateTenantMutationVariables = {
|
|
1647
1647
|
input: UpdateTenantInput;
|
|
1648
1648
|
condition?: ModelTenantConditionInput | null;
|
|
1649
1649
|
};
|
|
1650
|
-
export type UpdateTenantMutation = {
|
|
1650
|
+
export declare type UpdateTenantMutation = {
|
|
1651
1651
|
updateTenant?: {
|
|
1652
1652
|
__typename: "Tenant";
|
|
1653
1653
|
id: string;
|
|
@@ -1680,11 +1680,11 @@ export type UpdateTenantMutation = {
|
|
|
1680
1680
|
tenantAdminId: string;
|
|
1681
1681
|
} | null;
|
|
1682
1682
|
};
|
|
1683
|
-
export type DeleteTenantMutationVariables = {
|
|
1683
|
+
export declare type DeleteTenantMutationVariables = {
|
|
1684
1684
|
input: DeleteTenantInput;
|
|
1685
1685
|
condition?: ModelTenantConditionInput | null;
|
|
1686
1686
|
};
|
|
1687
|
-
export type DeleteTenantMutation = {
|
|
1687
|
+
export declare type DeleteTenantMutation = {
|
|
1688
1688
|
deleteTenant?: {
|
|
1689
1689
|
__typename: "Tenant";
|
|
1690
1690
|
id: string;
|
|
@@ -1717,11 +1717,11 @@ export type DeleteTenantMutation = {
|
|
|
1717
1717
|
tenantAdminId: string;
|
|
1718
1718
|
} | null;
|
|
1719
1719
|
};
|
|
1720
|
-
export type CreateUserMutationVariables = {
|
|
1720
|
+
export declare type CreateUserMutationVariables = {
|
|
1721
1721
|
input: CreateUserInput;
|
|
1722
1722
|
condition?: ModelUserConditionInput | null;
|
|
1723
1723
|
};
|
|
1724
|
-
export type CreateUserMutation = {
|
|
1724
|
+
export declare type CreateUserMutation = {
|
|
1725
1725
|
createUser?: {
|
|
1726
1726
|
__typename: "User";
|
|
1727
1727
|
id: string;
|
|
@@ -1805,11 +1805,11 @@ export type CreateUserMutation = {
|
|
|
1805
1805
|
_lastChangedAt: number;
|
|
1806
1806
|
} | null;
|
|
1807
1807
|
};
|
|
1808
|
-
export type UpdateUserMutationVariables = {
|
|
1808
|
+
export declare type UpdateUserMutationVariables = {
|
|
1809
1809
|
input: UpdateUserInput;
|
|
1810
1810
|
condition?: ModelUserConditionInput | null;
|
|
1811
1811
|
};
|
|
1812
|
-
export type UpdateUserMutation = {
|
|
1812
|
+
export declare type UpdateUserMutation = {
|
|
1813
1813
|
updateUser?: {
|
|
1814
1814
|
__typename: "User";
|
|
1815
1815
|
id: string;
|
|
@@ -1893,11 +1893,11 @@ export type UpdateUserMutation = {
|
|
|
1893
1893
|
_lastChangedAt: number;
|
|
1894
1894
|
} | null;
|
|
1895
1895
|
};
|
|
1896
|
-
export type DeleteUserMutationVariables = {
|
|
1896
|
+
export declare type DeleteUserMutationVariables = {
|
|
1897
1897
|
input: DeleteUserInput;
|
|
1898
1898
|
condition?: ModelUserConditionInput | null;
|
|
1899
1899
|
};
|
|
1900
|
-
export type DeleteUserMutation = {
|
|
1900
|
+
export declare type DeleteUserMutation = {
|
|
1901
1901
|
deleteUser?: {
|
|
1902
1902
|
__typename: "User";
|
|
1903
1903
|
id: string;
|
|
@@ -1981,11 +1981,11 @@ export type DeleteUserMutation = {
|
|
|
1981
1981
|
_lastChangedAt: number;
|
|
1982
1982
|
} | null;
|
|
1983
1983
|
};
|
|
1984
|
-
export type CreatePossibleRiderResponsibilitiesMutationVariables = {
|
|
1984
|
+
export declare type CreatePossibleRiderResponsibilitiesMutationVariables = {
|
|
1985
1985
|
input: CreatePossibleRiderResponsibilitiesInput;
|
|
1986
1986
|
condition?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
1987
1987
|
};
|
|
1988
|
-
export type CreatePossibleRiderResponsibilitiesMutation = {
|
|
1988
|
+
export declare type CreatePossibleRiderResponsibilitiesMutation = {
|
|
1989
1989
|
createPossibleRiderResponsibilities?: {
|
|
1990
1990
|
__typename: "PossibleRiderResponsibilities";
|
|
1991
1991
|
id: string;
|
|
@@ -2030,11 +2030,11 @@ export type CreatePossibleRiderResponsibilitiesMutation = {
|
|
|
2030
2030
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
2031
2031
|
} | null;
|
|
2032
2032
|
};
|
|
2033
|
-
export type UpdatePossibleRiderResponsibilitiesMutationVariables = {
|
|
2033
|
+
export declare type UpdatePossibleRiderResponsibilitiesMutationVariables = {
|
|
2034
2034
|
input: UpdatePossibleRiderResponsibilitiesInput;
|
|
2035
2035
|
condition?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
2036
2036
|
};
|
|
2037
|
-
export type UpdatePossibleRiderResponsibilitiesMutation = {
|
|
2037
|
+
export declare type UpdatePossibleRiderResponsibilitiesMutation = {
|
|
2038
2038
|
updatePossibleRiderResponsibilities?: {
|
|
2039
2039
|
__typename: "PossibleRiderResponsibilities";
|
|
2040
2040
|
id: string;
|
|
@@ -2079,11 +2079,11 @@ export type UpdatePossibleRiderResponsibilitiesMutation = {
|
|
|
2079
2079
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
2080
2080
|
} | null;
|
|
2081
2081
|
};
|
|
2082
|
-
export type DeletePossibleRiderResponsibilitiesMutationVariables = {
|
|
2082
|
+
export declare type DeletePossibleRiderResponsibilitiesMutationVariables = {
|
|
2083
2083
|
input: DeletePossibleRiderResponsibilitiesInput;
|
|
2084
2084
|
condition?: ModelPossibleRiderResponsibilitiesConditionInput | null;
|
|
2085
2085
|
};
|
|
2086
|
-
export type DeletePossibleRiderResponsibilitiesMutation = {
|
|
2086
|
+
export declare type DeletePossibleRiderResponsibilitiesMutation = {
|
|
2087
2087
|
deletePossibleRiderResponsibilities?: {
|
|
2088
2088
|
__typename: "PossibleRiderResponsibilities";
|
|
2089
2089
|
id: string;
|
|
@@ -2128,11 +2128,11 @@ export type DeletePossibleRiderResponsibilitiesMutation = {
|
|
|
2128
2128
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
2129
2129
|
} | null;
|
|
2130
2130
|
};
|
|
2131
|
-
export type CreateVehicleMutationVariables = {
|
|
2131
|
+
export declare type CreateVehicleMutationVariables = {
|
|
2132
2132
|
input: CreateVehicleInput;
|
|
2133
2133
|
condition?: ModelVehicleConditionInput | null;
|
|
2134
2134
|
};
|
|
2135
|
-
export type CreateVehicleMutation = {
|
|
2135
|
+
export declare type CreateVehicleMutation = {
|
|
2136
2136
|
createVehicle?: {
|
|
2137
2137
|
__typename: "Vehicle";
|
|
2138
2138
|
id: string;
|
|
@@ -2180,11 +2180,11 @@ export type CreateVehicleMutation = {
|
|
|
2180
2180
|
userCreatedVehiclesId?: string | null;
|
|
2181
2181
|
} | null;
|
|
2182
2182
|
};
|
|
2183
|
-
export type UpdateVehicleMutationVariables = {
|
|
2183
|
+
export declare type UpdateVehicleMutationVariables = {
|
|
2184
2184
|
input: UpdateVehicleInput;
|
|
2185
2185
|
condition?: ModelVehicleConditionInput | null;
|
|
2186
2186
|
};
|
|
2187
|
-
export type UpdateVehicleMutation = {
|
|
2187
|
+
export declare type UpdateVehicleMutation = {
|
|
2188
2188
|
updateVehicle?: {
|
|
2189
2189
|
__typename: "Vehicle";
|
|
2190
2190
|
id: string;
|
|
@@ -2232,11 +2232,11 @@ export type UpdateVehicleMutation = {
|
|
|
2232
2232
|
userCreatedVehiclesId?: string | null;
|
|
2233
2233
|
} | null;
|
|
2234
2234
|
};
|
|
2235
|
-
export type DeleteVehicleMutationVariables = {
|
|
2235
|
+
export declare type DeleteVehicleMutationVariables = {
|
|
2236
2236
|
input: DeleteVehicleInput;
|
|
2237
2237
|
condition?: ModelVehicleConditionInput | null;
|
|
2238
2238
|
};
|
|
2239
|
-
export type DeleteVehicleMutation = {
|
|
2239
|
+
export declare type DeleteVehicleMutation = {
|
|
2240
2240
|
deleteVehicle?: {
|
|
2241
2241
|
__typename: "Vehicle";
|
|
2242
2242
|
id: string;
|
|
@@ -2284,11 +2284,11 @@ export type DeleteVehicleMutation = {
|
|
|
2284
2284
|
userCreatedVehiclesId?: string | null;
|
|
2285
2285
|
} | null;
|
|
2286
2286
|
};
|
|
2287
|
-
export type CreateVehicleAssignmentMutationVariables = {
|
|
2287
|
+
export declare type CreateVehicleAssignmentMutationVariables = {
|
|
2288
2288
|
input: CreateVehicleAssignmentInput;
|
|
2289
2289
|
condition?: ModelVehicleAssignmentConditionInput | null;
|
|
2290
2290
|
};
|
|
2291
|
-
export type CreateVehicleAssignmentMutation = {
|
|
2291
|
+
export declare type CreateVehicleAssignmentMutation = {
|
|
2292
2292
|
createVehicleAssignment?: {
|
|
2293
2293
|
__typename: "VehicleAssignment";
|
|
2294
2294
|
id: string;
|
|
@@ -2338,11 +2338,11 @@ export type CreateVehicleAssignmentMutation = {
|
|
|
2338
2338
|
vehicleAssignmentsId?: string | null;
|
|
2339
2339
|
} | null;
|
|
2340
2340
|
};
|
|
2341
|
-
export type UpdateVehicleAssignmentMutationVariables = {
|
|
2341
|
+
export declare type UpdateVehicleAssignmentMutationVariables = {
|
|
2342
2342
|
input: UpdateVehicleAssignmentInput;
|
|
2343
2343
|
condition?: ModelVehicleAssignmentConditionInput | null;
|
|
2344
2344
|
};
|
|
2345
|
-
export type UpdateVehicleAssignmentMutation = {
|
|
2345
|
+
export declare type UpdateVehicleAssignmentMutation = {
|
|
2346
2346
|
updateVehicleAssignment?: {
|
|
2347
2347
|
__typename: "VehicleAssignment";
|
|
2348
2348
|
id: string;
|
|
@@ -2392,11 +2392,11 @@ export type UpdateVehicleAssignmentMutation = {
|
|
|
2392
2392
|
vehicleAssignmentsId?: string | null;
|
|
2393
2393
|
} | null;
|
|
2394
2394
|
};
|
|
2395
|
-
export type DeleteVehicleAssignmentMutationVariables = {
|
|
2395
|
+
export declare type DeleteVehicleAssignmentMutationVariables = {
|
|
2396
2396
|
input: DeleteVehicleAssignmentInput;
|
|
2397
2397
|
condition?: ModelVehicleAssignmentConditionInput | null;
|
|
2398
2398
|
};
|
|
2399
|
-
export type DeleteVehicleAssignmentMutation = {
|
|
2399
|
+
export declare type DeleteVehicleAssignmentMutation = {
|
|
2400
2400
|
deleteVehicleAssignment?: {
|
|
2401
2401
|
__typename: "VehicleAssignment";
|
|
2402
2402
|
id: string;
|
|
@@ -2446,11 +2446,11 @@ export type DeleteVehicleAssignmentMutation = {
|
|
|
2446
2446
|
vehicleAssignmentsId?: string | null;
|
|
2447
2447
|
} | null;
|
|
2448
2448
|
};
|
|
2449
|
-
export type CreateLocationMutationVariables = {
|
|
2449
|
+
export declare type CreateLocationMutationVariables = {
|
|
2450
2450
|
input: CreateLocationInput;
|
|
2451
2451
|
condition?: ModelLocationConditionInput | null;
|
|
2452
2452
|
};
|
|
2453
|
-
export type CreateLocationMutation = {
|
|
2453
|
+
export declare type CreateLocationMutation = {
|
|
2454
2454
|
createLocation?: {
|
|
2455
2455
|
__typename: "Location";
|
|
2456
2456
|
id: string;
|
|
@@ -2549,11 +2549,11 @@ export type CreateLocationMutation = {
|
|
|
2549
2549
|
userCreatedLocationsId?: string | null;
|
|
2550
2550
|
} | null;
|
|
2551
2551
|
};
|
|
2552
|
-
export type UpdateLocationMutationVariables = {
|
|
2552
|
+
export declare type UpdateLocationMutationVariables = {
|
|
2553
2553
|
input: UpdateLocationInput;
|
|
2554
2554
|
condition?: ModelLocationConditionInput | null;
|
|
2555
2555
|
};
|
|
2556
|
-
export type UpdateLocationMutation = {
|
|
2556
|
+
export declare type UpdateLocationMutation = {
|
|
2557
2557
|
updateLocation?: {
|
|
2558
2558
|
__typename: "Location";
|
|
2559
2559
|
id: string;
|
|
@@ -2652,11 +2652,11 @@ export type UpdateLocationMutation = {
|
|
|
2652
2652
|
userCreatedLocationsId?: string | null;
|
|
2653
2653
|
} | null;
|
|
2654
2654
|
};
|
|
2655
|
-
export type DeleteLocationMutationVariables = {
|
|
2655
|
+
export declare type DeleteLocationMutationVariables = {
|
|
2656
2656
|
input: DeleteLocationInput;
|
|
2657
2657
|
condition?: ModelLocationConditionInput | null;
|
|
2658
2658
|
};
|
|
2659
|
-
export type DeleteLocationMutation = {
|
|
2659
|
+
export declare type DeleteLocationMutation = {
|
|
2660
2660
|
deleteLocation?: {
|
|
2661
2661
|
__typename: "Location";
|
|
2662
2662
|
id: string;
|
|
@@ -2755,11 +2755,11 @@ export type DeleteLocationMutation = {
|
|
|
2755
2755
|
userCreatedLocationsId?: string | null;
|
|
2756
2756
|
} | null;
|
|
2757
2757
|
};
|
|
2758
|
-
export type CreateTaskMutationVariables = {
|
|
2758
|
+
export declare type CreateTaskMutationVariables = {
|
|
2759
2759
|
input: CreateTaskInput;
|
|
2760
2760
|
condition?: ModelTaskConditionInput | null;
|
|
2761
2761
|
};
|
|
2762
|
-
export type CreateTaskMutation = {
|
|
2762
|
+
export declare type CreateTaskMutation = {
|
|
2763
2763
|
createTask?: {
|
|
2764
2764
|
__typename: "Task";
|
|
2765
2765
|
id: string;
|
|
@@ -2931,11 +2931,11 @@ export type CreateTaskMutation = {
|
|
|
2931
2931
|
userCreatedTasksId?: string | null;
|
|
2932
2932
|
} | null;
|
|
2933
2933
|
};
|
|
2934
|
-
export type UpdateTaskMutationVariables = {
|
|
2934
|
+
export declare type UpdateTaskMutationVariables = {
|
|
2935
2935
|
input: UpdateTaskInput;
|
|
2936
2936
|
condition?: ModelTaskConditionInput | null;
|
|
2937
2937
|
};
|
|
2938
|
-
export type UpdateTaskMutation = {
|
|
2938
|
+
export declare type UpdateTaskMutation = {
|
|
2939
2939
|
updateTask?: {
|
|
2940
2940
|
__typename: "Task";
|
|
2941
2941
|
id: string;
|
|
@@ -3107,11 +3107,11 @@ export type UpdateTaskMutation = {
|
|
|
3107
3107
|
userCreatedTasksId?: string | null;
|
|
3108
3108
|
} | null;
|
|
3109
3109
|
};
|
|
3110
|
-
export type DeleteTaskMutationVariables = {
|
|
3110
|
+
export declare type DeleteTaskMutationVariables = {
|
|
3111
3111
|
input: DeleteTaskInput;
|
|
3112
3112
|
condition?: ModelTaskConditionInput | null;
|
|
3113
3113
|
};
|
|
3114
|
-
export type DeleteTaskMutation = {
|
|
3114
|
+
export declare type DeleteTaskMutation = {
|
|
3115
3115
|
deleteTask?: {
|
|
3116
3116
|
__typename: "Task";
|
|
3117
3117
|
id: string;
|
|
@@ -3283,11 +3283,11 @@ export type DeleteTaskMutation = {
|
|
|
3283
3283
|
userCreatedTasksId?: string | null;
|
|
3284
3284
|
} | null;
|
|
3285
3285
|
};
|
|
3286
|
-
export type CreateTaskAssigneeMutationVariables = {
|
|
3286
|
+
export declare type CreateTaskAssigneeMutationVariables = {
|
|
3287
3287
|
input: CreateTaskAssigneeInput;
|
|
3288
3288
|
condition?: ModelTaskAssigneeConditionInput | null;
|
|
3289
3289
|
};
|
|
3290
|
-
export type CreateTaskAssigneeMutation = {
|
|
3290
|
+
export declare type CreateTaskAssigneeMutation = {
|
|
3291
3291
|
createTaskAssignee?: {
|
|
3292
3292
|
__typename: "TaskAssignee";
|
|
3293
3293
|
id: string;
|
|
@@ -3351,11 +3351,11 @@ export type CreateTaskAssigneeMutation = {
|
|
|
3351
3351
|
taskAssigneesId?: string | null;
|
|
3352
3352
|
} | null;
|
|
3353
3353
|
};
|
|
3354
|
-
export type UpdateTaskAssigneeMutationVariables = {
|
|
3354
|
+
export declare type UpdateTaskAssigneeMutationVariables = {
|
|
3355
3355
|
input: UpdateTaskAssigneeInput;
|
|
3356
3356
|
condition?: ModelTaskAssigneeConditionInput | null;
|
|
3357
3357
|
};
|
|
3358
|
-
export type UpdateTaskAssigneeMutation = {
|
|
3358
|
+
export declare type UpdateTaskAssigneeMutation = {
|
|
3359
3359
|
updateTaskAssignee?: {
|
|
3360
3360
|
__typename: "TaskAssignee";
|
|
3361
3361
|
id: string;
|
|
@@ -3419,11 +3419,11 @@ export type UpdateTaskAssigneeMutation = {
|
|
|
3419
3419
|
taskAssigneesId?: string | null;
|
|
3420
3420
|
} | null;
|
|
3421
3421
|
};
|
|
3422
|
-
export type DeleteTaskAssigneeMutationVariables = {
|
|
3422
|
+
export declare type DeleteTaskAssigneeMutationVariables = {
|
|
3423
3423
|
input: DeleteTaskAssigneeInput;
|
|
3424
3424
|
condition?: ModelTaskAssigneeConditionInput | null;
|
|
3425
3425
|
};
|
|
3426
|
-
export type DeleteTaskAssigneeMutation = {
|
|
3426
|
+
export declare type DeleteTaskAssigneeMutation = {
|
|
3427
3427
|
deleteTaskAssignee?: {
|
|
3428
3428
|
__typename: "TaskAssignee";
|
|
3429
3429
|
id: string;
|
|
@@ -3487,11 +3487,11 @@ export type DeleteTaskAssigneeMutation = {
|
|
|
3487
3487
|
taskAssigneesId?: string | null;
|
|
3488
3488
|
} | null;
|
|
3489
3489
|
};
|
|
3490
|
-
export type CreateScheduledTaskMutationVariables = {
|
|
3490
|
+
export declare type CreateScheduledTaskMutationVariables = {
|
|
3491
3491
|
input: CreateScheduledTaskInput;
|
|
3492
3492
|
condition?: ModelScheduledTaskConditionInput | null;
|
|
3493
3493
|
};
|
|
3494
|
-
export type CreateScheduledTaskMutation = {
|
|
3494
|
+
export declare type CreateScheduledTaskMutation = {
|
|
3495
3495
|
createScheduledTask?: {
|
|
3496
3496
|
__typename: "ScheduledTask";
|
|
3497
3497
|
id: string;
|
|
@@ -3641,11 +3641,11 @@ export type CreateScheduledTaskMutation = {
|
|
|
3641
3641
|
userCreatedScheduledTasksId?: string | null;
|
|
3642
3642
|
} | null;
|
|
3643
3643
|
};
|
|
3644
|
-
export type UpdateScheduledTaskMutationVariables = {
|
|
3644
|
+
export declare type UpdateScheduledTaskMutationVariables = {
|
|
3645
3645
|
input: UpdateScheduledTaskInput;
|
|
3646
3646
|
condition?: ModelScheduledTaskConditionInput | null;
|
|
3647
3647
|
};
|
|
3648
|
-
export type UpdateScheduledTaskMutation = {
|
|
3648
|
+
export declare type UpdateScheduledTaskMutation = {
|
|
3649
3649
|
updateScheduledTask?: {
|
|
3650
3650
|
__typename: "ScheduledTask";
|
|
3651
3651
|
id: string;
|
|
@@ -3795,11 +3795,11 @@ export type UpdateScheduledTaskMutation = {
|
|
|
3795
3795
|
userCreatedScheduledTasksId?: string | null;
|
|
3796
3796
|
} | null;
|
|
3797
3797
|
};
|
|
3798
|
-
export type DeleteScheduledTaskMutationVariables = {
|
|
3798
|
+
export declare type DeleteScheduledTaskMutationVariables = {
|
|
3799
3799
|
input: DeleteScheduledTaskInput;
|
|
3800
3800
|
condition?: ModelScheduledTaskConditionInput | null;
|
|
3801
3801
|
};
|
|
3802
|
-
export type DeleteScheduledTaskMutation = {
|
|
3802
|
+
export declare type DeleteScheduledTaskMutation = {
|
|
3803
3803
|
deleteScheduledTask?: {
|
|
3804
3804
|
__typename: "ScheduledTask";
|
|
3805
3805
|
id: string;
|
|
@@ -3949,11 +3949,11 @@ export type DeleteScheduledTaskMutation = {
|
|
|
3949
3949
|
userCreatedScheduledTasksId?: string | null;
|
|
3950
3950
|
} | null;
|
|
3951
3951
|
};
|
|
3952
|
-
export type CreateCommentMutationVariables = {
|
|
3952
|
+
export declare type CreateCommentMutationVariables = {
|
|
3953
3953
|
input: CreateCommentInput;
|
|
3954
3954
|
condition?: ModelCommentConditionInput | null;
|
|
3955
3955
|
};
|
|
3956
|
-
export type CreateCommentMutation = {
|
|
3956
|
+
export declare type CreateCommentMutation = {
|
|
3957
3957
|
createComment?: {
|
|
3958
3958
|
__typename: "Comment";
|
|
3959
3959
|
id: string;
|
|
@@ -3990,11 +3990,11 @@ export type CreateCommentMutation = {
|
|
|
3990
3990
|
userCommentsId?: string | null;
|
|
3991
3991
|
} | null;
|
|
3992
3992
|
};
|
|
3993
|
-
export type UpdateCommentMutationVariables = {
|
|
3993
|
+
export declare type UpdateCommentMutationVariables = {
|
|
3994
3994
|
input: UpdateCommentInput;
|
|
3995
3995
|
condition?: ModelCommentConditionInput | null;
|
|
3996
3996
|
};
|
|
3997
|
-
export type UpdateCommentMutation = {
|
|
3997
|
+
export declare type UpdateCommentMutation = {
|
|
3998
3998
|
updateComment?: {
|
|
3999
3999
|
__typename: "Comment";
|
|
4000
4000
|
id: string;
|
|
@@ -4031,11 +4031,11 @@ export type UpdateCommentMutation = {
|
|
|
4031
4031
|
userCommentsId?: string | null;
|
|
4032
4032
|
} | null;
|
|
4033
4033
|
};
|
|
4034
|
-
export type DeleteCommentMutationVariables = {
|
|
4034
|
+
export declare type DeleteCommentMutationVariables = {
|
|
4035
4035
|
input: DeleteCommentInput;
|
|
4036
4036
|
condition?: ModelCommentConditionInput | null;
|
|
4037
4037
|
};
|
|
4038
|
-
export type DeleteCommentMutation = {
|
|
4038
|
+
export declare type DeleteCommentMutation = {
|
|
4039
4039
|
deleteComment?: {
|
|
4040
4040
|
__typename: "Comment";
|
|
4041
4041
|
id: string;
|
|
@@ -4072,11 +4072,11 @@ export type DeleteCommentMutation = {
|
|
|
4072
4072
|
userCommentsId?: string | null;
|
|
4073
4073
|
} | null;
|
|
4074
4074
|
};
|
|
4075
|
-
export type CreateDeliverableTypeMutationVariables = {
|
|
4075
|
+
export declare type CreateDeliverableTypeMutationVariables = {
|
|
4076
4076
|
input: CreateDeliverableTypeInput;
|
|
4077
4077
|
condition?: ModelDeliverableTypeConditionInput | null;
|
|
4078
4078
|
};
|
|
4079
|
-
export type CreateDeliverableTypeMutation = {
|
|
4079
|
+
export declare type CreateDeliverableTypeMutation = {
|
|
4080
4080
|
createDeliverableType?: {
|
|
4081
4081
|
__typename: "DeliverableType";
|
|
4082
4082
|
id: string;
|
|
@@ -4098,11 +4098,11 @@ export type CreateDeliverableTypeMutation = {
|
|
|
4098
4098
|
_lastChangedAt: number;
|
|
4099
4099
|
} | null;
|
|
4100
4100
|
};
|
|
4101
|
-
export type UpdateDeliverableTypeMutationVariables = {
|
|
4101
|
+
export declare type UpdateDeliverableTypeMutationVariables = {
|
|
4102
4102
|
input: UpdateDeliverableTypeInput;
|
|
4103
4103
|
condition?: ModelDeliverableTypeConditionInput | null;
|
|
4104
4104
|
};
|
|
4105
|
-
export type UpdateDeliverableTypeMutation = {
|
|
4105
|
+
export declare type UpdateDeliverableTypeMutation = {
|
|
4106
4106
|
updateDeliverableType?: {
|
|
4107
4107
|
__typename: "DeliverableType";
|
|
4108
4108
|
id: string;
|
|
@@ -4124,11 +4124,11 @@ export type UpdateDeliverableTypeMutation = {
|
|
|
4124
4124
|
_lastChangedAt: number;
|
|
4125
4125
|
} | null;
|
|
4126
4126
|
};
|
|
4127
|
-
export type DeleteDeliverableTypeMutationVariables = {
|
|
4127
|
+
export declare type DeleteDeliverableTypeMutationVariables = {
|
|
4128
4128
|
input: DeleteDeliverableTypeInput;
|
|
4129
4129
|
condition?: ModelDeliverableTypeConditionInput | null;
|
|
4130
4130
|
};
|
|
4131
|
-
export type DeleteDeliverableTypeMutation = {
|
|
4131
|
+
export declare type DeleteDeliverableTypeMutation = {
|
|
4132
4132
|
deleteDeliverableType?: {
|
|
4133
4133
|
__typename: "DeliverableType";
|
|
4134
4134
|
id: string;
|
|
@@ -4150,11 +4150,11 @@ export type DeleteDeliverableTypeMutation = {
|
|
|
4150
4150
|
_lastChangedAt: number;
|
|
4151
4151
|
} | null;
|
|
4152
4152
|
};
|
|
4153
|
-
export type CreateDeliverableMutationVariables = {
|
|
4153
|
+
export declare type CreateDeliverableMutationVariables = {
|
|
4154
4154
|
input: CreateDeliverableInput;
|
|
4155
4155
|
condition?: ModelDeliverableConditionInput | null;
|
|
4156
4156
|
};
|
|
4157
|
-
export type CreateDeliverableMutation = {
|
|
4157
|
+
export declare type CreateDeliverableMutation = {
|
|
4158
4158
|
createDeliverable?: {
|
|
4159
4159
|
__typename: "Deliverable";
|
|
4160
4160
|
id: string;
|
|
@@ -4239,11 +4239,11 @@ export type CreateDeliverableMutation = {
|
|
|
4239
4239
|
deliverableTypeDeliverablesId?: string | null;
|
|
4240
4240
|
} | null;
|
|
4241
4241
|
};
|
|
4242
|
-
export type UpdateDeliverableMutationVariables = {
|
|
4242
|
+
export declare type UpdateDeliverableMutationVariables = {
|
|
4243
4243
|
input: UpdateDeliverableInput;
|
|
4244
4244
|
condition?: ModelDeliverableConditionInput | null;
|
|
4245
4245
|
};
|
|
4246
|
-
export type UpdateDeliverableMutation = {
|
|
4246
|
+
export declare type UpdateDeliverableMutation = {
|
|
4247
4247
|
updateDeliverable?: {
|
|
4248
4248
|
__typename: "Deliverable";
|
|
4249
4249
|
id: string;
|
|
@@ -4328,11 +4328,11 @@ export type UpdateDeliverableMutation = {
|
|
|
4328
4328
|
deliverableTypeDeliverablesId?: string | null;
|
|
4329
4329
|
} | null;
|
|
4330
4330
|
};
|
|
4331
|
-
export type DeleteDeliverableMutationVariables = {
|
|
4331
|
+
export declare type DeleteDeliverableMutationVariables = {
|
|
4332
4332
|
input: DeleteDeliverableInput;
|
|
4333
4333
|
condition?: ModelDeliverableConditionInput | null;
|
|
4334
4334
|
};
|
|
4335
|
-
export type DeleteDeliverableMutation = {
|
|
4335
|
+
export declare type DeleteDeliverableMutation = {
|
|
4336
4336
|
deleteDeliverable?: {
|
|
4337
4337
|
__typename: "Deliverable";
|
|
4338
4338
|
id: string;
|
|
@@ -4417,11 +4417,11 @@ export type DeleteDeliverableMutation = {
|
|
|
4417
4417
|
deliverableTypeDeliverablesId?: string | null;
|
|
4418
4418
|
} | null;
|
|
4419
4419
|
};
|
|
4420
|
-
export type CreateRiderResponsibilityMutationVariables = {
|
|
4420
|
+
export declare type CreateRiderResponsibilityMutationVariables = {
|
|
4421
4421
|
input: CreateRiderResponsibilityInput;
|
|
4422
4422
|
condition?: ModelRiderResponsibilityConditionInput | null;
|
|
4423
4423
|
};
|
|
4424
|
-
export type CreateRiderResponsibilityMutation = {
|
|
4424
|
+
export declare type CreateRiderResponsibilityMutation = {
|
|
4425
4425
|
createRiderResponsibility?: {
|
|
4426
4426
|
__typename: "RiderResponsibility";
|
|
4427
4427
|
id: string;
|
|
@@ -4440,11 +4440,11 @@ export type CreateRiderResponsibilityMutation = {
|
|
|
4440
4440
|
_lastChangedAt: number;
|
|
4441
4441
|
} | null;
|
|
4442
4442
|
};
|
|
4443
|
-
export type UpdateRiderResponsibilityMutationVariables = {
|
|
4443
|
+
export declare type UpdateRiderResponsibilityMutationVariables = {
|
|
4444
4444
|
input: UpdateRiderResponsibilityInput;
|
|
4445
4445
|
condition?: ModelRiderResponsibilityConditionInput | null;
|
|
4446
4446
|
};
|
|
4447
|
-
export type UpdateRiderResponsibilityMutation = {
|
|
4447
|
+
export declare type UpdateRiderResponsibilityMutation = {
|
|
4448
4448
|
updateRiderResponsibility?: {
|
|
4449
4449
|
__typename: "RiderResponsibility";
|
|
4450
4450
|
id: string;
|
|
@@ -4463,11 +4463,11 @@ export type UpdateRiderResponsibilityMutation = {
|
|
|
4463
4463
|
_lastChangedAt: number;
|
|
4464
4464
|
} | null;
|
|
4465
4465
|
};
|
|
4466
|
-
export type DeleteRiderResponsibilityMutationVariables = {
|
|
4466
|
+
export declare type DeleteRiderResponsibilityMutationVariables = {
|
|
4467
4467
|
input: DeleteRiderResponsibilityInput;
|
|
4468
4468
|
condition?: ModelRiderResponsibilityConditionInput | null;
|
|
4469
4469
|
};
|
|
4470
|
-
export type DeleteRiderResponsibilityMutation = {
|
|
4470
|
+
export declare type DeleteRiderResponsibilityMutation = {
|
|
4471
4471
|
deleteRiderResponsibility?: {
|
|
4472
4472
|
__typename: "RiderResponsibility";
|
|
4473
4473
|
id: string;
|
|
@@ -4486,13 +4486,13 @@ export type DeleteRiderResponsibilityMutation = {
|
|
|
4486
4486
|
_lastChangedAt: number;
|
|
4487
4487
|
} | null;
|
|
4488
4488
|
};
|
|
4489
|
-
export type RegisterUserMutationVariables = {
|
|
4489
|
+
export declare type RegisterUserMutationVariables = {
|
|
4490
4490
|
name?: string | null;
|
|
4491
4491
|
email?: string | null;
|
|
4492
4492
|
tenantId?: string | null;
|
|
4493
4493
|
roles?: Array<Role | null> | null;
|
|
4494
4494
|
};
|
|
4495
|
-
export type RegisterUserMutation = {
|
|
4495
|
+
export declare type RegisterUserMutation = {
|
|
4496
4496
|
registerUser?: {
|
|
4497
4497
|
__typename: "User";
|
|
4498
4498
|
id: string;
|
|
@@ -4576,12 +4576,12 @@ export type RegisterUserMutation = {
|
|
|
4576
4576
|
_lastChangedAt: number;
|
|
4577
4577
|
} | null;
|
|
4578
4578
|
};
|
|
4579
|
-
export type RegisterTenantMutationVariables = {
|
|
4579
|
+
export declare type RegisterTenantMutationVariables = {
|
|
4580
4580
|
name?: string | null;
|
|
4581
4581
|
emailAddress?: string | null;
|
|
4582
4582
|
tenantName?: string | null;
|
|
4583
4583
|
};
|
|
4584
|
-
export type RegisterTenantMutation = {
|
|
4584
|
+
export declare type RegisterTenantMutation = {
|
|
4585
4585
|
registerTenant?: {
|
|
4586
4586
|
__typename: "Tenant";
|
|
4587
4587
|
id: string;
|
|
@@ -4614,11 +4614,11 @@ export type RegisterTenantMutation = {
|
|
|
4614
4614
|
tenantAdminId: string;
|
|
4615
4615
|
} | null;
|
|
4616
4616
|
};
|
|
4617
|
-
export type UpdateUserRolesMutationVariables = {
|
|
4617
|
+
export declare type UpdateUserRolesMutationVariables = {
|
|
4618
4618
|
userId?: string | null;
|
|
4619
4619
|
roles?: Array<Role | null> | null;
|
|
4620
4620
|
};
|
|
4621
|
-
export type UpdateUserRolesMutation = {
|
|
4621
|
+
export declare type UpdateUserRolesMutation = {
|
|
4622
4622
|
updateUserRoles?: {
|
|
4623
4623
|
__typename: "User";
|
|
4624
4624
|
id: string;
|
|
@@ -4702,10 +4702,10 @@ export type UpdateUserRolesMutation = {
|
|
|
4702
4702
|
_lastChangedAt: number;
|
|
4703
4703
|
} | null;
|
|
4704
4704
|
};
|
|
4705
|
-
export type DisableUserMutationVariables = {
|
|
4705
|
+
export declare type DisableUserMutationVariables = {
|
|
4706
4706
|
userId?: string | null;
|
|
4707
4707
|
};
|
|
4708
|
-
export type DisableUserMutation = {
|
|
4708
|
+
export declare type DisableUserMutation = {
|
|
4709
4709
|
disableUser?: {
|
|
4710
4710
|
__typename: "User";
|
|
4711
4711
|
id: string;
|
|
@@ -4789,10 +4789,10 @@ export type DisableUserMutation = {
|
|
|
4789
4789
|
_lastChangedAt: number;
|
|
4790
4790
|
} | null;
|
|
4791
4791
|
};
|
|
4792
|
-
export type EnableUserMutationVariables = {
|
|
4792
|
+
export declare type EnableUserMutationVariables = {
|
|
4793
4793
|
userId?: string | null;
|
|
4794
4794
|
};
|
|
4795
|
-
export type EnableUserMutation = {
|
|
4795
|
+
export declare type EnableUserMutation = {
|
|
4796
4796
|
enableUser?: {
|
|
4797
4797
|
__typename: "User";
|
|
4798
4798
|
id: string;
|
|
@@ -4876,11 +4876,11 @@ export type EnableUserMutation = {
|
|
|
4876
4876
|
_lastChangedAt: number;
|
|
4877
4877
|
} | null;
|
|
4878
4878
|
};
|
|
4879
|
-
export type UpdateUserEmailMutationVariables = {
|
|
4879
|
+
export declare type UpdateUserEmailMutationVariables = {
|
|
4880
4880
|
userId?: string | null;
|
|
4881
4881
|
emailAddress?: string | null;
|
|
4882
4882
|
};
|
|
4883
|
-
export type UpdateUserEmailMutation = {
|
|
4883
|
+
export declare type UpdateUserEmailMutation = {
|
|
4884
4884
|
updateUserEmail?: {
|
|
4885
4885
|
__typename: "User";
|
|
4886
4886
|
id: string;
|
|
@@ -4964,19 +4964,19 @@ export type UpdateUserEmailMutation = {
|
|
|
4964
4964
|
_lastChangedAt: number;
|
|
4965
4965
|
} | null;
|
|
4966
4966
|
};
|
|
4967
|
-
export type ResetUserPasswordMutationVariables = {
|
|
4967
|
+
export declare type ResetUserPasswordMutationVariables = {
|
|
4968
4968
|
userId?: string | null;
|
|
4969
4969
|
};
|
|
4970
|
-
export type ResetUserPasswordMutation = {
|
|
4970
|
+
export declare type ResetUserPasswordMutation = {
|
|
4971
4971
|
resetUserPassword?: {
|
|
4972
4972
|
__typename: "SendFeedback";
|
|
4973
4973
|
successState?: boolean | null;
|
|
4974
4974
|
} | null;
|
|
4975
4975
|
};
|
|
4976
|
-
export type AdminDeleteRiderResponsibilityMutationVariables = {
|
|
4976
|
+
export declare type AdminDeleteRiderResponsibilityMutationVariables = {
|
|
4977
4977
|
riderResponsibilityId?: string | null;
|
|
4978
4978
|
};
|
|
4979
|
-
export type AdminDeleteRiderResponsibilityMutation = {
|
|
4979
|
+
export declare type AdminDeleteRiderResponsibilityMutation = {
|
|
4980
4980
|
adminDeleteRiderResponsibility?: {
|
|
4981
4981
|
__typename: "RiderResponsibility";
|
|
4982
4982
|
id: string;
|
|
@@ -4995,10 +4995,10 @@ export type AdminDeleteRiderResponsibilityMutation = {
|
|
|
4995
4995
|
_lastChangedAt: number;
|
|
4996
4996
|
} | null;
|
|
4997
4997
|
};
|
|
4998
|
-
export type GetTenantQueryVariables = {
|
|
4998
|
+
export declare type GetTenantQueryVariables = {
|
|
4999
4999
|
id: string;
|
|
5000
5000
|
};
|
|
5001
|
-
export type GetTenantQuery = {
|
|
5001
|
+
export declare type GetTenantQuery = {
|
|
5002
5002
|
getTenant?: {
|
|
5003
5003
|
__typename: "Tenant";
|
|
5004
5004
|
id: string;
|
|
@@ -5031,12 +5031,12 @@ export type GetTenantQuery = {
|
|
|
5031
5031
|
tenantAdminId: string;
|
|
5032
5032
|
} | null;
|
|
5033
5033
|
};
|
|
5034
|
-
export type ListTenantsQueryVariables = {
|
|
5034
|
+
export declare type ListTenantsQueryVariables = {
|
|
5035
5035
|
filter?: ModelTenantFilterInput | null;
|
|
5036
5036
|
limit?: number | null;
|
|
5037
5037
|
nextToken?: string | null;
|
|
5038
5038
|
};
|
|
5039
|
-
export type ListTenantsQuery = {
|
|
5039
|
+
export declare type ListTenantsQuery = {
|
|
5040
5040
|
listTenants?: {
|
|
5041
5041
|
__typename: "ModelTenantConnection";
|
|
5042
5042
|
items: Array<{
|
|
@@ -5055,13 +5055,13 @@ export type ListTenantsQuery = {
|
|
|
5055
5055
|
startedAt?: number | null;
|
|
5056
5056
|
} | null;
|
|
5057
5057
|
};
|
|
5058
|
-
export type SyncTenantsQueryVariables = {
|
|
5058
|
+
export declare type SyncTenantsQueryVariables = {
|
|
5059
5059
|
filter?: ModelTenantFilterInput | null;
|
|
5060
5060
|
limit?: number | null;
|
|
5061
5061
|
nextToken?: string | null;
|
|
5062
5062
|
lastSync?: number | null;
|
|
5063
5063
|
};
|
|
5064
|
-
export type SyncTenantsQuery = {
|
|
5064
|
+
export declare type SyncTenantsQuery = {
|
|
5065
5065
|
syncTenants?: {
|
|
5066
5066
|
__typename: "ModelTenantConnection";
|
|
5067
5067
|
items: Array<{
|
|
@@ -5080,14 +5080,14 @@ export type SyncTenantsQuery = {
|
|
|
5080
5080
|
startedAt?: number | null;
|
|
5081
5081
|
} | null;
|
|
5082
5082
|
};
|
|
5083
|
-
export type GetTenantByTenantNameQueryVariables = {
|
|
5083
|
+
export declare type GetTenantByTenantNameQueryVariables = {
|
|
5084
5084
|
name: string;
|
|
5085
5085
|
sortDirection?: ModelSortDirection | null;
|
|
5086
5086
|
filter?: ModelTenantFilterInput | null;
|
|
5087
5087
|
limit?: number | null;
|
|
5088
5088
|
nextToken?: string | null;
|
|
5089
5089
|
};
|
|
5090
|
-
export type GetTenantByTenantNameQuery = {
|
|
5090
|
+
export declare type GetTenantByTenantNameQuery = {
|
|
5091
5091
|
getTenantByTenantName?: {
|
|
5092
5092
|
__typename: "ModelTenantConnection";
|
|
5093
5093
|
items: Array<{
|
|
@@ -5106,10 +5106,10 @@ export type GetTenantByTenantNameQuery = {
|
|
|
5106
5106
|
startedAt?: number | null;
|
|
5107
5107
|
} | null;
|
|
5108
5108
|
};
|
|
5109
|
-
export type GetUserQueryVariables = {
|
|
5109
|
+
export declare type GetUserQueryVariables = {
|
|
5110
5110
|
id: string;
|
|
5111
5111
|
};
|
|
5112
|
-
export type GetUserQuery = {
|
|
5112
|
+
export declare type GetUserQuery = {
|
|
5113
5113
|
getUser?: {
|
|
5114
5114
|
__typename: "User";
|
|
5115
5115
|
id: string;
|
|
@@ -5193,12 +5193,12 @@ export type GetUserQuery = {
|
|
|
5193
5193
|
_lastChangedAt: number;
|
|
5194
5194
|
} | null;
|
|
5195
5195
|
};
|
|
5196
|
-
export type ListUsersQueryVariables = {
|
|
5196
|
+
export declare type ListUsersQueryVariables = {
|
|
5197
5197
|
filter?: ModelUserFilterInput | null;
|
|
5198
5198
|
limit?: number | null;
|
|
5199
5199
|
nextToken?: string | null;
|
|
5200
5200
|
};
|
|
5201
|
-
export type ListUsersQuery = {
|
|
5201
|
+
export declare type ListUsersQuery = {
|
|
5202
5202
|
listUsers?: {
|
|
5203
5203
|
__typename: "ModelUserConnection";
|
|
5204
5204
|
items: Array<{
|
|
@@ -5224,13 +5224,13 @@ export type ListUsersQuery = {
|
|
|
5224
5224
|
startedAt?: number | null;
|
|
5225
5225
|
} | null;
|
|
5226
5226
|
};
|
|
5227
|
-
export type SyncUsersQueryVariables = {
|
|
5227
|
+
export declare type SyncUsersQueryVariables = {
|
|
5228
5228
|
filter?: ModelUserFilterInput | null;
|
|
5229
5229
|
limit?: number | null;
|
|
5230
5230
|
nextToken?: string | null;
|
|
5231
5231
|
lastSync?: number | null;
|
|
5232
5232
|
};
|
|
5233
|
-
export type SyncUsersQuery = {
|
|
5233
|
+
export declare type SyncUsersQuery = {
|
|
5234
5234
|
syncUsers?: {
|
|
5235
5235
|
__typename: "ModelUserConnection";
|
|
5236
5236
|
items: Array<{
|
|
@@ -5256,14 +5256,14 @@ export type SyncUsersQuery = {
|
|
|
5256
5256
|
startedAt?: number | null;
|
|
5257
5257
|
} | null;
|
|
5258
5258
|
};
|
|
5259
|
-
export type GetUserByCognitoIdQueryVariables = {
|
|
5259
|
+
export declare type GetUserByCognitoIdQueryVariables = {
|
|
5260
5260
|
cognitoId: string;
|
|
5261
5261
|
sortDirection?: ModelSortDirection | null;
|
|
5262
5262
|
filter?: ModelUserFilterInput | null;
|
|
5263
5263
|
limit?: number | null;
|
|
5264
5264
|
nextToken?: string | null;
|
|
5265
5265
|
};
|
|
5266
|
-
export type GetUserByCognitoIdQuery = {
|
|
5266
|
+
export declare type GetUserByCognitoIdQuery = {
|
|
5267
5267
|
getUserByCognitoId?: {
|
|
5268
5268
|
__typename: "ModelUserConnection";
|
|
5269
5269
|
items: Array<{
|
|
@@ -5289,10 +5289,10 @@ export type GetUserByCognitoIdQuery = {
|
|
|
5289
5289
|
startedAt?: number | null;
|
|
5290
5290
|
} | null;
|
|
5291
5291
|
};
|
|
5292
|
-
export type GetPossibleRiderResponsibilitiesQueryVariables = {
|
|
5292
|
+
export declare type GetPossibleRiderResponsibilitiesQueryVariables = {
|
|
5293
5293
|
id: string;
|
|
5294
5294
|
};
|
|
5295
|
-
export type GetPossibleRiderResponsibilitiesQuery = {
|
|
5295
|
+
export declare type GetPossibleRiderResponsibilitiesQuery = {
|
|
5296
5296
|
getPossibleRiderResponsibilities?: {
|
|
5297
5297
|
__typename: "PossibleRiderResponsibilities";
|
|
5298
5298
|
id: string;
|
|
@@ -5337,12 +5337,12 @@ export type GetPossibleRiderResponsibilitiesQuery = {
|
|
|
5337
5337
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
5338
5338
|
} | null;
|
|
5339
5339
|
};
|
|
5340
|
-
export type ListPossibleRiderResponsibilitiesQueryVariables = {
|
|
5340
|
+
export declare type ListPossibleRiderResponsibilitiesQueryVariables = {
|
|
5341
5341
|
filter?: ModelPossibleRiderResponsibilitiesFilterInput | null;
|
|
5342
5342
|
limit?: number | null;
|
|
5343
5343
|
nextToken?: string | null;
|
|
5344
5344
|
};
|
|
5345
|
-
export type ListPossibleRiderResponsibilitiesQuery = {
|
|
5345
|
+
export declare type ListPossibleRiderResponsibilitiesQuery = {
|
|
5346
5346
|
listPossibleRiderResponsibilities?: {
|
|
5347
5347
|
__typename: "ModelPossibleRiderResponsibilitiesConnection";
|
|
5348
5348
|
items: Array<{
|
|
@@ -5361,13 +5361,13 @@ export type ListPossibleRiderResponsibilitiesQuery = {
|
|
|
5361
5361
|
startedAt?: number | null;
|
|
5362
5362
|
} | null;
|
|
5363
5363
|
};
|
|
5364
|
-
export type SyncPossibleRiderResponsibilitiesQueryVariables = {
|
|
5364
|
+
export declare type SyncPossibleRiderResponsibilitiesQueryVariables = {
|
|
5365
5365
|
filter?: ModelPossibleRiderResponsibilitiesFilterInput | null;
|
|
5366
5366
|
limit?: number | null;
|
|
5367
5367
|
nextToken?: string | null;
|
|
5368
5368
|
lastSync?: number | null;
|
|
5369
5369
|
};
|
|
5370
|
-
export type SyncPossibleRiderResponsibilitiesQuery = {
|
|
5370
|
+
export declare type SyncPossibleRiderResponsibilitiesQuery = {
|
|
5371
5371
|
syncPossibleRiderResponsibilities?: {
|
|
5372
5372
|
__typename: "ModelPossibleRiderResponsibilitiesConnection";
|
|
5373
5373
|
items: Array<{
|
|
@@ -5386,10 +5386,10 @@ export type SyncPossibleRiderResponsibilitiesQuery = {
|
|
|
5386
5386
|
startedAt?: number | null;
|
|
5387
5387
|
} | null;
|
|
5388
5388
|
};
|
|
5389
|
-
export type GetVehicleQueryVariables = {
|
|
5389
|
+
export declare type GetVehicleQueryVariables = {
|
|
5390
5390
|
id: string;
|
|
5391
5391
|
};
|
|
5392
|
-
export type GetVehicleQuery = {
|
|
5392
|
+
export declare type GetVehicleQuery = {
|
|
5393
5393
|
getVehicle?: {
|
|
5394
5394
|
__typename: "Vehicle";
|
|
5395
5395
|
id: string;
|
|
@@ -5437,12 +5437,12 @@ export type GetVehicleQuery = {
|
|
|
5437
5437
|
userCreatedVehiclesId?: string | null;
|
|
5438
5438
|
} | null;
|
|
5439
5439
|
};
|
|
5440
|
-
export type ListVehiclesQueryVariables = {
|
|
5440
|
+
export declare type ListVehiclesQueryVariables = {
|
|
5441
5441
|
filter?: ModelVehicleFilterInput | null;
|
|
5442
5442
|
limit?: number | null;
|
|
5443
5443
|
nextToken?: string | null;
|
|
5444
5444
|
};
|
|
5445
|
-
export type ListVehiclesQuery = {
|
|
5445
|
+
export declare type ListVehiclesQuery = {
|
|
5446
5446
|
listVehicles?: {
|
|
5447
5447
|
__typename: "ModelVehicleConnection";
|
|
5448
5448
|
items: Array<{
|
|
@@ -5466,13 +5466,13 @@ export type ListVehiclesQuery = {
|
|
|
5466
5466
|
startedAt?: number | null;
|
|
5467
5467
|
} | null;
|
|
5468
5468
|
};
|
|
5469
|
-
export type SyncVehiclesQueryVariables = {
|
|
5469
|
+
export declare type SyncVehiclesQueryVariables = {
|
|
5470
5470
|
filter?: ModelVehicleFilterInput | null;
|
|
5471
5471
|
limit?: number | null;
|
|
5472
5472
|
nextToken?: string | null;
|
|
5473
5473
|
lastSync?: number | null;
|
|
5474
5474
|
};
|
|
5475
|
-
export type SyncVehiclesQuery = {
|
|
5475
|
+
export declare type SyncVehiclesQuery = {
|
|
5476
5476
|
syncVehicles?: {
|
|
5477
5477
|
__typename: "ModelVehicleConnection";
|
|
5478
5478
|
items: Array<{
|
|
@@ -5496,10 +5496,10 @@ export type SyncVehiclesQuery = {
|
|
|
5496
5496
|
startedAt?: number | null;
|
|
5497
5497
|
} | null;
|
|
5498
5498
|
};
|
|
5499
|
-
export type GetVehicleAssignmentQueryVariables = {
|
|
5499
|
+
export declare type GetVehicleAssignmentQueryVariables = {
|
|
5500
5500
|
id: string;
|
|
5501
5501
|
};
|
|
5502
|
-
export type GetVehicleAssignmentQuery = {
|
|
5502
|
+
export declare type GetVehicleAssignmentQuery = {
|
|
5503
5503
|
getVehicleAssignment?: {
|
|
5504
5504
|
__typename: "VehicleAssignment";
|
|
5505
5505
|
id: string;
|
|
@@ -5549,12 +5549,12 @@ export type GetVehicleAssignmentQuery = {
|
|
|
5549
5549
|
vehicleAssignmentsId?: string | null;
|
|
5550
5550
|
} | null;
|
|
5551
5551
|
};
|
|
5552
|
-
export type ListVehicleAssignmentsQueryVariables = {
|
|
5552
|
+
export declare type ListVehicleAssignmentsQueryVariables = {
|
|
5553
5553
|
filter?: ModelVehicleAssignmentFilterInput | null;
|
|
5554
5554
|
limit?: number | null;
|
|
5555
5555
|
nextToken?: string | null;
|
|
5556
5556
|
};
|
|
5557
|
-
export type ListVehicleAssignmentsQuery = {
|
|
5557
|
+
export declare type ListVehicleAssignmentsQuery = {
|
|
5558
5558
|
listVehicleAssignments?: {
|
|
5559
5559
|
__typename: "ModelVehicleAssignmentConnection";
|
|
5560
5560
|
items: Array<{
|
|
@@ -5573,13 +5573,13 @@ export type ListVehicleAssignmentsQuery = {
|
|
|
5573
5573
|
startedAt?: number | null;
|
|
5574
5574
|
} | null;
|
|
5575
5575
|
};
|
|
5576
|
-
export type SyncVehicleAssignmentsQueryVariables = {
|
|
5576
|
+
export declare type SyncVehicleAssignmentsQueryVariables = {
|
|
5577
5577
|
filter?: ModelVehicleAssignmentFilterInput | null;
|
|
5578
5578
|
limit?: number | null;
|
|
5579
5579
|
nextToken?: string | null;
|
|
5580
5580
|
lastSync?: number | null;
|
|
5581
5581
|
};
|
|
5582
|
-
export type SyncVehicleAssignmentsQuery = {
|
|
5582
|
+
export declare type SyncVehicleAssignmentsQuery = {
|
|
5583
5583
|
syncVehicleAssignments?: {
|
|
5584
5584
|
__typename: "ModelVehicleAssignmentConnection";
|
|
5585
5585
|
items: Array<{
|
|
@@ -5598,10 +5598,10 @@ export type SyncVehicleAssignmentsQuery = {
|
|
|
5598
5598
|
startedAt?: number | null;
|
|
5599
5599
|
} | null;
|
|
5600
5600
|
};
|
|
5601
|
-
export type GetLocationQueryVariables = {
|
|
5601
|
+
export declare type GetLocationQueryVariables = {
|
|
5602
5602
|
id: string;
|
|
5603
5603
|
};
|
|
5604
|
-
export type GetLocationQuery = {
|
|
5604
|
+
export declare type GetLocationQuery = {
|
|
5605
5605
|
getLocation?: {
|
|
5606
5606
|
__typename: "Location";
|
|
5607
5607
|
id: string;
|
|
@@ -5700,12 +5700,12 @@ export type GetLocationQuery = {
|
|
|
5700
5700
|
userCreatedLocationsId?: string | null;
|
|
5701
5701
|
} | null;
|
|
5702
5702
|
};
|
|
5703
|
-
export type ListLocationsQueryVariables = {
|
|
5703
|
+
export declare type ListLocationsQueryVariables = {
|
|
5704
5704
|
filter?: ModelLocationFilterInput | null;
|
|
5705
5705
|
limit?: number | null;
|
|
5706
5706
|
nextToken?: string | null;
|
|
5707
5707
|
};
|
|
5708
|
-
export type ListLocationsQuery = {
|
|
5708
|
+
export declare type ListLocationsQuery = {
|
|
5709
5709
|
listLocations?: {
|
|
5710
5710
|
__typename: "ModelLocationConnection";
|
|
5711
5711
|
items: Array<{
|
|
@@ -5738,13 +5738,13 @@ export type ListLocationsQuery = {
|
|
|
5738
5738
|
startedAt?: number | null;
|
|
5739
5739
|
} | null;
|
|
5740
5740
|
};
|
|
5741
|
-
export type SyncLocationsQueryVariables = {
|
|
5741
|
+
export declare type SyncLocationsQueryVariables = {
|
|
5742
5742
|
filter?: ModelLocationFilterInput | null;
|
|
5743
5743
|
limit?: number | null;
|
|
5744
5744
|
nextToken?: string | null;
|
|
5745
5745
|
lastSync?: number | null;
|
|
5746
5746
|
};
|
|
5747
|
-
export type SyncLocationsQuery = {
|
|
5747
|
+
export declare type SyncLocationsQuery = {
|
|
5748
5748
|
syncLocations?: {
|
|
5749
5749
|
__typename: "ModelLocationConnection";
|
|
5750
5750
|
items: Array<{
|
|
@@ -5777,10 +5777,10 @@ export type SyncLocationsQuery = {
|
|
|
5777
5777
|
startedAt?: number | null;
|
|
5778
5778
|
} | null;
|
|
5779
5779
|
};
|
|
5780
|
-
export type GetTaskQueryVariables = {
|
|
5780
|
+
export declare type GetTaskQueryVariables = {
|
|
5781
5781
|
id: string;
|
|
5782
5782
|
};
|
|
5783
|
-
export type GetTaskQuery = {
|
|
5783
|
+
export declare type GetTaskQuery = {
|
|
5784
5784
|
getTask?: {
|
|
5785
5785
|
__typename: "Task";
|
|
5786
5786
|
id: string;
|
|
@@ -5952,12 +5952,12 @@ export type GetTaskQuery = {
|
|
|
5952
5952
|
userCreatedTasksId?: string | null;
|
|
5953
5953
|
} | null;
|
|
5954
5954
|
};
|
|
5955
|
-
export type ListTasksQueryVariables = {
|
|
5955
|
+
export declare type ListTasksQueryVariables = {
|
|
5956
5956
|
filter?: ModelTaskFilterInput | null;
|
|
5957
5957
|
limit?: number | null;
|
|
5958
5958
|
nextToken?: string | null;
|
|
5959
5959
|
};
|
|
5960
|
-
export type ListTasksQuery = {
|
|
5960
|
+
export declare type ListTasksQuery = {
|
|
5961
5961
|
listTasks?: {
|
|
5962
5962
|
__typename: "ModelTaskConnection";
|
|
5963
5963
|
items: Array<{
|
|
@@ -5993,13 +5993,13 @@ export type ListTasksQuery = {
|
|
|
5993
5993
|
startedAt?: number | null;
|
|
5994
5994
|
} | null;
|
|
5995
5995
|
};
|
|
5996
|
-
export type SyncTasksQueryVariables = {
|
|
5996
|
+
export declare type SyncTasksQueryVariables = {
|
|
5997
5997
|
filter?: ModelTaskFilterInput | null;
|
|
5998
5998
|
limit?: number | null;
|
|
5999
5999
|
nextToken?: string | null;
|
|
6000
6000
|
lastSync?: number | null;
|
|
6001
6001
|
};
|
|
6002
|
-
export type SyncTasksQuery = {
|
|
6002
|
+
export declare type SyncTasksQuery = {
|
|
6003
6003
|
syncTasks?: {
|
|
6004
6004
|
__typename: "ModelTaskConnection";
|
|
6005
6005
|
items: Array<{
|
|
@@ -6035,7 +6035,7 @@ export type SyncTasksQuery = {
|
|
|
6035
6035
|
startedAt?: number | null;
|
|
6036
6036
|
} | null;
|
|
6037
6037
|
};
|
|
6038
|
-
export type ListTasksByTenantIdQueryVariables = {
|
|
6038
|
+
export declare type ListTasksByTenantIdQueryVariables = {
|
|
6039
6039
|
tenantId: string;
|
|
6040
6040
|
createdAt?: ModelStringKeyConditionInput | null;
|
|
6041
6041
|
sortDirection?: ModelSortDirection | null;
|
|
@@ -6043,7 +6043,7 @@ export type ListTasksByTenantIdQueryVariables = {
|
|
|
6043
6043
|
limit?: number | null;
|
|
6044
6044
|
nextToken?: string | null;
|
|
6045
6045
|
};
|
|
6046
|
-
export type ListTasksByTenantIdQuery = {
|
|
6046
|
+
export declare type ListTasksByTenantIdQuery = {
|
|
6047
6047
|
listTasksByTenantId?: {
|
|
6048
6048
|
__typename: "ModelTaskConnection";
|
|
6049
6049
|
items: Array<{
|
|
@@ -6079,14 +6079,14 @@ export type ListTasksByTenantIdQuery = {
|
|
|
6079
6079
|
startedAt?: number | null;
|
|
6080
6080
|
} | null;
|
|
6081
6081
|
};
|
|
6082
|
-
export type TasksByStatusQueryVariables = {
|
|
6082
|
+
export declare type TasksByStatusQueryVariables = {
|
|
6083
6083
|
status: TaskStatus;
|
|
6084
6084
|
sortDirection?: ModelSortDirection | null;
|
|
6085
6085
|
filter?: ModelTaskFilterInput | null;
|
|
6086
6086
|
limit?: number | null;
|
|
6087
6087
|
nextToken?: string | null;
|
|
6088
6088
|
};
|
|
6089
|
-
export type TasksByStatusQuery = {
|
|
6089
|
+
export declare type TasksByStatusQuery = {
|
|
6090
6090
|
tasksByStatus?: {
|
|
6091
6091
|
__typename: "ModelTaskConnection";
|
|
6092
6092
|
items: Array<{
|
|
@@ -6122,7 +6122,7 @@ export type TasksByStatusQuery = {
|
|
|
6122
6122
|
startedAt?: number | null;
|
|
6123
6123
|
} | null;
|
|
6124
6124
|
};
|
|
6125
|
-
export type TasksByArchivedStatusQueryVariables = {
|
|
6125
|
+
export declare type TasksByArchivedStatusQueryVariables = {
|
|
6126
6126
|
archived: number;
|
|
6127
6127
|
status?: ModelStringKeyConditionInput | null;
|
|
6128
6128
|
sortDirection?: ModelSortDirection | null;
|
|
@@ -6130,7 +6130,7 @@ export type TasksByArchivedStatusQueryVariables = {
|
|
|
6130
6130
|
limit?: number | null;
|
|
6131
6131
|
nextToken?: string | null;
|
|
6132
6132
|
};
|
|
6133
|
-
export type TasksByArchivedStatusQuery = {
|
|
6133
|
+
export declare type TasksByArchivedStatusQuery = {
|
|
6134
6134
|
tasksByArchivedStatus?: {
|
|
6135
6135
|
__typename: "ModelTaskConnection";
|
|
6136
6136
|
items: Array<{
|
|
@@ -6166,10 +6166,10 @@ export type TasksByArchivedStatusQuery = {
|
|
|
6166
6166
|
startedAt?: number | null;
|
|
6167
6167
|
} | null;
|
|
6168
6168
|
};
|
|
6169
|
-
export type GetTaskAssigneeQueryVariables = {
|
|
6169
|
+
export declare type GetTaskAssigneeQueryVariables = {
|
|
6170
6170
|
id: string;
|
|
6171
6171
|
};
|
|
6172
|
-
export type GetTaskAssigneeQuery = {
|
|
6172
|
+
export declare type GetTaskAssigneeQuery = {
|
|
6173
6173
|
getTaskAssignee?: {
|
|
6174
6174
|
__typename: "TaskAssignee";
|
|
6175
6175
|
id: string;
|
|
@@ -6233,12 +6233,12 @@ export type GetTaskAssigneeQuery = {
|
|
|
6233
6233
|
taskAssigneesId?: string | null;
|
|
6234
6234
|
} | null;
|
|
6235
6235
|
};
|
|
6236
|
-
export type ListTaskAssigneesQueryVariables = {
|
|
6236
|
+
export declare type ListTaskAssigneesQueryVariables = {
|
|
6237
6237
|
filter?: ModelTaskAssigneeFilterInput | null;
|
|
6238
6238
|
limit?: number | null;
|
|
6239
6239
|
nextToken?: string | null;
|
|
6240
6240
|
};
|
|
6241
|
-
export type ListTaskAssigneesQuery = {
|
|
6241
|
+
export declare type ListTaskAssigneesQuery = {
|
|
6242
6242
|
listTaskAssignees?: {
|
|
6243
6243
|
__typename: "ModelTaskAssigneeConnection";
|
|
6244
6244
|
items: Array<{
|
|
@@ -6259,13 +6259,13 @@ export type ListTaskAssigneesQuery = {
|
|
|
6259
6259
|
startedAt?: number | null;
|
|
6260
6260
|
} | null;
|
|
6261
6261
|
};
|
|
6262
|
-
export type SyncTaskAssigneesQueryVariables = {
|
|
6262
|
+
export declare type SyncTaskAssigneesQueryVariables = {
|
|
6263
6263
|
filter?: ModelTaskAssigneeFilterInput | null;
|
|
6264
6264
|
limit?: number | null;
|
|
6265
6265
|
nextToken?: string | null;
|
|
6266
6266
|
lastSync?: number | null;
|
|
6267
6267
|
};
|
|
6268
|
-
export type SyncTaskAssigneesQuery = {
|
|
6268
|
+
export declare type SyncTaskAssigneesQuery = {
|
|
6269
6269
|
syncTaskAssignees?: {
|
|
6270
6270
|
__typename: "ModelTaskAssigneeConnection";
|
|
6271
6271
|
items: Array<{
|
|
@@ -6286,10 +6286,10 @@ export type SyncTaskAssigneesQuery = {
|
|
|
6286
6286
|
startedAt?: number | null;
|
|
6287
6287
|
} | null;
|
|
6288
6288
|
};
|
|
6289
|
-
export type GetScheduledTaskQueryVariables = {
|
|
6289
|
+
export declare type GetScheduledTaskQueryVariables = {
|
|
6290
6290
|
id: string;
|
|
6291
6291
|
};
|
|
6292
|
-
export type GetScheduledTaskQuery = {
|
|
6292
|
+
export declare type GetScheduledTaskQuery = {
|
|
6293
6293
|
getScheduledTask?: {
|
|
6294
6294
|
__typename: "ScheduledTask";
|
|
6295
6295
|
id: string;
|
|
@@ -6439,12 +6439,12 @@ export type GetScheduledTaskQuery = {
|
|
|
6439
6439
|
userCreatedScheduledTasksId?: string | null;
|
|
6440
6440
|
} | null;
|
|
6441
6441
|
};
|
|
6442
|
-
export type ListScheduledTasksQueryVariables = {
|
|
6442
|
+
export declare type ListScheduledTasksQueryVariables = {
|
|
6443
6443
|
filter?: ModelScheduledTaskFilterInput | null;
|
|
6444
6444
|
limit?: number | null;
|
|
6445
6445
|
nextToken?: string | null;
|
|
6446
6446
|
};
|
|
6447
|
-
export type ListScheduledTasksQuery = {
|
|
6447
|
+
export declare type ListScheduledTasksQuery = {
|
|
6448
6448
|
listScheduledTasks?: {
|
|
6449
6449
|
__typename: "ModelScheduledTaskConnection";
|
|
6450
6450
|
items: Array<{
|
|
@@ -6468,13 +6468,13 @@ export type ListScheduledTasksQuery = {
|
|
|
6468
6468
|
startedAt?: number | null;
|
|
6469
6469
|
} | null;
|
|
6470
6470
|
};
|
|
6471
|
-
export type SyncScheduledTasksQueryVariables = {
|
|
6471
|
+
export declare type SyncScheduledTasksQueryVariables = {
|
|
6472
6472
|
filter?: ModelScheduledTaskFilterInput | null;
|
|
6473
6473
|
limit?: number | null;
|
|
6474
6474
|
nextToken?: string | null;
|
|
6475
6475
|
lastSync?: number | null;
|
|
6476
6476
|
};
|
|
6477
|
-
export type SyncScheduledTasksQuery = {
|
|
6477
|
+
export declare type SyncScheduledTasksQuery = {
|
|
6478
6478
|
syncScheduledTasks?: {
|
|
6479
6479
|
__typename: "ModelScheduledTaskConnection";
|
|
6480
6480
|
items: Array<{
|
|
@@ -6498,10 +6498,10 @@ export type SyncScheduledTasksQuery = {
|
|
|
6498
6498
|
startedAt?: number | null;
|
|
6499
6499
|
} | null;
|
|
6500
6500
|
};
|
|
6501
|
-
export type GetCommentQueryVariables = {
|
|
6501
|
+
export declare type GetCommentQueryVariables = {
|
|
6502
6502
|
id: string;
|
|
6503
6503
|
};
|
|
6504
|
-
export type GetCommentQuery = {
|
|
6504
|
+
export declare type GetCommentQuery = {
|
|
6505
6505
|
getComment?: {
|
|
6506
6506
|
__typename: "Comment";
|
|
6507
6507
|
id: string;
|
|
@@ -6538,12 +6538,12 @@ export type GetCommentQuery = {
|
|
|
6538
6538
|
userCommentsId?: string | null;
|
|
6539
6539
|
} | null;
|
|
6540
6540
|
};
|
|
6541
|
-
export type ListCommentsQueryVariables = {
|
|
6541
|
+
export declare type ListCommentsQueryVariables = {
|
|
6542
6542
|
filter?: ModelCommentFilterInput | null;
|
|
6543
6543
|
limit?: number | null;
|
|
6544
6544
|
nextToken?: string | null;
|
|
6545
6545
|
};
|
|
6546
|
-
export type ListCommentsQuery = {
|
|
6546
|
+
export declare type ListCommentsQuery = {
|
|
6547
6547
|
listComments?: {
|
|
6548
6548
|
__typename: "ModelCommentConnection";
|
|
6549
6549
|
items: Array<{
|
|
@@ -6566,13 +6566,13 @@ export type ListCommentsQuery = {
|
|
|
6566
6566
|
startedAt?: number | null;
|
|
6567
6567
|
} | null;
|
|
6568
6568
|
};
|
|
6569
|
-
export type SyncCommentsQueryVariables = {
|
|
6569
|
+
export declare type SyncCommentsQueryVariables = {
|
|
6570
6570
|
filter?: ModelCommentFilterInput | null;
|
|
6571
6571
|
limit?: number | null;
|
|
6572
6572
|
nextToken?: string | null;
|
|
6573
6573
|
lastSync?: number | null;
|
|
6574
6574
|
};
|
|
6575
|
-
export type SyncCommentsQuery = {
|
|
6575
|
+
export declare type SyncCommentsQuery = {
|
|
6576
6576
|
syncComments?: {
|
|
6577
6577
|
__typename: "ModelCommentConnection";
|
|
6578
6578
|
items: Array<{
|
|
@@ -6595,10 +6595,10 @@ export type SyncCommentsQuery = {
|
|
|
6595
6595
|
startedAt?: number | null;
|
|
6596
6596
|
} | null;
|
|
6597
6597
|
};
|
|
6598
|
-
export type GetDeliverableTypeQueryVariables = {
|
|
6598
|
+
export declare type GetDeliverableTypeQueryVariables = {
|
|
6599
6599
|
id: string;
|
|
6600
6600
|
};
|
|
6601
|
-
export type GetDeliverableTypeQuery = {
|
|
6601
|
+
export declare type GetDeliverableTypeQuery = {
|
|
6602
6602
|
getDeliverableType?: {
|
|
6603
6603
|
__typename: "DeliverableType";
|
|
6604
6604
|
id: string;
|
|
@@ -6620,12 +6620,12 @@ export type GetDeliverableTypeQuery = {
|
|
|
6620
6620
|
_lastChangedAt: number;
|
|
6621
6621
|
} | null;
|
|
6622
6622
|
};
|
|
6623
|
-
export type ListDeliverableTypesQueryVariables = {
|
|
6623
|
+
export declare type ListDeliverableTypesQueryVariables = {
|
|
6624
6624
|
filter?: ModelDeliverableTypeFilterInput | null;
|
|
6625
6625
|
limit?: number | null;
|
|
6626
6626
|
nextToken?: string | null;
|
|
6627
6627
|
};
|
|
6628
|
-
export type ListDeliverableTypesQuery = {
|
|
6628
|
+
export declare type ListDeliverableTypesQuery = {
|
|
6629
6629
|
listDeliverableTypes?: {
|
|
6630
6630
|
__typename: "ModelDeliverableTypeConnection";
|
|
6631
6631
|
items: Array<{
|
|
@@ -6647,13 +6647,13 @@ export type ListDeliverableTypesQuery = {
|
|
|
6647
6647
|
startedAt?: number | null;
|
|
6648
6648
|
} | null;
|
|
6649
6649
|
};
|
|
6650
|
-
export type SyncDeliverableTypesQueryVariables = {
|
|
6650
|
+
export declare type SyncDeliverableTypesQueryVariables = {
|
|
6651
6651
|
filter?: ModelDeliverableTypeFilterInput | null;
|
|
6652
6652
|
limit?: number | null;
|
|
6653
6653
|
nextToken?: string | null;
|
|
6654
6654
|
lastSync?: number | null;
|
|
6655
6655
|
};
|
|
6656
|
-
export type SyncDeliverableTypesQuery = {
|
|
6656
|
+
export declare type SyncDeliverableTypesQuery = {
|
|
6657
6657
|
syncDeliverableTypes?: {
|
|
6658
6658
|
__typename: "ModelDeliverableTypeConnection";
|
|
6659
6659
|
items: Array<{
|
|
@@ -6675,10 +6675,10 @@ export type SyncDeliverableTypesQuery = {
|
|
|
6675
6675
|
startedAt?: number | null;
|
|
6676
6676
|
} | null;
|
|
6677
6677
|
};
|
|
6678
|
-
export type GetDeliverableQueryVariables = {
|
|
6678
|
+
export declare type GetDeliverableQueryVariables = {
|
|
6679
6679
|
id: string;
|
|
6680
6680
|
};
|
|
6681
|
-
export type GetDeliverableQuery = {
|
|
6681
|
+
export declare type GetDeliverableQuery = {
|
|
6682
6682
|
getDeliverable?: {
|
|
6683
6683
|
__typename: "Deliverable";
|
|
6684
6684
|
id: string;
|
|
@@ -6763,12 +6763,12 @@ export type GetDeliverableQuery = {
|
|
|
6763
6763
|
deliverableTypeDeliverablesId?: string | null;
|
|
6764
6764
|
} | null;
|
|
6765
6765
|
};
|
|
6766
|
-
export type ListDeliverablesQueryVariables = {
|
|
6766
|
+
export declare type ListDeliverablesQueryVariables = {
|
|
6767
6767
|
filter?: ModelDeliverableFilterInput | null;
|
|
6768
6768
|
limit?: number | null;
|
|
6769
6769
|
nextToken?: string | null;
|
|
6770
6770
|
};
|
|
6771
|
-
export type ListDeliverablesQuery = {
|
|
6771
|
+
export declare type ListDeliverablesQuery = {
|
|
6772
6772
|
listDeliverables?: {
|
|
6773
6773
|
__typename: "ModelDeliverableConnection";
|
|
6774
6774
|
items: Array<{
|
|
@@ -6792,13 +6792,13 @@ export type ListDeliverablesQuery = {
|
|
|
6792
6792
|
startedAt?: number | null;
|
|
6793
6793
|
} | null;
|
|
6794
6794
|
};
|
|
6795
|
-
export type SyncDeliverablesQueryVariables = {
|
|
6795
|
+
export declare type SyncDeliverablesQueryVariables = {
|
|
6796
6796
|
filter?: ModelDeliverableFilterInput | null;
|
|
6797
6797
|
limit?: number | null;
|
|
6798
6798
|
nextToken?: string | null;
|
|
6799
6799
|
lastSync?: number | null;
|
|
6800
6800
|
};
|
|
6801
|
-
export type SyncDeliverablesQuery = {
|
|
6801
|
+
export declare type SyncDeliverablesQuery = {
|
|
6802
6802
|
syncDeliverables?: {
|
|
6803
6803
|
__typename: "ModelDeliverableConnection";
|
|
6804
6804
|
items: Array<{
|
|
@@ -6822,10 +6822,10 @@ export type SyncDeliverablesQuery = {
|
|
|
6822
6822
|
startedAt?: number | null;
|
|
6823
6823
|
} | null;
|
|
6824
6824
|
};
|
|
6825
|
-
export type GetRiderResponsibilityQueryVariables = {
|
|
6825
|
+
export declare type GetRiderResponsibilityQueryVariables = {
|
|
6826
6826
|
id: string;
|
|
6827
6827
|
};
|
|
6828
|
-
export type GetRiderResponsibilityQuery = {
|
|
6828
|
+
export declare type GetRiderResponsibilityQuery = {
|
|
6829
6829
|
getRiderResponsibility?: {
|
|
6830
6830
|
__typename: "RiderResponsibility";
|
|
6831
6831
|
id: string;
|
|
@@ -6844,12 +6844,12 @@ export type GetRiderResponsibilityQuery = {
|
|
|
6844
6844
|
_lastChangedAt: number;
|
|
6845
6845
|
} | null;
|
|
6846
6846
|
};
|
|
6847
|
-
export type ListRiderResponsibilitiesQueryVariables = {
|
|
6847
|
+
export declare type ListRiderResponsibilitiesQueryVariables = {
|
|
6848
6848
|
filter?: ModelRiderResponsibilityFilterInput | null;
|
|
6849
6849
|
limit?: number | null;
|
|
6850
6850
|
nextToken?: string | null;
|
|
6851
6851
|
};
|
|
6852
|
-
export type ListRiderResponsibilitiesQuery = {
|
|
6852
|
+
export declare type ListRiderResponsibilitiesQuery = {
|
|
6853
6853
|
listRiderResponsibilities?: {
|
|
6854
6854
|
__typename: "ModelRiderResponsibilityConnection";
|
|
6855
6855
|
items: Array<{
|
|
@@ -6868,13 +6868,13 @@ export type ListRiderResponsibilitiesQuery = {
|
|
|
6868
6868
|
startedAt?: number | null;
|
|
6869
6869
|
} | null;
|
|
6870
6870
|
};
|
|
6871
|
-
export type SyncRiderResponsibilitiesQueryVariables = {
|
|
6871
|
+
export declare type SyncRiderResponsibilitiesQueryVariables = {
|
|
6872
6872
|
filter?: ModelRiderResponsibilityFilterInput | null;
|
|
6873
6873
|
limit?: number | null;
|
|
6874
6874
|
nextToken?: string | null;
|
|
6875
6875
|
lastSync?: number | null;
|
|
6876
6876
|
};
|
|
6877
|
-
export type SyncRiderResponsibilitiesQuery = {
|
|
6877
|
+
export declare type SyncRiderResponsibilitiesQuery = {
|
|
6878
6878
|
syncRiderResponsibilities?: {
|
|
6879
6879
|
__typename: "ModelRiderResponsibilityConnection";
|
|
6880
6880
|
items: Array<{
|
|
@@ -6893,34 +6893,34 @@ export type SyncRiderResponsibilitiesQuery = {
|
|
|
6893
6893
|
startedAt?: number | null;
|
|
6894
6894
|
} | null;
|
|
6895
6895
|
};
|
|
6896
|
-
export type ProfilePictureUploadURLQueryVariables = {
|
|
6896
|
+
export declare type ProfilePictureUploadURLQueryVariables = {
|
|
6897
6897
|
userId: string;
|
|
6898
6898
|
};
|
|
6899
|
-
export type ProfilePictureUploadURLQuery = {
|
|
6899
|
+
export declare type ProfilePictureUploadURLQuery = {
|
|
6900
6900
|
profilePictureUploadURL?: string | null;
|
|
6901
6901
|
};
|
|
6902
|
-
export type ProfilePictureURLQueryVariables = {
|
|
6902
|
+
export declare type ProfilePictureURLQueryVariables = {
|
|
6903
6903
|
userId: string;
|
|
6904
6904
|
width?: number | null;
|
|
6905
6905
|
height?: number | null;
|
|
6906
6906
|
};
|
|
6907
|
-
export type ProfilePictureURLQuery = {
|
|
6907
|
+
export declare type ProfilePictureURLQuery = {
|
|
6908
6908
|
profilePictureURL?: string | null;
|
|
6909
6909
|
};
|
|
6910
|
-
export type SendUserFeedbackQueryVariables = {
|
|
6910
|
+
export declare type SendUserFeedbackQueryVariables = {
|
|
6911
6911
|
emailAddress?: string | null;
|
|
6912
6912
|
body?: string | null;
|
|
6913
6913
|
};
|
|
6914
|
-
export type SendUserFeedbackQuery = {
|
|
6914
|
+
export declare type SendUserFeedbackQuery = {
|
|
6915
6915
|
sendUserFeedback?: {
|
|
6916
6916
|
__typename: "SendFeedback";
|
|
6917
6917
|
successState?: boolean | null;
|
|
6918
6918
|
} | null;
|
|
6919
6919
|
};
|
|
6920
|
-
export type OnCreateTenantSubscriptionVariables = {
|
|
6920
|
+
export declare type OnCreateTenantSubscriptionVariables = {
|
|
6921
6921
|
filter?: ModelSubscriptionTenantFilterInput | null;
|
|
6922
6922
|
};
|
|
6923
|
-
export type OnCreateTenantSubscription = {
|
|
6923
|
+
export declare type OnCreateTenantSubscription = {
|
|
6924
6924
|
onCreateTenant?: {
|
|
6925
6925
|
__typename: "Tenant";
|
|
6926
6926
|
id: string;
|
|
@@ -6953,10 +6953,10 @@ export type OnCreateTenantSubscription = {
|
|
|
6953
6953
|
tenantAdminId: string;
|
|
6954
6954
|
} | null;
|
|
6955
6955
|
};
|
|
6956
|
-
export type OnUpdateTenantSubscriptionVariables = {
|
|
6956
|
+
export declare type OnUpdateTenantSubscriptionVariables = {
|
|
6957
6957
|
filter?: ModelSubscriptionTenantFilterInput | null;
|
|
6958
6958
|
};
|
|
6959
|
-
export type OnUpdateTenantSubscription = {
|
|
6959
|
+
export declare type OnUpdateTenantSubscription = {
|
|
6960
6960
|
onUpdateTenant?: {
|
|
6961
6961
|
__typename: "Tenant";
|
|
6962
6962
|
id: string;
|
|
@@ -6989,10 +6989,10 @@ export type OnUpdateTenantSubscription = {
|
|
|
6989
6989
|
tenantAdminId: string;
|
|
6990
6990
|
} | null;
|
|
6991
6991
|
};
|
|
6992
|
-
export type OnDeleteTenantSubscriptionVariables = {
|
|
6992
|
+
export declare type OnDeleteTenantSubscriptionVariables = {
|
|
6993
6993
|
filter?: ModelSubscriptionTenantFilterInput | null;
|
|
6994
6994
|
};
|
|
6995
|
-
export type OnDeleteTenantSubscription = {
|
|
6995
|
+
export declare type OnDeleteTenantSubscription = {
|
|
6996
6996
|
onDeleteTenant?: {
|
|
6997
6997
|
__typename: "Tenant";
|
|
6998
6998
|
id: string;
|
|
@@ -7025,11 +7025,11 @@ export type OnDeleteTenantSubscription = {
|
|
|
7025
7025
|
tenantAdminId: string;
|
|
7026
7026
|
} | null;
|
|
7027
7027
|
};
|
|
7028
|
-
export type OnCreateUserSubscriptionVariables = {
|
|
7028
|
+
export declare type OnCreateUserSubscriptionVariables = {
|
|
7029
7029
|
filter?: ModelSubscriptionUserFilterInput | null;
|
|
7030
7030
|
cognitoId?: string | null;
|
|
7031
7031
|
};
|
|
7032
|
-
export type OnCreateUserSubscription = {
|
|
7032
|
+
export declare type OnCreateUserSubscription = {
|
|
7033
7033
|
onCreateUser?: {
|
|
7034
7034
|
__typename: "User";
|
|
7035
7035
|
id: string;
|
|
@@ -7113,11 +7113,11 @@ export type OnCreateUserSubscription = {
|
|
|
7113
7113
|
_lastChangedAt: number;
|
|
7114
7114
|
} | null;
|
|
7115
7115
|
};
|
|
7116
|
-
export type OnUpdateUserSubscriptionVariables = {
|
|
7116
|
+
export declare type OnUpdateUserSubscriptionVariables = {
|
|
7117
7117
|
filter?: ModelSubscriptionUserFilterInput | null;
|
|
7118
7118
|
cognitoId?: string | null;
|
|
7119
7119
|
};
|
|
7120
|
-
export type OnUpdateUserSubscription = {
|
|
7120
|
+
export declare type OnUpdateUserSubscription = {
|
|
7121
7121
|
onUpdateUser?: {
|
|
7122
7122
|
__typename: "User";
|
|
7123
7123
|
id: string;
|
|
@@ -7201,11 +7201,11 @@ export type OnUpdateUserSubscription = {
|
|
|
7201
7201
|
_lastChangedAt: number;
|
|
7202
7202
|
} | null;
|
|
7203
7203
|
};
|
|
7204
|
-
export type OnDeleteUserSubscriptionVariables = {
|
|
7204
|
+
export declare type OnDeleteUserSubscriptionVariables = {
|
|
7205
7205
|
filter?: ModelSubscriptionUserFilterInput | null;
|
|
7206
7206
|
cognitoId?: string | null;
|
|
7207
7207
|
};
|
|
7208
|
-
export type OnDeleteUserSubscription = {
|
|
7208
|
+
export declare type OnDeleteUserSubscription = {
|
|
7209
7209
|
onDeleteUser?: {
|
|
7210
7210
|
__typename: "User";
|
|
7211
7211
|
id: string;
|
|
@@ -7289,10 +7289,10 @@ export type OnDeleteUserSubscription = {
|
|
|
7289
7289
|
_lastChangedAt: number;
|
|
7290
7290
|
} | null;
|
|
7291
7291
|
};
|
|
7292
|
-
export type OnCreatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7292
|
+
export declare type OnCreatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7293
7293
|
filter?: ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null;
|
|
7294
7294
|
};
|
|
7295
|
-
export type OnCreatePossibleRiderResponsibilitiesSubscription = {
|
|
7295
|
+
export declare type OnCreatePossibleRiderResponsibilitiesSubscription = {
|
|
7296
7296
|
onCreatePossibleRiderResponsibilities?: {
|
|
7297
7297
|
__typename: "PossibleRiderResponsibilities";
|
|
7298
7298
|
id: string;
|
|
@@ -7337,10 +7337,10 @@ export type OnCreatePossibleRiderResponsibilitiesSubscription = {
|
|
|
7337
7337
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
7338
7338
|
} | null;
|
|
7339
7339
|
};
|
|
7340
|
-
export type OnUpdatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7340
|
+
export declare type OnUpdatePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7341
7341
|
filter?: ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null;
|
|
7342
7342
|
};
|
|
7343
|
-
export type OnUpdatePossibleRiderResponsibilitiesSubscription = {
|
|
7343
|
+
export declare type OnUpdatePossibleRiderResponsibilitiesSubscription = {
|
|
7344
7344
|
onUpdatePossibleRiderResponsibilities?: {
|
|
7345
7345
|
__typename: "PossibleRiderResponsibilities";
|
|
7346
7346
|
id: string;
|
|
@@ -7385,10 +7385,10 @@ export type OnUpdatePossibleRiderResponsibilitiesSubscription = {
|
|
|
7385
7385
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
7386
7386
|
} | null;
|
|
7387
7387
|
};
|
|
7388
|
-
export type OnDeletePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7388
|
+
export declare type OnDeletePossibleRiderResponsibilitiesSubscriptionVariables = {
|
|
7389
7389
|
filter?: ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null;
|
|
7390
7390
|
};
|
|
7391
|
-
export type OnDeletePossibleRiderResponsibilitiesSubscription = {
|
|
7391
|
+
export declare type OnDeletePossibleRiderResponsibilitiesSubscription = {
|
|
7392
7392
|
onDeletePossibleRiderResponsibilities?: {
|
|
7393
7393
|
__typename: "PossibleRiderResponsibilities";
|
|
7394
7394
|
id: string;
|
|
@@ -7433,10 +7433,10 @@ export type OnDeletePossibleRiderResponsibilitiesSubscription = {
|
|
|
7433
7433
|
riderResponsibilityPossibleUsersId?: string | null;
|
|
7434
7434
|
} | null;
|
|
7435
7435
|
};
|
|
7436
|
-
export type OnCreateVehicleSubscriptionVariables = {
|
|
7436
|
+
export declare type OnCreateVehicleSubscriptionVariables = {
|
|
7437
7437
|
filter?: ModelSubscriptionVehicleFilterInput | null;
|
|
7438
7438
|
};
|
|
7439
|
-
export type OnCreateVehicleSubscription = {
|
|
7439
|
+
export declare type OnCreateVehicleSubscription = {
|
|
7440
7440
|
onCreateVehicle?: {
|
|
7441
7441
|
__typename: "Vehicle";
|
|
7442
7442
|
id: string;
|
|
@@ -7484,10 +7484,10 @@ export type OnCreateVehicleSubscription = {
|
|
|
7484
7484
|
userCreatedVehiclesId?: string | null;
|
|
7485
7485
|
} | null;
|
|
7486
7486
|
};
|
|
7487
|
-
export type OnUpdateVehicleSubscriptionVariables = {
|
|
7487
|
+
export declare type OnUpdateVehicleSubscriptionVariables = {
|
|
7488
7488
|
filter?: ModelSubscriptionVehicleFilterInput | null;
|
|
7489
7489
|
};
|
|
7490
|
-
export type OnUpdateVehicleSubscription = {
|
|
7490
|
+
export declare type OnUpdateVehicleSubscription = {
|
|
7491
7491
|
onUpdateVehicle?: {
|
|
7492
7492
|
__typename: "Vehicle";
|
|
7493
7493
|
id: string;
|
|
@@ -7535,10 +7535,10 @@ export type OnUpdateVehicleSubscription = {
|
|
|
7535
7535
|
userCreatedVehiclesId?: string | null;
|
|
7536
7536
|
} | null;
|
|
7537
7537
|
};
|
|
7538
|
-
export type OnDeleteVehicleSubscriptionVariables = {
|
|
7538
|
+
export declare type OnDeleteVehicleSubscriptionVariables = {
|
|
7539
7539
|
filter?: ModelSubscriptionVehicleFilterInput | null;
|
|
7540
7540
|
};
|
|
7541
|
-
export type OnDeleteVehicleSubscription = {
|
|
7541
|
+
export declare type OnDeleteVehicleSubscription = {
|
|
7542
7542
|
onDeleteVehicle?: {
|
|
7543
7543
|
__typename: "Vehicle";
|
|
7544
7544
|
id: string;
|
|
@@ -7586,10 +7586,10 @@ export type OnDeleteVehicleSubscription = {
|
|
|
7586
7586
|
userCreatedVehiclesId?: string | null;
|
|
7587
7587
|
} | null;
|
|
7588
7588
|
};
|
|
7589
|
-
export type OnCreateVehicleAssignmentSubscriptionVariables = {
|
|
7589
|
+
export declare type OnCreateVehicleAssignmentSubscriptionVariables = {
|
|
7590
7590
|
filter?: ModelSubscriptionVehicleAssignmentFilterInput | null;
|
|
7591
7591
|
};
|
|
7592
|
-
export type OnCreateVehicleAssignmentSubscription = {
|
|
7592
|
+
export declare type OnCreateVehicleAssignmentSubscription = {
|
|
7593
7593
|
onCreateVehicleAssignment?: {
|
|
7594
7594
|
__typename: "VehicleAssignment";
|
|
7595
7595
|
id: string;
|
|
@@ -7639,10 +7639,10 @@ export type OnCreateVehicleAssignmentSubscription = {
|
|
|
7639
7639
|
vehicleAssignmentsId?: string | null;
|
|
7640
7640
|
} | null;
|
|
7641
7641
|
};
|
|
7642
|
-
export type OnUpdateVehicleAssignmentSubscriptionVariables = {
|
|
7642
|
+
export declare type OnUpdateVehicleAssignmentSubscriptionVariables = {
|
|
7643
7643
|
filter?: ModelSubscriptionVehicleAssignmentFilterInput | null;
|
|
7644
7644
|
};
|
|
7645
|
-
export type OnUpdateVehicleAssignmentSubscription = {
|
|
7645
|
+
export declare type OnUpdateVehicleAssignmentSubscription = {
|
|
7646
7646
|
onUpdateVehicleAssignment?: {
|
|
7647
7647
|
__typename: "VehicleAssignment";
|
|
7648
7648
|
id: string;
|
|
@@ -7692,10 +7692,10 @@ export type OnUpdateVehicleAssignmentSubscription = {
|
|
|
7692
7692
|
vehicleAssignmentsId?: string | null;
|
|
7693
7693
|
} | null;
|
|
7694
7694
|
};
|
|
7695
|
-
export type OnDeleteVehicleAssignmentSubscriptionVariables = {
|
|
7695
|
+
export declare type OnDeleteVehicleAssignmentSubscriptionVariables = {
|
|
7696
7696
|
filter?: ModelSubscriptionVehicleAssignmentFilterInput | null;
|
|
7697
7697
|
};
|
|
7698
|
-
export type OnDeleteVehicleAssignmentSubscription = {
|
|
7698
|
+
export declare type OnDeleteVehicleAssignmentSubscription = {
|
|
7699
7699
|
onDeleteVehicleAssignment?: {
|
|
7700
7700
|
__typename: "VehicleAssignment";
|
|
7701
7701
|
id: string;
|
|
@@ -7745,10 +7745,10 @@ export type OnDeleteVehicleAssignmentSubscription = {
|
|
|
7745
7745
|
vehicleAssignmentsId?: string | null;
|
|
7746
7746
|
} | null;
|
|
7747
7747
|
};
|
|
7748
|
-
export type OnCreateLocationSubscriptionVariables = {
|
|
7748
|
+
export declare type OnCreateLocationSubscriptionVariables = {
|
|
7749
7749
|
filter?: ModelSubscriptionLocationFilterInput | null;
|
|
7750
7750
|
};
|
|
7751
|
-
export type OnCreateLocationSubscription = {
|
|
7751
|
+
export declare type OnCreateLocationSubscription = {
|
|
7752
7752
|
onCreateLocation?: {
|
|
7753
7753
|
__typename: "Location";
|
|
7754
7754
|
id: string;
|
|
@@ -7847,10 +7847,10 @@ export type OnCreateLocationSubscription = {
|
|
|
7847
7847
|
userCreatedLocationsId?: string | null;
|
|
7848
7848
|
} | null;
|
|
7849
7849
|
};
|
|
7850
|
-
export type OnUpdateLocationSubscriptionVariables = {
|
|
7850
|
+
export declare type OnUpdateLocationSubscriptionVariables = {
|
|
7851
7851
|
filter?: ModelSubscriptionLocationFilterInput | null;
|
|
7852
7852
|
};
|
|
7853
|
-
export type OnUpdateLocationSubscription = {
|
|
7853
|
+
export declare type OnUpdateLocationSubscription = {
|
|
7854
7854
|
onUpdateLocation?: {
|
|
7855
7855
|
__typename: "Location";
|
|
7856
7856
|
id: string;
|
|
@@ -7949,10 +7949,10 @@ export type OnUpdateLocationSubscription = {
|
|
|
7949
7949
|
userCreatedLocationsId?: string | null;
|
|
7950
7950
|
} | null;
|
|
7951
7951
|
};
|
|
7952
|
-
export type OnDeleteLocationSubscriptionVariables = {
|
|
7952
|
+
export declare type OnDeleteLocationSubscriptionVariables = {
|
|
7953
7953
|
filter?: ModelSubscriptionLocationFilterInput | null;
|
|
7954
7954
|
};
|
|
7955
|
-
export type OnDeleteLocationSubscription = {
|
|
7955
|
+
export declare type OnDeleteLocationSubscription = {
|
|
7956
7956
|
onDeleteLocation?: {
|
|
7957
7957
|
__typename: "Location";
|
|
7958
7958
|
id: string;
|
|
@@ -8051,10 +8051,10 @@ export type OnDeleteLocationSubscription = {
|
|
|
8051
8051
|
userCreatedLocationsId?: string | null;
|
|
8052
8052
|
} | null;
|
|
8053
8053
|
};
|
|
8054
|
-
export type OnCreateTaskSubscriptionVariables = {
|
|
8054
|
+
export declare type OnCreateTaskSubscriptionVariables = {
|
|
8055
8055
|
filter?: ModelSubscriptionTaskFilterInput | null;
|
|
8056
8056
|
};
|
|
8057
|
-
export type OnCreateTaskSubscription = {
|
|
8057
|
+
export declare type OnCreateTaskSubscription = {
|
|
8058
8058
|
onCreateTask?: {
|
|
8059
8059
|
__typename: "Task";
|
|
8060
8060
|
id: string;
|
|
@@ -8226,10 +8226,10 @@ export type OnCreateTaskSubscription = {
|
|
|
8226
8226
|
userCreatedTasksId?: string | null;
|
|
8227
8227
|
} | null;
|
|
8228
8228
|
};
|
|
8229
|
-
export type OnUpdateTaskSubscriptionVariables = {
|
|
8229
|
+
export declare type OnUpdateTaskSubscriptionVariables = {
|
|
8230
8230
|
filter?: ModelSubscriptionTaskFilterInput | null;
|
|
8231
8231
|
};
|
|
8232
|
-
export type OnUpdateTaskSubscription = {
|
|
8232
|
+
export declare type OnUpdateTaskSubscription = {
|
|
8233
8233
|
onUpdateTask?: {
|
|
8234
8234
|
__typename: "Task";
|
|
8235
8235
|
id: string;
|
|
@@ -8401,10 +8401,10 @@ export type OnUpdateTaskSubscription = {
|
|
|
8401
8401
|
userCreatedTasksId?: string | null;
|
|
8402
8402
|
} | null;
|
|
8403
8403
|
};
|
|
8404
|
-
export type OnDeleteTaskSubscriptionVariables = {
|
|
8404
|
+
export declare type OnDeleteTaskSubscriptionVariables = {
|
|
8405
8405
|
filter?: ModelSubscriptionTaskFilterInput | null;
|
|
8406
8406
|
};
|
|
8407
|
-
export type OnDeleteTaskSubscription = {
|
|
8407
|
+
export declare type OnDeleteTaskSubscription = {
|
|
8408
8408
|
onDeleteTask?: {
|
|
8409
8409
|
__typename: "Task";
|
|
8410
8410
|
id: string;
|
|
@@ -8576,10 +8576,10 @@ export type OnDeleteTaskSubscription = {
|
|
|
8576
8576
|
userCreatedTasksId?: string | null;
|
|
8577
8577
|
} | null;
|
|
8578
8578
|
};
|
|
8579
|
-
export type OnCreateTaskAssigneeSubscriptionVariables = {
|
|
8579
|
+
export declare type OnCreateTaskAssigneeSubscriptionVariables = {
|
|
8580
8580
|
filter?: ModelSubscriptionTaskAssigneeFilterInput | null;
|
|
8581
8581
|
};
|
|
8582
|
-
export type OnCreateTaskAssigneeSubscription = {
|
|
8582
|
+
export declare type OnCreateTaskAssigneeSubscription = {
|
|
8583
8583
|
onCreateTaskAssignee?: {
|
|
8584
8584
|
__typename: "TaskAssignee";
|
|
8585
8585
|
id: string;
|
|
@@ -8643,10 +8643,10 @@ export type OnCreateTaskAssigneeSubscription = {
|
|
|
8643
8643
|
taskAssigneesId?: string | null;
|
|
8644
8644
|
} | null;
|
|
8645
8645
|
};
|
|
8646
|
-
export type OnUpdateTaskAssigneeSubscriptionVariables = {
|
|
8646
|
+
export declare type OnUpdateTaskAssigneeSubscriptionVariables = {
|
|
8647
8647
|
filter?: ModelSubscriptionTaskAssigneeFilterInput | null;
|
|
8648
8648
|
};
|
|
8649
|
-
export type OnUpdateTaskAssigneeSubscription = {
|
|
8649
|
+
export declare type OnUpdateTaskAssigneeSubscription = {
|
|
8650
8650
|
onUpdateTaskAssignee?: {
|
|
8651
8651
|
__typename: "TaskAssignee";
|
|
8652
8652
|
id: string;
|
|
@@ -8710,10 +8710,10 @@ export type OnUpdateTaskAssigneeSubscription = {
|
|
|
8710
8710
|
taskAssigneesId?: string | null;
|
|
8711
8711
|
} | null;
|
|
8712
8712
|
};
|
|
8713
|
-
export type OnDeleteTaskAssigneeSubscriptionVariables = {
|
|
8713
|
+
export declare type OnDeleteTaskAssigneeSubscriptionVariables = {
|
|
8714
8714
|
filter?: ModelSubscriptionTaskAssigneeFilterInput | null;
|
|
8715
8715
|
};
|
|
8716
|
-
export type OnDeleteTaskAssigneeSubscription = {
|
|
8716
|
+
export declare type OnDeleteTaskAssigneeSubscription = {
|
|
8717
8717
|
onDeleteTaskAssignee?: {
|
|
8718
8718
|
__typename: "TaskAssignee";
|
|
8719
8719
|
id: string;
|
|
@@ -8777,10 +8777,10 @@ export type OnDeleteTaskAssigneeSubscription = {
|
|
|
8777
8777
|
taskAssigneesId?: string | null;
|
|
8778
8778
|
} | null;
|
|
8779
8779
|
};
|
|
8780
|
-
export type OnCreateScheduledTaskSubscriptionVariables = {
|
|
8780
|
+
export declare type OnCreateScheduledTaskSubscriptionVariables = {
|
|
8781
8781
|
filter?: ModelSubscriptionScheduledTaskFilterInput | null;
|
|
8782
8782
|
};
|
|
8783
|
-
export type OnCreateScheduledTaskSubscription = {
|
|
8783
|
+
export declare type OnCreateScheduledTaskSubscription = {
|
|
8784
8784
|
onCreateScheduledTask?: {
|
|
8785
8785
|
__typename: "ScheduledTask";
|
|
8786
8786
|
id: string;
|
|
@@ -8930,10 +8930,10 @@ export type OnCreateScheduledTaskSubscription = {
|
|
|
8930
8930
|
userCreatedScheduledTasksId?: string | null;
|
|
8931
8931
|
} | null;
|
|
8932
8932
|
};
|
|
8933
|
-
export type OnUpdateScheduledTaskSubscriptionVariables = {
|
|
8933
|
+
export declare type OnUpdateScheduledTaskSubscriptionVariables = {
|
|
8934
8934
|
filter?: ModelSubscriptionScheduledTaskFilterInput | null;
|
|
8935
8935
|
};
|
|
8936
|
-
export type OnUpdateScheduledTaskSubscription = {
|
|
8936
|
+
export declare type OnUpdateScheduledTaskSubscription = {
|
|
8937
8937
|
onUpdateScheduledTask?: {
|
|
8938
8938
|
__typename: "ScheduledTask";
|
|
8939
8939
|
id: string;
|
|
@@ -9083,10 +9083,10 @@ export type OnUpdateScheduledTaskSubscription = {
|
|
|
9083
9083
|
userCreatedScheduledTasksId?: string | null;
|
|
9084
9084
|
} | null;
|
|
9085
9085
|
};
|
|
9086
|
-
export type OnDeleteScheduledTaskSubscriptionVariables = {
|
|
9086
|
+
export declare type OnDeleteScheduledTaskSubscriptionVariables = {
|
|
9087
9087
|
filter?: ModelSubscriptionScheduledTaskFilterInput | null;
|
|
9088
9088
|
};
|
|
9089
|
-
export type OnDeleteScheduledTaskSubscription = {
|
|
9089
|
+
export declare type OnDeleteScheduledTaskSubscription = {
|
|
9090
9090
|
onDeleteScheduledTask?: {
|
|
9091
9091
|
__typename: "ScheduledTask";
|
|
9092
9092
|
id: string;
|
|
@@ -9236,11 +9236,11 @@ export type OnDeleteScheduledTaskSubscription = {
|
|
|
9236
9236
|
userCreatedScheduledTasksId?: string | null;
|
|
9237
9237
|
} | null;
|
|
9238
9238
|
};
|
|
9239
|
-
export type OnCreateCommentSubscriptionVariables = {
|
|
9239
|
+
export declare type OnCreateCommentSubscriptionVariables = {
|
|
9240
9240
|
filter?: ModelSubscriptionCommentFilterInput | null;
|
|
9241
9241
|
owner?: string | null;
|
|
9242
9242
|
};
|
|
9243
|
-
export type OnCreateCommentSubscription = {
|
|
9243
|
+
export declare type OnCreateCommentSubscription = {
|
|
9244
9244
|
onCreateComment?: {
|
|
9245
9245
|
__typename: "Comment";
|
|
9246
9246
|
id: string;
|
|
@@ -9277,11 +9277,11 @@ export type OnCreateCommentSubscription = {
|
|
|
9277
9277
|
userCommentsId?: string | null;
|
|
9278
9278
|
} | null;
|
|
9279
9279
|
};
|
|
9280
|
-
export type OnUpdateCommentSubscriptionVariables = {
|
|
9280
|
+
export declare type OnUpdateCommentSubscriptionVariables = {
|
|
9281
9281
|
filter?: ModelSubscriptionCommentFilterInput | null;
|
|
9282
9282
|
owner?: string | null;
|
|
9283
9283
|
};
|
|
9284
|
-
export type OnUpdateCommentSubscription = {
|
|
9284
|
+
export declare type OnUpdateCommentSubscription = {
|
|
9285
9285
|
onUpdateComment?: {
|
|
9286
9286
|
__typename: "Comment";
|
|
9287
9287
|
id: string;
|
|
@@ -9318,11 +9318,11 @@ export type OnUpdateCommentSubscription = {
|
|
|
9318
9318
|
userCommentsId?: string | null;
|
|
9319
9319
|
} | null;
|
|
9320
9320
|
};
|
|
9321
|
-
export type OnDeleteCommentSubscriptionVariables = {
|
|
9321
|
+
export declare type OnDeleteCommentSubscriptionVariables = {
|
|
9322
9322
|
filter?: ModelSubscriptionCommentFilterInput | null;
|
|
9323
9323
|
owner?: string | null;
|
|
9324
9324
|
};
|
|
9325
|
-
export type OnDeleteCommentSubscription = {
|
|
9325
|
+
export declare type OnDeleteCommentSubscription = {
|
|
9326
9326
|
onDeleteComment?: {
|
|
9327
9327
|
__typename: "Comment";
|
|
9328
9328
|
id: string;
|
|
@@ -9359,10 +9359,10 @@ export type OnDeleteCommentSubscription = {
|
|
|
9359
9359
|
userCommentsId?: string | null;
|
|
9360
9360
|
} | null;
|
|
9361
9361
|
};
|
|
9362
|
-
export type OnCreateDeliverableTypeSubscriptionVariables = {
|
|
9362
|
+
export declare type OnCreateDeliverableTypeSubscriptionVariables = {
|
|
9363
9363
|
filter?: ModelSubscriptionDeliverableTypeFilterInput | null;
|
|
9364
9364
|
};
|
|
9365
|
-
export type OnCreateDeliverableTypeSubscription = {
|
|
9365
|
+
export declare type OnCreateDeliverableTypeSubscription = {
|
|
9366
9366
|
onCreateDeliverableType?: {
|
|
9367
9367
|
__typename: "DeliverableType";
|
|
9368
9368
|
id: string;
|
|
@@ -9384,10 +9384,10 @@ export type OnCreateDeliverableTypeSubscription = {
|
|
|
9384
9384
|
_lastChangedAt: number;
|
|
9385
9385
|
} | null;
|
|
9386
9386
|
};
|
|
9387
|
-
export type OnUpdateDeliverableTypeSubscriptionVariables = {
|
|
9387
|
+
export declare type OnUpdateDeliverableTypeSubscriptionVariables = {
|
|
9388
9388
|
filter?: ModelSubscriptionDeliverableTypeFilterInput | null;
|
|
9389
9389
|
};
|
|
9390
|
-
export type OnUpdateDeliverableTypeSubscription = {
|
|
9390
|
+
export declare type OnUpdateDeliverableTypeSubscription = {
|
|
9391
9391
|
onUpdateDeliverableType?: {
|
|
9392
9392
|
__typename: "DeliverableType";
|
|
9393
9393
|
id: string;
|
|
@@ -9409,10 +9409,10 @@ export type OnUpdateDeliverableTypeSubscription = {
|
|
|
9409
9409
|
_lastChangedAt: number;
|
|
9410
9410
|
} | null;
|
|
9411
9411
|
};
|
|
9412
|
-
export type OnDeleteDeliverableTypeSubscriptionVariables = {
|
|
9412
|
+
export declare type OnDeleteDeliverableTypeSubscriptionVariables = {
|
|
9413
9413
|
filter?: ModelSubscriptionDeliverableTypeFilterInput | null;
|
|
9414
9414
|
};
|
|
9415
|
-
export type OnDeleteDeliverableTypeSubscription = {
|
|
9415
|
+
export declare type OnDeleteDeliverableTypeSubscription = {
|
|
9416
9416
|
onDeleteDeliverableType?: {
|
|
9417
9417
|
__typename: "DeliverableType";
|
|
9418
9418
|
id: string;
|
|
@@ -9434,10 +9434,10 @@ export type OnDeleteDeliverableTypeSubscription = {
|
|
|
9434
9434
|
_lastChangedAt: number;
|
|
9435
9435
|
} | null;
|
|
9436
9436
|
};
|
|
9437
|
-
export type OnCreateDeliverableSubscriptionVariables = {
|
|
9437
|
+
export declare type OnCreateDeliverableSubscriptionVariables = {
|
|
9438
9438
|
filter?: ModelSubscriptionDeliverableFilterInput | null;
|
|
9439
9439
|
};
|
|
9440
|
-
export type OnCreateDeliverableSubscription = {
|
|
9440
|
+
export declare type OnCreateDeliverableSubscription = {
|
|
9441
9441
|
onCreateDeliverable?: {
|
|
9442
9442
|
__typename: "Deliverable";
|
|
9443
9443
|
id: string;
|
|
@@ -9522,10 +9522,10 @@ export type OnCreateDeliverableSubscription = {
|
|
|
9522
9522
|
deliverableTypeDeliverablesId?: string | null;
|
|
9523
9523
|
} | null;
|
|
9524
9524
|
};
|
|
9525
|
-
export type OnUpdateDeliverableSubscriptionVariables = {
|
|
9525
|
+
export declare type OnUpdateDeliverableSubscriptionVariables = {
|
|
9526
9526
|
filter?: ModelSubscriptionDeliverableFilterInput | null;
|
|
9527
9527
|
};
|
|
9528
|
-
export type OnUpdateDeliverableSubscription = {
|
|
9528
|
+
export declare type OnUpdateDeliverableSubscription = {
|
|
9529
9529
|
onUpdateDeliverable?: {
|
|
9530
9530
|
__typename: "Deliverable";
|
|
9531
9531
|
id: string;
|
|
@@ -9610,10 +9610,10 @@ export type OnUpdateDeliverableSubscription = {
|
|
|
9610
9610
|
deliverableTypeDeliverablesId?: string | null;
|
|
9611
9611
|
} | null;
|
|
9612
9612
|
};
|
|
9613
|
-
export type OnDeleteDeliverableSubscriptionVariables = {
|
|
9613
|
+
export declare type OnDeleteDeliverableSubscriptionVariables = {
|
|
9614
9614
|
filter?: ModelSubscriptionDeliverableFilterInput | null;
|
|
9615
9615
|
};
|
|
9616
|
-
export type OnDeleteDeliverableSubscription = {
|
|
9616
|
+
export declare type OnDeleteDeliverableSubscription = {
|
|
9617
9617
|
onDeleteDeliverable?: {
|
|
9618
9618
|
__typename: "Deliverable";
|
|
9619
9619
|
id: string;
|
|
@@ -9698,10 +9698,10 @@ export type OnDeleteDeliverableSubscription = {
|
|
|
9698
9698
|
deliverableTypeDeliverablesId?: string | null;
|
|
9699
9699
|
} | null;
|
|
9700
9700
|
};
|
|
9701
|
-
export type OnCreateRiderResponsibilitySubscriptionVariables = {
|
|
9701
|
+
export declare type OnCreateRiderResponsibilitySubscriptionVariables = {
|
|
9702
9702
|
filter?: ModelSubscriptionRiderResponsibilityFilterInput | null;
|
|
9703
9703
|
};
|
|
9704
|
-
export type OnCreateRiderResponsibilitySubscription = {
|
|
9704
|
+
export declare type OnCreateRiderResponsibilitySubscription = {
|
|
9705
9705
|
onCreateRiderResponsibility?: {
|
|
9706
9706
|
__typename: "RiderResponsibility";
|
|
9707
9707
|
id: string;
|
|
@@ -9720,10 +9720,10 @@ export type OnCreateRiderResponsibilitySubscription = {
|
|
|
9720
9720
|
_lastChangedAt: number;
|
|
9721
9721
|
} | null;
|
|
9722
9722
|
};
|
|
9723
|
-
export type OnUpdateRiderResponsibilitySubscriptionVariables = {
|
|
9723
|
+
export declare type OnUpdateRiderResponsibilitySubscriptionVariables = {
|
|
9724
9724
|
filter?: ModelSubscriptionRiderResponsibilityFilterInput | null;
|
|
9725
9725
|
};
|
|
9726
|
-
export type OnUpdateRiderResponsibilitySubscription = {
|
|
9726
|
+
export declare type OnUpdateRiderResponsibilitySubscription = {
|
|
9727
9727
|
onUpdateRiderResponsibility?: {
|
|
9728
9728
|
__typename: "RiderResponsibility";
|
|
9729
9729
|
id: string;
|
|
@@ -9742,10 +9742,10 @@ export type OnUpdateRiderResponsibilitySubscription = {
|
|
|
9742
9742
|
_lastChangedAt: number;
|
|
9743
9743
|
} | null;
|
|
9744
9744
|
};
|
|
9745
|
-
export type OnDeleteRiderResponsibilitySubscriptionVariables = {
|
|
9745
|
+
export declare type OnDeleteRiderResponsibilitySubscriptionVariables = {
|
|
9746
9746
|
filter?: ModelSubscriptionRiderResponsibilityFilterInput | null;
|
|
9747
9747
|
};
|
|
9748
|
-
export type OnDeleteRiderResponsibilitySubscription = {
|
|
9748
|
+
export declare type OnDeleteRiderResponsibilitySubscription = {
|
|
9749
9749
|
onDeleteRiderResponsibility?: {
|
|
9750
9750
|
__typename: "RiderResponsibility";
|
|
9751
9751
|
id: string;
|