@investtal/models 1.2.54 → 1.2.56

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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to @ivt/models will be documented in this file.
4
4
 
5
+ ## [1.2.56] - 2026-02-07
6
+
7
+ ### Changed
8
+ - Auto-generated: Database schema and GraphQL types updated
9
+
10
+
11
+
12
+ ## [1.2.55] - 2026-02-05
13
+
14
+ ### Changed
15
+ - Auto-generated: Database schema and GraphQL types updated
16
+
17
+
18
+
5
19
  ## [1.2.54] - 2026-01-26
6
20
 
7
21
  ### Changed
package/dist/index.d.cts CHANGED
@@ -1701,6 +1701,7 @@ type CreateIndustrialPropertyInput = {
1701
1701
  metadata?: InputMaybe<Scalars['JSON']['input']>;
1702
1702
  notes?: InputMaybe<Scalars['String']['input']>;
1703
1703
  numberOfFloor?: InputMaybe<Scalars['Int']['input']>;
1704
+ operationStatus?: InputMaybe<PropertyOperationStatus>;
1704
1705
  parentIndustrialPropertyId?: InputMaybe<Scalars['String']['input']>;
1705
1706
  polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
1706
1707
  price?: InputMaybe<Scalars['String']['input']>;
@@ -2224,6 +2225,7 @@ type IndustrialPropertiesFilter = {
2224
2225
  parentPropertyId?: InputMaybe<Scalars['String']['input']>;
2225
2226
  projectId?: InputMaybe<Scalars['String']['input']>;
2226
2227
  propertyLegalStatus?: InputMaybe<PropertyLegalStatus>;
2228
+ propertyMapId?: InputMaybe<Scalars['String']['input']>;
2227
2229
  provinceId?: InputMaybe<Scalars['String']['input']>;
2228
2230
  search?: InputMaybe<Scalars['String']['input']>;
2229
2231
  sortBy?: InputMaybe<IndustrialPropertySortField>;
@@ -2268,33 +2270,53 @@ type IndustrialPropertyDetailItem = {
2268
2270
  };
2269
2271
  type IndustrialPropertyItem = {
2270
2272
  __typename?: 'IndustrialPropertyItem';
2273
+ approvalStatus?: Maybe<Scalars['String']['output']>;
2271
2274
  area?: Maybe<Scalars['String']['output']>;
2272
2275
  assignedBroker?: Maybe<AssignedBrokerItem>;
2273
2276
  attachmentsIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2277
+ authorizationEndtime?: Maybe<Scalars['DateTime']['output']>;
2278
+ authorizationStarttime?: Maybe<Scalars['DateTime']['output']>;
2279
+ authorizationType?: Maybe<Scalars['String']['output']>;
2274
2280
  children?: Maybe<Array<IndustrialPropertyItem>>;
2281
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
2282
+ createdById?: Maybe<Scalars['String']['output']>;
2283
+ deposite?: Maybe<Scalars['String']['output']>;
2284
+ depositeUnit?: Maybe<Scalars['String']['output']>;
2275
2285
  description?: Maybe<Scalars['String']['output']>;
2276
2286
  detail?: Maybe<IndustrialPropertyDetailItem>;
2277
2287
  detailedAddress?: Maybe<Scalars['String']['output']>;
2278
2288
  floorNumber?: Maybe<Scalars['Int']['output']>;
2279
2289
  id: Scalars['String']['output'];
2290
+ identityId?: Maybe<Scalars['String']['output']>;
2280
2291
  imagesIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2292
+ isAuthorizedForSystem?: Maybe<Scalars['Boolean']['output']>;
2293
+ isPublic?: Maybe<Scalars['Boolean']['output']>;
2281
2294
  landCurrentStatus?: Maybe<Scalars['String']['output']>;
2282
2295
  latitude?: Maybe<Scalars['String']['output']>;
2283
2296
  longitude?: Maybe<Scalars['String']['output']>;
2284
2297
  metadata?: Maybe<Scalars['JSON']['output']>;
2285
2298
  notes?: Maybe<Scalars['JSON']['output']>;
2299
+ notificationTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2286
2300
  numberOfFloor?: Maybe<Scalars['Int']['output']>;
2287
2301
  numberOfProperties?: Maybe<Scalars['Int']['output']>;
2288
- operationStatus?: Maybe<PropertyOperationStatus>;
2302
+ operationStatus?: Maybe<Scalars['String']['output']>;
2303
+ ownerId?: Maybe<Scalars['String']['output']>;
2289
2304
  parentIndustrialPropertyId?: Maybe<Scalars['String']['output']>;
2305
+ paymentPeriodType?: Maybe<Scalars['String']['output']>;
2306
+ polygon?: Maybe<Array<PolygonCoordinate>>;
2290
2307
  price?: Maybe<Scalars['String']['output']>;
2308
+ priceUnit?: Maybe<Scalars['String']['output']>;
2291
2309
  projectId?: Maybe<Scalars['String']['output']>;
2292
2310
  propertyLegalStatus?: Maybe<Scalars['String']['output']>;
2293
2311
  provinceId?: Maybe<Scalars['String']['output']>;
2294
2312
  seoMetadata?: Maybe<Scalars['JSON']['output']>;
2295
2313
  title: Scalars['String']['output'];
2296
2314
  type?: Maybe<Scalars['String']['output']>;
2315
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
2316
+ updatedById?: Maybe<Scalars['String']['output']>;
2297
2317
  wardId?: Maybe<Scalars['String']['output']>;
2318
+ yearBuilt?: Maybe<Scalars['DateTime']['output']>;
2319
+ yearCompleted?: Maybe<Scalars['DateTime']['output']>;
2298
2320
  };
2299
2321
  type IndustrialPropertySortField = 'AREA' | 'CREATED_AT' | 'PRICE' | 'TITLE';
2300
2322
  type InvestorApproveConsignmentRequestInput = {
@@ -3409,6 +3431,7 @@ type PropertiesVisualizationResponse = PagePaginationInterface & {
3409
3431
  };
3410
3432
  type PropertyFilter = {
3411
3433
  id: Scalars['String']['input'];
3434
+ propertyMapId?: InputMaybe<Scalars['String']['input']>;
3412
3435
  };
3413
3436
  type PropertyMapItem = {
3414
3437
  __typename?: 'PropertyMapItem';
@@ -4152,6 +4175,7 @@ type UpdateIndustrialPropertyInput = {
4152
4175
  metadata?: InputMaybe<Scalars['JSON']['input']>;
4153
4176
  notes?: InputMaybe<Scalars['JSON']['input']>;
4154
4177
  numberOfFloor?: InputMaybe<Scalars['Int']['input']>;
4178
+ operationStatus?: InputMaybe<PropertyOperationStatus>;
4155
4179
  polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
4156
4180
  price?: InputMaybe<Scalars['String']['input']>;
4157
4181
  propertyLegalStatus?: InputMaybe<PropertyLegalStatus>;
@@ -4555,9 +4579,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4555
4579
  __typename: 'FilterResponse';
4556
4580
  }) | (ForSalesResponse & {
4557
4581
  __typename: 'ForSalesResponse';
4558
- }) | (Omit<IndustrialPropertiesResponse, 'data'> & {
4559
- data: Array<Maybe<_RefType['IndustrialPropertyItem']>>;
4560
- } & {
4582
+ }) | (IndustrialPropertiesResponse & {
4561
4583
  __typename: 'IndustrialPropertiesResponse';
4562
4584
  }) | (InvestorRepresentativesResponse & {
4563
4585
  __typename: 'InvestorRepresentativesResponse';
@@ -4573,9 +4595,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4573
4595
  __typename: 'PaymentProcessesResponse';
4574
4596
  }) | (PreDealsResponse & {
4575
4597
  __typename: 'PreDealsResponse';
4576
- }) | (Omit<PropertiesVisualizationResponse, 'data'> & {
4577
- data: Array<_RefType['PropertyVisualizationItem']>;
4578
- } & {
4598
+ }) | (PropertiesVisualizationResponse & {
4579
4599
  __typename: 'PropertiesVisualizationResponse';
4580
4600
  }) | (PropertyMapsResponse & {
4581
4601
  __typename: 'PropertyMapsResponse';
@@ -4791,15 +4811,10 @@ type ResolversTypes = {
4791
4811
  ImportBrokerClientResponse: ResolverTypeWrapper<ImportBrokerClientResponse>;
4792
4812
  ImportBrokerClientSuccessList: ResolverTypeWrapper<ImportBrokerClientSuccessList>;
4793
4813
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
4794
- IndustrialPropertiesResponse: ResolverTypeWrapper<Omit<IndustrialPropertiesResponse, 'data'> & {
4795
- data: Array<Maybe<ResolversTypes['IndustrialPropertyItem']>>;
4796
- }>;
4814
+ IndustrialPropertiesResponse: ResolverTypeWrapper<IndustrialPropertiesResponse>;
4797
4815
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
4798
4816
  IndustrialPropertyDetailItem: ResolverTypeWrapper<IndustrialPropertyDetailItem>;
4799
- IndustrialPropertyItem: ResolverTypeWrapper<Omit<IndustrialPropertyItem, 'children' | 'operationStatus'> & {
4800
- children?: Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>;
4801
- operationStatus?: Maybe<ResolversTypes['PropertyOperationStatus']>;
4802
- }>;
4817
+ IndustrialPropertyItem: ResolverTypeWrapper<IndustrialPropertyItem>;
4803
4818
  IndustrialPropertySortField: ResolverTypeWrapper<'CREATED_AT' | 'TITLE' | 'PRICE' | 'AREA'>;
4804
4819
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
4805
4820
  InvestorRepresentativeResponse: ResolverTypeWrapper<InvestorRepresentativeResponse>;
@@ -4893,9 +4908,7 @@ type ResolversTypes = {
4893
4908
  ProjectUser: ResolverTypeWrapper<ProjectUser>;
4894
4909
  ProjectUtility: ResolverTypeWrapper<ProjectUtility>;
4895
4910
  ProjectWard: ResolverTypeWrapper<ProjectWard>;
4896
- PropertiesVisualizationResponse: ResolverTypeWrapper<Omit<PropertiesVisualizationResponse, 'data'> & {
4897
- data: Array<ResolversTypes['PropertyVisualizationItem']>;
4898
- }>;
4911
+ PropertiesVisualizationResponse: ResolverTypeWrapper<PropertiesVisualizationResponse>;
4899
4912
  PropertyApprovalStatus: ResolverTypeWrapper<'PENDING' | 'APPROVED' | 'REJECTED' | 'ARCHIVED'>;
4900
4913
  PropertyAuthorizationType: ResolverTypeWrapper<'FOR_RENT_A_PART' | 'FOR_SALE_A_PART' | 'FOR_RENT_ALL' | 'FOR_SALE_ALL'>;
4901
4914
  PropertyFilter: PropertyFilter;
@@ -4905,14 +4918,10 @@ type ResolversTypes = {
4905
4918
  PropertyMapsFilter: PropertyMapsFilter;
4906
4919
  PropertyMapsResponse: ResolverTypeWrapper<PropertyMapsResponse>;
4907
4920
  PropertyOperationStatus: ResolverTypeWrapper<'UNDETERMINED' | 'COMING_SOON' | 'FOR_SALE_RENT' | 'ACTIVE' | 'DEACTIVATED'>;
4908
- PropertyResponse: ResolverTypeWrapper<Omit<PropertyResponse, 'property'> & {
4909
- property: ResolversTypes['IndustrialPropertyItem'];
4910
- }>;
4921
+ PropertyResponse: ResolverTypeWrapper<PropertyResponse>;
4911
4922
  PropertyType: ResolverTypeWrapper<'INDUSTRIAL_ZONE' | 'BUILDING' | 'FLOOR' | 'ROOM' | 'LAND_LOT' | 'FACTORY' | 'WAREHOUSE' | 'OFFICE' | 'HOUSING' | 'APARTMENT'>;
4912
4923
  PropertyVisualizationFilter: PropertyVisualizationFilter;
4913
- PropertyVisualizationItem: ResolverTypeWrapper<Omit<PropertyVisualizationItem, 'propertyItem'> & {
4914
- propertyItem?: Maybe<ResolversTypes['IndustrialPropertyItem']>;
4915
- }>;
4924
+ PropertyVisualizationItem: ResolverTypeWrapper<PropertyVisualizationItem>;
4916
4925
  ProvinceResponse: ResolverTypeWrapper<ProvinceResponse>;
4917
4926
  ProvincesFilter: ProvincesFilter;
4918
4927
  ProvincesResponse: ResolverTypeWrapper<ProvincesResponse>;
@@ -5252,14 +5261,10 @@ type ResolversParentTypes = {
5252
5261
  ImportBrokerClientResponse: ImportBrokerClientResponse;
5253
5262
  ImportBrokerClientSuccessList: ImportBrokerClientSuccessList;
5254
5263
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
5255
- IndustrialPropertiesResponse: Omit<IndustrialPropertiesResponse, 'data'> & {
5256
- data: Array<Maybe<ResolversParentTypes['IndustrialPropertyItem']>>;
5257
- };
5264
+ IndustrialPropertiesResponse: IndustrialPropertiesResponse;
5258
5265
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
5259
5266
  IndustrialPropertyDetailItem: IndustrialPropertyDetailItem;
5260
- IndustrialPropertyItem: Omit<IndustrialPropertyItem, 'children'> & {
5261
- children?: Maybe<Array<ResolversParentTypes['IndustrialPropertyItem']>>;
5262
- };
5267
+ IndustrialPropertyItem: IndustrialPropertyItem;
5263
5268
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
5264
5269
  InvestorRepresentativeResponse: InvestorRepresentativeResponse;
5265
5270
  InvestorRepresentativesFilter: InvestorRepresentativesFilter;
@@ -5328,20 +5333,14 @@ type ResolversParentTypes = {
5328
5333
  ProjectUser: ProjectUser;
5329
5334
  ProjectUtility: ProjectUtility;
5330
5335
  ProjectWard: ProjectWard;
5331
- PropertiesVisualizationResponse: Omit<PropertiesVisualizationResponse, 'data'> & {
5332
- data: Array<ResolversParentTypes['PropertyVisualizationItem']>;
5333
- };
5336
+ PropertiesVisualizationResponse: PropertiesVisualizationResponse;
5334
5337
  PropertyFilter: PropertyFilter;
5335
5338
  PropertyMapItem: PropertyMapItem;
5336
5339
  PropertyMapsFilter: PropertyMapsFilter;
5337
5340
  PropertyMapsResponse: PropertyMapsResponse;
5338
- PropertyResponse: Omit<PropertyResponse, 'property'> & {
5339
- property: ResolversParentTypes['IndustrialPropertyItem'];
5340
- };
5341
+ PropertyResponse: PropertyResponse;
5341
5342
  PropertyVisualizationFilter: PropertyVisualizationFilter;
5342
- PropertyVisualizationItem: Omit<PropertyVisualizationItem, 'propertyItem'> & {
5343
- propertyItem?: Maybe<ResolversParentTypes['IndustrialPropertyItem']>;
5344
- };
5343
+ PropertyVisualizationItem: PropertyVisualizationItem;
5345
5344
  ProvinceResponse: ProvinceResponse;
5346
5345
  ProvincesFilter: ProvincesFilter;
5347
5346
  ProvincesResponse: ProvincesResponse;
@@ -6091,33 +6090,53 @@ type IndustrialPropertyDetailItemResolvers<ContextType = any, ParentType extends
6091
6090
  width?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
6092
6091
  };
6093
6092
  type IndustrialPropertyItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['IndustrialPropertyItem'] = ResolversParentTypes['IndustrialPropertyItem']> = {
6093
+ approvalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6094
6094
  area?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6095
6095
  assignedBroker?: Resolver<Maybe<ResolversTypes['AssignedBrokerItem']>, ParentType, ContextType>;
6096
6096
  attachmentsIds?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6097
+ authorizationEndtime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6098
+ authorizationStarttime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6099
+ authorizationType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6097
6100
  children?: Resolver<Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>, ParentType, ContextType>;
6101
+ createdAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6102
+ createdById?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6103
+ deposite?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6104
+ depositeUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6098
6105
  description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6099
6106
  detail?: Resolver<Maybe<ResolversTypes['IndustrialPropertyDetailItem']>, ParentType, ContextType>;
6100
6107
  detailedAddress?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6101
6108
  floorNumber?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6102
6109
  id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6110
+ identityId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6103
6111
  imagesIds?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6112
+ isAuthorizedForSystem?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
6113
+ isPublic?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
6104
6114
  landCurrentStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6105
6115
  latitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6106
6116
  longitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6107
6117
  metadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6108
6118
  notes?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6119
+ notificationTypes?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6109
6120
  numberOfFloor?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6110
6121
  numberOfProperties?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6111
- operationStatus?: Resolver<Maybe<ResolversTypes['PropertyOperationStatus']>, ParentType, ContextType>;
6122
+ operationStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6123
+ ownerId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6112
6124
  parentIndustrialPropertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6125
+ paymentPeriodType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6126
+ polygon?: Resolver<Maybe<Array<ResolversTypes['PolygonCoordinate']>>, ParentType, ContextType>;
6113
6127
  price?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6128
+ priceUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6114
6129
  projectId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6115
6130
  propertyLegalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6116
6131
  provinceId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6117
6132
  seoMetadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6118
6133
  title?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6119
6134
  type?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6135
+ updatedAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6136
+ updatedById?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6120
6137
  wardId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6138
+ yearBuilt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6139
+ yearCompleted?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6121
6140
  };
6122
6141
  type IndustrialPropertySortFieldResolvers = EnumResolverSignature<{
6123
6142
  AREA?: any;
package/dist/index.d.mts CHANGED
@@ -1701,6 +1701,7 @@ type CreateIndustrialPropertyInput = {
1701
1701
  metadata?: InputMaybe<Scalars['JSON']['input']>;
1702
1702
  notes?: InputMaybe<Scalars['String']['input']>;
1703
1703
  numberOfFloor?: InputMaybe<Scalars['Int']['input']>;
1704
+ operationStatus?: InputMaybe<PropertyOperationStatus>;
1704
1705
  parentIndustrialPropertyId?: InputMaybe<Scalars['String']['input']>;
1705
1706
  polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
1706
1707
  price?: InputMaybe<Scalars['String']['input']>;
@@ -2224,6 +2225,7 @@ type IndustrialPropertiesFilter = {
2224
2225
  parentPropertyId?: InputMaybe<Scalars['String']['input']>;
2225
2226
  projectId?: InputMaybe<Scalars['String']['input']>;
2226
2227
  propertyLegalStatus?: InputMaybe<PropertyLegalStatus>;
2228
+ propertyMapId?: InputMaybe<Scalars['String']['input']>;
2227
2229
  provinceId?: InputMaybe<Scalars['String']['input']>;
2228
2230
  search?: InputMaybe<Scalars['String']['input']>;
2229
2231
  sortBy?: InputMaybe<IndustrialPropertySortField>;
@@ -2268,33 +2270,53 @@ type IndustrialPropertyDetailItem = {
2268
2270
  };
2269
2271
  type IndustrialPropertyItem = {
2270
2272
  __typename?: 'IndustrialPropertyItem';
2273
+ approvalStatus?: Maybe<Scalars['String']['output']>;
2271
2274
  area?: Maybe<Scalars['String']['output']>;
2272
2275
  assignedBroker?: Maybe<AssignedBrokerItem>;
2273
2276
  attachmentsIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2277
+ authorizationEndtime?: Maybe<Scalars['DateTime']['output']>;
2278
+ authorizationStarttime?: Maybe<Scalars['DateTime']['output']>;
2279
+ authorizationType?: Maybe<Scalars['String']['output']>;
2274
2280
  children?: Maybe<Array<IndustrialPropertyItem>>;
2281
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
2282
+ createdById?: Maybe<Scalars['String']['output']>;
2283
+ deposite?: Maybe<Scalars['String']['output']>;
2284
+ depositeUnit?: Maybe<Scalars['String']['output']>;
2275
2285
  description?: Maybe<Scalars['String']['output']>;
2276
2286
  detail?: Maybe<IndustrialPropertyDetailItem>;
2277
2287
  detailedAddress?: Maybe<Scalars['String']['output']>;
2278
2288
  floorNumber?: Maybe<Scalars['Int']['output']>;
2279
2289
  id: Scalars['String']['output'];
2290
+ identityId?: Maybe<Scalars['String']['output']>;
2280
2291
  imagesIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2292
+ isAuthorizedForSystem?: Maybe<Scalars['Boolean']['output']>;
2293
+ isPublic?: Maybe<Scalars['Boolean']['output']>;
2281
2294
  landCurrentStatus?: Maybe<Scalars['String']['output']>;
2282
2295
  latitude?: Maybe<Scalars['String']['output']>;
2283
2296
  longitude?: Maybe<Scalars['String']['output']>;
2284
2297
  metadata?: Maybe<Scalars['JSON']['output']>;
2285
2298
  notes?: Maybe<Scalars['JSON']['output']>;
2299
+ notificationTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2286
2300
  numberOfFloor?: Maybe<Scalars['Int']['output']>;
2287
2301
  numberOfProperties?: Maybe<Scalars['Int']['output']>;
2288
- operationStatus?: Maybe<PropertyOperationStatus>;
2302
+ operationStatus?: Maybe<Scalars['String']['output']>;
2303
+ ownerId?: Maybe<Scalars['String']['output']>;
2289
2304
  parentIndustrialPropertyId?: Maybe<Scalars['String']['output']>;
2305
+ paymentPeriodType?: Maybe<Scalars['String']['output']>;
2306
+ polygon?: Maybe<Array<PolygonCoordinate>>;
2290
2307
  price?: Maybe<Scalars['String']['output']>;
2308
+ priceUnit?: Maybe<Scalars['String']['output']>;
2291
2309
  projectId?: Maybe<Scalars['String']['output']>;
2292
2310
  propertyLegalStatus?: Maybe<Scalars['String']['output']>;
2293
2311
  provinceId?: Maybe<Scalars['String']['output']>;
2294
2312
  seoMetadata?: Maybe<Scalars['JSON']['output']>;
2295
2313
  title: Scalars['String']['output'];
2296
2314
  type?: Maybe<Scalars['String']['output']>;
2315
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
2316
+ updatedById?: Maybe<Scalars['String']['output']>;
2297
2317
  wardId?: Maybe<Scalars['String']['output']>;
2318
+ yearBuilt?: Maybe<Scalars['DateTime']['output']>;
2319
+ yearCompleted?: Maybe<Scalars['DateTime']['output']>;
2298
2320
  };
2299
2321
  type IndustrialPropertySortField = 'AREA' | 'CREATED_AT' | 'PRICE' | 'TITLE';
2300
2322
  type InvestorApproveConsignmentRequestInput = {
@@ -3409,6 +3431,7 @@ type PropertiesVisualizationResponse = PagePaginationInterface & {
3409
3431
  };
3410
3432
  type PropertyFilter = {
3411
3433
  id: Scalars['String']['input'];
3434
+ propertyMapId?: InputMaybe<Scalars['String']['input']>;
3412
3435
  };
3413
3436
  type PropertyMapItem = {
3414
3437
  __typename?: 'PropertyMapItem';
@@ -4152,6 +4175,7 @@ type UpdateIndustrialPropertyInput = {
4152
4175
  metadata?: InputMaybe<Scalars['JSON']['input']>;
4153
4176
  notes?: InputMaybe<Scalars['JSON']['input']>;
4154
4177
  numberOfFloor?: InputMaybe<Scalars['Int']['input']>;
4178
+ operationStatus?: InputMaybe<PropertyOperationStatus>;
4155
4179
  polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
4156
4180
  price?: InputMaybe<Scalars['String']['input']>;
4157
4181
  propertyLegalStatus?: InputMaybe<PropertyLegalStatus>;
@@ -4555,9 +4579,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4555
4579
  __typename: 'FilterResponse';
4556
4580
  }) | (ForSalesResponse & {
4557
4581
  __typename: 'ForSalesResponse';
4558
- }) | (Omit<IndustrialPropertiesResponse, 'data'> & {
4559
- data: Array<Maybe<_RefType['IndustrialPropertyItem']>>;
4560
- } & {
4582
+ }) | (IndustrialPropertiesResponse & {
4561
4583
  __typename: 'IndustrialPropertiesResponse';
4562
4584
  }) | (InvestorRepresentativesResponse & {
4563
4585
  __typename: 'InvestorRepresentativesResponse';
@@ -4573,9 +4595,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4573
4595
  __typename: 'PaymentProcessesResponse';
4574
4596
  }) | (PreDealsResponse & {
4575
4597
  __typename: 'PreDealsResponse';
4576
- }) | (Omit<PropertiesVisualizationResponse, 'data'> & {
4577
- data: Array<_RefType['PropertyVisualizationItem']>;
4578
- } & {
4598
+ }) | (PropertiesVisualizationResponse & {
4579
4599
  __typename: 'PropertiesVisualizationResponse';
4580
4600
  }) | (PropertyMapsResponse & {
4581
4601
  __typename: 'PropertyMapsResponse';
@@ -4791,15 +4811,10 @@ type ResolversTypes = {
4791
4811
  ImportBrokerClientResponse: ResolverTypeWrapper<ImportBrokerClientResponse>;
4792
4812
  ImportBrokerClientSuccessList: ResolverTypeWrapper<ImportBrokerClientSuccessList>;
4793
4813
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
4794
- IndustrialPropertiesResponse: ResolverTypeWrapper<Omit<IndustrialPropertiesResponse, 'data'> & {
4795
- data: Array<Maybe<ResolversTypes['IndustrialPropertyItem']>>;
4796
- }>;
4814
+ IndustrialPropertiesResponse: ResolverTypeWrapper<IndustrialPropertiesResponse>;
4797
4815
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
4798
4816
  IndustrialPropertyDetailItem: ResolverTypeWrapper<IndustrialPropertyDetailItem>;
4799
- IndustrialPropertyItem: ResolverTypeWrapper<Omit<IndustrialPropertyItem, 'children' | 'operationStatus'> & {
4800
- children?: Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>;
4801
- operationStatus?: Maybe<ResolversTypes['PropertyOperationStatus']>;
4802
- }>;
4817
+ IndustrialPropertyItem: ResolverTypeWrapper<IndustrialPropertyItem>;
4803
4818
  IndustrialPropertySortField: ResolverTypeWrapper<'CREATED_AT' | 'TITLE' | 'PRICE' | 'AREA'>;
4804
4819
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
4805
4820
  InvestorRepresentativeResponse: ResolverTypeWrapper<InvestorRepresentativeResponse>;
@@ -4893,9 +4908,7 @@ type ResolversTypes = {
4893
4908
  ProjectUser: ResolverTypeWrapper<ProjectUser>;
4894
4909
  ProjectUtility: ResolverTypeWrapper<ProjectUtility>;
4895
4910
  ProjectWard: ResolverTypeWrapper<ProjectWard>;
4896
- PropertiesVisualizationResponse: ResolverTypeWrapper<Omit<PropertiesVisualizationResponse, 'data'> & {
4897
- data: Array<ResolversTypes['PropertyVisualizationItem']>;
4898
- }>;
4911
+ PropertiesVisualizationResponse: ResolverTypeWrapper<PropertiesVisualizationResponse>;
4899
4912
  PropertyApprovalStatus: ResolverTypeWrapper<'PENDING' | 'APPROVED' | 'REJECTED' | 'ARCHIVED'>;
4900
4913
  PropertyAuthorizationType: ResolverTypeWrapper<'FOR_RENT_A_PART' | 'FOR_SALE_A_PART' | 'FOR_RENT_ALL' | 'FOR_SALE_ALL'>;
4901
4914
  PropertyFilter: PropertyFilter;
@@ -4905,14 +4918,10 @@ type ResolversTypes = {
4905
4918
  PropertyMapsFilter: PropertyMapsFilter;
4906
4919
  PropertyMapsResponse: ResolverTypeWrapper<PropertyMapsResponse>;
4907
4920
  PropertyOperationStatus: ResolverTypeWrapper<'UNDETERMINED' | 'COMING_SOON' | 'FOR_SALE_RENT' | 'ACTIVE' | 'DEACTIVATED'>;
4908
- PropertyResponse: ResolverTypeWrapper<Omit<PropertyResponse, 'property'> & {
4909
- property: ResolversTypes['IndustrialPropertyItem'];
4910
- }>;
4921
+ PropertyResponse: ResolverTypeWrapper<PropertyResponse>;
4911
4922
  PropertyType: ResolverTypeWrapper<'INDUSTRIAL_ZONE' | 'BUILDING' | 'FLOOR' | 'ROOM' | 'LAND_LOT' | 'FACTORY' | 'WAREHOUSE' | 'OFFICE' | 'HOUSING' | 'APARTMENT'>;
4912
4923
  PropertyVisualizationFilter: PropertyVisualizationFilter;
4913
- PropertyVisualizationItem: ResolverTypeWrapper<Omit<PropertyVisualizationItem, 'propertyItem'> & {
4914
- propertyItem?: Maybe<ResolversTypes['IndustrialPropertyItem']>;
4915
- }>;
4924
+ PropertyVisualizationItem: ResolverTypeWrapper<PropertyVisualizationItem>;
4916
4925
  ProvinceResponse: ResolverTypeWrapper<ProvinceResponse>;
4917
4926
  ProvincesFilter: ProvincesFilter;
4918
4927
  ProvincesResponse: ResolverTypeWrapper<ProvincesResponse>;
@@ -5252,14 +5261,10 @@ type ResolversParentTypes = {
5252
5261
  ImportBrokerClientResponse: ImportBrokerClientResponse;
5253
5262
  ImportBrokerClientSuccessList: ImportBrokerClientSuccessList;
5254
5263
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
5255
- IndustrialPropertiesResponse: Omit<IndustrialPropertiesResponse, 'data'> & {
5256
- data: Array<Maybe<ResolversParentTypes['IndustrialPropertyItem']>>;
5257
- };
5264
+ IndustrialPropertiesResponse: IndustrialPropertiesResponse;
5258
5265
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
5259
5266
  IndustrialPropertyDetailItem: IndustrialPropertyDetailItem;
5260
- IndustrialPropertyItem: Omit<IndustrialPropertyItem, 'children'> & {
5261
- children?: Maybe<Array<ResolversParentTypes['IndustrialPropertyItem']>>;
5262
- };
5267
+ IndustrialPropertyItem: IndustrialPropertyItem;
5263
5268
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
5264
5269
  InvestorRepresentativeResponse: InvestorRepresentativeResponse;
5265
5270
  InvestorRepresentativesFilter: InvestorRepresentativesFilter;
@@ -5328,20 +5333,14 @@ type ResolversParentTypes = {
5328
5333
  ProjectUser: ProjectUser;
5329
5334
  ProjectUtility: ProjectUtility;
5330
5335
  ProjectWard: ProjectWard;
5331
- PropertiesVisualizationResponse: Omit<PropertiesVisualizationResponse, 'data'> & {
5332
- data: Array<ResolversParentTypes['PropertyVisualizationItem']>;
5333
- };
5336
+ PropertiesVisualizationResponse: PropertiesVisualizationResponse;
5334
5337
  PropertyFilter: PropertyFilter;
5335
5338
  PropertyMapItem: PropertyMapItem;
5336
5339
  PropertyMapsFilter: PropertyMapsFilter;
5337
5340
  PropertyMapsResponse: PropertyMapsResponse;
5338
- PropertyResponse: Omit<PropertyResponse, 'property'> & {
5339
- property: ResolversParentTypes['IndustrialPropertyItem'];
5340
- };
5341
+ PropertyResponse: PropertyResponse;
5341
5342
  PropertyVisualizationFilter: PropertyVisualizationFilter;
5342
- PropertyVisualizationItem: Omit<PropertyVisualizationItem, 'propertyItem'> & {
5343
- propertyItem?: Maybe<ResolversParentTypes['IndustrialPropertyItem']>;
5344
- };
5343
+ PropertyVisualizationItem: PropertyVisualizationItem;
5345
5344
  ProvinceResponse: ProvinceResponse;
5346
5345
  ProvincesFilter: ProvincesFilter;
5347
5346
  ProvincesResponse: ProvincesResponse;
@@ -6091,33 +6090,53 @@ type IndustrialPropertyDetailItemResolvers<ContextType = any, ParentType extends
6091
6090
  width?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
6092
6091
  };
6093
6092
  type IndustrialPropertyItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['IndustrialPropertyItem'] = ResolversParentTypes['IndustrialPropertyItem']> = {
6093
+ approvalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6094
6094
  area?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6095
6095
  assignedBroker?: Resolver<Maybe<ResolversTypes['AssignedBrokerItem']>, ParentType, ContextType>;
6096
6096
  attachmentsIds?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6097
+ authorizationEndtime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6098
+ authorizationStarttime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6099
+ authorizationType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6097
6100
  children?: Resolver<Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>, ParentType, ContextType>;
6101
+ createdAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6102
+ createdById?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6103
+ deposite?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6104
+ depositeUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6098
6105
  description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6099
6106
  detail?: Resolver<Maybe<ResolversTypes['IndustrialPropertyDetailItem']>, ParentType, ContextType>;
6100
6107
  detailedAddress?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6101
6108
  floorNumber?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6102
6109
  id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6110
+ identityId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6103
6111
  imagesIds?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6112
+ isAuthorizedForSystem?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
6113
+ isPublic?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
6104
6114
  landCurrentStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6105
6115
  latitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6106
6116
  longitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6107
6117
  metadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6108
6118
  notes?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6119
+ notificationTypes?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6109
6120
  numberOfFloor?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6110
6121
  numberOfProperties?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6111
- operationStatus?: Resolver<Maybe<ResolversTypes['PropertyOperationStatus']>, ParentType, ContextType>;
6122
+ operationStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6123
+ ownerId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6112
6124
  parentIndustrialPropertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6125
+ paymentPeriodType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6126
+ polygon?: Resolver<Maybe<Array<ResolversTypes['PolygonCoordinate']>>, ParentType, ContextType>;
6113
6127
  price?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6128
+ priceUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6114
6129
  projectId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6115
6130
  propertyLegalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6116
6131
  provinceId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6117
6132
  seoMetadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6118
6133
  title?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6119
6134
  type?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6135
+ updatedAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6136
+ updatedById?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6120
6137
  wardId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6138
+ yearBuilt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6139
+ yearCompleted?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6121
6140
  };
6122
6141
  type IndustrialPropertySortFieldResolvers = EnumResolverSignature<{
6123
6142
  AREA?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@investtal/models",
3
- "version": "1.2.54",
3
+ "version": "1.2.56",
4
4
  "license": "PRIVATE",
5
5
  "description": "Investtal react hooks",
6
6
  "author": "Harry Tran <nhattq.coding@gmail.com>",