@investtal/models 1.2.51 → 1.2.55
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 +28 -0
- package/dist/index.cjs +32 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +239 -109
- package/dist/index.d.mts +239 -109
- package/dist/index.mjs +30 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -374,6 +374,11 @@ declare enum NotificationEnv {
|
|
|
374
374
|
TESTING = "testing",
|
|
375
375
|
STAGING = "staging"
|
|
376
376
|
}
|
|
377
|
+
declare enum NotificationType {
|
|
378
|
+
EMAIL = "email",
|
|
379
|
+
SMS = "sms",
|
|
380
|
+
PUSH = "push"
|
|
381
|
+
}
|
|
377
382
|
declare enum IdentityType {
|
|
378
383
|
ID_CARD = "ID_CARD"
|
|
379
384
|
}
|
|
@@ -423,7 +428,6 @@ declare enum PropertyType {
|
|
|
423
428
|
BUILDING = "BUILDING",
|
|
424
429
|
FLOOR = "FLOOR",
|
|
425
430
|
ROOM = "ROOM",
|
|
426
|
-
LAND = "LAND",
|
|
427
431
|
LAND_LOT = "LAND_LOT",
|
|
428
432
|
FACTORY = "FACTORY",
|
|
429
433
|
WAREHOUSE = "WAREHOUSE",
|
|
@@ -472,6 +476,19 @@ declare enum PropertyTransactionStatus {
|
|
|
472
476
|
SOLD = "SOLD",
|
|
473
477
|
UNDEFINED = "UNDEFINED"
|
|
474
478
|
}
|
|
479
|
+
declare enum PropertyOperationStatus {
|
|
480
|
+
UNDETERMINED = "UNDETERMINED",
|
|
481
|
+
COMING_SOON = "COMING_SOON",
|
|
482
|
+
FOR_SALE_RENT = "FOR_SALE_RENT",
|
|
483
|
+
ACTIVE = "ACTIVE",
|
|
484
|
+
DEACTIVATED = "DEACTIVATED"
|
|
485
|
+
}
|
|
486
|
+
declare enum PropertyAuthorizationType {
|
|
487
|
+
FOR_RENT_A_PART = "FOR_RENT_A_PART",
|
|
488
|
+
FOR_SALE_A_PART = "FOR_SALE_A_PART",
|
|
489
|
+
FOR_RENT_ALL = "FOR_RENT_ALL",
|
|
490
|
+
FOR_SALE_ALL = "FOR_SALE_ALL"
|
|
491
|
+
}
|
|
475
492
|
declare enum DealStatus {
|
|
476
493
|
PENDING = "PENDING",
|
|
477
494
|
PROCESSING = "PROCESSING",
|
|
@@ -767,6 +784,13 @@ declare enum ProjectCurrentStatus {
|
|
|
767
784
|
INACTIVE = "INACTIVE",
|
|
768
785
|
UNSPECIFIED = "UNSPECIFIED"
|
|
769
786
|
}
|
|
787
|
+
declare enum PropertyIdentifierType {
|
|
788
|
+
LAND_CERTIFICATE = "LAND_CERTIFICATE",
|
|
789
|
+
PARCEL_NUMBER = "PARCEL_NUMBER",
|
|
790
|
+
MAP_SHEET = "MAP_SHEET",
|
|
791
|
+
GOVERNMENT_CODE = "GOVERNMENT_CODE",
|
|
792
|
+
INTERNAL_CODE = "INTERNAL_CODE"
|
|
793
|
+
}
|
|
770
794
|
declare enum AppointmentStatus {
|
|
771
795
|
PENDING_APPROVAL = "PENDING_APPROVAL",
|
|
772
796
|
SCHEDULED = "SCHEDULED",
|
|
@@ -832,13 +856,6 @@ declare enum VersionAction {
|
|
|
832
856
|
CREATE = "CREATE",
|
|
833
857
|
UPDATE = "UPDATE"
|
|
834
858
|
}
|
|
835
|
-
declare enum PropertyOperationStatus {
|
|
836
|
-
UNDETERMINED = "UNDETERMINED",
|
|
837
|
-
COMING_SOON = "COMING_SOON",
|
|
838
|
-
FOR_SALE_RENT = "FOR_SALE_RENT",
|
|
839
|
-
ACTIVE = "ACTIVE",
|
|
840
|
-
DEACTIVATED = "DEACTIVATED"
|
|
841
|
-
}
|
|
842
859
|
//#endregion
|
|
843
860
|
//#region src/generated/graphql/types.generated.d.ts
|
|
844
861
|
type Maybe<T> = T | undefined;
|
|
@@ -893,6 +910,13 @@ type Scalars = {
|
|
|
893
910
|
output: any;
|
|
894
911
|
};
|
|
895
912
|
};
|
|
913
|
+
type AcceptManageIndustrialPropertyInput = {
|
|
914
|
+
industrialPropertyId: Scalars['String']['input'];
|
|
915
|
+
};
|
|
916
|
+
type AcceptManageIndustrialPropertyResponse = {
|
|
917
|
+
__typename?: 'AcceptManageIndustrialPropertyResponse';
|
|
918
|
+
message: Scalars['String']['output'];
|
|
919
|
+
};
|
|
896
920
|
type AcknowledgeAppointmentInput = {
|
|
897
921
|
appointmentId: Scalars['String']['input'];
|
|
898
922
|
responseComment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1112,6 +1136,25 @@ type AssignPropertiesVisualizationToBrokerResponse = {
|
|
|
1112
1136
|
message: Scalars['String']['output'];
|
|
1113
1137
|
success: Scalars['Boolean']['output'];
|
|
1114
1138
|
};
|
|
1139
|
+
type AssignPropertyToBrokerInput = {
|
|
1140
|
+
brokerId: Scalars['String']['input'];
|
|
1141
|
+
canEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1142
|
+
canView?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1143
|
+
propertyId: Scalars['String']['input'];
|
|
1144
|
+
};
|
|
1145
|
+
type AssignPropertyToBrokerResponse = {
|
|
1146
|
+
__typename?: 'AssignPropertyToBrokerResponse';
|
|
1147
|
+
message: Scalars['String']['output'];
|
|
1148
|
+
success: Scalars['Boolean']['output'];
|
|
1149
|
+
};
|
|
1150
|
+
type AssignedBrokerItem = {
|
|
1151
|
+
__typename?: 'AssignedBrokerItem';
|
|
1152
|
+
avatar: Scalars['String']['output'];
|
|
1153
|
+
brokerId: Scalars['String']['output'];
|
|
1154
|
+
brokerName: Scalars['String']['output'];
|
|
1155
|
+
description: Scalars['String']['output'];
|
|
1156
|
+
phoneNumber: Scalars['String']['output'];
|
|
1157
|
+
};
|
|
1115
1158
|
type BlacklistResponse = {
|
|
1116
1159
|
__typename?: 'BlacklistResponse';
|
|
1117
1160
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -1651,7 +1694,6 @@ type CreateIndustrialPropertyInput = {
|
|
|
1651
1694
|
floorNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
1652
1695
|
imagesIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1653
1696
|
industrialPropertyDetail: IndustrialPropertyDetailInput;
|
|
1654
|
-
industrialPropertyId?: InputMaybe<Scalars['String']['input']>;
|
|
1655
1697
|
isPublic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1656
1698
|
landCurrentStatus: PropertyLandCurrentStatus;
|
|
1657
1699
|
latitude?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1659,7 +1701,7 @@ type CreateIndustrialPropertyInput = {
|
|
|
1659
1701
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
1660
1702
|
notes?: InputMaybe<Scalars['String']['input']>;
|
|
1661
1703
|
numberOfFloor?: InputMaybe<Scalars['Int']['input']>;
|
|
1662
|
-
|
|
1704
|
+
operationStatus?: InputMaybe<PropertyOperationStatus>;
|
|
1663
1705
|
parentIndustrialPropertyId?: InputMaybe<Scalars['String']['input']>;
|
|
1664
1706
|
polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
|
|
1665
1707
|
price?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1674,10 +1716,9 @@ type CreateIndustrialPropertyInput = {
|
|
|
1674
1716
|
};
|
|
1675
1717
|
type CreateIndustrialPropertyResponse = {
|
|
1676
1718
|
__typename?: 'CreateIndustrialPropertyResponse';
|
|
1677
|
-
landLotId?: Maybe<Scalars['String']['output']>;
|
|
1678
1719
|
message: Scalars['String']['output'];
|
|
1679
|
-
propertyBranchId?: Maybe<Scalars['String']['output']>;
|
|
1680
1720
|
propertyId?: Maybe<Scalars['String']['output']>;
|
|
1721
|
+
propertyVisualizationId?: Maybe<Scalars['String']['output']>;
|
|
1681
1722
|
};
|
|
1682
1723
|
type CreateLandMapInput = {
|
|
1683
1724
|
floorNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1754,6 +1795,7 @@ type CreateProjectInput = {
|
|
|
1754
1795
|
addressDetail?: InputMaybe<Scalars['String']['input']>;
|
|
1755
1796
|
airportAccessDistance?: InputMaybe<Scalars['Float']['input']>;
|
|
1756
1797
|
area?: InputMaybe<Scalars['Float']['input']>;
|
|
1798
|
+
areaUnit?: InputMaybe<Scalars['String']['input']>;
|
|
1757
1799
|
backupPower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1758
1800
|
cleanWaterCapacity?: InputMaybe<Scalars['Float']['input']>;
|
|
1759
1801
|
cleanWaterSource?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1768,6 +1810,7 @@ type CreateProjectInput = {
|
|
|
1768
1810
|
greenParkArea?: InputMaybe<Scalars['Float']['input']>;
|
|
1769
1811
|
highwayAccessDistance?: InputMaybe<Scalars['Float']['input']>;
|
|
1770
1812
|
humanResources?: InputMaybe<Scalars['String']['input']>;
|
|
1813
|
+
identityId?: InputMaybe<Scalars['String']['input']>;
|
|
1771
1814
|
importExportTaxIncentives?: InputMaybe<Scalars['String']['input']>;
|
|
1772
1815
|
infrastructureOtherDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1773
1816
|
internalRoadWidth?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -1775,6 +1818,7 @@ type CreateProjectInput = {
|
|
|
1775
1818
|
investmentConditions?: InputMaybe<Scalars['String']['input']>;
|
|
1776
1819
|
investmentIncentives?: InputMaybe<Scalars['String']['input']>;
|
|
1777
1820
|
investmentOrientationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1821
|
+
investorName?: InputMaybe<Scalars['String']['input']>;
|
|
1778
1822
|
isOwner: Scalars['Boolean']['input'];
|
|
1779
1823
|
laborAgeDistribution?: InputMaybe<Scalars['JSON']['input']>;
|
|
1780
1824
|
laborAverageIncome?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -1798,6 +1842,7 @@ type CreateProjectInput = {
|
|
|
1798
1842
|
powerCapacity?: InputMaybe<Scalars['Float']['input']>;
|
|
1799
1843
|
powerSource?: InputMaybe<Scalars['String']['input']>;
|
|
1800
1844
|
projectClassification: ProjectClassification;
|
|
1845
|
+
projectCurrentStatus?: InputMaybe<ProjectCurrentStatus>;
|
|
1801
1846
|
projectType: ProjectType;
|
|
1802
1847
|
propertyMapMediaId: Scalars['String']['input'];
|
|
1803
1848
|
provinceId: Scalars['String']['input'];
|
|
@@ -1841,7 +1886,6 @@ type CreatePropertyMapResponse = {
|
|
|
1841
1886
|
propertyMapId: Scalars['String']['output'];
|
|
1842
1887
|
};
|
|
1843
1888
|
type CreatePropertyVisualizationInput = {
|
|
1844
|
-
industrialPropertyBranchId?: InputMaybe<Scalars['String']['input']>;
|
|
1845
1889
|
industrialPropertyId?: InputMaybe<Scalars['String']['input']>;
|
|
1846
1890
|
name: Scalars['String']['input'];
|
|
1847
1891
|
polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
|
|
@@ -2181,6 +2225,7 @@ type IndustrialPropertiesFilter = {
|
|
|
2181
2225
|
parentPropertyId?: InputMaybe<Scalars['String']['input']>;
|
|
2182
2226
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
2183
2227
|
propertyLegalStatus?: InputMaybe<PropertyLegalStatus>;
|
|
2228
|
+
propertyMapId?: InputMaybe<Scalars['String']['input']>;
|
|
2184
2229
|
provinceId?: InputMaybe<Scalars['String']['input']>;
|
|
2185
2230
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
2186
2231
|
sortBy?: InputMaybe<IndustrialPropertySortField>;
|
|
@@ -2199,85 +2244,52 @@ type IndustrialPropertiesResponse = PagePaginationInterface & {
|
|
|
2199
2244
|
type IndustrialPropertyDetailInput = {
|
|
2200
2245
|
buildingDensityPercent?: InputMaybe<Scalars['Float']['input']>;
|
|
2201
2246
|
completionRate?: InputMaybe<Scalars['Float']['input']>;
|
|
2202
|
-
constructionArea?: InputMaybe<Scalars['Float']['input']>;
|
|
2203
|
-
constructionEndYear?: InputMaybe<Scalars['Int']['input']>;
|
|
2204
|
-
constructionHeight?: InputMaybe<Scalars['Float']['input']>;
|
|
2205
|
-
constructionLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
2206
|
-
constructionLength?: InputMaybe<Scalars['Float']['input']>;
|
|
2207
|
-
constructionName?: InputMaybe<Scalars['String']['input']>;
|
|
2208
2247
|
constructionQuality?: InputMaybe<Scalars['String']['input']>;
|
|
2209
|
-
constructionStartYear?: InputMaybe<Scalars['Int']['input']>;
|
|
2210
|
-
constructionStatus: PropertyLandCurrentStatus;
|
|
2211
|
-
constructionType?: InputMaybe<Scalars['String']['input']>;
|
|
2212
|
-
constructionWidth?: InputMaybe<Scalars['Float']['input']>;
|
|
2213
2248
|
floorType?: InputMaybe<Scalars['String']['input']>;
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
landCurrentStatus: PropertyLandCurrentStatus;
|
|
2217
|
-
landDepth?: InputMaybe<Scalars['Float']['input']>;
|
|
2218
|
-
landLength?: InputMaybe<Scalars['Float']['input']>;
|
|
2219
|
-
landPosition?: InputMaybe<Scalars['String']['input']>;
|
|
2249
|
+
height?: InputMaybe<Scalars['Float']['input']>;
|
|
2250
|
+
length?: InputMaybe<Scalars['Float']['input']>;
|
|
2220
2251
|
loadBearingFloor?: InputMaybe<Scalars['Float']['input']>;
|
|
2221
|
-
numberOfConstructions?: InputMaybe<Scalars['Int']['input']>;
|
|
2222
|
-
numberOfProperties?: InputMaybe<Scalars['Int']['input']>;
|
|
2223
|
-
operationStatus?: InputMaybe<PropertyOperationStatus>;
|
|
2224
2252
|
orientation?: InputMaybe<Scalars['String']['input']>;
|
|
2225
|
-
roadAccessWidth?: InputMaybe<Scalars['Float']['input']>;
|
|
2226
2253
|
specialAttributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
2227
2254
|
structureType?: InputMaybe<Scalars['String']['input']>;
|
|
2228
|
-
|
|
2255
|
+
width?: InputMaybe<Scalars['Float']['input']>;
|
|
2229
2256
|
};
|
|
2230
2257
|
type IndustrialPropertyDetailItem = {
|
|
2231
2258
|
__typename?: 'IndustrialPropertyDetailItem';
|
|
2232
2259
|
buildingDensityPercent?: Maybe<Scalars['Float']['output']>;
|
|
2233
2260
|
completionRate?: Maybe<Scalars['Float']['output']>;
|
|
2234
|
-
constructionArea?: Maybe<Scalars['Float']['output']>;
|
|
2235
|
-
constructionEndYear?: Maybe<Scalars['Int']['output']>;
|
|
2236
|
-
constructionHeight?: Maybe<Scalars['Float']['output']>;
|
|
2237
|
-
constructionLayoutType?: Maybe<Scalars['String']['output']>;
|
|
2238
|
-
constructionLength?: Maybe<Scalars['Float']['output']>;
|
|
2239
|
-
constructionName?: Maybe<Scalars['String']['output']>;
|
|
2240
2261
|
constructionQuality?: Maybe<Scalars['String']['output']>;
|
|
2241
|
-
constructionStartYear?: Maybe<Scalars['Int']['output']>;
|
|
2242
|
-
constructionStatus: Scalars['String']['output'];
|
|
2243
|
-
constructionType?: Maybe<Scalars['String']['output']>;
|
|
2244
|
-
constructionWidth?: Maybe<Scalars['Float']['output']>;
|
|
2245
2262
|
floorType?: Maybe<Scalars['String']['output']>;
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
landCurrentStatus: Scalars['String']['output'];
|
|
2249
|
-
landDepth?: Maybe<Scalars['Float']['output']>;
|
|
2250
|
-
landLength?: Maybe<Scalars['Float']['output']>;
|
|
2251
|
-
landPosition?: Maybe<Scalars['String']['output']>;
|
|
2263
|
+
height?: Maybe<Scalars['Float']['output']>;
|
|
2264
|
+
length?: Maybe<Scalars['Float']['output']>;
|
|
2252
2265
|
loadBearingFloor?: Maybe<Scalars['Float']['output']>;
|
|
2253
|
-
numberOfConstructions?: Maybe<Scalars['Int']['output']>;
|
|
2254
|
-
numberOfProperties?: Maybe<Scalars['Int']['output']>;
|
|
2255
|
-
operationStatus?: Maybe<PropertyOperationStatus>;
|
|
2256
2266
|
orientation?: Maybe<Scalars['String']['output']>;
|
|
2257
|
-
roadAccessWidth?: Maybe<Scalars['Float']['output']>;
|
|
2258
2267
|
specialAttributes?: Maybe<Scalars['JSON']['output']>;
|
|
2259
2268
|
structureType?: Maybe<Scalars['String']['output']>;
|
|
2260
|
-
|
|
2269
|
+
width?: Maybe<Scalars['Float']['output']>;
|
|
2261
2270
|
};
|
|
2262
2271
|
type IndustrialPropertyItem = {
|
|
2263
2272
|
__typename?: 'IndustrialPropertyItem';
|
|
2264
2273
|
area?: Maybe<Scalars['String']['output']>;
|
|
2274
|
+
assignedBroker?: Maybe<AssignedBrokerItem>;
|
|
2265
2275
|
attachmentsIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2276
|
+
children?: Maybe<Array<IndustrialPropertyItem>>;
|
|
2266
2277
|
description?: Maybe<Scalars['String']['output']>;
|
|
2267
2278
|
detail?: Maybe<IndustrialPropertyDetailItem>;
|
|
2268
2279
|
detailedAddress?: Maybe<Scalars['String']['output']>;
|
|
2269
2280
|
floorNumber?: Maybe<Scalars['Int']['output']>;
|
|
2270
|
-
id
|
|
2281
|
+
id: Scalars['String']['output'];
|
|
2271
2282
|
imagesIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2272
|
-
industrialPropertyId: Scalars['String']['output'];
|
|
2273
2283
|
landCurrentStatus?: Maybe<Scalars['String']['output']>;
|
|
2274
2284
|
latitude?: Maybe<Scalars['String']['output']>;
|
|
2275
2285
|
longitude?: Maybe<Scalars['String']['output']>;
|
|
2276
2286
|
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
2277
2287
|
notes?: Maybe<Scalars['JSON']['output']>;
|
|
2278
2288
|
numberOfFloor?: Maybe<Scalars['Int']['output']>;
|
|
2279
|
-
|
|
2289
|
+
numberOfProperties?: Maybe<Scalars['Int']['output']>;
|
|
2290
|
+
operationStatus?: Maybe<PropertyOperationStatus>;
|
|
2280
2291
|
parentIndustrialPropertyId?: Maybe<Scalars['String']['output']>;
|
|
2292
|
+
polygon?: Maybe<Array<PolygonCoordinate>>;
|
|
2281
2293
|
price?: Maybe<Scalars['String']['output']>;
|
|
2282
2294
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
2283
2295
|
propertyLegalStatus?: Maybe<Scalars['String']['output']>;
|
|
@@ -2405,6 +2417,7 @@ type ModelResponseInterface = {
|
|
|
2405
2417
|
};
|
|
2406
2418
|
type Mutation = {
|
|
2407
2419
|
__typename?: 'Mutation';
|
|
2420
|
+
acceptManageIndustrialProperty: AcceptManageIndustrialPropertyResponse;
|
|
2408
2421
|
acknowledgeAppointment: AcknowledgeAppointmentResponse;
|
|
2409
2422
|
activateInvestorFromRegisterLink?: Maybe<ActivateInvestorFromRegisterLinkResponse>;
|
|
2410
2423
|
addDealStepParticipants: AddDealStepParticipantsResponse;
|
|
@@ -2420,6 +2433,7 @@ type Mutation = {
|
|
|
2420
2433
|
assignConsignmentRequestToBroker: AssignConsignmentRequestToBrokerResponse;
|
|
2421
2434
|
assignOrderRequestToBroker: AssignOrderRequestToBrokerResponse;
|
|
2422
2435
|
assignPropertiesVisualizationToBroker: AssignPropertiesVisualizationToBrokerResponse;
|
|
2436
|
+
assignPropertyToBroker: AssignPropertyToBrokerResponse;
|
|
2423
2437
|
cancelAppointment: CancelAppointmentResponse;
|
|
2424
2438
|
cancelScheduledNotification: Scalars['Boolean']['output'];
|
|
2425
2439
|
changeAvatar?: Maybe<UpdateAvatarResponse>;
|
|
@@ -2487,11 +2501,13 @@ type Mutation = {
|
|
|
2487
2501
|
readAllNotifications: ReadAllNotificationsResponse;
|
|
2488
2502
|
readChannelNotifications: ReadAllNotificationsResponse;
|
|
2489
2503
|
registerInvestorRepresentative: RegisterInvestorRepresentativeResponse;
|
|
2504
|
+
rejectManageIndustrialProperty: RejectManageIndustrialPropertyResponse;
|
|
2490
2505
|
rejectTickets?: Maybe<RejectTicketsResponse>;
|
|
2491
2506
|
removeDealStepParticipants: RemoveDealStepParticipantsResponse;
|
|
2492
2507
|
removeMemberChatGroup: RemoveMemberChatGroupResponse;
|
|
2493
2508
|
removeUtilityFromProject: Scalars['Boolean']['output'];
|
|
2494
2509
|
removeUtilityFromPropertyBranch: Scalars['Boolean']['output'];
|
|
2510
|
+
requestBrokerForManageIndustrialProperty: RequestBrokerForManageIndustrialPropertyResponse;
|
|
2495
2511
|
requestCreateAccount?: Maybe<RequestCreateAccountResponse>;
|
|
2496
2512
|
requestCreateAccountClient?: Maybe<RequestCreateAccountClientResponse>;
|
|
2497
2513
|
requestUpdateEmail?: Maybe<RequestUpdateEmailResponse>;
|
|
@@ -2535,6 +2551,9 @@ type Mutation = {
|
|
|
2535
2551
|
verifyOtpForgotPassword?: Maybe<VerifyOtpForgotPasswordResponse>;
|
|
2536
2552
|
verifyZnsOtp?: Maybe<VerifyOtpResponse>;
|
|
2537
2553
|
};
|
|
2554
|
+
type MutationacceptManageIndustrialPropertyArgs = {
|
|
2555
|
+
input: AcceptManageIndustrialPropertyInput;
|
|
2556
|
+
};
|
|
2538
2557
|
type MutationacknowledgeAppointmentArgs = {
|
|
2539
2558
|
input: AcknowledgeAppointmentInput;
|
|
2540
2559
|
};
|
|
@@ -2583,6 +2602,9 @@ type MutationassignOrderRequestToBrokerArgs = {
|
|
|
2583
2602
|
type MutationassignPropertiesVisualizationToBrokerArgs = {
|
|
2584
2603
|
input: AssignPropertiesVisualizationToBrokerInput;
|
|
2585
2604
|
};
|
|
2605
|
+
type MutationassignPropertyToBrokerArgs = {
|
|
2606
|
+
input: AssignPropertyToBrokerInput;
|
|
2607
|
+
};
|
|
2586
2608
|
type MutationcancelAppointmentArgs = {
|
|
2587
2609
|
input: CancelAppointmentInput;
|
|
2588
2610
|
};
|
|
@@ -2785,6 +2807,9 @@ type MutationreadChannelNotificationsArgs = {
|
|
|
2785
2807
|
type MutationregisterInvestorRepresentativeArgs = {
|
|
2786
2808
|
input: RegisterInvestorRepresentativeInput;
|
|
2787
2809
|
};
|
|
2810
|
+
type MutationrejectManageIndustrialPropertyArgs = {
|
|
2811
|
+
input: RejectManageIndustrialPropertyInput;
|
|
2812
|
+
};
|
|
2788
2813
|
type MutationrejectTicketsArgs = {
|
|
2789
2814
|
input: RejectTicketsInput;
|
|
2790
2815
|
};
|
|
@@ -2802,6 +2827,9 @@ type MutationremoveUtilityFromPropertyBranchArgs = {
|
|
|
2802
2827
|
propertyBranchId: Scalars['String']['input'];
|
|
2803
2828
|
utilityId: Scalars['String']['input'];
|
|
2804
2829
|
};
|
|
2830
|
+
type MutationrequestBrokerForManageIndustrialPropertyArgs = {
|
|
2831
|
+
input: RequestBrokerForManageIndustrialPropertyInput;
|
|
2832
|
+
};
|
|
2805
2833
|
type MutationrequestCreateAccountArgs = {
|
|
2806
2834
|
input: RequestCreateAccountInput;
|
|
2807
2835
|
};
|
|
@@ -3073,13 +3101,20 @@ type OwnerApproveConsignmentRequestInput = {
|
|
|
3073
3101
|
type OwnerAuthorizeForSystemInput = {
|
|
3074
3102
|
authorizationEndtime: Scalars['DateTime']['input'];
|
|
3075
3103
|
authorizationStarttime: Scalars['DateTime']['input'];
|
|
3076
|
-
|
|
3104
|
+
authorizationType: PropertyAuthorizationType;
|
|
3105
|
+
childrenIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3106
|
+
deposite?: InputMaybe<Scalars['String']['input']>;
|
|
3107
|
+
depositeUnit?: InputMaybe<Scalars['String']['input']>;
|
|
3108
|
+
id: Scalars['String']['input'];
|
|
3109
|
+
notes?: InputMaybe<Scalars['String']['input']>;
|
|
3110
|
+
notificationTypes: Array<NotificationType>;
|
|
3111
|
+
paymentPeriodType?: InputMaybe<Scalars['String']['input']>;
|
|
3112
|
+
price: Scalars['String']['input'];
|
|
3113
|
+
priceUnit: Scalars['String']['input'];
|
|
3077
3114
|
};
|
|
3078
3115
|
type OwnerAuthorizeForSystemResponse = {
|
|
3079
3116
|
__typename?: 'OwnerAuthorizeForSystemResponse';
|
|
3080
3117
|
message: Scalars['String']['output'];
|
|
3081
|
-
projectCount: Scalars['Int']['output'];
|
|
3082
|
-
propertyCount: Scalars['Int']['output'];
|
|
3083
3118
|
};
|
|
3084
3119
|
type PagePaginationInterface = {
|
|
3085
3120
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -3264,6 +3299,7 @@ type ProjectResponse = {
|
|
|
3264
3299
|
addressDetail?: Maybe<Scalars['String']['output']>;
|
|
3265
3300
|
airportAccessDistance?: Maybe<Scalars['Float']['output']>;
|
|
3266
3301
|
area?: Maybe<Scalars['Float']['output']>;
|
|
3302
|
+
areaUnit?: Maybe<Scalars['String']['output']>;
|
|
3267
3303
|
authorizationEndtime?: Maybe<Scalars['DateTime']['output']>;
|
|
3268
3304
|
authorizationStarttime?: Maybe<Scalars['DateTime']['output']>;
|
|
3269
3305
|
backupPower?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3284,6 +3320,7 @@ type ProjectResponse = {
|
|
|
3284
3320
|
highwayAccessDistance?: Maybe<Scalars['Float']['output']>;
|
|
3285
3321
|
humanResources?: Maybe<Scalars['String']['output']>;
|
|
3286
3322
|
id: Scalars['String']['output'];
|
|
3323
|
+
identityId?: Maybe<Scalars['String']['output']>;
|
|
3287
3324
|
importExportTaxIncentives?: Maybe<Scalars['String']['output']>;
|
|
3288
3325
|
infrastructureOtherDescription?: Maybe<Scalars['String']['output']>;
|
|
3289
3326
|
internalRoadWidth?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3291,6 +3328,7 @@ type ProjectResponse = {
|
|
|
3291
3328
|
investmentConditions?: Maybe<Scalars['String']['output']>;
|
|
3292
3329
|
investmentIncentives?: Maybe<Scalars['String']['output']>;
|
|
3293
3330
|
investmentOrientationDescription?: Maybe<Scalars['String']['output']>;
|
|
3331
|
+
investorName?: Maybe<Scalars['String']['output']>;
|
|
3294
3332
|
isAuthorizationForIvt: Scalars['Boolean']['output'];
|
|
3295
3333
|
laborAgeDistribution?: Maybe<Scalars['JSON']['output']>;
|
|
3296
3334
|
laborAverageIncome?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3372,6 +3410,10 @@ type PropertiesVisualizationResponse = PagePaginationInterface & {
|
|
|
3372
3410
|
total?: Maybe<Scalars['Int']['output']>;
|
|
3373
3411
|
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
3374
3412
|
};
|
|
3413
|
+
type PropertyFilter = {
|
|
3414
|
+
id: Scalars['String']['input'];
|
|
3415
|
+
propertyMapId?: InputMaybe<Scalars['String']['input']>;
|
|
3416
|
+
};
|
|
3375
3417
|
type PropertyMapItem = {
|
|
3376
3418
|
__typename?: 'PropertyMapItem';
|
|
3377
3419
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3400,6 +3442,10 @@ type PropertyMapsResponse = PagePaginationInterface & {
|
|
|
3400
3442
|
total?: Maybe<Scalars['Int']['output']>;
|
|
3401
3443
|
totalPages?: Maybe<Scalars['Int']['output']>;
|
|
3402
3444
|
};
|
|
3445
|
+
type PropertyResponse = {
|
|
3446
|
+
__typename?: 'PropertyResponse';
|
|
3447
|
+
property: IndustrialPropertyItem;
|
|
3448
|
+
};
|
|
3403
3449
|
type PropertyVisualizationFilter = {
|
|
3404
3450
|
deepFilter?: InputMaybe<Scalars['Int']['input']>;
|
|
3405
3451
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3412,7 +3458,6 @@ type PropertyVisualizationItem = {
|
|
|
3412
3458
|
__typename?: 'PropertyVisualizationItem';
|
|
3413
3459
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
3414
3460
|
id: Scalars['String']['output'];
|
|
3415
|
-
industrialPropertyBranchId?: Maybe<Scalars['String']['output']>;
|
|
3416
3461
|
industrialPropertyId?: Maybe<Scalars['String']['output']>;
|
|
3417
3462
|
name: Scalars['String']['output'];
|
|
3418
3463
|
polygon?: Maybe<Array<PolygonCoordinate>>;
|
|
@@ -3489,6 +3534,7 @@ type Query = {
|
|
|
3489
3534
|
project: ProjectResponse;
|
|
3490
3535
|
projects: SearchProjectsResponse;
|
|
3491
3536
|
propertiesVisualizations: PropertiesVisualizationResponse;
|
|
3537
|
+
property: PropertyResponse;
|
|
3492
3538
|
propertyMaps: PropertyMapsResponse;
|
|
3493
3539
|
provinces: ProvincesResponse;
|
|
3494
3540
|
tickets?: Maybe<FilterResponse>;
|
|
@@ -3619,6 +3665,9 @@ type QueryprojectsArgs = {
|
|
|
3619
3665
|
type QuerypropertiesVisualizationsArgs = {
|
|
3620
3666
|
filter: PropertyVisualizationFilter;
|
|
3621
3667
|
};
|
|
3668
|
+
type QuerypropertyArgs = {
|
|
3669
|
+
filter: PropertyFilter;
|
|
3670
|
+
};
|
|
3622
3671
|
type QuerypropertyMapsArgs = {
|
|
3623
3672
|
filter: PropertyMapsFilter;
|
|
3624
3673
|
};
|
|
@@ -3657,6 +3706,13 @@ type RegisterInvestorRepresentativeResponse = {
|
|
|
3657
3706
|
message?: Maybe<Scalars['String']['output']>;
|
|
3658
3707
|
user?: Maybe<InvestorRepresentativeResponse>;
|
|
3659
3708
|
};
|
|
3709
|
+
type RejectManageIndustrialPropertyInput = {
|
|
3710
|
+
industrialPropertyId: Scalars['String']['input'];
|
|
3711
|
+
};
|
|
3712
|
+
type RejectManageIndustrialPropertyResponse = {
|
|
3713
|
+
__typename?: 'RejectManageIndustrialPropertyResponse';
|
|
3714
|
+
message: Scalars['String']['output'];
|
|
3715
|
+
};
|
|
3660
3716
|
type RejectTicket = {
|
|
3661
3717
|
id: Scalars['String']['input'];
|
|
3662
3718
|
rejectReason: Scalars['String']['input'];
|
|
@@ -3685,6 +3741,14 @@ type RemoveMemberChatGroupResponse = {
|
|
|
3685
3741
|
__typename?: 'RemoveMemberChatGroupResponse';
|
|
3686
3742
|
message: Scalars['String']['output'];
|
|
3687
3743
|
};
|
|
3744
|
+
type RequestBrokerForManageIndustrialPropertyInput = {
|
|
3745
|
+
brokerId: Scalars['String']['input'];
|
|
3746
|
+
industrialPropertyId: Scalars['String']['input'];
|
|
3747
|
+
};
|
|
3748
|
+
type RequestBrokerForManageIndustrialPropertyResponse = {
|
|
3749
|
+
__typename?: 'RequestBrokerForManageIndustrialPropertyResponse';
|
|
3750
|
+
message: Scalars['String']['output'];
|
|
3751
|
+
};
|
|
3688
3752
|
type RequestCreateAccountClientInput = {
|
|
3689
3753
|
fullname: Scalars['String']['input'];
|
|
3690
3754
|
phoneNumber: Scalars['String']['input'];
|
|
@@ -3773,6 +3837,7 @@ type SearchProjectResponse = {
|
|
|
3773
3837
|
address?: Maybe<Scalars['String']['output']>;
|
|
3774
3838
|
addressDetail?: Maybe<Scalars['String']['output']>;
|
|
3775
3839
|
area?: Maybe<Scalars['Float']['output']>;
|
|
3840
|
+
areaUnit?: Maybe<Scalars['String']['output']>;
|
|
3776
3841
|
authorizationEndtime?: Maybe<Scalars['DateTime']['output']>;
|
|
3777
3842
|
authorizationStarttime?: Maybe<Scalars['DateTime']['output']>;
|
|
3778
3843
|
constructionDensity?: Maybe<Scalars['Float']['output']>;
|
|
@@ -3780,6 +3845,8 @@ type SearchProjectResponse = {
|
|
|
3780
3845
|
description?: Maybe<Scalars['String']['output']>;
|
|
3781
3846
|
endYear?: Maybe<Scalars['Int']['output']>;
|
|
3782
3847
|
id: Scalars['String']['output'];
|
|
3848
|
+
identityId?: Maybe<Scalars['String']['output']>;
|
|
3849
|
+
investorName?: Maybe<Scalars['String']['output']>;
|
|
3783
3850
|
isAuthorizationForIvt: Scalars['Boolean']['output'];
|
|
3784
3851
|
landCurrentStatus?: Maybe<LandCurrentStatus>;
|
|
3785
3852
|
landType?: Maybe<LandType>;
|
|
@@ -4089,20 +4156,20 @@ type UpdateIndustrialPropertyInput = {
|
|
|
4089
4156
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
4090
4157
|
notes?: InputMaybe<Scalars['JSON']['input']>;
|
|
4091
4158
|
numberOfFloor?: InputMaybe<Scalars['Int']['input']>;
|
|
4159
|
+
operationStatus?: InputMaybe<PropertyOperationStatus>;
|
|
4092
4160
|
polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
|
|
4093
4161
|
price?: InputMaybe<Scalars['String']['input']>;
|
|
4094
4162
|
propertyLegalStatus?: InputMaybe<PropertyLegalStatus>;
|
|
4095
4163
|
provinceId?: InputMaybe<Scalars['String']['input']>;
|
|
4096
4164
|
seoMetadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
4097
|
-
sourceBranchId?: InputMaybe<Scalars['String']['input']>;
|
|
4098
4165
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
4099
4166
|
type: PropertyType;
|
|
4100
4167
|
wardId?: InputMaybe<Scalars['String']['input']>;
|
|
4101
4168
|
};
|
|
4102
4169
|
type UpdateIndustrialPropertyResponse = {
|
|
4103
4170
|
__typename?: 'UpdateIndustrialPropertyResponse';
|
|
4104
|
-
branchId?: Maybe<Scalars['String']['output']>;
|
|
4105
4171
|
message: Scalars['String']['output'];
|
|
4172
|
+
propertyId?: Maybe<Scalars['String']['output']>;
|
|
4106
4173
|
};
|
|
4107
4174
|
type UpdateLandMapInput = {
|
|
4108
4175
|
floorNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4170,6 +4237,7 @@ type UpdateProjectInput = {
|
|
|
4170
4237
|
addressDetail?: InputMaybe<Scalars['String']['input']>;
|
|
4171
4238
|
airportAccessDistance?: InputMaybe<Scalars['Float']['input']>;
|
|
4172
4239
|
area?: InputMaybe<Scalars['Float']['input']>;
|
|
4240
|
+
areaUnit?: InputMaybe<Scalars['String']['input']>;
|
|
4173
4241
|
backupPower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4174
4242
|
cleanWaterCapacity?: InputMaybe<Scalars['Float']['input']>;
|
|
4175
4243
|
cleanWaterSource?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4185,6 +4253,7 @@ type UpdateProjectInput = {
|
|
|
4185
4253
|
highwayAccessDistance?: InputMaybe<Scalars['Float']['input']>;
|
|
4186
4254
|
humanResources?: InputMaybe<Scalars['String']['input']>;
|
|
4187
4255
|
id: Scalars['String']['input'];
|
|
4256
|
+
identityId?: InputMaybe<Scalars['String']['input']>;
|
|
4188
4257
|
importExportTaxIncentives?: InputMaybe<Scalars['String']['input']>;
|
|
4189
4258
|
infrastructureOtherDescription?: InputMaybe<Scalars['String']['input']>;
|
|
4190
4259
|
internalRoadWidth?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -4192,6 +4261,7 @@ type UpdateProjectInput = {
|
|
|
4192
4261
|
investmentConditions?: InputMaybe<Scalars['String']['input']>;
|
|
4193
4262
|
investmentIncentives?: InputMaybe<Scalars['String']['input']>;
|
|
4194
4263
|
investmentOrientationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
4264
|
+
investorName?: InputMaybe<Scalars['String']['input']>;
|
|
4195
4265
|
laborAgeDistribution?: InputMaybe<Scalars['JSON']['input']>;
|
|
4196
4266
|
laborAverageIncome?: InputMaybe<Scalars['Float']['input']>;
|
|
4197
4267
|
laborEducationLevel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4214,6 +4284,7 @@ type UpdateProjectInput = {
|
|
|
4214
4284
|
powerCapacity?: InputMaybe<Scalars['Float']['input']>;
|
|
4215
4285
|
powerSource?: InputMaybe<Scalars['String']['input']>;
|
|
4216
4286
|
projectClassification?: InputMaybe<ProjectClassification>;
|
|
4287
|
+
projectCurrentStatus?: InputMaybe<ProjectCurrentStatus>;
|
|
4217
4288
|
projectType?: InputMaybe<ProjectType>;
|
|
4218
4289
|
provinceId?: InputMaybe<Scalars['String']['input']>;
|
|
4219
4290
|
railwayAccessDistance?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -4254,10 +4325,9 @@ type UpdatePropertyMapResponse = {
|
|
|
4254
4325
|
message: Scalars['String']['output'];
|
|
4255
4326
|
};
|
|
4256
4327
|
type UpdatePropertyVisualizationInput = {
|
|
4328
|
+
id: Scalars['String']['input'];
|
|
4257
4329
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4258
4330
|
polygon?: InputMaybe<Array<PolygonCoordinateInput>>;
|
|
4259
|
-
propertyBranchId?: InputMaybe<Scalars['String']['input']>;
|
|
4260
|
-
propertyId?: InputMaybe<Scalars['String']['input']>;
|
|
4261
4331
|
};
|
|
4262
4332
|
type UpdatePropertyVisualizationResponse = {
|
|
4263
4333
|
__typename?: 'UpdatePropertyVisualizationResponse';
|
|
@@ -4447,7 +4517,7 @@ type ResolverTypeWrapper<T> = Promise<T> | T;
|
|
|
4447
4517
|
type ResolverWithResolve<TResult, TParent, TContext, TArgs> = {
|
|
4448
4518
|
resolve: ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
4449
4519
|
};
|
|
4450
|
-
type Resolver<TResult, TParent = Record<PropertyKey, never>, TContext = Record<PropertyKey, never>, TArgs = Record<PropertyKey, never>> = ResolverFn<TResult, TParent, TContext, TArgs
|
|
4520
|
+
type Resolver<TResult, TParent = Record<PropertyKey, never>, TContext = Record<PropertyKey, never>, TArgs = Record<PropertyKey, never>> = ResolverFn<TResult, TParent, TContext, TArgs>;
|
|
4451
4521
|
type ResolverFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => Promise<TResult> | TResult;
|
|
4452
4522
|
type SubscriptionSubscribeFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => AsyncIterable<TResult> | Promise<AsyncIterable<TResult>>;
|
|
4453
4523
|
type SubscriptionResolveFn<TResult, TParent, TContext, TArgs> = (parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
@@ -4525,6 +4595,8 @@ type ResolversInterfaceTypes<_RefType extends Record<string, unknown>> = {
|
|
|
4525
4595
|
});
|
|
4526
4596
|
};
|
|
4527
4597
|
type ResolversTypes = {
|
|
4598
|
+
AcceptManageIndustrialPropertyInput: AcceptManageIndustrialPropertyInput;
|
|
4599
|
+
AcceptManageIndustrialPropertyResponse: ResolverTypeWrapper<AcceptManageIndustrialPropertyResponse>;
|
|
4528
4600
|
AcknowledgeAppointmentInput: AcknowledgeAppointmentInput;
|
|
4529
4601
|
AcknowledgeAppointmentResponse: ResolverTypeWrapper<AcknowledgeAppointmentResponse>;
|
|
4530
4602
|
ActivateInvestorFromRegisterLinkInput: ActivateInvestorFromRegisterLinkInput;
|
|
@@ -4564,6 +4636,9 @@ type ResolversTypes = {
|
|
|
4564
4636
|
AssignOrderRequestToBrokerResponse: ResolverTypeWrapper<AssignOrderRequestToBrokerResponse>;
|
|
4565
4637
|
AssignPropertiesVisualizationToBrokerInput: AssignPropertiesVisualizationToBrokerInput;
|
|
4566
4638
|
AssignPropertiesVisualizationToBrokerResponse: ResolverTypeWrapper<AssignPropertiesVisualizationToBrokerResponse>;
|
|
4639
|
+
AssignPropertyToBrokerInput: AssignPropertyToBrokerInput;
|
|
4640
|
+
AssignPropertyToBrokerResponse: ResolverTypeWrapper<AssignPropertyToBrokerResponse>;
|
|
4641
|
+
AssignedBrokerItem: ResolverTypeWrapper<AssignedBrokerItem>;
|
|
4567
4642
|
BigInt: ResolverTypeWrapper<Scalars['BigInt']['output']>;
|
|
4568
4643
|
BlacklistResponse: ResolverTypeWrapper<BlacklistResponse>;
|
|
4569
4644
|
BusinessInformationInput: BusinessInformationInput;
|
|
@@ -4725,12 +4800,11 @@ type ResolversTypes = {
|
|
|
4725
4800
|
data: Array<Maybe<ResolversTypes['IndustrialPropertyItem']>>;
|
|
4726
4801
|
}>;
|
|
4727
4802
|
IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
|
|
4728
|
-
IndustrialPropertyDetailItem: ResolverTypeWrapper<
|
|
4803
|
+
IndustrialPropertyDetailItem: ResolverTypeWrapper<IndustrialPropertyDetailItem>;
|
|
4804
|
+
IndustrialPropertyItem: ResolverTypeWrapper<Omit<IndustrialPropertyItem, 'children' | 'operationStatus'> & {
|
|
4805
|
+
children?: Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>;
|
|
4729
4806
|
operationStatus?: Maybe<ResolversTypes['PropertyOperationStatus']>;
|
|
4730
4807
|
}>;
|
|
4731
|
-
IndustrialPropertyItem: ResolverTypeWrapper<Omit<IndustrialPropertyItem, 'detail'> & {
|
|
4732
|
-
detail?: Maybe<ResolversTypes['IndustrialPropertyDetailItem']>;
|
|
4733
|
-
}>;
|
|
4734
4808
|
IndustrialPropertySortField: ResolverTypeWrapper<'CREATED_AT' | 'TITLE' | 'PRICE' | 'AREA'>;
|
|
4735
4809
|
InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
|
|
4736
4810
|
InvestorRepresentativeResponse: ResolverTypeWrapper<InvestorRepresentativeResponse>;
|
|
@@ -4762,6 +4836,7 @@ type ResolversTypes = {
|
|
|
4762
4836
|
NotificationScheduleResponse: ResolverTypeWrapper<NotificationScheduleResponse>;
|
|
4763
4837
|
NotificationSchedulesFilter: NotificationSchedulesFilter;
|
|
4764
4838
|
NotificationSchedulesResponse: ResolverTypeWrapper<NotificationSchedulesResponse>;
|
|
4839
|
+
NotificationType: ResolverTypeWrapper<'EMAIL' | 'SMS' | 'PUSH'>;
|
|
4765
4840
|
NotificationsFilter: NotificationsFilter;
|
|
4766
4841
|
NotificationsResponse: ResolverTypeWrapper<NotificationsResponse>;
|
|
4767
4842
|
OrderByInput: OrderByInput;
|
|
@@ -4827,13 +4902,18 @@ type ResolversTypes = {
|
|
|
4827
4902
|
data: Array<ResolversTypes['PropertyVisualizationItem']>;
|
|
4828
4903
|
}>;
|
|
4829
4904
|
PropertyApprovalStatus: ResolverTypeWrapper<'PENDING' | 'APPROVED' | 'REJECTED' | 'ARCHIVED'>;
|
|
4905
|
+
PropertyAuthorizationType: ResolverTypeWrapper<'FOR_RENT_A_PART' | 'FOR_SALE_A_PART' | 'FOR_RENT_ALL' | 'FOR_SALE_ALL'>;
|
|
4906
|
+
PropertyFilter: PropertyFilter;
|
|
4830
4907
|
PropertyLandCurrentStatus: ResolverTypeWrapper<'PLANNED' | 'DESIGNING' | 'UNDER_CONSTRUCTION' | 'TOPPING_OUT' | 'NEAR_COMPLETION' | 'COMPLETED' | 'READY_FOR_HANDOVER' | 'HANDED_OVER' | 'ON_HOLD' | 'CANCELLED'>;
|
|
4831
4908
|
PropertyLegalStatus: ResolverTypeWrapper<'MORE_THAN_FIFTY_YEARS_ANNUAL_PAYMENT' | 'MORE_THAN_FIFTY_YEARS_ONE_TIME_PAYMENT' | 'FIFTY_YEARS_ANNUAL_PAYMENT' | 'FIFTY_YEARS_ONE_TIME_PAYMENT' | 'FORTY_YEARS_ANNUAL_PAYMENT' | 'FORTY_YEARS_ONE_TIME_PAYMENT' | 'THIRTY_YEARS_ONE_TIME_PAYMENT' | 'THIRTY_YEARS_ANNUAL_PAYMENT' | 'TWENTY_YEARS_ANNUAL_PAYMENT' | 'TWENTY_YEARS_ONE_TIME_PAYMENT' | 'TEN_YEARS_ANNUAL_PAYMENT' | 'TEN_YEARS_ONE_TIME_PAYMENT' | 'LESS_THAN_TEN_YEARS_ANNUAL_PAYMENT' | 'LESS_THAN_TEN_YEARS_ONE_TIME_PAYMENT'>;
|
|
4832
4909
|
PropertyMapItem: ResolverTypeWrapper<PropertyMapItem>;
|
|
4833
4910
|
PropertyMapsFilter: PropertyMapsFilter;
|
|
4834
4911
|
PropertyMapsResponse: ResolverTypeWrapper<PropertyMapsResponse>;
|
|
4835
4912
|
PropertyOperationStatus: ResolverTypeWrapper<'UNDETERMINED' | 'COMING_SOON' | 'FOR_SALE_RENT' | 'ACTIVE' | 'DEACTIVATED'>;
|
|
4836
|
-
|
|
4913
|
+
PropertyResponse: ResolverTypeWrapper<Omit<PropertyResponse, 'property'> & {
|
|
4914
|
+
property: ResolversTypes['IndustrialPropertyItem'];
|
|
4915
|
+
}>;
|
|
4916
|
+
PropertyType: ResolverTypeWrapper<'INDUSTRIAL_ZONE' | 'BUILDING' | 'FLOOR' | 'ROOM' | 'LAND_LOT' | 'FACTORY' | 'WAREHOUSE' | 'OFFICE' | 'HOUSING' | 'APARTMENT'>;
|
|
4837
4917
|
PropertyVisualizationFilter: PropertyVisualizationFilter;
|
|
4838
4918
|
PropertyVisualizationItem: ResolverTypeWrapper<Omit<PropertyVisualizationItem, 'propertyItem'> & {
|
|
4839
4919
|
propertyItem?: Maybe<ResolversTypes['IndustrialPropertyItem']>;
|
|
@@ -4846,6 +4926,8 @@ type ResolversTypes = {
|
|
|
4846
4926
|
ReadChannelNotificationsInput: ReadChannelNotificationsInput;
|
|
4847
4927
|
RegisterInvestorRepresentativeInput: RegisterInvestorRepresentativeInput;
|
|
4848
4928
|
RegisterInvestorRepresentativeResponse: ResolverTypeWrapper<RegisterInvestorRepresentativeResponse>;
|
|
4929
|
+
RejectManageIndustrialPropertyInput: RejectManageIndustrialPropertyInput;
|
|
4930
|
+
RejectManageIndustrialPropertyResponse: ResolverTypeWrapper<RejectManageIndustrialPropertyResponse>;
|
|
4849
4931
|
RejectTicket: RejectTicket;
|
|
4850
4932
|
RejectTicketsInput: RejectTicketsInput;
|
|
4851
4933
|
RejectTicketsResponse: ResolverTypeWrapper<RejectTicketsResponse>;
|
|
@@ -4853,6 +4935,8 @@ type ResolversTypes = {
|
|
|
4853
4935
|
RemoveDealStepParticipantsResponse: ResolverTypeWrapper<RemoveDealStepParticipantsResponse>;
|
|
4854
4936
|
RemoveMemberChatGroupInput: RemoveMemberChatGroupInput;
|
|
4855
4937
|
RemoveMemberChatGroupResponse: ResolverTypeWrapper<RemoveMemberChatGroupResponse>;
|
|
4938
|
+
RequestBrokerForManageIndustrialPropertyInput: RequestBrokerForManageIndustrialPropertyInput;
|
|
4939
|
+
RequestBrokerForManageIndustrialPropertyResponse: ResolverTypeWrapper<RequestBrokerForManageIndustrialPropertyResponse>;
|
|
4856
4940
|
RequestCreateAccountClientInput: RequestCreateAccountClientInput;
|
|
4857
4941
|
RequestCreateAccountClientResponse: ResolverTypeWrapper<RequestCreateAccountClientResponse>;
|
|
4858
4942
|
RequestCreateAccountInput: RequestCreateAccountInput;
|
|
@@ -4893,7 +4977,7 @@ type ResolversTypes = {
|
|
|
4893
4977
|
SignInInput: SignInInput;
|
|
4894
4978
|
SignInResponse: ResolverTypeWrapper<SignInResponse>;
|
|
4895
4979
|
SignOutResponse: ResolverTypeWrapper<SignOutResponse>;
|
|
4896
|
-
SortDirection: ResolverTypeWrapper<'
|
|
4980
|
+
SortDirection: ResolverTypeWrapper<'ASC' | 'DESC'>;
|
|
4897
4981
|
Subscription: ResolverTypeWrapper<Record<PropertyKey, never>>;
|
|
4898
4982
|
SubscriptionChatMessagesInput: SubscriptionChatMessagesInput;
|
|
4899
4983
|
Ticket: ResolverTypeWrapper<Ticket>;
|
|
@@ -4976,6 +5060,8 @@ type ResolversTypes = {
|
|
|
4976
5060
|
Int: ResolverTypeWrapper<Scalars['Int']['output']>;
|
|
4977
5061
|
};
|
|
4978
5062
|
type ResolversParentTypes = {
|
|
5063
|
+
AcceptManageIndustrialPropertyInput: AcceptManageIndustrialPropertyInput;
|
|
5064
|
+
AcceptManageIndustrialPropertyResponse: AcceptManageIndustrialPropertyResponse;
|
|
4979
5065
|
AcknowledgeAppointmentInput: AcknowledgeAppointmentInput;
|
|
4980
5066
|
AcknowledgeAppointmentResponse: AcknowledgeAppointmentResponse;
|
|
4981
5067
|
ActivateInvestorFromRegisterLinkInput: ActivateInvestorFromRegisterLinkInput;
|
|
@@ -5015,6 +5101,9 @@ type ResolversParentTypes = {
|
|
|
5015
5101
|
AssignOrderRequestToBrokerResponse: AssignOrderRequestToBrokerResponse;
|
|
5016
5102
|
AssignPropertiesVisualizationToBrokerInput: AssignPropertiesVisualizationToBrokerInput;
|
|
5017
5103
|
AssignPropertiesVisualizationToBrokerResponse: AssignPropertiesVisualizationToBrokerResponse;
|
|
5104
|
+
AssignPropertyToBrokerInput: AssignPropertyToBrokerInput;
|
|
5105
|
+
AssignPropertyToBrokerResponse: AssignPropertyToBrokerResponse;
|
|
5106
|
+
AssignedBrokerItem: AssignedBrokerItem;
|
|
5018
5107
|
BigInt: Scalars['BigInt']['output'];
|
|
5019
5108
|
BlacklistResponse: BlacklistResponse;
|
|
5020
5109
|
BusinessInformationInput: BusinessInformationInput;
|
|
@@ -5173,8 +5262,8 @@ type ResolversParentTypes = {
|
|
|
5173
5262
|
};
|
|
5174
5263
|
IndustrialPropertyDetailInput: IndustrialPropertyDetailInput;
|
|
5175
5264
|
IndustrialPropertyDetailItem: IndustrialPropertyDetailItem;
|
|
5176
|
-
IndustrialPropertyItem: Omit<IndustrialPropertyItem, '
|
|
5177
|
-
|
|
5265
|
+
IndustrialPropertyItem: Omit<IndustrialPropertyItem, 'children'> & {
|
|
5266
|
+
children?: Maybe<Array<ResolversParentTypes['IndustrialPropertyItem']>>;
|
|
5178
5267
|
};
|
|
5179
5268
|
InvestorApproveConsignmentRequestInput: InvestorApproveConsignmentRequestInput;
|
|
5180
5269
|
InvestorRepresentativeResponse: InvestorRepresentativeResponse;
|
|
@@ -5247,9 +5336,13 @@ type ResolversParentTypes = {
|
|
|
5247
5336
|
PropertiesVisualizationResponse: Omit<PropertiesVisualizationResponse, 'data'> & {
|
|
5248
5337
|
data: Array<ResolversParentTypes['PropertyVisualizationItem']>;
|
|
5249
5338
|
};
|
|
5339
|
+
PropertyFilter: PropertyFilter;
|
|
5250
5340
|
PropertyMapItem: PropertyMapItem;
|
|
5251
5341
|
PropertyMapsFilter: PropertyMapsFilter;
|
|
5252
5342
|
PropertyMapsResponse: PropertyMapsResponse;
|
|
5343
|
+
PropertyResponse: Omit<PropertyResponse, 'property'> & {
|
|
5344
|
+
property: ResolversParentTypes['IndustrialPropertyItem'];
|
|
5345
|
+
};
|
|
5253
5346
|
PropertyVisualizationFilter: PropertyVisualizationFilter;
|
|
5254
5347
|
PropertyVisualizationItem: Omit<PropertyVisualizationItem, 'propertyItem'> & {
|
|
5255
5348
|
propertyItem?: Maybe<ResolversParentTypes['IndustrialPropertyItem']>;
|
|
@@ -5262,6 +5355,8 @@ type ResolversParentTypes = {
|
|
|
5262
5355
|
ReadChannelNotificationsInput: ReadChannelNotificationsInput;
|
|
5263
5356
|
RegisterInvestorRepresentativeInput: RegisterInvestorRepresentativeInput;
|
|
5264
5357
|
RegisterInvestorRepresentativeResponse: RegisterInvestorRepresentativeResponse;
|
|
5358
|
+
RejectManageIndustrialPropertyInput: RejectManageIndustrialPropertyInput;
|
|
5359
|
+
RejectManageIndustrialPropertyResponse: RejectManageIndustrialPropertyResponse;
|
|
5265
5360
|
RejectTicket: RejectTicket;
|
|
5266
5361
|
RejectTicketsInput: RejectTicketsInput;
|
|
5267
5362
|
RejectTicketsResponse: RejectTicketsResponse;
|
|
@@ -5269,6 +5364,8 @@ type ResolversParentTypes = {
|
|
|
5269
5364
|
RemoveDealStepParticipantsResponse: RemoveDealStepParticipantsResponse;
|
|
5270
5365
|
RemoveMemberChatGroupInput: RemoveMemberChatGroupInput;
|
|
5271
5366
|
RemoveMemberChatGroupResponse: RemoveMemberChatGroupResponse;
|
|
5367
|
+
RequestBrokerForManageIndustrialPropertyInput: RequestBrokerForManageIndustrialPropertyInput;
|
|
5368
|
+
RequestBrokerForManageIndustrialPropertyResponse: RequestBrokerForManageIndustrialPropertyResponse;
|
|
5272
5369
|
RequestCreateAccountClientInput: RequestCreateAccountClientInput;
|
|
5273
5370
|
RequestCreateAccountClientResponse: RequestCreateAccountClientResponse;
|
|
5274
5371
|
RequestCreateAccountInput: RequestCreateAccountInput;
|
|
@@ -5394,6 +5491,9 @@ type rateLimitDirectiveArgs = {
|
|
|
5394
5491
|
window?: Maybe<Scalars['String']['input']>;
|
|
5395
5492
|
};
|
|
5396
5493
|
type rateLimitDirectiveResolver<Result, Parent, ContextType = any, Args = rateLimitDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
5494
|
+
type AcceptManageIndustrialPropertyResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['AcceptManageIndustrialPropertyResponse'] = ResolversParentTypes['AcceptManageIndustrialPropertyResponse']> = {
|
|
5495
|
+
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5496
|
+
};
|
|
5397
5497
|
type AcknowledgeAppointmentResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['AcknowledgeAppointmentResponse'] = ResolversParentTypes['AcknowledgeAppointmentResponse']> = {
|
|
5398
5498
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5399
5499
|
};
|
|
@@ -5521,6 +5621,17 @@ type AssignPropertiesVisualizationToBrokerResponseResolvers<ContextType = any, P
|
|
|
5521
5621
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5522
5622
|
success?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
|
|
5523
5623
|
};
|
|
5624
|
+
type AssignPropertyToBrokerResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['AssignPropertyToBrokerResponse'] = ResolversParentTypes['AssignPropertyToBrokerResponse']> = {
|
|
5625
|
+
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5626
|
+
success?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
|
|
5627
|
+
};
|
|
5628
|
+
type AssignedBrokerItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['AssignedBrokerItem'] = ResolversParentTypes['AssignedBrokerItem']> = {
|
|
5629
|
+
avatar?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5630
|
+
brokerId?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5631
|
+
brokerName?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5632
|
+
description?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5633
|
+
phoneNumber?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5634
|
+
};
|
|
5524
5635
|
interface BigIntScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['BigInt'], any> {
|
|
5525
5636
|
name: 'BigInt';
|
|
5526
5637
|
}
|
|
@@ -5737,10 +5848,9 @@ type CreateForSaleResponseResolvers<ContextType = any, ParentType extends Resolv
|
|
|
5737
5848
|
forSaleId?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5738
5849
|
};
|
|
5739
5850
|
type CreateIndustrialPropertyResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['CreateIndustrialPropertyResponse'] = ResolversParentTypes['CreateIndustrialPropertyResponse']> = {
|
|
5740
|
-
landLotId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5741
5851
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5742
|
-
propertyBranchId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5743
5852
|
propertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5853
|
+
propertyVisualizationId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5744
5854
|
};
|
|
5745
5855
|
type CreateLandMapResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['CreateLandMapResponse'] = ResolversParentTypes['CreateLandMapResponse']> = {
|
|
5746
5856
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
@@ -5975,52 +6085,37 @@ type IndustrialPropertiesResponseResolvers<ContextType = any, ParentType extends
|
|
|
5975
6085
|
type IndustrialPropertyDetailItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['IndustrialPropertyDetailItem'] = ResolversParentTypes['IndustrialPropertyDetailItem']> = {
|
|
5976
6086
|
buildingDensityPercent?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5977
6087
|
completionRate?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5978
|
-
constructionArea?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5979
|
-
constructionEndYear?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
5980
|
-
constructionHeight?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5981
|
-
constructionLayoutType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5982
|
-
constructionLength?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5983
|
-
constructionName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5984
6088
|
constructionQuality?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5985
|
-
constructionStartYear?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
5986
|
-
constructionStatus?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5987
|
-
constructionType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5988
|
-
constructionWidth?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5989
6089
|
floorType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
landCurrentStatus?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
5993
|
-
landDepth?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5994
|
-
landLength?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5995
|
-
landPosition?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6090
|
+
height?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6091
|
+
length?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5996
6092
|
loadBearingFloor?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
5997
|
-
numberOfConstructions?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
5998
|
-
numberOfProperties?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
5999
|
-
operationStatus?: Resolver<Maybe<ResolversTypes['PropertyOperationStatus']>, ParentType, ContextType>;
|
|
6000
6093
|
orientation?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6001
|
-
roadAccessWidth?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6002
6094
|
specialAttributes?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
6003
6095
|
structureType?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6004
|
-
|
|
6096
|
+
width?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6005
6097
|
};
|
|
6006
6098
|
type IndustrialPropertyItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['IndustrialPropertyItem'] = ResolversParentTypes['IndustrialPropertyItem']> = {
|
|
6007
6099
|
area?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6100
|
+
assignedBroker?: Resolver<Maybe<ResolversTypes['AssignedBrokerItem']>, ParentType, ContextType>;
|
|
6008
6101
|
attachmentsIds?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
|
|
6102
|
+
children?: Resolver<Maybe<Array<ResolversTypes['IndustrialPropertyItem']>>, ParentType, ContextType>;
|
|
6009
6103
|
description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6010
6104
|
detail?: Resolver<Maybe<ResolversTypes['IndustrialPropertyDetailItem']>, ParentType, ContextType>;
|
|
6011
6105
|
detailedAddress?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6012
6106
|
floorNumber?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
6013
|
-
id?: Resolver<
|
|
6107
|
+
id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6014
6108
|
imagesIds?: Resolver<Maybe<Array<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
|
|
6015
|
-
industrialPropertyId?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6016
6109
|
landCurrentStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6017
6110
|
latitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6018
6111
|
longitude?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6019
6112
|
metadata?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
6020
6113
|
notes?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
6021
6114
|
numberOfFloor?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
6022
|
-
|
|
6115
|
+
numberOfProperties?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
6116
|
+
operationStatus?: Resolver<Maybe<ResolversTypes['PropertyOperationStatus']>, ParentType, ContextType>;
|
|
6023
6117
|
parentIndustrialPropertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6118
|
+
polygon?: Resolver<Maybe<Array<ResolversTypes['PolygonCoordinate']>>, ParentType, ContextType>;
|
|
6024
6119
|
price?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6025
6120
|
projectId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6026
6121
|
propertyLegalStatus?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -6134,6 +6229,7 @@ type ModelResponseInterfaceResolvers<ContextType = any, ParentType extends Resol
|
|
|
6134
6229
|
__resolveType?: TypeResolveFn<'OrderRequestResponse', ParentType, ContextType>;
|
|
6135
6230
|
};
|
|
6136
6231
|
type MutationResolvers<ContextType = any, ParentType extends ResolversParentTypes['Mutation'] = ResolversParentTypes['Mutation']> = {
|
|
6232
|
+
acceptManageIndustrialProperty?: Resolver<ResolversTypes['AcceptManageIndustrialPropertyResponse'], ParentType, ContextType, RequireFields<MutationacceptManageIndustrialPropertyArgs, 'input'>>;
|
|
6137
6233
|
acknowledgeAppointment?: Resolver<ResolversTypes['AcknowledgeAppointmentResponse'], ParentType, ContextType, RequireFields<MutationacknowledgeAppointmentArgs, 'input'>>;
|
|
6138
6234
|
activateInvestorFromRegisterLink?: Resolver<Maybe<ResolversTypes['ActivateInvestorFromRegisterLinkResponse']>, ParentType, ContextType, RequireFields<MutationactivateInvestorFromRegisterLinkArgs, 'input'>>;
|
|
6139
6235
|
addDealStepParticipants?: Resolver<ResolversTypes['AddDealStepParticipantsResponse'], ParentType, ContextType, RequireFields<MutationaddDealStepParticipantsArgs, 'input'>>;
|
|
@@ -6149,6 +6245,7 @@ type MutationResolvers<ContextType = any, ParentType extends ResolversParentType
|
|
|
6149
6245
|
assignConsignmentRequestToBroker?: Resolver<ResolversTypes['AssignConsignmentRequestToBrokerResponse'], ParentType, ContextType, RequireFields<MutationassignConsignmentRequestToBrokerArgs, 'input'>>;
|
|
6150
6246
|
assignOrderRequestToBroker?: Resolver<ResolversTypes['AssignOrderRequestToBrokerResponse'], ParentType, ContextType, RequireFields<MutationassignOrderRequestToBrokerArgs, 'input'>>;
|
|
6151
6247
|
assignPropertiesVisualizationToBroker?: Resolver<ResolversTypes['AssignPropertiesVisualizationToBrokerResponse'], ParentType, ContextType, RequireFields<MutationassignPropertiesVisualizationToBrokerArgs, 'input'>>;
|
|
6248
|
+
assignPropertyToBroker?: Resolver<ResolversTypes['AssignPropertyToBrokerResponse'], ParentType, ContextType, RequireFields<MutationassignPropertyToBrokerArgs, 'input'>>;
|
|
6152
6249
|
cancelAppointment?: Resolver<ResolversTypes['CancelAppointmentResponse'], ParentType, ContextType, RequireFields<MutationcancelAppointmentArgs, 'input'>>;
|
|
6153
6250
|
cancelScheduledNotification?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType, RequireFields<MutationcancelScheduledNotificationArgs, 'id'>>;
|
|
6154
6251
|
changeAvatar?: Resolver<Maybe<ResolversTypes['UpdateAvatarResponse']>, ParentType, ContextType, RequireFields<MutationchangeAvatarArgs, 'input'>>;
|
|
@@ -6216,11 +6313,13 @@ type MutationResolvers<ContextType = any, ParentType extends ResolversParentType
|
|
|
6216
6313
|
readAllNotifications?: Resolver<ResolversTypes['ReadAllNotificationsResponse'], ParentType, ContextType>;
|
|
6217
6314
|
readChannelNotifications?: Resolver<ResolversTypes['ReadAllNotificationsResponse'], ParentType, ContextType, RequireFields<MutationreadChannelNotificationsArgs, 'input'>>;
|
|
6218
6315
|
registerInvestorRepresentative?: Resolver<ResolversTypes['RegisterInvestorRepresentativeResponse'], ParentType, ContextType, RequireFields<MutationregisterInvestorRepresentativeArgs, 'input'>>;
|
|
6316
|
+
rejectManageIndustrialProperty?: Resolver<ResolversTypes['RejectManageIndustrialPropertyResponse'], ParentType, ContextType, RequireFields<MutationrejectManageIndustrialPropertyArgs, 'input'>>;
|
|
6219
6317
|
rejectTickets?: Resolver<Maybe<ResolversTypes['RejectTicketsResponse']>, ParentType, ContextType, RequireFields<MutationrejectTicketsArgs, 'input'>>;
|
|
6220
6318
|
removeDealStepParticipants?: Resolver<ResolversTypes['RemoveDealStepParticipantsResponse'], ParentType, ContextType, RequireFields<MutationremoveDealStepParticipantsArgs, 'input'>>;
|
|
6221
6319
|
removeMemberChatGroup?: Resolver<ResolversTypes['RemoveMemberChatGroupResponse'], ParentType, ContextType, RequireFields<MutationremoveMemberChatGroupArgs, 'input'>>;
|
|
6222
6320
|
removeUtilityFromProject?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType, RequireFields<MutationremoveUtilityFromProjectArgs, 'projectId' | 'utilityId'>>;
|
|
6223
6321
|
removeUtilityFromPropertyBranch?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType, RequireFields<MutationremoveUtilityFromPropertyBranchArgs, 'propertyBranchId' | 'utilityId'>>;
|
|
6322
|
+
requestBrokerForManageIndustrialProperty?: Resolver<ResolversTypes['RequestBrokerForManageIndustrialPropertyResponse'], ParentType, ContextType, RequireFields<MutationrequestBrokerForManageIndustrialPropertyArgs, 'input'>>;
|
|
6224
6323
|
requestCreateAccount?: Resolver<Maybe<ResolversTypes['RequestCreateAccountResponse']>, ParentType, ContextType, RequireFields<MutationrequestCreateAccountArgs, 'input'>>;
|
|
6225
6324
|
requestCreateAccountClient?: Resolver<Maybe<ResolversTypes['RequestCreateAccountClientResponse']>, ParentType, ContextType, RequireFields<MutationrequestCreateAccountClientArgs, 'input'>>;
|
|
6226
6325
|
requestUpdateEmail?: Resolver<Maybe<ResolversTypes['RequestUpdateEmailResponse']>, ParentType, ContextType, RequireFields<MutationrequestUpdateEmailArgs, 'input'>>;
|
|
@@ -6342,6 +6441,11 @@ type NotificationSchedulesResponseResolvers<ContextType = any, ParentType extend
|
|
|
6342
6441
|
totalPages?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
|
|
6343
6442
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
6344
6443
|
};
|
|
6444
|
+
type NotificationTypeResolvers = EnumResolverSignature<{
|
|
6445
|
+
EMAIL?: any;
|
|
6446
|
+
PUSH?: any;
|
|
6447
|
+
SMS?: any;
|
|
6448
|
+
}, ResolversTypes['NotificationType']>;
|
|
6345
6449
|
type NotificationsResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['NotificationsResponse'] = ResolversParentTypes['NotificationsResponse']> = {
|
|
6346
6450
|
channels?: Resolver<Array<ResolversTypes['NotificationChannelItemResponse']>, ParentType, ContextType>;
|
|
6347
6451
|
};
|
|
@@ -6382,8 +6486,6 @@ type OtpResponseResolvers<ContextType = any, ParentType extends ResolversParentT
|
|
|
6382
6486
|
};
|
|
6383
6487
|
type OwnerAuthorizeForSystemResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['OwnerAuthorizeForSystemResponse'] = ResolversParentTypes['OwnerAuthorizeForSystemResponse']> = {
|
|
6384
6488
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6385
|
-
projectCount?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
|
|
6386
|
-
propertyCount?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
|
|
6387
6489
|
};
|
|
6388
6490
|
type PagePaginationInterfaceResolvers<ContextType = any, ParentType extends ResolversParentTypes['PagePaginationInterface'] = ResolversParentTypes['PagePaginationInterface']> = {
|
|
6389
6491
|
__resolveType?: TypeResolveFn<'AgreementTemplatesListResponse' | 'AppointmentsListResponse' | 'ChatGroupMembersResponse' | 'ChatGroupsResponse' | 'ChatMessagesResponse' | 'ClientCategoriesResponse' | 'ClientsResponse' | 'ConsignmentRequestsResponse' | 'FilterResponse' | 'ForSalesResponse' | 'IndustrialPropertiesResponse' | 'InvestorRepresentativesResponse' | 'MediasResponse' | 'NotificationSchedulesResponse' | 'OrderRequestsResponse' | 'PaymentInstallmentsResponse' | 'PaymentProcessesResponse' | 'PreDealsResponse' | 'PropertiesVisualizationResponse' | 'PropertyMapsResponse' | 'SearchBlacklistsResponse' | 'SearchDealsResponse' | 'SearchProjectsResponse', ParentType, ContextType>;
|
|
@@ -6526,6 +6628,7 @@ type ProjectResponseResolvers<ContextType = any, ParentType extends ResolversPar
|
|
|
6526
6628
|
addressDetail?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6527
6629
|
airportAccessDistance?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6528
6630
|
area?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6631
|
+
areaUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6529
6632
|
authorizationEndtime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
6530
6633
|
authorizationStarttime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
6531
6634
|
backupPower?: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
@@ -6546,6 +6649,7 @@ type ProjectResponseResolvers<ContextType = any, ParentType extends ResolversPar
|
|
|
6546
6649
|
highwayAccessDistance?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6547
6650
|
humanResources?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6548
6651
|
id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6652
|
+
identityId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6549
6653
|
importExportTaxIncentives?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6550
6654
|
infrastructureOtherDescription?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6551
6655
|
internalRoadWidth?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
@@ -6553,6 +6657,7 @@ type ProjectResponseResolvers<ContextType = any, ParentType extends ResolversPar
|
|
|
6553
6657
|
investmentConditions?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6554
6658
|
investmentIncentives?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6555
6659
|
investmentOrientationDescription?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6660
|
+
investorName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6556
6661
|
isAuthorizationForIvt?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
|
|
6557
6662
|
laborAgeDistribution?: Resolver<Maybe<ResolversTypes['JSON']>, ParentType, ContextType>;
|
|
6558
6663
|
laborAverageIncome?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
@@ -6659,6 +6764,12 @@ type PropertyApprovalStatusResolvers = EnumResolverSignature<{
|
|
|
6659
6764
|
PENDING?: any;
|
|
6660
6765
|
REJECTED?: any;
|
|
6661
6766
|
}, ResolversTypes['PropertyApprovalStatus']>;
|
|
6767
|
+
type PropertyAuthorizationTypeResolvers = EnumResolverSignature<{
|
|
6768
|
+
FOR_RENT_ALL?: any;
|
|
6769
|
+
FOR_RENT_A_PART?: any;
|
|
6770
|
+
FOR_SALE_ALL?: any;
|
|
6771
|
+
FOR_SALE_A_PART?: any;
|
|
6772
|
+
}, ResolversTypes['PropertyAuthorizationType']>;
|
|
6662
6773
|
type PropertyLandCurrentStatusResolvers = EnumResolverSignature<{
|
|
6663
6774
|
CANCELLED?: any;
|
|
6664
6775
|
COMPLETED?: any;
|
|
@@ -6713,6 +6824,9 @@ type PropertyOperationStatusResolvers = EnumResolverSignature<{
|
|
|
6713
6824
|
FOR_SALE_RENT?: any;
|
|
6714
6825
|
UNDETERMINED?: any;
|
|
6715
6826
|
}, ResolversTypes['PropertyOperationStatus']>;
|
|
6827
|
+
type PropertyResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['PropertyResponse'] = ResolversParentTypes['PropertyResponse']> = {
|
|
6828
|
+
property?: Resolver<ResolversTypes['IndustrialPropertyItem'], ParentType, ContextType>;
|
|
6829
|
+
};
|
|
6716
6830
|
type PropertyTypeResolvers = EnumResolverSignature<{
|
|
6717
6831
|
APARTMENT?: any;
|
|
6718
6832
|
BUILDING?: any;
|
|
@@ -6720,7 +6834,6 @@ type PropertyTypeResolvers = EnumResolverSignature<{
|
|
|
6720
6834
|
FLOOR?: any;
|
|
6721
6835
|
HOUSING?: any;
|
|
6722
6836
|
INDUSTRIAL_ZONE?: any;
|
|
6723
|
-
LAND?: any;
|
|
6724
6837
|
LAND_LOT?: any;
|
|
6725
6838
|
OFFICE?: any;
|
|
6726
6839
|
ROOM?: any;
|
|
@@ -6729,7 +6842,6 @@ type PropertyTypeResolvers = EnumResolverSignature<{
|
|
|
6729
6842
|
type PropertyVisualizationItemResolvers<ContextType = any, ParentType extends ResolversParentTypes['PropertyVisualizationItem'] = ResolversParentTypes['PropertyVisualizationItem']> = {
|
|
6730
6843
|
createdAt?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
6731
6844
|
id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6732
|
-
industrialPropertyBranchId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6733
6845
|
industrialPropertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6734
6846
|
name?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6735
6847
|
polygon?: Resolver<Maybe<Array<ResolversTypes['PolygonCoordinate']>>, ParentType, ContextType>;
|
|
@@ -6792,6 +6904,7 @@ type QueryResolvers<ContextType = any, ParentType extends ResolversParentTypes['
|
|
|
6792
6904
|
project?: Resolver<ResolversTypes['ProjectResponse'], ParentType, ContextType, RequireFields<QueryprojectArgs, 'filter'>>;
|
|
6793
6905
|
projects?: Resolver<ResolversTypes['SearchProjectsResponse'], ParentType, ContextType, RequireFields<QueryprojectsArgs, 'filter'>>;
|
|
6794
6906
|
propertiesVisualizations?: Resolver<ResolversTypes['PropertiesVisualizationResponse'], ParentType, ContextType, RequireFields<QuerypropertiesVisualizationsArgs, 'filter'>>;
|
|
6907
|
+
property?: Resolver<ResolversTypes['PropertyResponse'], ParentType, ContextType, RequireFields<QuerypropertyArgs, 'filter'>>;
|
|
6795
6908
|
propertyMaps?: Resolver<ResolversTypes['PropertyMapsResponse'], ParentType, ContextType, RequireFields<QuerypropertyMapsArgs, 'filter'>>;
|
|
6796
6909
|
provinces?: Resolver<ResolversTypes['ProvincesResponse'], ParentType, ContextType, RequireFields<QueryprovincesArgs, 'filter'>>;
|
|
6797
6910
|
tickets?: Resolver<Maybe<ResolversTypes['FilterResponse']>, ParentType, ContextType, RequireFields<QueryticketsArgs, 'filter'>>;
|
|
@@ -6806,6 +6919,9 @@ type RegisterInvestorRepresentativeResponseResolvers<ContextType = any, ParentTy
|
|
|
6806
6919
|
message?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6807
6920
|
user?: Resolver<Maybe<ResolversTypes['InvestorRepresentativeResponse']>, ParentType, ContextType>;
|
|
6808
6921
|
};
|
|
6922
|
+
type RejectManageIndustrialPropertyResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['RejectManageIndustrialPropertyResponse'] = ResolversParentTypes['RejectManageIndustrialPropertyResponse']> = {
|
|
6923
|
+
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6924
|
+
};
|
|
6809
6925
|
type RejectTicketsResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['RejectTicketsResponse'] = ResolversParentTypes['RejectTicketsResponse']> = {
|
|
6810
6926
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6811
6927
|
rejectedCount?: Resolver<ResolversTypes['Int'], ParentType, ContextType>;
|
|
@@ -6816,6 +6932,9 @@ type RemoveDealStepParticipantsResponseResolvers<ContextType = any, ParentType e
|
|
|
6816
6932
|
type RemoveMemberChatGroupResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['RemoveMemberChatGroupResponse'] = ResolversParentTypes['RemoveMemberChatGroupResponse']> = {
|
|
6817
6933
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6818
6934
|
};
|
|
6935
|
+
type RequestBrokerForManageIndustrialPropertyResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['RequestBrokerForManageIndustrialPropertyResponse'] = ResolversParentTypes['RequestBrokerForManageIndustrialPropertyResponse']> = {
|
|
6936
|
+
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6937
|
+
};
|
|
6819
6938
|
type RequestCreateAccountClientResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['RequestCreateAccountClientResponse'] = ResolversParentTypes['RequestCreateAccountClientResponse']> = {
|
|
6820
6939
|
genId?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6821
6940
|
};
|
|
@@ -6862,6 +6981,7 @@ type SearchProjectResponseResolvers<ContextType = any, ParentType extends Resolv
|
|
|
6862
6981
|
address?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6863
6982
|
addressDetail?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6864
6983
|
area?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
6984
|
+
areaUnit?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6865
6985
|
authorizationEndtime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
6866
6986
|
authorizationStarttime?: Resolver<Maybe<ResolversTypes['DateTime']>, ParentType, ContextType>;
|
|
6867
6987
|
constructionDensity?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
|
@@ -6869,6 +6989,8 @@ type SearchProjectResponseResolvers<ContextType = any, ParentType extends Resolv
|
|
|
6869
6989
|
description?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6870
6990
|
endYear?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
6871
6991
|
id?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
6992
|
+
identityId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6993
|
+
investorName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6872
6994
|
isAuthorizationForIvt?: Resolver<ResolversTypes['Boolean'], ParentType, ContextType>;
|
|
6873
6995
|
landCurrentStatus?: Resolver<Maybe<ResolversTypes['LandCurrentStatus']>, ParentType, ContextType>;
|
|
6874
6996
|
landType?: Resolver<Maybe<ResolversTypes['LandType']>, ParentType, ContextType>;
|
|
@@ -6922,8 +7044,8 @@ type SignOutResponseResolvers<ContextType = any, ParentType extends ResolversPar
|
|
|
6922
7044
|
message?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6923
7045
|
};
|
|
6924
7046
|
type SortDirectionResolvers = EnumResolverSignature<{
|
|
6925
|
-
|
|
6926
|
-
|
|
7047
|
+
ASC?: any;
|
|
7048
|
+
DESC?: any;
|
|
6927
7049
|
}, ResolversTypes['SortDirection']>;
|
|
6928
7050
|
type SubscriptionResolvers<ContextType = any, ParentType extends ResolversParentTypes['Subscription'] = ResolversParentTypes['Subscription']> = {
|
|
6929
7051
|
chatMessages?: SubscriptionResolver<ResolversTypes['ChatMessageResponse'], "chatMessages", ParentType, ContextType, RequireFields<SubscriptionchatMessagesArgs, 'input'>>;
|
|
@@ -6983,8 +7105,8 @@ type UpdateForSaleResponseResolvers<ContextType = any, ParentType extends Resolv
|
|
|
6983
7105
|
message?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6984
7106
|
};
|
|
6985
7107
|
type UpdateIndustrialPropertyResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['UpdateIndustrialPropertyResponse'] = ResolversParentTypes['UpdateIndustrialPropertyResponse']> = {
|
|
6986
|
-
branchId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6987
7108
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
7109
|
+
propertyId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
6988
7110
|
};
|
|
6989
7111
|
type UpdateLandMapResponseResolvers<ContextType = any, ParentType extends ResolversParentTypes['UpdateLandMapResponse'] = ResolversParentTypes['UpdateLandMapResponse']> = {
|
|
6990
7112
|
message?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
@@ -7200,6 +7322,7 @@ type WardsResponseResolvers<ContextType = any, ParentType extends ResolversParen
|
|
|
7200
7322
|
wards?: Resolver<Array<ResolversTypes['WardResponse']>, ParentType, ContextType>;
|
|
7201
7323
|
};
|
|
7202
7324
|
type Resolvers<ContextType = any> = {
|
|
7325
|
+
AcceptManageIndustrialPropertyResponse?: AcceptManageIndustrialPropertyResponseResolvers<ContextType>;
|
|
7203
7326
|
AcknowledgeAppointmentResponse?: AcknowledgeAppointmentResponseResolvers<ContextType>;
|
|
7204
7327
|
ActivateInvestorFromRegisterLinkResponse?: ActivateInvestorFromRegisterLinkResponseResolvers<ContextType>;
|
|
7205
7328
|
AddDealStepParticipantsResponse?: AddDealStepParticipantsResponseResolvers<ContextType>;
|
|
@@ -7222,6 +7345,8 @@ type Resolvers<ContextType = any> = {
|
|
|
7222
7345
|
AssignConsignmentRequestToBrokerResponse?: AssignConsignmentRequestToBrokerResponseResolvers<ContextType>;
|
|
7223
7346
|
AssignOrderRequestToBrokerResponse?: AssignOrderRequestToBrokerResponseResolvers<ContextType>;
|
|
7224
7347
|
AssignPropertiesVisualizationToBrokerResponse?: AssignPropertiesVisualizationToBrokerResponseResolvers<ContextType>;
|
|
7348
|
+
AssignPropertyToBrokerResponse?: AssignPropertyToBrokerResponseResolvers<ContextType>;
|
|
7349
|
+
AssignedBrokerItem?: AssignedBrokerItemResolvers<ContextType>;
|
|
7225
7350
|
BigInt?: GraphQLScalarType;
|
|
7226
7351
|
BlacklistResponse?: BlacklistResponseResolvers<ContextType>;
|
|
7227
7352
|
CancelAppointmentResponse?: CancelAppointmentResponseResolvers<ContextType>;
|
|
@@ -7332,6 +7457,7 @@ type Resolvers<ContextType = any> = {
|
|
|
7332
7457
|
NotificationScheduleItemResponse?: NotificationScheduleItemResponseResolvers<ContextType>;
|
|
7333
7458
|
NotificationScheduleResponse?: NotificationScheduleResponseResolvers<ContextType>;
|
|
7334
7459
|
NotificationSchedulesResponse?: NotificationSchedulesResponseResolvers<ContextType>;
|
|
7460
|
+
NotificationType?: NotificationTypeResolvers;
|
|
7335
7461
|
NotificationsResponse?: NotificationsResponseResolvers<ContextType>;
|
|
7336
7462
|
OrderRequestResponse?: OrderRequestResponseResolvers<ContextType>;
|
|
7337
7463
|
OrderRequestsResponse?: OrderRequestsResponseResolvers<ContextType>;
|
|
@@ -7366,11 +7492,13 @@ type Resolvers<ContextType = any> = {
|
|
|
7366
7492
|
ProjectWard?: ProjectWardResolvers<ContextType>;
|
|
7367
7493
|
PropertiesVisualizationResponse?: PropertiesVisualizationResponseResolvers<ContextType>;
|
|
7368
7494
|
PropertyApprovalStatus?: PropertyApprovalStatusResolvers;
|
|
7495
|
+
PropertyAuthorizationType?: PropertyAuthorizationTypeResolvers;
|
|
7369
7496
|
PropertyLandCurrentStatus?: PropertyLandCurrentStatusResolvers;
|
|
7370
7497
|
PropertyLegalStatus?: PropertyLegalStatusResolvers;
|
|
7371
7498
|
PropertyMapItem?: PropertyMapItemResolvers<ContextType>;
|
|
7372
7499
|
PropertyMapsResponse?: PropertyMapsResponseResolvers<ContextType>;
|
|
7373
7500
|
PropertyOperationStatus?: PropertyOperationStatusResolvers;
|
|
7501
|
+
PropertyResponse?: PropertyResponseResolvers<ContextType>;
|
|
7374
7502
|
PropertyType?: PropertyTypeResolvers;
|
|
7375
7503
|
PropertyVisualizationItem?: PropertyVisualizationItemResolvers<ContextType>;
|
|
7376
7504
|
ProvinceResponse?: ProvinceResponseResolvers<ContextType>;
|
|
@@ -7378,9 +7506,11 @@ type Resolvers<ContextType = any> = {
|
|
|
7378
7506
|
Query?: QueryResolvers<ContextType>;
|
|
7379
7507
|
ReadAllNotificationsResponse?: ReadAllNotificationsResponseResolvers<ContextType>;
|
|
7380
7508
|
RegisterInvestorRepresentativeResponse?: RegisterInvestorRepresentativeResponseResolvers<ContextType>;
|
|
7509
|
+
RejectManageIndustrialPropertyResponse?: RejectManageIndustrialPropertyResponseResolvers<ContextType>;
|
|
7381
7510
|
RejectTicketsResponse?: RejectTicketsResponseResolvers<ContextType>;
|
|
7382
7511
|
RemoveDealStepParticipantsResponse?: RemoveDealStepParticipantsResponseResolvers<ContextType>;
|
|
7383
7512
|
RemoveMemberChatGroupResponse?: RemoveMemberChatGroupResponseResolvers<ContextType>;
|
|
7513
|
+
RequestBrokerForManageIndustrialPropertyResponse?: RequestBrokerForManageIndustrialPropertyResponseResolvers<ContextType>;
|
|
7384
7514
|
RequestCreateAccountClientResponse?: RequestCreateAccountClientResponseResolvers<ContextType>;
|
|
7385
7515
|
RequestCreateAccountResponse?: RequestCreateAccountResponseResolvers<ContextType>;
|
|
7386
7516
|
RequestUpdateEmailResponse?: RequestUpdateEmailResponseResolvers<ContextType>;
|
|
@@ -7444,5 +7574,5 @@ type DirectiveResolvers<ContextType = any> = {
|
|
|
7444
7574
|
rateLimit?: rateLimitDirectiveResolver<any, any, ContextType>;
|
|
7445
7575
|
};
|
|
7446
7576
|
//#endregion
|
|
7447
|
-
export { AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, AcknowledgeAppointmentResponseResolvers, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, ActivateInvestorFromRegisterLinkResponseResolvers, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AddDealStepParticipantsResponseResolvers, AgreementExceptions, AgreementTemplate, AgreementTemplateExceptions, AgreementTemplateFiltersInput, AgreementTemplateResolvers, AgreementTemplateResponse, AgreementTemplateResponseResolvers, AgreementTemplateType, AgreementTemplatesListResponse, AgreementTemplatesListResponseResolvers, AgreementTypeExceptions, AppointmentDealResponse, AppointmentDealResponseResolvers, AppointmentExceptions, AppointmentFiltersInput, AppointmentParticipantInput, AppointmentParticipantResponse, AppointmentParticipantResponseResolvers, AppointmentResponse, AppointmentResponseResolvers, AppointmentScheduler, AppointmentSchedulerResolvers, AppointmentStatus, AppointmentType, AppointmentsListResponse, AppointmentsListResponseResolvers, ApproveAccountInput, ApproveAccountResponse, ApproveAccountResponseResolvers, ApproveAgreementInput, ApproveAgreementResponse, ApproveAgreementResponseResolvers, ApproveConsignmentRequestResponse, ApproveConsignmentRequestResponseResolvers, ApproveDocumentInput, ApproveDocumentResponse, ApproveDocumentResponseResolvers, ApproveForSaleInput, ApproveForSaleResponse, ApproveForSaleResponseResolvers, ApproveOrderRequestInput, ApproveOrderRequestResponse, ApproveOrderRequestResponseResolvers, ApproveOwnerInput, ApproveOwnerResponse, ApproveOwnerResponseResolvers, ApproveTicketsInput, ApproveTicketsResponse, ApproveTicketsResponseResolvers, AssignConsignmentRequestToBrokerInput, AssignConsignmentRequestToBrokerResponse, AssignConsignmentRequestToBrokerResponseResolvers, AssignOrderRequestToBrokerInput, AssignOrderRequestToBrokerResponse, AssignOrderRequestToBrokerResponseResolvers, AssignPropertiesVisualizationToBrokerInput, AssignPropertiesVisualizationToBrokerResponse, AssignPropertiesVisualizationToBrokerResponseResolvers, BaseErrorResponse, BaseResponse, BigIntScalarConfig, BlackListEntityType, BlackListStatus, BlacklistExceptions, BlacklistResponse, BlacklistResponseResolvers, BrokerExceptions, BusinessInformationInput, CancelAppointmentInput, CancelAppointmentResponse, CancelAppointmentResponseResolvers, Certificate, ChangeNicknameInput, ChangeNicknameResponse, ChangeNicknameResponseResolvers, ChangePasswordInput, ChangePasswordResponse, ChangePasswordResponseResolvers, ChatGroupFilter, ChatGroupMemberResponse, ChatGroupMemberResponseResolvers, ChatGroupMemberRole, ChatGroupMembersFilter, ChatGroupMembersResponse, ChatGroupMembersResponseResolvers, ChatGroupResponse, ChatGroupResponseResolvers, ChatGroupsFilter, ChatGroupsResponse, ChatGroupsResponseResolvers, ChatMessageResponse, ChatMessageResponseResolvers, ChatMessagesFilter, ChatMessagesResponse, ChatMessagesResponseResolvers, CheckNicknameAvailabilityInput, CheckNicknameAvailabilityResponse, CheckNicknameAvailabilityResponseResolvers, ClientCategoriesFilter, ClientCategoriesResponse, ClientCategoriesResponseResolvers, ClientCategoryDetailResponse, ClientCategoryDetailResponseResolvers, ClientCategoryExceptions, ClientCategoryFilter, ClientCategoryResponse, ClientCategoryResponseResolvers, ClientExceptions, ClientFilter, ClientNeed, ClientResponse, ClientResponseResolvers, ClientRoles, ClientSource, ClientStatus, ClientType, ClientsFilter, ClientsResponse, ClientsResponseResolvers, CompleteAppointmentInput, CompleteAppointmentResponse, CompleteAppointmentResponseResolvers, ConfirmCreateAccountClientInput, ConfirmCreateAccountClientResponse, ConfirmCreateAccountClientResponseResolvers, ConfirmCreateAccountInput, ConfirmCreateAccountResponse, ConfirmCreateAccountResponseResolvers, ConfirmPaymentInstallmentInput, ConfirmPaymentInstallmentResponse, ConfirmPaymentInstallmentResponseResolvers, ConfirmPaymentProcessInput, ConfirmPaymentProcessResponse, ConfirmPaymentProcessResponseResolvers, ConfirmUpdateEmailInput, ConfirmUpdateEmailResponse, ConfirmUpdateEmailResponseResolvers, ConfirmUpdatePhoneNumberInput, ConfirmUpdatePhoneNumberResponse, ConfirmUpdatePhoneNumberResponseResolvers, ConsignmentRequestExceptions, ConsignmentRequestFilter, ConsignmentRequestResponse, ConsignmentRequestResponseResolvers, ConsignmentRequestType, ConsignmentRequestsFilter, ConsignmentRequestsResponse, ConsignmentRequestsResponseResolvers, ConversationExceptions, ConvertBrokerClientToJsonInput, ConvertBrokerClientToJsonResponse, ConvertBrokerClientToJsonResponseResolvers, CreateAgreementTemplateInput, CreateAgreementTemplateResponse, CreateAgreementTemplateResponseResolvers, CreateAppointmentInput, CreateAppointmentResponse, CreateAppointmentResponseResolvers, CreateBlacklistInput, CreateBlacklistResponse, CreateBlacklistResponseResolvers, CreateBrokerFromRegisterLinkInput, CreateBrokerFromRegisterLinkResponse, CreateBrokerFromRegisterLinkResponseResolvers, CreateBrokerInput, CreateBrokerResponse, CreateBrokerResponseResolvers, CreateChatGroupInput, CreateChatGroupResponse, CreateChatGroupResponseResolvers, CreateChatMessageInput, CreateChatMessageResponse, CreateChatMessageResponseResolvers, CreateClientCategoryInput, CreateClientCategoryResponse, CreateClientCategoryResponseResolvers, CreateClientInput, CreateClientResponse, CreateClientResponseResolvers, CreateConsignmentRequestByBrokerInput, CreateConsignmentRequestByInvestorInput, CreateConsignmentRequestByOwnerInput, CreateConsignmentRequestResponse, CreateConsignmentRequestResponseResolvers, CreateDealInput, CreateDealResponse, CreateDealResponseResolvers, CreateForSaleInput, CreateForSaleResponse, CreateForSaleResponseResolvers, CreateIndustrialPropertyInput, CreateIndustrialPropertyResponse, CreateIndustrialPropertyResponseResolvers, CreateLandMapInput, CreateLandMapResponse, CreateLandMapResponseResolvers, CreateOrderRequestByBrokerInput, CreateOrderRequestByClientInput, CreateOrderRequestResponse, CreateOrderRequestResponseResolvers, CreatePaymentInstallment, CreatePaymentInstallmentInput, CreatePaymentInstallmentResponse, CreatePaymentInstallmentResponseResolvers, CreatePaymentProcessInput, CreatePaymentProcessResponse, CreatePaymentProcessResponseResolvers, CreatePreDealInput, CreatePreDealResponse, CreatePreDealResponseResolvers, CreateProjectInput, CreateProjectResponse, CreateProjectResponseResolvers, CreatePropertyMapInput, CreatePropertyMapResponse, CreatePropertyMapResponseResolvers, CreatePropertyVisualizationInput, CreatePropertyVisualizationResponse, CreatePropertyVisualizationResponseResolvers, CreateRepresentativeInvestorInput, CreateRepresentativeInvestorResponse, CreateRepresentativeInvestorResponseResolvers, CreateUtilityInput, CursorPaginationInterface, CursorPaginationInterfaceResolvers, DateTimeScalarConfig, DealExceptions, DealFilter, DealFilterType, DealFilterTypeResolvers, DealPaymentInstallmentResponse, DealPaymentInstallmentResponseResolvers, DealProgress, DealResponse, DealResponseResolvers, DealStatus, DealStepAttachmentResponse, DealStepAttachmentResponseResolvers, DealStepCreatorResponse, DealStepCreatorResponseResolvers, DealStepExceptions, DealStepHistoryResponse, DealStepHistoryResponseResolvers, DealStepInput, DealStepParticipantInput, DealStepParticipantResponse, DealStepParticipantResponseResolvers, DealStepResponse, DealStepResponseResolvers, DealStepStatus, DealSummaryResponse, DealSummaryResponseResolvers, DealUserResponse, DealUserResponseResolvers, DealsFilter, DeleteAgreementTemplateResponse, DeleteAgreementTemplateResponseResolvers, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteAppointmentResponseResolvers, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteBlacklistResponseResolvers, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteChatGroupResponseResolvers, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientCategoryResponseResolvers, DeleteClientInput, DeleteClientResponse, DeleteClientResponseResolvers, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteConsignmentRequestResponseResolvers, DeleteForSaleInput, DeleteForSaleResponse, DeleteForSaleResponseResolvers, DeleteInvestorRepresentativeInput, DeleteInvestorRepresentativeResponse, DeleteInvestorRepresentativeResponseResolvers, DirectiveResolverFn, DirectiveResolvers, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentType, EnumResolverSignature, Exact, FileScalarConfig, FilterResponse, FilterResponseResolvers, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSalePostType, ForSalePropertyType, ForSaleResponse, ForSaleResponseResolvers, ForSaleRoadType, ForSaleStatus, ForSaleUtilities, ForSalesFilter, ForSalesResponse, ForSalesResponseResolvers, ForgotPasswordInput, ForgotPasswordResponse, ForgotPasswordResponseResolvers, GenerateBrokerRegisterLinkInput, GenerateBrokerRegisterLinkResponse, GenerateBrokerRegisterLinkResponseResolvers, GenerateInvestorRegisterLinkInput, GenerateInvestorRegisterLinkResponse, GenerateInvestorRegisterLinkResponseResolvers, GetAppointmentResponse, GetAppointmentResponseResolvers, GetBlacklistFilter, GetInvestorRepresentativeInput, IdentityExceptions, IdentityNationality, IdentityNationalityResolvers, IdentityType, IdentityTypeResolvers, IdentityVerificationStatus, IdentityVerificationStatusResolvers, ImportBrokerClientFailedList, ImportBrokerClientFailedListResolvers, ImportBrokerClientInput, ImportBrokerClientJsonInput, ImportBrokerClientResponse, ImportBrokerClientResponseResolvers, ImportBrokerClientSuccessList, ImportBrokerClientSuccessListResolvers, Incremental, IndustrialParkExceptions, IndustrialPropertiesFilter, IndustrialPropertiesResponse, IndustrialPropertiesResponseResolvers, IndustrialPropertyDetailInput, IndustrialPropertyDetailItem, IndustrialPropertyDetailItemResolvers, IndustrialPropertyItem, IndustrialPropertyItemResolvers, IndustrialPropertySortField, IndustrialPropertySortFieldResolvers, InputMaybe, InvestorApproveConsignmentRequestInput, InvestorExceptions, InvestorRepresentativeResponse, InvestorRepresentativeResponseResolvers, InvestorRepresentativesFilter, InvestorRepresentativesResponse, InvestorRepresentativesResponseResolvers, InviteInvestorRepresentativeInput, InviteInvestorRepresentativeResponse, InviteInvestorRepresentativeResponseResolvers, InviteMemberChatGroupInput, InviteMemberChatGroupResponse, InviteMemberChatGroupResponseResolvers, InviteRepresentativeInvestorInput, InviteRepresentativeInvestorResponse, InviteRepresentativeInvestorResponseResolvers, IsTypeOfResolverFn, JSONScalarConfig, JobStatus, JobType, LandCurrentStatus, LandCurrentStatusResolvers, LandType, LandTypeResolvers, LinkTranslationsAction, LinkTranslationsActionResolvers, LocationFilter, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MediaExceptions, MediaItemResponse, MediaItemResponseResolvers, MediaResponse, MediaResponseResolvers, MediaSortField, MediaSortFieldResolvers, MediaType, MediasFilter, MediasResponse, MediasResponseResolvers, MessageType, ModelResponseInterface, ModelResponseInterfaceResolvers, Mutation, MutationResolvers, MutationacknowledgeAppointmentArgs, MutationactivateInvestorFromRegisterLinkArgs, MutationaddDealStepParticipantsArgs, MutationaddUtilityToProjectArgs, MutationaddUtilityToPropertyBranchArgs, MutationapproveAccountArgs, MutationapproveAgreementArgs, MutationapproveDocumentArgs, MutationapproveForSaleArgs, MutationapproveOrderRequestArgs, MutationapproveOwnerArgs, MutationapproveTicketsArgs, MutationassignConsignmentRequestToBrokerArgs, MutationassignOrderRequestToBrokerArgs, MutationassignPropertiesVisualizationToBrokerArgs, MutationcancelAppointmentArgs, MutationcancelScheduledNotificationArgs, MutationchangeAvatarArgs, MutationchangeNicknameArgs, MutationchangePasswordArgs, MutationcompleteAppointmentArgs, MutationconfirmCreateAccountArgs, MutationconfirmCreateAccountClientArgs, MutationconfirmPaymentInstallmentArgs, MutationconfirmPaymentProcessArgs, MutationconfirmUpdateEmailArgs, MutationconfirmUpdatePhoneNumberArgs, MutationconvertBrokerClientToJsonArgs, MutationcreateAgreementTemplateArgs, MutationcreateAppointmentArgs, MutationcreateBlacklistArgs, MutationcreateBrokerArgs, MutationcreateBrokerFromRegisterLinkArgs, MutationcreateChatGroupArgs, MutationcreateChatMessageArgs, MutationcreateClientArgs, MutationcreateClientCategoryArgs, MutationcreateConsignmentRequestByBrokerArgs, MutationcreateConsignmentRequestByInvestorArgs, MutationcreateConsignmentRequestByOwnerArgs, MutationcreateDealArgs, MutationcreateForSaleArgs, MutationcreateIndustrialPropertyArgs, MutationcreateOrderRequestByBrokerArgs, MutationcreateOrderRequestByClientArgs, MutationcreatePaymentInstallmentArgs, MutationcreatePaymentProcessArgs, MutationcreatePreDealArgs, MutationcreateProjectArgs, MutationcreateProjectUtilityArgs, MutationcreatePropertyBranchUtilityArgs, MutationcreatePropertyMapArgs, MutationcreatePropertyVisualizationArgs, MutationcreateRepresentativeInvestorArgs, MutationdeleteAgreementTemplateArgs, MutationdeleteAppointmentArgs, MutationdeleteBlacklistArgs, MutationdeleteChatGroupArgs, MutationdeleteClientArgs, MutationdeleteClientCategoryArgs, MutationdeleteConsignmentRequestArgs, MutationdeleteForSaleArgs, MutationdeleteInvestorRepresentativeArgs, MutationdeleteUtilityArgs, MutationforgotPasswordArgs, MutationgenerateBrokerRegisterLinkArgs, MutationgenerateInvestorRegisterLinkArgs, MutationimportBrokerClientFileArgs, MutationimportBrokerClientFromJsonArgs, MutationinvestorApproveConsignmentRequestArgs, MutationinviteInvestorRepresentativeArgs, MutationinviteMemberChatGroupArgs, MutationinviteRepresentativeInvestorArgs, MutationlinkChatGroupToDealArgs, MutationlinkChatGroupToDealStepArgs, MutationownerApproveConsignmentRequestArgs, MutationownerAuthorizeForSystemArgs, MutationpreviewAgreementArgs, MutationprogressToNextStepArgs, MutationreadChannelNotificationsArgs, MutationregisterInvestorRepresentativeArgs, MutationrejectTicketsArgs, MutationremoveDealStepParticipantsArgs, MutationremoveMemberChatGroupArgs, MutationremoveUtilityFromProjectArgs, MutationremoveUtilityFromPropertyBranchArgs, MutationrequestCreateAccountArgs, MutationrequestCreateAccountClientArgs, MutationrequestUpdateEmailArgs, MutationrequestUpdatePhoneNumberArgs, MutationrestoreAgreementTemplateArgs, MutationscheduleNotificationArgs, MutationsendOtpArgs, MutationsetNewPasswordWhenForgotArgs, MutationsetPinnedMessageArgs, MutationsignAgreementArgs, MutationsignInArgs, MutationupdateAgreementTemplateArgs, MutationupdateAppointmentArgs, MutationupdateBlacklistArgs, MutationupdateChatGroupArgs, MutationupdateChatGroupMemberArgs, MutationupdateChatMessageArgs, MutationupdateClientArgs, MutationupdateClientCategoryArgs, MutationupdateConsignmentRequestArgs, MutationupdateDealStepStatusArgs, MutationupdateForSaleArgs, MutationupdateIndustrialPropertyArgs, MutationupdateOrderRequestArgs, MutationupdatePaymentInstallmentArgs, MutationupdatePaymentProcessArgs, MutationupdateProfileArgs, MutationupdateProjectArgs, MutationupdatePropertyMapArgs, MutationupdatePropertyVisualizationArgs, MutationupdateUtilityArgs, MutationupgradeToBrokerFromClientArgs, MutationupgradeToInvestorRepresentativeFromClientArgs, MutationuploadAgreementArgs, MutationuploadConfidentialityAgreementArgs, MutationuploadDocumentByAdministratorArgs, MutationuploadDocumentByInvestorArgs, MutationuploadMediaArgs, MutationuserNotificationSettingArgs, MutationverifyOtpForgotPasswordArgs, MutationverifyZnsOtpArgs, NextResolverFn, NotificationActionItem, NotificationActionItemResolvers, NotificationChannelItemResponse, NotificationChannelItemResponseResolvers, NotificationDetailStatus, NotificationEnv, NotificationMessageItem, NotificationMessageItemResolvers, NotificationMessageItemResponse, NotificationMessageItemResponseResolvers, NotificationScheduleItemResponse, NotificationScheduleItemResponseResolvers, NotificationScheduleResponse, NotificationScheduleResponseResolvers, NotificationScheduleStatus, NotificationSchedulesFilter, NotificationSchedulesResponse, NotificationSchedulesResponseResolvers, NotificationsFilter, NotificationsResponse, NotificationsResponseResolvers, Omit, OrderByInput, OrderRequestExceptions, OrderRequestFilter, OrderRequestResponse, OrderRequestResponseResolvers, OrderRequestType, OrderRequestsFilter, OrderRequestsResponse, OrderRequestsResponseResolvers, Orientation, OrientationResolvers, OtpResponse, OtpResponseResolvers, OtpType, OwnerApproveConsignmentRequestInput, OwnerAuthorizeForSystemInput, OwnerAuthorizeForSystemResponse, OwnerAuthorizeForSystemResponseResolvers, PagePaginationInterface, PagePaginationInterfaceResolvers, ParticipantResponseResponse, ParticipantResponseResponseResolvers, ParticipantRole, ParticipantStatus, PaymentInstallmentFilter, PaymentInstallmentResponse, PaymentInstallmentResponseResolvers, PaymentInstallmentStatus, PaymentInstallmentsFilter, PaymentInstallmentsResponse, PaymentInstallmentsResponseResolvers, PaymentProcessExceptions, PaymentProcessFilter, PaymentProcessResponse, PaymentProcessResponseResolvers, PaymentProcessStatus, PaymentProcessesFilter, PaymentProcessesResponse, PaymentProcessesResponseResolvers, PermissionsResponse, PermissionsResponseResolvers, PolygonCoordinate, PolygonCoordinateInput, PolygonCoordinateResolvers, PreDealExceptions, PreDealFilter, PreDealResponse, PreDealResponseResolvers, PreDealsFilter, PreDealsResponse, PreDealsResponseResolvers, PreviewAgreementInput, PreviewAgreementResponse, PreviewAgreementResponseResolvers, ProfileResponse, ProfileResponseResolvers, ProgressToNextStepInput, ProgressToNextStepResponse, ProgressToNextStepResponseResolvers, ProjectApprovalStatus, ProjectApprovalStatusResolvers, ProjectClassification, ProjectClassificationResolvers, ProjectCurrentStatus, ProjectCurrentStatusResolvers, ProjectDocument, ProjectDocumentResolvers, ProjectFilter, ProjectPropertyMap, ProjectPropertyMapResolvers, ProjectProvince, ProjectProvinceResolvers, ProjectResponse, ProjectResponseResolvers, ProjectStage, ProjectStageResolvers, ProjectStandard, ProjectStandardResolvers, ProjectType, ProjectTypeResolvers, ProjectUser, ProjectUserResolvers, ProjectUtility, ProjectUtilityResolvers, ProjectWard, ProjectWardResolvers, PropertiesVisualizationResponse, PropertiesVisualizationResponseResolvers, PropertyApprovalStatus, PropertyApprovalStatusResolvers, PropertyExceptions, PropertyLandCurrentStatus, PropertyLandCurrentStatusResolvers, PropertyLegalStatus, PropertyLegalStatusResolvers, PropertyMapItem, PropertyMapItemResolvers, PropertyMapsFilter, PropertyMapsResponse, PropertyMapsResponseResolvers, PropertyOperationStatus, PropertyOperationStatusResolvers, PropertyTransactionStatus, PropertyType, PropertyTypeResolvers, PropertyVisualizationFilter, PropertyVisualizationItem, PropertyVisualizationItemResolvers, ProvinceExceptions, ProvinceResponse, ProvinceResponseResolvers, ProvincesFilter, ProvincesResponse, ProvincesResponseResolvers, Query, QueryResolvers, QueryagreementTemplateArgs, QueryagreementTemplatesArgs, QueryappointmentArgs, QueryappointmentsArgs, QueryblacklistArgs, QueryblacklistsArgs, QuerychatGroupArgs, QuerychatGroupMembersArgs, QuerychatGroupsArgs, QuerychatMessagesArgs, QuerycheckNicknameAvailabilityArgs, QueryclientArgs, QueryclientCategoriesArgs, QueryclientCategoryArgs, QueryclientsArgs, QueryconsignmentRequestArgs, QueryconsignmentRequestsArgs, QuerydealStepsArgs, QuerydealSummaryArgs, QuerydealsArgs, QueryforSaleArgs, QueryforSalesArgs, QueryindustrialPropertiesArgs, QueryinvestorRepresentativeArgs, QueryinvestorRepresentativesArgs, QuerymediaArgs, QuerymediasArgs, QuerynotificationScheduleArgs, QuerynotificationSchedulesArgs, QuerynotificationsArgs, QueryorderRequestArgs, QueryorderRequestsArgs, QuerypaymentInstallmentArgs, QuerypaymentInstallmentsArgs, QuerypaymentProcessArgs, QuerypaymentProcessesArgs, QuerypreDealArgs, QuerypreDealsArgs, QueryprojectArgs, QueryprojectsArgs, QuerypropertiesVisualizationsArgs, QuerypropertyMapsArgs, QueryprovincesArgs, QueryticketsArgs, QueryutilitiesArgs, QuerywardsArgs, ReadAllNotificationsResponse, ReadAllNotificationsResponseResolvers, ReadChannelNotificationsInput, RegisterExceptions, RegisterInvestorRepresentativeInput, RegisterInvestorRepresentativeResponse, RegisterInvestorRepresentativeResponseResolvers, RejectTicket, RejectTicketsInput, RejectTicketsResponse, RejectTicketsResponseResolvers, RemoveDealStepParticipantsInput, RemoveDealStepParticipantsResponse, RemoveDealStepParticipantsResponseResolvers, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RemoveMemberChatGroupResponseResolvers, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountClientResponseResolvers, RequestCreateAccountInput, RequestCreateAccountResponse, RequestCreateAccountResponseResolvers, RequestUpdateEmailInput, RequestUpdateEmailResponse, RequestUpdateEmailResponseResolvers, RequestUpdatePhoneNumberInput, RequestUpdatePhoneNumberResponse, RequestUpdatePhoneNumberResponseResolvers, RequireFields, Resolver, ResolverFn, ResolverTypeWrapper, ResolverWithResolve, Resolvers, ResolversInterfaceTypes, ResolversParentTypes, ResolversTypes, RestoreAgreementTemplateResponse, RestoreAgreementTemplateResponseResolvers, RoleCodes, RoleExceptions, Scalars, ScheduleNotificationInput, ScheduleType, SchedulerStatus, SearchBlacklistsFilter, SearchBlacklistsResponse, SearchBlacklistsResponseResolvers, SearchDealResponse, SearchDealResponseResolvers, SearchDealsResponse, SearchDealsResponseResolvers, SearchProjectResponse, SearchProjectResponseResolvers, SearchProjectsFilter, SearchProjectsResponse, SearchProjectsResponseResolvers, SendOtpInput, ServiceFee, ServiceFeeInput, ServiceFeeResolvers, SetNewPasswordWhenForgotInput, SetNewPasswordWhenForgotResponse, SetNewPasswordWhenForgotResponseResolvers, SetPinnedMessageInput, SetPinnedMessageResponse, SetPinnedMessageResponseResolvers, SettingExceptions, SignAgreementInput, SignAgreementResponse, SignAgreementResponseResolvers, SignInInput, SignInResponse, SignInResponseResolvers, SignOutResponse, SignOutResponseResolvers, SortDirection, SortDirectionResolvers, Subscription, SubscriptionChatMessagesInput, SubscriptionObject, SubscriptionResolveFn, SubscriptionResolver, SubscriptionResolverObject, SubscriptionResolvers, SubscriptionSubscribeFn, SubscriptionSubscriberObject, SubscriptionchatMessagesArgs, Ticket, TicketExceptions, TicketResolvers, TicketStatus, TicketType, TicketsFilter, TypeResolveFn, UpdateAgreementTemplateInput, UpdateAgreementTemplateResponse, UpdateAgreementTemplateResponseResolvers, UpdateAppointmentInput, UpdateAppointmentResponse, UpdateAppointmentResponseResolvers, UpdateAvatarInput, UpdateAvatarResponse, UpdateAvatarResponseResolvers, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBlacklistResponseResolvers, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupMemberResponseResolvers, UpdateChatGroupResponse, UpdateChatGroupResponseResolvers, UpdateChatMessageInput, UpdateChatMessageResponse, UpdateChatMessageResponseResolvers, UpdateClientCategoryInput, UpdateClientCategoryResponse, UpdateClientCategoryResponseResolvers, UpdateClientInput, UpdateClientResponse, UpdateClientResponseResolvers, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateConsignmentRequestResponseResolvers, UpdateDealStepStatusInput, UpdateDealStepStatusResponse, UpdateDealStepStatusResponseResolvers, UpdateForSaleInput, UpdateForSaleResponse, UpdateForSaleResponseResolvers, UpdateIndustrialPropertyInput, UpdateIndustrialPropertyResponse, UpdateIndustrialPropertyResponseResolvers, UpdateLandMapInput, UpdateLandMapResponse, UpdateLandMapResponseResolvers, UpdateOrderRequestInput, UpdateOrderRequestResponse, UpdateOrderRequestResponseResolvers, UpdatePaymentInstallmentInput, UpdatePaymentInstallmentResponse, UpdatePaymentInstallmentResponseResolvers, UpdatePaymentProcessInput, UpdatePaymentProcessResponse, UpdatePaymentProcessResponseResolvers, UpdateProfileInput, UpdateProfileResponse, UpdateProfileResponseResolvers, UpdateProjectInput, UpdateProjectResponse, UpdateProjectResponseResolvers, UpdatePropertyMapInput, UpdatePropertyMapResponse, UpdatePropertyMapResponseResolvers, UpdatePropertyVisualizationInput, UpdatePropertyVisualizationResponse, UpdatePropertyVisualizationResponseResolvers, UpdateUtilityInput, UpgradeToBrokerFromClientInput, UpgradeToBrokerFromClientResponse, UpgradeToBrokerFromClientResponseResolvers, UpgradeToInvestorRepresentativeFromClientInput, UpgradeToInvestorRepresentativeFromClientResponse, UpgradeToInvestorRepresentativeFromClientResponseResolvers, UploadAgreementInput, UploadAgreementResponse, UploadAgreementResponseResolvers, UploadConfidentialityAgreementInput, UploadConfidentialityAgreementResponse, UploadConfidentialityAgreementResponseResolvers, UploadDocumentByAdministratorInput, UploadDocumentByAdministratorResponse, UploadDocumentByAdministratorResponseResolvers, UploadDocumentByInvestorInput, UploadDocumentByInvestorResponse, UploadDocumentByInvestorResponseResolvers, UploadMediaInput, UserExceptions, UserGender, UserGenderResolvers, UserHistoryType, UserLanguage, UserLanguageResolvers, UserNotificationSettingInput, UserPermissionsResponse, UserPermissionsResponseResolvers, UserStatus, UserStatusResolvers, UtilitiesFilter, UtilitiesResponse, UtilitiesResponseResolvers, UtilityResponse, UtilityResponseResolvers, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VerifyOtpForgotPasswordResponseResolvers, VerifyOtpInput, VerifyOtpResponse, VerifyOtpResponseResolvers, VersionAction, WardExceptions, WardResponse, WardResponseResolvers, WardsFilter, WardsResponse, WardsResponseResolvers, authDirectiveArgs, authDirectiveResolver, permissionDirectiveArgs, permissionDirectiveResolver, rateLimitDirectiveArgs, rateLimitDirectiveResolver };
|
|
7577
|
+
export { AcceptManageIndustrialPropertyInput, AcceptManageIndustrialPropertyResponse, AcceptManageIndustrialPropertyResponseResolvers, AcknowledgeAppointmentInput, AcknowledgeAppointmentResponse, AcknowledgeAppointmentResponseResolvers, ActivateInvestorFromRegisterLinkInput, ActivateInvestorFromRegisterLinkResponse, ActivateInvestorFromRegisterLinkResponseResolvers, AddDealStepParticipantsInput, AddDealStepParticipantsResponse, AddDealStepParticipantsResponseResolvers, AgreementExceptions, AgreementTemplate, AgreementTemplateExceptions, AgreementTemplateFiltersInput, AgreementTemplateResolvers, AgreementTemplateResponse, AgreementTemplateResponseResolvers, AgreementTemplateType, AgreementTemplatesListResponse, AgreementTemplatesListResponseResolvers, AgreementTypeExceptions, AppointmentDealResponse, AppointmentDealResponseResolvers, AppointmentExceptions, AppointmentFiltersInput, AppointmentParticipantInput, AppointmentParticipantResponse, AppointmentParticipantResponseResolvers, AppointmentResponse, AppointmentResponseResolvers, AppointmentScheduler, AppointmentSchedulerResolvers, AppointmentStatus, AppointmentType, AppointmentsListResponse, AppointmentsListResponseResolvers, ApproveAccountInput, ApproveAccountResponse, ApproveAccountResponseResolvers, ApproveAgreementInput, ApproveAgreementResponse, ApproveAgreementResponseResolvers, ApproveConsignmentRequestResponse, ApproveConsignmentRequestResponseResolvers, ApproveDocumentInput, ApproveDocumentResponse, ApproveDocumentResponseResolvers, ApproveForSaleInput, ApproveForSaleResponse, ApproveForSaleResponseResolvers, ApproveOrderRequestInput, ApproveOrderRequestResponse, ApproveOrderRequestResponseResolvers, ApproveOwnerInput, ApproveOwnerResponse, ApproveOwnerResponseResolvers, ApproveTicketsInput, ApproveTicketsResponse, ApproveTicketsResponseResolvers, AssignConsignmentRequestToBrokerInput, AssignConsignmentRequestToBrokerResponse, AssignConsignmentRequestToBrokerResponseResolvers, AssignOrderRequestToBrokerInput, AssignOrderRequestToBrokerResponse, AssignOrderRequestToBrokerResponseResolvers, AssignPropertiesVisualizationToBrokerInput, AssignPropertiesVisualizationToBrokerResponse, AssignPropertiesVisualizationToBrokerResponseResolvers, AssignPropertyToBrokerInput, AssignPropertyToBrokerResponse, AssignPropertyToBrokerResponseResolvers, AssignedBrokerItem, AssignedBrokerItemResolvers, BaseErrorResponse, BaseResponse, BigIntScalarConfig, BlackListEntityType, BlackListStatus, BlacklistExceptions, BlacklistResponse, BlacklistResponseResolvers, BrokerExceptions, BusinessInformationInput, CancelAppointmentInput, CancelAppointmentResponse, CancelAppointmentResponseResolvers, Certificate, ChangeNicknameInput, ChangeNicknameResponse, ChangeNicknameResponseResolvers, ChangePasswordInput, ChangePasswordResponse, ChangePasswordResponseResolvers, ChatGroupFilter, ChatGroupMemberResponse, ChatGroupMemberResponseResolvers, ChatGroupMemberRole, ChatGroupMembersFilter, ChatGroupMembersResponse, ChatGroupMembersResponseResolvers, ChatGroupResponse, ChatGroupResponseResolvers, ChatGroupsFilter, ChatGroupsResponse, ChatGroupsResponseResolvers, ChatMessageResponse, ChatMessageResponseResolvers, ChatMessagesFilter, ChatMessagesResponse, ChatMessagesResponseResolvers, CheckNicknameAvailabilityInput, CheckNicknameAvailabilityResponse, CheckNicknameAvailabilityResponseResolvers, ClientCategoriesFilter, ClientCategoriesResponse, ClientCategoriesResponseResolvers, ClientCategoryDetailResponse, ClientCategoryDetailResponseResolvers, ClientCategoryExceptions, ClientCategoryFilter, ClientCategoryResponse, ClientCategoryResponseResolvers, ClientExceptions, ClientFilter, ClientNeed, ClientResponse, ClientResponseResolvers, ClientRoles, ClientSource, ClientStatus, ClientType, ClientsFilter, ClientsResponse, ClientsResponseResolvers, CompleteAppointmentInput, CompleteAppointmentResponse, CompleteAppointmentResponseResolvers, ConfirmCreateAccountClientInput, ConfirmCreateAccountClientResponse, ConfirmCreateAccountClientResponseResolvers, ConfirmCreateAccountInput, ConfirmCreateAccountResponse, ConfirmCreateAccountResponseResolvers, ConfirmPaymentInstallmentInput, ConfirmPaymentInstallmentResponse, ConfirmPaymentInstallmentResponseResolvers, ConfirmPaymentProcessInput, ConfirmPaymentProcessResponse, ConfirmPaymentProcessResponseResolvers, ConfirmUpdateEmailInput, ConfirmUpdateEmailResponse, ConfirmUpdateEmailResponseResolvers, ConfirmUpdatePhoneNumberInput, ConfirmUpdatePhoneNumberResponse, ConfirmUpdatePhoneNumberResponseResolvers, ConsignmentRequestExceptions, ConsignmentRequestFilter, ConsignmentRequestResponse, ConsignmentRequestResponseResolvers, ConsignmentRequestType, ConsignmentRequestsFilter, ConsignmentRequestsResponse, ConsignmentRequestsResponseResolvers, ConversationExceptions, ConvertBrokerClientToJsonInput, ConvertBrokerClientToJsonResponse, ConvertBrokerClientToJsonResponseResolvers, CreateAgreementTemplateInput, CreateAgreementTemplateResponse, CreateAgreementTemplateResponseResolvers, CreateAppointmentInput, CreateAppointmentResponse, CreateAppointmentResponseResolvers, CreateBlacklistInput, CreateBlacklistResponse, CreateBlacklistResponseResolvers, CreateBrokerFromRegisterLinkInput, CreateBrokerFromRegisterLinkResponse, CreateBrokerFromRegisterLinkResponseResolvers, CreateBrokerInput, CreateBrokerResponse, CreateBrokerResponseResolvers, CreateChatGroupInput, CreateChatGroupResponse, CreateChatGroupResponseResolvers, CreateChatMessageInput, CreateChatMessageResponse, CreateChatMessageResponseResolvers, CreateClientCategoryInput, CreateClientCategoryResponse, CreateClientCategoryResponseResolvers, CreateClientInput, CreateClientResponse, CreateClientResponseResolvers, CreateConsignmentRequestByBrokerInput, CreateConsignmentRequestByInvestorInput, CreateConsignmentRequestByOwnerInput, CreateConsignmentRequestResponse, CreateConsignmentRequestResponseResolvers, CreateDealInput, CreateDealResponse, CreateDealResponseResolvers, CreateForSaleInput, CreateForSaleResponse, CreateForSaleResponseResolvers, CreateIndustrialPropertyInput, CreateIndustrialPropertyResponse, CreateIndustrialPropertyResponseResolvers, CreateLandMapInput, CreateLandMapResponse, CreateLandMapResponseResolvers, CreateOrderRequestByBrokerInput, CreateOrderRequestByClientInput, CreateOrderRequestResponse, CreateOrderRequestResponseResolvers, CreatePaymentInstallment, CreatePaymentInstallmentInput, CreatePaymentInstallmentResponse, CreatePaymentInstallmentResponseResolvers, CreatePaymentProcessInput, CreatePaymentProcessResponse, CreatePaymentProcessResponseResolvers, CreatePreDealInput, CreatePreDealResponse, CreatePreDealResponseResolvers, CreateProjectInput, CreateProjectResponse, CreateProjectResponseResolvers, CreatePropertyMapInput, CreatePropertyMapResponse, CreatePropertyMapResponseResolvers, CreatePropertyVisualizationInput, CreatePropertyVisualizationResponse, CreatePropertyVisualizationResponseResolvers, CreateRepresentativeInvestorInput, CreateRepresentativeInvestorResponse, CreateRepresentativeInvestorResponseResolvers, CreateUtilityInput, CursorPaginationInterface, CursorPaginationInterfaceResolvers, DateTimeScalarConfig, DealExceptions, DealFilter, DealFilterType, DealFilterTypeResolvers, DealPaymentInstallmentResponse, DealPaymentInstallmentResponseResolvers, DealProgress, DealResponse, DealResponseResolvers, DealStatus, DealStepAttachmentResponse, DealStepAttachmentResponseResolvers, DealStepCreatorResponse, DealStepCreatorResponseResolvers, DealStepExceptions, DealStepHistoryResponse, DealStepHistoryResponseResolvers, DealStepInput, DealStepParticipantInput, DealStepParticipantResponse, DealStepParticipantResponseResolvers, DealStepResponse, DealStepResponseResolvers, DealStepStatus, DealSummaryResponse, DealSummaryResponseResolvers, DealUserResponse, DealUserResponseResolvers, DealsFilter, DeleteAgreementTemplateResponse, DeleteAgreementTemplateResponseResolvers, DeleteAppointmentInput, DeleteAppointmentResponse, DeleteAppointmentResponseResolvers, DeleteBlacklistInput, DeleteBlacklistResponse, DeleteBlacklistResponseResolvers, DeleteChatGroupInput, DeleteChatGroupResponse, DeleteChatGroupResponseResolvers, DeleteClientCategoryInput, DeleteClientCategoryResponse, DeleteClientCategoryResponseResolvers, DeleteClientInput, DeleteClientResponse, DeleteClientResponseResolvers, DeleteConsignmentRequestInput, DeleteConsignmentRequestResponse, DeleteConsignmentRequestResponseResolvers, DeleteForSaleInput, DeleteForSaleResponse, DeleteForSaleResponseResolvers, DeleteInvestorRepresentativeInput, DeleteInvestorRepresentativeResponse, DeleteInvestorRepresentativeResponseResolvers, DirectiveResolverFn, DirectiveResolvers, DistrictExceptions, DocumentCategory, DocumentExceptions, DocumentType, EnumResolverSignature, Exact, FileScalarConfig, FilterResponse, FilterResponseResolvers, ForSaleApproveStatus, ForSaleBuildingStandard, ForSaleExceptions, ForSaleFilter, ForSaleInfrastructureStatus, ForSalePostType, ForSalePropertyType, ForSaleResponse, ForSaleResponseResolvers, ForSaleRoadType, ForSaleStatus, ForSaleUtilities, ForSalesFilter, ForSalesResponse, ForSalesResponseResolvers, ForgotPasswordInput, ForgotPasswordResponse, ForgotPasswordResponseResolvers, GenerateBrokerRegisterLinkInput, GenerateBrokerRegisterLinkResponse, GenerateBrokerRegisterLinkResponseResolvers, GenerateInvestorRegisterLinkInput, GenerateInvestorRegisterLinkResponse, GenerateInvestorRegisterLinkResponseResolvers, GetAppointmentResponse, GetAppointmentResponseResolvers, GetBlacklistFilter, GetInvestorRepresentativeInput, IdentityExceptions, IdentityNationality, IdentityNationalityResolvers, IdentityType, IdentityTypeResolvers, IdentityVerificationStatus, IdentityVerificationStatusResolvers, ImportBrokerClientFailedList, ImportBrokerClientFailedListResolvers, ImportBrokerClientInput, ImportBrokerClientJsonInput, ImportBrokerClientResponse, ImportBrokerClientResponseResolvers, ImportBrokerClientSuccessList, ImportBrokerClientSuccessListResolvers, Incremental, IndustrialParkExceptions, IndustrialPropertiesFilter, IndustrialPropertiesResponse, IndustrialPropertiesResponseResolvers, IndustrialPropertyDetailInput, IndustrialPropertyDetailItem, IndustrialPropertyDetailItemResolvers, IndustrialPropertyItem, IndustrialPropertyItemResolvers, IndustrialPropertySortField, IndustrialPropertySortFieldResolvers, InputMaybe, InvestorApproveConsignmentRequestInput, InvestorExceptions, InvestorRepresentativeResponse, InvestorRepresentativeResponseResolvers, InvestorRepresentativesFilter, InvestorRepresentativesResponse, InvestorRepresentativesResponseResolvers, InviteInvestorRepresentativeInput, InviteInvestorRepresentativeResponse, InviteInvestorRepresentativeResponseResolvers, InviteMemberChatGroupInput, InviteMemberChatGroupResponse, InviteMemberChatGroupResponseResolvers, InviteRepresentativeInvestorInput, InviteRepresentativeInvestorResponse, InviteRepresentativeInvestorResponseResolvers, IsTypeOfResolverFn, JSONScalarConfig, JobStatus, JobType, LandCurrentStatus, LandCurrentStatusResolvers, LandType, LandTypeResolvers, LinkTranslationsAction, LinkTranslationsActionResolvers, LocationFilter, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MediaExceptions, MediaItemResponse, MediaItemResponseResolvers, MediaResponse, MediaResponseResolvers, MediaSortField, MediaSortFieldResolvers, MediaType, MediasFilter, MediasResponse, MediasResponseResolvers, MessageType, ModelResponseInterface, ModelResponseInterfaceResolvers, Mutation, MutationResolvers, MutationacceptManageIndustrialPropertyArgs, MutationacknowledgeAppointmentArgs, MutationactivateInvestorFromRegisterLinkArgs, MutationaddDealStepParticipantsArgs, MutationaddUtilityToProjectArgs, MutationaddUtilityToPropertyBranchArgs, MutationapproveAccountArgs, MutationapproveAgreementArgs, MutationapproveDocumentArgs, MutationapproveForSaleArgs, MutationapproveOrderRequestArgs, MutationapproveOwnerArgs, MutationapproveTicketsArgs, MutationassignConsignmentRequestToBrokerArgs, MutationassignOrderRequestToBrokerArgs, MutationassignPropertiesVisualizationToBrokerArgs, MutationassignPropertyToBrokerArgs, MutationcancelAppointmentArgs, MutationcancelScheduledNotificationArgs, MutationchangeAvatarArgs, MutationchangeNicknameArgs, MutationchangePasswordArgs, MutationcompleteAppointmentArgs, MutationconfirmCreateAccountArgs, MutationconfirmCreateAccountClientArgs, MutationconfirmPaymentInstallmentArgs, MutationconfirmPaymentProcessArgs, MutationconfirmUpdateEmailArgs, MutationconfirmUpdatePhoneNumberArgs, MutationconvertBrokerClientToJsonArgs, MutationcreateAgreementTemplateArgs, MutationcreateAppointmentArgs, MutationcreateBlacklistArgs, MutationcreateBrokerArgs, MutationcreateBrokerFromRegisterLinkArgs, MutationcreateChatGroupArgs, MutationcreateChatMessageArgs, MutationcreateClientArgs, MutationcreateClientCategoryArgs, MutationcreateConsignmentRequestByBrokerArgs, MutationcreateConsignmentRequestByInvestorArgs, MutationcreateConsignmentRequestByOwnerArgs, MutationcreateDealArgs, MutationcreateForSaleArgs, MutationcreateIndustrialPropertyArgs, MutationcreateOrderRequestByBrokerArgs, MutationcreateOrderRequestByClientArgs, MutationcreatePaymentInstallmentArgs, MutationcreatePaymentProcessArgs, MutationcreatePreDealArgs, MutationcreateProjectArgs, MutationcreateProjectUtilityArgs, MutationcreatePropertyBranchUtilityArgs, MutationcreatePropertyMapArgs, MutationcreatePropertyVisualizationArgs, MutationcreateRepresentativeInvestorArgs, MutationdeleteAgreementTemplateArgs, MutationdeleteAppointmentArgs, MutationdeleteBlacklistArgs, MutationdeleteChatGroupArgs, MutationdeleteClientArgs, MutationdeleteClientCategoryArgs, MutationdeleteConsignmentRequestArgs, MutationdeleteForSaleArgs, MutationdeleteInvestorRepresentativeArgs, MutationdeleteUtilityArgs, MutationforgotPasswordArgs, MutationgenerateBrokerRegisterLinkArgs, MutationgenerateInvestorRegisterLinkArgs, MutationimportBrokerClientFileArgs, MutationimportBrokerClientFromJsonArgs, MutationinvestorApproveConsignmentRequestArgs, MutationinviteInvestorRepresentativeArgs, MutationinviteMemberChatGroupArgs, MutationinviteRepresentativeInvestorArgs, MutationlinkChatGroupToDealArgs, MutationlinkChatGroupToDealStepArgs, MutationownerApproveConsignmentRequestArgs, MutationownerAuthorizeForSystemArgs, MutationpreviewAgreementArgs, MutationprogressToNextStepArgs, MutationreadChannelNotificationsArgs, MutationregisterInvestorRepresentativeArgs, MutationrejectManageIndustrialPropertyArgs, MutationrejectTicketsArgs, MutationremoveDealStepParticipantsArgs, MutationremoveMemberChatGroupArgs, MutationremoveUtilityFromProjectArgs, MutationremoveUtilityFromPropertyBranchArgs, MutationrequestBrokerForManageIndustrialPropertyArgs, MutationrequestCreateAccountArgs, MutationrequestCreateAccountClientArgs, MutationrequestUpdateEmailArgs, MutationrequestUpdatePhoneNumberArgs, MutationrestoreAgreementTemplateArgs, MutationscheduleNotificationArgs, MutationsendOtpArgs, MutationsetNewPasswordWhenForgotArgs, MutationsetPinnedMessageArgs, MutationsignAgreementArgs, MutationsignInArgs, MutationupdateAgreementTemplateArgs, MutationupdateAppointmentArgs, MutationupdateBlacklistArgs, MutationupdateChatGroupArgs, MutationupdateChatGroupMemberArgs, MutationupdateChatMessageArgs, MutationupdateClientArgs, MutationupdateClientCategoryArgs, MutationupdateConsignmentRequestArgs, MutationupdateDealStepStatusArgs, MutationupdateForSaleArgs, MutationupdateIndustrialPropertyArgs, MutationupdateOrderRequestArgs, MutationupdatePaymentInstallmentArgs, MutationupdatePaymentProcessArgs, MutationupdateProfileArgs, MutationupdateProjectArgs, MutationupdatePropertyMapArgs, MutationupdatePropertyVisualizationArgs, MutationupdateUtilityArgs, MutationupgradeToBrokerFromClientArgs, MutationupgradeToInvestorRepresentativeFromClientArgs, MutationuploadAgreementArgs, MutationuploadConfidentialityAgreementArgs, MutationuploadDocumentByAdministratorArgs, MutationuploadDocumentByInvestorArgs, MutationuploadMediaArgs, MutationuserNotificationSettingArgs, MutationverifyOtpForgotPasswordArgs, MutationverifyZnsOtpArgs, NextResolverFn, NotificationActionItem, NotificationActionItemResolvers, NotificationChannelItemResponse, NotificationChannelItemResponseResolvers, NotificationDetailStatus, NotificationEnv, NotificationMessageItem, NotificationMessageItemResolvers, NotificationMessageItemResponse, NotificationMessageItemResponseResolvers, NotificationScheduleItemResponse, NotificationScheduleItemResponseResolvers, NotificationScheduleResponse, NotificationScheduleResponseResolvers, NotificationScheduleStatus, NotificationSchedulesFilter, NotificationSchedulesResponse, NotificationSchedulesResponseResolvers, NotificationType, NotificationTypeResolvers, NotificationsFilter, NotificationsResponse, NotificationsResponseResolvers, Omit, OrderByInput, OrderRequestExceptions, OrderRequestFilter, OrderRequestResponse, OrderRequestResponseResolvers, OrderRequestType, OrderRequestsFilter, OrderRequestsResponse, OrderRequestsResponseResolvers, Orientation, OrientationResolvers, OtpResponse, OtpResponseResolvers, OtpType, OwnerApproveConsignmentRequestInput, OwnerAuthorizeForSystemInput, OwnerAuthorizeForSystemResponse, OwnerAuthorizeForSystemResponseResolvers, PagePaginationInterface, PagePaginationInterfaceResolvers, ParticipantResponseResponse, ParticipantResponseResponseResolvers, ParticipantRole, ParticipantStatus, PaymentInstallmentFilter, PaymentInstallmentResponse, PaymentInstallmentResponseResolvers, PaymentInstallmentStatus, PaymentInstallmentsFilter, PaymentInstallmentsResponse, PaymentInstallmentsResponseResolvers, PaymentProcessExceptions, PaymentProcessFilter, PaymentProcessResponse, PaymentProcessResponseResolvers, PaymentProcessStatus, PaymentProcessesFilter, PaymentProcessesResponse, PaymentProcessesResponseResolvers, PermissionsResponse, PermissionsResponseResolvers, PolygonCoordinate, PolygonCoordinateInput, PolygonCoordinateResolvers, PreDealExceptions, PreDealFilter, PreDealResponse, PreDealResponseResolvers, PreDealsFilter, PreDealsResponse, PreDealsResponseResolvers, PreviewAgreementInput, PreviewAgreementResponse, PreviewAgreementResponseResolvers, ProfileResponse, ProfileResponseResolvers, ProgressToNextStepInput, ProgressToNextStepResponse, ProgressToNextStepResponseResolvers, ProjectApprovalStatus, ProjectApprovalStatusResolvers, ProjectClassification, ProjectClassificationResolvers, ProjectCurrentStatus, ProjectCurrentStatusResolvers, ProjectDocument, ProjectDocumentResolvers, ProjectFilter, ProjectPropertyMap, ProjectPropertyMapResolvers, ProjectProvince, ProjectProvinceResolvers, ProjectResponse, ProjectResponseResolvers, ProjectStage, ProjectStageResolvers, ProjectStandard, ProjectStandardResolvers, ProjectType, ProjectTypeResolvers, ProjectUser, ProjectUserResolvers, ProjectUtility, ProjectUtilityResolvers, ProjectWard, ProjectWardResolvers, PropertiesVisualizationResponse, PropertiesVisualizationResponseResolvers, PropertyApprovalStatus, PropertyApprovalStatusResolvers, PropertyAuthorizationType, PropertyAuthorizationTypeResolvers, PropertyExceptions, PropertyFilter, PropertyIdentifierType, PropertyLandCurrentStatus, PropertyLandCurrentStatusResolvers, PropertyLegalStatus, PropertyLegalStatusResolvers, PropertyMapItem, PropertyMapItemResolvers, PropertyMapsFilter, PropertyMapsResponse, PropertyMapsResponseResolvers, PropertyOperationStatus, PropertyOperationStatusResolvers, PropertyResponse, PropertyResponseResolvers, PropertyTransactionStatus, PropertyType, PropertyTypeResolvers, PropertyVisualizationFilter, PropertyVisualizationItem, PropertyVisualizationItemResolvers, ProvinceExceptions, ProvinceResponse, ProvinceResponseResolvers, ProvincesFilter, ProvincesResponse, ProvincesResponseResolvers, Query, QueryResolvers, QueryagreementTemplateArgs, QueryagreementTemplatesArgs, QueryappointmentArgs, QueryappointmentsArgs, QueryblacklistArgs, QueryblacklistsArgs, QuerychatGroupArgs, QuerychatGroupMembersArgs, QuerychatGroupsArgs, QuerychatMessagesArgs, QuerycheckNicknameAvailabilityArgs, QueryclientArgs, QueryclientCategoriesArgs, QueryclientCategoryArgs, QueryclientsArgs, QueryconsignmentRequestArgs, QueryconsignmentRequestsArgs, QuerydealStepsArgs, QuerydealSummaryArgs, QuerydealsArgs, QueryforSaleArgs, QueryforSalesArgs, QueryindustrialPropertiesArgs, QueryinvestorRepresentativeArgs, QueryinvestorRepresentativesArgs, QuerymediaArgs, QuerymediasArgs, QuerynotificationScheduleArgs, QuerynotificationSchedulesArgs, QuerynotificationsArgs, QueryorderRequestArgs, QueryorderRequestsArgs, QuerypaymentInstallmentArgs, QuerypaymentInstallmentsArgs, QuerypaymentProcessArgs, QuerypaymentProcessesArgs, QuerypreDealArgs, QuerypreDealsArgs, QueryprojectArgs, QueryprojectsArgs, QuerypropertiesVisualizationsArgs, QuerypropertyArgs, QuerypropertyMapsArgs, QueryprovincesArgs, QueryticketsArgs, QueryutilitiesArgs, QuerywardsArgs, ReadAllNotificationsResponse, ReadAllNotificationsResponseResolvers, ReadChannelNotificationsInput, RegisterExceptions, RegisterInvestorRepresentativeInput, RegisterInvestorRepresentativeResponse, RegisterInvestorRepresentativeResponseResolvers, RejectManageIndustrialPropertyInput, RejectManageIndustrialPropertyResponse, RejectManageIndustrialPropertyResponseResolvers, RejectTicket, RejectTicketsInput, RejectTicketsResponse, RejectTicketsResponseResolvers, RemoveDealStepParticipantsInput, RemoveDealStepParticipantsResponse, RemoveDealStepParticipantsResponseResolvers, RemoveMemberChatGroupInput, RemoveMemberChatGroupResponse, RemoveMemberChatGroupResponseResolvers, RequestBrokerForManageIndustrialPropertyInput, RequestBrokerForManageIndustrialPropertyResponse, RequestBrokerForManageIndustrialPropertyResponseResolvers, RequestCreateAccountClientInput, RequestCreateAccountClientResponse, RequestCreateAccountClientResponseResolvers, RequestCreateAccountInput, RequestCreateAccountResponse, RequestCreateAccountResponseResolvers, RequestUpdateEmailInput, RequestUpdateEmailResponse, RequestUpdateEmailResponseResolvers, RequestUpdatePhoneNumberInput, RequestUpdatePhoneNumberResponse, RequestUpdatePhoneNumberResponseResolvers, RequireFields, Resolver, ResolverFn, ResolverTypeWrapper, ResolverWithResolve, Resolvers, ResolversInterfaceTypes, ResolversParentTypes, ResolversTypes, RestoreAgreementTemplateResponse, RestoreAgreementTemplateResponseResolvers, RoleCodes, RoleExceptions, Scalars, ScheduleNotificationInput, ScheduleType, SchedulerStatus, SearchBlacklistsFilter, SearchBlacklistsResponse, SearchBlacklistsResponseResolvers, SearchDealResponse, SearchDealResponseResolvers, SearchDealsResponse, SearchDealsResponseResolvers, SearchProjectResponse, SearchProjectResponseResolvers, SearchProjectsFilter, SearchProjectsResponse, SearchProjectsResponseResolvers, SendOtpInput, ServiceFee, ServiceFeeInput, ServiceFeeResolvers, SetNewPasswordWhenForgotInput, SetNewPasswordWhenForgotResponse, SetNewPasswordWhenForgotResponseResolvers, SetPinnedMessageInput, SetPinnedMessageResponse, SetPinnedMessageResponseResolvers, SettingExceptions, SignAgreementInput, SignAgreementResponse, SignAgreementResponseResolvers, SignInInput, SignInResponse, SignInResponseResolvers, SignOutResponse, SignOutResponseResolvers, SortDirection, SortDirectionResolvers, Subscription, SubscriptionChatMessagesInput, SubscriptionObject, SubscriptionResolveFn, SubscriptionResolver, SubscriptionResolverObject, SubscriptionResolvers, SubscriptionSubscribeFn, SubscriptionSubscriberObject, SubscriptionchatMessagesArgs, Ticket, TicketExceptions, TicketResolvers, TicketStatus, TicketType, TicketsFilter, TypeResolveFn, UpdateAgreementTemplateInput, UpdateAgreementTemplateResponse, UpdateAgreementTemplateResponseResolvers, UpdateAppointmentInput, UpdateAppointmentResponse, UpdateAppointmentResponseResolvers, UpdateAvatarInput, UpdateAvatarResponse, UpdateAvatarResponseResolvers, UpdateBlacklistInput, UpdateBlacklistResponse, UpdateBlacklistResponseResolvers, UpdateChatGroupInput, UpdateChatGroupMemberInput, UpdateChatGroupMemberResponse, UpdateChatGroupMemberResponseResolvers, UpdateChatGroupResponse, UpdateChatGroupResponseResolvers, UpdateChatMessageInput, UpdateChatMessageResponse, UpdateChatMessageResponseResolvers, UpdateClientCategoryInput, UpdateClientCategoryResponse, UpdateClientCategoryResponseResolvers, UpdateClientInput, UpdateClientResponse, UpdateClientResponseResolvers, UpdateConsignmentRequestInput, UpdateConsignmentRequestResponse, UpdateConsignmentRequestResponseResolvers, UpdateDealStepStatusInput, UpdateDealStepStatusResponse, UpdateDealStepStatusResponseResolvers, UpdateForSaleInput, UpdateForSaleResponse, UpdateForSaleResponseResolvers, UpdateIndustrialPropertyInput, UpdateIndustrialPropertyResponse, UpdateIndustrialPropertyResponseResolvers, UpdateLandMapInput, UpdateLandMapResponse, UpdateLandMapResponseResolvers, UpdateOrderRequestInput, UpdateOrderRequestResponse, UpdateOrderRequestResponseResolvers, UpdatePaymentInstallmentInput, UpdatePaymentInstallmentResponse, UpdatePaymentInstallmentResponseResolvers, UpdatePaymentProcessInput, UpdatePaymentProcessResponse, UpdatePaymentProcessResponseResolvers, UpdateProfileInput, UpdateProfileResponse, UpdateProfileResponseResolvers, UpdateProjectInput, UpdateProjectResponse, UpdateProjectResponseResolvers, UpdatePropertyMapInput, UpdatePropertyMapResponse, UpdatePropertyMapResponseResolvers, UpdatePropertyVisualizationInput, UpdatePropertyVisualizationResponse, UpdatePropertyVisualizationResponseResolvers, UpdateUtilityInput, UpgradeToBrokerFromClientInput, UpgradeToBrokerFromClientResponse, UpgradeToBrokerFromClientResponseResolvers, UpgradeToInvestorRepresentativeFromClientInput, UpgradeToInvestorRepresentativeFromClientResponse, UpgradeToInvestorRepresentativeFromClientResponseResolvers, UploadAgreementInput, UploadAgreementResponse, UploadAgreementResponseResolvers, UploadConfidentialityAgreementInput, UploadConfidentialityAgreementResponse, UploadConfidentialityAgreementResponseResolvers, UploadDocumentByAdministratorInput, UploadDocumentByAdministratorResponse, UploadDocumentByAdministratorResponseResolvers, UploadDocumentByInvestorInput, UploadDocumentByInvestorResponse, UploadDocumentByInvestorResponseResolvers, UploadMediaInput, UserExceptions, UserGender, UserGenderResolvers, UserHistoryType, UserLanguage, UserLanguageResolvers, UserNotificationSettingInput, UserPermissionsResponse, UserPermissionsResponseResolvers, UserStatus, UserStatusResolvers, UtilitiesFilter, UtilitiesResponse, UtilitiesResponseResolvers, UtilityResponse, UtilityResponseResolvers, VerificationType, VerifyOtpForgotPasswordInput, VerifyOtpForgotPasswordResponse, VerifyOtpForgotPasswordResponseResolvers, VerifyOtpInput, VerifyOtpResponse, VerifyOtpResponseResolvers, VersionAction, WardExceptions, WardResponse, WardResponseResolvers, WardsFilter, WardsResponse, WardsResponseResolvers, authDirectiveArgs, authDirectiveResolver, permissionDirectiveArgs, permissionDirectiveResolver, rateLimitDirectiveArgs, rateLimitDirectiveResolver };
|
|
7448
7578
|
//# sourceMappingURL=index.d.cts.map
|