@mjtech-ems/schema 1.3.37 → 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']>;
@@ -260,6 +267,7 @@ export type CreateCompanyResponse = CompanyResponse | GeneralResponse;
260
267
  export type CreateUserResponse = GeneralResponse | UserResponse;
261
268
  export type DbInput = {
262
269
  appType?: InputMaybe<Scalars['String']['input']>;
270
+ collection?: InputMaybe<Scalars['String']['input']>;
263
271
  companyId?: InputMaybe<Scalars['ID']['input']>;
264
272
  endDate?: InputMaybe<Scalars['String']['input']>;
265
273
  inventoryTableCategory?: InputMaybe<Scalars['String']['input']>;
@@ -822,6 +830,12 @@ export type InventoryOutwardResponse = {
822
830
  outwardItemId: Scalars['ID']['output'];
823
831
  status?: Maybe<Scalars['String']['output']>;
824
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
+ };
825
839
  export type InventoryStatus = {
826
840
  __typename?: 'InventoryStatus';
827
841
  basicTableId: Scalars['ID']['output'];
@@ -850,6 +864,32 @@ export type InventoryStorageResponse = {
850
864
  status?: Maybe<Scalars['String']['output']>;
851
865
  storageId: Scalars['ID']['output'];
852
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
+ };
853
893
  export type InventorySupplierInput = {
854
894
  companyId?: InputMaybe<Scalars['ID']['input']>;
855
895
  email?: InputMaybe<Scalars['EmailAddress']['input']>;
@@ -1020,12 +1060,19 @@ export type Mutation = {
1020
1060
  addInventoryMachine?: Maybe<AddInventoryMachineResponse>;
1021
1061
  addInventoryStatus?: Maybe<GeneralResponse>;
1022
1062
  addInventoryStorage?: Maybe<AddInventoryStorageResponse>;
1063
+ addInventorySubBasicTable?: Maybe<GeneralResponse>;
1064
+ addInventorySubCategoryTableFor?: Maybe<AddInventorySubCategoryTableForResponse>;
1023
1065
  addInventorySupplier?: Maybe<AddInventorySupplierResponse>;
1024
1066
  addInventoryTableFor?: Maybe<AddInventoryTableForResponse>;
1025
1067
  addItemInInward?: Maybe<InwardResponse>;
1026
1068
  addItemInOutward?: Maybe<OutwardResponse>;
1069
+ addManyInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1027
1070
  addManyInventoryTableFor?: Maybe<GeneralResponse>;
1028
1071
  addNewDepartment?: Maybe<DepartmentResponse>;
1072
+ addPurchaseOrder?: Maybe<PurchaseOrderResponse>;
1073
+ addSubCategoryItemInInward?: Maybe<InwardResponse>;
1074
+ addSubCategoryItemInOutward?: Maybe<OutwardResponse>;
1075
+ changeInventoryItemStatus?: Maybe<GeneralResponse>;
1029
1076
  changePassword?: Maybe<GeneralResponse>;
1030
1077
  changeProjectStatus?: Maybe<GeneralResponse>;
1031
1078
  createAlert?: Maybe<GeneralResponse>;
@@ -1049,6 +1096,8 @@ export type Mutation = {
1049
1096
  deleteInventoryMachine?: Maybe<GeneralResponse>;
1050
1097
  deleteInventoryStatus?: Maybe<GeneralResponse>;
1051
1098
  deleteInventoryStorage?: Maybe<GeneralResponse>;
1099
+ deleteInventorySubBasicTable?: Maybe<GeneralResponse>;
1100
+ deleteInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1052
1101
  deleteInventorySupplier?: Maybe<GeneralResponse>;
1053
1102
  deleteInventoryTableFor?: Maybe<GeneralResponse>;
1054
1103
  deleteNguDevice?: Maybe<GeneralResponse>;
@@ -1062,14 +1111,19 @@ export type Mutation = {
1062
1111
  editInventoryMachine?: Maybe<GeneralResponse>;
1063
1112
  editInventoryStatus?: Maybe<GeneralResponse>;
1064
1113
  editInventoryStorage?: Maybe<GeneralResponse>;
1114
+ editInventorySubBasicTable?: Maybe<GeneralResponse>;
1115
+ editInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1065
1116
  editInventorySupplier?: Maybe<GeneralResponse>;
1066
1117
  editInventoryTableFor?: Maybe<GeneralResponse>;
1067
1118
  editManyDepartments?: Maybe<GeneralResponse>;
1119
+ editManyInventorySubCategoryTableFor?: Maybe<GeneralResponse>;
1068
1120
  editManyInventoryTableFor?: Maybe<GeneralResponse>;
1069
1121
  editProject?: Maybe<GeneralResponse>;
1122
+ editPurchaseOrder?: Maybe<GeneralResponse>;
1070
1123
  forgotPassword?: Maybe<GeneralResponse>;
1071
1124
  generateReport?: Maybe<Array<Maybe<ReportResponse>>>;
1072
1125
  moveItemToScrap?: Maybe<GeneralResponse>;
1126
+ moveSubCategoryItemToScrap?: Maybe<GeneralResponse>;
1073
1127
  sendEmail?: Maybe<GeneralResponse>;
1074
1128
  updateAlert?: Maybe<GeneralResponse>;
1075
1129
  updateAlertEmail?: Maybe<GeneralResponse>;
@@ -1119,6 +1173,14 @@ export type MutationAddInventoryStatusArgs = {
1119
1173
  export type MutationAddInventoryStorageArgs = {
1120
1174
  data?: InputMaybe<InventoryStorageInput>;
1121
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
+ };
1122
1184
  export type MutationAddInventorySupplierArgs = {
1123
1185
  data?: InputMaybe<InventorySupplierInput>;
1124
1186
  };
@@ -1134,6 +1196,11 @@ export type MutationAddItemInOutwardArgs = {
1134
1196
  basicTableId: Scalars['ID']['input'];
1135
1197
  data?: InputMaybe<Scalars['JSON']['input']>;
1136
1198
  };
1199
+ export type MutationAddManyInventorySubCategoryTableForArgs = {
1200
+ basicTableId: Scalars['ID']['input'];
1201
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1202
+ subBasicTableId: Scalars['ID']['input'];
1203
+ };
1137
1204
  export type MutationAddManyInventoryTableForArgs = {
1138
1205
  basicTableId: Scalars['ID']['input'];
1139
1206
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
@@ -1141,6 +1208,25 @@ export type MutationAddManyInventoryTableForArgs = {
1141
1208
  export type MutationAddNewDepartmentArgs = {
1142
1209
  data?: InputMaybe<DepartmentsInput>;
1143
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
+ };
1144
1230
  export type MutationChangePasswordArgs = {
1145
1231
  data?: InputMaybe<PasswordInput>;
1146
1232
  };
@@ -1211,6 +1297,14 @@ export type MutationDeleteInventoryStatusArgs = {
1211
1297
  export type MutationDeleteInventoryStorageArgs = {
1212
1298
  id: Scalars['ID']['input'];
1213
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
+ };
1214
1308
  export type MutationDeleteInventorySupplierArgs = {
1215
1309
  id: Scalars['ID']['input'];
1216
1310
  };
@@ -1259,6 +1353,16 @@ export type MutationEditInventoryStorageArgs = {
1259
1353
  data?: InputMaybe<InventoryStorageInput>;
1260
1354
  id: Scalars['ID']['input'];
1261
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
+ };
1262
1366
  export type MutationEditInventorySupplierArgs = {
1263
1367
  data?: InputMaybe<InventorySupplierInput>;
1264
1368
  id: Scalars['ID']['input'];
@@ -1271,6 +1375,9 @@ export type MutationEditInventoryTableForArgs = {
1271
1375
  export type MutationEditManyDepartmentsArgs = {
1272
1376
  data?: InputMaybe<Array<InputMaybe<EditManyDepartmentsInput>>>;
1273
1377
  };
1378
+ export type MutationEditManyInventorySubCategoryTableForArgs = {
1379
+ data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1380
+ };
1274
1381
  export type MutationEditManyInventoryTableForArgs = {
1275
1382
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1276
1383
  };
@@ -1278,6 +1385,10 @@ export type MutationEditProjectArgs = {
1278
1385
  data?: InputMaybe<Scalars['JSON']['input']>;
1279
1386
  id: Scalars['ID']['input'];
1280
1387
  };
1388
+ export type MutationEditPurchaseOrderArgs = {
1389
+ data?: InputMaybe<Scalars['JSON']['input']>;
1390
+ id: Scalars['ID']['input'];
1391
+ };
1281
1392
  export type MutationForgotPasswordArgs = {
1282
1393
  data?: InputMaybe<ForgotInput>;
1283
1394
  };
@@ -1289,6 +1400,13 @@ export type MutationMoveItemToScrapArgs = {
1289
1400
  data?: InputMaybe<Scalars['JSON']['input']>;
1290
1401
  scrapTableId: Scalars['ID']['input'];
1291
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
+ };
1292
1410
  export type MutationSendEmailArgs = {
1293
1411
  data?: InputMaybe<SendEmailInput>;
1294
1412
  };
@@ -1628,10 +1746,25 @@ export type ProjectType = {
1628
1746
  __typename?: 'ProjectType';
1629
1747
  value?: Maybe<Array<Maybe<Scalars['JSON']['output']>>>;
1630
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;
1631
1762
  export type Query = {
1632
1763
  __typename?: 'Query';
1633
1764
  fetchAlertEmail?: Maybe<Array<Maybe<AlertEmail>>>;
1634
1765
  fetchAlerts?: Maybe<Array<Maybe<Alerts>>>;
1766
+ fetchAllInventorySubCategoryTableItems?: Maybe<AllInventoryTableItems>;
1767
+ fetchAllInventoryTableItems?: Maybe<AllInventoryTableItems>;
1635
1768
  fetchBasicSettings?: Maybe<BasicSettings>;
1636
1769
  fetchBillings?: Maybe<Array<Maybe<Billing>>>;
1637
1770
  fetchCompanyById?: Maybe<Company>;
@@ -1639,6 +1772,7 @@ export type Query = {
1639
1772
  fetchDB?: Maybe<DbType>;
1640
1773
  fetchDashboardData?: Maybe<DashboardData>;
1641
1774
  fetchDataFromInwardOrOutward?: Maybe<InwardOrOutWardData>;
1775
+ fetchDataFromInwardOrOutwardSubCategoryTable?: Maybe<InwardOrOutWardData>;
1642
1776
  fetchDepartments?: Maybe<Array<Maybe<Departments>>>;
1643
1777
  fetchDeviceActiveVsDownTime?: Maybe<Array<Maybe<DeviceActiveVsDownTime>>>;
1644
1778
  fetchDeviceAnalytics?: Maybe<Array<Maybe<DeviceAnalytics>>>;
@@ -1674,6 +1808,10 @@ export type Query = {
1674
1808
  fetchInventoryMachines?: Maybe<Array<Maybe<InventoryMachines>>>;
1675
1809
  fetchInventoryStatuses?: Maybe<Array<Maybe<InventoryStatus>>>;
1676
1810
  fetchInventoryStorages?: Maybe<Array<Maybe<InventoryStorage>>>;
1811
+ fetchInventorySubBasicTables?: Maybe<Array<Maybe<InventorySubBasicTables>>>;
1812
+ fetchInventorySubCategoryInwards?: Maybe<InventoryInwards>;
1813
+ fetchInventorySubCategoryTable?: Maybe<InventorySubCategoryTable>;
1814
+ fetchInventorySubCategoryTables?: Maybe<InventorySubCategoryTable>;
1677
1815
  fetchInventorySuppliers?: Maybe<Array<Maybe<InventorySuppliers>>>;
1678
1816
  fetchInventoryTable?: Maybe<InventoryTable>;
1679
1817
  fetchInventoryTables?: Maybe<InventoryTable>;
@@ -1705,6 +1843,7 @@ export type Query = {
1705
1843
  fetchPowerConsumption?: Maybe<Array<Maybe<PowerConsumption>>>;
1706
1844
  fetchPowerConsumptionPageData?: Maybe<PowerConsumptionPageData>;
1707
1845
  fetchProjects?: Maybe<ProjectType>;
1846
+ fetchPurchaseOrders?: Maybe<Array<Maybe<PurchaseOrder>>>;
1708
1847
  fetchSettingsPageData?: Maybe<SettingsPageData>;
1709
1848
  fetchTempDataTable?: Maybe<Array<Maybe<TempDataTable>>>;
1710
1849
  fetchTempDataTableByDeviceId?: Maybe<TempDataTable>;
@@ -1716,6 +1855,12 @@ export type Query = {
1716
1855
  triggerMqttConnection?: Maybe<GeneralResponse>;
1717
1856
  verifyToken?: Maybe<LoginSuccessResponse>;
1718
1857
  };
1858
+ export type QueryFetchAllInventorySubCategoryTableItemsArgs = {
1859
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1860
+ };
1861
+ export type QueryFetchAllInventoryTableItemsArgs = {
1862
+ properties?: InputMaybe<Scalars['JSON']['input']>;
1863
+ };
1719
1864
  export type QueryFetchBillingsArgs = {
1720
1865
  filter?: InputMaybe<Scalars['JSON']['input']>;
1721
1866
  };
@@ -1738,6 +1883,14 @@ export type QueryFetchDataFromInwardOrOutwardArgs = {
1738
1883
  startDate?: InputMaybe<Scalars['String']['input']>;
1739
1884
  transactionType?: InputMaybe<Scalars['String']['input']>;
1740
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
+ };
1741
1894
  export type QueryFetchDepartmentsArgs = {
1742
1895
  companyId?: InputMaybe<Scalars['ID']['input']>;
1743
1896
  };
@@ -1823,6 +1976,21 @@ export type QueryFetchInventoryInwardsArgs = {
1823
1976
  data?: InputMaybe<Array<InputMaybe<Scalars['JSON']['input']>>>;
1824
1977
  properties?: InputMaybe<Scalars['JSON']['input']>;
1825
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
+ };
1826
1994
  export type QueryFetchInventoryTableArgs = {
1827
1995
  basicTableId: Scalars['ID']['input'];
1828
1996
  companyId?: InputMaybe<Scalars['ID']['input']>;
@@ -1901,6 +2069,9 @@ export type QueryFetchPowerConsumptionArgs = {
1901
2069
  export type QueryFetchPowerConsumptionPageDataArgs = {
1902
2070
  data?: InputMaybe<PowerConsumptionPageDataFetchInput>;
1903
2071
  };
2072
+ export type QueryFetchPurchaseOrdersArgs = {
2073
+ filter?: InputMaybe<Scalars['JSON']['input']>;
2074
+ };
1904
2075
  export type QueryFetchTempDataTableByDeviceIdArgs = {
1905
2076
  id?: InputMaybe<Scalars['ID']['input']>;
1906
2077
  };