@mjtech-ems/schema 1.3.38 → 1.3.40

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.
@@ -167,6 +167,7 @@ export type BasicSettings = {
167
167
  companyId?: Maybe<Scalars['ID']['output']>;
168
168
  costConfig?: Maybe<Array<Maybe<CostConfig>>>;
169
169
  duration?: Maybe<Scalars['String']['output']>;
170
+ id?: Maybe<Scalars['ID']['output']>;
170
171
  readingEndDate?: Maybe<Scalars['Date']['output']>;
171
172
  readingStartDate?: Maybe<Scalars['Date']['output']>;
172
173
  };
@@ -180,12 +181,50 @@ export type BasicSettingsInput = {
180
181
  export type Billing = {
181
182
  __typename?: 'Billing';
182
183
  billNumber?: Maybe<Scalars['String']['output']>;
184
+ cgstTotal?: Maybe<Scalars['Float']['output']>;
183
185
  date?: Maybe<Scalars['Date']['output']>;
184
- freight?: Maybe<Scalars['String']['output']>;
186
+ freight?: Maybe<Scalars['Float']['output']>;
187
+ freightGSTPercentage?: Maybe<Scalars['Int']['output']>;
185
188
  givenBy?: Maybe<Scalars['String']['output']>;
186
189
  id?: Maybe<Scalars['ID']['output']>;
190
+ igstTotal?: Maybe<Scalars['Float']['output']>;
191
+ isIGST?: Maybe<Scalars['Boolean']['output']>;
187
192
  items?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
193
+ loadingAndUnloadingCharges?: Maybe<Scalars['Float']['output']>;
194
+ otherCharges?: Maybe<Scalars['Float']['output']>;
195
+ otherThanBillExpenses?: Maybe<Scalars['Float']['output']>;
196
+ pf?: Maybe<Scalars['Int']['output']>;
197
+ pfGSTPercentage?: Maybe<Scalars['Int']['output']>;
198
+ roundOff?: Maybe<Scalars['Float']['output']>;
199
+ sgstTotal?: Maybe<Scalars['Float']['output']>;
188
200
  suppliedBy?: Maybe<Scalars['String']['output']>;
201
+ totalBillValue?: Maybe<Scalars['Float']['output']>;
202
+ transportAmount?: Maybe<Scalars['Float']['output']>;
203
+ transportedBy?: Maybe<Scalars['String']['output']>;
204
+ verifiedBy?: Maybe<Scalars['String']['output']>;
205
+ };
206
+ export type BillingInput = {
207
+ billNumber?: InputMaybe<Scalars['String']['input']>;
208
+ cgstTotal?: InputMaybe<Scalars['Float']['input']>;
209
+ date?: InputMaybe<Scalars['Date']['input']>;
210
+ freight?: InputMaybe<Scalars['Float']['input']>;
211
+ freightGSTPercentage?: InputMaybe<Scalars['Int']['input']>;
212
+ givenBy?: InputMaybe<Scalars['String']['input']>;
213
+ igstTotal?: InputMaybe<Scalars['Float']['input']>;
214
+ isIGST?: InputMaybe<Scalars['Boolean']['input']>;
215
+ items?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
216
+ loadingAndUnloadingCharges?: InputMaybe<Scalars['Float']['input']>;
217
+ otherCharges?: InputMaybe<Scalars['Float']['input']>;
218
+ otherThanBillExpenses?: InputMaybe<Scalars['Float']['input']>;
219
+ pf?: InputMaybe<Scalars['Float']['input']>;
220
+ pfGSTPercentage?: InputMaybe<Scalars['Int']['input']>;
221
+ roundOff?: InputMaybe<Scalars['Float']['input']>;
222
+ sgstTotal?: InputMaybe<Scalars['Float']['input']>;
223
+ suppliedBy?: InputMaybe<Scalars['String']['input']>;
224
+ totalBillValue?: InputMaybe<Scalars['Float']['input']>;
225
+ transportAmount?: InputMaybe<Scalars['Float']['input']>;
226
+ transportedBy?: InputMaybe<Scalars['String']['input']>;
227
+ verifiedBy?: InputMaybe<Scalars['String']['input']>;
189
228
  };
190
229
  export type BillingResponse = GeneralResponse | InventoryBillingResponse;
191
230
  export declare enum Brand {
@@ -264,6 +303,12 @@ export type CostConfigInput = {
264
303
  range?: InputMaybe<Scalars['String']['input']>;
265
304
  };
266
305
  export type CreateCompanyResponse = CompanyResponse | GeneralResponse;
306
+ export type CreateProjectResponse = {
307
+ __typename?: 'CreateProjectResponse';
308
+ id: Scalars['ID']['output'];
309
+ message?: Maybe<Scalars['String']['output']>;
310
+ status?: Maybe<Scalars['String']['output']>;
311
+ };
267
312
  export type CreateUserResponse = GeneralResponse | UserResponse;
268
313
  export type DbInput = {
269
314
  appType?: InputMaybe<Scalars['String']['input']>;
@@ -732,8 +777,15 @@ export type HourlyUtilizationDataForGraphInput = {
732
777
  export type Image = {
733
778
  __typename?: 'Image';
734
779
  alt?: Maybe<Scalars['String']['output']>;
780
+ id?: Maybe<Scalars['ID']['output']>;
781
+ imgstr?: Maybe<Scalars['String']['output']>;
782
+ name?: Maybe<Scalars['String']['output']>;
735
783
  url?: Maybe<Scalars['URL']['output']>;
736
784
  };
785
+ export type ImageInput = {
786
+ imgstr?: InputMaybe<Scalars['String']['input']>;
787
+ name?: InputMaybe<Scalars['String']['input']>;
788
+ };
737
789
  export type InventoryBasicTableInput = {
738
790
  columnIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
739
791
  companyId?: InputMaybe<Scalars['ID']['input']>;
@@ -776,6 +828,7 @@ export type InventoryColumns = {
776
828
  id: Scalars['ID']['output'];
777
829
  type?: Maybe<Scalars['String']['output']>;
778
830
  };
831
+ export type InventoryCreateProjectResponse = CreateProjectResponse | GeneralResponse;
779
832
  export type InventoryCustomerInput = {
780
833
  companyId?: InputMaybe<Scalars['ID']['input']>;
781
834
  email?: InputMaybe<Scalars['EmailAddress']['input']>;
@@ -922,6 +975,11 @@ export type InventoryTableForResponse = {
922
975
  message?: Maybe<Scalars['String']['output']>;
923
976
  status?: Maybe<Scalars['String']['output']>;
924
977
  };
978
+ export type InventoryWorkSchedule = {
979
+ __typename?: 'InventoryWorkSchedule';
980
+ value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
981
+ };
982
+ export type InventoryWorkScheduleResponse = GeneralResponse | WorkScheduleResponse;
925
983
  export type InwardOrOutWardData = {
926
984
  __typename?: 'InwardOrOutWardData';
927
985
  value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
@@ -1011,6 +1069,26 @@ export type LoginSuccessResponse = {
1011
1069
  userType?: Maybe<Scalars['String']['output']>;
1012
1070
  };
1013
1071
  export type LoginUserResponse = GeneralResponse | LoginResponse;
1072
+ export type MaterialOrderStatus = {
1073
+ __typename?: 'MaterialOrderStatus';
1074
+ description?: Maybe<Scalars['String']['output']>;
1075
+ expectedDate?: Maybe<Scalars['Date']['output']>;
1076
+ id: Scalars['ID']['output'];
1077
+ itemId?: Maybe<Scalars['String']['output']>;
1078
+ orderedDate?: Maybe<Scalars['Date']['output']>;
1079
+ payment?: Maybe<Scalars['String']['output']>;
1080
+ status?: Maybe<Scalars['Int']['output']>;
1081
+ supplier?: Maybe<Scalars['ID']['output']>;
1082
+ };
1083
+ export type MaterialOrderStatusInput = {
1084
+ description?: InputMaybe<Scalars['String']['input']>;
1085
+ expectedDate?: InputMaybe<Scalars['Date']['input']>;
1086
+ itemId?: InputMaybe<Scalars['String']['input']>;
1087
+ orderedDate?: InputMaybe<Scalars['Date']['input']>;
1088
+ payment?: InputMaybe<Scalars['String']['input']>;
1089
+ status?: InputMaybe<Scalars['Int']['input']>;
1090
+ supplier?: InputMaybe<Scalars['ID']['input']>;
1091
+ };
1014
1092
  export type MonthlyReportInput = {
1015
1093
  deviceId?: InputMaybe<Scalars['ID']['input']>;
1016
1094
  deviceName?: InputMaybe<Scalars['String']['input']>;
@@ -1057,17 +1135,21 @@ export type Mutation = {
1057
1135
  addInventoryBasicTable?: Maybe<GeneralResponse>;
1058
1136
  addInventoryColumn?: Maybe<GeneralResponse>;
1059
1137
  addInventoryCustomer?: Maybe<AddInventoryCustomerResponse>;
1138
+ addInventoryImage?: Maybe<GeneralResponse>;
1060
1139
  addInventoryMachine?: Maybe<AddInventoryMachineResponse>;
1140
+ addInventoryMaterialOrderStatus?: Maybe<GeneralResponse>;
1061
1141
  addInventoryStatus?: Maybe<GeneralResponse>;
1062
1142
  addInventoryStorage?: Maybe<AddInventoryStorageResponse>;
1063
1143
  addInventorySubBasicTable?: Maybe<GeneralResponse>;
1064
1144
  addInventorySubCategoryTableFor?: Maybe<AddInventorySubCategoryTableForResponse>;
1065
1145
  addInventorySupplier?: Maybe<AddInventorySupplierResponse>;
1066
1146
  addInventoryTableFor?: Maybe<AddInventoryTableForResponse>;
1147
+ addInventoryWorkSchedule?: Maybe<InventoryWorkScheduleResponse>;
1067
1148
  addItemInInward?: Maybe<InwardResponse>;
1068
1149
  addItemInOutward?: Maybe<OutwardResponse>;
1069
1150
  addManyInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1070
1151
  addManyInventoryTableFor?: Maybe<GeneralResponse>;
1152
+ addManyInventoryWorkSchedule?: Maybe<GeneralResponse>;
1071
1153
  addNewDepartment?: Maybe<DepartmentResponse>;
1072
1154
  addPurchaseOrder?: Maybe<PurchaseOrderResponse>;
1073
1155
  addSubCategoryItemInInward?: Maybe<InwardResponse>;
@@ -1084,7 +1166,7 @@ export type Mutation = {
1084
1166
  createNguCompany?: Maybe<GeneralResponse>;
1085
1167
  createNguDevice?: Maybe<GeneralResponse>;
1086
1168
  createNguUser?: Maybe<GeneralResponse>;
1087
- createProject?: Maybe<GeneralResponse>;
1169
+ createProject?: Maybe<InventoryCreateProjectResponse>;
1088
1170
  createUser?: Maybe<CreateUserResponse>;
1089
1171
  deleteDB?: Maybe<GeneralResponse>;
1090
1172
  deleteDepartment?: Maybe<GeneralResponse>;
@@ -1093,13 +1175,17 @@ export type Mutation = {
1093
1175
  deleteInventoryBasicTable?: Maybe<GeneralResponse>;
1094
1176
  deleteInventoryColumn?: Maybe<GeneralResponse>;
1095
1177
  deleteInventoryCustomer?: Maybe<GeneralResponse>;
1178
+ deleteInventoryImage?: Maybe<GeneralResponse>;
1096
1179
  deleteInventoryMachine?: Maybe<GeneralResponse>;
1180
+ deleteInventoryMaterialOrderStatus?: Maybe<GeneralResponse>;
1097
1181
  deleteInventoryStatus?: Maybe<GeneralResponse>;
1098
1182
  deleteInventoryStorage?: Maybe<GeneralResponse>;
1099
1183
  deleteInventorySubBasicTable?: Maybe<GeneralResponse>;
1100
1184
  deleteInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1101
1185
  deleteInventorySupplier?: Maybe<GeneralResponse>;
1102
1186
  deleteInventoryTableFor?: Maybe<GeneralResponse>;
1187
+ deleteInventoryWorkSchedule?: Maybe<GeneralResponse>;
1188
+ deleteManyInventoryWorkSchedule?: Maybe<GeneralResponse>;
1103
1189
  deleteNguDevice?: Maybe<GeneralResponse>;
1104
1190
  deleteUser?: Maybe<GeneralResponse>;
1105
1191
  deleteUserSession?: Maybe<GeneralResponse>;
@@ -1109,15 +1195,18 @@ export type Mutation = {
1109
1195
  editInventoryColumn?: Maybe<GeneralResponse>;
1110
1196
  editInventoryCustomer?: Maybe<GeneralResponse>;
1111
1197
  editInventoryMachine?: Maybe<GeneralResponse>;
1198
+ editInventoryMaterialOrderStatus?: Maybe<GeneralResponse>;
1112
1199
  editInventoryStatus?: Maybe<GeneralResponse>;
1113
1200
  editInventoryStorage?: Maybe<GeneralResponse>;
1114
1201
  editInventorySubBasicTable?: Maybe<GeneralResponse>;
1115
1202
  editInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1116
1203
  editInventorySupplier?: Maybe<GeneralResponse>;
1117
1204
  editInventoryTableFor?: Maybe<GeneralResponse>;
1205
+ editInventoryWorkSchedule?: Maybe<GeneralResponse>;
1118
1206
  editManyDepartments?: Maybe<GeneralResponse>;
1119
1207
  editManyInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1120
1208
  editManyInventoryTableFor?: Maybe<GeneralResponse>;
1209
+ editManyInventoryWorkSchedule?: Maybe<GeneralResponse>;
1121
1210
  editProject?: Maybe<GeneralResponse>;
1122
1211
  editPurchaseOrder?: Maybe<GeneralResponse>;
1123
1212
  forgotPassword?: Maybe<GeneralResponse>;
@@ -1153,7 +1242,7 @@ export type Mutation = {
1153
1242
  verifyLogout?: Maybe<GeneralResponse>;
1154
1243
  };
1155
1244
  export type MutationAddBillingArgs = {
1156
- data?: InputMaybe<Scalars['JSON']['input']>;
1245
+ data?: InputMaybe<BillingInput>;
1157
1246
  };
1158
1247
  export type MutationAddInventoryBasicTableArgs = {
1159
1248
  queryData?: InputMaybe<InventoryBasicTableInput>;
@@ -1164,9 +1253,15 @@ export type MutationAddInventoryColumnArgs = {
1164
1253
  export type MutationAddInventoryCustomerArgs = {
1165
1254
  data?: InputMaybe<InventoryCustomerInput>;
1166
1255
  };
1256
+ export type MutationAddInventoryImageArgs = {
1257
+ data?: InputMaybe<ImageInput>;
1258
+ };
1167
1259
  export type MutationAddInventoryMachineArgs = {
1168
1260
  data?: InputMaybe<InventoryMachineInput>;
1169
1261
  };
1262
+ export type MutationAddInventoryMaterialOrderStatusArgs = {
1263
+ data?: InputMaybe<MaterialOrderStatusInput>;
1264
+ };
1170
1265
  export type MutationAddInventoryStatusArgs = {
1171
1266
  data?: InputMaybe<InventoryStatusInput>;
1172
1267
  };
@@ -1188,6 +1283,9 @@ export type MutationAddInventoryTableForArgs = {
1188
1283
  basicTableId: Scalars['ID']['input'];
1189
1284
  data?: InputMaybe<Scalars['JSON']['input']>;
1190
1285
  };
1286
+ export type MutationAddInventoryWorkScheduleArgs = {
1287
+ data?: InputMaybe<Scalars['JSON']['input']>;
1288
+ };
1191
1289
  export type MutationAddItemInInwardArgs = {
1192
1290
  basicTableId: Scalars['ID']['input'];
1193
1291
  data?: InputMaybe<Scalars['JSON']['input']>;
@@ -1205,6 +1303,9 @@ export type MutationAddManyInventoryTableForArgs = {
1205
1303
  basicTableId: Scalars['ID']['input'];
1206
1304
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1207
1305
  };
1306
+ export type MutationAddManyInventoryWorkScheduleArgs = {
1307
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1308
+ };
1208
1309
  export type MutationAddNewDepartmentArgs = {
1209
1310
  data?: InputMaybe<DepartmentsInput>;
1210
1311
  };
@@ -1288,9 +1389,15 @@ export type MutationDeleteInventoryColumnArgs = {
1288
1389
  export type MutationDeleteInventoryCustomerArgs = {
1289
1390
  id: Scalars['ID']['input'];
1290
1391
  };
1392
+ export type MutationDeleteInventoryImageArgs = {
1393
+ id: Scalars['ID']['input'];
1394
+ };
1291
1395
  export type MutationDeleteInventoryMachineArgs = {
1292
1396
  id: Scalars['ID']['input'];
1293
1397
  };
1398
+ export type MutationDeleteInventoryMaterialOrderStatusArgs = {
1399
+ id: Scalars['ID']['input'];
1400
+ };
1294
1401
  export type MutationDeleteInventoryStatusArgs = {
1295
1402
  id: Scalars['ID']['input'];
1296
1403
  };
@@ -1312,6 +1419,12 @@ export type MutationDeleteInventoryTableForArgs = {
1312
1419
  basicTableId: Scalars['ID']['input'];
1313
1420
  tableId: Scalars['ID']['input'];
1314
1421
  };
1422
+ export type MutationDeleteInventoryWorkScheduleArgs = {
1423
+ id: Scalars['ID']['input'];
1424
+ };
1425
+ export type MutationDeleteManyInventoryWorkScheduleArgs = {
1426
+ ids?: InputMaybe<Array<Scalars['ID']['input']>>;
1427
+ };
1315
1428
  export type MutationDeleteNguDeviceArgs = {
1316
1429
  id: Scalars['ID']['input'];
1317
1430
  };
@@ -1322,7 +1435,7 @@ export type MutationDeleteUserSessionArgs = {
1322
1435
  data?: InputMaybe<SessionInput>;
1323
1436
  };
1324
1437
  export type MutationEditBillingArgs = {
1325
- data?: InputMaybe<Scalars['JSON']['input']>;
1438
+ data?: InputMaybe<BillingInput>;
1326
1439
  id: Scalars['ID']['input'];
1327
1440
  };
1328
1441
  export type MutationEditDepartmentArgs = {
@@ -1345,6 +1458,10 @@ export type MutationEditInventoryMachineArgs = {
1345
1458
  data?: InputMaybe<InventoryMachineInput>;
1346
1459
  id: Scalars['ID']['input'];
1347
1460
  };
1461
+ export type MutationEditInventoryMaterialOrderStatusArgs = {
1462
+ data?: InputMaybe<MaterialOrderStatusInput>;
1463
+ id: Scalars['ID']['input'];
1464
+ };
1348
1465
  export type MutationEditInventoryStatusArgs = {
1349
1466
  data?: InputMaybe<InventoryStatusInput>;
1350
1467
  id: Scalars['ID']['input'];
@@ -1372,6 +1489,10 @@ export type MutationEditInventoryTableForArgs = {
1372
1489
  data?: InputMaybe<Scalars['JSON']['input']>;
1373
1490
  tableId: Scalars['ID']['input'];
1374
1491
  };
1492
+ export type MutationEditInventoryWorkScheduleArgs = {
1493
+ data?: InputMaybe<Scalars['JSON']['input']>;
1494
+ id: Scalars['ID']['input'];
1495
+ };
1375
1496
  export type MutationEditManyDepartmentsArgs = {
1376
1497
  data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
1377
1498
  };
@@ -1381,6 +1502,9 @@ export type MutationEditManyInventorySubCategoryTableForArgs = {
1381
1502
  export type MutationEditManyInventoryTableForArgs = {
1382
1503
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1383
1504
  };
1505
+ export type MutationEditManyInventoryWorkScheduleArgs = {
1506
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1507
+ };
1384
1508
  export type MutationEditProjectArgs = {
1385
1509
  data?: InputMaybe<Scalars['JSON']['input']>;
1386
1510
  id: Scalars['ID']['input'];
@@ -1419,6 +1543,7 @@ export type MutationUpdateAlertEmailArgs = {
1419
1543
  };
1420
1544
  export type MutationUpdateBasicSettingsArgs = {
1421
1545
  data?: InputMaybe<BasicSettingsInput>;
1546
+ id: Scalars['ID']['input'];
1422
1547
  };
1423
1548
  export type MutationUpdateCompanyArgs = {
1424
1549
  data?: InputMaybe<CompanyInput>;
@@ -1707,6 +1832,11 @@ export type PasswordInput = {
1707
1832
  oldPassword?: InputMaybe<Scalars['String']['input']>;
1708
1833
  password?: InputMaybe<Scalars['String']['input']>;
1709
1834
  };
1835
+ export type PeakKw = {
1836
+ __typename?: 'PeakKW';
1837
+ time?: Maybe<Scalars['String']['output']>;
1838
+ value?: Maybe<Scalars['Float']['output']>;
1839
+ };
1710
1840
  export type PeakKwh = {
1711
1841
  __typename?: 'PeakKWH';
1712
1842
  lastUpdated?: Maybe<Scalars['String']['output']>;
@@ -1751,11 +1881,12 @@ export type PurchaseOrder = {
1751
1881
  date?: Maybe<Scalars['String']['output']>;
1752
1882
  deliveryDate?: Maybe<Scalars['String']['output']>;
1753
1883
  expectedDeliveryDate?: Maybe<Scalars['String']['output']>;
1884
+ expectedStartDate?: Maybe<Scalars['String']['output']>;
1754
1885
  id: Scalars['ID']['output'];
1755
1886
  no?: Maybe<Scalars['String']['output']>;
1756
1887
  paymentTerm?: Maybe<Scalars['String']['output']>;
1757
1888
  price?: Maybe<Scalars['Int']['output']>;
1758
- projectNumber?: Maybe<Scalars['String']['output']>;
1889
+ projectId?: Maybe<Scalars['String']['output']>;
1759
1890
  quantity?: Maybe<Scalars['Int']['output']>;
1760
1891
  };
1761
1892
  export type PurchaseOrderResponse = GeneralResponse | InventoryPurchaseOrderResponse;
@@ -1804,8 +1935,10 @@ export type Query = {
1804
1935
  fetchInventoryBasicTables?: Maybe<Array<Maybe<InventoryBasicTables>>>;
1805
1936
  fetchInventoryColumns?: Maybe<Array<Maybe<InventoryColumns>>>;
1806
1937
  fetchInventoryCustomers?: Maybe<Array<Maybe<InventoryCustomers>>>;
1938
+ fetchInventoryImages?: Maybe<Array<Maybe<Image>>>;
1807
1939
  fetchInventoryInwards?: Maybe<InventoryInwards>;
1808
1940
  fetchInventoryMachines?: Maybe<Array<Maybe<InventoryMachines>>>;
1941
+ fetchInventoryMaterialOrderStatus?: Maybe<Array<Maybe<MaterialOrderStatus>>>;
1809
1942
  fetchInventoryStatuses?: Maybe<Array<Maybe<InventoryStatus>>>;
1810
1943
  fetchInventoryStorages?: Maybe<Array<Maybe<InventoryStorage>>>;
1811
1944
  fetchInventorySubBasicTables?: Maybe<Array<Maybe<InventorySubBasicTables>>>;
@@ -1815,6 +1948,8 @@ export type Query = {
1815
1948
  fetchInventorySuppliers?: Maybe<Array<Maybe<InventorySuppliers>>>;
1816
1949
  fetchInventoryTable?: Maybe<InventoryTable>;
1817
1950
  fetchInventoryTables?: Maybe<InventoryTable>;
1951
+ fetchInventoryWorkSchedule?: Maybe<InventoryWorkSchedule>;
1952
+ fetchInventoryWorkSchedules?: Maybe<InventoryWorkSchedule>;
1818
1953
  fetchLastMessagesFromMqtt?: Maybe<LastMessagesFromMqtt>;
1819
1954
  fetchLiveCurrentForPeriod?: Maybe<Array<Maybe<LiveCurrentForPeriod>>>;
1820
1955
  fetchLiveGraphPageData?: Maybe<LiveGraphPageData>;
@@ -2000,6 +2135,9 @@ export type QueryFetchInventoryTablesArgs = {
2000
2135
  basicTableIds?: InputMaybe<Array<Scalars['ID']['input']>>;
2001
2136
  properties?: InputMaybe<Scalars['JSON']['input']>;
2002
2137
  };
2138
+ export type QueryFetchInventoryWorkScheduleArgs = {
2139
+ data?: InputMaybe<Scalars['JSON']['input']>;
2140
+ };
2003
2141
  export type QueryFetchLastMessagesFromMqttArgs = {
2004
2142
  queryData?: InputMaybe<LastMessagesFromMqttInput>;
2005
2143
  };
@@ -2168,6 +2306,7 @@ export type TempDataTable = {
2168
2306
  peakKW?: Maybe<Scalars['JSON']['output']>;
2169
2307
  peakKWH?: Maybe<PeakKwh>;
2170
2308
  peakKWHsArray?: Maybe<Array<Maybe<PeakKwh>>>;
2309
+ peakKWsArray?: Maybe<Array<Maybe<PeakKw>>>;
2171
2310
  peaksAndLows?: Maybe<Scalars['JSON']['output']>;
2172
2311
  pkt?: Maybe<Scalars['String']['output']>;
2173
2312
  readingEndDate?: Maybe<Scalars['Date']['output']>;
@@ -2216,6 +2355,7 @@ export type UserInfo = {
2216
2355
  email?: Maybe<Scalars['EmailAddress']['output']>;
2217
2356
  firstName?: Maybe<Scalars['String']['output']>;
2218
2357
  lastName?: Maybe<Scalars['String']['output']>;
2358
+ password?: Maybe<Scalars['String']['output']>;
2219
2359
  phone?: Maybe<Scalars['PhoneNumber']['output']>;
2220
2360
  status?: Maybe<Scalars['String']['output']>;
2221
2361
  userType?: Maybe<Scalars['String']['output']>;
@@ -2257,6 +2397,12 @@ export type UtilizationDataForGraph = {
2257
2397
  datesArray?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2258
2398
  deviceName?: Maybe<Scalars['String']['output']>;
2259
2399
  };
2400
+ export type WorkScheduleResponse = {
2401
+ __typename?: 'WorkScheduleResponse';
2402
+ Id: Scalars['ID']['output'];
2403
+ message?: Maybe<Scalars['String']['output']>;
2404
+ status?: Maybe<Scalars['String']['output']>;
2405
+ };
2260
2406
  export type ForgotInput = {
2261
2407
  email?: InputMaybe<Scalars['EmailAddress']['input']>;
2262
2408
  };