@platelet-app/types 1.0.4 → 1.0.7

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 CHANGED
@@ -12,6 +12,8 @@ export type ModelTenantConditionInput = {
12
12
  or?: Array<ModelTenantConditionInput | null> | null;
13
13
  not?: ModelTenantConditionInput | null;
14
14
  _deleted?: ModelBooleanInput | null;
15
+ createdAt?: ModelStringInput | null;
16
+ updatedAt?: ModelStringInput | null;
15
17
  tenantAdminId?: ModelIDInput | null;
16
18
  };
17
19
  export type ModelStringInput = {
@@ -538,6 +540,8 @@ export type ModelUserConditionInput = {
538
540
  or?: Array<ModelUserConditionInput | null> | null;
539
541
  not?: ModelUserConditionInput | null;
540
542
  _deleted?: ModelBooleanInput | null;
543
+ createdAt?: ModelStringInput | null;
544
+ updatedAt?: ModelStringInput | null;
541
545
  };
542
546
  export type ModelIntInput = {
543
547
  ne?: number | null;
@@ -587,6 +591,8 @@ export type ModelPossibleRiderResponsibilitiesConditionInput = {
587
591
  or?: Array<ModelPossibleRiderResponsibilitiesConditionInput | null> | null;
588
592
  not?: ModelPossibleRiderResponsibilitiesConditionInput | null;
589
593
  _deleted?: ModelBooleanInput | null;
594
+ createdAt?: ModelStringInput | null;
595
+ updatedAt?: ModelStringInput | null;
590
596
  userPossibleRiderResponsibilitiesId?: ModelIDInput | null;
591
597
  riderResponsibilityPossibleUsersId?: ModelIDInput | null;
592
598
  };
@@ -625,6 +631,8 @@ export type ModelVehicleConditionInput = {
625
631
  or?: Array<ModelVehicleConditionInput | null> | null;
626
632
  not?: ModelVehicleConditionInput | null;
627
633
  _deleted?: ModelBooleanInput | null;
634
+ createdAt?: ModelStringInput | null;
635
+ updatedAt?: ModelStringInput | null;
628
636
  userCreatedVehiclesId?: ModelIDInput | null;
629
637
  };
630
638
  export type UpdateVehicleInput = {
@@ -656,6 +664,8 @@ export type ModelVehicleAssignmentConditionInput = {
656
664
  or?: Array<ModelVehicleAssignmentConditionInput | null> | null;
657
665
  not?: ModelVehicleAssignmentConditionInput | null;
658
666
  _deleted?: ModelBooleanInput | null;
667
+ createdAt?: ModelStringInput | null;
668
+ updatedAt?: ModelStringInput | null;
659
669
  userVehicleAssignmentsId?: ModelIDInput | null;
660
670
  vehicleAssignmentsId?: ModelIDInput | null;
661
671
  };
@@ -713,6 +723,8 @@ export type ModelLocationConditionInput = {
713
723
  or?: Array<ModelLocationConditionInput | null> | null;
714
724
  not?: ModelLocationConditionInput | null;
715
725
  _deleted?: ModelBooleanInput | null;
726
+ createdAt?: ModelStringInput | null;
727
+ updatedAt?: ModelStringInput | null;
716
728
  userCreatedLocationsId?: ModelIDInput | null;
717
729
  };
718
730
  export type UpdateLocationInput = {
@@ -799,6 +811,7 @@ export type ModelTaskConditionInput = {
799
811
  or?: Array<ModelTaskConditionInput | null> | null;
800
812
  not?: ModelTaskConditionInput | null;
801
813
  _deleted?: ModelBooleanInput | null;
814
+ updatedAt?: ModelStringInput | null;
802
815
  userCreatedTasksId?: ModelIDInput | null;
803
816
  };
804
817
  export type ModelPriorityInput = {
@@ -858,6 +871,8 @@ export type ModelTaskAssigneeConditionInput = {
858
871
  or?: Array<ModelTaskAssigneeConditionInput | null> | null;
859
872
  not?: ModelTaskAssigneeConditionInput | null;
860
873
  _deleted?: ModelBooleanInput | null;
874
+ createdAt?: ModelStringInput | null;
875
+ updatedAt?: ModelStringInput | null;
861
876
  userAssignmentsId?: ModelIDInput | null;
862
877
  taskAssigneesId?: ModelIDInput | null;
863
878
  };
@@ -901,6 +916,8 @@ export type ModelScheduledTaskConditionInput = {
901
916
  or?: Array<ModelScheduledTaskConditionInput | null> | null;
902
917
  not?: ModelScheduledTaskConditionInput | null;
903
918
  _deleted?: ModelBooleanInput | null;
919
+ createdAt?: ModelStringInput | null;
920
+ updatedAt?: ModelStringInput | null;
904
921
  userCreatedScheduledTasksId?: ModelIDInput | null;
905
922
  };
906
923
  export type UpdateScheduledTaskInput = {
@@ -944,6 +961,8 @@ export type ModelCommentConditionInput = {
944
961
  or?: Array<ModelCommentConditionInput | null> | null;
945
962
  not?: ModelCommentConditionInput | null;
946
963
  _deleted?: ModelBooleanInput | null;
964
+ createdAt?: ModelStringInput | null;
965
+ updatedAt?: ModelStringInput | null;
947
966
  userCommentsId?: ModelIDInput | null;
948
967
  };
949
968
  export type ModelCommentVisibilityInput = {
@@ -986,6 +1005,8 @@ export type ModelDeliverableTypeConditionInput = {
986
1005
  or?: Array<ModelDeliverableTypeConditionInput | null> | null;
987
1006
  not?: ModelDeliverableTypeConditionInput | null;
988
1007
  _deleted?: ModelBooleanInput | null;
1008
+ createdAt?: ModelStringInput | null;
1009
+ updatedAt?: ModelStringInput | null;
989
1010
  };
990
1011
  export type ModelDeliverableTypeIconInput = {
991
1012
  eq?: DeliverableTypeIcon | null;
@@ -1031,6 +1052,8 @@ export type ModelDeliverableConditionInput = {
1031
1052
  or?: Array<ModelDeliverableConditionInput | null> | null;
1032
1053
  not?: ModelDeliverableConditionInput | null;
1033
1054
  _deleted?: ModelBooleanInput | null;
1055
+ createdAt?: ModelStringInput | null;
1056
+ updatedAt?: ModelStringInput | null;
1034
1057
  taskDeliverablesId?: ModelIDInput | null;
1035
1058
  scheduledTaskDeliverablesId?: ModelIDInput | null;
1036
1059
  deliverableTypeDeliverablesId?: ModelIDInput | null;
@@ -1066,6 +1089,8 @@ export type ModelRiderResponsibilityConditionInput = {
1066
1089
  or?: Array<ModelRiderResponsibilityConditionInput | null> | null;
1067
1090
  not?: ModelRiderResponsibilityConditionInput | null;
1068
1091
  _deleted?: ModelBooleanInput | null;
1092
+ createdAt?: ModelStringInput | null;
1093
+ updatedAt?: ModelStringInput | null;
1069
1094
  };
1070
1095
  export type UpdateRiderResponsibilityInput = {
1071
1096
  id: string;
@@ -1086,6 +1111,8 @@ export type ModelTenantFilterInput = {
1086
1111
  id?: ModelIDInput | null;
1087
1112
  name?: ModelStringInput | null;
1088
1113
  referenceIdentifier?: ModelStringInput | null;
1114
+ createdAt?: ModelStringInput | null;
1115
+ updatedAt?: ModelStringInput | null;
1089
1116
  and?: Array<ModelTenantFilterInput | null> | null;
1090
1117
  or?: Array<ModelTenantFilterInput | null> | null;
1091
1118
  not?: ModelTenantFilterInput | null;
@@ -1114,6 +1141,8 @@ export type ModelUserFilterInput = {
1114
1141
  dateOfBirth?: ModelStringInput | null;
1115
1142
  riderResponsibility?: ModelStringInput | null;
1116
1143
  disabled?: ModelIntInput | null;
1144
+ createdAt?: ModelStringInput | null;
1145
+ updatedAt?: ModelStringInput | null;
1117
1146
  and?: Array<ModelUserFilterInput | null> | null;
1118
1147
  or?: Array<ModelUserFilterInput | null> | null;
1119
1148
  not?: ModelUserFilterInput | null;
@@ -1128,6 +1157,8 @@ export type ModelUserConnection = {
1128
1157
  export type ModelPossibleRiderResponsibilitiesFilterInput = {
1129
1158
  id?: ModelIDInput | null;
1130
1159
  tenantId?: ModelIDInput | null;
1160
+ createdAt?: ModelStringInput | null;
1161
+ updatedAt?: ModelStringInput | null;
1131
1162
  and?: Array<ModelPossibleRiderResponsibilitiesFilterInput | null> | null;
1132
1163
  or?: Array<ModelPossibleRiderResponsibilitiesFilterInput | null> | null;
1133
1164
  not?: ModelPossibleRiderResponsibilitiesFilterInput | null;
@@ -1144,6 +1175,8 @@ export type ModelVehicleFilterInput = {
1144
1175
  dateOfManufacture?: ModelStringInput | null;
1145
1176
  dateOfRegistration?: ModelStringInput | null;
1146
1177
  disabled?: ModelIntInput | null;
1178
+ createdAt?: ModelStringInput | null;
1179
+ updatedAt?: ModelStringInput | null;
1147
1180
  and?: Array<ModelVehicleFilterInput | null> | null;
1148
1181
  or?: Array<ModelVehicleFilterInput | null> | null;
1149
1182
  not?: ModelVehicleFilterInput | null;
@@ -1153,6 +1186,8 @@ export type ModelVehicleFilterInput = {
1153
1186
  export type ModelVehicleAssignmentFilterInput = {
1154
1187
  id?: ModelIDInput | null;
1155
1188
  tenantId?: ModelIDInput | null;
1189
+ createdAt?: ModelStringInput | null;
1190
+ updatedAt?: ModelStringInput | null;
1156
1191
  and?: Array<ModelVehicleAssignmentFilterInput | null> | null;
1157
1192
  or?: Array<ModelVehicleAssignmentFilterInput | null> | null;
1158
1193
  not?: ModelVehicleAssignmentFilterInput | null;
@@ -1178,6 +1213,8 @@ export type ModelLocationFilterInput = {
1178
1213
  disabled?: ModelIntInput | null;
1179
1214
  googleMapsPlaceId?: ModelStringInput | null;
1180
1215
  archived?: ModelIntInput | null;
1216
+ createdAt?: ModelStringInput | null;
1217
+ updatedAt?: ModelStringInput | null;
1181
1218
  and?: Array<ModelLocationFilterInput | null> | null;
1182
1219
  or?: Array<ModelLocationFilterInput | null> | null;
1183
1220
  not?: ModelLocationFilterInput | null;
@@ -1206,6 +1243,7 @@ export type ModelTaskFilterInput = {
1206
1243
  status?: ModelTaskStatusInput | null;
1207
1244
  isRiderUsingOwnVehicle?: ModelIntInput | null;
1208
1245
  archived?: ModelIntInput | null;
1246
+ updatedAt?: ModelStringInput | null;
1209
1247
  and?: Array<ModelTaskFilterInput | null> | null;
1210
1248
  or?: Array<ModelTaskFilterInput | null> | null;
1211
1249
  not?: ModelTaskFilterInput | null;
@@ -1226,6 +1264,8 @@ export type ModelTaskAssigneeFilterInput = {
1226
1264
  tenantId?: ModelIDInput | null;
1227
1265
  role?: ModelRoleInput | null;
1228
1266
  archived?: ModelIntInput | null;
1267
+ createdAt?: ModelStringInput | null;
1268
+ updatedAt?: ModelStringInput | null;
1229
1269
  and?: Array<ModelTaskAssigneeFilterInput | null> | null;
1230
1270
  or?: Array<ModelTaskAssigneeFilterInput | null> | null;
1231
1271
  not?: ModelTaskAssigneeFilterInput | null;
@@ -1242,6 +1282,8 @@ export type ModelScheduledTaskFilterInput = {
1242
1282
  establishmentLocationId?: ModelIDInput | null;
1243
1283
  priority?: ModelPriorityInput | null;
1244
1284
  disabled?: ModelIntInput | null;
1285
+ createdAt?: ModelStringInput | null;
1286
+ updatedAt?: ModelStringInput | null;
1245
1287
  and?: Array<ModelScheduledTaskFilterInput | null> | null;
1246
1288
  or?: Array<ModelScheduledTaskFilterInput | null> | null;
1247
1289
  not?: ModelScheduledTaskFilterInput | null;
@@ -1256,6 +1298,8 @@ export type ModelCommentFilterInput = {
1256
1298
  body?: ModelStringInput | null;
1257
1299
  visibility?: ModelCommentVisibilityInput | null;
1258
1300
  archived?: ModelIntInput | null;
1301
+ createdAt?: ModelStringInput | null;
1302
+ updatedAt?: ModelStringInput | null;
1259
1303
  and?: Array<ModelCommentFilterInput | null> | null;
1260
1304
  or?: Array<ModelCommentFilterInput | null> | null;
1261
1305
  not?: ModelCommentFilterInput | null;
@@ -1270,6 +1314,8 @@ export type ModelDeliverableTypeFilterInput = {
1270
1314
  defaultUnit?: ModelDeliverableUnitInput | null;
1271
1315
  tags?: ModelStringInput | null;
1272
1316
  disabled?: ModelIntInput | null;
1317
+ createdAt?: ModelStringInput | null;
1318
+ updatedAt?: ModelStringInput | null;
1273
1319
  and?: Array<ModelDeliverableTypeFilterInput | null> | null;
1274
1320
  or?: Array<ModelDeliverableTypeFilterInput | null> | null;
1275
1321
  not?: ModelDeliverableTypeFilterInput | null;
@@ -1288,6 +1334,8 @@ export type ModelDeliverableFilterInput = {
1288
1334
  unit?: ModelDeliverableUnitInput | null;
1289
1335
  orderInGrid?: ModelIntInput | null;
1290
1336
  archived?: ModelIntInput | null;
1337
+ createdAt?: ModelStringInput | null;
1338
+ updatedAt?: ModelStringInput | null;
1291
1339
  and?: Array<ModelDeliverableFilterInput | null> | null;
1292
1340
  or?: Array<ModelDeliverableFilterInput | null> | null;
1293
1341
  not?: ModelDeliverableFilterInput | null;
@@ -1301,6 +1349,8 @@ export type ModelRiderResponsibilityFilterInput = {
1301
1349
  tenantId?: ModelIDInput | null;
1302
1350
  label?: ModelStringInput | null;
1303
1351
  disabled?: ModelIntInput | null;
1352
+ createdAt?: ModelStringInput | null;
1353
+ updatedAt?: ModelStringInput | null;
1304
1354
  and?: Array<ModelRiderResponsibilityFilterInput | null> | null;
1305
1355
  or?: Array<ModelRiderResponsibilityFilterInput | null> | null;
1306
1356
  not?: ModelRiderResponsibilityFilterInput | null;
@@ -1316,9 +1366,12 @@ export type ModelSubscriptionTenantFilterInput = {
1316
1366
  id?: ModelSubscriptionIDInput | null;
1317
1367
  name?: ModelSubscriptionStringInput | null;
1318
1368
  referenceIdentifier?: ModelSubscriptionStringInput | null;
1369
+ createdAt?: ModelSubscriptionStringInput | null;
1370
+ updatedAt?: ModelSubscriptionStringInput | null;
1319
1371
  and?: Array<ModelSubscriptionTenantFilterInput | null> | null;
1320
1372
  or?: Array<ModelSubscriptionTenantFilterInput | null> | null;
1321
1373
  _deleted?: ModelBooleanInput | null;
1374
+ tenantAdminId?: ModelSubscriptionIDInput | null;
1322
1375
  };
1323
1376
  export type ModelSubscriptionIDInput = {
1324
1377
  ne?: string | null;
@@ -1359,9 +1412,20 @@ export type ModelSubscriptionUserFilterInput = {
1359
1412
  dateOfBirth?: ModelSubscriptionStringInput | null;
1360
1413
  riderResponsibility?: ModelSubscriptionStringInput | null;
1361
1414
  disabled?: ModelSubscriptionIntInput | null;
1415
+ createdAt?: ModelSubscriptionStringInput | null;
1416
+ updatedAt?: ModelSubscriptionStringInput | null;
1362
1417
  and?: Array<ModelSubscriptionUserFilterInput | null> | null;
1363
1418
  or?: Array<ModelSubscriptionUserFilterInput | null> | null;
1364
1419
  _deleted?: ModelBooleanInput | null;
1420
+ userPossibleRiderResponsibilitiesId?: ModelSubscriptionIDInput | null;
1421
+ userCommentsId?: ModelSubscriptionIDInput | null;
1422
+ userAssignmentsId?: ModelSubscriptionIDInput | null;
1423
+ userVehicleAssignmentsId?: ModelSubscriptionIDInput | null;
1424
+ userCreatedTasksId?: ModelSubscriptionIDInput | null;
1425
+ userCreatedLocationsId?: ModelSubscriptionIDInput | null;
1426
+ userCreatedVehiclesId?: ModelSubscriptionIDInput | null;
1427
+ userCreatedScheduledTasksId?: ModelSubscriptionIDInput | null;
1428
+ cognitoId?: ModelStringInput | null;
1365
1429
  };
1366
1430
  export type ModelSubscriptionIntInput = {
1367
1431
  ne?: number | null;
@@ -1377,6 +1441,8 @@ export type ModelSubscriptionIntInput = {
1377
1441
  export type ModelSubscriptionPossibleRiderResponsibilitiesFilterInput = {
1378
1442
  id?: ModelSubscriptionIDInput | null;
1379
1443
  tenantId?: ModelSubscriptionIDInput | null;
1444
+ createdAt?: ModelSubscriptionStringInput | null;
1445
+ updatedAt?: ModelSubscriptionStringInput | null;
1380
1446
  and?: Array<ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null> | null;
1381
1447
  or?: Array<ModelSubscriptionPossibleRiderResponsibilitiesFilterInput | null> | null;
1382
1448
  _deleted?: ModelBooleanInput | null;
@@ -1390,13 +1456,18 @@ export type ModelSubscriptionVehicleFilterInput = {
1390
1456
  dateOfManufacture?: ModelSubscriptionStringInput | null;
1391
1457
  dateOfRegistration?: ModelSubscriptionStringInput | null;
1392
1458
  disabled?: ModelSubscriptionIntInput | null;
1459
+ createdAt?: ModelSubscriptionStringInput | null;
1460
+ updatedAt?: ModelSubscriptionStringInput | null;
1393
1461
  and?: Array<ModelSubscriptionVehicleFilterInput | null> | null;
1394
1462
  or?: Array<ModelSubscriptionVehicleFilterInput | null> | null;
1395
1463
  _deleted?: ModelBooleanInput | null;
1464
+ vehicleAssignmentsId?: ModelSubscriptionIDInput | null;
1396
1465
  };
1397
1466
  export type ModelSubscriptionVehicleAssignmentFilterInput = {
1398
1467
  id?: ModelSubscriptionIDInput | null;
1399
1468
  tenantId?: ModelSubscriptionIDInput | null;
1469
+ createdAt?: ModelSubscriptionStringInput | null;
1470
+ updatedAt?: ModelSubscriptionStringInput | null;
1400
1471
  and?: Array<ModelSubscriptionVehicleAssignmentFilterInput | null> | null;
1401
1472
  or?: Array<ModelSubscriptionVehicleAssignmentFilterInput | null> | null;
1402
1473
  _deleted?: ModelBooleanInput | null;
@@ -1419,6 +1490,8 @@ export type ModelSubscriptionLocationFilterInput = {
1419
1490
  disabled?: ModelSubscriptionIntInput | null;
1420
1491
  googleMapsPlaceId?: ModelSubscriptionStringInput | null;
1421
1492
  archived?: ModelSubscriptionIntInput | null;
1493
+ createdAt?: ModelSubscriptionStringInput | null;
1494
+ updatedAt?: ModelSubscriptionStringInput | null;
1422
1495
  and?: Array<ModelSubscriptionLocationFilterInput | null> | null;
1423
1496
  or?: Array<ModelSubscriptionLocationFilterInput | null> | null;
1424
1497
  _deleted?: ModelBooleanInput | null;
@@ -1445,15 +1518,20 @@ export type ModelSubscriptionTaskFilterInput = {
1445
1518
  status?: ModelSubscriptionStringInput | null;
1446
1519
  isRiderUsingOwnVehicle?: ModelSubscriptionIntInput | null;
1447
1520
  archived?: ModelSubscriptionIntInput | null;
1521
+ updatedAt?: ModelSubscriptionStringInput | null;
1448
1522
  and?: Array<ModelSubscriptionTaskFilterInput | null> | null;
1449
1523
  or?: Array<ModelSubscriptionTaskFilterInput | null> | null;
1450
1524
  _deleted?: ModelBooleanInput | null;
1525
+ taskAssigneesId?: ModelSubscriptionIDInput | null;
1526
+ taskDeliverablesId?: ModelSubscriptionIDInput | null;
1451
1527
  };
1452
1528
  export type ModelSubscriptionTaskAssigneeFilterInput = {
1453
1529
  id?: ModelSubscriptionIDInput | null;
1454
1530
  tenantId?: ModelSubscriptionIDInput | null;
1455
1531
  role?: ModelSubscriptionStringInput | null;
1456
1532
  archived?: ModelSubscriptionIntInput | null;
1533
+ createdAt?: ModelSubscriptionStringInput | null;
1534
+ updatedAt?: ModelSubscriptionStringInput | null;
1457
1535
  and?: Array<ModelSubscriptionTaskAssigneeFilterInput | null> | null;
1458
1536
  or?: Array<ModelSubscriptionTaskAssigneeFilterInput | null> | null;
1459
1537
  _deleted?: ModelBooleanInput | null;
@@ -1467,9 +1545,12 @@ export type ModelSubscriptionScheduledTaskFilterInput = {
1467
1545
  establishmentLocationId?: ModelSubscriptionIDInput | null;
1468
1546
  priority?: ModelSubscriptionStringInput | null;
1469
1547
  disabled?: ModelSubscriptionIntInput | null;
1548
+ createdAt?: ModelSubscriptionStringInput | null;
1549
+ updatedAt?: ModelSubscriptionStringInput | null;
1470
1550
  and?: Array<ModelSubscriptionScheduledTaskFilterInput | null> | null;
1471
1551
  or?: Array<ModelSubscriptionScheduledTaskFilterInput | null> | null;
1472
1552
  _deleted?: ModelBooleanInput | null;
1553
+ scheduledTaskDeliverablesId?: ModelSubscriptionIDInput | null;
1473
1554
  };
1474
1555
  export type ModelSubscriptionCommentFilterInput = {
1475
1556
  id?: ModelSubscriptionIDInput | null;
@@ -1478,9 +1559,12 @@ export type ModelSubscriptionCommentFilterInput = {
1478
1559
  body?: ModelSubscriptionStringInput | null;
1479
1560
  visibility?: ModelSubscriptionStringInput | null;
1480
1561
  archived?: ModelSubscriptionIntInput | null;
1562
+ createdAt?: ModelSubscriptionStringInput | null;
1563
+ updatedAt?: ModelSubscriptionStringInput | null;
1481
1564
  and?: Array<ModelSubscriptionCommentFilterInput | null> | null;
1482
1565
  or?: Array<ModelSubscriptionCommentFilterInput | null> | null;
1483
1566
  _deleted?: ModelBooleanInput | null;
1567
+ owner?: ModelStringInput | null;
1484
1568
  };
1485
1569
  export type ModelSubscriptionDeliverableTypeFilterInput = {
1486
1570
  id?: ModelSubscriptionIDInput | null;
@@ -1490,9 +1574,12 @@ export type ModelSubscriptionDeliverableTypeFilterInput = {
1490
1574
  defaultUnit?: ModelSubscriptionStringInput | null;
1491
1575
  tags?: ModelSubscriptionStringInput | null;
1492
1576
  disabled?: ModelSubscriptionIntInput | null;
1577
+ createdAt?: ModelSubscriptionStringInput | null;
1578
+ updatedAt?: ModelSubscriptionStringInput | null;
1493
1579
  and?: Array<ModelSubscriptionDeliverableTypeFilterInput | null> | null;
1494
1580
  or?: Array<ModelSubscriptionDeliverableTypeFilterInput | null> | null;
1495
1581
  _deleted?: ModelBooleanInput | null;
1582
+ deliverableTypeDeliverablesId?: ModelSubscriptionIDInput | null;
1496
1583
  };
1497
1584
  export type ModelSubscriptionDeliverableFilterInput = {
1498
1585
  id?: ModelSubscriptionIDInput | null;
@@ -1501,6 +1588,8 @@ export type ModelSubscriptionDeliverableFilterInput = {
1501
1588
  unit?: ModelSubscriptionStringInput | null;
1502
1589
  orderInGrid?: ModelSubscriptionIntInput | null;
1503
1590
  archived?: ModelSubscriptionIntInput | null;
1591
+ createdAt?: ModelSubscriptionStringInput | null;
1592
+ updatedAt?: ModelSubscriptionStringInput | null;
1504
1593
  and?: Array<ModelSubscriptionDeliverableFilterInput | null> | null;
1505
1594
  or?: Array<ModelSubscriptionDeliverableFilterInput | null> | null;
1506
1595
  _deleted?: ModelBooleanInput | null;
@@ -1510,9 +1599,12 @@ export type ModelSubscriptionRiderResponsibilityFilterInput = {
1510
1599
  tenantId?: ModelSubscriptionIDInput | null;
1511
1600
  label?: ModelSubscriptionStringInput | null;
1512
1601
  disabled?: ModelSubscriptionIntInput | null;
1602
+ createdAt?: ModelSubscriptionStringInput | null;
1603
+ updatedAt?: ModelSubscriptionStringInput | null;
1513
1604
  and?: Array<ModelSubscriptionRiderResponsibilityFilterInput | null> | null;
1514
1605
  or?: Array<ModelSubscriptionRiderResponsibilityFilterInput | null> | null;
1515
1606
  _deleted?: ModelBooleanInput | null;
1607
+ riderResponsibilityPossibleUsersId?: ModelSubscriptionIDInput | null;
1516
1608
  };
1517
1609
  export type CreateTenantMutationVariables = {
1518
1610
  input: CreateTenantInput;
@@ -1,47 +1,53 @@
1
- export declare const createTenant = "\n mutation CreateTenant(\n $input: CreateTenantInput!\n $condition: ModelTenantConditionInput\n ) {\n createTenant(input: $input, condition: $condition) {\n id\n name\n referenceIdentifier\n admin {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n tenantAdminId\n __typename\n }\n }\n";
2
- export declare const updateTenant = "\n mutation UpdateTenant(\n $input: UpdateTenantInput!\n $condition: ModelTenantConditionInput\n ) {\n updateTenant(input: $input, condition: $condition) {\n id\n name\n referenceIdentifier\n admin {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n tenantAdminId\n __typename\n }\n }\n";
3
- export declare const deleteTenant = "\n mutation DeleteTenant(\n $input: DeleteTenantInput!\n $condition: ModelTenantConditionInput\n ) {\n deleteTenant(input: $input, condition: $condition) {\n id\n name\n referenceIdentifier\n admin {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n tenantAdminId\n __typename\n }\n }\n";
4
- export declare const createUser = "\n mutation CreateUser(\n $input: CreateUserInput!\n $condition: ModelUserConditionInput\n ) {\n createUser(input: $input, condition: $condition) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
5
- export declare const updateUser = "\n mutation UpdateUser(\n $input: UpdateUserInput!\n $condition: ModelUserConditionInput\n ) {\n updateUser(input: $input, condition: $condition) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
6
- export declare const deleteUser = "\n mutation DeleteUser(\n $input: DeleteUserInput!\n $condition: ModelUserConditionInput\n ) {\n deleteUser(input: $input, condition: $condition) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
7
- export declare const createPossibleRiderResponsibilities = "\n mutation CreatePossibleRiderResponsibilities(\n $input: CreatePossibleRiderResponsibilitiesInput!\n $condition: ModelPossibleRiderResponsibilitiesConditionInput\n ) {\n createPossibleRiderResponsibilities(input: $input, condition: $condition) {\n id\n tenantId\n user {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n riderResponsibility {\n id\n tenantId\n label\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userPossibleRiderResponsibilitiesId\n riderResponsibilityPossibleUsersId\n __typename\n }\n }\n";
8
- export declare const updatePossibleRiderResponsibilities = "\n mutation UpdatePossibleRiderResponsibilities(\n $input: UpdatePossibleRiderResponsibilitiesInput!\n $condition: ModelPossibleRiderResponsibilitiesConditionInput\n ) {\n updatePossibleRiderResponsibilities(input: $input, condition: $condition) {\n id\n tenantId\n user {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n riderResponsibility {\n id\n tenantId\n label\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userPossibleRiderResponsibilitiesId\n riderResponsibilityPossibleUsersId\n __typename\n }\n }\n";
9
- export declare const deletePossibleRiderResponsibilities = "\n mutation DeletePossibleRiderResponsibilities(\n $input: DeletePossibleRiderResponsibilitiesInput!\n $condition: ModelPossibleRiderResponsibilitiesConditionInput\n ) {\n deletePossibleRiderResponsibilities(input: $input, condition: $condition) {\n id\n tenantId\n user {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n riderResponsibility {\n id\n tenantId\n label\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userPossibleRiderResponsibilitiesId\n riderResponsibilityPossibleUsersId\n __typename\n }\n }\n";
10
- export declare const createVehicle = "\n mutation CreateVehicle(\n $input: CreateVehicleInput!\n $condition: ModelVehicleConditionInput\n ) {\n createVehicle(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n name\n manufacturer\n model\n dateOfManufacture\n dateOfRegistration\n assignments {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedVehiclesId\n __typename\n }\n }\n";
11
- export declare const updateVehicle = "\n mutation UpdateVehicle(\n $input: UpdateVehicleInput!\n $condition: ModelVehicleConditionInput\n ) {\n updateVehicle(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n name\n manufacturer\n model\n dateOfManufacture\n dateOfRegistration\n assignments {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedVehiclesId\n __typename\n }\n }\n";
12
- export declare const deleteVehicle = "\n mutation DeleteVehicle(\n $input: DeleteVehicleInput!\n $condition: ModelVehicleConditionInput\n ) {\n deleteVehicle(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n name\n manufacturer\n model\n dateOfManufacture\n dateOfRegistration\n assignments {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedVehiclesId\n __typename\n }\n }\n";
13
- export declare const createVehicleAssignment = "\n mutation CreateVehicleAssignment(\n $input: CreateVehicleAssignmentInput!\n $condition: ModelVehicleAssignmentConditionInput\n ) {\n createVehicleAssignment(input: $input, condition: $condition) {\n id\n tenantId\n vehicle {\n id\n tenantId\n name\n manufacturer\n model\n dateOfManufacture\n dateOfRegistration\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedVehiclesId\n __typename\n }\n assignee {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userVehicleAssignmentsId\n vehicleAssignmentsId\n __typename\n }\n }\n";
14
- export declare const updateVehicleAssignment = "\n mutation UpdateVehicleAssignment(\n $input: UpdateVehicleAssignmentInput!\n $condition: ModelVehicleAssignmentConditionInput\n ) {\n updateVehicleAssignment(input: $input, condition: $condition) {\n id\n tenantId\n vehicle {\n id\n tenantId\n name\n manufacturer\n model\n dateOfManufacture\n dateOfRegistration\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedVehiclesId\n __typename\n }\n assignee {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userVehicleAssignmentsId\n vehicleAssignmentsId\n __typename\n }\n }\n";
15
- export declare const deleteVehicleAssignment = "\n mutation DeleteVehicleAssignment(\n $input: DeleteVehicleAssignmentInput!\n $condition: ModelVehicleAssignmentConditionInput\n ) {\n deleteVehicleAssignment(input: $input, condition: $condition) {\n id\n tenantId\n vehicle {\n id\n tenantId\n name\n manufacturer\n model\n dateOfManufacture\n dateOfRegistration\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedVehiclesId\n __typename\n }\n assignee {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userVehicleAssignmentsId\n vehicleAssignmentsId\n __typename\n }\n }\n";
16
- export declare const createLocation = "\n mutation CreateLocation(\n $input: CreateLocationInput!\n $condition: ModelLocationConditionInput\n ) {\n createLocation(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n name\n listed\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n tasksAsPickUp {\n nextToken\n startedAt\n __typename\n }\n tasksAsDropOff {\n nextToken\n startedAt\n __typename\n }\n taskAsEstablishment {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsPickUp {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsDropOff {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsEstablishment {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n }\n";
17
- export declare const updateLocation = "\n mutation UpdateLocation(\n $input: UpdateLocationInput!\n $condition: ModelLocationConditionInput\n ) {\n updateLocation(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n name\n listed\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n tasksAsPickUp {\n nextToken\n startedAt\n __typename\n }\n tasksAsDropOff {\n nextToken\n startedAt\n __typename\n }\n taskAsEstablishment {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsPickUp {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsDropOff {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsEstablishment {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n }\n";
18
- export declare const deleteLocation = "\n mutation DeleteLocation(\n $input: DeleteLocationInput!\n $condition: ModelLocationConditionInput\n ) {\n deleteLocation(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n name\n listed\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n tasksAsPickUp {\n nextToken\n startedAt\n __typename\n }\n tasksAsDropOff {\n nextToken\n startedAt\n __typename\n }\n taskAsEstablishment {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsPickUp {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsDropOff {\n nextToken\n startedAt\n __typename\n }\n scheduledTasksAsEstablishment {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n }\n";
19
- export declare const createTask = "\n mutation CreateTask(\n $input: CreateTaskInput!\n $condition: ModelTaskConditionInput\n ) {\n createTask(input: $input, condition: $condition) {\n id\n tenantId\n createdAt\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n requesterContact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n pickUpLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n dropOffLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n establishmentLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n riderResponsibility\n assignees {\n nextToken\n startedAt\n __typename\n }\n priority\n deliverables {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n status\n isRiderUsingOwnVehicle\n archived\n pickUpSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n dropOffSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n }\n";
20
- export declare const updateTask = "\n mutation UpdateTask(\n $input: UpdateTaskInput!\n $condition: ModelTaskConditionInput\n ) {\n updateTask(input: $input, condition: $condition) {\n id\n tenantId\n createdAt\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n requesterContact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n pickUpLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n dropOffLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n establishmentLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n riderResponsibility\n assignees {\n nextToken\n startedAt\n __typename\n }\n priority\n deliverables {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n status\n isRiderUsingOwnVehicle\n archived\n pickUpSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n dropOffSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n }\n";
21
- export declare const deleteTask = "\n mutation DeleteTask(\n $input: DeleteTaskInput!\n $condition: ModelTaskConditionInput\n ) {\n deleteTask(input: $input, condition: $condition) {\n id\n tenantId\n createdAt\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n requesterContact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n pickUpLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n dropOffLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n establishmentLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n riderResponsibility\n assignees {\n nextToken\n startedAt\n __typename\n }\n priority\n deliverables {\n nextToken\n startedAt\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n status\n isRiderUsingOwnVehicle\n archived\n pickUpSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n dropOffSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n }\n";
22
- export declare const createTaskAssignee = "\n mutation CreateTaskAssignee(\n $input: CreateTaskAssigneeInput!\n $condition: ModelTaskAssigneeConditionInput\n ) {\n createTaskAssignee(input: $input, condition: $condition) {\n id\n tenantId\n role\n task {\n id\n tenantId\n createdAt\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n riderResponsibility\n priority\n status\n isRiderUsingOwnVehicle\n archived\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n assignee {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userAssignmentsId\n taskAssigneesId\n __typename\n }\n }\n";
23
- export declare const updateTaskAssignee = "\n mutation UpdateTaskAssignee(\n $input: UpdateTaskAssigneeInput!\n $condition: ModelTaskAssigneeConditionInput\n ) {\n updateTaskAssignee(input: $input, condition: $condition) {\n id\n tenantId\n role\n task {\n id\n tenantId\n createdAt\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n riderResponsibility\n priority\n status\n isRiderUsingOwnVehicle\n archived\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n assignee {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userAssignmentsId\n taskAssigneesId\n __typename\n }\n }\n";
24
- export declare const deleteTaskAssignee = "\n mutation DeleteTaskAssignee(\n $input: DeleteTaskAssigneeInput!\n $condition: ModelTaskAssigneeConditionInput\n ) {\n deleteTaskAssignee(input: $input, condition: $condition) {\n id\n tenantId\n role\n task {\n id\n tenantId\n createdAt\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n riderResponsibility\n priority\n status\n isRiderUsingOwnVehicle\n archived\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n assignee {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userAssignmentsId\n taskAssigneesId\n __typename\n }\n }\n";
25
- export declare const createScheduledTask = "\n mutation CreateScheduledTask(\n $input: CreateScheduledTaskInput!\n $condition: ModelScheduledTaskConditionInput\n ) {\n createScheduledTask(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n requesterContact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n cronExpression\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n pickUpLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n dropOffLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n establishmentLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n priority\n deliverables {\n nextToken\n startedAt\n __typename\n }\n disabled\n pickUpSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n dropOffSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedScheduledTasksId\n __typename\n }\n }\n";
26
- export declare const updateScheduledTask = "\n mutation UpdateScheduledTask(\n $input: UpdateScheduledTaskInput!\n $condition: ModelScheduledTaskConditionInput\n ) {\n updateScheduledTask(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n requesterContact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n cronExpression\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n pickUpLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n dropOffLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n establishmentLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n priority\n deliverables {\n nextToken\n startedAt\n __typename\n }\n disabled\n pickUpSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n dropOffSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedScheduledTasksId\n __typename\n }\n }\n";
27
- export declare const deleteScheduledTask = "\n mutation DeleteScheduledTask(\n $input: DeleteScheduledTaskInput!\n $condition: ModelScheduledTaskConditionInput\n ) {\n deleteScheduledTask(input: $input, condition: $condition) {\n id\n tenantId\n createdBy {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n requesterContact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n cronExpression\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n pickUpLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n dropOffLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n establishmentLocation {\n id\n tenantId\n name\n listed\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n disabled\n googleMapsPlaceId\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedLocationsId\n __typename\n }\n priority\n deliverables {\n nextToken\n startedAt\n __typename\n }\n disabled\n pickUpSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n dropOffSchedule {\n relation\n timePrimary\n timeSecondary\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedScheduledTasksId\n __typename\n }\n }\n";
28
- export declare const createComment = "\n mutation CreateComment(\n $input: CreateCommentInput!\n $condition: ModelCommentConditionInput\n ) {\n createComment(input: $input, condition: $condition) {\n id\n parentId\n owner\n tenantId\n body\n author {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n visibility\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCommentsId\n __typename\n }\n }\n";
29
- export declare const updateComment = "\n mutation UpdateComment(\n $input: UpdateCommentInput!\n $condition: ModelCommentConditionInput\n ) {\n updateComment(input: $input, condition: $condition) {\n id\n parentId\n owner\n tenantId\n body\n author {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n visibility\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCommentsId\n __typename\n }\n }\n";
30
- export declare const deleteComment = "\n mutation DeleteComment(\n $input: DeleteCommentInput!\n $condition: ModelCommentConditionInput\n ) {\n deleteComment(input: $input, condition: $condition) {\n id\n parentId\n owner\n tenantId\n body\n author {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n visibility\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCommentsId\n __typename\n }\n }\n";
31
- export declare const createDeliverableType = "\n mutation CreateDeliverableType(\n $input: CreateDeliverableTypeInput!\n $condition: ModelDeliverableTypeConditionInput\n ) {\n createDeliverableType(input: $input, condition: $condition) {\n id\n label\n tenantId\n icon\n defaultUnit\n deliverables {\n nextToken\n startedAt\n __typename\n }\n tags\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
32
- export declare const updateDeliverableType = "\n mutation UpdateDeliverableType(\n $input: UpdateDeliverableTypeInput!\n $condition: ModelDeliverableTypeConditionInput\n ) {\n updateDeliverableType(input: $input, condition: $condition) {\n id\n label\n tenantId\n icon\n defaultUnit\n deliverables {\n nextToken\n startedAt\n __typename\n }\n tags\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
33
- export declare const deleteDeliverableType = "\n mutation DeleteDeliverableType(\n $input: DeleteDeliverableTypeInput!\n $condition: ModelDeliverableTypeConditionInput\n ) {\n deleteDeliverableType(input: $input, condition: $condition) {\n id\n label\n tenantId\n icon\n defaultUnit\n deliverables {\n nextToken\n startedAt\n __typename\n }\n tags\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
34
- export declare const createDeliverable = "\n mutation CreateDeliverable(\n $input: CreateDeliverableInput!\n $condition: ModelDeliverableConditionInput\n ) {\n createDeliverable(input: $input, condition: $condition) {\n id\n tenantId\n deliverableType {\n id\n label\n tenantId\n icon\n defaultUnit\n tags\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n task {\n id\n tenantId\n createdAt\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n riderResponsibility\n priority\n status\n isRiderUsingOwnVehicle\n archived\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n scheduledTask {\n id\n tenantId\n cronExpression\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n priority\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedScheduledTasksId\n __typename\n }\n count\n unit\n orderInGrid\n comments {\n nextToken\n startedAt\n __typename\n }\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n taskDeliverablesId\n scheduledTaskDeliverablesId\n deliverableTypeDeliverablesId\n __typename\n }\n }\n";
35
- export declare const updateDeliverable = "\n mutation UpdateDeliverable(\n $input: UpdateDeliverableInput!\n $condition: ModelDeliverableConditionInput\n ) {\n updateDeliverable(input: $input, condition: $condition) {\n id\n tenantId\n deliverableType {\n id\n label\n tenantId\n icon\n defaultUnit\n tags\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n task {\n id\n tenantId\n createdAt\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n riderResponsibility\n priority\n status\n isRiderUsingOwnVehicle\n archived\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n scheduledTask {\n id\n tenantId\n cronExpression\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n priority\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedScheduledTasksId\n __typename\n }\n count\n unit\n orderInGrid\n comments {\n nextToken\n startedAt\n __typename\n }\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n taskDeliverablesId\n scheduledTaskDeliverablesId\n deliverableTypeDeliverablesId\n __typename\n }\n }\n";
36
- export declare const deleteDeliverable = "\n mutation DeleteDeliverable(\n $input: DeleteDeliverableInput!\n $condition: ModelDeliverableConditionInput\n ) {\n deleteDeliverable(input: $input, condition: $condition) {\n id\n tenantId\n deliverableType {\n id\n label\n tenantId\n icon\n defaultUnit\n tags\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n task {\n id\n tenantId\n createdAt\n dateCreated\n dateCompleted\n timeOfCall\n timePickedUp\n timePickedUpSenderName\n timeDroppedOff\n timeDroppedOffRecipientName\n timeCancelled\n timeRejected\n timeRiderHome\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n riderResponsibility\n priority\n status\n isRiderUsingOwnVehicle\n archived\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedTasksId\n __typename\n }\n scheduledTask {\n id\n tenantId\n cronExpression\n pickUpLocationId\n dropOffLocationId\n establishmentLocationId\n priority\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n userCreatedScheduledTasksId\n __typename\n }\n count\n unit\n orderInGrid\n comments {\n nextToken\n startedAt\n __typename\n }\n archived\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n taskDeliverablesId\n scheduledTaskDeliverablesId\n deliverableTypeDeliverablesId\n __typename\n }\n }\n";
37
- export declare const createRiderResponsibility = "\n mutation CreateRiderResponsibility(\n $input: CreateRiderResponsibilityInput!\n $condition: ModelRiderResponsibilityConditionInput\n ) {\n createRiderResponsibility(input: $input, condition: $condition) {\n id\n tenantId\n label\n disabled\n possibleUsers {\n nextToken\n startedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
38
- export declare const updateRiderResponsibility = "\n mutation UpdateRiderResponsibility(\n $input: UpdateRiderResponsibilityInput!\n $condition: ModelRiderResponsibilityConditionInput\n ) {\n updateRiderResponsibility(input: $input, condition: $condition) {\n id\n tenantId\n label\n disabled\n possibleUsers {\n nextToken\n startedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
39
- export declare const deleteRiderResponsibility = "\n mutation DeleteRiderResponsibility(\n $input: DeleteRiderResponsibilityInput!\n $condition: ModelRiderResponsibilityConditionInput\n ) {\n deleteRiderResponsibility(input: $input, condition: $condition) {\n id\n tenantId\n label\n disabled\n possibleUsers {\n nextToken\n startedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
40
- export declare const registerUser = "\n mutation RegisterUser(\n $name: String\n $email: String\n $tenantId: ID\n $roles: [Role]\n ) {\n registerUser(\n name: $name\n email: $email\n tenantId: $tenantId\n roles: $roles\n ) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
41
- export declare const registerTenant = "\n mutation RegisterTenant(\n $name: String\n $emailAddress: String\n $tenantName: String\n ) {\n registerTenant(\n name: $name\n emailAddress: $emailAddress\n tenantName: $tenantName\n ) {\n id\n name\n referenceIdentifier\n admin {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n tenantAdminId\n __typename\n }\n }\n";
42
- export declare const updateUserRoles = "\n mutation UpdateUserRoles($userId: ID, $roles: [Role]) {\n updateUserRoles(userId: $userId, roles: $roles) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
43
- export declare const disableUser = "\n mutation DisableUser($userId: ID) {\n disableUser(userId: $userId) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
44
- export declare const enableUser = "\n mutation EnableUser($userId: ID) {\n enableUser(userId: $userId) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
45
- export declare const updateUserEmail = "\n mutation UpdateUserEmail($userId: ID, $emailAddress: AWSEmail) {\n updateUserEmail(userId: $userId, emailAddress: $emailAddress) {\n id\n username\n cognitoId\n tenantId\n isPrimaryAdmin\n contact {\n name\n telephoneNumber\n mobileNumber\n emailAddress\n ward\n line1\n line2\n line3\n town\n county\n state\n country\n postcode\n what3words\n __typename\n }\n displayName\n name\n roles\n dateOfBirth\n riderResponsibility\n possibleRiderResponsibilities {\n nextToken\n startedAt\n __typename\n }\n profilePicture {\n bucket\n key\n region\n __typename\n }\n comments {\n nextToken\n startedAt\n __typename\n }\n assignments {\n nextToken\n startedAt\n __typename\n }\n vehicleAssignments {\n nextToken\n startedAt\n __typename\n }\n createdTasks {\n nextToken\n startedAt\n __typename\n }\n createdLocations {\n nextToken\n startedAt\n __typename\n }\n createdVehicles {\n nextToken\n startedAt\n __typename\n }\n createdScheduledTasks {\n nextToken\n startedAt\n __typename\n }\n disabled\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
46
- export declare const resetUserPassword = "\n mutation ResetUserPassword($userId: ID) {\n resetUserPassword(userId: $userId) {\n successState\n __typename\n }\n }\n";
47
- export declare const adminDeleteRiderResponsibility = "\n mutation AdminDeleteRiderResponsibility($riderResponsibilityId: ID) {\n adminDeleteRiderResponsibility(\n riderResponsibilityId: $riderResponsibilityId\n ) {\n id\n tenantId\n label\n disabled\n possibleUsers {\n nextToken\n startedAt\n __typename\n }\n createdAt\n updatedAt\n _version\n _deleted\n _lastChangedAt\n __typename\n }\n }\n";
1
+ import * as APITypes from "../API";
2
+ type GeneratedMutation<InputType, OutputType> = string & {
3
+ __generatedMutationInput: InputType;
4
+ __generatedMutationOutput: OutputType;
5
+ };
6
+ export declare const createTenant: GeneratedMutation<APITypes.CreateTenantMutationVariables, APITypes.CreateTenantMutation>;
7
+ export declare const updateTenant: GeneratedMutation<APITypes.UpdateTenantMutationVariables, APITypes.UpdateTenantMutation>;
8
+ export declare const deleteTenant: GeneratedMutation<APITypes.DeleteTenantMutationVariables, APITypes.DeleteTenantMutation>;
9
+ export declare const createUser: GeneratedMutation<APITypes.CreateUserMutationVariables, APITypes.CreateUserMutation>;
10
+ export declare const updateUser: GeneratedMutation<APITypes.UpdateUserMutationVariables, APITypes.UpdateUserMutation>;
11
+ export declare const deleteUser: GeneratedMutation<APITypes.DeleteUserMutationVariables, APITypes.DeleteUserMutation>;
12
+ export declare const createPossibleRiderResponsibilities: GeneratedMutation<APITypes.CreatePossibleRiderResponsibilitiesMutationVariables, APITypes.CreatePossibleRiderResponsibilitiesMutation>;
13
+ export declare const updatePossibleRiderResponsibilities: GeneratedMutation<APITypes.UpdatePossibleRiderResponsibilitiesMutationVariables, APITypes.UpdatePossibleRiderResponsibilitiesMutation>;
14
+ export declare const deletePossibleRiderResponsibilities: GeneratedMutation<APITypes.DeletePossibleRiderResponsibilitiesMutationVariables, APITypes.DeletePossibleRiderResponsibilitiesMutation>;
15
+ export declare const createVehicle: GeneratedMutation<APITypes.CreateVehicleMutationVariables, APITypes.CreateVehicleMutation>;
16
+ export declare const updateVehicle: GeneratedMutation<APITypes.UpdateVehicleMutationVariables, APITypes.UpdateVehicleMutation>;
17
+ export declare const deleteVehicle: GeneratedMutation<APITypes.DeleteVehicleMutationVariables, APITypes.DeleteVehicleMutation>;
18
+ export declare const createVehicleAssignment: GeneratedMutation<APITypes.CreateVehicleAssignmentMutationVariables, APITypes.CreateVehicleAssignmentMutation>;
19
+ export declare const updateVehicleAssignment: GeneratedMutation<APITypes.UpdateVehicleAssignmentMutationVariables, APITypes.UpdateVehicleAssignmentMutation>;
20
+ export declare const deleteVehicleAssignment: GeneratedMutation<APITypes.DeleteVehicleAssignmentMutationVariables, APITypes.DeleteVehicleAssignmentMutation>;
21
+ export declare const createLocation: GeneratedMutation<APITypes.CreateLocationMutationVariables, APITypes.CreateLocationMutation>;
22
+ export declare const updateLocation: GeneratedMutation<APITypes.UpdateLocationMutationVariables, APITypes.UpdateLocationMutation>;
23
+ export declare const deleteLocation: GeneratedMutation<APITypes.DeleteLocationMutationVariables, APITypes.DeleteLocationMutation>;
24
+ export declare const createTask: GeneratedMutation<APITypes.CreateTaskMutationVariables, APITypes.CreateTaskMutation>;
25
+ export declare const updateTask: GeneratedMutation<APITypes.UpdateTaskMutationVariables, APITypes.UpdateTaskMutation>;
26
+ export declare const deleteTask: GeneratedMutation<APITypes.DeleteTaskMutationVariables, APITypes.DeleteTaskMutation>;
27
+ export declare const createTaskAssignee: GeneratedMutation<APITypes.CreateTaskAssigneeMutationVariables, APITypes.CreateTaskAssigneeMutation>;
28
+ export declare const updateTaskAssignee: GeneratedMutation<APITypes.UpdateTaskAssigneeMutationVariables, APITypes.UpdateTaskAssigneeMutation>;
29
+ export declare const deleteTaskAssignee: GeneratedMutation<APITypes.DeleteTaskAssigneeMutationVariables, APITypes.DeleteTaskAssigneeMutation>;
30
+ export declare const createScheduledTask: GeneratedMutation<APITypes.CreateScheduledTaskMutationVariables, APITypes.CreateScheduledTaskMutation>;
31
+ export declare const updateScheduledTask: GeneratedMutation<APITypes.UpdateScheduledTaskMutationVariables, APITypes.UpdateScheduledTaskMutation>;
32
+ export declare const deleteScheduledTask: GeneratedMutation<APITypes.DeleteScheduledTaskMutationVariables, APITypes.DeleteScheduledTaskMutation>;
33
+ export declare const createComment: GeneratedMutation<APITypes.CreateCommentMutationVariables, APITypes.CreateCommentMutation>;
34
+ export declare const updateComment: GeneratedMutation<APITypes.UpdateCommentMutationVariables, APITypes.UpdateCommentMutation>;
35
+ export declare const deleteComment: GeneratedMutation<APITypes.DeleteCommentMutationVariables, APITypes.DeleteCommentMutation>;
36
+ export declare const createDeliverableType: GeneratedMutation<APITypes.CreateDeliverableTypeMutationVariables, APITypes.CreateDeliverableTypeMutation>;
37
+ export declare const updateDeliverableType: GeneratedMutation<APITypes.UpdateDeliverableTypeMutationVariables, APITypes.UpdateDeliverableTypeMutation>;
38
+ export declare const deleteDeliverableType: GeneratedMutation<APITypes.DeleteDeliverableTypeMutationVariables, APITypes.DeleteDeliverableTypeMutation>;
39
+ export declare const createDeliverable: GeneratedMutation<APITypes.CreateDeliverableMutationVariables, APITypes.CreateDeliverableMutation>;
40
+ export declare const updateDeliverable: GeneratedMutation<APITypes.UpdateDeliverableMutationVariables, APITypes.UpdateDeliverableMutation>;
41
+ export declare const deleteDeliverable: GeneratedMutation<APITypes.DeleteDeliverableMutationVariables, APITypes.DeleteDeliverableMutation>;
42
+ export declare const createRiderResponsibility: GeneratedMutation<APITypes.CreateRiderResponsibilityMutationVariables, APITypes.CreateRiderResponsibilityMutation>;
43
+ export declare const updateRiderResponsibility: GeneratedMutation<APITypes.UpdateRiderResponsibilityMutationVariables, APITypes.UpdateRiderResponsibilityMutation>;
44
+ export declare const deleteRiderResponsibility: GeneratedMutation<APITypes.DeleteRiderResponsibilityMutationVariables, APITypes.DeleteRiderResponsibilityMutation>;
45
+ export declare const registerUser: GeneratedMutation<APITypes.RegisterUserMutationVariables, APITypes.RegisterUserMutation>;
46
+ export declare const registerTenant: GeneratedMutation<APITypes.RegisterTenantMutationVariables, APITypes.RegisterTenantMutation>;
47
+ export declare const updateUserRoles: GeneratedMutation<APITypes.UpdateUserRolesMutationVariables, APITypes.UpdateUserRolesMutation>;
48
+ export declare const disableUser: GeneratedMutation<APITypes.DisableUserMutationVariables, APITypes.DisableUserMutation>;
49
+ export declare const enableUser: GeneratedMutation<APITypes.EnableUserMutationVariables, APITypes.EnableUserMutation>;
50
+ export declare const updateUserEmail: GeneratedMutation<APITypes.UpdateUserEmailMutationVariables, APITypes.UpdateUserEmailMutation>;
51
+ export declare const resetUserPassword: GeneratedMutation<APITypes.ResetUserPasswordMutationVariables, APITypes.ResetUserPasswordMutation>;
52
+ export declare const adminDeleteRiderResponsibility: GeneratedMutation<APITypes.AdminDeleteRiderResponsibilityMutationVariables, APITypes.AdminDeleteRiderResponsibilityMutation>;
53
+ export {};