@homespot-sdk/core 0.0.322 → 0.0.324

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.
@@ -167,6 +167,9 @@ export declare const zRescheduleRequest: z.ZodObject<{
167
167
  start: z.ZodISODateTime;
168
168
  durationMinutes: z.ZodOptional<z.ZodInt>;
169
169
  }, z.core.$strip>;
170
+ export declare const zUpdateListingPriceRequest: z.ZodObject<{
171
+ price: z.ZodNumber;
172
+ }, z.core.$strip>;
170
173
  export declare const zAgreementRequest: z.ZodObject<{
171
174
  type: z.ZodEnum<{
172
175
  EXCLUSIVE: "EXCLUSIVE";
@@ -232,6 +235,13 @@ export declare const zCaptureInterestRequest: z.ZodObject<{
232
235
  }>;
233
236
  }, z.core.$strip>>;
234
237
  }, z.core.$strip>;
238
+ export declare const zTitleRequest: z.ZodObject<{
239
+ title: z.ZodString;
240
+ }, z.core.$strip>;
241
+ export declare const zRecommendListingRequest: z.ZodObject<{
242
+ externalPropertyId: z.ZodUUID;
243
+ externalListingId: z.ZodUUID;
244
+ }, z.core.$strip>;
235
245
  export declare const zCommentBodyRequest: z.ZodObject<{
236
246
  body: z.ZodString;
237
247
  }, z.core.$strip>;
