@mjtech-ems/schema 1.1.8 → 1.2.1
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 +410 -117
- 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,23 +171,31 @@ 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
|
-
end?: Maybe<Scalars['Date']['output']>;
|
|
159
177
|
licenseType?: Maybe<Scalars['String']['output']>;
|
|
178
|
+
licensedUsers?: Maybe<Scalars['Int']['output']>;
|
|
160
179
|
name?: Maybe<Scalars['String']['output']>;
|
|
161
|
-
start?: Maybe<Scalars['Date']['output']>;
|
|
162
180
|
status?: Maybe<Scalars['String']['output']>;
|
|
163
181
|
};
|
|
164
182
|
export type CompanyInput = {
|
|
183
|
+
activeApps?: InputMaybe<Array<InputMaybe<ActiveAppsInput>>>;
|
|
184
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
165
185
|
config?: InputMaybe<Scalars['String']['input']>;
|
|
166
|
-
end?: InputMaybe<Scalars['Date']['input']>;
|
|
167
186
|
licenseType?: InputMaybe<Scalars['String']['input']>;
|
|
187
|
+
licensedUsers?: InputMaybe<Scalars['Int']['input']>;
|
|
168
188
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
169
|
-
start?: InputMaybe<Scalars['Date']['input']>;
|
|
170
189
|
};
|
|
171
190
|
export type CompanyListInput = {
|
|
172
191
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
173
192
|
};
|
|
193
|
+
export type CompanyResponse = {
|
|
194
|
+
__typename?: 'CompanyResponse';
|
|
195
|
+
companyId?: Maybe<Scalars['ID']['output']>;
|
|
196
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
197
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
198
|
+
};
|
|
174
199
|
export type CostConfig = {
|
|
175
200
|
__typename?: 'CostConfig';
|
|
176
201
|
cost?: Maybe<Scalars['String']['output']>;
|
|
@@ -180,6 +205,7 @@ export type CostConfigInput = {
|
|
|
180
205
|
cost?: InputMaybe<Scalars['String']['input']>;
|
|
181
206
|
range?: InputMaybe<Scalars['String']['input']>;
|
|
182
207
|
};
|
|
208
|
+
export type CreateCompanyResponse = CompanyResponse | GeneralResponse;
|
|
183
209
|
export type DashboardData = {
|
|
184
210
|
__typename?: 'DashboardData';
|
|
185
211
|
devicesActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
|
|
@@ -193,19 +219,35 @@ export type DashboardDataFetchInput = {
|
|
|
193
219
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
194
220
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
195
221
|
};
|
|
222
|
+
export type DepartmentResponse = {
|
|
223
|
+
__typename?: 'DepartmentResponse';
|
|
224
|
+
departmentId?: Maybe<Scalars['ID']['output']>;
|
|
225
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
226
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
227
|
+
};
|
|
196
228
|
export type Departments = {
|
|
197
229
|
__typename?: 'Departments';
|
|
230
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
231
|
+
companyId?: Maybe<Scalars['ID']['output']>;
|
|
198
232
|
department?: Maybe<Scalars['String']['output']>;
|
|
199
233
|
id: Scalars['ID']['output'];
|
|
234
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
235
|
+
userAllowedPages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
236
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
200
237
|
};
|
|
201
238
|
export type DepartmentsInput = {
|
|
239
|
+
appType?: InputMaybe<Scalars['String']['input']>;
|
|
240
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
202
241
|
department?: InputMaybe<Scalars['String']['input']>;
|
|
242
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
243
|
+
userAllowedPages?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
244
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
203
245
|
};
|
|
204
246
|
export type Device = {
|
|
205
247
|
__typename?: 'Device';
|
|
206
248
|
deviceInfo?: Maybe<DeviceInfo>;
|
|
207
249
|
id: Scalars['ID']['output'];
|
|
208
|
-
threshold?: Maybe<
|
|
250
|
+
threshold?: Maybe<Scalars['JSON']['output']>;
|
|
209
251
|
};
|
|
210
252
|
export type DeviceActiveVsDownTime = {
|
|
211
253
|
__typename?: 'DeviceActiveVsDownTime';
|
|
@@ -317,7 +359,7 @@ export type DeviceHourlyDataFetchInput = {
|
|
|
317
359
|
export type DeviceHourlyReportInput = {
|
|
318
360
|
deviceInfo?: InputMaybe<DeviceInfoInput>;
|
|
319
361
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
320
|
-
threshold?: InputMaybe<
|
|
362
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
321
363
|
};
|
|
322
364
|
export type DeviceInfo = {
|
|
323
365
|
__typename?: 'DeviceInfo';
|
|
@@ -327,8 +369,14 @@ export type DeviceInfo = {
|
|
|
327
369
|
master?: Maybe<Scalars['String']['output']>;
|
|
328
370
|
model?: Maybe<Scalars['String']['output']>;
|
|
329
371
|
name?: Maybe<Scalars['String']['output']>;
|
|
330
|
-
|
|
372
|
+
offTimeTracker?: Maybe<Scalars['String']['output']>;
|
|
373
|
+
prevProductivity?: Maybe<Scalars['String']['output']>;
|
|
374
|
+
prevRunHrs?: Maybe<Scalars['String']['output']>;
|
|
375
|
+
prodCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
376
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
331
377
|
registerConfig?: Maybe<Array<Maybe<RegisterConfig>>>;
|
|
378
|
+
runHrs?: Maybe<Scalars['String']['output']>;
|
|
379
|
+
runHrsCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
332
380
|
slaves?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
333
381
|
status?: Maybe<Scalars['String']['output']>;
|
|
334
382
|
topic?: Maybe<Scalars['String']['output']>;
|
|
@@ -341,33 +389,40 @@ export type DeviceInfoInput = {
|
|
|
341
389
|
master?: InputMaybe<Scalars['String']['input']>;
|
|
342
390
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
343
391
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
344
|
-
|
|
392
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
393
|
+
prevProductivity?: InputMaybe<Scalars['String']['input']>;
|
|
394
|
+
prevRunHrs?: InputMaybe<Scalars['String']['input']>;
|
|
395
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
396
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
345
397
|
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
398
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
399
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
346
400
|
slaves?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
347
401
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
402
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
348
403
|
topic?: InputMaybe<Scalars['String']['input']>;
|
|
349
404
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
350
405
|
};
|
|
351
406
|
export type DeviceInput = {
|
|
352
407
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
353
408
|
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
409
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
360
410
|
master?: InputMaybe<Scalars['String']['input']>;
|
|
361
411
|
model?: InputMaybe<Scalars['String']['input']>;
|
|
362
412
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
363
|
-
|
|
413
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
414
|
+
prevProductivity?: InputMaybe<Scalars['String']['input']>;
|
|
415
|
+
prevRunHrs?: InputMaybe<Scalars['String']['input']>;
|
|
416
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
417
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
364
418
|
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
419
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
420
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
365
421
|
slaves?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
366
422
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
423
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
367
424
|
topic?: InputMaybe<Scalars['String']['input']>;
|
|
368
425
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
369
|
-
vMax?: InputMaybe<Scalars['String']['input']>;
|
|
370
|
-
vMin?: InputMaybe<Scalars['String']['input']>;
|
|
371
426
|
};
|
|
372
427
|
export type DeviceListInput = {
|
|
373
428
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -540,6 +595,14 @@ export type DownTimeReport = {
|
|
|
540
595
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
541
596
|
totalDownTime?: Maybe<Scalars['String']['output']>;
|
|
542
597
|
};
|
|
598
|
+
export type EditManyDepartmentsInput = {
|
|
599
|
+
data?: InputMaybe<DepartmentsInput>;
|
|
600
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
601
|
+
};
|
|
602
|
+
export type EditManyPartsInput = {
|
|
603
|
+
id: Scalars['ID']['input'];
|
|
604
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
605
|
+
};
|
|
543
606
|
export type EndKwHForDevice = {
|
|
544
607
|
__typename?: 'EndKwHForDevice';
|
|
545
608
|
EndKwH?: Maybe<Array<Maybe<Scalars['Float']['output']>>>;
|
|
@@ -552,6 +615,115 @@ export type EndKwHForDeviceFetchInput = {
|
|
|
552
615
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
553
616
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
554
617
|
};
|
|
618
|
+
export type EqmsCompleteReport = {
|
|
619
|
+
__typename?: 'EqmsCompleteReport';
|
|
620
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
621
|
+
};
|
|
622
|
+
export type EqmsCompleteReportInput = {
|
|
623
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
624
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
625
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
626
|
+
};
|
|
627
|
+
export type EqmsCumulativeReport = {
|
|
628
|
+
__typename?: 'EqmsCumulativeReport';
|
|
629
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
630
|
+
};
|
|
631
|
+
export type EqmsCumulativeReportInput = {
|
|
632
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
633
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
634
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
635
|
+
};
|
|
636
|
+
export type EqmsDevice = {
|
|
637
|
+
__typename?: 'EqmsDevice';
|
|
638
|
+
deviceInfo?: Maybe<EqmsDeviceInfo>;
|
|
639
|
+
id: Scalars['ID']['output'];
|
|
640
|
+
threshold?: Maybe<Scalars['JSON']['output']>;
|
|
641
|
+
};
|
|
642
|
+
export type EqmsDeviceInfo = {
|
|
643
|
+
__typename?: 'EqmsDeviceInfo';
|
|
644
|
+
SLID?: Maybe<Scalars['String']['output']>;
|
|
645
|
+
company?: Maybe<Company>;
|
|
646
|
+
deviceType?: Maybe<Scalars['String']['output']>;
|
|
647
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
648
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
649
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
650
|
+
offTimeTracker?: Maybe<Scalars['String']['output']>;
|
|
651
|
+
prevProductivity?: Maybe<Scalars['String']['output']>;
|
|
652
|
+
prevRunHrs?: Maybe<Scalars['String']['output']>;
|
|
653
|
+
prodCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
654
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
655
|
+
registerConfig?: Maybe<Array<Maybe<RegisterConfig>>>;
|
|
656
|
+
runHrs?: Maybe<Scalars['String']['output']>;
|
|
657
|
+
runHrsCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
658
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
659
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
660
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
661
|
+
};
|
|
662
|
+
export type EqmsDeviceInput = {
|
|
663
|
+
SLID?: InputMaybe<Scalars['String']['input']>;
|
|
664
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
665
|
+
deviceType?: InputMaybe<Scalars['String']['input']>;
|
|
666
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
667
|
+
model?: InputMaybe<Scalars['String']['input']>;
|
|
668
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
669
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
670
|
+
prevProductivity?: InputMaybe<Scalars['String']['input']>;
|
|
671
|
+
prevRunHrs?: InputMaybe<Scalars['String']['input']>;
|
|
672
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
673
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
674
|
+
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
675
|
+
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
676
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
677
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
678
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
679
|
+
topic?: InputMaybe<Scalars['String']['input']>;
|
|
680
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
681
|
+
};
|
|
682
|
+
export type EqmsDeviceListInput = {
|
|
683
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
684
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
685
|
+
};
|
|
686
|
+
export type EqmsDevicesAlertsInput = {
|
|
687
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
688
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
689
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
690
|
+
};
|
|
691
|
+
export type EqmsLiveGraphPageData = {
|
|
692
|
+
__typename?: 'EqmsLiveGraphPageData';
|
|
693
|
+
EqmsLiveReport?: Maybe<EqmsLiveReport>;
|
|
694
|
+
devicesAlerts?: Maybe<Scalars['JSON']['output']>;
|
|
695
|
+
};
|
|
696
|
+
export type EqmsLiveGraphPageDataFetchInput = {
|
|
697
|
+
EqmsLiveReport?: InputMaybe<EqmsLiveReportInput>;
|
|
698
|
+
devicesAlerts?: InputMaybe<EqmsDevicesAlertsInput>;
|
|
699
|
+
};
|
|
700
|
+
export type EqmsLiveReport = {
|
|
701
|
+
__typename?: 'EqmsLiveReport';
|
|
702
|
+
value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
703
|
+
};
|
|
704
|
+
export type EqmsLiveReportInput = {
|
|
705
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
706
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
707
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
708
|
+
};
|
|
709
|
+
export type EqmsTempDataTable = {
|
|
710
|
+
__typename?: 'EqmsTempDataTable';
|
|
711
|
+
LAT?: Maybe<Scalars['String']['output']>;
|
|
712
|
+
LON?: Maybe<Scalars['String']['output']>;
|
|
713
|
+
alerts?: Maybe<Scalars['JSON']['output']>;
|
|
714
|
+
deviceId?: Maybe<Scalars['ID']['output']>;
|
|
715
|
+
endCount?: Maybe<Scalars['String']['output']>;
|
|
716
|
+
lastUpdatedTime?: Maybe<Scalars['String']['output']>;
|
|
717
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
718
|
+
productivityArray?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
|
|
719
|
+
readingEndDate?: Maybe<Scalars['String']['output']>;
|
|
720
|
+
readingStartDate?: Maybe<Scalars['String']['output']>;
|
|
721
|
+
startCount?: Maybe<Scalars['String']['output']>;
|
|
722
|
+
startRunHr?: Maybe<Scalars['String']['output']>;
|
|
723
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
724
|
+
totalCount?: Maybe<Scalars['String']['output']>;
|
|
725
|
+
totalHrs?: Maybe<Scalars['String']['output']>;
|
|
726
|
+
};
|
|
555
727
|
export declare enum ErrorType {
|
|
556
728
|
BAD_REQUEST = "BAD_REQUEST",
|
|
557
729
|
BAD_USER_INPUT = "BAD_USER_INPUT",
|
|
@@ -706,6 +878,11 @@ export type LocationMapPageDataFetchInput = {
|
|
|
706
878
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
707
879
|
devicesPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
708
880
|
};
|
|
881
|
+
export type Locations = {
|
|
882
|
+
__typename?: 'Locations';
|
|
883
|
+
LAT?: Maybe<Scalars['String']['output']>;
|
|
884
|
+
LON?: Maybe<Scalars['String']['output']>;
|
|
885
|
+
};
|
|
709
886
|
export type LoginInput = {
|
|
710
887
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
711
888
|
password?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -719,6 +896,7 @@ export type LoginResponse = {
|
|
|
719
896
|
};
|
|
720
897
|
export type LoginSuccessResponse = {
|
|
721
898
|
__typename?: 'LoginSuccessResponse';
|
|
899
|
+
companyId?: Maybe<Scalars['ID']['output']>;
|
|
722
900
|
companyInfo?: Maybe<CompanyInfo>;
|
|
723
901
|
email?: Maybe<Scalars['EmailAddress']['output']>;
|
|
724
902
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
@@ -728,6 +906,14 @@ export type LoginSuccessResponse = {
|
|
|
728
906
|
userType?: Maybe<Scalars['String']['output']>;
|
|
729
907
|
};
|
|
730
908
|
export type LoginUserResponse = GeneralResponse | LoginResponse;
|
|
909
|
+
export type Machines = {
|
|
910
|
+
__typename?: 'Machines';
|
|
911
|
+
id: Scalars['ID']['output'];
|
|
912
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
913
|
+
};
|
|
914
|
+
export type MachinesInput = {
|
|
915
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
916
|
+
};
|
|
731
917
|
export type MonthlyReportInput = {
|
|
732
918
|
deviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
733
919
|
deviceName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -792,20 +978,39 @@ export type MonthlyUtilizationDataForGraphInput = {
|
|
|
792
978
|
};
|
|
793
979
|
export type Mutation = {
|
|
794
980
|
__typename?: 'Mutation';
|
|
795
|
-
|
|
981
|
+
addAllNewStorage?: Maybe<GeneralResponse>;
|
|
982
|
+
addAllNewUiCustomNames?: Maybe<GeneralResponse>;
|
|
983
|
+
addNewDepartment?: Maybe<DepartmentResponse>;
|
|
984
|
+
addNewMachine?: Maybe<GeneralResponse>;
|
|
985
|
+
addNewPart?: Maybe<GeneralResponse>;
|
|
986
|
+
addNewStorage?: Maybe<GeneralResponse>;
|
|
987
|
+
addNewUiCustomName?: Maybe<GeneralResponse>;
|
|
796
988
|
changePassword?: Maybe<GeneralResponse>;
|
|
797
989
|
createAlert?: Maybe<GeneralResponse>;
|
|
798
990
|
createAlertEmail?: Maybe<GeneralResponse>;
|
|
799
|
-
createCompany?: Maybe<
|
|
991
|
+
createCompany?: Maybe<CreateCompanyResponse>;
|
|
800
992
|
createDevice?: Maybe<GeneralResponse>;
|
|
993
|
+
createEqmsDevice?: Maybe<GeneralResponse>;
|
|
801
994
|
createNguAlertEmail?: Maybe<GeneralResponse>;
|
|
802
995
|
createNguCompany?: Maybe<GeneralResponse>;
|
|
803
996
|
createNguDevice?: Maybe<GeneralResponse>;
|
|
804
997
|
createNguUser?: Maybe<GeneralResponse>;
|
|
805
998
|
createUser?: Maybe<GeneralResponse>;
|
|
806
999
|
deleteDepartment?: Maybe<GeneralResponse>;
|
|
1000
|
+
deleteDevice?: Maybe<GeneralResponse>;
|
|
1001
|
+
deleteEqmsDevice?: Maybe<GeneralResponse>;
|
|
1002
|
+
deleteMachine?: Maybe<GeneralResponse>;
|
|
1003
|
+
deleteNguDevice?: Maybe<GeneralResponse>;
|
|
1004
|
+
deletePart?: Maybe<GeneralResponse>;
|
|
1005
|
+
deleteStorage?: Maybe<GeneralResponse>;
|
|
807
1006
|
deleteUserSession?: Maybe<GeneralResponse>;
|
|
808
1007
|
editDepartment?: Maybe<GeneralResponse>;
|
|
1008
|
+
editMachine?: Maybe<GeneralResponse>;
|
|
1009
|
+
editManyDepartments?: Maybe<GeneralResponse>;
|
|
1010
|
+
editManyParts?: Maybe<GeneralResponse>;
|
|
1011
|
+
editPart?: Maybe<GeneralResponse>;
|
|
1012
|
+
editStorage?: Maybe<GeneralResponse>;
|
|
1013
|
+
editUiCustomName?: Maybe<GeneralResponse>;
|
|
809
1014
|
forgotPassword?: Maybe<GeneralResponse>;
|
|
810
1015
|
generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
|
|
811
1016
|
sendEmail?: Maybe<GeneralResponse>;
|
|
@@ -817,9 +1022,12 @@ export type Mutation = {
|
|
|
817
1022
|
updateDevice?: Maybe<GeneralResponse>;
|
|
818
1023
|
updateDeviceAlertStatus?: Maybe<GeneralResponse>;
|
|
819
1024
|
updateDeviceStatus?: Maybe<GeneralResponse>;
|
|
1025
|
+
updateEqmsDevice?: Maybe<GeneralResponse>;
|
|
1026
|
+
updateEqmsDeviceStatus?: Maybe<GeneralResponse>;
|
|
820
1027
|
updateManyAlertEmails?: Maybe<GeneralResponse>;
|
|
821
1028
|
updateManyDevices?: Maybe<GeneralResponse>;
|
|
822
1029
|
updateManyNguAlertEmails?: Maybe<GeneralResponse>;
|
|
1030
|
+
updateManyUsers?: Maybe<GeneralResponse>;
|
|
823
1031
|
updateMonthlyReport?: Maybe<GeneralResponse>;
|
|
824
1032
|
updateNguAlertEmail?: Maybe<GeneralResponse>;
|
|
825
1033
|
updateNguCompany?: Maybe<GeneralResponse>;
|
|
@@ -833,9 +1041,27 @@ export type Mutation = {
|
|
|
833
1041
|
verifyLogin?: Maybe<LoginUserResponse>;
|
|
834
1042
|
verifyLogout?: Maybe<GeneralResponse>;
|
|
835
1043
|
};
|
|
1044
|
+
export type MutationAddAllNewStorageArgs = {
|
|
1045
|
+
data?: InputMaybe<Array<InputMaybe<StorageInput>>>;
|
|
1046
|
+
};
|
|
1047
|
+
export type MutationAddAllNewUiCustomNamesArgs = {
|
|
1048
|
+
data?: InputMaybe<Array<InputMaybe<UiCustomNamesInput>>>;
|
|
1049
|
+
};
|
|
836
1050
|
export type MutationAddNewDepartmentArgs = {
|
|
837
1051
|
data?: InputMaybe<DepartmentsInput>;
|
|
838
1052
|
};
|
|
1053
|
+
export type MutationAddNewMachineArgs = {
|
|
1054
|
+
data?: InputMaybe<MachinesInput>;
|
|
1055
|
+
};
|
|
1056
|
+
export type MutationAddNewPartArgs = {
|
|
1057
|
+
data?: InputMaybe<PartInput>;
|
|
1058
|
+
};
|
|
1059
|
+
export type MutationAddNewStorageArgs = {
|
|
1060
|
+
data?: InputMaybe<StorageInput>;
|
|
1061
|
+
};
|
|
1062
|
+
export type MutationAddNewUiCustomNameArgs = {
|
|
1063
|
+
data?: InputMaybe<UiCustomNamesInput>;
|
|
1064
|
+
};
|
|
839
1065
|
export type MutationChangePasswordArgs = {
|
|
840
1066
|
data?: InputMaybe<PasswordInput>;
|
|
841
1067
|
};
|
|
@@ -851,6 +1077,9 @@ export type MutationCreateCompanyArgs = {
|
|
|
851
1077
|
export type MutationCreateDeviceArgs = {
|
|
852
1078
|
data?: InputMaybe<DeviceInput>;
|
|
853
1079
|
};
|
|
1080
|
+
export type MutationCreateEqmsDeviceArgs = {
|
|
1081
|
+
data?: InputMaybe<EqmsDeviceInput>;
|
|
1082
|
+
};
|
|
854
1083
|
export type MutationCreateNguAlertEmailArgs = {
|
|
855
1084
|
data?: InputMaybe<NguAlertEmailInput>;
|
|
856
1085
|
};
|
|
@@ -869,6 +1098,24 @@ export type MutationCreateUserArgs = {
|
|
|
869
1098
|
export type MutationDeleteDepartmentArgs = {
|
|
870
1099
|
id: Scalars['ID']['input'];
|
|
871
1100
|
};
|
|
1101
|
+
export type MutationDeleteDeviceArgs = {
|
|
1102
|
+
id: Scalars['ID']['input'];
|
|
1103
|
+
};
|
|
1104
|
+
export type MutationDeleteEqmsDeviceArgs = {
|
|
1105
|
+
id: Scalars['ID']['input'];
|
|
1106
|
+
};
|
|
1107
|
+
export type MutationDeleteMachineArgs = {
|
|
1108
|
+
id: Scalars['ID']['input'];
|
|
1109
|
+
};
|
|
1110
|
+
export type MutationDeleteNguDeviceArgs = {
|
|
1111
|
+
id: Scalars['ID']['input'];
|
|
1112
|
+
};
|
|
1113
|
+
export type MutationDeletePartArgs = {
|
|
1114
|
+
id: Scalars['ID']['input'];
|
|
1115
|
+
};
|
|
1116
|
+
export type MutationDeleteStorageArgs = {
|
|
1117
|
+
id: Scalars['ID']['input'];
|
|
1118
|
+
};
|
|
872
1119
|
export type MutationDeleteUserSessionArgs = {
|
|
873
1120
|
data?: InputMaybe<SessionInput>;
|
|
874
1121
|
};
|
|
@@ -876,6 +1123,28 @@ export type MutationEditDepartmentArgs = {
|
|
|
876
1123
|
data?: InputMaybe<DepartmentsInput>;
|
|
877
1124
|
id: Scalars['ID']['input'];
|
|
878
1125
|
};
|
|
1126
|
+
export type MutationEditMachineArgs = {
|
|
1127
|
+
data?: InputMaybe<MachinesInput>;
|
|
1128
|
+
id: Scalars['ID']['input'];
|
|
1129
|
+
};
|
|
1130
|
+
export type MutationEditManyDepartmentsArgs = {
|
|
1131
|
+
data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
|
|
1132
|
+
};
|
|
1133
|
+
export type MutationEditManyPartsArgs = {
|
|
1134
|
+
data?: InputMaybe<Array<InputMaybe<EditManyPartsInput>>>;
|
|
1135
|
+
};
|
|
1136
|
+
export type MutationEditPartArgs = {
|
|
1137
|
+
data?: InputMaybe<PartInput>;
|
|
1138
|
+
id: Scalars['ID']['input'];
|
|
1139
|
+
};
|
|
1140
|
+
export type MutationEditStorageArgs = {
|
|
1141
|
+
data?: InputMaybe<StorageInput>;
|
|
1142
|
+
id: Scalars['ID']['input'];
|
|
1143
|
+
};
|
|
1144
|
+
export type MutationEditUiCustomNameArgs = {
|
|
1145
|
+
data?: InputMaybe<UiCustomNamesInput>;
|
|
1146
|
+
id: Scalars['ID']['input'];
|
|
1147
|
+
};
|
|
879
1148
|
export type MutationForgotPasswordArgs = {
|
|
880
1149
|
data?: InputMaybe<ForgotInput>;
|
|
881
1150
|
};
|
|
@@ -914,6 +1183,14 @@ export type MutationUpdateDeviceStatusArgs = {
|
|
|
914
1183
|
data?: InputMaybe<StatusInput>;
|
|
915
1184
|
id: Scalars['ID']['input'];
|
|
916
1185
|
};
|
|
1186
|
+
export type MutationUpdateEqmsDeviceArgs = {
|
|
1187
|
+
data?: InputMaybe<EqmsDeviceInput>;
|
|
1188
|
+
id: Scalars['ID']['input'];
|
|
1189
|
+
};
|
|
1190
|
+
export type MutationUpdateEqmsDeviceStatusArgs = {
|
|
1191
|
+
data?: InputMaybe<StatusInput>;
|
|
1192
|
+
id: Scalars['ID']['input'];
|
|
1193
|
+
};
|
|
917
1194
|
export type MutationUpdateManyAlertEmailsArgs = {
|
|
918
1195
|
data?: InputMaybe<Array<InputMaybe<AlertEmailInput>>>;
|
|
919
1196
|
};
|
|
@@ -923,6 +1200,9 @@ export type MutationUpdateManyDevicesArgs = {
|
|
|
923
1200
|
export type MutationUpdateManyNguAlertEmailsArgs = {
|
|
924
1201
|
data?: InputMaybe<Array<InputMaybe<NguAlertEmailInput>>>;
|
|
925
1202
|
};
|
|
1203
|
+
export type MutationUpdateManyUsersArgs = {
|
|
1204
|
+
data?: InputMaybe<Array<InputMaybe<UpdateManyUserInput>>>;
|
|
1205
|
+
};
|
|
926
1206
|
export type MutationUpdateMonthlyReportArgs = {
|
|
927
1207
|
data?: InputMaybe<MonthlyReportInput>;
|
|
928
1208
|
};
|
|
@@ -1008,59 +1288,44 @@ export type NguDevice = {
|
|
|
1008
1288
|
__typename?: 'NguDevice';
|
|
1009
1289
|
deviceInfo?: Maybe<NguDeviceInfo>;
|
|
1010
1290
|
id: Scalars['ID']['output'];
|
|
1011
|
-
threshold?: Maybe<
|
|
1291
|
+
threshold?: Maybe<Scalars['JSON']['output']>;
|
|
1012
1292
|
};
|
|
1013
1293
|
export type NguDeviceInfo = {
|
|
1014
1294
|
__typename?: 'NguDeviceInfo';
|
|
1015
|
-
|
|
1295
|
+
SLID?: Maybe<Scalars['String']['output']>;
|
|
1296
|
+
company?: Maybe<Company>;
|
|
1016
1297
|
deviceType?: Maybe<Scalars['String']['output']>;
|
|
1017
1298
|
location?: Maybe<Scalars['String']['output']>;
|
|
1018
1299
|
name?: Maybe<Scalars['String']['output']>;
|
|
1300
|
+
offTimeTracker?: Maybe<Scalars['String']['output']>;
|
|
1301
|
+
prevProductivity?: Maybe<Scalars['String']['output']>;
|
|
1302
|
+
prevRunHrs?: Maybe<Scalars['String']['output']>;
|
|
1303
|
+
prodCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
1304
|
+
productivity?: Maybe<Scalars['String']['output']>;
|
|
1305
|
+
registerConfig?: Maybe<Array<Maybe<RegisterConfig>>>;
|
|
1019
1306
|
runHrs?: Maybe<Scalars['String']['output']>;
|
|
1307
|
+
runHrsCalcParameter?: Maybe<Scalars['String']['output']>;
|
|
1020
1308
|
status?: Maybe<Scalars['String']['output']>;
|
|
1021
1309
|
topic?: Maybe<Scalars['String']['output']>;
|
|
1022
|
-
totalWork?: Maybe<Scalars['String']['output']>;
|
|
1023
1310
|
type?: Maybe<Scalars['String']['output']>;
|
|
1024
1311
|
};
|
|
1025
1312
|
export type NguDeviceInput = {
|
|
1313
|
+
SLID?: InputMaybe<Scalars['String']['input']>;
|
|
1026
1314
|
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1027
1315
|
deviceType?: InputMaybe<Scalars['String']['input']>;
|
|
1028
|
-
drainValve?: InputMaybe<Scalars['String']['input']>;
|
|
1029
1316
|
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
1317
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
1318
|
+
offTimeTracker?: InputMaybe<Scalars['String']['input']>;
|
|
1319
|
+
prevProductivity?: InputMaybe<Scalars['String']['input']>;
|
|
1320
|
+
prevRunHrs?: InputMaybe<Scalars['String']['input']>;
|
|
1321
|
+
prodCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
1322
|
+
productivity?: InputMaybe<Scalars['String']['input']>;
|
|
1323
|
+
registerConfig?: InputMaybe<Array<InputMaybe<RegisterConfigInput>>>;
|
|
1061
1324
|
runHrs?: InputMaybe<Scalars['String']['input']>;
|
|
1325
|
+
runHrsCalcParameter?: InputMaybe<Scalars['String']['input']>;
|
|
1326
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
1327
|
+
threshold?: InputMaybe<Scalars['JSON']['input']>;
|
|
1062
1328
|
topic?: InputMaybe<Scalars['String']['input']>;
|
|
1063
|
-
totalWork?: InputMaybe<Scalars['String']['input']>;
|
|
1064
1329
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
1065
1330
|
};
|
|
1066
1331
|
export type NguDeviceListInput = {
|
|
@@ -1074,45 +1339,23 @@ export type NguDeviceReport = {
|
|
|
1074
1339
|
export type NguDeviceReportInput = {
|
|
1075
1340
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
1076
1341
|
};
|
|
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
1342
|
export type NguDevicesReportInput = {
|
|
1112
1343
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1113
1344
|
locations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1114
1345
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1115
1346
|
};
|
|
1347
|
+
export type NguDevicewiseDevicesReportInput = {
|
|
1348
|
+
deviceIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1349
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1350
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1351
|
+
};
|
|
1352
|
+
export type NguLocationMapPageData = {
|
|
1353
|
+
__typename?: 'NguLocationMapPageData';
|
|
1354
|
+
devicesReport?: Maybe<NguDeviceReport>;
|
|
1355
|
+
};
|
|
1356
|
+
export type NguLocationMapPageDataFetchInput = {
|
|
1357
|
+
devicesReport?: InputMaybe<NguDevicewiseDevicesReportInput>;
|
|
1358
|
+
};
|
|
1116
1359
|
export type NguStatusInput = {
|
|
1117
1360
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1118
1361
|
};
|
|
@@ -1142,6 +1385,7 @@ export type NguTempDataTable = {
|
|
|
1142
1385
|
PU?: Maybe<NguTempDataAlertProps>;
|
|
1143
1386
|
RH?: Maybe<NguTempDataAlertProps>;
|
|
1144
1387
|
SCFM?: Maybe<NguTempDataAlertProps>;
|
|
1388
|
+
alerts?: Maybe<Scalars['JSON']['output']>;
|
|
1145
1389
|
deviceId?: Maybe<Scalars['ID']['output']>;
|
|
1146
1390
|
lastUpdatedTime?: Maybe<Scalars['String']['output']>;
|
|
1147
1391
|
pkt?: Maybe<Scalars['String']['output']>;
|
|
@@ -1185,14 +1429,13 @@ export type OffTimeInput = {
|
|
|
1185
1429
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
1186
1430
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
1187
1431
|
};
|
|
1188
|
-
export type
|
|
1189
|
-
__typename?: '
|
|
1190
|
-
|
|
1191
|
-
|
|
1432
|
+
export type Part = {
|
|
1433
|
+
__typename?: 'Part';
|
|
1434
|
+
id: Scalars['ID']['output'];
|
|
1435
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1192
1436
|
};
|
|
1193
|
-
export type
|
|
1194
|
-
|
|
1195
|
-
dbName?: InputMaybe<Scalars['String']['input']>;
|
|
1437
|
+
export type PartInput = {
|
|
1438
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1196
1439
|
};
|
|
1197
1440
|
export type PasswordInput = {
|
|
1198
1441
|
confirmPassword?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1258,6 +1501,14 @@ export type Query = {
|
|
|
1258
1501
|
fetchDevicesReport?: Maybe<DeviceReport>;
|
|
1259
1502
|
fetchDownTimeByDeviceId?: Maybe<Array<Maybe<DownTimeReport>>>;
|
|
1260
1503
|
fetchEndKwHForDevice?: Maybe<Array<Maybe<EndKwHForDevice>>>;
|
|
1504
|
+
fetchEqmsCompleteReport?: Maybe<EqmsCompleteReport>;
|
|
1505
|
+
fetchEqmsCumulativeReport?: Maybe<EqmsCumulativeReport>;
|
|
1506
|
+
fetchEqmsDeviceById?: Maybe<EqmsDevice>;
|
|
1507
|
+
fetchEqmsDeviceList?: Maybe<Array<Maybe<EqmsDevice>>>;
|
|
1508
|
+
fetchEqmsLiveGraphPageData?: Maybe<EqmsLiveGraphPageData>;
|
|
1509
|
+
fetchEqmsLiveReport?: Maybe<EqmsLiveReport>;
|
|
1510
|
+
fetchEqmsTempDataTable?: Maybe<Array<Maybe<EqmsTempDataTable>>>;
|
|
1511
|
+
fetchEqmsTempDataTableByDeviceId?: Maybe<EqmsTempDataTable>;
|
|
1261
1512
|
fetchHeatMapPageData?: Maybe<HeatMapPageData>;
|
|
1262
1513
|
fetchHourlyAlertReport?: Maybe<Array<Maybe<HourlyAlertReport>>>;
|
|
1263
1514
|
fetchHourlyUtilizationDashboard?: Maybe<Array<Maybe<HourlyUtilizationDashboard>>>;
|
|
@@ -1266,6 +1517,8 @@ export type Query = {
|
|
|
1266
1517
|
fetchLiveGraphPageData?: Maybe<LiveGraphPageData>;
|
|
1267
1518
|
fetchLoadMapPageData?: Maybe<LoadMapPageData>;
|
|
1268
1519
|
fetchLocationMapPageData?: Maybe<LocationMapPageData>;
|
|
1520
|
+
fetchLocations?: Maybe<Array<Maybe<Locations>>>;
|
|
1521
|
+
fetchMachines?: Maybe<Array<Maybe<Machines>>>;
|
|
1269
1522
|
fetchMonthlyReport?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1270
1523
|
fetchMonthlyReportByDeviceId?: Maybe<TempDataTable>;
|
|
1271
1524
|
fetchMonthlyUtilizationDashboard?: Maybe<Array<Maybe<MonthlyUtilizationDashboard>>>;
|
|
@@ -1277,18 +1530,22 @@ export type Query = {
|
|
|
1277
1530
|
fetchNguDeviceList?: Maybe<Array<Maybe<NguDevice>>>;
|
|
1278
1531
|
fetchNguDeviceReport?: Maybe<NguDeviceReport>;
|
|
1279
1532
|
fetchNguDevicesReport?: Maybe<NguDeviceReport>;
|
|
1533
|
+
fetchNguLocationMapPageData?: Maybe<NguLocationMapPageData>;
|
|
1280
1534
|
fetchNguTempDataTable?: Maybe<Array<Maybe<NguTempDataTable>>>;
|
|
1281
1535
|
fetchNguTempDataTableByDeviceId?: Maybe<NguTempDataTable>;
|
|
1282
1536
|
fetchNguUserById?: Maybe<NguUser>;
|
|
1283
1537
|
fetchNguUserList?: Maybe<Array<Maybe<NguUser>>>;
|
|
1284
1538
|
fetchNguUsers?: Maybe<Array<Maybe<NguUser>>>;
|
|
1285
1539
|
fetchOffTimeByDeviceId?: Maybe<Array<Maybe<OffTimeReport>>>;
|
|
1540
|
+
fetchPartTable?: Maybe<Array<Maybe<Part>>>;
|
|
1286
1541
|
fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
|
|
1287
1542
|
fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
|
|
1288
1543
|
fetchSettingsPageData?: Maybe<SettingsPageData>;
|
|
1544
|
+
fetchStorage?: Maybe<Array<Maybe<Storage>>>;
|
|
1289
1545
|
fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
|
|
1290
1546
|
fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
|
|
1291
1547
|
fetchTimelineChartPageData?: Maybe<TimelineChartPageData>;
|
|
1548
|
+
fetchUiCustomNames?: Maybe<Array<Maybe<UiCustomNames>>>;
|
|
1292
1549
|
fetchUserById?: Maybe<User>;
|
|
1293
1550
|
fetchUserList?: Maybe<Array<Maybe<User>>>;
|
|
1294
1551
|
fetchUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -1303,6 +1560,9 @@ export type QueryFetchCompanyListArgs = {
|
|
|
1303
1560
|
export type QueryFetchDashboardDataArgs = {
|
|
1304
1561
|
data?: InputMaybe<DashboardDataFetchInput>;
|
|
1305
1562
|
};
|
|
1563
|
+
export type QueryFetchDepartmentsArgs = {
|
|
1564
|
+
companyId?: InputMaybe<Scalars['ID']['input']>;
|
|
1565
|
+
};
|
|
1306
1566
|
export type QueryFetchDeviceActiveVsDownTimeArgs = {
|
|
1307
1567
|
queryData?: InputMaybe<DeviceActiveVsDownTimeFetchInput>;
|
|
1308
1568
|
};
|
|
@@ -1348,6 +1608,27 @@ export type QueryFetchDownTimeByDeviceIdArgs = {
|
|
|
1348
1608
|
export type QueryFetchEndKwHForDeviceArgs = {
|
|
1349
1609
|
queryData?: InputMaybe<EndKwHForDeviceFetchInput>;
|
|
1350
1610
|
};
|
|
1611
|
+
export type QueryFetchEqmsCompleteReportArgs = {
|
|
1612
|
+
queryData?: InputMaybe<EqmsCompleteReportInput>;
|
|
1613
|
+
};
|
|
1614
|
+
export type QueryFetchEqmsCumulativeReportArgs = {
|
|
1615
|
+
queryData?: InputMaybe<EqmsCumulativeReportInput>;
|
|
1616
|
+
};
|
|
1617
|
+
export type QueryFetchEqmsDeviceByIdArgs = {
|
|
1618
|
+
id: Scalars['ID']['input'];
|
|
1619
|
+
};
|
|
1620
|
+
export type QueryFetchEqmsDeviceListArgs = {
|
|
1621
|
+
queryData?: InputMaybe<EqmsDeviceListInput>;
|
|
1622
|
+
};
|
|
1623
|
+
export type QueryFetchEqmsLiveGraphPageDataArgs = {
|
|
1624
|
+
data?: InputMaybe<EqmsLiveGraphPageDataFetchInput>;
|
|
1625
|
+
};
|
|
1626
|
+
export type QueryFetchEqmsLiveReportArgs = {
|
|
1627
|
+
queryData?: InputMaybe<EqmsLiveReportInput>;
|
|
1628
|
+
};
|
|
1629
|
+
export type QueryFetchEqmsTempDataTableByDeviceIdArgs = {
|
|
1630
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1631
|
+
};
|
|
1351
1632
|
export type QueryFetchHeatMapPageDataArgs = {
|
|
1352
1633
|
data?: InputMaybe<HeatMapPageDataFetchInput>;
|
|
1353
1634
|
};
|
|
@@ -1399,6 +1680,9 @@ export type QueryFetchNguDeviceReportArgs = {
|
|
|
1399
1680
|
export type QueryFetchNguDevicesReportArgs = {
|
|
1400
1681
|
queryData?: InputMaybe<NguDevicesReportInput>;
|
|
1401
1682
|
};
|
|
1683
|
+
export type QueryFetchNguLocationMapPageDataArgs = {
|
|
1684
|
+
data?: InputMaybe<NguLocationMapPageDataFetchInput>;
|
|
1685
|
+
};
|
|
1402
1686
|
export type QueryFetchNguTempDataTableByDeviceIdArgs = {
|
|
1403
1687
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1404
1688
|
};
|
|
@@ -1431,14 +1715,18 @@ export type QueryFetchUserListArgs = {
|
|
|
1431
1715
|
};
|
|
1432
1716
|
export type RegisterConfig = {
|
|
1433
1717
|
__typename?: 'RegisterConfig';
|
|
1434
|
-
|
|
1718
|
+
dbName?: Maybe<Scalars['String']['output']>;
|
|
1719
|
+
parameterName?: Maybe<Scalars['String']['output']>;
|
|
1720
|
+
regFormat?: Maybe<Scalars['String']['output']>;
|
|
1435
1721
|
registers?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1436
|
-
|
|
1722
|
+
suffix?: Maybe<Scalars['String']['output']>;
|
|
1437
1723
|
};
|
|
1438
1724
|
export type RegisterConfigInput = {
|
|
1439
|
-
|
|
1725
|
+
dbName?: InputMaybe<Scalars['String']['input']>;
|
|
1726
|
+
parameterName?: InputMaybe<Scalars['String']['input']>;
|
|
1727
|
+
regFormat?: InputMaybe<Scalars['String']['input']>;
|
|
1440
1728
|
registers?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1441
|
-
|
|
1729
|
+
suffix?: InputMaybe<Scalars['String']['input']>;
|
|
1442
1730
|
};
|
|
1443
1731
|
export type ReportInput = {
|
|
1444
1732
|
deviceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1485,6 +1773,14 @@ export type SettingsPageData = {
|
|
|
1485
1773
|
export type StatusInput = {
|
|
1486
1774
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
1487
1775
|
};
|
|
1776
|
+
export type Storage = {
|
|
1777
|
+
__typename?: 'Storage';
|
|
1778
|
+
id: Scalars['ID']['output'];
|
|
1779
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1780
|
+
};
|
|
1781
|
+
export type StorageInput = {
|
|
1782
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1783
|
+
};
|
|
1488
1784
|
export type TempDataAlert = {
|
|
1489
1785
|
__typename?: 'TempDataAlert';
|
|
1490
1786
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -1510,25 +1806,6 @@ export type TempDataTable = {
|
|
|
1510
1806
|
startKWH?: Maybe<Scalars['Float']['output']>;
|
|
1511
1807
|
status?: Maybe<Scalars['String']['output']>;
|
|
1512
1808
|
};
|
|
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
1809
|
export type TimelineChartPageData = {
|
|
1533
1810
|
__typename?: 'TimelineChartPageData';
|
|
1534
1811
|
devicesAlert?: Maybe<Array<Maybe<HourlyAlertReport>>>;
|
|
@@ -1538,6 +1815,18 @@ export type TimelineChartPageDataFetchInput = {
|
|
|
1538
1815
|
devicesAlert?: InputMaybe<HourlyAlertReportInput>;
|
|
1539
1816
|
devicesHourlyPowerConsumption?: InputMaybe<PowerConsumptionFetchInput>;
|
|
1540
1817
|
};
|
|
1818
|
+
export type UiCustomNames = {
|
|
1819
|
+
__typename?: 'UiCustomNames';
|
|
1820
|
+
customName?: Maybe<Scalars['String']['output']>;
|
|
1821
|
+
dbName?: Maybe<Scalars['String']['output']>;
|
|
1822
|
+
defaultName?: Maybe<Scalars['String']['output']>;
|
|
1823
|
+
id: Scalars['ID']['output'];
|
|
1824
|
+
};
|
|
1825
|
+
export type UiCustomNamesInput = {
|
|
1826
|
+
customName?: InputMaybe<Scalars['String']['input']>;
|
|
1827
|
+
dbName?: InputMaybe<Scalars['String']['input']>;
|
|
1828
|
+
defaultName?: InputMaybe<Scalars['String']['input']>;
|
|
1829
|
+
};
|
|
1541
1830
|
export type UpdateDeviceAlertStatusInput = {
|
|
1542
1831
|
hourId?: InputMaybe<Scalars['Int']['input']>;
|
|
1543
1832
|
reportId: Scalars['ID']['input'];
|
|
@@ -1547,6 +1836,10 @@ export type UpdateManyDevicesInput = {
|
|
|
1547
1836
|
data?: InputMaybe<DeviceInput>;
|
|
1548
1837
|
id: Scalars['ID']['input'];
|
|
1549
1838
|
};
|
|
1839
|
+
export type UpdateManyUserInput = {
|
|
1840
|
+
data?: InputMaybe<UserInput>;
|
|
1841
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1842
|
+
};
|
|
1550
1843
|
export type User = {
|
|
1551
1844
|
__typename?: 'User';
|
|
1552
1845
|
id: Scalars['ID']['output'];
|