@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 +92 -0
- package/dist/graphql/mutations.d.ts +53 -47
- package/dist/graphql/mutations.js +2907 -2959
- package/dist/graphql/queries.d.ts +53 -47
- package/dist/graphql/queries.js +1684 -1735
- package/dist/graphql/subscriptions.d.ts +45 -39
- package/dist/graphql/subscriptions.js +2357 -2396
- package/dist/index.d.ts +5 -0
- package/dist/index.js +41 -0
- package/package.json +1 -1
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
17
|
-
export declare const
|
|
18
|
-
export declare const
|
|
19
|
-
export declare const
|
|
20
|
-
export declare const
|
|
21
|
-
export declare const
|
|
22
|
-
export declare const
|
|
23
|
-
export declare const
|
|
24
|
-
export declare const
|
|
25
|
-
export declare const
|
|
26
|
-
export declare const
|
|
27
|
-
export declare const
|
|
28
|
-
export declare const
|
|
29
|
-
export declare const
|
|
30
|
-
export declare const
|
|
31
|
-
export declare const
|
|
32
|
-
export declare const
|
|
33
|
-
export declare const
|
|
34
|
-
export declare const
|
|
35
|
-
export declare const
|
|
36
|
-
export declare const
|
|
37
|
-
export declare const
|
|
38
|
-
export declare const
|
|
39
|
-
export declare const
|
|
40
|
-
export declare const
|
|
41
|
-
export declare const
|
|
42
|
-
export declare const
|
|
43
|
-
export declare const
|
|
44
|
-
export declare const
|
|
45
|
-
export declare const
|
|
46
|
-
export declare const
|
|
47
|
-
export declare const
|
|
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 {};
|