@investtal/models 1.2.55 → 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,13 @@
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
+
5
12
  ## [1.2.55] - 2026-02-05
6
13
 
7
14
  ### Changed
package/dist/index.d.cts CHANGED
@@ -2270,34 +2270,53 @@ type IndustrialPropertyDetailItem = {
2270
2270
  };
2271
2271
  type IndustrialPropertyItem = {
2272
2272
  __typename?: 'IndustrialPropertyItem';
2273
+ approvalStatus?: Maybe<Scalars['String']['output']>;
2273
2274
  area?: Maybe<Scalars['String']['output']>;
2274
2275
  assignedBroker?: Maybe<AssignedBrokerItem>;
2275
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']>;
2276
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']>;
2277
2285
  description?: Maybe<Scalars['String']['output']>;
2278
2286
  detail?: Maybe<IndustrialPropertyDetailItem>;
2279
2287
  detailedAddress?: Maybe<Scalars['String']['output']>;
2280
2288
  floorNumber?: Maybe<Scalars['Int']['output']>;
2281
2289
  id: Scalars['String']['output'];
2290
+ identityId?: Maybe<Scalars['String']['output']>;
2282
2291
  imagesIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2292
+ isAuthorizedForSystem?: Maybe<Scalars['Boolean']['output']>;
2293
+ isPublic?: Maybe<Scalars['Boolean']['output']>;
2283
2294
  landCurrentStatus?: Maybe<Scalars['String']['output']>;
2284
2295
  latitude?: Maybe<Scalars['String']['output']>;
2285
2296
  longitude?: Maybe<Scalars['String']['output']>;
2286
2297
  metadata?: Maybe<Scalars['JSON']['output']>;
2287
2298
  notes?: Maybe<Scalars['JSON']['output']>;
2299
+ notificationTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2288
2300
  numberOfFloor?: Maybe<Scalars['Int']['output']>;
2289
2301
  numberOfProperties?: Maybe<Scalars['Int']['output']>;
2290
- operationStatus?: Maybe<PropertyOperationStatus>;
2302
+ operationStatus?: Maybe<Scalars['String']['output']>;
2303
+ ownerId?: Maybe<Scalars['String']['output']>;
2291
2304
  parentIndustrialPropertyId?: Maybe<Scalars['String']['output']>;
2305
+ paymentPeriodType?: Maybe<Scalars['String']['output']>;
2292
2306
  polygon?: Maybe<Array<PolygonCoordinate>>;
2293
2307
  price?: Maybe<Scalars['String']['output']>;
2308
+ priceUnit?: Maybe<Scalars['String']['output']>;
2294
2309
  projectId?: Maybe<Scalars['String']['output']>;
2295
2310
  propertyLegalStatus?: Maybe<Scalars['String']['output']>;
2296
2311
  provinceId?: Maybe<Scalars['String']['output']>;
2297
2312
  seoMetadata?: Maybe<Scalars['JSON']['output']>;
2298
2313
  title: Scalars['String']['output'];
2299
2314
  type?: Maybe<Scalars['String']['output']>;
2315
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
2316
+ updatedById?: Maybe<Scalars['String']['output']>;
2300
2317
  wardId?: Maybe<Scalars['String']['output']>;
2318
+ yearBuilt?: Maybe<Scalars['DateTime']['output']>;
2319
+ yearCompleted?: Maybe<Scalars['DateTime']['output']>;
2301
2320
  };
2302
2321
  type IndustrialPropertySortField = 'AREA' | 'CREATED_AT' | 'PRICE' | 'TITLE';
