@mjtech-ems/schema 1.1.7 → 1.1.8
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 +340 -13
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/dist/mergedSchema.d.ts +3 -0
- package/dist/mergedSchema.d.ts.map +1 -0
- package/dist/mergedSchema.js +10 -0
- package/dist/mjtech-ems.d.ts +1 -1
- package/dist/mjtech-ems.d.ts.map +1 -1
- package/dist/mjtech-ems.js +2 -2
- package/dist/mjtech-ngu.d.ts +3 -0
- package/dist/mjtech-ngu.d.ts.map +1 -0
- package/dist/mjtech-ngu.js +10 -0
- package/package.json +6 -2
|
@@ -152,10 +152,6 @@ export type Company = {
|
|
|
152
152
|
companyInfo?: Maybe<CompanyInfo>;
|
|
153
153
|
id: Scalars['ID']['output'];
|
|
154
154
|
};
|
|
155
|
-
export type CompanyHourlyDataInput = {
|
|
156
|
-
companyInfo?: InputMaybe<CompanyInfoInput>;
|
|
157
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
158
|
-
};
|
|
159
155
|
export type CompanyInfo = {
|
|
160
156
|
__typename?: 'CompanyInfo';
|
|
161
157
|
config?: Maybe<Scalars['String']['output']>;
|
|
@@ -165,20 +161,11 @@ export type CompanyInfo = {
|
|
|
165
161
|
start?: Maybe<Scalars['Date']['output']>;
|
|
166
162
|
status?: Maybe<Scalars['String']['output']>;
|
|
167
163
|
};
|
|
168
|
-
export type CompanyInfoInput = {
|
|
169
|
-
config?: InputMaybe<Scalars['String']['input']>;
|
|
170
|
-
end?: InputMaybe<Scalars['Date']['input']>;
|
|
171
|
-
licenseType?: InputMaybe<Scalars['String']['input']>;
|
|
172
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
173
|
-
start?: InputMaybe<Scalars['Date']['input']>;
|
|
174
|
-
status?: InputMaybe<Scalars['String']['input']>;
|
|
175
|
-
};
|
|
176
164
|
export type CompanyInput = {
|
|
177
165
|
config?: InputMaybe<Scalars['String']['input']>;
|
|
178
166
|
end?: InputMaybe<Scalars['Date']['input']>;
|
|
179
167
|
licenseType?: InputMaybe<Scalars['String']['input']>;
|
|
180
168
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
181
|
-
reportEmail?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
182
169
|
start?: InputMaybe<Scalars['Date']['input']>;
|
|
183
170
|
};
|
|
184
171
|
export type CompanyListInput = {
|
|
@@ -206,6 +193,14 @@ export type DashboardDataFetchInput = {
|
|
|
206
193
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
207
194
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
208
195
|
};
|
|
196
|
+
export type Departments = {
|
|
197
|
+
__typename?: 'Departments';
|
|
198
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
199
|
+
id: Scalars['ID']['output'];
|
|
200
|
+
};
|
|
201
|
+
export type DepartmentsInput = {
|
|
202
|
+
department?: InputMaybe<Scalars['String']['input']>;
|
|
203
|
+
};
|
|
209
204
|
export type Device = {
|
|
210
205
|
__typename?: 'Device';
|
|
211
206
|
deviceInfo?: Maybe<DeviceInfo>;
|
|
@@ -797,13 +792,20 @@ export type MonthlyUtilizationDataForGraphInput = {
|
|
|
797
792
|
};
|
|
798
793
|
export type Mutation = {
|
|
799
794
|
__typename?: 'Mutation';
|
|
795
|
+
addNewDepartment?: Maybe<GeneralResponse>;
|
|
800
796
|
changePassword?: Maybe<GeneralResponse>;
|
|
801
797
|
createAlert?: Maybe<GeneralResponse>;
|
|
802
798
|
createAlertEmail?: Maybe<GeneralResponse>;
|
|
803
799
|
createCompany?: Maybe<GeneralResponse>;
|
|
804
800
|
createDevice?: Maybe<GeneralResponse>;
|
|
801
|
+
createNguAlertEmail?: Maybe<GeneralResponse>;
|
|
802
|
+
createNguCompany?: Maybe<GeneralResponse>;
|
|
803
|
+
createNguDevice?: Maybe<GeneralResponse>;
|
|
804
|
+
createNguUser?: Maybe<GeneralResponse>;
|
|
805
805
|
createUser?: Maybe<GeneralResponse>;
|
|
806
|
+
deleteDepartment?: Maybe<GeneralResponse>;
|
|
806
807
|
deleteUserSession?: Maybe<GeneralResponse>;
|
|
808
|
+
editDepartment?: Maybe<GeneralResponse>;
|
|
807
809
|
forgotPassword?: Maybe<GeneralResponse>;
|
|
808
810
|
generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
|
|
809
811
|
sendEmail?: Maybe<GeneralResponse>;
|
|
@@ -813,15 +815,27 @@ export type Mutation = {
|
|
|
813
815
|
updateCompany?: Maybe<GeneralResponse>;
|
|
814
816
|
updateCompanyStatus?: Maybe<GeneralResponse>;
|
|
815
817
|
updateDevice?: Maybe<GeneralResponse>;
|
|
818
|
+
updateDeviceAlertStatus?: Maybe<GeneralResponse>;
|
|
816
819
|
updateDeviceStatus?: Maybe<GeneralResponse>;
|
|
817
820
|
updateManyAlertEmails?: Maybe<GeneralResponse>;
|
|
818
821
|
updateManyDevices?: Maybe<GeneralResponse>;
|
|
822
|
+
updateManyNguAlertEmails?: Maybe<GeneralResponse>;
|
|
819
823
|
updateMonthlyReport?: Maybe<GeneralResponse>;
|
|
824
|
+
updateNguAlertEmail?: Maybe<GeneralResponse>;
|
|
825
|
+
updateNguCompany?: Maybe<GeneralResponse>;
|
|
826
|
+
updateNguCompanyStatus?: Maybe<GeneralResponse>;
|
|
827
|
+
updateNguDevice?: Maybe<GeneralResponse>;
|
|
828
|
+
updateNguDeviceStatus?: Maybe<GeneralResponse>;
|
|
829
|
+
updateNguUser?: Maybe<GeneralResponse>;
|
|
830
|
+
updateNguUserStatus?: Maybe<GeneralResponse>;
|
|
820
831
|
updateUser?: Maybe<GeneralResponse>;
|
|
821
832
|
updateUserStatus?: Maybe<GeneralResponse>;
|
|
822
833
|
verifyLogin?: Maybe<LoginUserResponse>;
|
|
823
834
|
verifyLogout?: Maybe<GeneralResponse>;
|
|
824
835
|
};
|
|
836
|
+
export type MutationAddNewDepartmentArgs = {
|
|
837
|
+
data?: InputMaybe<DepartmentsInput>;
|
|
838
|
+
};
|
|
825
839
|
export type MutationChangePasswordArgs = {
|
|
826
840
|
data?: InputMaybe<PasswordInput>;
|
|
827
841
|
};
|
|
@@ -837,12 +851,31 @@ export type MutationCreateCompanyArgs = {
|
|
|
837
851
|
export type MutationCreateDeviceArgs = {
|
|
838
852
|
data?: InputMaybe<DeviceInput>;
|
|
839
853
|
};
|
|
854
|
+
export type MutationCreateNguAlertEmailArgs = {
|
|
855
|
+
data?: InputMaybe<NguAlertEmailInput>;
|
|
856
|
+
};
|
|
857
|
+
export type MutationCreateNguCompanyArgs = {
|
|
858
|
+
data?: InputMaybe<NguCompanyInput>;
|
|
859
|
+
};
|
|
860
|
+
export type MutationCreateNguDeviceArgs = {
|
|
861
|
+
data?: InputMaybe<NguDeviceInput>;
|
|
862
|
+
};
|
|
863
|
+
export type MutationCreateNguUserArgs = {
|
|
864
|
+
data?: InputMaybe<NguUserInput>;
|
|
865
|
+
};
|
|
840
866
|
export type MutationCreateUserArgs = {
|
|
841
867
|
data?: InputMaybe<UserInput>;
|
|
842
868
|
};
|
|
869
|
+
export type MutationDeleteDepartmentArgs = {
|
|
870
|
+
id: Scalars['ID']['input'];
|
|
871
|
+
};
|
|
843
872
|
export type MutationDeleteUserSessionArgs = {
|
|
844
873
|
data?: InputMaybe<SessionInput>;
|
|
845
874
|
};
|
|
875
|
+
export type MutationEditDepartmentArgs = {
|
|
876
|
+
data?: InputMaybe<DepartmentsInput>;
|
|
877
|
+
id: Scalars['ID']['input'];
|
|
878
|
+
};
|
|
846
879
|
export type MutationForgotPasswordArgs = {
|
|
847
880
|
data?: InputMaybe<ForgotInput>;
|
|
848
881
|
};
|
|
@@ -874,6 +907,9 @@ export type MutationUpdateDeviceArgs = {
|
|
|
874
907
|
data?: InputMaybe<DeviceInput>;
|
|
875
908
|
id: Scalars['ID']['input'];
|
|
876
909
|
};
|
|
910
|
+
export type MutationUpdateDeviceAlertStatusArgs = {
|
|
911
|
+
data?: InputMaybe<UpdateDeviceAlertStatusInput>;
|
|
912
|
+
};
|
|
877
913
|
export type MutationUpdateDeviceStatusArgs = {
|
|
878
914
|
data?: InputMaybe<StatusInput>;
|
|
879
915
|
id: Scalars['ID']['input'];
|
|
@@ -884,9 +920,39 @@ export type MutationUpdateManyAlertEmailsArgs = {
|
|
|
884
920
|
export type MutationUpdateManyDevicesArgs = {
|
|
885
921
|
data?: InputMaybe<Array<InputMaybe<UpdateManyDevicesInput>>>;
|
|
886
922
|
};
|
|
923
|
+
export type MutationUpdateManyNguAlertEmailsArgs = {
|
|
924
|
+
data?: InputMaybe<Array<InputMaybe<NguAlertEmailInput>>>;
|
|
925
|
+
};
|
|
887
926
|
export type MutationUpdateMonthlyReportArgs = {
|
|
888
927
|
data?: InputMaybe<MonthlyReportInput>;
|
|
889
928
|
};
|
|
929
|
+
export type MutationUpdateNguAlertEmailArgs = {
|
|
930
|
+
data?: InputMaybe<NguAlertEmailInput>;
|
|
931
|
+
};
|
|
932
|
+
export type MutationUpdateNguCompanyArgs = {
|
|
933
|
+
data?: InputMaybe<NguCompanyInput>;
|
|
934
|
+
id: Scalars['ID']['input'];
|
|
935
|
+
};
|
|
936
|
+
export type MutationUpdateNguCompanyStatusArgs = {
|
|
937
|
+
data?: InputMaybe<NguStatusInput>;
|
|
938
|
+
id: Scalars['ID']['input'];
|
|
939
|
+
};
|
|
940
|
+
export type MutationUpdateNguDeviceArgs = {
|
|
941
|
+
data?: InputMaybe<NguDeviceInput>;
|
|
942
|
+
id: Scalars['ID']['input'];
|
|
943
|
+
};
|
|
944
|
+
export type MutationUpdateNguDeviceStatusArgs = {
|
|
945
|
+
data?: InputMaybe<NguStatusInput>;
|
|
946
|
+
id: Scalars['ID']['input'];
|
|
947
|
+
};
|
|
948
|
+
export type MutationUpdateNguUserArgs = {
|
|
949
|
+
data?: InputMaybe<NguUserInput>;
|
|
950
|
+
id: Scalars['ID']['input'];
|
|
951
|
+
};
|
|
952
|
+
export type MutationUpdateNguUserStatusArgs = {
|
|
953
|
+
data?: InputMaybe<NguStatusInput>;
|
|
954
|
+
id: Scalars['ID']['input'];
|
|
955
|
+
};
|
|
890
956
|
export type MutationUpdateUserArgs = {
|
|
891
957
|
data?: InputMaybe<UserInput>;
|
|
892
958
|
id: Scalars['ID']['input'];
|
|
@@ -898,6 +964,222 @@ export type MutationUpdateUserStatusArgs = {
|
|
|
898
964
|
export type MutationVerifyLoginArgs = {
|
|
899
965
|
data?: InputMaybe<LoginInput>;
|
|
900
966
|
};
|
|
967
|
+
export type NguAlertEmail = {
|
|
968
|
+
__typename?: 'NguAlertEmail';
|
|
969
|
+
day?: Maybe<Scalars['String']['output']>;
|
|
970
|
+
emailIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
971
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
972
|
+
lastSentTime?: Maybe<Scalars['String']['output']>;
|
|
973
|
+
reportName?: Maybe<Scalars['String']['output']>;
|
|
974
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
975
|
+
};
|
|
976
|
+
export type NguAlertEmailInput = {
|
|
977
|
+
day?: InputMaybe<Scalars['String']['input']>;
|
|
978
|
+
emailIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
979
|
+
lastSentTime?: InputMaybe<Scalars['String']['input']>;
|
|
980
|
+
reportName?: InputMaybe<Scalars['String']['input']>;
|
|
981
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
982
|
+
};
|
|
983
|
+
export type NguCompany = {
|
|
984
|
+
__typename?: 'NguCompany';
|
|
985
|
+
companyInfo?: Maybe<NguCompanyInfo>;
|
|
986
|
+
id: Scalars['ID']['output'];
|
|
987
|
+
};
|
|
988
|
+
export type NguCompanyInfo = {
|
|
989
|
+
__typename?: 'NguCompanyInfo';
|
|
990
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
991
|
+
end?: Maybe<Scalars['Date']['output']>;
|
|
992
|
+
licenseType?: Maybe<Scalars['String']['output']>;
|
|
993
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
994
|
+
start?: Maybe<Scalars['Date']['output']>;
|
|
995
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
996
|
+
};
|
|
997
|
+
export type NguCompanyInput = {
|
|
998
|
+
config?: InputMaybe<Scalars['String']['input']>;
|
|
999
|
+
end?: InputMaybe<Scalars['Date']['input']>;
|
|
1000
|
+
licenseType?: InputMaybe<Scalars['String']['input']>;
|
|
1001
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1002
|
+
start?: InputMaybe<Scalars['Date']['input']>;
|
|
1003
|
+
};
|
|
1004
|
+
export type NguCompanyListInput = {
|
|
1005
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1006
|
+
};
|
|
1007
|
+
export type NguDevice = {
|
|
1008
|
+
__typename?: 'NguDevice';
|
|
1009
|
+
deviceInfo?: Maybe<NguDeviceInfo>;
|
|
1010
|
+
id: Scalars['ID']['output'];
|
|
1011
|
+
threshold?: Maybe<NguDeviceThresholdInfo>;
|
|
1012
|
+
};
|
|
1013
|
+
export type NguDeviceInfo = {
|
|
1014
|
+
__typename?: 'NguDeviceInfo';
|
|
1015
|
+
company?: Maybe<NguCompany>;
|
|
1016
|
+
deviceType?: Maybe<Scalars['String']['output']>;
|
|
1017
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
1018
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1019
|
+
runHrs?: Maybe<Scalars['String']['output']>;
|
|
1020
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1021
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
1022
|
+
totalWork?: Maybe<Scalars['String']['output']>;
|
|
1023
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
1024
|
+
};
|
|
1025
|
+
export type NguDeviceInput = {
|
|
1026
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1027
|
+
deviceType?: InputMaybe<Scalars['String']['input']>;
|
|
1028
|
+
drainValve?: InputMaybe<Scalars['String']['input']>;
|
|
1029
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
1030
|
+
maxAirPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1031
|
+
maxAirTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1032
|
+
maxBoosterInletPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1033
|
+
maxBoosterInletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1034
|
+
maxBoosterOutletPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1035
|
+
maxBoosterOutletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1036
|
+
maxFlow?: InputMaybe<Scalars['String']['input']>;
|
|
1037
|
+
maxInletDewPoint?: InputMaybe<Scalars['String']['input']>;
|
|
1038
|
+
maxInletPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1039
|
+
maxInletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1040
|
+
maxOutletDewPoint?: InputMaybe<Scalars['String']['input']>;
|
|
1041
|
+
maxOutletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1042
|
+
maxPurity?: InputMaybe<Scalars['String']['input']>;
|
|
1043
|
+
maxRH?: InputMaybe<Scalars['String']['input']>;
|
|
1044
|
+
maxSCFM?: InputMaybe<Scalars['String']['input']>;
|
|
1045
|
+
minAirPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1046
|
+
minAirTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1047
|
+
minBoosterInletPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1048
|
+
minBoosterInletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1049
|
+
minBoosterOutletPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1050
|
+
minBoosterOutletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1051
|
+
minFlow?: InputMaybe<Scalars['String']['input']>;
|
|
1052
|
+
minInletDewPoint?: InputMaybe<Scalars['String']['input']>;
|
|
1053
|
+
minInletPressure?: InputMaybe<Scalars['String']['input']>;
|
|
1054
|
+
minInletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1055
|
+
minOutletDewPoint?: InputMaybe<Scalars['String']['input']>;
|
|
1056
|
+
minOutletTemp?: InputMaybe<Scalars['String']['input']>;
|
|
1057
|
+
minPurity?: InputMaybe<Scalars['String']['input']>;
|
|
1058
|
+
minRH?: InputMaybe<Scalars['String']['input']>;
|
|
1059
|
+
minSCFM?: InputMaybe<Scalars['String']['input']>;
|
|
1060
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1061
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
1062
|
+
topic?: InputMaybe<Scalars['String']['input']>;
|
|
1063
|
+
totalWork?: InputMaybe<Scalars['String']['input']>;
|
|
1064
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1065
|
+
};
|
|
1066
|
+
export type NguDeviceListInput = {
|
|
1067
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1068
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1069
|
+
};
|
|
1070
|
+
export type NguDeviceReport = {
|
|
1071
|
+
__typename?: 'NguDeviceReport';
|
|
1072
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
1073
|
+
};
|
|
1074
|
+
export type NguDeviceReportInput = {
|
|
1075
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
1076
|
+
};
|
|
1077
|
+
export type NguDeviceThresholdInfo = {
|
|
1078
|
+
__typename?: 'NguDeviceThresholdInfo';
|
|
1079
|
+
drainValve?: Maybe<Scalars['String']['output']>;
|
|
1080
|
+
maxAirPressure?: Maybe<Scalars['String']['output']>;
|
|
1081
|
+
maxAirTemp?: Maybe<Scalars['String']['output']>;
|
|
1082
|
+
maxBoosterInletPressure?: Maybe<Scalars['String']['output']>;
|
|
1083
|
+
maxBoosterInletTemp?: Maybe<Scalars['String']['output']>;
|
|
1084
|
+
maxBoosterOutletPressure?: Maybe<Scalars['String']['output']>;
|
|
1085
|
+
maxBoosterOutletTemp?: Maybe<Scalars['String']['output']>;
|
|
1086
|
+
maxFlow?: Maybe<Scalars['String']['output']>;
|
|
1087
|
+
maxInletDewPoint?: Maybe<Scalars['String']['output']>;
|
|
1088
|
+
maxInletPressure?: Maybe<Scalars['String']['output']>;
|
|
1089
|
+
maxInletTemp?: Maybe<Scalars['String']['output']>;
|
|
1090
|
+
maxOutletDewPoint?: Maybe<Scalars['String']['output']>;
|
|
1091
|
+
maxOutletTemp?: Maybe<Scalars['String']['output']>;
|
|
1092
|
+
maxPurity?: Maybe<Scalars['String']['output']>;
|
|
1093
|
+
maxRH?: Maybe<Scalars['String']['output']>;
|
|
1094
|
+
maxSCFM?: Maybe<Scalars['String']['output']>;
|
|
1095
|
+
minAirPressure?: Maybe<Scalars['String']['output']>;
|
|
1096
|
+
minAirTemp?: Maybe<Scalars['String']['output']>;
|
|
1097
|
+
minBoosterInletPressure?: Maybe<Scalars['String']['output']>;
|
|
1098
|
+
minBoosterInletTemp?: Maybe<Scalars['String']['output']>;
|
|
1099
|
+
minBoosterOutletPressure?: Maybe<Scalars['String']['output']>;
|
|
1100
|
+
minBoosterOutletTemp?: Maybe<Scalars['String']['output']>;
|
|
1101
|
+
minFlow?: Maybe<Scalars['String']['output']>;
|
|
1102
|
+
minInletDewPoint?: Maybe<Scalars['String']['output']>;
|
|
1103
|
+
minInletPressure?: Maybe<Scalars['String']['output']>;
|
|
1104
|
+
minInletTemp?: Maybe<Scalars['String']['output']>;
|
|
1105
|
+
minOutletDewPoint?: Maybe<Scalars['String']['output']>;
|
|
1106
|
+
minOutletTemp?: Maybe<Scalars['String']['output']>;
|
|
1107
|
+
minPurity?: Maybe<Scalars['String']['output']>;
|
|
1108
|
+
minRH?: Maybe<Scalars['String']['output']>;
|
|
1109
|
+
minSCFM?: Maybe<Scalars['String']['output']>;
|
|
1110
|
+
};
|
|
1111
|
+
export type NguDevicesReportInput = {
|
|
1112
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1113
|
+
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1114
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1115
|
+
};
|
|
1116
|
+
export type NguStatusInput = {
|
|
1117
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1118
|
+
};
|
|
1119
|
+
export type NguTempDataAlertProps = {
|
|
1120
|
+
__typename?: 'NguTempDataAlertProps';
|
|
1121
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
1122
|
+
max?: Maybe<Scalars['String']['output']>;
|
|
1123
|
+
min?: Maybe<Scalars['String']['output']>;
|
|
1124
|
+
};
|
|
1125
|
+
export type NguTempDataTable = {
|
|
1126
|
+
__typename?: 'NguTempDataTable';
|
|
1127
|
+
BIP?: Maybe<NguTempDataAlertProps>;
|
|
1128
|
+
BIT?: Maybe<NguTempDataAlertProps>;
|
|
1129
|
+
BOP?: Maybe<NguTempDataAlertProps>;
|
|
1130
|
+
BOT?: Maybe<NguTempDataAlertProps>;
|
|
1131
|
+
DV?: Maybe<Scalars['String']['output']>;
|
|
1132
|
+
FAP?: Maybe<NguTempDataAlertProps>;
|
|
1133
|
+
FAT?: Maybe<NguTempDataAlertProps>;
|
|
1134
|
+
FL?: Maybe<NguTempDataAlertProps>;
|
|
1135
|
+
IDP?: Maybe<NguTempDataAlertProps>;
|
|
1136
|
+
IP?: Maybe<NguTempDataAlertProps>;
|
|
1137
|
+
IT?: Maybe<NguTempDataAlertProps>;
|
|
1138
|
+
LAT?: Maybe<Scalars['String']['output']>;
|
|
1139
|
+
LON?: Maybe<Scalars['String']['output']>;
|
|
1140
|
+
ODP?: Maybe<NguTempDataAlertProps>;
|
|
1141
|
+
OT?: Maybe<NguTempDataAlertProps>;
|
|
1142
|
+
PU?: Maybe<NguTempDataAlertProps>;
|
|
1143
|
+
RH?: Maybe<NguTempDataAlertProps>;
|
|
1144
|
+
SCFM?: Maybe<NguTempDataAlertProps>;
|
|
1145
|
+
deviceId?: Maybe<Scalars['ID']['output']>;
|
|
1146
|
+
lastUpdatedTime?: Maybe<Scalars['String']['output']>;
|
|
1147
|
+
pkt?: Maybe<Scalars['String']['output']>;
|
|
1148
|
+
readingEndDate?: Maybe<Scalars['String']['output']>;
|
|
1149
|
+
readingStartDate?: Maybe<Scalars['String']['output']>;
|
|
1150
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1151
|
+
};
|
|
1152
|
+
export type NguUser = {
|
|
1153
|
+
__typename?: 'NguUser';
|
|
1154
|
+
id: Scalars['ID']['output'];
|
|
1155
|
+
nguUserInfo?: Maybe<NguUserInfo>;
|
|
1156
|
+
};
|
|
1157
|
+
export type NguUserInfo = {
|
|
1158
|
+
__typename?: 'NguUserInfo';
|
|
1159
|
+
companyId: Scalars['ID']['output'];
|
|
1160
|
+
dob?: Maybe<Scalars['Date']['output']>;
|
|
1161
|
+
email?: Maybe<Scalars['EmailAddress']['output']>;
|
|
1162
|
+
firstName?: Maybe<Scalars['String']['output']>;
|
|
1163
|
+
lastName?: Maybe<Scalars['String']['output']>;
|
|
1164
|
+
phone?: Maybe<Scalars['PhoneNumber']['output']>;
|
|
1165
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
1166
|
+
userType?: Maybe<Scalars['String']['output']>;
|
|
1167
|
+
};
|
|
1168
|
+
export type NguUserInput = {
|
|
1169
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1170
|
+
dob?: InputMaybe<Scalars['Date']['input']>;
|
|
1171
|
+
email?: InputMaybe<Scalars['EmailAddress']['input']>;
|
|
1172
|
+
firstName?: InputMaybe<Scalars['String']['input']>;
|
|
1173
|
+
lastName?: InputMaybe<Scalars['String']['input']>;
|
|
1174
|
+
password?: InputMaybe<Scalars['String']['input']>;
|
|
1175
|
+
phone?: InputMaybe<Scalars['PhoneNumber']['input']>;
|
|
1176
|
+
userType?: InputMaybe<Scalars['String']['input']>;
|
|
1177
|
+
};
|
|
1178
|
+
export type NguUserListInput = {
|
|
1179
|
+
companyId?: InputMaybe<Scalars['String']['input']>;
|
|
1180
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1181
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
1182
|
+
};
|
|
901
1183
|
export type OffTimeInput = {
|
|
902
1184
|
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
903
1185
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -960,6 +1242,7 @@ export type Query = {
|
|
|
960
1242
|
fetchCompanyById?: Maybe<Company>;
|
|
961
1243
|
fetchCompanyList?: Maybe<Array<Maybe<Company>>>;
|
|
962
1244
|
fetchDashboardData?: Maybe<DashboardData>;
|
|
1245
|
+
fetchDepartments?: Maybe<Array<Maybe<Departments>>>;
|
|
963
1246
|
fetchDeviceActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
|
|
964
1247
|
fetchDeviceAnalytics?: Maybe<Array<Maybe<DeviceAnalytics>>>;
|
|
965
1248
|
fetchDeviceAnalyticsByDateRange?: Maybe<Array<Maybe<DeviceAnalytics>>>;
|
|
@@ -987,6 +1270,18 @@ export type Query = {
|
|
|
987
1270
|
fetchMonthlyReportByDeviceId?: Maybe<TempDataTable>;
|
|
988
1271
|
fetchMonthlyUtilizationDashboard?: Maybe<Array<Maybe<MonthlyUtilizationDashboard>>>;
|
|
989
1272
|
fetchMonthlyUtilizationDataForGraph?: Maybe<Array<Maybe<MonthlyUtilizationDataForGraph>>>;
|
|
1273
|
+
fetchNguAlertEmail?: Maybe<Array<Maybe<NguAlertEmail>>>;
|
|
1274
|
+
fetchNguCompanyById?: Maybe<NguCompany>;
|
|
1275
|
+
fetchNguCompanyList?: Maybe<Array<Maybe<NguCompany>>>;
|
|
1276
|
+
fetchNguDeviceById?: Maybe<NguDevice>;
|
|
1277
|
+
fetchNguDeviceList?: Maybe<Array<Maybe<NguDevice>>>;
|
|
1278
|
+
fetchNguDeviceReport?: Maybe<NguDeviceReport>;
|
|
1279
|
+
fetchNguDevicesReport?: Maybe<NguDeviceReport>;
|
|
1280
|
+
fetchNguTempDataTable?: Maybe<Array<Maybe<NguTempDataTable>>>;
|
|
1281
|
+
fetchNguTempDataTableByDeviceId?: Maybe<NguTempDataTable>;
|
|
1282
|
+
fetchNguUserById?: Maybe<NguUser>;
|
|
1283
|
+
fetchNguUserList?: Maybe<Array<Maybe<NguUser>>>;
|
|
1284
|
+
fetchNguUsers?: Maybe<Array<Maybe<NguUser>>>;
|
|
990
1285
|
fetchOffTimeByDeviceId?: Maybe<Array<Maybe<OffTimeReport>>>;
|
|
991
1286
|
fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
|
|
992
1287
|
fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
|
|
@@ -1086,6 +1381,33 @@ export type QueryFetchMonthlyUtilizationDashboardArgs = {
|
|
|
1086
1381
|
export type QueryFetchMonthlyUtilizationDataForGraphArgs = {
|
|
1087
1382
|
queryData?: InputMaybe<MonthlyUtilizationDataForGraphInput>;
|
|
1088
1383
|
};
|
|
1384
|
+
export type QueryFetchNguCompanyByIdArgs = {
|
|
1385
|
+
id: Scalars['ID']['input'];
|
|
1386
|
+
};
|
|
1387
|
+
export type QueryFetchNguCompanyListArgs = {
|
|
1388
|
+
queryData?: InputMaybe<NguCompanyListInput>;
|
|
1389
|
+
};
|
|
1390
|
+
export type QueryFetchNguDeviceByIdArgs = {
|
|
1391
|
+
id: Scalars['ID']['input'];
|
|
1392
|
+
};
|
|
1393
|
+
export type QueryFetchNguDeviceListArgs = {
|
|
1394
|
+
queryData?: InputMaybe<NguDeviceListInput>;
|
|
1395
|
+
};
|
|
1396
|
+
export type QueryFetchNguDeviceReportArgs = {
|
|
1397
|
+
queryData?: InputMaybe<NguDeviceReportInput>;
|
|
1398
|
+
};
|
|
1399
|
+
export type QueryFetchNguDevicesReportArgs = {
|
|
1400
|
+
queryData?: InputMaybe<NguDevicesReportInput>;
|
|
1401
|
+
};
|
|
1402
|
+
export type QueryFetchNguTempDataTableByDeviceIdArgs = {
|
|
1403
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1404
|
+
};
|
|
1405
|
+
export type QueryFetchNguUserByIdArgs = {
|
|
1406
|
+
id: Scalars['ID']['input'];
|
|
1407
|
+
};
|
|
1408
|
+
export type QueryFetchNguUserListArgs = {
|
|
1409
|
+
queryData?: InputMaybe<NguUserListInput>;
|
|
1410
|
+
};
|
|
1089
1411
|
export type QueryFetchOffTimeByDeviceIdArgs = {
|
|
1090
1412
|
queryData?: InputMaybe<OffTimeInput>;
|
|
1091
1413
|
};
|
|
@@ -1216,6 +1538,11 @@ export type TimelineChartPageDataFetchInput = {
|
|
|
1216
1538
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
1217
1539
|
devicesHourlyPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
1218
1540
|
};
|
|
1541
|
+
export type UpdateDeviceAlertStatusInput = {
|
|
1542
|
+
hourId?: InputMaybe<Scalars['Int']['input']>;
|
|
1543
|
+
reportId: Scalars['ID']['input'];
|
|
1544
|
+
value?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
|
|
1545
|
+
};
|
|
1219
1546
|
export type UpdateManyDevicesInput = {
|
|
1220
1547
|
data?: InputMaybe<DeviceInput>;
|
|
1221
1548
|
id: Scalars['ID']['input'];
|