@mjtech-ems/schema 1.1.8 → 1.2.0
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 +344 -110
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/mergedSchema.d.ts.map +1 -1
- package/dist/mergedSchema.js +2 -1
- package/dist/mjtech-ems.d.ts.map +1 -1
- package/dist/mjtech-ems.js +1 -1
- package/dist/mjtech-eqms.d.ts +3 -0
- package/dist/mjtech-eqms.d.ts.map +1 -0
- package/dist/mjtech-eqms.js +10 -0
- package/dist/mjtech-ngu.d.ts.map +1 -1
- package/dist/mjtech-ngu.js +1 -1
- package/package.json +1 -1
|
@@ -74,6 +74,23 @@ export type Scalars = {
|
|
|
74
74
|
output: any;
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
|
+
export type ActiveApps = {
|
|
78
|
+
__typename?: 'ActiveApps';
|
|
79
|
+
allowedPages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
80
|
+
appName?: Maybe<Scalars['String']['output']>;
|
|
81
|
+
end?: Maybe<Scalars['Date']['output']>;
|
|
82
|
+
licenseType?: Maybe<Scalars['String']['output']>;
|
|
83
|
+
licensed?: Maybe<Scalars['Int']['output']>;
|
|
84
|
+
start?: Maybe<Scalars['Date']['output']>;
|
|
85
|
+
};
|
|
86
|
+
export type ActiveAppsInput = {
|
|
87
|
+
allowedPages?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88
|
+
appName?: InputMaybe<Scalars['String']['input']>;
|
|
89
|
+
end?: InputMaybe<Scalars['Date']['input']>;
|
|
90
|
+
licenseType?: InputMaybe<Scalars['String']['input']>;
|
|
91
|
+
licensed?: InputMaybe<Scalars['Int']['input']>;
|
|
92
|
+
start?: InputMaybe<Scalars['Date']['input']>;
|
|
93
|
+
};
|
|
77
94
|
export type AlertEmail = {
|
|
78
95
|
__typename?: 'AlertEmail';
|
|
79
96
|
day?: Maybe<Scalars['String']['output']>;
|
|
@@ -154,17 +171,23 @@ export type Company = {
|
|
|
154
171
|
};
|
|
155
172
|
export type CompanyInfo = {
|
|
156
173
|
__typename?: 'CompanyInfo';
|
|
174
|
+
activeApps?: Maybe<Array<Maybe<ActiveApps>>>;
|
|
175
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
157
176
|
config?: Maybe<Scalars['String']['output']>;
|
|
158
177
|
end?: Maybe<Scalars['Date']['output']>;
|
|
159
178
|
licenseType?: Maybe<Scalars['String']['output']>;
|
|
179
|
+
licensedUsers?: Maybe<Scalars['Int']['output']>;
|
|
160
180
|
name?: Maybe<Scalars['String']['output']>;
|
|
161
181
|
start?: Maybe<Scalars['Date']['output']>;
|
|
162
182
|
status?: Maybe<Scalars['String']['output']>;
|
|
163
183
|
};
|
|
164
184
|
export type CompanyInput = {
|
|
185
|
+
activeApps?: InputMaybe<Array<InputMaybe<ActiveAppsInput>>>;
|
|
186
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
165
187
|
config?: InputMaybe<Scalars['String']['input']>;
|
|
166
188
|
end?: InputMaybe<Scalars['Date']['input']>;
|
|
167
189
|
licenseType?: InputMaybe<Scalars['String']['input']>;
|
|
190
|
+
licensedUsers?: InputMaybe<Scalars['Int']['input']>;
|
|
168
191
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
169
192
|
start?: InputMaybe<Scalars['Date']['input']>;
|
|
170
193
|
};
|
|
@@ -195,17 +218,27 @@ export type DashboardDataFetchInput = {
|
|
|
195
218
|
};
|
|
196
219
|
export type Departments = {
|
|
197
220
|
__typename?: 'Departments';
|
|
221
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
222
|
+
companyId?: Maybe<Scalars['ID']['output']>;
|
|
198
223
|
department?: Maybe<Scalars['String']['output']>;
|
|
199
224
|
id: Scalars['ID']['output'];
|
|
225
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
226
|
+
userAllowedPages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
227
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
200
228
|
};
|
|
201
229
|
export type DepartmentsInput = {
|
|
230
|
+
appType?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
202
232
|
department?: InputMaybe<Scalars['String']['input']>;
|
|
233
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
234
|
+
userAllowedPages?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
235
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
203
236
|
};
|
|
204
237
|
export type Device = {
|
|
205
238
|
__typename?: 'Device';
|
|
206
239
|
deviceInfo?: Maybe<DeviceInfo>;
|
|
207
240
|
id: Scalars['ID']['output'];
|
|
208
|
-
threshold?: Maybe<
|
|
241
|
+
threshold?: Maybe<Scalars['JSON']['output']>;
|
|
209
242
|
};
|
|
210
243
|
export type DeviceActiveVsDownTime = {
|
|
211
244
|
__typename?: 'DeviceActiveVsDownTime';
|
|
@@ -317,7 +350,7 @@ export type DeviceHourlyDataFetchInput = {
|
|
|
317
350
|
export type DeviceHourlyReportInput = {
|
|
318
351
|
deviceInfo?: InputMaybe<DeviceInfoInput>;
|
|
319
352
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
320
|
-
threshold?: InputMaybe<
|
|
353
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
321
354
|
};
|
|
322
355
|
export type DeviceInfo = {
|
|
323
356
|
__typename?: 'DeviceInfo';
|
|
@@ -327,8 +360,12 @@ export type DeviceInfo = {
|
|
|
327
360
|
master?: Maybe<Scalars['String']['output']>;
|
|
328
361
|
model?: Maybe<Scalars['String']['output']>;
|
|
329
362
|
name?: Maybe<Scalars['String']['output']>;
|
|
330
|
-
|
|
363
|
+
offTimeTracker?: Maybe<Scalars['String']['output']>;
|
|
364
|
+
prodCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
365
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
331
366
|
registerConfig?: Maybe<Array<Maybe<RegisterConfig>>>;
|
|
367
|
+
runHrs?: Maybe<Scalars['String']['output']>;
|
|
368
|
+
runHrsCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
332
369
|
slaves?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
333
370
|
status?: Maybe<Scalars['String']['output']>;
|
|
334
371
|
topic?: Maybe<Scalars['String']['output']>;
|
|
@@ -341,33 +378,36 @@ export type DeviceInfoInput = {
|
|
|
341
378
|
master?: InputMaybe<Scalars['String']['input']>;
|
|
342
379
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
343
380
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
344
|
-
|
|
381
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
382
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
383
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
345
384
|
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
385
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
386
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
346
387
|
slaves?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
347
388
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
389
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
348
390
|
topic?: InputMaybe<Scalars['String']['input']>;
|
|
349
391
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
350
392
|
};
|
|
351
393
|
export type DeviceInput = {
|
|
352
394
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
353
395
|
deviceType?: InputMaybe<Scalars['String']['input']>;
|
|
354
|
-
iMax?: InputMaybe<Scalars['String']['input']>;
|
|
355
|
-
iMin?: InputMaybe<Scalars['String']['input']>;
|
|
356
|
-
kwMax?: InputMaybe<Scalars['String']['input']>;
|
|
357
|
-
kwMin?: InputMaybe<Scalars['String']['input']>;
|
|
358
|
-
kwRated?: InputMaybe<Scalars['String']['input']>;
|
|
359
396
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
360
397
|
master?: InputMaybe<Scalars['String']['input']>;
|
|
361
398
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
362
399
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
363
|
-
|
|
400
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
401
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
402
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
364
403
|
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
404
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
405
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
365
406
|
slaves?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
366
407
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
408
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
367
409
|
topic?: InputMaybe<Scalars['String']['input']>;
|
|
368
410
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
369
|
-
vMax?: InputMaybe<Scalars['String']['input']>;
|
|
370
|
-
vMin?: InputMaybe<Scalars['String']['input']>;
|
|
371
411
|
};
|
|
372
412
|
export type DeviceListInput = {
|
|
373
413
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -540,6 +580,10 @@ export type DownTimeReport = {
|
|
|
540
580
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
541
581
|
totalDownTime?: Maybe<Scalars['String']['output']>;
|
|
542
582
|
};
|
|
583
|
+
export type EditManyPartsInput = {
|
|
584
|
+
id: Scalars['ID']['input'];
|
|
585
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
586
|
+
};
|
|
543
587
|
export type EndKwHForDevice = {
|
|
544
588
|
__typename?: 'EndKwHForDevice';
|
|
545
589
|
EndKwH?: Maybe<Array<Maybe<Scalars['Float']['output']>>>;
|
|
@@ -552,6 +596,111 @@ export type EndKwHForDeviceFetchInput = {
|
|
|
552
596
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
553
597
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
554
598
|
};
|
|
599
|
+
export type EqmsCompleteReport = {
|
|
600
|
+
__typename?: 'EqmsCompleteReport';
|
|
601
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
602
|
+
};
|
|
603
|
+
export type EqmsCompleteReportInput = {
|
|
604
|
+
deviceId?: InputMaybe<Scalars['String']['input']>;
|
|
605
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
606
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
607
|
+
};
|
|
608
|
+
export type EqmsCumulativeReport = {
|
|
609
|
+
__typename?: 'EqmsCumulativeReport';
|
|
610
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
611
|
+
};
|
|
612
|
+
export type EqmsCumulativeReportInput = {
|
|
613
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
614
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
615
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
616
|
+
};
|
|
617
|
+
export type EqmsDevice = {
|
|
618
|
+
__typename?: 'EqmsDevice';
|
|
619
|
+
deviceInfo?: Maybe<EqmsDeviceInfo>;
|
|
620
|
+
id: Scalars['ID']['output'];
|
|
621
|
+
threshold?: Maybe<Scalars['JSON']['output']>;
|
|
622
|
+
};
|
|
623
|
+
export type EqmsDeviceInfo = {
|
|
624
|
+
__typename?: 'EqmsDeviceInfo';
|
|
625
|
+
SLID?: Maybe<Scalars['String']['output']>;
|
|
626
|
+
company?: Maybe<Company>;
|
|
627
|
+
deviceType?: Maybe<Scalars['String']['output']>;
|
|
628
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
629
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
630
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
631
|
+
offTimeTracker?: Maybe<Scalars['String']['output']>;
|
|
632
|
+
prodCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
633
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
634
|
+
registerConfig?: Maybe<Array<Maybe<RegisterConfig>>>;
|
|
635
|
+
runHrs?: Maybe<Scalars['String']['output']>;
|
|
636
|
+
runHrsCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
637
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
638
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
639
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
640
|
+
};
|
|
641
|
+
export type EqmsDeviceInput = {
|
|
642
|
+
SLID?: InputMaybe<Scalars['String']['input']>;
|
|
643
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
644
|
+
deviceType?: InputMaybe<Scalars['String']['input']>;
|
|
645
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
646
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
|
647
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
648
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
649
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
650
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
651
|
+
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
652
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
653
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
654
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
655
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
656
|
+
topic?: InputMaybe<Scalars['String']['input']>;
|
|
657
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
658
|
+
};
|
|
659
|
+
export type EqmsDeviceListInput = {
|
|
660
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
661
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
662
|
+
};
|
|
663
|
+
export type EqmsDevicesAlertsInput = {
|
|
664
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
665
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
666
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
667
|
+
};
|
|
668
|
+
export type EqmsLiveGraphPageData = {
|
|
669
|
+
__typename?: 'EqmsLiveGraphPageData';
|
|
670
|
+
EqmsLiveReport?: Maybe<EqmsLiveReport>;
|
|
671
|
+
devicesAlerts?: Maybe<Scalars['JSON']['output']>;
|
|
672
|
+
};
|
|
673
|
+
export type EqmsLiveGraphPageDataFetchInput = {
|
|
674
|
+
EqmsLiveReport?: InputMaybe<EqmsLiveReportInput>;
|
|
675
|
+
devicesAlerts?: InputMaybe<EqmsDevicesAlertsInput>;
|
|
676
|
+
};
|
|
677
|
+
export type EqmsLiveReport = {
|
|
678
|
+
__typename?: 'EqmsLiveReport';
|
|
679
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
680
|
+
};
|
|
681
|
+
export type EqmsLiveReportInput = {
|
|
682
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
683
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
684
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
685
|
+
};
|
|
686
|
+
export type EqmsTempDataTable = {
|
|
687
|
+
__typename?: 'EqmsTempDataTable';
|
|
688
|
+
LAT?: Maybe<Scalars['String']['output']>;
|
|
689
|
+
LON?: Maybe<Scalars['String']['output']>;
|
|
690
|
+
alerts?: Maybe<Scalars['JSON']['output']>;
|
|
691
|
+
deviceId?: Maybe<Scalars['ID']['output']>;
|
|
692
|
+
endCount?: Maybe<Scalars['String']['output']>;
|
|
693
|
+
lastUpdatedTime?: Maybe<Scalars['String']['output']>;
|
|
694
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
695
|
+
productivityArray?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
696
|
+
readingEndDate?: Maybe<Scalars['String']['output']>;
|
|
697
|
+
readingStartDate?: Maybe<Scalars['String']['output']>;
|
|
698
|
+
startCount?: Maybe<Scalars['String']['output']>;
|
|
699
|
+
startRunHr?: Maybe<Scalars['String']['output']>;
|
|
700
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
701
|
+
totalCount?: Maybe<Scalars['String']['output']>;
|
|
702
|
+
totalHrs?: Maybe<Scalars['String']['output']>;
|
|
703
|
+
};
|
|
555
704
|
export declare enum ErrorType {
|
|
556
705
|
BAD_REQUEST = "BAD_REQUEST",
|
|
557
706
|
BAD_USER_INPUT = "BAD_USER_INPUT",
|
|
@@ -706,6 +855,11 @@ export type LocationMapPageDataFetchInput = {
|
|
|
706
855
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
707
856
|
devicesPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
708
857
|
};
|
|
858
|
+
export type Locations = {
|
|
859
|
+
__typename?: 'Locations';
|
|
860
|
+
LAT?: Maybe<Scalars['String']['output']>;
|
|
861
|
+
LON?: Maybe<Scalars['String']['output']>;
|
|
862
|
+
};
|
|
709
863
|
export type LoginInput = {
|
|
710
864
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
711
865
|
password?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -719,6 +873,7 @@ export type LoginResponse = {
|
|
|
719
873
|
};
|
|
720
874
|
export type LoginSuccessResponse = {
|
|
721
875
|
__typename?: 'LoginSuccessResponse';
|
|
876
|
+
companyId?: Maybe<Scalars['ID']['output']>;
|
|
722
877
|
companyInfo?: Maybe<CompanyInfo>;
|
|
723
878
|
email?: Maybe<Scalars['EmailAddress']['output']>;
|
|
724
879
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
@@ -728,6 +883,14 @@ export type LoginSuccessResponse = {
|
|
|
728
883
|
userType?: Maybe<Scalars['String']['output']>;
|
|
729
884
|
};
|
|
730
885
|
export type LoginUserResponse = GeneralResponse | LoginResponse;
|
|
886
|
+
export type Machines = {
|
|
887
|
+
__typename?: 'Machines';
|
|
888
|
+
id: Scalars['ID']['output'];
|
|
889
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
890
|
+
};
|
|
891
|
+
export type MachinesInput = {
|
|
892
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
893
|
+
};
|
|
731
894
|
export type MonthlyReportInput = {
|
|
732
895
|
deviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
733
896
|
deviceName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -792,20 +955,36 @@ export type MonthlyUtilizationDataForGraphInput = {
|
|
|
792
955
|
};
|
|
793
956
|
export type Mutation = {
|
|
794
957
|
__typename?: 'Mutation';
|
|
958
|
+
addAllNewStorage?: Maybe<GeneralResponse>;
|
|
959
|
+
addAllNewUiCustomNames?: Maybe<GeneralResponse>;
|
|
795
960
|
addNewDepartment?: Maybe<GeneralResponse>;
|
|
961
|
+
addNewMachine?: Maybe<GeneralResponse>;
|
|
962
|
+
addNewPart?: Maybe<GeneralResponse>;
|
|
963
|
+
addNewStorage?: Maybe<GeneralResponse>;
|
|
964
|
+
addNewUiCustomName?: Maybe<GeneralResponse>;
|
|
796
965
|
changePassword?: Maybe<GeneralResponse>;
|
|
797
966
|
createAlert?: Maybe<GeneralResponse>;
|
|
798
967
|
createAlertEmail?: Maybe<GeneralResponse>;
|
|
799
968
|
createCompany?: Maybe<GeneralResponse>;
|
|
800
969
|
createDevice?: Maybe<GeneralResponse>;
|
|
970
|
+
createEqmsDevice?: Maybe<GeneralResponse>;
|
|
801
971
|
createNguAlertEmail?: Maybe<GeneralResponse>;
|
|
802
972
|
createNguCompany?: Maybe<GeneralResponse>;
|
|
803
973
|
createNguDevice?: Maybe<GeneralResponse>;
|
|
804
974
|
createNguUser?: Maybe<GeneralResponse>;
|
|
805
975
|
createUser?: Maybe<GeneralResponse>;
|
|
806
976
|
deleteDepartment?: Maybe<GeneralResponse>;
|
|
977
|
+
deleteEqmsDevice?: Maybe<GeneralResponse>;
|
|
978
|
+
deleteMachine?: Maybe<GeneralResponse>;
|
|
979
|
+
deletePart?: Maybe<GeneralResponse>;
|
|
980
|
+
deleteStorage?: Maybe<GeneralResponse>;
|
|
807
981
|
deleteUserSession?: Maybe<GeneralResponse>;
|
|
808
982
|
editDepartment?: Maybe<GeneralResponse>;
|
|
983
|
+
editMachine?: Maybe<GeneralResponse>;
|
|
984
|
+
editManyParts?: Maybe<GeneralResponse>;
|
|
985
|
+
editPart?: Maybe<GeneralResponse>;
|
|
986
|
+
editStorage?: Maybe<GeneralResponse>;
|
|
987
|
+
editUiCustomName?: Maybe<GeneralResponse>;
|
|
809
988
|
forgotPassword?: Maybe<GeneralResponse>;
|
|
810
989
|
generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
|
|
811
990
|
sendEmail?: Maybe<GeneralResponse>;
|
|
@@ -817,9 +996,12 @@ export type Mutation = {
|
|
|
817
996
|
updateDevice?: Maybe<GeneralResponse>;
|
|
818
997
|
updateDeviceAlertStatus?: Maybe<GeneralResponse>;
|
|
819
998
|
updateDeviceStatus?: Maybe<GeneralResponse>;
|
|
999
|
+
updateEqmsDevice?: Maybe<GeneralResponse>;
|
|
1000
|
+
updateEqmsDeviceStatus?: Maybe<GeneralResponse>;
|
|
820
1001
|
updateManyAlertEmails?: Maybe<GeneralResponse>;
|
|
821
1002
|
updateManyDevices?: Maybe<GeneralResponse>;
|
|
822
1003
|
updateManyNguAlertEmails?: Maybe<GeneralResponse>;
|
|
1004
|
+
updateManyUsers?: Maybe<GeneralResponse>;
|
|
823
1005
|
updateMonthlyReport?: Maybe<GeneralResponse>;
|
|
824
1006
|
updateNguAlertEmail?: Maybe<GeneralResponse>;
|
|
825
1007
|
updateNguCompany?: Maybe<GeneralResponse>;
|
|
@@ -833,9 +1015,27 @@ export type Mutation = {
|
|
|
833
1015
|
verifyLogin?: Maybe<LoginUserResponse>;
|
|
834
1016
|
verifyLogout?: Maybe<GeneralResponse>;
|
|
835
1017
|
};
|
|
1018
|
+
export type MutationAddAllNewStorageArgs = {
|
|
1019
|
+
data?: InputMaybe<Array<InputMaybe<StorageInput>>>;
|
|
1020
|
+
};
|
|
1021
|
+
export type MutationAddAllNewUiCustomNamesArgs = {
|
|
1022
|
+
data?: InputMaybe<Array<InputMaybe<UiCustomNamesInput>>>;
|
|
1023
|
+
};
|
|
836
1024
|
export type MutationAddNewDepartmentArgs = {
|
|
837
1025
|
data?: InputMaybe<DepartmentsInput>;
|
|
838
1026
|
};
|
|
1027
|
+
export type MutationAddNewMachineArgs = {
|
|
1028
|
+
data?: InputMaybe<MachinesInput>;
|
|
1029
|
+
};
|
|
1030
|
+
export type MutationAddNewPartArgs = {
|
|
1031
|
+
data?: InputMaybe<PartInput>;
|
|
1032
|
+
};
|
|
1033
|
+
export type MutationAddNewStorageArgs = {
|
|
1034
|
+
data?: InputMaybe<StorageInput>;
|
|
1035
|
+
};
|
|
1036
|
+
export type MutationAddNewUiCustomNameArgs = {
|
|
1037
|
+
data?: InputMaybe<UiCustomNamesInput>;
|
|
1038
|
+
};
|
|
839
1039
|
export type MutationChangePasswordArgs = {
|
|
840
1040
|
data?: InputMaybe<PasswordInput>;
|
|
841
1041
|
};
|
|
@@ -851,6 +1051,9 @@ export type MutationCreateCompanyArgs = {
|
|
|
851
1051
|
export type MutationCreateDeviceArgs = {
|
|
852
1052
|
data?: InputMaybe<DeviceInput>;
|
|
853
1053
|
};
|
|
1054
|
+
export type MutationCreateEqmsDeviceArgs = {
|
|
1055
|
+
data?: InputMaybe<EqmsDeviceInput>;
|
|
1056
|
+
};
|
|
854
1057
|
export type MutationCreateNguAlertEmailArgs = {
|
|
855
1058
|
data?: InputMaybe<NguAlertEmailInput>;
|
|
856
1059
|
};
|
|
@@ -869,6 +1072,18 @@ export type MutationCreateUserArgs = {
|
|
|
869
1072
|
export type MutationDeleteDepartmentArgs = {
|
|
870
1073
|
id: Scalars['ID']['input'];
|
|
871
1074
|
};
|
|
1075
|
+
export type MutationDeleteEqmsDeviceArgs = {
|
|
1076
|
+
id: Scalars['ID']['input'];
|
|
1077
|
+
};
|
|
1078
|
+
export type MutationDeleteMachineArgs = {
|
|
1079
|
+
id: Scalars['ID']['input'];
|
|
1080
|
+
};
|
|
1081
|
+
export type MutationDeletePartArgs = {
|
|
1082
|
+
id: Scalars['ID']['input'];
|
|
1083
|
+
};
|
|
1084
|
+
export type MutationDeleteStorageArgs = {
|
|
1085
|
+
id: Scalars['ID']['input'];
|
|
1086
|
+
};
|
|
872
1087
|
export type MutationDeleteUserSessionArgs = {
|
|
873
1088
|
data?: InputMaybe<SessionInput>;
|
|
874
1089
|
};
|
|
@@ -876,6 +1091,25 @@ export type MutationEditDepartmentArgs = {
|
|
|
876
1091
|
data?: InputMaybe<DepartmentsInput>;
|
|
877
1092
|
id: Scalars['ID']['input'];
|
|
878
1093
|
};
|
|
1094
|
+
export type MutationEditMachineArgs = {
|
|
1095
|
+
data?: InputMaybe<MachinesInput>;
|
|
1096
|
+
id: Scalars['ID']['input'];
|
|
1097
|
+
};
|
|
1098
|
+
export type MutationEditManyPartsArgs = {
|
|
1099
|
+
data?: InputMaybe<Array<InputMaybe<EditManyPartsInput>>>;
|
|
1100
|
+
};
|
|
1101
|
+
export type MutationEditPartArgs = {
|
|
1102
|
+
data?: InputMaybe<PartInput>;
|
|
1103
|
+
id: Scalars['ID']['input'];
|
|
1104
|
+
};
|
|
1105
|
+
export type MutationEditStorageArgs = {
|
|
1106
|
+
data?: InputMaybe<StorageInput>;
|
|
1107
|
+
id: Scalars['ID']['input'];
|
|
1108
|
+
};
|
|
1109
|
+
export type MutationEditUiCustomNameArgs = {
|
|
1110
|
+
data?: InputMaybe<UiCustomNamesInput>;
|
|
1111
|
+
id: Scalars['ID']['input'];
|
|
1112
|
+
};
|
|
879
1113
|
export type MutationForgotPasswordArgs = {
|
|
880
1114
|
data?: InputMaybe<ForgotInput>;
|
|
881
1115
|
};
|
|
@@ -914,6 +1148,14 @@ export type MutationUpdateDeviceStatusArgs = {
|
|
|
914
1148
|
data?: InputMaybe<StatusInput>;
|
|
915
1149
|
id: Scalars['ID']['input'];
|
|
916
1150
|
};
|
|
1151
|
+
export type MutationUpdateEqmsDeviceArgs = {
|
|
1152
|
+
data?: InputMaybe<EqmsDeviceInput>;
|
|
1153
|
+
id: Scalars['ID']['input'];
|
|
1154
|
+
};
|
|
1155
|
+
export type MutationUpdateEqmsDeviceStatusArgs = {
|
|
1156
|
+
data?: InputMaybe<StatusInput>;
|
|
1157
|
+
id: Scalars['ID']['input'];
|
|
1158
|
+
};
|
|
917
1159
|
export type MutationUpdateManyAlertEmailsArgs = {
|
|
918
1160
|
data?: InputMaybe<Array<InputMaybe<AlertEmailInput>>>;
|
|
919
1161
|
};
|
|
@@ -923,6 +1165,9 @@ export type MutationUpdateManyDevicesArgs = {
|
|
|
923
1165
|
export type MutationUpdateManyNguAlertEmailsArgs = {
|
|
924
1166
|
data?: InputMaybe<Array<InputMaybe<NguAlertEmailInput>>>;
|
|
925
1167
|
};
|
|
1168
|
+
export type MutationUpdateManyUsersArgs = {
|
|
1169
|
+
data?: InputMaybe<Array<InputMaybe<UpdateManyUserInput>>>;
|
|
1170
|
+
};
|
|
926
1171
|
export type MutationUpdateMonthlyReportArgs = {
|
|
927
1172
|
data?: InputMaybe<MonthlyReportInput>;
|
|
928
1173
|
};
|
|
@@ -1008,7 +1253,7 @@ export type NguDevice = {
|
|
|
1008
1253
|
__typename?: 'NguDevice';
|
|
1009
1254
|
deviceInfo?: Maybe<NguDeviceInfo>;
|
|
1010
1255
|
id: Scalars['ID']['output'];
|
|
1011
|
-
threshold?: Maybe<
|
|
1256
|
+
threshold?: Maybe<Scalars['JSON']['output']>;
|
|
1012
1257
|
};
|
|
1013
1258
|
export type NguDeviceInfo = {
|
|
1014
1259
|
__typename?: 'NguDeviceInfo';
|
|
@@ -1016,51 +1261,29 @@ export type NguDeviceInfo = {
|
|
|
1016
1261
|
deviceType?: Maybe<Scalars['String']['output']>;
|
|
1017
1262
|
location?: Maybe<Scalars['String']['output']>;
|
|
1018
1263
|
name?: Maybe<Scalars['String']['output']>;
|
|
1264
|
+
offTimeTracker?: Maybe<Scalars['String']['output']>;
|
|
1265
|
+
prodCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
1266
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
1267
|
+
registerConfig?: Maybe<Array<Maybe<RegisterConfig>>>;
|
|
1019
1268
|
runHrs?: Maybe<Scalars['String']['output']>;
|
|
1269
|
+
runHrsCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
1020
1270
|
status?: Maybe<Scalars['String']['output']>;
|
|
1021
1271
|
topic?: Maybe<Scalars['String']['output']>;
|
|
1022
|
-
totalWork?: Maybe<Scalars['String']['output']>;
|
|
1023
1272
|
type?: Maybe<Scalars['String']['output']>;
|
|
1024
1273
|
};
|
|
1025
1274
|
export type NguDeviceInput = {
|
|
1026
1275
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1027
1276
|
deviceType?: InputMaybe<Scalars['String']['input']>;
|
|
1028
|
-
drainValve?: InputMaybe<Scalars['String']['input']>;
|
|
1029
1277
|
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
1278
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1279
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
1280
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
1281
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
1282
|
+
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
1061
1283
|
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
1284
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
1285
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
1062
1286
|
topic?: InputMaybe<Scalars['String']['input']>;
|
|
1063
|
-
totalWork?: InputMaybe<Scalars['String']['input']>;
|
|
1064
1287
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
1065
1288
|
};
|
|
1066
1289
|
export type NguDeviceListInput = {
|
|
@@ -1074,40 +1297,6 @@ export type NguDeviceReport = {
|
|
|
1074
1297
|
export type NguDeviceReportInput = {
|
|
1075
1298
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
1076
1299
|
};
|
|
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
1300
|
export type NguDevicesReportInput = {
|
|
1112
1301
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1113
1302
|
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -1185,14 +1374,13 @@ export type OffTimeInput = {
|
|
|
1185
1374
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1186
1375
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1187
1376
|
};
|
|
1188
|
-
export type
|
|
1189
|
-
__typename?: '
|
|
1190
|
-
|
|
1191
|
-
|
|
1377
|
+
export type Part = {
|
|
1378
|
+
__typename?: 'Part';
|
|
1379
|
+
id: Scalars['ID']['output'];
|
|
1380
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1192
1381
|
};
|
|
1193
|
-
export type
|
|
1194
|
-
|
|
1195
|
-
dbName?: InputMaybe<Scalars['String']['input']>;
|
|
1382
|
+
export type PartInput = {
|
|
1383
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1196
1384
|
};
|
|
1197
1385
|
export type PasswordInput = {
|
|
1198
1386
|
confirmPassword?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1258,6 +1446,14 @@ export type Query = {
|
|
|
1258
1446
|
fetchDevicesReport?: Maybe<DeviceReport>;
|
|
1259
1447
|
fetchDownTimeByDeviceId?: Maybe<Array<Maybe<DownTimeReport>>>;
|
|
1260
1448
|
fetchEndKwHForDevice?: Maybe<Array<Maybe<EndKwHForDevice>>>;
|
|
1449
|
+
fetchEqmsCompleteReport?: Maybe<EqmsCompleteReport>;
|
|
1450
|
+
fetchEqmsCumulativeReport?: Maybe<EqmsCumulativeReport>;
|
|
1451
|
+
fetchEqmsDeviceById?: Maybe<EqmsDevice>;
|
|
1452
|
+
fetchEqmsDeviceList?: Maybe<Array<Maybe<EqmsDevice>>>;
|
|
1453
|
+
fetchEqmsLiveGraphPageData?: Maybe<EqmsLiveGraphPageData>;
|
|
1454
|
+
fetchEqmsLiveReport?: Maybe<EqmsLiveReport>;
|
|
1455
|
+
fetchEqmsTempDataTable?: Maybe<Array<Maybe<EqmsTempDataTable>>>;
|
|
1456
|
+
fetchEqmsTempDataTableByDeviceId?: Maybe<EqmsTempDataTable>;
|
|
1261
1457
|
fetchHeatMapPageData?: Maybe<HeatMapPageData>;
|
|
1262
1458
|
fetchHourlyAlertReport?: Maybe<Array<Maybe<HourlyAlertReport>>>;
|
|
1263
1459
|
fetchHourlyUtilizationDashboard?: Maybe<Array<Maybe<HourlyUtilizationDashboard>>>;
|
|
@@ -1266,6 +1462,8 @@ export type Query = {
|
|
|
1266
1462
|
fetchLiveGraphPageData?: Maybe<LiveGraphPageData>;
|
|
1267
1463
|
fetchLoadMapPageData?: Maybe<LoadMapPageData>;
|
|
1268
1464
|
fetchLocationMapPageData?: Maybe<LocationMapPageData>;
|
|
1465
|
+
fetchLocations?: Maybe<Array<Maybe<Locations>>>;
|
|
1466
|
+
fetchMachines?: Maybe<Array<Maybe<Machines>>>;
|
|
1269
1467
|
fetchMonthlyReport?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1270
1468
|
fetchMonthlyReportByDeviceId?: Maybe<TempDataTable>;
|
|
1271
1469
|
fetchMonthlyUtilizationDashboard?: Maybe<Array<Maybe<MonthlyUtilizationDashboard>>>;
|
|
@@ -1283,12 +1481,15 @@ export type Query = {
|
|
|
1283
1481
|
fetchNguUserList?: Maybe<Array<Maybe<NguUser>>>;
|
|
1284
1482
|
fetchNguUsers?: Maybe<Array<Maybe<NguUser>>>;
|
|
1285
1483
|
fetchOffTimeByDeviceId?: Maybe<Array<Maybe<OffTimeReport>>>;
|
|
1484
|
+
fetchPartTable?: Maybe<Array<Maybe<Part>>>;
|
|
1286
1485
|
fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
|
|
1287
1486
|
fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
|
|
1288
1487
|
fetchSettingsPageData?: Maybe<SettingsPageData>;
|
|
1488
|
+
fetchStorage?: Maybe<Array<Maybe<Storage>>>;
|
|
1289
1489
|
fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1290
1490
|
fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
|
|
1291
1491
|
fetchTimelineChartPageData?: Maybe<TimelineChartPageData>;
|
|
1492
|
+
fetchUiCustomNames?: Maybe<Array<Maybe<UiCustomNames>>>;
|
|
1292
1493
|
fetchUserById?: Maybe<User>;
|
|
1293
1494
|
fetchUserList?: Maybe<Array<Maybe<User>>>;
|
|
1294
1495
|
fetchUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -1303,6 +1504,9 @@ export type QueryFetchCompanyListArgs = {
|
|
|
1303
1504
|
export type QueryFetchDashboardDataArgs = {
|
|
1304
1505
|
data?: InputMaybe<DashboardDataFetchInput>;
|
|
1305
1506
|
};
|
|
1507
|
+
export type QueryFetchDepartmentsArgs = {
|
|
1508
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1509
|
+
};
|
|
1306
1510
|
export type QueryFetchDeviceActiveVsDownTimeArgs = {
|
|
1307
1511
|
queryData?: InputMaybe<DeviceActiveVsDownTimeFetchInput>;
|
|
1308
1512
|
};
|
|
@@ -1348,6 +1552,27 @@ export type QueryFetchDownTimeByDeviceIdArgs = {
|
|
|
1348
1552
|
export type QueryFetchEndKwHForDeviceArgs = {
|
|
1349
1553
|
queryData?: InputMaybe<EndKwHForDeviceFetchInput>;
|
|
1350
1554
|
};
|
|
1555
|
+
export type QueryFetchEqmsCompleteReportArgs = {
|
|
1556
|
+
queryData?: InputMaybe<EqmsCompleteReportInput>;
|
|
1557
|
+
};
|
|
1558
|
+
export type QueryFetchEqmsCumulativeReportArgs = {
|
|
1559
|
+
queryData?: InputMaybe<EqmsCumulativeReportInput>;
|
|
1560
|
+
};
|
|
1561
|
+
export type QueryFetchEqmsDeviceByIdArgs = {
|
|
1562
|
+
id: Scalars['ID']['input'];
|
|
1563
|
+
};
|
|
1564
|
+
export type QueryFetchEqmsDeviceListArgs = {
|
|
1565
|
+
queryData?: InputMaybe<EqmsDeviceListInput>;
|
|
1566
|
+
};
|
|
1567
|
+
export type QueryFetchEqmsLiveGraphPageDataArgs = {
|
|
1568
|
+
data?: InputMaybe<EqmsLiveGraphPageDataFetchInput>;
|
|
1569
|
+
};
|
|
1570
|
+
export type QueryFetchEqmsLiveReportArgs = {
|
|
1571
|
+
queryData?: InputMaybe<EqmsLiveReportInput>;
|
|
1572
|
+
};
|
|
1573
|
+
export type QueryFetchEqmsTempDataTableByDeviceIdArgs = {
|
|
1574
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1575
|
+
};
|
|
1351
1576
|
export type QueryFetchHeatMapPageDataArgs = {
|
|
1352
1577
|
data?: InputMaybe<HeatMapPageDataFetchInput>;
|
|
1353
1578
|
};
|
|
@@ -1431,14 +1656,18 @@ export type QueryFetchUserListArgs = {
|
|
|
1431
1656
|
};
|
|
1432
1657
|
export type RegisterConfig = {
|
|
1433
1658
|
__typename?: 'RegisterConfig';
|
|
1434
|
-
|
|
1659
|
+
dbName?: Maybe<Scalars['String']['output']>;
|
|
1660
|
+
parameterName?: Maybe<Scalars['String']['output']>;
|
|
1661
|
+
regFormat?: Maybe<Scalars['String']['output']>;
|
|
1435
1662
|
registers?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1436
|
-
|
|
1663
|
+
suffix?: Maybe<Scalars['String']['output']>;
|
|
1437
1664
|
};
|
|
1438
1665
|
export type RegisterConfigInput = {
|
|
1439
|
-
|
|
1666
|
+
dbName?: InputMaybe<Scalars['String']['input']>;
|
|
1667
|
+
parameterName?: InputMaybe<Scalars['String']['input']>;
|
|
1668
|
+
regFormat?: InputMaybe<Scalars['String']['input']>;
|
|
1440
1669
|
registers?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1441
|
-
|
|
1670
|
+
suffix?: InputMaybe<Scalars['String']['input']>;
|
|
1442
1671
|
};
|
|
1443
1672
|
export type ReportInput = {
|
|
1444
1673
|
deviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1485,6 +1714,14 @@ export type SettingsPageData = {
|
|
|
1485
1714
|
export type StatusInput = {
|
|
1486
1715
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1487
1716
|
};
|
|
1717
|
+
export type Storage = {
|
|
1718
|
+
__typename?: 'Storage';
|
|
1719
|
+
id: Scalars['ID']['output'];
|
|
1720
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1721
|
+
};
|
|
1722
|
+
export type StorageInput = {
|
|
1723
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1724
|
+
};
|
|
1488
1725
|
export type TempDataAlert = {
|
|
1489
1726
|
__typename?: 'TempDataAlert';
|
|
1490
1727
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -1510,25 +1747,6 @@ export type TempDataTable = {
|
|
|
1510
1747
|
startKWH?: Maybe<Scalars['Float']['output']>;
|
|
1511
1748
|
status?: Maybe<Scalars['String']['output']>;
|
|
1512
1749
|
};
|
|
1513
|
-
export type ThresholdInfo = {
|
|
1514
|
-
__typename?: 'ThresholdInfo';
|
|
1515
|
-
iMax?: Maybe<Scalars['String']['output']>;
|
|
1516
|
-
iMin?: Maybe<Scalars['String']['output']>;
|
|
1517
|
-
kwMax?: Maybe<Scalars['String']['output']>;
|
|
1518
|
-
kwMin?: Maybe<Scalars['String']['output']>;
|
|
1519
|
-
kwRated?: Maybe<Scalars['String']['output']>;
|
|
1520
|
-
vMax?: Maybe<Scalars['String']['output']>;
|
|
1521
|
-
vMin?: Maybe<Scalars['String']['output']>;
|
|
1522
|
-
};
|
|
1523
|
-
export type ThresholdInfoInput = {
|
|
1524
|
-
iMax?: InputMaybe<Scalars['String']['input']>;
|
|
1525
|
-
iMin?: InputMaybe<Scalars['String']['input']>;
|
|
1526
|
-
kwMax?: InputMaybe<Scalars['String']['input']>;
|
|
1527
|
-
kwMin?: InputMaybe<Scalars['String']['input']>;
|
|
1528
|
-
kwRated?: InputMaybe<Scalars['String']['input']>;
|
|
1529
|
-
vMax?: InputMaybe<Scalars['String']['input']>;
|
|
1530
|
-
vMin?: InputMaybe<Scalars['String']['input']>;
|
|
1531
|
-
};
|
|
1532
1750
|
export type TimelineChartPageData = {
|
|
1533
1751
|
__typename?: 'TimelineChartPageData';
|
|
1534
1752
|
devicesAlert?: Maybe<Array<Maybe<HourlyAlertReport>>>;
|
|
@@ -1538,6 +1756,18 @@ export type TimelineChartPageDataFetchInput = {
|
|
|
1538
1756
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
1539
1757
|
devicesHourlyPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
1540
1758
|
};
|
|
1759
|
+
export type UiCustomNames = {
|
|
1760
|
+
__typename?: 'UiCustomNames';
|
|
1761
|
+
customName?: Maybe<Scalars['String']['output']>;
|
|
1762
|
+
dbName?: Maybe<Scalars['String']['output']>;
|
|
1763
|
+
defaultName?: Maybe<Scalars['String']['output']>;
|
|
1764
|
+
id: Scalars['ID']['output'];
|
|
1765
|
+
};
|
|
1766
|
+
export type UiCustomNamesInput = {
|
|
1767
|
+
customName?: InputMaybe<Scalars['String']['input']>;
|
|
1768
|
+
dbName?: InputMaybe<Scalars['String']['input']>;
|
|
1769
|
+
defaultName?: InputMaybe<Scalars['String']['input']>;
|
|
1770
|
+
};
|
|
1541
1771
|
export type UpdateDeviceAlertStatusInput = {
|
|
1542
1772
|
hourId?: InputMaybe<Scalars['Int']['input']>;
|
|
1543
1773
|
reportId: Scalars['ID']['input'];
|
|
@@ -1547,6 +1777,10 @@ export type UpdateManyDevicesInput = {
|
|
|
1547
1777
|
data?: InputMaybe<DeviceInput>;
|
|
1548
1778
|
id: Scalars['ID']['input'];
|
|
1549
1779
|
};
|
|
1780
|
+
export type UpdateManyUserInput = {
|
|
1781
|
+
data?: InputMaybe<UserInput>;
|
|
1782
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1783
|
+
};
|
|
1550
1784
|
export type User = {
|
|
1551
1785
|
__typename?: 'User';
|
|
1552
1786
|
id: Scalars['ID']['output'];
|