@mjtech-ems/schema 1.3.28 → 1.3.30
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 +164 -416
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/mergedSchema.js +2 -2
- package/dist/mjtech-ems.d.ts.map +1 -1
- package/dist/mjtech-ems.js +1 -1
- package/dist/mjtech-inventory-tracking.d.ts +3 -0
- package/dist/mjtech-inventory-tracking.d.ts.map +1 -0
- package/dist/mjtech-inventory-tracking.js +10 -0
- package/package.json +1 -1
- package/dist/mjtech-tool-dashboard.d.ts +0 -3
- package/dist/mjtech-tool-dashboard.d.ts.map +0 -1
- package/dist/mjtech-tool-dashboard.js +0 -10
|
@@ -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,90 @@ 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
|
+
};
|
|
782
|
+
export type InwardOrOutWardData = {
|
|
783
|
+
__typename?: 'InwardOrOutWardData';
|
|
784
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
785
|
+
};
|
|
738
786
|
export type LastMessagesFromMqtt = {
|
|
739
787
|
__typename?: 'LastMessagesFromMqtt';
|
|
740
788
|
value?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -743,15 +791,6 @@ export type LastMessagesFromMqttInput = {
|
|
|
743
791
|
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
744
792
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
745
793
|
};
|
|
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
794
|
export type LiveCurrentForPeriod = {
|
|
756
795
|
__typename?: 'LiveCurrentForPeriod';
|
|
757
796
|
deviceName?: Maybe<Scalars['String']['output']>;
|
|
@@ -821,43 +860,13 @@ export type LoginSuccessResponse = {
|
|
|
821
860
|
companyInfo?: Maybe<CompanyInfo>;
|
|
822
861
|
email?: Maybe<Scalars['EmailAddress']['output']>;
|
|
823
862
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
863
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
824
864
|
image?: Maybe<Scalars['String']['output']>;
|
|
825
865
|
lastName?: Maybe<Scalars['String']['output']>;
|
|
826
866
|
phone?: Maybe<Scalars['PhoneNumber']['output']>;
|
|
827
867
|
userType?: Maybe<Scalars['String']['output']>;
|
|
828
868
|
};
|
|
829
869
|
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
870
|
export type MonthlyReportInput = {
|
|
862
871
|
deviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
863
872
|
deviceName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -900,17 +909,14 @@ export type MqttConnectionConfig = {
|
|
|
900
909
|
};
|
|
901
910
|
export type Mutation = {
|
|
902
911
|
__typename?: 'Mutation';
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
912
|
+
addInventoryBasicTable?: Maybe<GeneralResponse>;
|
|
913
|
+
addInventoryColumn?: Maybe<GeneralResponse>;
|
|
914
|
+
addInventoryCustomer?: Maybe<AddInventoryCustomerResponse>;
|
|
915
|
+
addInventorySupplier?: Maybe<AddInventorySupplierResponse>;
|
|
916
|
+
addInventoryTableFor?: Maybe<GeneralResponse>;
|
|
917
|
+
addItemInInward?: Maybe<GeneralResponse>;
|
|
918
|
+
addItemInOutward?: Maybe<GeneralResponse>;
|
|
906
919
|
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
920
|
changePassword?: Maybe<GeneralResponse>;
|
|
915
921
|
createAlert?: Maybe<GeneralResponse>;
|
|
916
922
|
createAlertEmail?: Maybe<GeneralResponse>;
|
|
@@ -922,30 +928,27 @@ export type Mutation = {
|
|
|
922
928
|
createNguDevice?: Maybe<GeneralResponse>;
|
|
923
929
|
createNguUser?: Maybe<GeneralResponse>;
|
|
924
930
|
createUser?: Maybe<CreateUserResponse>;
|
|
925
|
-
deleteCustomer?: Maybe<GeneralResponse>;
|
|
926
931
|
deleteDepartment?: Maybe<GeneralResponse>;
|
|
927
932
|
deleteDevice?: Maybe<GeneralResponse>;
|
|
928
933
|
deleteEqmsDevice?: Maybe<GeneralResponse>;
|
|
929
|
-
|
|
934
|
+
deleteInventoryBasicTable?: Maybe<GeneralResponse>;
|
|
935
|
+
deleteInventoryColumn?: Maybe<GeneralResponse>;
|
|
936
|
+
deleteInventoryCustomer?: Maybe<GeneralResponse>;
|
|
937
|
+
deleteInventorySupplier?: Maybe<GeneralResponse>;
|
|
938
|
+
deleteInventoryTableFor?: Maybe<GeneralResponse>;
|
|
930
939
|
deleteNguDevice?: Maybe<GeneralResponse>;
|
|
931
|
-
deletePart?: Maybe<GeneralResponse>;
|
|
932
|
-
deleteReasonForUnload?: Maybe<GeneralResponse>;
|
|
933
|
-
deleteStorage?: Maybe<GeneralResponse>;
|
|
934
|
-
deleteTool?: Maybe<GeneralResponse>;
|
|
935
940
|
deleteUser?: Maybe<GeneralResponse>;
|
|
936
941
|
deleteUserSession?: Maybe<GeneralResponse>;
|
|
937
|
-
editCustomer?: Maybe<GeneralResponse>;
|
|
938
942
|
editDepartment?: Maybe<GeneralResponse>;
|
|
939
|
-
|
|
943
|
+
editInventoryBasicTable?: Maybe<GeneralResponse>;
|
|
944
|
+
editInventoryColumn?: Maybe<GeneralResponse>;
|
|
945
|
+
editInventoryCustomer?: Maybe<GeneralResponse>;
|
|
946
|
+
editInventorySupplier?: Maybe<GeneralResponse>;
|
|
947
|
+
editInventoryTableFor?: Maybe<GeneralResponse>;
|
|
940
948
|
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
949
|
forgotPassword?: Maybe<GeneralResponse>;
|
|
948
950
|
generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
|
|
951
|
+
moveItemToScrap?: Maybe<GeneralResponse>;
|
|
949
952
|
sendEmail?: Maybe<GeneralResponse>;
|
|
950
953
|
updateAlert?: Maybe<GeneralResponse>;
|
|
951
954
|
updateAlertEmail?: Maybe<GeneralResponse>;
|
|
@@ -974,38 +977,32 @@ export type Mutation = {
|
|
|
974
977
|
verifyLogin?: Maybe<LoginUserResponse>;
|
|
975
978
|
verifyLogout?: Maybe<GeneralResponse>;
|
|
976
979
|
};
|
|
977
|
-
export type
|
|
978
|
-
|
|
979
|
-
};
|
|
980
|
-
export type MutationAddAllNewUiCustomNamesArgs = {
|
|
981
|
-
data?: InputMaybe<Array<InputMaybe<UiCustomNamesInput>>>;
|
|
980
|
+
export type MutationAddInventoryBasicTableArgs = {
|
|
981
|
+
queryData?: InputMaybe<InventoryBasicTableInput>;
|
|
982
982
|
};
|
|
983
|
-
export type
|
|
984
|
-
|
|
983
|
+
export type MutationAddInventoryColumnArgs = {
|
|
984
|
+
queryData?: InputMaybe<InventoryColumnInput>;
|
|
985
985
|
};
|
|
986
|
-
export type
|
|
987
|
-
data?: InputMaybe<
|
|
986
|
+
export type MutationAddInventoryCustomerArgs = {
|
|
987
|
+
data?: InputMaybe<InventoryCustomerInput>;
|
|
988
988
|
};
|
|
989
|
-
export type
|
|
990
|
-
data?: InputMaybe<
|
|
989
|
+
export type MutationAddInventorySupplierArgs = {
|
|
990
|
+
data?: InputMaybe<InventorySupplierInput>;
|
|
991
991
|
};
|
|
992
|
-
export type
|
|
993
|
-
|
|
992
|
+
export type MutationAddInventoryTableForArgs = {
|
|
993
|
+
basicTableId: Scalars['ID']['input'];
|
|
994
|
+
data?: InputMaybe<Scalars['JSON']['input']>;
|
|
994
995
|
};
|
|
995
|
-
export type
|
|
996
|
-
|
|
996
|
+
export type MutationAddItemInInwardArgs = {
|
|
997
|
+
basicTableId: Scalars['ID']['input'];
|
|
998
|
+
data?: InputMaybe<Scalars['JSON']['input']>;
|
|
997
999
|
};
|
|
998
|
-
export type
|
|
999
|
-
|
|
1000
|
+
export type MutationAddItemInOutwardArgs = {
|
|
1001
|
+
basicTableId: Scalars['ID']['input'];
|
|
1002
|
+
data?: InputMaybe<Scalars['JSON']['input']>;
|
|
1000
1003
|
};
|
|
1001
|
-
export type
|
|
1002
|
-
data?: InputMaybe<
|
|
1003
|
-
};
|
|
1004
|
-
export type MutationAddNewToolArgs = {
|
|
1005
|
-
data?: InputMaybe<ToolRoomInput>;
|
|
1006
|
-
};
|
|
1007
|
-
export type MutationAddNewUiCustomNameArgs = {
|
|
1008
|
-
data?: InputMaybe<UiCustomNamesInput>;
|
|
1004
|
+
export type MutationAddNewDepartmentArgs = {
|
|
1005
|
+
data?: InputMaybe<DepartmentsInput>;
|
|
1009
1006
|
};
|
|
1010
1007
|
export type MutationChangePasswordArgs = {
|
|
1011
1008
|
data?: InputMaybe<PasswordInput>;
|
|
@@ -1040,9 +1037,6 @@ export type MutationCreateNguUserArgs = {
|
|
|
1040
1037
|
export type MutationCreateUserArgs = {
|
|
1041
1038
|
data?: InputMaybe<UserInput>;
|
|
1042
1039
|
};
|
|
1043
|
-
export type MutationDeleteCustomerArgs = {
|
|
1044
|
-
id: Scalars['ID']['input'];
|
|
1045
|
-
};
|
|
1046
1040
|
export type MutationDeleteDepartmentArgs = {
|
|
1047
1041
|
id: Scalars['ID']['input'];
|
|
1048
1042
|
};
|
|
@@ -1052,22 +1046,23 @@ export type MutationDeleteDeviceArgs = {
|
|
|
1052
1046
|
export type MutationDeleteEqmsDeviceArgs = {
|
|
1053
1047
|
id: Scalars['ID']['input'];
|
|
1054
1048
|
};
|
|
1055
|
-
export type
|
|
1049
|
+
export type MutationDeleteInventoryBasicTableArgs = {
|
|
1056
1050
|
id: Scalars['ID']['input'];
|
|
1057
1051
|
};
|
|
1058
|
-
export type
|
|
1052
|
+
export type MutationDeleteInventoryColumnArgs = {
|
|
1059
1053
|
id: Scalars['ID']['input'];
|
|
1060
1054
|
};
|
|
1061
|
-
export type
|
|
1055
|
+
export type MutationDeleteInventoryCustomerArgs = {
|
|
1062
1056
|
id: Scalars['ID']['input'];
|
|
1063
1057
|
};
|
|
1064
|
-
export type
|
|
1058
|
+
export type MutationDeleteInventorySupplierArgs = {
|
|
1065
1059
|
id: Scalars['ID']['input'];
|
|
1066
1060
|
};
|
|
1067
|
-
export type
|
|
1068
|
-
|
|
1061
|
+
export type MutationDeleteInventoryTableForArgs = {
|
|
1062
|
+
basicTableId: Scalars['ID']['input'];
|
|
1063
|
+
tableId: Scalars['ID']['input'];
|
|
1069
1064
|
};
|
|
1070
|
-
export type
|
|
1065
|
+
export type MutationDeleteNguDeviceArgs = {
|
|
1071
1066
|
id: Scalars['ID']['input'];
|
|
1072
1067
|
};
|
|
1073
1068
|
export type MutationDeleteUserArgs = {
|
|
@@ -1076,43 +1071,33 @@ export type MutationDeleteUserArgs = {
|
|
|
1076
1071
|
export type MutationDeleteUserSessionArgs = {
|
|
1077
1072
|
data?: InputMaybe<SessionInput>;
|
|
1078
1073
|
};
|
|
1079
|
-
export type MutationEditCustomerArgs = {
|
|
1080
|
-
data?: InputMaybe<CustomersInput>;
|
|
1081
|
-
id: Scalars['ID']['input'];
|
|
1082
|
-
};
|
|
1083
1074
|
export type MutationEditDepartmentArgs = {
|
|
1084
1075
|
data?: InputMaybe<DepartmentsInput>;
|
|
1085
1076
|
id: Scalars['ID']['input'];
|
|
1086
1077
|
};
|
|
1087
|
-
export type
|
|
1088
|
-
data?: InputMaybe<
|
|
1078
|
+
export type MutationEditInventoryBasicTableArgs = {
|
|
1079
|
+
data?: InputMaybe<InventoryBasicTableInput>;
|
|
1089
1080
|
id: Scalars['ID']['input'];
|
|
1090
1081
|
};
|
|
1091
|
-
export type
|
|
1092
|
-
data?: InputMaybe<
|
|
1093
|
-
};
|
|
1094
|
-
export type MutationEditManyPartsArgs = {
|
|
1095
|
-
data?: InputMaybe<Array<InputMaybe<EditManyPartsInput>>>;
|
|
1096
|
-
};
|
|
1097
|
-
export type MutationEditPartArgs = {
|
|
1098
|
-
data?: InputMaybe<PartInput>;
|
|
1082
|
+
export type MutationEditInventoryColumnArgs = {
|
|
1083
|
+
data?: InputMaybe<InventoryColumnInput>;
|
|
1099
1084
|
id: Scalars['ID']['input'];
|
|
1100
1085
|
};
|
|
1101
|
-
export type
|
|
1102
|
-
data?: InputMaybe<
|
|
1086
|
+
export type MutationEditInventoryCustomerArgs = {
|
|
1087
|
+
data?: InputMaybe<InventoryCustomerInput>;
|
|
1103
1088
|
id: Scalars['ID']['input'];
|
|
1104
1089
|
};
|
|
1105
|
-
export type
|
|
1106
|
-
data?: InputMaybe<
|
|
1090
|
+
export type MutationEditInventorySupplierArgs = {
|
|
1091
|
+
data?: InputMaybe<InventorySupplierInput>;
|
|
1107
1092
|
id: Scalars['ID']['input'];
|
|
1108
1093
|
};
|
|
1109
|
-
export type
|
|
1110
|
-
|
|
1111
|
-
|
|
1094
|
+
export type MutationEditInventoryTableForArgs = {
|
|
1095
|
+
basicTableId: Scalars['ID']['input'];
|
|
1096
|
+
data?: InputMaybe<Scalars['JSON']['input']>;
|
|
1097
|
+
tableId: Scalars['ID']['input'];
|
|
1112
1098
|
};
|
|
1113
|
-
export type
|
|
1114
|
-
data?: InputMaybe<
|
|
1115
|
-
id: Scalars['ID']['input'];
|
|
1099
|
+
export type MutationEditManyDepartmentsArgs = {
|
|
1100
|
+
data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
|
|
1116
1101
|
};
|
|
1117
1102
|
export type MutationForgotPasswordArgs = {
|
|
1118
1103
|
data?: InputMaybe<ForgotInput>;
|
|
@@ -1120,6 +1105,10 @@ export type MutationForgotPasswordArgs = {
|
|
|
1120
1105
|
export type MutationGenerateReportArgs = {
|
|
1121
1106
|
data?: InputMaybe<ReportListInput>;
|
|
1122
1107
|
};
|
|
1108
|
+
export type MutationMoveItemToScrapArgs = {
|
|
1109
|
+
basicTableId: Scalars['ID']['input'];
|
|
1110
|
+
data?: InputMaybe<Scalars['JSON']['input']>;
|
|
1111
|
+
};
|
|
1123
1112
|
export type MutationSendEmailArgs = {
|
|
1124
1113
|
data?: InputMaybe<SendEmailInput>;
|
|
1125
1114
|
};
|
|
@@ -1408,73 +1397,6 @@ export type OffTimeInput = {
|
|
|
1408
1397
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1409
1398
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1410
1399
|
};
|
|
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
1400
|
export type PasswordInput = {
|
|
1479
1401
|
confirmPassword?: InputMaybe<Scalars['String']['input']>;
|
|
1480
1402
|
oldPassword?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1522,8 +1444,8 @@ export type Query = {
|
|
|
1522
1444
|
fetchBasicSettings?: Maybe<BasicSettings>;
|
|
1523
1445
|
fetchCompanyById?: Maybe<Company>;
|
|
1524
1446
|
fetchCompanyList?: Maybe<Array<Maybe<Company>>>;
|
|
1525
|
-
fetchCustomers?: Maybe<Array<Maybe<Customers>>>;
|
|
1526
1447
|
fetchDashboardData?: Maybe<DashboardData>;
|
|
1448
|
+
fetchDataFromInwardOrOutward?: Maybe<InwardOrOutWardData>;
|
|
1527
1449
|
fetchDepartments?: Maybe<Array<Maybe<Departments>>>;
|
|
1528
1450
|
fetchDeviceActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
|
|
1529
1451
|
fetchDeviceAnalytics?: Maybe<Array<Maybe<DeviceAnalytics>>>;
|
|
@@ -1552,13 +1474,17 @@ export type Query = {
|
|
|
1552
1474
|
fetchHourlyAlertReport?: Maybe<HourlyAlertReport>;
|
|
1553
1475
|
fetchHourlyUtilizationDashboard?: Maybe<HourlyUtilizationDashboard>;
|
|
1554
1476
|
fetchHourlyUtilizationDataForGraph?: Maybe<HourlyUtilizationDataForGraph>;
|
|
1477
|
+
fetchInventoryBasicTables?: Maybe<Array<Maybe<InventoryBasicTables>>>;
|
|
1478
|
+
fetchInventoryColumns?: Maybe<Array<Maybe<InventoryColumns>>>;
|
|
1479
|
+
fetchInventoryCustomers?: Maybe<Array<Maybe<InventoryCustomers>>>;
|
|
1480
|
+
fetchInventorySuppliers?: Maybe<Array<Maybe<InventorySuppliers>>>;
|
|
1481
|
+
fetchInventoryTable?: Maybe<InventoryTable>;
|
|
1555
1482
|
fetchLastMessagesFromMqtt?: Maybe<LastMessagesFromMqtt>;
|
|
1556
1483
|
fetchLiveCurrentForPeriod?: Maybe<Array<Maybe<LiveCurrentForPeriod>>>;
|
|
1557
1484
|
fetchLiveGraphPageData?: Maybe<LiveGraphPageData>;
|
|
1558
1485
|
fetchLoadMapPageData?: Maybe<LoadMapPageData>;
|
|
1559
1486
|
fetchLocationMapPageData?: Maybe<LocationMapPageData>;
|
|
1560
1487
|
fetchLocations?: Maybe<Array<Maybe<Locations>>>;
|
|
1561
|
-
fetchMachines?: Maybe<Array<Maybe<Machines>>>;
|
|
1562
1488
|
fetchMonthlyReport?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1563
1489
|
fetchMonthlyReportByDeviceId?: Maybe<TempDataTable>;
|
|
1564
1490
|
fetchMonthlyUtilizationDashboard?: Maybe<MonthlyUtilizationDashboard>;
|
|
@@ -1577,18 +1503,12 @@ export type Query = {
|
|
|
1577
1503
|
fetchNguUserList?: Maybe<Array<Maybe<NguUser>>>;
|
|
1578
1504
|
fetchNguUsers?: Maybe<Array<Maybe<NguUser>>>;
|
|
1579
1505
|
fetchOffTimeByDeviceId?: Maybe<Array<Maybe<OffTimeReport>>>;
|
|
1580
|
-
fetchPartTable?: Maybe<Array<Maybe<Part>>>;
|
|
1581
1506
|
fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
|
|
1582
1507
|
fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
|
|
1583
|
-
fetchReasonForUnload?: Maybe<Array<Maybe<ReasonForUnload>>>;
|
|
1584
1508
|
fetchSettingsPageData?: Maybe<SettingsPageData>;
|
|
1585
|
-
fetchStatusForWorkOrderTable?: Maybe<Array<Maybe<StatusForWorkOrderTable>>>;
|
|
1586
|
-
fetchStorage?: Maybe<Array<Maybe<Storage>>>;
|
|
1587
1509
|
fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1588
1510
|
fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
|
|
1589
1511
|
fetchTimelineChartPageData?: Maybe<TimelineChartPageData>;
|
|
1590
|
-
fetchToolRoom?: Maybe<Array<Maybe<ToolRoom>>>;
|
|
1591
|
-
fetchUiCustomNames?: Maybe<Array<Maybe<UiCustomNames>>>;
|
|
1592
1512
|
fetchUserById?: Maybe<User>;
|
|
1593
1513
|
fetchUserList?: Maybe<Array<Maybe<User>>>;
|
|
1594
1514
|
fetchUserSession?: Maybe<Array<Maybe<UserSession>>>;
|
|
@@ -1605,6 +1525,11 @@ export type QueryFetchCompanyListArgs = {
|
|
|
1605
1525
|
export type QueryFetchDashboardDataArgs = {
|
|
1606
1526
|
data?: InputMaybe<DashboardDataFetchInput>;
|
|
1607
1527
|
};
|
|
1528
|
+
export type QueryFetchDataFromInwardOrOutwardArgs = {
|
|
1529
|
+
basicTableId: Scalars['ID']['input'];
|
|
1530
|
+
itemType?: InputMaybe<Scalars['String']['input']>;
|
|
1531
|
+
transactionType?: InputMaybe<Scalars['String']['input']>;
|
|
1532
|
+
};
|
|
1608
1533
|
export type QueryFetchDepartmentsArgs = {
|
|
1609
1534
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1610
1535
|
};
|
|
@@ -1686,6 +1611,9 @@ export type QueryFetchHourlyUtilizationDashboardArgs = {
|
|
|
1686
1611
|
export type QueryFetchHourlyUtilizationDataForGraphArgs = {
|
|
1687
1612
|
queryData?: InputMaybe<HourlyUtilizationDataForGraphInput>;
|
|
1688
1613
|
};
|
|
1614
|
+
export type QueryFetchInventoryTableArgs = {
|
|
1615
|
+
basicTableId: Scalars['ID']['input'];
|
|
1616
|
+
};
|
|
1689
1617
|
export type QueryFetchLastMessagesFromMqttArgs = {
|
|
1690
1618
|
queryData?: InputMaybe<LastMessagesFromMqttInput>;
|
|
1691
1619
|
};
|
|
@@ -1767,14 +1695,6 @@ export type QueryFetchUserListArgs = {
|
|
|
1767
1695
|
export type QueryFetchUserSessionArgs = {
|
|
1768
1696
|
queryData?: InputMaybe<UserSessionInput>;
|
|
1769
1697
|
};
|
|
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
1698
|
export type RegisterConfig = {
|
|
1779
1699
|
__typename?: 'RegisterConfig';
|
|
1780
1700
|
dbName?: Maybe<Scalars['String']['output']>;
|
|
@@ -1832,32 +1752,9 @@ export type SettingsPageData = {
|
|
|
1832
1752
|
superadmin?: Maybe<User>;
|
|
1833
1753
|
users?: Maybe<Array<Maybe<User>>>;
|
|
1834
1754
|
};
|
|
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
1755
|
export type StatusInput = {
|
|
1845
1756
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1846
1757
|
};
|
|
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
1758
|
export type TempDataAlert = {
|
|
1862
1759
|
__typename?: 'TempDataAlert';
|
|
1863
1760
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -1886,15 +1783,6 @@ export type TempDataTable = {
|
|
|
1886
1783
|
startKWH?: Maybe<Scalars['Float']['output']>;
|
|
1887
1784
|
status?: Maybe<Scalars['String']['output']>;
|
|
1888
1785
|
};
|
|
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
1786
|
export type TimeValueInput = {
|
|
1899
1787
|
status?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1900
1788
|
time?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1909,132 +1797,6 @@ export type TimelineChartPageDataFetchInput = {
|
|
|
1909
1797
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
1910
1798
|
devicesHourlyPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
1911
1799
|
};
|
|
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
1800
|
export type UpdateDeviceAlertStatusInput = {
|
|
2039
1801
|
hourId?: InputMaybe<Scalars['Int']['input']>;
|
|
2040
1802
|
parameter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2050,20 +1812,6 @@ export type UpdateManyUserInput = {
|
|
|
2050
1812
|
data?: InputMaybe<UserInput>;
|
|
2051
1813
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2052
1814
|
};
|
|
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
1815
|
export type User = {
|
|
2068
1816
|
__typename?: 'User';
|
|
2069
1817
|
id: Scalars['ID']['output'];
|