@@ -367,6 +377,40 @@ export declare const zTransferFundsRequest: z.ZodObject<{
367
377
  export declare const zDepositFundsRequest: z.ZodObject<{
368
378
  amount: z.ZodNumber;
369
379
  }, z.core.$strip>;
380
+ export declare const zSubscriptionAddressRequest: z.ZodObject<{
381
+ country: z.ZodString;
382
+ city: z.ZodString;
383
+ district: z.ZodString;
384
+ subdistrict: z.ZodString;
385
+ street: z.ZodString;
386
+ }, z.core.$strip>;
387
+ export declare const zSubscribeRequest: z.ZodObject<{
388
+ plan: z.ZodEnum<{
389
+ STARTER: "STARTER";
390
+ PRO: "PRO";
391
+ ENTERPRISE: "ENTERPRISE";
392
+ }>;
393
+ billingCycle: z.ZodEnum<{
394
+ MONTHLY: "MONTHLY";
395
+ ANNUAL: "ANNUAL";
396
+ }>;
397
+ name: z.ZodString;
398
+ email: z.ZodEmail;
399
+ phone: z.ZodString;
400
+ subdomain: z.ZodString;
401
+ address: z.ZodObject<{
402
+ country: z.ZodString;
403
+ city: z.ZodString;
404
+ district: z.ZodString;
405
+ subdistrict: z.ZodString;
406
+ street: z.ZodString;
407
+ }, z.core.$strip>;
408
+ }, z.core.$strip>;
409
+ export declare const zSubscriptionCheckoutResponse: z.ZodObject<{
410
+ checkoutUrl: z.ZodOptional<z.ZodString>;
411
+ agencyId: z.ZodOptional<z.ZodUUID>;
412
+ subscriptionId: z.ZodOptional<z.ZodUUID>;
413
+ }, z.core.$strip>;
370
414
  export declare const zIdResponseInteger: z.ZodObject<{
371
415
  id: z.ZodInt;
372
416
  }, z.core.$strip>;
@@ -539,6 +583,15 @@ export declare const zProblemDetail: z.ZodObject<{
539
583
  export declare const zIdResponseUuid: z.ZodObject<{
540
584
  id: z.ZodUUID;
541
585
  }, z.core.$strip>;
586
+ export declare const zCreateListingRequest: z.ZodObject<{
587
+ listingType: z.ZodEnum<{
588
+ SALE: "SALE";
589
+ RENT: "RENT";
590
+ DAILY_RENT: "DAILY_RENT";
591
+ PLEDGE: "PLEDGE";
592
+ }>;
593
+ askingPrice: z.ZodNumber;
594
+ }, z.core.$strip>;
542
595
  export declare const zAddDealRequest: z.ZodObject<{
543
596
  listingId: z.ZodCoercedBigInt<unknown>;
544
597
  commissionType: z.ZodEnum<{
@@ -551,15 +604,20 @@ export declare const zAddDealRequest: z.ZodObject<{
551
604
  amount: z.ZodOptional<z.ZodNumber>;
552
605
  factor: z.ZodOptional<z.ZodNumber>;
553
606
  }, z.core.$strip>;
554
- export declare const zInterestId: z.ZodObject<{
555
- value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
607
+ export declare const zCloseListingRequest: z.ZodObject<{
608
+ withdrawExternal: z.ZodOptional<z.ZodBoolean>;
556
609
  }, z.core.$strip>;
557
- export declare const zTitleRequest: z.ZodObject<{
558
- title: z.ZodString;
610
+ export declare const zClosePropertyRequest: z.ZodObject<{
611
+ reason: z.ZodEnum<{
612
+ OTHER: "OTHER";
613
+ DEAL_CLOSED: "DEAL_CLOSED";
614
+ OWNER_WITHDREW: "OWNER_WITHDREW";
615
+ MANDATE_EXPIRED: "MANDATE_EXPIRED";
616
+ }>;
617
+ withdrawExternal: z.ZodOptional<z.ZodBoolean>;
559
618
  }, z.core.$strip>;
560
- export declare const zRecommendListingRequest: z.ZodObject<{
561
- externalPropertyId: z.ZodUUID;
562
- externalListingId: z.ZodUUID;
619
+ export declare const zInterestId: z.ZodObject<{
620
+ value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
563
621
  }, z.core.$strip>;
564
622
  export declare const zOnboardClientRequest: z.ZodObject<{
565
623
  title: z.ZodOptional<z.ZodString>;
@@ -648,6 +706,7 @@ export declare const zOrganizationSummaryViewResponse: z.ZodObject<{
648
706
  PAYMENT_FAILED: "PAYMENT_FAILED";
649
707
  INACTIVE: "INACTIVE";
650
708
  }>;
709
+ phone: z.ZodString;
651
710
  isPhoneVerified: z.ZodBoolean;
652
711
  }, z.core.$strip>;
653
712
  export declare const zUserSummaryViewResponse: z.ZodObject<{
@@ -691,6 +750,7 @@ export declare const zUserContextViewResponse: z.ZodObject<{
691
750
  PAYMENT_FAILED: "PAYMENT_FAILED";
692
751
  INACTIVE: "INACTIVE";
693
752
  }>;
753
+ phone: z.ZodString;
694
754
  isPhoneVerified: z.ZodBoolean;
695
755
  }, z.core.$strip>>;
696
756
  }, z.core.$strip>;
@@ -1490,8 +1550,8 @@ export declare const zRecommendationResponse: z.ZodObject<{
1490
1550
  title: z.ZodString;
1491
1551
  createdAt: z.ZodISODateTime;
1492
1552
  status: z.ZodEnum<{
1493
- DRAFT: "DRAFT";
1494
- SHARED: "SHARED";
1553
+ UNPUBLISHED: "UNPUBLISHED";
1554
+ PUBLISHED: "PUBLISHED";
1495
1555
  CLOSED: "CLOSED";
1496
1556
  }>;
1497
1557
  recommendations: z.ZodObject<{
@@ -2954,8 +3014,8 @@ export declare const zInterestResponse: z.ZodObject<{
2954
3014
  id: z.ZodCoercedBigInt<unknown>;
2955
3015
  title: z.ZodString;
2956
3016
  status: z.ZodEnum<{
2957
- DRAFT: "DRAFT";
2958
- SHARED: "SHARED";
3017
+ UNPUBLISHED: "UNPUBLISHED";
3018
+ PUBLISHED: "PUBLISHED";
2959
3019
  CLOSED: "CLOSED";
2960
3020
  }>;
2961
3021
  shareToken: z.ZodUUID;
@@ -3201,6 +3261,14 @@ export declare const zPagedModelContactGridResponse: z.ZodObject<{
3201
3261
  totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3202
3262
  }, z.core.$strip>>;
3203
3263
  }, z.core.$strip>;
3264
+ export declare const zActiveItemsResult: z.ZodObject<{
3265
+ propertyIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
3266
+ value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3267
+ }, z.core.$strip>>>;
3268
+ interestIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
3269
+ value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
3270
+ }, z.core.$strip>>>;
3271
+ }, z.core.$strip>;
3204
3272
  export declare const zAgreementResponse: z.ZodObject<{
3205
3273
  agreement: z.ZodEnum<{
3206
3274
  EXCLUSIVE: "EXCLUSIVE";
@@ -3482,8 +3550,8 @@ export declare const zClient360Response: z.ZodObject<{
3482
3550
  id: z.ZodCoercedBigInt<unknown>;
3483
3551
  title: z.ZodString;
3484
3552
  status: z.ZodEnum<{
3485
- DRAFT: "DRAFT";
3486
- SHARED: "SHARED";
3553
+ UNPUBLISHED: "UNPUBLISHED";
3554
+ PUBLISHED: "PUBLISHED";
3487
3555
  CLOSED: "CLOSED";
3488
3556
  }>;
3489
3557
  shareToken: z.ZodUUID;
@@ -4190,6 +4258,21 @@ export declare const zPutMeetingsByMeetingIdCancelData: z.ZodObject<{
4190
4258
  * No Content
4191
4259
  */
4192
4260
  export declare const zPutMeetingsByMeetingIdCancelResponse: z.ZodVoid;
4261
+ export declare const zPutContactsByContactIdPropertiesByPropertyIdListingsByListingIdPriceData: z.ZodObject<{
4262
+ body: z.ZodObject<{
4263
+ price: z.ZodNumber;
4264
+ }, z.core.$strip>;
4265
+ path: z.ZodObject<{
4266
+ contactId: z.ZodCoercedBigInt<unknown>;
4267
+ propertyId: z.ZodCoercedBigInt<unknown>;
4268
+ listingId: z.ZodCoercedBigInt<unknown>;
4269
+ }, z.core.$strip>;
4270
+ query: z.ZodOptional<z.ZodNever>;
4271
+ }, z.core.$strip>;
4272
+ /**
4273
+ * No Content
4274
+ */
4275
+ export declare const zPutContactsByContactIdPropertiesByPropertyIdListingsByListingIdPriceResponse: z.ZodVoid;
4193
4276
  export declare const zPutContactsByContactIdPropertiesByPropertyIdAgreementData: z.ZodObject<{
4194
4277
  body: z.ZodObject<{
4195
4278
  type: z.ZodEnum<{
@@ -4204,6 +4287,18 @@ export declare const zPutContactsByContactIdPropertiesByPropertyIdAgreementData:
4204
4287
  }, z.core.$strip>;
4205
4288
  query: z.ZodOptional<z.ZodNever>;
4206
4289
  }, z.core.$strip>;
4290
+ export declare const zDeleteContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
4291
+ body: z.ZodOptional<z.ZodNever>;
4292
+ path: z.ZodObject<{
4293
+ contactId: z.ZodCoercedBigInt<unknown>;
4294
+ interestId: z.ZodCoercedBigInt<unknown>;
4295
+ }, z.core.$strip>;
4296
+ query: z.ZodOptional<z.ZodNever>;
4297
+ }, z.core.$strip>;
4298
+ /**
4299
+ * No Content
4300
+ */
4301
+ export declare const zDeleteContactsByContactIdInterestsByInterestIdResponse: z.ZodVoid;
4207
4302
  export declare const zGetContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
4208
4303
  body: z.ZodOptional<z.ZodNever>;
4209
4304
  path: z.ZodObject<{
@@ -4219,8 +4314,8 @@ export declare const zGetContactsByContactIdInterestsByInterestIdResponse: z.Zod
4219
4314
  id: z.ZodCoercedBigInt<unknown>;
4220
4315
  title: z.ZodString;
4221
4316
  status: z.ZodEnum<{
4222
- DRAFT: "DRAFT";
4223
- SHARED: "SHARED";
4317
+ UNPUBLISHED: "UNPUBLISHED";
4318
+ PUBLISHED: "PUBLISHED";
4224
4319
  CLOSED: "CLOSED";
4225
4320
  }>;
4226
4321
  shareToken: z.ZodUUID;
@@ -4386,6 +4481,79 @@ export declare const zPutContactsByContactIdInterestsByInterestIdData: z.ZodObje
4386
4481
  * No Content
4387
4482
  */
4388
4483
  export declare const zPutContactsByContactIdInterestsByInterestIdResponse: z.ZodVoid;
4484
+ export declare const zPutContactsByContactIdInterestsByInterestIdUnpublishData: z.ZodObject<{
4485
+ body: z.ZodOptional<z.ZodNever>;
4486
+ path: z.ZodObject<{
4487
+ contactId: z.ZodCoercedBigInt<unknown>;
4488
+ interestId: z.ZodCoercedBigInt<unknown>;
4489
+ }, z.core.$strip>;
4490
+ query: z.ZodOptional<z.ZodNever>;
4491
+ }, z.core.$strip>;
4492
+ /**
4493
+ * No Content
4494
+ */
4495
+ export declare const zPutContactsByContactIdInterestsByInterestIdUnpublishResponse: z.ZodVoid;
4496
+ export declare const zPutContactsByContactIdInterestsByInterestIdReopenData: z.ZodObject<{
4497
+ body: z.ZodOptional<z.ZodNever>;
4498
+ path: z.ZodObject<{
4499
+ contactId: z.ZodCoercedBigInt<unknown>;
4500
+ interestId: z.ZodCoercedBigInt<unknown>;
4501
+ }, z.core.$strip>;
4502
+ query: z.ZodOptional<z.ZodNever>;
4503
+ }, z.core.$strip>;
4504
+ /**
4505
+ * No Content
4506
+ */
4507
+ export declare const zPutContactsByContactIdInterestsByInterestIdReopenResponse: z.ZodVoid;
4508
+ export declare const zPutContactsByContactIdInterestsByInterestIdRenameData: z.ZodObject<{
4509
+ body: z.ZodObject<{
4510
+ title: z.ZodString;
4511
+ }, z.core.$strip>;
4512
+ path: z.ZodObject<{
4513
+ contactId: z.ZodCoercedBigInt<unknown>;
4514
+ interestId: z.ZodCoercedBigInt<unknown>;
4515
+ }, z.core.$strip>;
4516
+ query: z.ZodOptional<z.ZodNever>;
4517
+ }, z.core.$strip>;
4518
+ /**
4519
+ * No Content
4520
+ */
4521
+ export declare const zPutContactsByContactIdInterestsByInterestIdRenameResponse: z.ZodVoid;
4522
+ export declare const zPutContactsByContactIdInterestsByInterestIdPublishData: z.ZodObject<{
4523
+ body: z.ZodOptional<z.ZodNever>;
4524
+ path: z.ZodObject<{
4525
+ contactId: z.ZodCoercedBigInt<unknown>;
4526
+ interestId: z.ZodCoercedBigInt<unknown>;
4527
+ }, z.core.$strip>;
4528
+ query: z.ZodOptional<z.ZodNever>;
4529
+ }, z.core.$strip>;
4530
+ /**
4531
+ * No Content
4532
+ */
4533
+ export declare const zPutContactsByContactIdInterestsByInterestIdPublishResponse: z.ZodVoid;
4534
+ export declare const zPutContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
4535
+ body: z.ZodObject<{
4536
+ externalPropertyId: z.ZodUUID;
4537
+ externalListingId: z.ZodUUID;
4538
+ }, z.core.$strip>;
4539
+ path: z.ZodObject<{
4540
+ contactId: z.ZodCoercedBigInt<unknown>;
4541
+ interestId: z.ZodCoercedBigInt<unknown>;
4542
+ }, z.core.$strip>;
4543
+ query: z.ZodOptional<z.ZodNever>;
4544
+ }, z.core.$strip>;
4545
+ export declare const zPutContactsByContactIdInterestsByInterestIdCloseData: z.ZodObject<{
4546
+ body: z.ZodOptional<z.ZodNever>;
4547
+ path: z.ZodObject<{
4548
+ contactId: z.ZodCoercedBigInt<unknown>;
4549
+ interestId: z.ZodCoercedBigInt<unknown>;
4550
+ }, z.core.$strip>;
4551
+ query: z.ZodOptional<z.ZodNever>;
4552
+ }, z.core.$strip>;
4553
+ /**
4554
+ * No Content
4555
+ */
4556
+ export declare const zPutContactsByContactIdInterestsByInterestIdCloseResponse: z.ZodVoid;
4389
4557
  export declare const zDeleteContactsByContactIdCommentsByCommentIdData: z.ZodObject<{
4390
4558
  body: z.ZodOptional<z.ZodNever>;
4391
4559
  path: z.ZodObject<{
@@ -4469,6 +4637,17 @@ export declare const zPutContactByContactIdUpdateContactDetailsData: z.ZodObject
4469
4637
  * No Content
4470
4638
  */
4471
4639
  export declare const zPutContactByContactIdUpdateContactDetailsResponse: z.ZodVoid;
4640
+ export declare const zPutContactByContactIdReopenData: z.ZodObject<{
4641
+ body: z.ZodOptional<z.ZodNever>;
4642
+ path: z.ZodObject<{
4643
+ contactId: z.ZodCoercedBigInt<unknown>;
4644
+ }, z.core.$strip>;
4645
+ query: z.ZodOptional<z.ZodNever>;
4646
+ }, z.core.$strip>;
4647
+ /**
4648
+ * No Content
4649
+ */
4650
+ export declare const zPutContactByContactIdReopenResponse: z.ZodVoid;
4472
4651
  export declare const zPutContactByContactIdLostData: z.ZodObject<{
4473
4652
  body: z.ZodObject<{
4474
4653
  reason: z.ZodEnum<{
@@ -4716,6 +4895,49 @@ export declare const zPostWalletDepositData: z.ZodObject<{
4716
4895
  * No Content
4717
4896
  */
4718
4897
  export declare const zPostWalletDepositResponse: z.ZodVoid;
4898
+ export declare const zDeleteSubscriptionsData: z.ZodObject<{
4899
+ body: z.ZodOptional<z.ZodNever>;
4900
+ path: z.ZodOptional<z.ZodNever>;
4901
+ query: z.ZodOptional<z.ZodNever>;
4902
+ }, z.core.$strip>;
4903
+ /**
4904
+ * No Content
4905
+ */
4906
+ export declare const zDeleteSubscriptionsResponse: z.ZodVoid;
4907
+ export declare const zPostSubscriptionsData: z.ZodObject<{
4908
+ body: z.ZodObject<{
4909
+ plan: z.ZodEnum<{
4910
+ STARTER: "STARTER";
4911
+ PRO: "PRO";
4912
+ ENTERPRISE: "ENTERPRISE";
4913
+ }>;
4914
+ billingCycle: z.ZodEnum<{
4915
+ MONTHLY: "MONTHLY";
4916
+ ANNUAL: "ANNUAL";
4917
+ }>;
4918
+ name: z.ZodString;
4919
+ email: z.ZodEmail;
4920
+ phone: z.ZodString;
4921
+ subdomain: z.ZodString;
4922
+ address: z.ZodObject<{
4923
+ country: z.ZodString;
4924
+ city: z.ZodString;
4925
+ district: z.ZodString;
4926
+ subdistrict: z.ZodString;
4927
+ street: z.ZodString;
4928
+ }, z.core.$strip>;
4929
+ }, z.core.$strip>;
4930
+ path: z.ZodOptional<z.ZodNever>;
4931
+ query: z.ZodOptional<z.ZodNever>;
4932
+ }, z.core.$strip>;
4933
+ /**
4934
+ * Created
4935
+ */
4936
+ export declare const zPostSubscriptionsResponse: z.ZodObject<{
4937
+ checkoutUrl: z.ZodOptional<z.ZodString>;
4938
+ agencyId: z.ZodOptional<z.ZodUUID>;
4939
+ subscriptionId: z.ZodOptional<z.ZodUUID>;
4940
+ }, z.core.$strip>;
4719
4941
  export declare const zGetRolesData: z.ZodObject<{
4720
4942
  body: z.ZodOptional<z.ZodNever>;
4721
4943
  path: z.ZodOptional<z.ZodNever>;
@@ -4850,6 +5072,11 @@ export declare const zPostPublicWebhooksMetaFbData: z.ZodObject<{
4850
5072
  'X-Hub-Signature-256': z.ZodOptional<z.ZodString>;
4851
5073
  }, z.core.$strip>>;
4852
5074
  }, z.core.$strip>;
5075
+ export declare const zPostPublicWebhooksFlittData: z.ZodObject<{
5076
+ body: z.ZodRecord<z.ZodString, z.ZodUnknown>;
5077
+ path: z.ZodOptional<z.ZodNever>;
5078
+ query: z.ZodOptional<z.ZodNever>;
5079
+ }, z.core.$strip>;
4853
5080
  export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateData: z.ZodObject<{
4854
5081
  body: z.ZodObject<{
4855
5082
  decision: z.ZodEnum<{
@@ -5273,6 +5500,53 @@ export declare const zPostConversationsByConversationIdMessagesData: z.ZodObject
5273
5500
  export declare const zPostConversationsByConversationIdMessagesResponse: z.ZodObject<{
5274
5501
  id: z.ZodUUID;
5275
5502
  }, z.core.$strip>;
5503
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdReopenData: z.ZodObject<{
5504
+ body: z.ZodOptional<z.ZodNever>;
5505
+ path: z.ZodObject<{
5506
+ contactId: z.ZodCoercedBigInt<unknown>;
5507
+ propertyId: z.ZodCoercedBigInt<unknown>;
5508
+ }, z.core.$strip>;
5509
+ query: z.ZodOptional<z.ZodNever>;
5510
+ }, z.core.$strip>;
5511
+ /**
5512
+ * No Content
5513
+ */
5514
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdReopenResponse: z.ZodVoid;
5515
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsData: z.ZodObject<{
5516
+ body: z.ZodObject<{
5517
+ listingType: z.ZodEnum<{
5518
+ SALE: "SALE";
5519
+ RENT: "RENT";
5520
+ DAILY_RENT: "DAILY_RENT";
5521
+ PLEDGE: "PLEDGE";
5522
+ }>;
5523
+ askingPrice: z.ZodNumber;
5524
+ }, z.core.$strip>;
5525
+ path: z.ZodObject<{
5526
+ contactId: z.ZodCoercedBigInt<unknown>;
5527
+ propertyId: z.ZodCoercedBigInt<unknown>;
5528
+ }, z.core.$strip>;
5529
+ query: z.ZodOptional<z.ZodNever>;
5530
+ }, z.core.$strip>;
5531
+ /**
5532
+ * Created
5533
+ */
5534
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsResponse: z.ZodObject<{
5535
+ id: z.ZodUUID;
5536
+ }, z.core.$strip>;
5537
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenData: z.ZodObject<{
5538
+ body: z.ZodOptional<z.ZodNever>;
5539
+ path: z.ZodObject<{
5540
+ contactId: z.ZodCoercedBigInt<unknown>;
5541
+ propertyId: z.ZodCoercedBigInt<unknown>;
5542
+ listingId: z.ZodCoercedBigInt<unknown>;
5543
+ }, z.core.$strip>;
5544
+ query: z.ZodOptional<z.ZodNever>;
5545
+ }, z.core.$strip>;
5546
+ /**
5547
+ * No Content
5548
+ */
5549
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenResponse: z.ZodVoid;
5276
5550
  export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
5277
5551
  body: z.ZodOptional<z.ZodNever>;
5278
5552
  path: z.ZodObject<{
@@ -5310,6 +5584,41 @@ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByLis
5310
5584
  * No Content
5311
5585
  */
5312
5586
  export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
5587
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdCloseData: z.ZodObject<{
5588
+ body: z.ZodObject<{
5589
+ withdrawExternal: z.ZodOptional<z.ZodBoolean>;
5590
+ }, z.core.$strip>;
5591
+ path: z.ZodObject<{
5592
+ contactId: z.ZodCoercedBigInt<unknown>;
5593
+ propertyId: z.ZodCoercedBigInt<unknown>;
5594
+ listingId: z.ZodCoercedBigInt<unknown>;
5595
+ }, z.core.$strip>;
5596
+ query: z.ZodOptional<z.ZodNever>;
5597
+ }, z.core.$strip>;
5598
+ /**
5599
+ * No Content
5600
+ */
5601
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdCloseResponse: z.ZodVoid;
5602
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdCloseData: z.ZodObject<{
5603
+ body: z.ZodObject<{
5604
+ reason: z.ZodEnum<{
5605
+ OTHER: "OTHER";
5606
+ DEAL_CLOSED: "DEAL_CLOSED";
5607
+ OWNER_WITHDREW: "OWNER_WITHDREW";
5608
+ MANDATE_EXPIRED: "MANDATE_EXPIRED";
5609
+ }>;
5610
+ withdrawExternal: z.ZodOptional<z.ZodBoolean>;
5611
+ }, z.core.$strip>;
5612
+ path: z.ZodObject<{
5613
+ contactId: z.ZodCoercedBigInt<unknown>;
5614
+ propertyId: z.ZodCoercedBigInt<unknown>;
5615
+ }, z.core.$strip>;
5616
+ query: z.ZodOptional<z.ZodNever>;
5617
+ }, z.core.$strip>;
5618
+ /**
5619
+ * No Content
5620
+ */
5621
+ export declare const zPostContactsByContactIdPropertiesByPropertyIdCloseResponse: z.ZodVoid;
5313
5622
  export declare const zPostContactsByContactIdInterestsData: z.ZodObject<{
5314
5623
  body: z.ZodObject<{
5315
5624
  propertyTypes: z.ZodArray<z.ZodEnum<{
@@ -5371,67 +5680,6 @@ export declare const zPostContactsByContactIdInterestsData: z.ZodObject<{
5371
5680
  export declare const zPostContactsByContactIdInterestsResponse: z.ZodObject<{
5372
5681
  value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
5373
5682
  }, z.core.$strip>;
5374
- export declare const zPostContactsByContactIdInterestsByInterestIdShareData: z.ZodObject<{
5375
- body: z.ZodOptional<z.ZodNever>;
5376
- path: z.ZodObject<{
5377
- contactId: z.ZodCoercedBigInt<unknown>;
5378
- interestId: z.ZodCoercedBigInt<unknown>;
5379
- }, z.core.$strip>;
5380
- query: z.ZodOptional<z.ZodNever>;
5381
- }, z.core.$strip>;
5382
- /**
5383
- * No Content
5384
- */
5385
- export declare const zPostContactsByContactIdInterestsByInterestIdShareResponse: z.ZodVoid;
5386
- export declare const zPostContactsByContactIdInterestsByInterestIdReviseData: z.ZodObject<{
5387
- body: z.ZodOptional<z.ZodNever>;
5388
- path: z.ZodObject<{
5389
- contactId: z.ZodCoercedBigInt<unknown>;
5390
- interestId: z.ZodCoercedBigInt<unknown>;
5391
- }, z.core.$strip>;
5392
- query: z.ZodOptional<z.ZodNever>;
5393
- }, z.core.$strip>;
5394
- /**
5395
- * No Content
5396
- */
5397
- export declare const zPostContactsByContactIdInterestsByInterestIdReviseResponse: z.ZodVoid;
5398
- export declare const zPostContactsByContactIdInterestsByInterestIdRenameData: z.ZodObject<{
5399
- body: z.ZodObject<{
5400
- title: z.ZodString;
5401
- }, z.core.$strip>;
5402
- path: z.ZodObject<{
5403
- contactId: z.ZodCoercedBigInt<unknown>;
5404
- interestId: z.ZodCoercedBigInt<unknown>;
5405
- }, z.core.$strip>;
5406
- query: z.ZodOptional<z.ZodNever>;
5407
- }, z.core.$strip>;
5408
- /**
5409
- * No Content
5410
- */
5411
- export declare const zPostContactsByContactIdInterestsByInterestIdRenameResponse: z.ZodVoid;
5412
- export declare const zPostContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
5413
- body: z.ZodObject<{
5414
- externalPropertyId: z.ZodUUID;
5415
- externalListingId: z.ZodUUID;
5416
- }, z.core.$strip>;
5417
- path: z.ZodObject<{
5418
- contactId: z.ZodCoercedBigInt<unknown>;
5419
- interestId: z.ZodCoercedBigInt<unknown>;
5420
- }, z.core.$strip>;
5421
- query: z.ZodOptional<z.ZodNever>;
5422
- }, z.core.$strip>;
5423
- export declare const zPostContactsByContactIdInterestsByInterestIdCloseData: z.ZodObject<{
5424
- body: z.ZodOptional<z.ZodNever>;
5425
- path: z.ZodObject<{
5426
- contactId: z.ZodCoercedBigInt<unknown>;
5427
- interestId: z.ZodCoercedBigInt<unknown>;
5428
- }, z.core.$strip>;
5429
- query: z.ZodOptional<z.ZodNever>;
5430
- }, z.core.$strip>;
5431
- /**
5432
- * No Content
5433
- */
5434
- export declare const zPostContactsByContactIdInterestsByInterestIdCloseResponse: z.ZodVoid;
5435
5683
  export declare const zDeleteContactsByContactIdCommentsData: z.ZodObject<{
5436
5684
  body: z.ZodOptional<z.ZodNever>;
5437
5685
  path: z.ZodObject<{
@@ -5825,6 +6073,7 @@ export declare const zGetUserMeResponse: z.ZodObject<{
5825
6073
  PAYMENT_FAILED: "PAYMENT_FAILED";
5826
6074
  INACTIVE: "INACTIVE";
5827
6075
  }>;
6076
+ phone: z.ZodString;
5828
6077
  isPhoneVerified: z.ZodBoolean;
5829
6078
  }, z.core.$strip>>;
5830
6079
  }, z.core.$strip>;
@@ -6104,8 +6353,8 @@ export declare const zGetPublicRecomendationsByTokenItemsResponse: z.ZodObject<{
6104
6353
  title: z.ZodString;
6105
6354
  createdAt: z.ZodISODateTime;
6106
6355
  status: z.ZodEnum<{
6107
- DRAFT: "DRAFT";
6108
- SHARED: "SHARED";
6356
+ UNPUBLISHED: "UNPUBLISHED";
6357
+ PUBLISHED: "PUBLISHED";
6109
6358
  CLOSED: "CLOSED";
6110
6359
  }>;
6111
6360
  recommendations: z.ZodObject<{
@@ -7515,8 +7764,8 @@ export declare const zGetContactsByContactIdInterestsByInterestIdRecommendations
7515
7764
  title: z.ZodString;
7516
7765
  createdAt: z.ZodISODateTime;
7517
7766
  status: z.ZodEnum<{
7518
- DRAFT: "DRAFT";
7519
- SHARED: "SHARED";
7767
+ UNPUBLISHED: "UNPUBLISHED";
7768
+ PUBLISHED: "PUBLISHED";
7520
7769
  CLOSED: "CLOSED";
7521
7770
  }>;
7522
7771
  recommendations: z.ZodObject<{
@@ -7685,6 +7934,24 @@ export declare const zGetContactByContactIdResponse: z.ZodObject<{
7685
7934
  createdAt: z.ZodISODateTime;
7686
7935
  updatedAt: z.ZodISODateTime;
7687
7936
  }, z.core.$strip>;
7937
+ export declare const zGetContactByContactIdOpenItemsData: z.ZodObject<{
7938
+ body: z.ZodOptional<z.ZodNever>;
7939
+ path: z.ZodObject<{
7940
+ contactId: z.ZodCoercedBigInt<unknown>;
7941
+ }, z.core.$strip>;
7942
+ query: z.ZodOptional<z.ZodNever>;
7943
+ }, z.core.$strip>;
7944
+ /**
7945
+ * OK
7946
+ */
7947
+ export declare const zGetContactByContactIdOpenItemsResponse: z.ZodObject<{
7948
+ propertyIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
7949
+ value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
7950
+ }, z.core.$strip>>>;
7951
+ interestIds: z.ZodOptional<z.ZodArray<z.ZodObject<{
7952
+ value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
7953
+ }, z.core.$strip>>>;
7954
+ }, z.core.$strip>;
7688
7955
  export declare const zGetContactByContactId360Data: z.ZodObject<{
7689
7956
  body: z.ZodOptional<z.ZodNever>;
7690
7957
  path: z.ZodObject<{
@@ -7767,8 +8034,8 @@ export declare const zGetContactByContactId360Response: z.ZodObject<{
7767
8034
  id: z.ZodCoercedBigInt<unknown>;
7768
8035
  title: z.ZodString;
7769
8036
  status: z.ZodEnum<{
7770
- DRAFT: "DRAFT";
7771
- SHARED: "SHARED";
8037
+ UNPUBLISHED: "UNPUBLISHED";
8038
+ PUBLISHED: "PUBLISHED";
7772
8039
  CLOSED: "CLOSED";
7773
8040
  }>;
7774
8041
  shareToken: z.ZodUUID;
@@ -8367,6 +8634,21 @@ export declare const zDeleteConversationsByConversationIdPresenceData: z.ZodObje
8367
8634
  * No Content
8368
8635
  */
8369
8636
  export declare const zDeleteConversationsByConversationIdPresenceResponse: z.ZodVoid;
8637
+ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdData: z.ZodObject<{
8638
+ body: z.ZodOptional<z.ZodNever>;
8639
+ path: z.ZodObject<{
8640
+ contactId: z.ZodCoercedBigInt<unknown>;
8641
+ propertyId: z.ZodCoercedBigInt<unknown>;
8642
+ listingId: z.ZodCoercedBigInt<unknown>;
8643
+ }, z.core.$strip>;
8644
+ query: z.ZodOptional<z.ZodObject<{
8645
+ withdrawExternal: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
8646
+ }, z.core.$strip>>;
8647
+ }, z.core.$strip>;
8648
+ /**
8649
+ * No Content
8650
+ */
8651
+ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdResponse: z.ZodVoid;
8370
8652
  export declare const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdData: z.ZodObject<{
8371
8653
  body: z.ZodOptional<z.ZodNever>;
8372
8654
  path: z.ZodObject<{