@mjtech-ems/schema 1.3.26 → 1.3.28
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/generated/index.d.ts +342 -10
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/mergedSchema.d.ts.map +1 -1
- package/dist/mergedSchema.js +7 -1
- package/dist/mjtech-ems.js +1 -1
- package/dist/mjtech-eqms.d.ts.map +1 -1
- package/dist/mjtech-eqms.js +1 -1
- package/dist/mjtech-tool-dashboard.d.ts +3 -0
- package/dist/mjtech-tool-dashboard.d.ts.map +1 -0
- package/dist/mjtech-tool-dashboard.js +10 -0
- package/package.json +1 -1
|
@@ -242,6 +242,16 @@ export type CostConfigInput = {
|
|
|
242
242
|
};
|
|
243
243
|
export type CreateCompanyResponse = CompanyResponse | GeneralResponse;
|
|
244
244
|
export type CreateUserResponse = GeneralResponse | UserResponse;
|
|
245
|
+
export type Customers = {
|
|
246
|
+
__typename?: 'Customers';
|
|
247
|
+
customername?: Maybe<Scalars['String']['output']>;
|
|
248
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
249
|
+
id: Scalars['ID']['output'];
|
|
250
|
+
};
|
|
251
|
+
export type CustomersInput = {
|
|
252
|
+
customername?: InputMaybe<Scalars['String']['input']>;
|
|
253
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
254
|
+
};
|
|
245
255
|
export type DashboardData = {
|
|
246
256
|
__typename?: 'DashboardData';
|
|
247
257
|
devicesActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
|
|
@@ -505,8 +515,32 @@ export type EditManyDepartmentsInput = {
|
|
|
505
515
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
506
516
|
};
|
|
507
517
|
export type EditManyPartsInput = {
|
|
518
|
+
PMAfterShots?: InputMaybe<Scalars['Int']['input']>;
|
|
519
|
+
allowedMachines?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
520
|
+
cavities?: InputMaybe<Scalars['Int']['input']>;
|
|
521
|
+
customerName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
522
|
+
historyOfPart?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
508
523
|
id: Scalars['ID']['input'];
|
|
509
|
-
|
|
524
|
+
issuesCount?: InputMaybe<Scalars['Int']['input']>;
|
|
525
|
+
lastPartPM?: InputMaybe<Scalars['String']['input']>;
|
|
526
|
+
lifeOfShots?: InputMaybe<Scalars['String']['input']>;
|
|
527
|
+
manufacturingDate?: InputMaybe<Scalars['String']['input']>;
|
|
528
|
+
maxShotsLimit?: InputMaybe<Scalars['String']['input']>;
|
|
529
|
+
meanTimeBetweenFailure?: InputMaybe<Scalars['String']['input']>;
|
|
530
|
+
meanTimeToRepair?: InputMaybe<Scalars['String']['input']>;
|
|
531
|
+
nextPartPM?: InputMaybe<Scalars['String']['input']>;
|
|
532
|
+
openingShots?: InputMaybe<Scalars['Int']['input']>;
|
|
533
|
+
partBarCode?: InputMaybe<Scalars['String']['input']>;
|
|
534
|
+
partCondition?: InputMaybe<Scalars['String']['input']>;
|
|
535
|
+
partNo?: InputMaybe<Scalars['Int']['input']>;
|
|
536
|
+
partStatus?: InputMaybe<Scalars['String']['input']>;
|
|
537
|
+
partStatusChangedTime?: InputMaybe<Scalars['String']['input']>;
|
|
538
|
+
partname?: InputMaybe<Scalars['String']['input']>;
|
|
539
|
+
totalRepairCost?: InputMaybe<Scalars['Int']['input']>;
|
|
540
|
+
totalRepairingHours?: InputMaybe<Scalars['String']['input']>;
|
|
541
|
+
totalShots?: InputMaybe<Scalars['Int']['input']>;
|
|
542
|
+
totalWorkingHours?: InputMaybe<Scalars['String']['input']>;
|
|
543
|
+
workorderCreatedCount?: InputMaybe<Scalars['Int']['input']>;
|
|
510
544
|
};
|
|
511
545
|
export type EndKwHForDevice = {
|
|
512
546
|
__typename?: 'EndKwHForDevice';
|
|
@@ -709,6 +743,15 @@ export type LastMessagesFromMqttInput = {
|
|
|
709
743
|
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
710
744
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
711
745
|
};
|
|
746
|
+
export type ListOfSparesUsed = {
|
|
747
|
+
__typename?: 'ListOfSparesUsed';
|
|
748
|
+
cost?: Maybe<Scalars['String']['output']>;
|
|
749
|
+
spareName?: Maybe<Scalars['String']['output']>;
|
|
750
|
+
};
|
|
751
|
+
export type ListOfSparesUsedInput = {
|
|
752
|
+
cost?: InputMaybe<Scalars['String']['input']>;
|
|
753
|
+
spareName?: InputMaybe<Scalars['String']['input']>;
|
|
754
|
+
};
|
|
712
755
|
export type LiveCurrentForPeriod = {
|
|
713
756
|
__typename?: 'LiveCurrentForPeriod';
|
|
714
757
|
deviceName?: Maybe<Scalars['String']['output']>;
|
|
@@ -786,11 +829,34 @@ export type LoginSuccessResponse = {
|
|
|
786
829
|
export type LoginUserResponse = GeneralResponse | LoginResponse;
|
|
787
830
|
export type Machines = {
|
|
788
831
|
__typename?: 'Machines';
|
|
832
|
+
currentRunningParts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
789
833
|
id: Scalars['ID']['output'];
|
|
790
|
-
|
|
834
|
+
importedDate?: Maybe<Scalars['String']['output']>;
|
|
835
|
+
lastPM?: Maybe<Scalars['String']['output']>;
|
|
836
|
+
machineName?: Maybe<Scalars['String']['output']>;
|
|
837
|
+
machineNo?: Maybe<Scalars['String']['output']>;
|
|
838
|
+
nextPM?: Maybe<Scalars['String']['output']>;
|
|
839
|
+
tonnage?: Maybe<Scalars['String']['output']>;
|
|
791
840
|
};
|
|
792
841
|
export type MachinesInput = {
|
|
793
|
-
|
|
842
|
+
currentRunningParts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
843
|
+
importedDate?: InputMaybe<Scalars['String']['input']>;
|
|
844
|
+
lastPM?: InputMaybe<Scalars['String']['input']>;
|
|
845
|
+
machineName?: InputMaybe<Scalars['String']['input']>;
|
|
846
|
+
machineNo?: InputMaybe<Scalars['String']['input']>;
|
|
847
|
+
nextPM?: InputMaybe<Scalars['String']['input']>;
|
|
848
|
+
tonnage?: InputMaybe<Scalars['String']['input']>;
|
|
849
|
+
};
|
|
850
|
+
export type MachinesResponse = {
|
|
851
|
+
__typename?: 'MachinesResponse';
|
|
852
|
+
currentRunningParts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
853
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
854
|
+
importedDate?: Maybe<Scalars['String']['output']>;
|
|
855
|
+
lastPM?: Maybe<Scalars['String']['output']>;
|
|
856
|
+
machineName?: Maybe<Scalars['String']['output']>;
|
|
857
|
+
machineNo?: Maybe<Scalars['String']['output']>;
|
|
858
|
+
nextPM?: Maybe<Scalars['String']['output']>;
|
|
859
|
+
tonnage?: Maybe<Scalars['String']['output']>;
|
|
794
860
|
};
|
|
795
861
|
export type MonthlyReportInput = {
|
|
796
862
|
deviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -836,10 +902,14 @@ export type Mutation = {
|
|
|
836
902
|
__typename?: 'Mutation';
|
|
837
903
|
addAllNewStorage?: Maybe<GeneralResponse>;
|
|
838
904
|
addAllNewUiCustomNames?: Maybe<GeneralResponse>;
|
|
905
|
+
addNewCustomer?: Maybe<GeneralResponse>;
|
|
839
906
|
addNewDepartment?: Maybe<DepartmentResponse>;
|
|
840
|
-
addNewMachine?: Maybe<
|
|
907
|
+
addNewMachine?: Maybe<MachinesResponse>;
|
|
841
908
|
addNewPart?: Maybe<GeneralResponse>;
|
|
909
|
+
addNewReasonForUnload?: Maybe<GeneralResponse>;
|
|
910
|
+
addNewStatusForWorkOrderTable?: Maybe<GeneralResponse>;
|
|
842
911
|
addNewStorage?: Maybe<GeneralResponse>;
|
|
912
|
+
addNewTool?: Maybe<GeneralResponse>;
|
|
843
913
|
addNewUiCustomName?: Maybe<GeneralResponse>;
|
|
844
914
|
changePassword?: Maybe<GeneralResponse>;
|
|
845
915
|
createAlert?: Maybe<GeneralResponse>;
|
|
@@ -852,21 +922,27 @@ export type Mutation = {
|
|
|
852
922
|
createNguDevice?: Maybe<GeneralResponse>;
|
|
853
923
|
createNguUser?: Maybe<GeneralResponse>;
|
|
854
924
|
createUser?: Maybe<CreateUserResponse>;
|
|
925
|
+
deleteCustomer?: Maybe<GeneralResponse>;
|
|
855
926
|
deleteDepartment?: Maybe<GeneralResponse>;
|
|
856
927
|
deleteDevice?: Maybe<GeneralResponse>;
|
|
857
928
|
deleteEqmsDevice?: Maybe<GeneralResponse>;
|
|
858
|
-
deleteMachine?: Maybe<
|
|
929
|
+
deleteMachine?: Maybe<MachinesResponse>;
|
|
859
930
|
deleteNguDevice?: Maybe<GeneralResponse>;
|
|
860
931
|
deletePart?: Maybe<GeneralResponse>;
|
|
932
|
+
deleteReasonForUnload?: Maybe<GeneralResponse>;
|
|
861
933
|
deleteStorage?: Maybe<GeneralResponse>;
|
|
934
|
+
deleteTool?: Maybe<GeneralResponse>;
|
|
862
935
|
deleteUser?: Maybe<GeneralResponse>;
|
|
863
936
|
deleteUserSession?: Maybe<GeneralResponse>;
|
|
937
|
+
editCustomer?: Maybe<GeneralResponse>;
|
|
864
938
|
editDepartment?: Maybe<GeneralResponse>;
|
|
865
|
-
editMachine?: Maybe<
|
|
939
|
+
editMachine?: Maybe<MachinesResponse>;
|
|
866
940
|
editManyDepartments?: Maybe<GeneralResponse>;
|
|
867
941
|
editManyParts?: Maybe<GeneralResponse>;
|
|
868
942
|
editPart?: Maybe<GeneralResponse>;
|
|
943
|
+
editReasonForUnload?: Maybe<GeneralResponse>;
|
|
869
944
|
editStorage?: Maybe<GeneralResponse>;
|
|
945
|
+
editTool?: Maybe<GeneralResponse>;
|
|
870
946
|
editUiCustomName?: Maybe<GeneralResponse>;
|
|
871
947
|
forgotPassword?: Maybe<GeneralResponse>;
|
|
872
948
|
generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
|
|
@@ -904,6 +980,9 @@ export type MutationAddAllNewStorageArgs = {
|
|
|
904
980
|
export type MutationAddAllNewUiCustomNamesArgs = {
|
|
905
981
|
data?: InputMaybe<Array<InputMaybe<UiCustomNamesInput>>>;
|
|
906
982
|
};
|
|
983
|
+
export type MutationAddNewCustomerArgs = {
|
|
984
|
+
data?: InputMaybe<CustomersInput>;
|
|
985
|
+
};
|
|
907
986
|
export type MutationAddNewDepartmentArgs = {
|
|
908
987
|
data?: InputMaybe<DepartmentsInput>;
|
|
909
988
|
};
|
|
@@ -913,9 +992,18 @@ export type MutationAddNewMachineArgs = {
|
|
|
913
992
|
export type MutationAddNewPartArgs = {
|
|
914
993
|
data?: InputMaybe<PartInput>;
|
|
915
994
|
};
|
|
995
|
+
export type MutationAddNewReasonForUnloadArgs = {
|
|
996
|
+
data?: InputMaybe<ReasonForUnloadInput>;
|
|
997
|
+
};
|
|
998
|
+
export type MutationAddNewStatusForWorkOrderTableArgs = {
|
|
999
|
+
data?: InputMaybe<StatusForWorkOrderTableInput>;
|
|
1000
|
+
};
|
|
916
1001
|
export type MutationAddNewStorageArgs = {
|
|
917
1002
|
data?: InputMaybe<StorageInput>;
|
|
918
1003
|
};
|
|
1004
|
+
export type MutationAddNewToolArgs = {
|
|
1005
|
+
data?: InputMaybe<ToolRoomInput>;
|
|
1006
|
+
};
|
|
919
1007
|
export type MutationAddNewUiCustomNameArgs = {
|
|
920
1008
|
data?: InputMaybe<UiCustomNamesInput>;
|
|
921
1009
|
};
|
|
@@ -952,6 +1040,9 @@ export type MutationCreateNguUserArgs = {
|
|
|
952
1040
|
export type MutationCreateUserArgs = {
|
|
953
1041
|
data?: InputMaybe<UserInput>;
|
|
954
1042
|
};
|
|
1043
|
+
export type MutationDeleteCustomerArgs = {
|
|
1044
|
+
id: Scalars['ID']['input'];
|
|
1045
|
+
};
|
|
955
1046
|
export type MutationDeleteDepartmentArgs = {
|
|
956
1047
|
id: Scalars['ID']['input'];
|
|
957
1048
|
};
|
|
@@ -970,15 +1061,25 @@ export type MutationDeleteNguDeviceArgs = {
|
|
|
970
1061
|
export type MutationDeletePartArgs = {
|
|
971
1062
|
id: Scalars['ID']['input'];
|
|
972
1063
|
};
|
|
1064
|
+
export type MutationDeleteReasonForUnloadArgs = {
|
|
1065
|
+
id: Scalars['ID']['input'];
|
|
1066
|
+
};
|
|
973
1067
|
export type MutationDeleteStorageArgs = {
|
|
974
1068
|
id: Scalars['ID']['input'];
|
|
975
1069
|
};
|
|
1070
|
+
export type MutationDeleteToolArgs = {
|
|
1071
|
+
id: Scalars['ID']['input'];
|
|
1072
|
+
};
|
|
976
1073
|
export type MutationDeleteUserArgs = {
|
|
977
1074
|
id: Scalars['ID']['input'];
|
|
978
1075
|
};
|
|
979
1076
|
export type MutationDeleteUserSessionArgs = {
|
|
980
1077
|
data?: InputMaybe<SessionInput>;
|
|
981
1078
|
};
|
|
1079
|
+
export type MutationEditCustomerArgs = {
|
|
1080
|
+
data?: InputMaybe<CustomersInput>;
|
|
1081
|
+
id: Scalars['ID']['input'];
|
|
1082
|
+
};
|
|
982
1083
|
export type MutationEditDepartmentArgs = {
|
|
983
1084
|
data?: InputMaybe<DepartmentsInput>;
|
|
984
1085
|
id: Scalars['ID']['input'];
|
|
@@ -997,10 +1098,18 @@ export type MutationEditPartArgs = {
|
|
|
997
1098
|
data?: InputMaybe<PartInput>;
|
|
998
1099
|
id: Scalars['ID']['input'];
|
|
999
1100
|
};
|
|
1101
|
+
export type MutationEditReasonForUnloadArgs = {
|
|
1102
|
+
data?: InputMaybe<ReasonForUnloadInput>;
|
|
1103
|
+
id: Scalars['ID']['input'];
|
|
1104
|
+
};
|
|
1000
1105
|
export type MutationEditStorageArgs = {
|
|
1001
1106
|
data?: InputMaybe<StorageInput>;
|
|
1002
1107
|
id: Scalars['ID']['input'];
|
|
1003
1108
|
};
|
|
1109
|
+
export type MutationEditToolArgs = {
|
|
1110
|
+
data?: InputMaybe<ToolRoomInput>;
|
|
1111
|
+
id: Scalars['ID']['input'];
|
|
1112
|
+
};
|
|
1004
1113
|
export type MutationEditUiCustomNameArgs = {
|
|
1005
1114
|
data?: InputMaybe<UiCustomNamesInput>;
|
|
1006
1115
|
id: Scalars['ID']['input'];
|
|
@@ -1301,11 +1410,70 @@ export type OffTimeInput = {
|
|
|
1301
1410
|
};
|
|
1302
1411
|
export type Part = {
|
|
1303
1412
|
__typename?: 'Part';
|
|
1413
|
+
PMAfterShots?: Maybe<Scalars['Int']['output']>;
|
|
1414
|
+
allowedMachines?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1415
|
+
cavities?: Maybe<Scalars['Int']['output']>;
|
|
1416
|
+
customerName?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1417
|
+
historyOfPart?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1304
1418
|
id: Scalars['ID']['output'];
|
|
1305
|
-
|
|
1419
|
+
issuesCount?: Maybe<Scalars['Int']['output']>;
|
|
1420
|
+
lastPartPM?: Maybe<Scalars['String']['output']>;
|
|
1421
|
+
lifeOfShots?: Maybe<Scalars['String']['output']>;
|
|
1422
|
+
manufacturingDate?: Maybe<Scalars['String']['output']>;
|
|
1423
|
+
maxShotsLimit?: Maybe<Scalars['String']['output']>;
|
|
1424
|
+
meanTimeBetweenFailure?: Maybe<Scalars['String']['output']>;
|
|
1425
|
+
meanTimeToRepair?: Maybe<Scalars['String']['output']>;
|
|
1426
|
+
nextPartPM?: Maybe<Scalars['String']['output']>;
|
|
1427
|
+
openingShots?: Maybe<Scalars['Int']['output']>;
|
|
1428
|
+
partBarCode?: Maybe<Scalars['String']['output']>;
|
|
1429
|
+
partCondition?: Maybe<Scalars['String']['output']>;
|
|
1430
|
+
partNo?: Maybe<Scalars['Int']['output']>;
|
|
1431
|
+
partStatus?: Maybe<Scalars['String']['output']>;
|
|
1432
|
+
partStatusChangedTime?: Maybe<Scalars['String']['output']>;
|
|
1433
|
+
partname?: Maybe<Scalars['String']['output']>;
|
|
1434
|
+
totalRepairCost?: Maybe<Scalars['Int']['output']>;
|
|
1435
|
+
totalRepairingHours?: Maybe<Scalars['String']['output']>;
|
|
1436
|
+
totalShots?: Maybe<Scalars['Int']['output']>;
|
|
1437
|
+
totalWorkingHours?: Maybe<Scalars['String']['output']>;
|
|
1438
|
+
workorderCreatedCount?: Maybe<Scalars['Int']['output']>;
|
|
1306
1439
|
};
|
|
1307
1440
|
export type PartInput = {
|
|
1308
|
-
|
|
1441
|
+
PMAfterShots?: InputMaybe<Scalars['Int']['input']>;
|
|
1442
|
+
allowedMachines?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1443
|
+
cavities?: InputMaybe<Scalars['Int']['input']>;
|
|
1444
|
+
customerName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1445
|
+
historyOfPart?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1446
|
+
issuesCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1447
|
+
lastPartPM?: InputMaybe<Scalars['String']['input']>;
|
|
1448
|
+
lifeOfShots?: InputMaybe<Scalars['String']['input']>;
|
|
1449
|
+
manufacturingDate?: InputMaybe<Scalars['String']['input']>;
|
|
1450
|
+
maxShotsLimit?: InputMaybe<Scalars['String']['input']>;
|
|
1451
|
+
meanTimeBetweenFailure?: InputMaybe<Scalars['String']['input']>;
|
|
1452
|
+
meanTimeToRepair?: InputMaybe<Scalars['String']['input']>;
|
|
1453
|
+
nextPartPM?: InputMaybe<Scalars['String']['input']>;
|
|
1454
|
+
openingShots?: InputMaybe<Scalars['Int']['input']>;
|
|
1455
|
+
partBarCode?: InputMaybe<Scalars['String']['input']>;
|
|
1456
|
+
partCondition?: InputMaybe<Scalars['String']['input']>;
|
|
1457
|
+
partNo?: InputMaybe<Scalars['Int']['input']>;
|
|
1458
|
+
partStatus?: InputMaybe<Scalars['String']['input']>;
|
|
1459
|
+
partStatusChangedTime?: InputMaybe<Scalars['String']['input']>;
|
|
1460
|
+
partname?: InputMaybe<Scalars['String']['input']>;
|
|
1461
|
+
totalRepairCost?: InputMaybe<Scalars['Int']['input']>;
|
|
1462
|
+
totalRepairingHours?: InputMaybe<Scalars['String']['input']>;
|
|
1463
|
+
totalShots?: InputMaybe<Scalars['Int']['input']>;
|
|
1464
|
+
totalWorkingHours?: InputMaybe<Scalars['String']['input']>;
|
|
1465
|
+
workorderCreatedCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1466
|
+
};
|
|
1467
|
+
export type PartStoredLocation = {
|
|
1468
|
+
__typename?: 'PartStoredLocation';
|
|
1469
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
1470
|
+
partName?: Maybe<Scalars['String']['output']>;
|
|
1471
|
+
storageName?: Maybe<Scalars['String']['output']>;
|
|
1472
|
+
};
|
|
1473
|
+
export type PartStoredLocationInput = {
|
|
1474
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
1475
|
+
partName?: InputMaybe<Scalars['String']['input']>;
|
|
1476
|
+
storageName?: InputMaybe<Scalars['String']['input']>;
|
|
1309
1477
|
};
|
|
1310
1478
|
export type PasswordInput = {
|
|
1311
1479
|
confirmPassword?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1354,6 +1522,7 @@ export type Query = {
|
|
|
1354
1522
|
fetchBasicSettings?: Maybe<BasicSettings>;
|
|
1355
1523
|
fetchCompanyById?: Maybe<Company>;
|
|
1356
1524
|
fetchCompanyList?: Maybe<Array<Maybe<Company>>>;
|
|
1525
|
+
fetchCustomers?: Maybe<Array<Maybe<Customers>>>;
|
|
1357
1526
|
fetchDashboardData?: Maybe<DashboardData>;
|
|
1358
1527
|
fetchDepartments?: Maybe<Array<Maybe<Departments>>>;
|
|
1359
1528
|
fetchDeviceActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
|
|
@@ -1411,11 +1580,14 @@ export type Query = {
|
|
|
1411
1580
|
fetchPartTable?: Maybe<Array<Maybe<Part>>>;
|
|
1412
1581
|
fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
|
|
1413
1582
|
fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
|
|
1583
|
+
fetchReasonForUnload?: Maybe<Array<Maybe<ReasonForUnload>>>;
|
|
1414
1584
|
fetchSettingsPageData?: Maybe<SettingsPageData>;
|
|
1585
|
+
fetchStatusForWorkOrderTable?: Maybe<Array<Maybe<StatusForWorkOrderTable>>>;
|
|
1415
1586
|
fetchStorage?: Maybe<Array<Maybe<Storage>>>;
|
|
1416
1587
|
fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1417
1588
|
fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
|
|
1418
1589
|
fetchTimelineChartPageData?: Maybe<TimelineChartPageData>;
|
|
1590
|
+
fetchToolRoom?: Maybe<Array<Maybe<ToolRoom>>>;
|
|
1419
1591
|
fetchUiCustomNames?: Maybe<Array<Maybe<UiCustomNames>>>;
|
|
1420
1592
|
fetchUserById?: Maybe<User>;
|
|
1421
1593
|
fetchUserList?: Maybe<Array<Maybe<User>>>;
|
|
@@ -1595,6 +1767,14 @@ export type QueryFetchUserListArgs = {
|
|
|
1595
1767
|
export type QueryFetchUserSessionArgs = {
|
|
1596
1768
|
queryData?: InputMaybe<UserSessionInput>;
|
|
1597
1769
|
};
|
|
1770
|
+
export type ReasonForUnload = {
|
|
1771
|
+
__typename?: 'ReasonForUnload';
|
|
1772
|
+
id: Scalars['ID']['output'];
|
|
1773
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
1774
|
+
};
|
|
1775
|
+
export type ReasonForUnloadInput = {
|
|
1776
|
+
reason?: InputMaybe<Scalars['String']['input']>;
|
|
1777
|
+
};
|
|
1598
1778
|
export type RegisterConfig = {
|
|
1599
1779
|
__typename?: 'RegisterConfig';
|
|
1600
1780
|
dbName?: Maybe<Scalars['String']['output']>;
|
|
@@ -1652,16 +1832,31 @@ export type SettingsPageData = {
|
|
|
1652
1832
|
superadmin?: Maybe<User>;
|
|
1653
1833
|
users?: Maybe<Array<Maybe<User>>>;
|
|
1654
1834
|
};
|
|
1835
|
+
export type StatusForWorkOrderTable = {
|
|
1836
|
+
__typename?: 'StatusForWorkOrderTable';
|
|
1837
|
+
id?: Maybe<Scalars['Int']['output']>;
|
|
1838
|
+
statusLabel?: Maybe<Scalars['String']['output']>;
|
|
1839
|
+
};
|
|
1840
|
+
export type StatusForWorkOrderTableInput = {
|
|
1841
|
+
id?: InputMaybe<Scalars['Int']['input']>;
|
|
1842
|
+
statusLabel?: InputMaybe<Scalars['String']['input']>;
|
|
1843
|
+
};
|
|
1655
1844
|
export type StatusInput = {
|
|
1656
1845
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1657
1846
|
};
|
|
1658
1847
|
export type Storage = {
|
|
1659
1848
|
__typename?: 'Storage';
|
|
1849
|
+
currentPartId?: Maybe<Scalars['String']['output']>;
|
|
1660
1850
|
id: Scalars['ID']['output'];
|
|
1661
|
-
|
|
1851
|
+
isAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
1852
|
+
storageLocationNo?: Maybe<Scalars['Int']['output']>;
|
|
1853
|
+
storageName?: Maybe<Scalars['String']['output']>;
|
|
1662
1854
|
};
|
|
1663
1855
|
export type StorageInput = {
|
|
1664
|
-
|
|
1856
|
+
currentPartId?: InputMaybe<Scalars['String']['input']>;
|
|
1857
|
+
isAvailable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1858
|
+
storageLocationNo?: InputMaybe<Scalars['Int']['input']>;
|
|
1859
|
+
storageName?: InputMaybe<Scalars['String']['input']>;
|
|
1665
1860
|
};
|
|
1666
1861
|
export type TempDataAlert = {
|
|
1667
1862
|
__typename?: 'TempDataAlert';
|
|
@@ -1691,6 +1886,15 @@ export type TempDataTable = {
|
|
|
1691
1886
|
startKWH?: Maybe<Scalars['Float']['output']>;
|
|
1692
1887
|
status?: Maybe<Scalars['String']['output']>;
|
|
1693
1888
|
};
|
|
1889
|
+
export type TimeRecord = {
|
|
1890
|
+
__typename?: 'TimeRecord';
|
|
1891
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
1892
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
1893
|
+
};
|
|
1894
|
+
export type TimeRecordInput = {
|
|
1895
|
+
end?: InputMaybe<Scalars['String']['input']>;
|
|
1896
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
1897
|
+
};
|
|
1694
1898
|
export type TimeValueInput = {
|
|
1695
1899
|
status?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1696
1900
|
time?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1705,6 +1909,120 @@ export type TimelineChartPageDataFetchInput = {
|
|
|
1705
1909
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
1706
1910
|
devicesHourlyPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
1707
1911
|
};
|
|
1912
|
+
export type ToolRoom = {
|
|
1913
|
+
__typename?: 'ToolRoom';
|
|
1914
|
+
aborted?: Maybe<Scalars['Boolean']['output']>;
|
|
1915
|
+
acceptedQty?: Maybe<Scalars['Int']['output']>;
|
|
1916
|
+
actionTaken?: Maybe<Scalars['String']['output']>;
|
|
1917
|
+
avgMeanTimeBetweenFailure?: Maybe<Scalars['String']['output']>;
|
|
1918
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
1919
|
+
deliverToWhichMachine?: Maybe<Scalars['String']['output']>;
|
|
1920
|
+
descriptionofworkrequest?: Maybe<Scalars['String']['output']>;
|
|
1921
|
+
estimatedDeliveryDate?: Maybe<Scalars['Date']['output']>;
|
|
1922
|
+
feasibleDateToWorkCompletion?: Maybe<Scalars['Date']['output']>;
|
|
1923
|
+
id: Scalars['ID']['output'];
|
|
1924
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
1925
|
+
listOfSparesUsed?: Maybe<Array<Maybe<ListOfSparesUsed>>>;
|
|
1926
|
+
moldLoadedDate?: Maybe<Scalars['String']['output']>;
|
|
1927
|
+
moldUnloadedBy?: Maybe<Scalars['String']['output']>;
|
|
1928
|
+
moldUnloadedDate?: Maybe<Scalars['String']['output']>;
|
|
1929
|
+
partStoredLocation?: Maybe<PartStoredLocation>;
|
|
1930
|
+
partname?: Maybe<Scalars['String']['output']>;
|
|
1931
|
+
pm?: Maybe<Scalars['Boolean']['output']>;
|
|
1932
|
+
postQualityApprovalComments?: Maybe<Scalars['String']['output']>;
|
|
1933
|
+
postQualityApprovedBy?: Maybe<Scalars['String']['output']>;
|
|
1934
|
+
preQualityApprovalComments?: Maybe<Scalars['String']['output']>;
|
|
1935
|
+
preQualityApprovedBy?: Maybe<Scalars['String']['output']>;
|
|
1936
|
+
problemInformedBy?: Maybe<Scalars['String']['output']>;
|
|
1937
|
+
productionApprovedBy?: Maybe<Scalars['String']['output']>;
|
|
1938
|
+
productionapprovalcomments?: Maybe<Scalars['String']['output']>;
|
|
1939
|
+
readyToDispatch?: Maybe<Scalars['String']['output']>;
|
|
1940
|
+
reasonforunload?: Maybe<Scalars['String']['output']>;
|
|
1941
|
+
rejectedQty?: Maybe<Scalars['Int']['output']>;
|
|
1942
|
+
remarks?: Maybe<Scalars['String']['output']>;
|
|
1943
|
+
repairingCost?: Maybe<Scalars['String']['output']>;
|
|
1944
|
+
shift?: Maybe<Scalars['String']['output']>;
|
|
1945
|
+
shotcount?: Maybe<Scalars['Int']['output']>;
|
|
1946
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1947
|
+
toolCompletionComments?: Maybe<Scalars['String']['output']>;
|
|
1948
|
+
toolDeliveredDate?: Maybe<Scalars['String']['output']>;
|
|
1949
|
+
toolDeliveredTo?: Maybe<Scalars['String']['output']>;
|
|
1950
|
+
toolDeliveryComments?: Maybe<Scalars['String']['output']>;
|
|
1951
|
+
toolDispatchDate?: Maybe<Scalars['Date']['output']>;
|
|
1952
|
+
toolRecievedBy?: Maybe<Scalars['String']['output']>;
|
|
1953
|
+
toolRecievedReportedBy?: Maybe<Scalars['String']['output']>;
|
|
1954
|
+
toolRecievedStatus?: Maybe<Scalars['String']['output']>;
|
|
1955
|
+
toolRecievingComments?: Maybe<Scalars['String']['output']>;
|
|
1956
|
+
toolRequiredDate?: Maybe<Scalars['Date']['output']>;
|
|
1957
|
+
toolStatus?: Maybe<Scalars['String']['output']>;
|
|
1958
|
+
toolWorkDifficulty?: Maybe<Scalars['String']['output']>;
|
|
1959
|
+
totalTimeTakenToCompleteRepairWork?: Maybe<Array<Maybe<TimeRecord>>>;
|
|
1960
|
+
totalWorkingHoursOfaToolOrPart?: Maybe<Scalars['String']['output']>;
|
|
1961
|
+
unloadingCheckPoints?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1962
|
+
workCompletionDate?: Maybe<Scalars['String']['output']>;
|
|
1963
|
+
workCompletionReportedBy?: Maybe<Scalars['String']['output']>;
|
|
1964
|
+
workOrderCreatedBy?: Maybe<Scalars['String']['output']>;
|
|
1965
|
+
workOrderRecievedBy?: Maybe<Scalars['String']['output']>;
|
|
1966
|
+
workRequestedBy?: Maybe<Scalars['String']['output']>;
|
|
1967
|
+
workorderid?: Maybe<Scalars['String']['output']>;
|
|
1968
|
+
workorderstage?: Maybe<Scalars['String']['output']>;
|
|
1969
|
+
};
|
|
1970
|
+
export type ToolRoomInput = {
|
|
1971
|
+
aborted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1972
|
+
acceptedQty?: InputMaybe<Scalars['Int']['input']>;
|
|
1973
|
+
actionTaken?: InputMaybe<Scalars['String']['input']>;
|
|
1974
|
+
avgMeanTimeBetweenFailure?: InputMaybe<Scalars['String']['input']>;
|
|
1975
|
+
createdDate?: InputMaybe<Scalars['String']['input']>;
|
|
1976
|
+
deliverToWhichMachine?: InputMaybe<Scalars['String']['input']>;
|
|
1977
|
+
descriptionofworkrequest?: InputMaybe<Scalars['String']['input']>;
|
|
1978
|
+
estimatedDeliveryDate?: InputMaybe<Scalars['Date']['input']>;
|
|
1979
|
+
feasibleDateToWorkCompletion?: InputMaybe<Scalars['Date']['input']>;
|
|
1980
|
+
lastUpdated?: InputMaybe<Scalars['String']['input']>;
|
|
1981
|
+
listOfSparesUsed?: InputMaybe<Array<InputMaybe<ListOfSparesUsedInput>>>;
|
|
1982
|
+
moldLoadedDate?: InputMaybe<Scalars['String']['input']>;
|
|
1983
|
+
moldUnloadedBy?: InputMaybe<Scalars['String']['input']>;
|
|
1984
|
+
moldUnloadedDate?: InputMaybe<Scalars['String']['input']>;
|
|
1985
|
+
partStoredLocation?: InputMaybe<PartStoredLocationInput>;
|
|
1986
|
+
partname?: InputMaybe<Scalars['String']['input']>;
|
|
1987
|
+
pm?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1988
|
+
postQualityApprovalComments?: InputMaybe<Scalars['String']['input']>;
|
|
1989
|
+
postQualityApprovedBy?: InputMaybe<Scalars['String']['input']>;
|
|
1990
|
+
preQualityApprovalComments?: InputMaybe<Scalars['String']['input']>;
|
|
1991
|
+
preQualityApprovedBy?: InputMaybe<Scalars['String']['input']>;
|
|
1992
|
+
problemInformedBy?: InputMaybe<Scalars['String']['input']>;
|
|
1993
|
+
productionApprovedBy?: InputMaybe<Scalars['String']['input']>;
|
|
1994
|
+
productionapprovalcomments?: InputMaybe<Scalars['String']['input']>;
|
|
1995
|
+
readyToDispatch?: InputMaybe<Scalars['String']['input']>;
|
|
1996
|
+
reasonforunload?: InputMaybe<Scalars['String']['input']>;
|
|
1997
|
+
rejectedQty?: InputMaybe<Scalars['Int']['input']>;
|
|
1998
|
+
remarks?: InputMaybe<Scalars['String']['input']>;
|
|
1999
|
+
repairingCost?: InputMaybe<Scalars['String']['input']>;
|
|
2000
|
+
shift?: InputMaybe<Scalars['String']['input']>;
|
|
2001
|
+
shotcount?: InputMaybe<Scalars['Int']['input']>;
|
|
2002
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
2003
|
+
toolCompletionComments?: InputMaybe<Scalars['String']['input']>;
|
|
2004
|
+
toolDeliveredDate?: InputMaybe<Scalars['String']['input']>;
|
|
2005
|
+
toolDeliveredTo?: InputMaybe<Scalars['String']['input']>;
|
|
2006
|
+
toolDeliveryComments?: InputMaybe<Scalars['String']['input']>;
|
|
2007
|
+
toolDispatchDate?: InputMaybe<Scalars['Date']['input']>;
|
|
2008
|
+
toolRecievedBy?: InputMaybe<Scalars['String']['input']>;
|
|
2009
|
+
toolRecievedReportedBy?: InputMaybe<Scalars['String']['input']>;
|
|
2010
|
+
toolRecievedStatus?: InputMaybe<Scalars['String']['input']>;
|
|
2011
|
+
toolRecievingComments?: InputMaybe<Scalars['String']['input']>;
|
|
2012
|
+
toolRequiredDate?: InputMaybe<Scalars['Date']['input']>;
|
|
2013
|
+
toolStatus?: InputMaybe<Scalars['String']['input']>;
|
|
2014
|
+
toolWorkDifficulty?: InputMaybe<Scalars['String']['input']>;
|
|
2015
|
+
totalTimeTakenToCompleteRepairWork?: InputMaybe<Array<InputMaybe<TimeRecordInput>>>;
|
|
2016
|
+
totalWorkingHoursOfaToolOrPart?: InputMaybe<Scalars['String']['input']>;
|
|
2017
|
+
unloadingCheckPoints?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
2018
|
+
workCompletionDate?: InputMaybe<Scalars['String']['input']>;
|
|
2019
|
+
workCompletionReportedBy?: InputMaybe<Scalars['String']['input']>;
|
|
2020
|
+
workOrderCreatedBy?: InputMaybe<Scalars['String']['input']>;
|
|
2021
|
+
workOrderRecievedBy?: InputMaybe<Scalars['String']['input']>;
|
|
2022
|
+
workRequestedBy?: InputMaybe<Scalars['String']['input']>;
|
|
2023
|
+
workorderid?: InputMaybe<Scalars['String']['input']>;
|
|
2024
|
+
workorderstage?: InputMaybe<Scalars['String']['input']>;
|
|
2025
|
+
};
|
|
1708
2026
|
export type UiCustomNames = {
|
|
1709
2027
|
__typename?: 'UiCustomNames';
|
|
1710
2028
|
customName?: Maybe<Scalars['String']['output']>;
|
|
@@ -1732,6 +2050,20 @@ export type UpdateManyUserInput = {
|
|
|
1732
2050
|
data?: InputMaybe<UserInput>;
|
|
1733
2051
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1734
2052
|
};
|
|
2053
|
+
export type UpdateManyUsersUserInfoInput = {
|
|
2054
|
+
access?: InputMaybe<Scalars['String']['input']>;
|
|
2055
|
+
department?: InputMaybe<Scalars['String']['input']>;
|
|
2056
|
+
dob?: InputMaybe<Scalars['Date']['input']>;
|
|
2057
|
+
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
2058
|
+
firstName?: InputMaybe<Scalars['String']['input']>;
|
|
2059
|
+
lastName?: InputMaybe<Scalars['String']['input']>;
|
|
2060
|
+
password?: InputMaybe<Scalars['String']['input']>;
|
|
2061
|
+
phone?: InputMaybe<Scalars['String']['input']>;
|
|
2062
|
+
profileImage?: InputMaybe<Scalars['String']['input']>;
|
|
2063
|
+
signatureImage?: InputMaybe<Scalars['String']['input']>;
|
|
2064
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
2065
|
+
userType?: InputMaybe<Scalars['String']['input']>;
|
|
2066
|
+
};
|
|
1735
2067
|
export type User = {
|
|
1736
2068
|
__typename?: 'User';
|
|
1737
2069
|
id: Scalars['ID']['output'];
|