2303
2322
  type InvestorApproveConsignmentRequestInput = {
@@ -4560,9 +4579,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4560
4579
  __typename: 'FilterResponse';
4561
4580
  }) | (ForSalesResponse & {
4562
4581
  __typename: 'ForSalesResponse';
4563
- }) | (Omit<IndustrialPropertiesResponse, 'data'> & {
4564
- data: Array<Maybe<_RefType['IndustrialPropertyItem']>>;
4565
- } & {
4582
+ }) | (IndustrialPropertiesResponse & {
4566
4583
  __typename: 'IndustrialPropertiesResponse';
4567
4584
  }) | (InvestorRepresentativesResponse & {
4568
4585
  __typename: 'InvestorRepresentativesResponse';
@@ -4578,9 +4595,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4578
4595
  __typename: 'PaymentProcessesResponse';
4579
4596
  }) | (PreDealsResponse & {
4580
4597
  __typename: 'PreDealsResponse';
4581
- }) | (Omit<PropertiesVisualizationResponse, 'data'> & {
4582
- data: Array<_RefType['PropertyVisualizationItem']>;
4583
- } & {
4598
+ }) | (PropertiesVisualizationResponse & {
4584
4599
  __typename: 'PropertiesVisualizationResponse';
4585
4600
  }) | (PropertyMapsResponse & {
4586
4601
  __typename: 'PropertyMapsResponse';
@@ -4796,15 +4811,10 @@ type ResolversTypes = {
4796
4811
  ImportBrokerClientResponse: ResolverTypeWrapper<ImportBrokerClientResponse>;
4797
4812
  ImportBrokerClientSuccessList: ResolverTypeWrapper<ImportBrokerClientSuccessList>;
4798
4813
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
4799
- IndustrialPropertiesResponse: ResolverTypeWrapper<Omit<IndustrialPropertiesResponse, 'data'> & {
4800
- data: Array<Maybe<ResolversTypes['IndustrialPropertyItem']>>;
4801
- }>;
4814
+ IndustrialPropertiesResponse: ResolverTypeWrapper<IndustrialPropertiesResponse>;
4802
4815
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
4803
4816
  IndustrialPropertyDetailItem: ResolverTypeWrapper<IndustrialPropertyDetailItem>;
4804
- IndustrialPropertyItem: ResolverTypeWrapper<Omit<IndustrialPropertyItem, 'children' | 'operationStatus'> & {
4805
- children?: Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>;
4806
- operationStatus?: Maybe<ResolversTypes['PropertyOperationStatus']>;
4807
- }>;
4817
+ IndustrialPropertyItem: ResolverTypeWrapper<IndustrialPropertyItem>;
4808
4818
  IndustrialPropertySortField: ResolverTypeWrapper<'CREATED_AT' | 'TITLE' | 'PRICE' | 'AREA'>;
4809
4819
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
4810
4820
  InvestorRepresentativeResponse: ResolverTypeWrapper<InvestorRepresentativeResponse>;
@@ -4898,9 +4908,7 @@ type ResolversTypes = {
4898
4908
  ProjectUser: ResolverTypeWrapper<ProjectUser>;
4899
4909
  ProjectUtility: ResolverTypeWrapper<ProjectUtility>;
4900
4910
  ProjectWard: ResolverTypeWrapper<ProjectWard>;
4901
- PropertiesVisualizationResponse: ResolverTypeWrapper<Omit<PropertiesVisualizationResponse, 'data'> & {
4902
- data: Array<ResolversTypes['PropertyVisualizationItem']>;
4903
- }>;
4911
+ PropertiesVisualizationResponse: ResolverTypeWrapper<PropertiesVisualizationResponse>;
4904
4912
  PropertyApprovalStatus: ResolverTypeWrapper<'PENDING' | 'APPROVED' | 'REJECTED' | 'ARCHIVED'>;
4905
4913
  PropertyAuthorizationType: ResolverTypeWrapper<'FOR_RENT_A_PART' | 'FOR_SALE_A_PART' | 'FOR_RENT_ALL' | 'FOR_SALE_ALL'>;
4906
4914
  PropertyFilter: PropertyFilter;
@@ -4910,14 +4918,10 @@ type ResolversTypes = {
4910
4918
  PropertyMapsFilter: PropertyMapsFilter;
4911
4919
  PropertyMapsResponse: ResolverTypeWrapper<PropertyMapsResponse>;
4912
4920
  PropertyOperationStatus: ResolverTypeWrapper<'UNDETERMINED' | 'COMING_SOON' | 'FOR_SALE_RENT' | 'ACTIVE' | 'DEACTIVATED'>;
4913
- PropertyResponse: ResolverTypeWrapper<Omit<PropertyResponse, 'property'> & {
4914
- property: ResolversTypes['IndustrialPropertyItem'];
4915
- }>;
4921
+ PropertyResponse: ResolverTypeWrapper<PropertyResponse>;
4916
4922
  PropertyType: ResolverTypeWrapper<'INDUSTRIAL_ZONE' | 'BUILDING' | 'FLOOR' | 'ROOM' | 'LAND_LOT' | 'FACTORY' | 'WAREHOUSE' | 'OFFICE' | 'HOUSING' | 'APARTMENT'>;
4917
4923
  PropertyVisualizationFilter: PropertyVisualizationFilter;
4918
- PropertyVisualizationItem: ResolverTypeWrapper<Omit<PropertyVisualizationItem, 'propertyItem'> & {
4919
- propertyItem?: Maybe<ResolversTypes['IndustrialPropertyItem']>;
4920
- }>;
4924
+ PropertyVisualizationItem: ResolverTypeWrapper<PropertyVisualizationItem>;
4921
4925
  ProvinceResponse: ResolverTypeWrapper<ProvinceResponse>;
4922
4926
  ProvincesFilter: ProvincesFilter;
4923
4927
  ProvincesResponse: ResolverTypeWrapper<ProvincesResponse>;
@@ -5257,14 +5261,10 @@ type ResolversParentTypes = {
5257
5261
  ImportBrokerClientResponse: ImportBrokerClientResponse;
5258
5262
  ImportBrokerClientSuccessList: ImportBrokerClientSuccessList;
5259
5263
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
5260
- IndustrialPropertiesResponse: Omit<IndustrialPropertiesResponse, 'data'> & {
5261
- data: Array<Maybe<ResolversParentTypes['IndustrialPropertyItem']>>;
5262
- };
5264
+ IndustrialPropertiesResponse: IndustrialPropertiesResponse;
5263
5265
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
5264
5266
  IndustrialPropertyDetailItem: IndustrialPropertyDetailItem;
5265
- IndustrialPropertyItem: Omit<IndustrialPropertyItem, 'children'> & {
5266
- children?: Maybe<Array<ResolversParentTypes['IndustrialPropertyItem']>>;
5267
- };
5267
+ IndustrialPropertyItem: IndustrialPropertyItem;
5268
5268
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
5269
5269
  InvestorRepresentativeResponse: InvestorRepresentativeResponse;
5270
5270
  InvestorRepresentativesFilter: InvestorRepresentativesFilter;
@@ -5333,20 +5333,14 @@ type ResolversParentTypes = {
5333
5333
  ProjectUser: ProjectUser;
5334
5334
  ProjectUtility: ProjectUtility;
5335
5335
  ProjectWard: ProjectWard;
5336
- PropertiesVisualizationResponse: Omit<PropertiesVisualizationResponse, 'data'> & {
5337
- data: Array<ResolversParentTypes['PropertyVisualizationItem']>;
5338
- };
5336
+ PropertiesVisualizationResponse: PropertiesVisualizationResponse;
5339
5337
  PropertyFilter: PropertyFilter;
5340
5338
  PropertyMapItem: PropertyMapItem;
5341
5339
  PropertyMapsFilter: PropertyMapsFilter;
5342
5340
  PropertyMapsResponse: PropertyMapsResponse;
5343
- PropertyResponse: Omit<PropertyResponse, 'property'> & {
5344
- property: ResolversParentTypes['IndustrialPropertyItem'];
5345
- };
5341
+ PropertyResponse: PropertyResponse;
5346
5342
  PropertyVisualizationFilter: PropertyVisualizationFilter;
5347
- PropertyVisualizationItem: Omit<PropertyVisualizationItem, 'propertyItem'> & {
5348
- propertyItem?: Maybe<ResolversParentTypes['IndustrialPropertyItem']>;
5349
- };
5343
+ PropertyVisualizationItem: PropertyVisualizationItem;
5350
5344
  ProvinceResponse: ProvinceResponse;
5351
5345
  ProvincesFilter: ProvincesFilter;
5352
5346
  ProvincesResponse: ProvincesResponse;
@@ -6096,34 +6090,53 @@ type IndustrialPropertyDetailItemResolvers<ContextType = any, ParentType extends
6096
6090
  width?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
6097
6091
  };
6098
6092
  type IndustrialPropertyItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['IndustrialPropertyItem'] = ResolversParentTypes['IndustrialPropertyItem']> = {
6093
+ approvalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6099
6094
  area?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6100
6095
  assignedBroker?: Resolver<Maybe<ResolversTypes['AssignedBrokerItem']>, ParentType, ContextType>;
6101
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>;
6102
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>;
6103
6105
  description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6104
6106
  detail?: Resolver<Maybe<ResolversTypes['IndustrialPropertyDetailItem']>, ParentType, ContextType>;
6105
6107
  detailedAddress?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6106
6108
  floorNumber?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6107
6109
  id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6110
+ identityId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6108
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>;
6109
6114
  landCurrentStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6110
6115
  latitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6111
6116
  longitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6112
6117
  metadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6113
6118
  notes?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6119
+ notificationTypes?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6114
6120
  numberOfFloor?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6115
6121
  numberOfProperties?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6116
- operationStatus?: Resolver<Maybe<ResolversTypes['PropertyOperationStatus']>, ParentType, ContextType>;
6122
+ operationStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6123
+ ownerId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6117
6124
  parentIndustrialPropertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6125
+ paymentPeriodType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6118
6126
  polygon?: Resolver<Maybe<Array<ResolversTypes['PolygonCoordinate']>>, ParentType, ContextType>;
6119
6127
  price?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6128
+ priceUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6120
6129
  projectId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6121
6130
  propertyLegalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6122
6131
  provinceId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6123
6132
  seoMetadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6124
6133
  title?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6125
6134
  type?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6135
+ updatedAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6136
+ updatedById?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6126
6137
  wardId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6138
+ yearBuilt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6139
+ yearCompleted?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6127
6140
  };
6128
6141
  type IndustrialPropertySortFieldResolvers = EnumResolverSignature<{
6129
6142
  AREA?: any;
package/dist/index.d.mts CHANGED
@@ -2270,34 +2270,53 @@ type IndustrialPropertyDetailItem = {
2270
2270
  };
2271
2271
  type IndustrialPropertyItem = {
2272
2272
  __typename?: 'IndustrialPropertyItem';
2273
+ approvalStatus?: Maybe<Scalars['String']['output']>;
2273
2274
  area?: Maybe<Scalars['String']['output']>;
2274
2275
  assignedBroker?: Maybe<AssignedBrokerItem>;
2275
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']>;
2276
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']>;
2277
2285
  description?: Maybe<Scalars['String']['output']>;
2278
2286
  detail?: Maybe<IndustrialPropertyDetailItem>;
2279
2287
  detailedAddress?: Maybe<Scalars['String']['output']>;
2280
2288
  floorNumber?: Maybe<Scalars['Int']['output']>;
2281
2289
  id: Scalars['String']['output'];
2290
+ identityId?: Maybe<Scalars['String']['output']>;
2282
2291
  imagesIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2292
+ isAuthorizedForSystem?: Maybe<Scalars['Boolean']['output']>;
2293
+ isPublic?: Maybe<Scalars['Boolean']['output']>;
2283
2294
  landCurrentStatus?: Maybe<Scalars['String']['output']>;
2284
2295
  latitude?: Maybe<Scalars['String']['output']>;
2285
2296
  longitude?: Maybe<Scalars['String']['output']>;
2286
2297
  metadata?: Maybe<Scalars['JSON']['output']>;
2287
2298
  notes?: Maybe<Scalars['JSON']['output']>;
2299
+ notificationTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
2288
2300
  numberOfFloor?: Maybe<Scalars['Int']['output']>;
2289
2301
  numberOfProperties?: Maybe<Scalars['Int']['output']>;
2290
- operationStatus?: Maybe<PropertyOperationStatus>;
2302
+ operationStatus?: Maybe<Scalars['String']['output']>;
2303
+ ownerId?: Maybe<Scalars['String']['output']>;
2291
2304
  parentIndustrialPropertyId?: Maybe<Scalars['String']['output']>;
2305
+ paymentPeriodType?: Maybe<Scalars['String']['output']>;
2292
2306
  polygon?: Maybe<Array<PolygonCoordinate>>;
2293
2307
  price?: Maybe<Scalars['String']['output']>;
2308
+ priceUnit?: Maybe<Scalars['String']['output']>;
2294
2309
  projectId?: Maybe<Scalars['String']['output']>;
2295
2310
  propertyLegalStatus?: Maybe<Scalars['String']['output']>;
2296
2311
  provinceId?: Maybe<Scalars['String']['output']>;
2297
2312
  seoMetadata?: Maybe<Scalars['JSON']['output']>;
2298
2313
  title: Scalars['String']['output'];
2299
2314
  type?: Maybe<Scalars['String']['output']>;
2315
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
2316
+ updatedById?: Maybe<Scalars['String']['output']>;
2300
2317
  wardId?: Maybe<Scalars['String']['output']>;
2318
+ yearBuilt?: Maybe<Scalars['DateTime']['output']>;
2319
+ yearCompleted?: Maybe<Scalars['DateTime']['output']>;
2301
2320
  };
2302
2321
  type IndustrialPropertySortField = 'AREA' | 'CREATED_AT' | 'PRICE' | 'TITLE';
2303
2322
  type InvestorApproveConsignmentRequestInput = {
@@ -4560,9 +4579,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4560
4579
  __typename: 'FilterResponse';
4561
4580
  }) | (ForSalesResponse & {
4562
4581
  __typename: 'ForSalesResponse';
4563
- }) | (Omit<IndustrialPropertiesResponse, 'data'> & {
4564
- data: Array<Maybe<_RefType['IndustrialPropertyItem']>>;
4565
- } & {
4582
+ }) | (IndustrialPropertiesResponse & {
4566
4583
  __typename: 'IndustrialPropertiesResponse';
4567
4584
  }) | (InvestorRepresentativesResponse & {
4568
4585
  __typename: 'InvestorRepresentativesResponse';
@@ -4578,9 +4595,7 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
4578
4595
  __typename: 'PaymentProcessesResponse';
4579
4596
  }) | (PreDealsResponse & {
4580
4597
  __typename: 'PreDealsResponse';
4581
- }) | (Omit<PropertiesVisualizationResponse, 'data'> & {
4582
- data: Array<_RefType['PropertyVisualizationItem']>;
4583
- } & {
4598
+ }) | (PropertiesVisualizationResponse & {
4584
4599
  __typename: 'PropertiesVisualizationResponse';
4585
4600
  }) | (PropertyMapsResponse & {
4586
4601
  __typename: 'PropertyMapsResponse';
@@ -4796,15 +4811,10 @@ type ResolversTypes = {
4796
4811
  ImportBrokerClientResponse: ResolverTypeWrapper<ImportBrokerClientResponse>;
4797
4812
  ImportBrokerClientSuccessList: ResolverTypeWrapper<ImportBrokerClientSuccessList>;
4798
4813
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
4799
- IndustrialPropertiesResponse: ResolverTypeWrapper<Omit<IndustrialPropertiesResponse, 'data'> & {
4800
- data: Array<Maybe<ResolversTypes['IndustrialPropertyItem']>>;
4801
- }>;
4814
+ IndustrialPropertiesResponse: ResolverTypeWrapper<IndustrialPropertiesResponse>;
4802
4815
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
4803
4816
  IndustrialPropertyDetailItem: ResolverTypeWrapper<IndustrialPropertyDetailItem>;
4804
- IndustrialPropertyItem: ResolverTypeWrapper<Omit<IndustrialPropertyItem, 'children' | 'operationStatus'> & {
4805
- children?: Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>;
4806
- operationStatus?: Maybe<ResolversTypes['PropertyOperationStatus']>;
4807
- }>;
4817
+ IndustrialPropertyItem: ResolverTypeWrapper<IndustrialPropertyItem>;
4808
4818
  IndustrialPropertySortField: ResolverTypeWrapper<'CREATED_AT' | 'TITLE' | 'PRICE' | 'AREA'>;
4809
4819
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
4810
4820
  InvestorRepresentativeResponse: ResolverTypeWrapper<InvestorRepresentativeResponse>;
@@ -4898,9 +4908,7 @@ type ResolversTypes = {
4898
4908
  ProjectUser: ResolverTypeWrapper<ProjectUser>;
4899
4909
  ProjectUtility: ResolverTypeWrapper<ProjectUtility>;
4900
4910
  ProjectWard: ResolverTypeWrapper<ProjectWard>;
4901
- PropertiesVisualizationResponse: ResolverTypeWrapper<Omit<PropertiesVisualizationResponse, 'data'> & {
4902
- data: Array<ResolversTypes['PropertyVisualizationItem']>;
4903
- }>;
4911
+ PropertiesVisualizationResponse: ResolverTypeWrapper<PropertiesVisualizationResponse>;
4904
4912
  PropertyApprovalStatus: ResolverTypeWrapper<'PENDING' | 'APPROVED' | 'REJECTED' | 'ARCHIVED'>;
4905
4913
  PropertyAuthorizationType: ResolverTypeWrapper<'FOR_RENT_A_PART' | 'FOR_SALE_A_PART' | 'FOR_RENT_ALL' | 'FOR_SALE_ALL'>;
4906
4914
  PropertyFilter: PropertyFilter;
@@ -4910,14 +4918,10 @@ type ResolversTypes = {
4910
4918
  PropertyMapsFilter: PropertyMapsFilter;
4911
4919
  PropertyMapsResponse: ResolverTypeWrapper<PropertyMapsResponse>;
4912
4920
  PropertyOperationStatus: ResolverTypeWrapper<'UNDETERMINED' | 'COMING_SOON' | 'FOR_SALE_RENT' | 'ACTIVE' | 'DEACTIVATED'>;
4913
- PropertyResponse: ResolverTypeWrapper<Omit<PropertyResponse, 'property'> & {
4914
- property: ResolversTypes['IndustrialPropertyItem'];
4915
- }>;
4921
+ PropertyResponse: ResolverTypeWrapper<PropertyResponse>;
4916
4922
  PropertyType: ResolverTypeWrapper<'INDUSTRIAL_ZONE' | 'BUILDING' | 'FLOOR' | 'ROOM' | 'LAND_LOT' | 'FACTORY' | 'WAREHOUSE' | 'OFFICE' | 'HOUSING' | 'APARTMENT'>;
4917
4923
  PropertyVisualizationFilter: PropertyVisualizationFilter;
4918
- PropertyVisualizationItem: ResolverTypeWrapper<Omit<PropertyVisualizationItem, 'propertyItem'> & {
4919
- propertyItem?: Maybe<ResolversTypes['IndustrialPropertyItem']>;
4920
- }>;
4924
+ PropertyVisualizationItem: ResolverTypeWrapper<PropertyVisualizationItem>;
4921
4925
  ProvinceResponse: ResolverTypeWrapper<ProvinceResponse>;
4922
4926
  ProvincesFilter: ProvincesFilter;
4923
4927
  ProvincesResponse: ResolverTypeWrapper<ProvincesResponse>;
@@ -5257,14 +5261,10 @@ type ResolversParentTypes = {
5257
5261
  ImportBrokerClientResponse: ImportBrokerClientResponse;
5258
5262
  ImportBrokerClientSuccessList: ImportBrokerClientSuccessList;
5259
5263
  IndustrialPropertiesFilter: IndustrialPropertiesFilter;
5260
- IndustrialPropertiesResponse: Omit<IndustrialPropertiesResponse, 'data'> & {
5261
- data: Array<Maybe<ResolversParentTypes['IndustrialPropertyItem']>>;
5262
- };
5264
+ IndustrialPropertiesResponse: IndustrialPropertiesResponse;
5263
5265
  IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
5264
5266
  IndustrialPropertyDetailItem: IndustrialPropertyDetailItem;
5265
- IndustrialPropertyItem: Omit<IndustrialPropertyItem, 'children'> & {
5266
- children?: Maybe<Array<ResolversParentTypes['IndustrialPropertyItem']>>;
5267
- };
5267
+ IndustrialPropertyItem: IndustrialPropertyItem;
5268
5268
  InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
5269
5269
  InvestorRepresentativeResponse: InvestorRepresentativeResponse;
5270
5270
  InvestorRepresentativesFilter: InvestorRepresentativesFilter;
@@ -5333,20 +5333,14 @@ type ResolversParentTypes = {
5333
5333
  ProjectUser: ProjectUser;
5334
5334
  ProjectUtility: ProjectUtility;
5335
5335
  ProjectWard: ProjectWard;
5336
- PropertiesVisualizationResponse: Omit<PropertiesVisualizationResponse, 'data'> & {
5337
- data: Array<ResolversParentTypes['PropertyVisualizationItem']>;
5338
- };
5336
+ PropertiesVisualizationResponse: PropertiesVisualizationResponse;
5339
5337
  PropertyFilter: PropertyFilter;
5340
5338
  PropertyMapItem: PropertyMapItem;
5341
5339
  PropertyMapsFilter: PropertyMapsFilter;
5342
5340
  PropertyMapsResponse: PropertyMapsResponse;
5343
- PropertyResponse: Omit<PropertyResponse, 'property'> & {
5344
- property: ResolversParentTypes['IndustrialPropertyItem'];
5345
- };
5341
+ PropertyResponse: PropertyResponse;
5346
5342
  PropertyVisualizationFilter: PropertyVisualizationFilter;
5347
- PropertyVisualizationItem: Omit<PropertyVisualizationItem, 'propertyItem'> & {
5348
- propertyItem?: Maybe<ResolversParentTypes['IndustrialPropertyItem']>;
5349
- };
5343
+ PropertyVisualizationItem: PropertyVisualizationItem;
5350
5344
  ProvinceResponse: ProvinceResponse;
5351
5345
  ProvincesFilter: ProvincesFilter;
5352
5346
  ProvincesResponse: ProvincesResponse;
@@ -6096,34 +6090,53 @@ type IndustrialPropertyDetailItemResolvers<ContextType = any, ParentType extends
6096
6090
  width?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
6097
6091
  };
6098
6092
  type IndustrialPropertyItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['IndustrialPropertyItem'] = ResolversParentTypes['IndustrialPropertyItem']> = {
6093
+ approvalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6099
6094
  area?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6100
6095
  assignedBroker?: Resolver<Maybe<ResolversTypes['AssignedBrokerItem']>, ParentType, ContextType>;
6101
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>;
6102
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>;
6103
6105
  description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6104
6106
  detail?: Resolver<Maybe<ResolversTypes['IndustrialPropertyDetailItem']>, ParentType, ContextType>;
6105
6107
  detailedAddress?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6106
6108
  floorNumber?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6107
6109
  id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6110
+ identityId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6108
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>;
6109
6114
  landCurrentStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6110
6115
  latitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6111
6116
  longitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6112
6117
  metadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6113
6118
  notes?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6119
+ notificationTypes?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
6114
6120
  numberOfFloor?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6115
6121
  numberOfProperties?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
6116
- operationStatus?: Resolver<Maybe<ResolversTypes['PropertyOperationStatus']>, ParentType, ContextType>;
6122
+ operationStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6123
+ ownerId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6117
6124
  parentIndustrialPropertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6125
+ paymentPeriodType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6118
6126
  polygon?: Resolver<Maybe<Array<ResolversTypes['PolygonCoordinate']>>, ParentType, ContextType>;
6119
6127
  price?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6128
+ priceUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6120
6129
  projectId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6121
6130
  propertyLegalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6122
6131
  provinceId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6123
6132
  seoMetadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
6124
6133
  title?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
6125
6134
  type?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6135
+ updatedAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6136
+ updatedById?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6126
6137
  wardId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
6138
+ yearBuilt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6139
+ yearCompleted?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
6127
6140
  };
6128
6141
  type IndustrialPropertySortFieldResolvers = EnumResolverSignature<{
6129
6142
  AREA?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@investtal/models",
3
- "version": "1.2.55",
3
+ "version": "1.2.56",
4
4
  "license": "PRIVATE",
5
5
  "description": "Investtal react hooks",
6
6
  "author": "Harry Tran <nhattq.coding@gmail.com>",