@mjtech-ems/schema 1.3.27 → 1.3.29

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.
@@ -93,6 +93,8 @@ export type ActiveAppsInput = {
93
93
  licensed?: InputMaybe<Scalars['Int']['input']>;
94
94
  start?: InputMaybe<Scalars['Date']['input']>;
95
95
  };
96
+ export type AddInventoryCustomerResponse = GeneralResponse | InventoryCustomerResponse;
97
+ export type AddInventorySupplierResponse = GeneralResponse | InventorySupplierResponse;
96
98
  export type AlertEmail = {
97
99
  __typename?: 'AlertEmail';
98
100
  day?: Maybe<Scalars['String']['output']>;
@@ -242,16 +244,6 @@ export type CostConfigInput = {
242
244
  };
243
245
  export type CreateCompanyResponse = CompanyResponse | GeneralResponse;
244
246
  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
- };
255
247
  export type DashboardData = {
256
248
  __typename?: 'DashboardData';
257
249
  devicesActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
@@ -514,34 +506,6 @@ export type EditManyDepartmentsInput = {
514
506
  data?: InputMaybe<DepartmentsInput>;
515
507
  id?: InputMaybe<Scalars['ID']['input']>;
516
508
  };
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']>>>;
523
- id: Scalars['ID']['input'];
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']>;
544
- };
545
509
  export type EndKwHForDevice = {
546
510
  __typename?: 'EndKwHForDevice';
547
511
  EndKwH?: Maybe<Array<Maybe<Scalars['Float']['output']>>>;
@@ -735,6 +699,86 @@ export type Image = {
735
699
  alt?: Maybe<Scalars['String']['output']>;
736
700
  url?: Maybe<Scalars['URL']['output']>;
737
701
  };
702
+ export type InventoryBasicTableInput = {
703
+ columnIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
704
+ companyId?: InputMaybe<Scalars['ID']['input']>;
705
+ isProduct?: InputMaybe<Scalars['Boolean']['input']>;
706
+ isReturnable?: InputMaybe<Scalars['Boolean']['input']>;
707
+ isScrap?: InputMaybe<Scalars['Boolean']['input']>;
708
+ isStock?: InputMaybe<Scalars['Boolean']['input']>;
709
+ isVisible?: InputMaybe<Scalars['Boolean']['input']>;
710
+ tableAlias?: InputMaybe<Scalars['String']['input']>;
711
+ tableName?: InputMaybe<Scalars['String']['input']>;
712
+ };
713
+ export type InventoryBasicTables = {
714
+ __typename?: 'InventoryBasicTables';
715
+ columns?: Maybe<Array<Maybe<InventoryColumns>>>;
716
+ companyId?: Maybe<Scalars['ID']['output']>;
717
+ id: Scalars['ID']['output'];
718
+ isProduct?: Maybe<Scalars['Boolean']['output']>;
719
+ isReturnable?: Maybe<Scalars['Boolean']['output']>;
720
+ isScrap?: Maybe<Scalars['Boolean']['output']>;
721
+ isStock?: Maybe<Scalars['Boolean']['output']>;
722
+ isVisible?: Maybe<Scalars['Boolean']['output']>;
723
+ tableAlias?: Maybe<Scalars['String']['output']>;
724
+ tableName?: Maybe<Scalars['String']['output']>;
725
+ };
726
+ export type InventoryColumnInput = {
727
+ customName?: InputMaybe<Scalars['String']['input']>;
728
+ dbName?: InputMaybe<Scalars['String']['input']>;
729
+ type?: InputMaybe<Scalars['String']['input']>;
730
+ };
731
+ export type InventoryColumns = {
732
+ __typename?: 'InventoryColumns';
733
+ customName?: Maybe<Scalars['String']['output']>;
734
+ dbName?: Maybe<Scalars['String']['output']>;
735
+ id: Scalars['ID']['output'];
736
+ type?: Maybe<Scalars['String']['output']>;
737
+ };
738
+ export type InventoryCustomerInput = {
739
+ email?: InputMaybe<Scalars['EmailAddress']['input']>;
740
+ gstNumber?: InputMaybe<Scalars['String']['input']>;
741
+ name?: InputMaybe<Scalars['String']['input']>;
742
+ phone?: InputMaybe<Scalars['String']['input']>;
743
+ };
744
+ export type InventoryCustomerResponse = {
745
+ __typename?: 'InventoryCustomerResponse';
746
+ customerId: Scalars['ID']['output'];
747
+ message?: Maybe<Scalars['String']['output']>;
748
+ status?: Maybe<Scalars['String']['output']>;
749
+ };
750
+ export type InventoryCustomers = {
751
+ __typename?: 'InventoryCustomers';
752
+ email?: Maybe<Scalars['EmailAddress']['output']>;
753
+ gstNumber?: Maybe<Scalars['String']['output']>;
754
+ id: Scalars['ID']['output'];
755
+ name?: Maybe<Scalars['String']['output']>;
756
+ phone?: Maybe<Scalars['String']['output']>;
757
+ };
758
+ export type InventorySupplierInput = {
759
+ email?: InputMaybe<Scalars['EmailAddress']['input']>;
760
+ gstNumber?: InputMaybe<Scalars['String']['input']>;
761
+ name?: InputMaybe<Scalars['String']['input']>;
762
+ phone?: InputMaybe<Scalars['String']['input']>;
763
+ };
764
+ export type InventorySupplierResponse = {
765
+ __typename?: 'InventorySupplierResponse';
766
+ message?: Maybe<Scalars['String']['output']>;
767
+ status?: Maybe<Scalars['String']['output']>;
768
+ supplierId: Scalars['ID']['output'];
769
+ };
770
+ export type InventorySuppliers = {
771
+ __typename?: 'InventorySuppliers';
772
+ email?: Maybe<Scalars['EmailAddress']['output']>;
773
+ gstNumber?: Maybe<Scalars['String']['output']>;
774
+ id: Scalars['ID']['output'];
775
+ name?: Maybe<Scalars['String']['output']>;
776
+ phone?: Maybe<Scalars['String']['output']>;
777
+ };
778
+ export type InventoryTable = {
779
+ __typename?: 'InventoryTable';
780
+ value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
781
+ };
738
782
  export type LastMessagesFromMqtt = {
739
783
  __typename?: 'LastMessagesFromMqtt';
740
784
  value?: Maybe<Scalars['JSON']['output']>;
@@ -743,15 +787,6 @@ export type LastMessagesFromMqttInput = {
743
787
  deviceIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
744
788
  filter?: InputMaybe<Scalars['String']['input']>;
745
789
  };
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
- };
755
790
  export type LiveCurrentForPeriod = {
756
791
  __typename?: 'LiveCurrentForPeriod';
757
792
  deviceName?: Maybe<Scalars['String']['output']>;
@@ -827,37 +862,6 @@ export type LoginSuccessResponse = {
827
862
  userType?: Maybe<Scalars['String']['output']>;
828
863
  };
829
864
  export type LoginUserResponse = GeneralResponse | LoginResponse;
830
- export type Machines = {
831
- __typename?: 'Machines';
832
- currentRunningParts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
833
- id: Scalars['ID']['output'];
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']>;
840
- };
841
- export type MachinesInput = {
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']>;
860
- };
861
865
  export type MonthlyReportInput = {
862
866
  deviceId?: InputMaybe<Scalars['ID']['input']>;
863
867
  deviceName?: InputMaybe<Scalars['String']['input']>;
@@ -900,17 +904,14 @@ export type MqttConnectionConfig = {
900
904
  };
901
905
  export type Mutation = {
902
906
  __typename?: 'Mutation';
903
- addAllNewStorage?: Maybe<GeneralResponse>;
904
- addAllNewUiCustomNames?: Maybe<GeneralResponse>;
905
- addNewCustomer?: Maybe<GeneralResponse>;
907
+ addInventoryBasicTable?: Maybe<GeneralResponse>;
908
+ addInventoryColumn?: Maybe<GeneralResponse>;
909
+ addInventoryCustomer?: Maybe<AddInventoryCustomerResponse>;
910
+ addInventorySupplier?: Maybe<AddInventorySupplierResponse>;
911
+ addInventoryTableFor?: Maybe<GeneralResponse>;
912
+ addItemInInward?: Maybe<GeneralResponse>;
913
+ addItemInOutward?: Maybe<GeneralResponse>;
906
914
  addNewDepartment?: Maybe<DepartmentResponse>;
907
- addNewMachine?: Maybe<MachinesResponse>;
908
- addNewPart?: Maybe<GeneralResponse>;
909
- addNewReasonForUnload?: Maybe<GeneralResponse>;
910
- addNewStatusForWorkOrderTable?: Maybe<GeneralResponse>;
911
- addNewStorage?: Maybe<GeneralResponse>;
912
- addNewTool?: Maybe<GeneralResponse>;
913
- addNewUiCustomName?: Maybe<GeneralResponse>;
914
915
  changePassword?: Maybe<GeneralResponse>;
915
916
  createAlert?: Maybe<GeneralResponse>;
916
917
  createAlertEmail?: Maybe<GeneralResponse>;
@@ -922,30 +923,27 @@ export type Mutation = {
922
923
  createNguDevice?: Maybe<GeneralResponse>;
923
924
  createNguUser?: Maybe<GeneralResponse>;
924
925
  createUser?: Maybe<CreateUserResponse>;
925
- deleteCustomer?: Maybe<GeneralResponse>;
926
926
  deleteDepartment?: Maybe<GeneralResponse>;
927
927
  deleteDevice?: Maybe<GeneralResponse>;
928
928
  deleteEqmsDevice?: Maybe<GeneralResponse>;
929
- deleteMachine?: Maybe<MachinesResponse>;
929
+ deleteInventoryBasicTable?: Maybe<GeneralResponse>;
930
+ deleteInventoryColumn?: Maybe<GeneralResponse>;
931
+ deleteInventoryCustomer?: Maybe<GeneralResponse>;
932
+ deleteInventorySupplier?: Maybe<GeneralResponse>;
933
+ deleteInventoryTableFor?: Maybe<GeneralResponse>;
930
934
  deleteNguDevice?: Maybe<GeneralResponse>;
931
- deletePart?: Maybe<GeneralResponse>;
932
- deleteReasonForUnload?: Maybe<GeneralResponse>;
933
- deleteStorage?: Maybe<GeneralResponse>;
934
- deleteTool?: Maybe<GeneralResponse>;
935
935
  deleteUser?: Maybe<GeneralResponse>;
936
936
  deleteUserSession?: Maybe<GeneralResponse>;
937
- editCustomer?: Maybe<GeneralResponse>;
938
937
  editDepartment?: Maybe<GeneralResponse>;
939
- editMachine?: Maybe<MachinesResponse>;
938
+ editInventoryBasicTable?: Maybe<GeneralResponse>;
939
+ editInventoryColumn?: Maybe<GeneralResponse>;
940
+ editInventoryCustomer?: Maybe<GeneralResponse>;
941
+ editInventorySupplier?: Maybe<GeneralResponse>;
942
+ editInventoryTableFor?: Maybe<GeneralResponse>;
940
943
  editManyDepartments?: Maybe<GeneralResponse>;
941
- editManyParts?: Maybe<GeneralResponse>;
942
- editPart?: Maybe<GeneralResponse>;
943
- editReasonForUnload?: Maybe<GeneralResponse>;
944
- editStorage?: Maybe<GeneralResponse>;
945
- editTool?: Maybe<GeneralResponse>;
946
- editUiCustomName?: Maybe<GeneralResponse>;
947
944
  forgotPassword?: Maybe<GeneralResponse>;
948
945
  generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
946
+ moveItemToScrap?: Maybe<GeneralResponse>;
949
947
  sendEmail?: Maybe<GeneralResponse>;
950
948
  updateAlert?: Maybe<GeneralResponse>;
951
949
  updateAlertEmail?: Maybe<GeneralResponse>;
@@ -974,38 +972,32 @@ export type Mutation = {
974
972
  verifyLogin?: Maybe<LoginUserResponse>;
975
973
  verifyLogout?: Maybe<GeneralResponse>;
976
974
  };
977
- export type MutationAddAllNewStorageArgs = {
978
- data?: InputMaybe<Array<InputMaybe<StorageInput>>>;
975
+ export type MutationAddInventoryBasicTableArgs = {
976
+ queryData?: InputMaybe<InventoryBasicTableInput>;
979
977
  };
980
- export type MutationAddAllNewUiCustomNamesArgs = {
981
- data?: InputMaybe<Array<InputMaybe<UiCustomNamesInput>>>;
978
+ export type MutationAddInventoryColumnArgs = {
979
+ queryData?: InputMaybe<InventoryColumnInput>;
982
980
  };
983
- export type MutationAddNewCustomerArgs = {
984
- data?: InputMaybe<CustomersInput>;
981
+ export type MutationAddInventoryCustomerArgs = {
982
+ data?: InputMaybe<InventoryCustomerInput>;
985
983
  };
986
- export type MutationAddNewDepartmentArgs = {
987
- data?: InputMaybe<DepartmentsInput>;
988
- };
989
- export type MutationAddNewMachineArgs = {
990
- data?: InputMaybe<MachinesInput>;
991
- };
992
- export type MutationAddNewPartArgs = {
993
- data?: InputMaybe<PartInput>;
984
+ export type MutationAddInventorySupplierArgs = {
985
+ data?: InputMaybe<InventorySupplierInput>;
994
986
  };
995
- export type MutationAddNewReasonForUnloadArgs = {
996
- data?: InputMaybe<ReasonForUnloadInput>;
987
+ export type MutationAddInventoryTableForArgs = {
988
+ basicTableId: Scalars['ID']['input'];
989
+ data?: InputMaybe<Scalars['JSON']['input']>;
997
990
  };
998
- export type MutationAddNewStatusForWorkOrderTableArgs = {
999
- data?: InputMaybe<StatusForWorkOrderTableInput>;
991
+ export type MutationAddItemInInwardArgs = {
992
+ basicTableId: Scalars['ID']['input'];
993
+ data?: InputMaybe<Scalars['JSON']['input']>;
1000
994
  };
1001
- export type MutationAddNewStorageArgs = {
1002
- data?: InputMaybe<StorageInput>;
995
+ export type MutationAddItemInOutwardArgs = {
996
+ basicTableId: Scalars['ID']['input'];
997
+ data?: InputMaybe<Scalars['JSON']['input']>;
1003
998
  };
1004
- export type MutationAddNewToolArgs = {
1005
- data?: InputMaybe<ToolRoomInput>;
1006
- };
1007
- export type MutationAddNewUiCustomNameArgs = {
1008
- data?: InputMaybe<UiCustomNamesInput>;
999
+ export type MutationAddNewDepartmentArgs = {
1000
+ data?: InputMaybe<DepartmentsInput>;
1009
1001
  };
1010
1002
  export type MutationChangePasswordArgs = {
1011
1003
  data?: InputMaybe<PasswordInput>;
@@ -1040,9 +1032,6 @@ export type MutationCreateNguUserArgs = {
1040
1032
  export type MutationCreateUserArgs = {
1041
1033
  data?: InputMaybe<UserInput>;
1042
1034
  };
1043
- export type MutationDeleteCustomerArgs = {
1044
- id: Scalars['ID']['input'];
1045
- };
1046
1035
  export type MutationDeleteDepartmentArgs = {
1047
1036
  id: Scalars['ID']['input'];
1048
1037
  };
@@ -1052,22 +1041,23 @@ export type MutationDeleteDeviceArgs = {
1052
1041
  export type MutationDeleteEqmsDeviceArgs = {
1053
1042
  id: Scalars['ID']['input'];
1054
1043
  };
1055
- export type MutationDeleteMachineArgs = {
1044
+ export type MutationDeleteInventoryBasicTableArgs = {
1056
1045
  id: Scalars['ID']['input'];
1057
1046
  };
1058
- export type MutationDeleteNguDeviceArgs = {
1047
+ export type MutationDeleteInventoryColumnArgs = {
1059
1048
  id: Scalars['ID']['input'];
1060
1049
  };
1061
- export type MutationDeletePartArgs = {
1050
+ export type MutationDeleteInventoryCustomerArgs = {
1062
1051
  id: Scalars['ID']['input'];
1063
1052
  };
1064
- export type MutationDeleteReasonForUnloadArgs = {
1053
+ export type MutationDeleteInventorySupplierArgs = {
1065
1054
  id: Scalars['ID']['input'];
1066
1055
  };
1067
- export type MutationDeleteStorageArgs = {
1068
- id: Scalars['ID']['input'];
1056
+ export type MutationDeleteInventoryTableForArgs = {
1057
+ basicTableId: Scalars['ID']['input'];
1058
+ tableId: Scalars['ID']['input'];
1069
1059
  };
1070
- export type MutationDeleteToolArgs = {
1060
+ export type MutationDeleteNguDeviceArgs = {
1071
1061
  id: Scalars['ID']['input'];
1072
1062
  };
1073
1063
  export type MutationDeleteUserArgs = {
@@ -1076,43 +1066,33 @@ export type MutationDeleteUserArgs = {
1076
1066
  export type MutationDeleteUserSessionArgs = {
1077
1067
  data?: InputMaybe<SessionInput>;
1078
1068
  };
1079
- export type MutationEditCustomerArgs = {
1080
- data?: InputMaybe<CustomersInput>;
1081
- id: Scalars['ID']['input'];
1082
- };
1083
1069
  export type MutationEditDepartmentArgs = {
1084
1070
  data?: InputMaybe<DepartmentsInput>;
1085
1071
  id: Scalars['ID']['input'];
1086
1072
  };
1087
- export type MutationEditMachineArgs = {
1088
- data?: InputMaybe<MachinesInput>;
1073
+ export type MutationEditInventoryBasicTableArgs = {
1074
+ data?: InputMaybe<InventoryBasicTableInput>;
1089
1075
  id: Scalars['ID']['input'];
1090
1076
  };
1091
- export type MutationEditManyDepartmentsArgs = {
1092
- data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
1093
- };
1094
- export type MutationEditManyPartsArgs = {
1095
- data?: InputMaybe<Array<InputMaybe<EditManyPartsInput>>>;
1096
- };
1097
- export type MutationEditPartArgs = {
1098
- data?: InputMaybe<PartInput>;
1077
+ export type MutationEditInventoryColumnArgs = {
1078
+ data?: InputMaybe<InventoryColumnInput>;
1099
1079
  id: Scalars['ID']['input'];
1100
1080
  };
1101
- export type MutationEditReasonForUnloadArgs = {
1102
- data?: InputMaybe<ReasonForUnloadInput>;
1081
+ export type MutationEditInventoryCustomerArgs = {
1082
+ data?: InputMaybe<InventoryCustomerInput>;
1103
1083
  id: Scalars['ID']['input'];
1104
1084
  };
1105
- export type MutationEditStorageArgs = {
1106
- data?: InputMaybe<StorageInput>;
1085
+ export type MutationEditInventorySupplierArgs = {
1086
+ data?: InputMaybe<InventorySupplierInput>;
1107
1087
  id: Scalars['ID']['input'];
1108
1088
  };
1109
- export type MutationEditToolArgs = {
1110
- data?: InputMaybe<ToolRoomInput>;
1111
- id: Scalars['ID']['input'];
1089
+ export type MutationEditInventoryTableForArgs = {
1090
+ basicTableId: Scalars['ID']['input'];
1091
+ data?: InputMaybe<Scalars['JSON']['input']>;
1092
+ tableId: Scalars['ID']['input'];
1112
1093
  };
1113
- export type MutationEditUiCustomNameArgs = {
1114
- data?: InputMaybe<UiCustomNamesInput>;
1115
- id: Scalars['ID']['input'];
1094
+ export type MutationEditManyDepartmentsArgs = {
1095
+ data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
1116
1096
  };
1117
1097
  export type MutationForgotPasswordArgs = {
1118
1098
  data?: InputMaybe<ForgotInput>;
@@ -1120,6 +1100,10 @@ export type MutationForgotPasswordArgs = {
1120
1100
  export type MutationGenerateReportArgs = {
1121
1101
  data?: InputMaybe<ReportListInput>;
1122
1102
  };
1103
+ export type MutationMoveItemToScrapArgs = {
1104
+ basicTableId: Scalars['ID']['input'];
1105
+ data?: InputMaybe<Scalars['JSON']['input']>;
1106
+ };
1123
1107
  export type MutationSendEmailArgs = {
1124
1108
  data?: InputMaybe<SendEmailInput>;
1125
1109
  };
@@ -1408,73 +1392,6 @@ export type OffTimeInput = {
1408
1392
  endDate?: InputMaybe<Scalars['String']['input']>;
1409
1393
  startDate?: InputMaybe<Scalars['String']['input']>;
1410
1394
  };
1411
- export type Part = {
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']>>>;
1418
- id: Scalars['ID']['output'];
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']>;
1439
- };
1440
- export type PartInput = {
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']>;
1477
- };
1478
1395
  export type PasswordInput = {
1479
1396
  confirmPassword?: InputMaybe<Scalars['String']['input']>;
1480
1397
  oldPassword?: InputMaybe<Scalars['String']['input']>;
@@ -1522,7 +1439,6 @@ export type Query = {
1522
1439
  fetchBasicSettings?: Maybe<BasicSettings>;
1523
1440
  fetchCompanyById?: Maybe<Company>;
1524
1441
  fetchCompanyList?: Maybe<Array<Maybe<Company>>>;
1525
- fetchCustomers?: Maybe<Array<Maybe<Customers>>>;
1526
1442
  fetchDashboardData?: Maybe<DashboardData>;
1527
1443
  fetchDepartments?: Maybe<Array<Maybe<Departments>>>;
1528
1444
  fetchDeviceActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
@@ -1552,13 +1468,17 @@ export type Query = {
1552
1468
  fetchHourlyAlertReport?: Maybe<HourlyAlertReport>;
1553
1469
  fetchHourlyUtilizationDashboard?: Maybe<HourlyUtilizationDashboard>;
1554
1470
  fetchHourlyUtilizationDataForGraph?: Maybe<HourlyUtilizationDataForGraph>;
1471
+ fetchInventoryBasicTables?: Maybe<Array<Maybe<InventoryBasicTables>>>;
1472
+ fetchInventoryColumns?: Maybe<Array<Maybe<InventoryColumns>>>;
1473
+ fetchInventoryCustomers?: Maybe<Array<Maybe<InventoryCustomers>>>;
1474
+ fetchInventorySuppliers?: Maybe<Array<Maybe<InventorySuppliers>>>;
1475
+ fetchInventoryTable?: Maybe<InventoryTable>;
1555
1476
  fetchLastMessagesFromMqtt?: Maybe<LastMessagesFromMqtt>;
1556
1477
  fetchLiveCurrentForPeriod?: Maybe<Array<Maybe<LiveCurrentForPeriod>>>;
1557
1478
  fetchLiveGraphPageData?: Maybe<LiveGraphPageData>;
1558
1479
  fetchLoadMapPageData?: Maybe<LoadMapPageData>;
1559
1480
  fetchLocationMapPageData?: Maybe<LocationMapPageData>;
1560
1481
  fetchLocations?: Maybe<Array<Maybe<Locations>>>;
1561
- fetchMachines?: Maybe<Array<Maybe<Machines>>>;
1562
1482
  fetchMonthlyReport?: Maybe<Array<Maybe<TempDataTable>>>;
1563
1483
  fetchMonthlyReportByDeviceId?: Maybe<TempDataTable>;
1564
1484
  fetchMonthlyUtilizationDashboard?: Maybe<MonthlyUtilizationDashboard>;
@@ -1577,18 +1497,12 @@ export type Query = {
1577
1497
  fetchNguUserList?: Maybe<Array<Maybe<NguUser>>>;
1578
1498
  fetchNguUsers?: Maybe<Array<Maybe<NguUser>>>;
1579
1499
  fetchOffTimeByDeviceId?: Maybe<Array<Maybe<OffTimeReport>>>;
1580
- fetchPartTable?: Maybe<Array<Maybe<Part>>>;
1581
1500
  fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
1582
1501
  fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
1583
- fetchReasonForUnload?: Maybe<Array<Maybe<ReasonForUnload>>>;
1584
1502
  fetchSettingsPageData?: Maybe<SettingsPageData>;
1585
- fetchStatusForWorkOrderTable?: Maybe<Array<Maybe<StatusForWorkOrderTable>>>;
1586
- fetchStorage?: Maybe<Array<Maybe<Storage>>>;
1587
1503
  fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
1588
1504
  fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
1589
1505
  fetchTimelineChartPageData?: Maybe<TimelineChartPageData>;
1590
- fetchToolRoom?: Maybe<Array<Maybe<ToolRoom>>>;
1591
- fetchUiCustomNames?: Maybe<Array<Maybe<UiCustomNames>>>;
1592
1506
  fetchUserById?: Maybe<User>;
1593
1507
  fetchUserList?: Maybe<Array<Maybe<User>>>;
1594
1508
  fetchUserSession?: Maybe<Array<Maybe<UserSession>>>;
@@ -1686,6 +1600,9 @@ export type QueryFetchHourlyUtilizationDashboardArgs = {
1686
1600
  export type QueryFetchHourlyUtilizationDataForGraphArgs = {
1687
1601
  queryData?: InputMaybe<HourlyUtilizationDataForGraphInput>;
1688
1602
  };
1603
+ export type QueryFetchInventoryTableArgs = {
1604
+ basicTableId: Scalars['ID']['input'];
1605
+ };
1689
1606
  export type QueryFetchLastMessagesFromMqttArgs = {
1690
1607
  queryData?: InputMaybe<LastMessagesFromMqttInput>;
1691
1608
  };
@@ -1767,14 +1684,6 @@ export type QueryFetchUserListArgs = {
1767
1684
  export type QueryFetchUserSessionArgs = {
1768
1685
  queryData?: InputMaybe<UserSessionInput>;
1769
1686
  };
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
- };
1778
1687
  export type RegisterConfig = {
1779
1688
  __typename?: 'RegisterConfig';
1780
1689
  dbName?: Maybe<Scalars['String']['output']>;
@@ -1832,32 +1741,9 @@ export type SettingsPageData = {
1832
1741
  superadmin?: Maybe<User>;
1833
1742
  users?: Maybe<Array<Maybe<User>>>;
1834
1743
  };
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
- };
1844
1744
  export type StatusInput = {
1845
1745
  status?: InputMaybe<Scalars['String']['input']>;
1846
1746
  };
1847
- export type Storage = {
1848
- __typename?: 'Storage';
1849
- currentPartId?: Maybe<Scalars['String']['output']>;
1850
- id: Scalars['ID']['output'];
1851
- isAvailable?: Maybe<Scalars['Boolean']['output']>;
1852
- storageLocationNo?: Maybe<Scalars['Int']['output']>;
1853
- storageName?: Maybe<Scalars['String']['output']>;
1854
- };
1855
- export type StorageInput = {
1856
- currentPartId?: InputMaybe<Scalars['String']['input']>;
1857
- isAvailable?: InputMaybe<Scalars['Boolean']['input']>;
1858
- storageLocationNo?: InputMaybe<Scalars['Int']['input']>;
1859
- storageName?: InputMaybe<Scalars['String']['input']>;
1860
- };
1861
1747
  export type TempDataAlert = {
1862
1748
  __typename?: 'TempDataAlert';
1863
1749
  count?: Maybe<Scalars['Int']['output']>;
@@ -1886,15 +1772,6 @@ export type TempDataTable = {
1886
1772
  startKWH?: Maybe<Scalars['Float']['output']>;
1887
1773
  status?: Maybe<Scalars['String']['output']>;
1888
1774
  };
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
- };
1898
1775
  export type TimeValueInput = {
1899
1776
  status?: InputMaybe<Scalars['Boolean']['input']>;
1900
1777
  time?: InputMaybe<Scalars['String']['input']>;
@@ -1909,132 +1786,6 @@ export type TimelineChartPageDataFetchInput = {
1909
1786
  devicesAlert?: InputMaybe<HourlyAlertReportInput>;
1910
1787
  devicesHourlyPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
1911
1788
  };
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
- };
2026
- export type UiCustomNames = {
2027
- __typename?: 'UiCustomNames';
2028
- customName?: Maybe<Scalars['String']['output']>;
2029
- dbName?: Maybe<Scalars['String']['output']>;
2030
- defaultName?: Maybe<Scalars['String']['output']>;
2031
- id: Scalars['ID']['output'];
2032
- };
2033
- export type UiCustomNamesInput = {
2034
- customName?: InputMaybe<Scalars['String']['input']>;
2035
- dbName?: InputMaybe<Scalars['String']['input']>;
2036
- defaultName?: InputMaybe<Scalars['String']['input']>;
2037
- };
2038
1789
  export type UpdateDeviceAlertStatusInput = {
2039
1790
  hourId?: InputMaybe<Scalars['Int']['input']>;
2040
1791
  parameter?: InputMaybe<Scalars['String']['input']>;
@@ -2050,20 +1801,6 @@ export type UpdateManyUserInput = {
2050
1801
  data?: InputMaybe<UserInput>;
2051
1802
  id?: InputMaybe<Scalars['ID']['input']>;
2052
1803
  };
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
- };
2067
1804
  export type User = {
2068
1805
  __typename?: 'User';
2069
1806
  id: Scalars['ID']['output'];