@mjtech-ems/schema 1.3.36 → 1.3.38

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.
@@ -96,6 +96,7 @@ export type ActiveAppsInput = {
96
96
  export type AddInventoryCustomerResponse = GeneralResponse | InventoryCustomerResponse;
97
97
  export type AddInventoryMachineResponse = GeneralResponse | InventoryMachineResponse;
98
98
  export type AddInventoryStorageResponse = GeneralResponse | InventoryStorageResponse;
99
+ export type AddInventorySubCategoryTableForResponse = GeneralResponse | InventorySubCategoryTableForResponse;
99
100
  export type AddInventorySupplierResponse = GeneralResponse | InventorySupplierResponse;
100
101
  export type AddInventoryTableForResponse = GeneralResponse | InventoryTableForResponse;
101
102
  export type AlertEmail = {
@@ -141,6 +142,10 @@ export type AlertsInput = {
141
142
  seen?: InputMaybe<AlertSeenInput>;
142
143
  value?: InputMaybe<Scalars['JSON']['input']>;
143
144
  };
145
+ export type AllInventoryTableItems = {
146
+ __typename?: 'AllInventoryTableItems';
147
+ value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
148
+ };
144
149
  export type AnalyticsInfo = {
145
150
  __typename?: 'AnalyticsInfo';
146
151
  KWh?: Maybe<Scalars['String']['output']>;
@@ -159,12 +164,14 @@ export type AttachmentsInput = {
159
164
  };
160
165
  export type BasicSettings = {
161
166
  __typename?: 'BasicSettings';
167
+ companyId?: Maybe<Scalars['ID']['output']>;
162
168
  costConfig?: Maybe<Array<Maybe<CostConfig>>>;
163
169
  duration?: Maybe<Scalars['String']['output']>;
164
170
  readingEndDate?: Maybe<Scalars['Date']['output']>;
165
171
  readingStartDate?: Maybe<Scalars['Date']['output']>;
166
172
  };
167
173
  export type BasicSettingsInput = {
174
+ companyId?: InputMaybe<Scalars['ID']['input']>;
168
175
  costConfig?: InputMaybe<Array<InputMaybe<CostConfigInput>>>;
169
176
  duration?: InputMaybe<Scalars['String']['input']>;
170
177
  readingEndDate?: InputMaybe<Scalars['Date']['input']>;
@@ -258,6 +265,20 @@ export type CostConfigInput = {
258
265
  };
259
266
  export type CreateCompanyResponse = CompanyResponse | GeneralResponse;
260
267
  export type CreateUserResponse = GeneralResponse | UserResponse;
268
+ export type DbInput = {
269
+ appType?: InputMaybe<Scalars['String']['input']>;
270
+ collection?: InputMaybe<Scalars['String']['input']>;
271
+ companyId?: InputMaybe<Scalars['ID']['input']>;
272
+ endDate?: InputMaybe<Scalars['String']['input']>;
273
+ inventoryTableCategory?: InputMaybe<Scalars['String']['input']>;
274
+ inventoryTableId?: InputMaybe<Scalars['ID']['input']>;
275
+ inventoryTableTransactionType?: InputMaybe<Scalars['String']['input']>;
276
+ startDate?: InputMaybe<Scalars['String']['input']>;
277
+ };
278
+ export type DbType = {
279
+ __typename?: 'DBType';
280
+ value?: Maybe<Scalars['JSON']['output']>;
281
+ };
261
282
  export type DashboardData = {
262
283
  __typename?: 'DashboardData';
263
284
  devicesActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
@@ -809,6 +830,12 @@ export type InventoryOutwardResponse = {
809
830
  outwardItemId: Scalars['ID']['output'];
810
831
  status?: Maybe<Scalars['String']['output']>;
811
832
  };
833
+ export type InventoryPurchaseOrderResponse = {
834
+ __typename?: 'InventoryPurchaseOrderResponse';
835
+ message?: Maybe<Scalars['String']['output']>;
836
+ purchaseOrderId: Scalars['ID']['output'];
837
+ status?: Maybe<Scalars['String']['output']>;
838
+ };
812
839
  export type InventoryStatus = {
813
840
  __typename?: 'InventoryStatus';
814
841
  basicTableId: Scalars['ID']['output'];
@@ -837,6 +864,32 @@ export type InventoryStorageResponse = {
837
864
  status?: Maybe<Scalars['String']['output']>;
838
865
  storageId: Scalars['ID']['output'];
839
866
  };
867
+ export type InventorySubBasicTableInput = {
868
+ basicTableId?: InputMaybe<Scalars['String']['input']>;
869
+ columnIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
870
+ companyId?: InputMaybe<Scalars['ID']['input']>;
871
+ tableAlias?: InputMaybe<Scalars['String']['input']>;
872
+ tableName?: InputMaybe<Scalars['String']['input']>;
873
+ };
874
+ export type InventorySubBasicTables = {
875
+ __typename?: 'InventorySubBasicTables';
876
+ basicTableId: Scalars['ID']['output'];
877
+ columns?: Maybe<Array<Maybe<InventoryColumns>>>;
878
+ companyId?: Maybe<Scalars['ID']['output']>;
879
+ id: Scalars['ID']['output'];
880
+ tableAlias?: Maybe<Scalars['String']['output']>;
881
+ tableName?: Maybe<Scalars['String']['output']>;
882
+ };
883
+ export type InventorySubCategoryTable = {
884
+ __typename?: 'InventorySubCategoryTable';
885
+ value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
886
+ };
887
+ export type InventorySubCategoryTableForResponse = {
888
+ __typename?: 'InventorySubCategoryTableForResponse';
889
+ inventorySubCategoryTableForId: Scalars['ID']['output'];
890
+ message?: Maybe<Scalars['String']['output']>;
891
+ status?: Maybe<Scalars['String']['output']>;
892
+ };
840
893
  export type InventorySupplierInput = {
841
894
  companyId?: InputMaybe<Scalars['ID']['input']>;
842
895
  email?: InputMaybe<Scalars['EmailAddress']['input']>;
@@ -1007,12 +1060,19 @@ export type Mutation = {
1007
1060
  addInventoryMachine?: Maybe<AddInventoryMachineResponse>;
1008
1061
  addInventoryStatus?: Maybe<GeneralResponse>;
1009
1062
  addInventoryStorage?: Maybe<AddInventoryStorageResponse>;
1063
+ addInventorySubBasicTable?: Maybe<GeneralResponse>;
1064
+ addInventorySubCategoryTableFor?: Maybe<AddInventorySubCategoryTableForResponse>;
1010
1065
  addInventorySupplier?: Maybe<AddInventorySupplierResponse>;
1011
1066
  addInventoryTableFor?: Maybe<AddInventoryTableForResponse>;
1012
1067
  addItemInInward?: Maybe<InwardResponse>;
1013
1068
  addItemInOutward?: Maybe<OutwardResponse>;
1069
+ addManyInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1014
1070
  addManyInventoryTableFor?: Maybe<GeneralResponse>;
1015
1071
  addNewDepartment?: Maybe<DepartmentResponse>;
1072
+ addPurchaseOrder?: Maybe<PurchaseOrderResponse>;
1073
+ addSubCategoryItemInInward?: Maybe<InwardResponse>;
1074
+ addSubCategoryItemInOutward?: Maybe<OutwardResponse>;
1075
+ changeInventoryItemStatus?: Maybe<GeneralResponse>;
1016
1076
  changePassword?: Maybe<GeneralResponse>;
1017
1077
  changeProjectStatus?: Maybe<GeneralResponse>;
1018
1078
  createAlert?: Maybe<GeneralResponse>;
@@ -1026,6 +1086,7 @@ export type Mutation = {
1026
1086
  createNguUser?: Maybe<GeneralResponse>;
1027
1087
  createProject?: Maybe<GeneralResponse>;
1028
1088
  createUser?: Maybe<CreateUserResponse>;
1089
+ deleteDB?: Maybe<GeneralResponse>;
1029
1090
  deleteDepartment?: Maybe<GeneralResponse>;
1030
1091
  deleteDevice?: Maybe<GeneralResponse>;
1031
1092
  deleteEqmsDevice?: Maybe<GeneralResponse>;
@@ -1035,6 +1096,8 @@ export type Mutation = {
1035
1096
  deleteInventoryMachine?: Maybe<GeneralResponse>;
1036
1097
  deleteInventoryStatus?: Maybe<GeneralResponse>;
1037
1098
  deleteInventoryStorage?: Maybe<GeneralResponse>;
1099
+ deleteInventorySubBasicTable?: Maybe<GeneralResponse>;
1100
+ deleteInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1038
1101
  deleteInventorySupplier?: Maybe<GeneralResponse>;
1039
1102
  deleteInventoryTableFor?: Maybe<GeneralResponse>;
1040
1103
  deleteNguDevice?: Maybe<GeneralResponse>;
@@ -1048,14 +1111,19 @@ export type Mutation = {
1048
1111
  editInventoryMachine?: Maybe<GeneralResponse>;
1049
1112
  editInventoryStatus?: Maybe<GeneralResponse>;
1050
1113
  editInventoryStorage?: Maybe<GeneralResponse>;
1114
+ editInventorySubBasicTable?: Maybe<GeneralResponse>;
1115
+ editInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1051
1116
  editInventorySupplier?: Maybe<GeneralResponse>;
1052
1117
  editInventoryTableFor?: Maybe<GeneralResponse>;
1053
1118
  editManyDepartments?: Maybe<GeneralResponse>;
1119
+ editManyInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1054
1120
  editManyInventoryTableFor?: Maybe<GeneralResponse>;
1055
1121
  editProject?: Maybe<GeneralResponse>;
1122
+ editPurchaseOrder?: Maybe<GeneralResponse>;
1056
1123
  forgotPassword?: Maybe<GeneralResponse>;
1057
1124
  generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
1058
1125
  moveItemToScrap?: Maybe<GeneralResponse>;
1126
+ moveSubCategoryItemToScrap?: Maybe<GeneralResponse>;
1059
1127
  sendEmail?: Maybe<GeneralResponse>;
1060
1128
  updateAlert?: Maybe<GeneralResponse>;
1061
1129
  updateAlertEmail?: Maybe<GeneralResponse>;
@@ -1105,6 +1173,14 @@ export type MutationAddInventoryStatusArgs = {
1105
1173
  export type MutationAddInventoryStorageArgs = {
1106
1174
  data?: InputMaybe<InventoryStorageInput>;
1107
1175
  };
1176
+ export type MutationAddInventorySubBasicTableArgs = {
1177
+ queryData?: InputMaybe<InventorySubBasicTableInput>;
1178
+ };
1179
+ export type MutationAddInventorySubCategoryTableForArgs = {
1180
+ basicTableId: Scalars['ID']['input'];
1181
+ data?: InputMaybe<Scalars['JSON']['input']>;
1182
+ subBasicTableId: Scalars['ID']['input'];
1183
+ };
1108
1184
  export type MutationAddInventorySupplierArgs = {
1109
1185
  data?: InputMaybe<InventorySupplierInput>;
1110
1186
  };
@@ -1120,6 +1196,11 @@ export type MutationAddItemInOutwardArgs = {
1120
1196
  basicTableId: Scalars['ID']['input'];
1121
1197
  data?: InputMaybe<Scalars['JSON']['input']>;
1122
1198
  };
1199
+ export type MutationAddManyInventorySubCategoryTableForArgs = {
1200
+ basicTableId: Scalars['ID']['input'];
1201
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1202
+ subBasicTableId: Scalars['ID']['input'];
1203
+ };
1123
1204
  export type MutationAddManyInventoryTableForArgs = {
1124
1205
  basicTableId: Scalars['ID']['input'];
1125
1206
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
@@ -1127,6 +1208,25 @@ export type MutationAddManyInventoryTableForArgs = {
1127
1208
  export type MutationAddNewDepartmentArgs = {
1128
1209
  data?: InputMaybe<DepartmentsInput>;
1129
1210
  };
1211
+ export type MutationAddPurchaseOrderArgs = {
1212
+ data?: InputMaybe<Scalars['JSON']['input']>;
1213
+ };
1214
+ export type MutationAddSubCategoryItemInInwardArgs = {
1215
+ basicTableId: Scalars['ID']['input'];
1216
+ data?: InputMaybe<Scalars['JSON']['input']>;
1217
+ subBasicTableId: Scalars['ID']['input'];
1218
+ };
1219
+ export type MutationAddSubCategoryItemInOutwardArgs = {
1220
+ basicTableId: Scalars['ID']['input'];
1221
+ data?: InputMaybe<Scalars['JSON']['input']>;
1222
+ subBasicTableId: Scalars['ID']['input'];
1223
+ };
1224
+ export type MutationChangeInventoryItemStatusArgs = {
1225
+ basicTableId?: InputMaybe<Scalars['ID']['input']>;
1226
+ data?: InputMaybe<Scalars['JSON']['input']>;
1227
+ id: Scalars['ID']['input'];
1228
+ subBasicTableId?: InputMaybe<Scalars['String']['input']>;
1229
+ };
1130
1230
  export type MutationChangePasswordArgs = {
1131
1231
  data?: InputMaybe<PasswordInput>;
1132
1232
  };
@@ -1167,6 +1267,9 @@ export type MutationCreateProjectArgs = {
1167
1267
  export type MutationCreateUserArgs = {
1168
1268
  data?: InputMaybe<UserInput>;
1169
1269
  };
1270
+ export type MutationDeleteDbArgs = {
1271
+ data?: InputMaybe<DbInput>;
1272
+ };
1170
1273
  export type MutationDeleteDepartmentArgs = {
1171
1274
  id: Scalars['ID']['input'];
1172
1275
  };
@@ -1194,6 +1297,14 @@ export type MutationDeleteInventoryStatusArgs = {
1194
1297
  export type MutationDeleteInventoryStorageArgs = {
1195
1298
  id: Scalars['ID']['input'];
1196
1299
  };
1300
+ export type MutationDeleteInventorySubBasicTableArgs = {
1301
+ id: Scalars['ID']['input'];
1302
+ };
1303
+ export type MutationDeleteInventorySubCategoryTableForArgs = {
1304
+ basicTableId: Scalars['ID']['input'];
1305
+ subBasicTableId: Scalars['ID']['input'];
1306
+ tableId: Scalars['ID']['input'];
1307
+ };
1197
1308
  export type MutationDeleteInventorySupplierArgs = {
1198
1309
  id: Scalars['ID']['input'];
1199
1310
  };
@@ -1242,6 +1353,16 @@ export type MutationEditInventoryStorageArgs = {
1242
1353
  data?: InputMaybe<InventoryStorageInput>;
1243
1354
  id: Scalars['ID']['input'];
1244
1355
  };
1356
+ export type MutationEditInventorySubBasicTableArgs = {
1357
+ data?: InputMaybe<InventorySubBasicTableInput>;
1358
+ id: Scalars['ID']['input'];
1359
+ };
1360
+ export type MutationEditInventorySubCategoryTableForArgs = {
1361
+ basicTableId: Scalars['ID']['input'];
1362
+ data?: InputMaybe<Scalars['JSON']['input']>;
1363
+ subBasicTableId: Scalars['ID']['input'];
1364
+ tableId: Scalars['ID']['input'];
1365
+ };
1245
1366
  export type MutationEditInventorySupplierArgs = {
1246
1367
  data?: InputMaybe<InventorySupplierInput>;
1247
1368
  id: Scalars['ID']['input'];
@@ -1254,6 +1375,9 @@ export type MutationEditInventoryTableForArgs = {
1254
1375
  export type MutationEditManyDepartmentsArgs = {
1255
1376
  data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
1256
1377
  };
1378
+ export type MutationEditManyInventorySubCategoryTableForArgs = {
1379
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1380
+ };
1257
1381
  export type MutationEditManyInventoryTableForArgs = {
1258
1382
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1259
1383
  };
@@ -1261,6 +1385,10 @@ export type MutationEditProjectArgs = {
1261
1385
  data?: InputMaybe<Scalars['JSON']['input']>;
1262
1386
  id: Scalars['ID']['input'];
1263
1387
  };
1388
+ export type MutationEditPurchaseOrderArgs = {
1389
+ data?: InputMaybe<Scalars['JSON']['input']>;
1390
+ id: Scalars['ID']['input'];
1391
+ };
1264
1392
  export type MutationForgotPasswordArgs = {
1265
1393
  data?: InputMaybe<ForgotInput>;
1266
1394
  };
@@ -1272,6 +1400,13 @@ export type MutationMoveItemToScrapArgs = {
1272
1400
  data?: InputMaybe<Scalars['JSON']['input']>;
1273
1401
  scrapTableId: Scalars['ID']['input'];
1274
1402
  };
1403
+ export type MutationMoveSubCategoryItemToScrapArgs = {
1404
+ basicTableId: Scalars['ID']['input'];
1405
+ data?: InputMaybe<Scalars['JSON']['input']>;
1406
+ scrapSubBasicTableId?: InputMaybe<Scalars['String']['input']>;
1407
+ scrapTableId: Scalars['ID']['input'];
1408
+ subBasicTableId: Scalars['ID']['input'];
1409
+ };
1275
1410
  export type MutationSendEmailArgs = {
1276
1411
  data?: InputMaybe<SendEmailInput>;
1277
1412
  };
@@ -1466,6 +1601,12 @@ export type NguDeviceReport = {
1466
1601
  export type NguDeviceReportInput = {
1467
1602
  location?: InputMaybe<Scalars['String']['input']>;
1468
1603
  };
1604
+ export type NguDevicesCompletePeriodicReportInput = {
1605
+ deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1606
+ endDate?: InputMaybe<Scalars['String']['input']>;
1607
+ filter?: InputMaybe<Scalars['String']['input']>;
1608
+ startDate?: InputMaybe<Scalars['String']['input']>;
1609
+ };
1469
1610
  export type NguDevicesReportInput = {
1470
1611
  alerts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1471
1612
  deviceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -1605,16 +1746,33 @@ export type ProjectType = {
1605
1746
  __typename?: 'ProjectType';
1606
1747
  value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
1607
1748
  };
1749
+ export type PurchaseOrder = {
1750
+ __typename?: 'PurchaseOrder';
1751
+ date?: Maybe<Scalars['String']['output']>;
1752
+ deliveryDate?: Maybe<Scalars['String']['output']>;
1753
+ expectedDeliveryDate?: Maybe<Scalars['String']['output']>;
1754
+ id: Scalars['ID']['output'];
1755
+ no?: Maybe<Scalars['String']['output']>;
1756
+ paymentTerm?: Maybe<Scalars['String']['output']>;
1757
+ price?: Maybe<Scalars['Int']['output']>;
1758
+ projectNumber?: Maybe<Scalars['String']['output']>;
1759
+ quantity?: Maybe<Scalars['Int']['output']>;
1760
+ };
1761
+ export type PurchaseOrderResponse = GeneralResponse | InventoryPurchaseOrderResponse;
1608
1762
  export type Query = {
1609
1763
  __typename?: 'Query';
1610
1764
  fetchAlertEmail?: Maybe<Array<Maybe<AlertEmail>>>;
1611
1765
  fetchAlerts?: Maybe<Array<Maybe<Alerts>>>;
1766
+ fetchAllInventorySubCategoryTableItems?: Maybe<AllInventoryTableItems>;
1767
+ fetchAllInventoryTableItems?: Maybe<AllInventoryTableItems>;
1612
1768
  fetchBasicSettings?: Maybe<BasicSettings>;
1613
1769
  fetchBillings?: Maybe<Array<Maybe<Billing>>>;
1614
1770
  fetchCompanyById?: Maybe<Company>;
1615
1771
  fetchCompanyList?: Maybe<Array<Maybe<Company>>>;
1772
+ fetchDB?: Maybe<DbType>;
1616
1773
  fetchDashboardData?: Maybe<DashboardData>;
1617
1774
  fetchDataFromInwardOrOutward?: Maybe<InwardOrOutWardData>;
1775
+ fetchDataFromInwardOrOutwardSubCategoryTable?: Maybe<InwardOrOutWardData>;
1618
1776
  fetchDepartments?: Maybe<Array<Maybe<Departments>>>;
1619
1777
  fetchDeviceActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
1620
1778
  fetchDeviceAnalytics?: Maybe<Array<Maybe<DeviceAnalytics>>>;
@@ -1650,6 +1808,10 @@ export type Query = {
1650
1808
  fetchInventoryMachines?: Maybe<Array<Maybe<InventoryMachines>>>;
1651
1809
  fetchInventoryStatuses?: Maybe<Array<Maybe<InventoryStatus>>>;
1652
1810
  fetchInventoryStorages?: Maybe<Array<Maybe<InventoryStorage>>>;
1811
+ fetchInventorySubBasicTables?: Maybe<Array<Maybe<InventorySubBasicTables>>>;
1812
+ fetchInventorySubCategoryInwards?: Maybe<InventoryInwards>;
1813
+ fetchInventorySubCategoryTable?: Maybe<InventorySubCategoryTable>;
1814
+ fetchInventorySubCategoryTables?: Maybe<InventorySubCategoryTable>;
1653
1815
  fetchInventorySuppliers?: Maybe<Array<Maybe<InventorySuppliers>>>;
1654
1816
  fetchInventoryTable?: Maybe<InventoryTable>;
1655
1817
  fetchInventoryTables?: Maybe<InventoryTable>;
@@ -1666,6 +1828,7 @@ export type Query = {
1666
1828
  fetchNguAlertEmail?: Maybe<Array<Maybe<NguAlertEmail>>>;
1667
1829
  fetchNguCompanyById?: Maybe<NguCompany>;
1668
1830
  fetchNguCompanyList?: Maybe<Array<Maybe<NguCompany>>>;
1831
+ fetchNguCompletePeriodicReport?: Maybe<NguDeviceReport>;
1669
1832
  fetchNguDeviceById?: Maybe<NguDevice>;
1670
1833
  fetchNguDeviceList?: Maybe<Array<Maybe<NguDevice>>>;
1671
1834
  fetchNguDeviceReport?: Maybe<NguDeviceReport>;
@@ -1680,6 +1843,7 @@ export type Query = {
1680
1843
  fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
1681
1844
  fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
1682
1845
  fetchProjects?: Maybe<ProjectType>;
1846
+ fetchPurchaseOrders?: Maybe<Array<Maybe<PurchaseOrder>>>;
1683
1847
  fetchSettingsPageData?: Maybe<SettingsPageData>;
1684
1848
  fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
1685
1849
  fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
@@ -1691,6 +1855,12 @@ export type Query = {
1691
1855
  triggerMqttConnection?: Maybe<GeneralResponse>;
1692
1856
  verifyToken?: Maybe<LoginSuccessResponse>;
1693
1857
  };
1858
+ export type QueryFetchAllInventorySubCategoryTableItemsArgs = {
1859
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1860
+ };
1861
+ export type QueryFetchAllInventoryTableItemsArgs = {
1862
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1863
+ };
1694
1864
  export type QueryFetchBillingsArgs = {
1695
1865
  filter?: InputMaybe<Scalars['JSON']['input']>;
1696
1866
  };
@@ -1700,6 +1870,9 @@ export type QueryFetchCompanyByIdArgs = {
1700
1870
  export type QueryFetchCompanyListArgs = {
1701
1871
  queryData?: InputMaybe<CompanyListInput>;
1702
1872
  };
1873
+ export type QueryFetchDbArgs = {
1874
+ queryData?: InputMaybe<DbInput>;
1875
+ };
1703
1876
  export type QueryFetchDashboardDataArgs = {
1704
1877
  data?: InputMaybe<DashboardDataFetchInput>;
1705
1878
  };
@@ -1710,6 +1883,14 @@ export type QueryFetchDataFromInwardOrOutwardArgs = {
1710
1883
  startDate?: InputMaybe<Scalars['String']['input']>;
1711
1884
  transactionType?: InputMaybe<Scalars['String']['input']>;
1712
1885
  };
1886
+ export type QueryFetchDataFromInwardOrOutwardSubCategoryTableArgs = {
1887
+ basicTableId?: InputMaybe<Scalars['ID']['input']>;
1888
+ endDate?: InputMaybe<Scalars['String']['input']>;
1889
+ itemType?: InputMaybe<Scalars['String']['input']>;
1890
+ startDate?: InputMaybe<Scalars['String']['input']>;
1891
+ subBasicTableId?: InputMaybe<Scalars['ID']['input']>;
1892
+ transactionType?: InputMaybe<Scalars['String']['input']>;
1893
+ };
1713
1894
  export type QueryFetchDepartmentsArgs = {
1714
1895
  companyId?: InputMaybe<Scalars['ID']['input']>;
1715
1896
  };
@@ -1795,8 +1976,24 @@ export type QueryFetchInventoryInwardsArgs = {
1795
1976
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1796
1977
  properties?: InputMaybe<Scalars['JSON']['input']>;
1797
1978
  };
1979
+ export type QueryFetchInventorySubCategoryInwardsArgs = {
1980
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1981
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1982
+ };
1983
+ export type QueryFetchInventorySubCategoryTableArgs = {
1984
+ basicTableId: Scalars['ID']['input'];
1985
+ companyId?: InputMaybe<Scalars['ID']['input']>;
1986
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1987
+ subBasicTableId: Scalars['ID']['input'];
1988
+ };
1989
+ export type QueryFetchInventorySubCategoryTablesArgs = {
1990
+ basicTableIds?: InputMaybe<Array<Scalars['ID']['input']>>;
1991
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1992
+ subBasicTableIds?: InputMaybe<Array<Scalars['ID']['input']>>;
1993
+ };
1798
1994
  export type QueryFetchInventoryTableArgs = {
1799
1995
  basicTableId: Scalars['ID']['input'];
1996
+ companyId?: InputMaybe<Scalars['ID']['input']>;
1800
1997
  properties?: InputMaybe<Scalars['JSON']['input']>;
1801
1998
  };
1802
1999
  export type QueryFetchInventoryTablesArgs = {
@@ -1836,6 +2033,9 @@ export type QueryFetchNguCompanyByIdArgs = {
1836
2033
  export type QueryFetchNguCompanyListArgs = {
1837
2034
  queryData?: InputMaybe<NguCompanyListInput>;
1838
2035
  };
2036
+ export type QueryFetchNguCompletePeriodicReportArgs = {
2037
+ queryData?: InputMaybe<NguDevicesCompletePeriodicReportInput>;
2038
+ };
1839
2039
  export type QueryFetchNguDeviceByIdArgs = {
1840
2040
  id: Scalars['ID']['input'];
1841
2041
  };
@@ -1869,6 +2069,9 @@ export type QueryFetchPowerConsumptionArgs = {
1869
2069
  export type QueryFetchPowerConsumptionPageDataArgs = {
1870
2070
  data?: InputMaybe<PowerConsumptionPageDataFetchInput>;
1871
2071
  };
2072
+ export type QueryFetchPurchaseOrdersArgs = {
2073
+ filter?: InputMaybe<Scalars['JSON']['input']>;
2074
+ };
1872
2075
  export type QueryFetchTempDataTableByDeviceIdArgs = {
1873
2076
  id?: InputMaybe<Scalars['ID']['input']>;
1874
2077
  };