@homespot-sdk/core 0.0.323 → 0.0.325
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/dist/property/index.d.ts +2 -2
- package/dist/property/index.d.ts.map +1 -1
- package/dist/property/index.js +1 -1
- package/dist/property/index.js.map +1 -1
- package/dist/property/sdk.gen.d.ts +3 -1
- package/dist/property/sdk.gen.d.ts.map +1 -1
- package/dist/property/sdk.gen.js +10 -0
- package/dist/property/sdk.gen.js.map +1 -1
- package/dist/property/types.gen.d.ts +30 -0
- package/dist/property/types.gen.d.ts.map +1 -1
- package/dist/property/zod.gen.d.ts +22 -0
- package/dist/property/zod.gen.d.ts.map +1 -1
- package/dist/property/zod.gen.js +22 -0
- package/dist/property/zod.gen.js.map +1 -1
- package/dist/rem/index.d.ts +2 -2
- package/dist/rem/index.d.ts.map +1 -1
- package/dist/rem/index.js +1 -1
- package/dist/rem/index.js.map +1 -1
- package/dist/rem/schemas.gen.d.ts +471 -73
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +548 -73
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +28 -8
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +126 -9
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +2 -1
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +64 -6
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +413 -35
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +1114 -147
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +623 -64
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -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";
|
|
@@ -235,6 +238,14 @@ export declare const zCaptureInterestRequest: z.ZodObject<{
|
|
|
235
238
|
export declare const zTitleRequest: z.ZodObject<{
|
|
236
239
|
title: z.ZodString;
|
|
237
240
|
}, z.core.$strip>;
|
|
241
|
+
export declare const zRateRecommendationItemRequest: z.ZodObject<{
|
|
242
|
+
decision: z.ZodEnum<{
|
|
243
|
+
MAYBE: "MAYBE";
|
|
244
|
+
DISLIKE: "DISLIKE";
|
|
245
|
+
LIKE: "LIKE";
|
|
246
|
+
}>;
|
|
247
|
+
note: z.ZodOptional<z.ZodString>;
|
|
248
|
+
}, z.core.$strip>;
|
|
238
249
|
export declare const zRecommendListingRequest: z.ZodObject<{
|
|
239
250
|
externalPropertyId: z.ZodUUID;
|
|
240
251
|
externalListingId: z.ZodUUID;
|
|
@@ -374,16 +385,42 @@ export declare const zTransferFundsRequest: z.ZodObject<{
|
|
|
374
385
|
export declare const zDepositFundsRequest: z.ZodObject<{
|
|
375
386
|
amount: z.ZodNumber;
|
|
376
387
|
}, z.core.$strip>;
|
|
377
|
-
export declare const
|
|
378
|
-
|
|
388
|
+
export declare const zSubscriptionAddressRequest: z.ZodObject<{
|
|
389
|
+
country: z.ZodString;
|
|
390
|
+
city: z.ZodString;
|
|
391
|
+
district: z.ZodString;
|
|
392
|
+
subdistrict: z.ZodString;
|
|
393
|
+
street: z.ZodString;
|
|
379
394
|
}, z.core.$strip>;
|
|
380
|
-
export declare const
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
395
|
+
export declare const zSubscribeRequest: z.ZodObject<{
|
|
396
|
+
plan: z.ZodEnum<{
|
|
397
|
+
STARTER: "STARTER";
|
|
398
|
+
PRO: "PRO";
|
|
399
|
+
ENTERPRISE: "ENTERPRISE";
|
|
385
400
|
}>;
|
|
386
|
-
|
|
401
|
+
billingCycle: z.ZodEnum<{
|
|
402
|
+
MONTHLY: "MONTHLY";
|
|
403
|
+
ANNUAL: "ANNUAL";
|
|
404
|
+
}>;
|
|
405
|
+
name: z.ZodString;
|
|
406
|
+
email: z.ZodEmail;
|
|
407
|
+
phone: z.ZodString;
|
|
408
|
+
subdomain: z.ZodString;
|
|
409
|
+
address: z.ZodObject<{
|
|
410
|
+
country: z.ZodString;
|
|
411
|
+
city: z.ZodString;
|
|
412
|
+
district: z.ZodString;
|
|
413
|
+
subdistrict: z.ZodString;
|
|
414
|
+
street: z.ZodString;
|
|
415
|
+
}, z.core.$strip>;
|
|
416
|
+
}, z.core.$strip>;
|
|
417
|
+
export declare const zSubscriptionCheckoutResponse: z.ZodObject<{
|
|
418
|
+
checkoutUrl: z.ZodOptional<z.ZodString>;
|
|
419
|
+
agencyId: z.ZodOptional<z.ZodUUID>;
|
|
420
|
+
subscriptionId: z.ZodOptional<z.ZodUUID>;
|
|
421
|
+
}, z.core.$strip>;
|
|
422
|
+
export declare const zIdResponseInteger: z.ZodObject<{
|
|
423
|
+
id: z.ZodInt;
|
|
387
424
|
}, z.core.$strip>;
|
|
388
425
|
export declare const zContactInfoRequest: z.ZodObject<{
|
|
389
426
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -547,16 +584,19 @@ export declare const zIdResponseUuid: z.ZodObject<{
|
|
|
547
584
|
id: z.ZodUUID;
|
|
548
585
|
}, z.core.$strip>;
|
|
549
586
|
export declare const zAddDealRequest: z.ZodObject<{
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
587
|
+
type: z.ZodString;
|
|
588
|
+
}, z.core.$strip>;
|
|
589
|
+
export declare const zCloseListingRequest: z.ZodObject<{
|
|
590
|
+
withdrawExternal: z.ZodOptional<z.ZodBoolean>;
|
|
591
|
+
}, z.core.$strip>;
|
|
592
|
+
export declare const zClosePropertyRequest: z.ZodObject<{
|
|
593
|
+
reason: z.ZodEnum<{
|
|
594
|
+
OTHER: "OTHER";
|
|
595
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
596
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
597
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
556
598
|
}>;
|
|
557
|
-
|
|
558
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
559
|
-
factor: z.ZodOptional<z.ZodNumber>;
|
|
599
|
+
withdrawExternal: z.ZodOptional<z.ZodBoolean>;
|
|
560
600
|
}, z.core.$strip>;
|
|
561
601
|
export declare const zInterestId: z.ZodObject<{
|
|
562
602
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -1602,7 +1642,6 @@ export declare const zRecommendationResponse: z.ZodObject<{
|
|
|
1602
1642
|
}, z.core.$strip>;
|
|
1603
1643
|
}, z.core.$strip>;
|
|
1604
1644
|
export declare const zRecommendationDecisionResponse: z.ZodObject<{
|
|
1605
|
-
itemId: z.ZodCoercedBigInt<unknown>;
|
|
1606
1645
|
externalPropertyId: z.ZodUUID;
|
|
1607
1646
|
externalListingId: z.ZodUUID;
|
|
1608
1647
|
decision: z.ZodEnum<{
|
|
@@ -1917,33 +1956,526 @@ export declare const zWhitelabelResponse: z.ZodObject<{
|
|
|
1917
1956
|
en: "en";
|
|
1918
1957
|
ru: "ru";
|
|
1919
1958
|
}>;
|
|
1920
|
-
text: z.ZodString;
|
|
1921
|
-
}, z.core.$strip>>>;
|
|
1922
|
-
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1923
|
-
language: z.ZodEnum<{
|
|
1924
|
-
ka: "ka";
|
|
1925
|
-
en: "en";
|
|
1926
|
-
ru: "ru";
|
|
1959
|
+
text: z.ZodString;
|
|
1960
|
+
}, z.core.$strip>>>;
|
|
1961
|
+
body: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1962
|
+
language: z.ZodEnum<{
|
|
1963
|
+
ka: "ka";
|
|
1964
|
+
en: "en";
|
|
1965
|
+
ru: "ru";
|
|
1966
|
+
}>;
|
|
1967
|
+
text: z.ZodString;
|
|
1968
|
+
}, z.core.$strip>>>;
|
|
1969
|
+
}, z.core.$strip>>;
|
|
1970
|
+
agencyInfo: z.ZodOptional<z.ZodObject<{
|
|
1971
|
+
phone: z.ZodString;
|
|
1972
|
+
email: z.ZodString;
|
|
1973
|
+
address: z.ZodOptional<z.ZodString>;
|
|
1974
|
+
}, z.core.$strip>>;
|
|
1975
|
+
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1976
|
+
url: z.ZodString;
|
|
1977
|
+
type: z.ZodEnum<{
|
|
1978
|
+
FACEBOOK: "FACEBOOK";
|
|
1979
|
+
YOUTUBE: "YOUTUBE";
|
|
1980
|
+
INSTAGRAM: "INSTAGRAM";
|
|
1981
|
+
TIKTOK: "TIKTOK";
|
|
1982
|
+
LINKEDIN: "LINKEDIN";
|
|
1983
|
+
}>;
|
|
1984
|
+
}, z.core.$strip>>>;
|
|
1985
|
+
website: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
}, z.core.$strip>;
|
|
1987
|
+
export declare const zAgreementResponse: z.ZodObject<{
|
|
1988
|
+
agreement: z.ZodEnum<{
|
|
1989
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
1990
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
1991
|
+
}>;
|
|
1992
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
1993
|
+
}, z.core.$strip>;
|
|
1994
|
+
export declare const zBoostResponse: z.ZodObject<{
|
|
1995
|
+
tier: z.ZodEnum<{
|
|
1996
|
+
VIP: "VIP";
|
|
1997
|
+
VIP_PLUS: "VIP_PLUS";
|
|
1998
|
+
SUPER_VIP: "SUPER_VIP";
|
|
1999
|
+
}>;
|
|
2000
|
+
status: z.ZodEnum<{
|
|
2001
|
+
ACTIVE: "ACTIVE";
|
|
2002
|
+
PENDING: "PENDING";
|
|
2003
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2004
|
+
FAILED: "FAILED";
|
|
2005
|
+
}>;
|
|
2006
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2007
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2008
|
+
}, z.core.$strip>;
|
|
2009
|
+
export declare const zColoredListingResponse: z.ZodObject<{
|
|
2010
|
+
activatedAt: z.ZodISODate;
|
|
2011
|
+
expiresAt: z.ZodISODate;
|
|
2012
|
+
}, z.core.$strip>;
|
|
2013
|
+
export declare const zDealResponse: z.ZodObject<{
|
|
2014
|
+
type: z.ZodString;
|
|
2015
|
+
}, z.core.$strip>;
|
|
2016
|
+
export declare const zFixed: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2017
|
+
type: z.ZodString;
|
|
2018
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2019
|
+
amount: z.ZodNumber;
|
|
2020
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2021
|
+
type: z.ZodString;
|
|
2022
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2023
|
+
amount: z.ZodNumber;
|
|
2024
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2025
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2026
|
+
}, z.core.$strip>>;
|
|
2027
|
+
export declare const zMonthsOfRent: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2028
|
+
type: z.ZodString;
|
|
2029
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2030
|
+
factor: z.ZodNumber;
|
|
2031
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2032
|
+
type: z.ZodString;
|
|
2033
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2034
|
+
factor: z.ZodNumber;
|
|
2035
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2036
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2037
|
+
}, z.core.$strip>>;
|
|
2038
|
+
export declare const zPercentage: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2039
|
+
type: z.ZodString;
|
|
2040
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2041
|
+
rate: z.ZodNumber;
|
|
2042
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2043
|
+
type: z.ZodString;
|
|
2044
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2045
|
+
rate: z.ZodNumber;
|
|
2046
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2047
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2048
|
+
}, z.core.$strip>>;
|
|
2049
|
+
export declare const zCreateListingRequest: z.ZodObject<{
|
|
2050
|
+
listingType: z.ZodEnum<{
|
|
2051
|
+
SALE: "SALE";
|
|
2052
|
+
RENT: "RENT";
|
|
2053
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2054
|
+
PLEDGE: "PLEDGE";
|
|
2055
|
+
}>;
|
|
2056
|
+
askingPrice: z.ZodNumber;
|
|
2057
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2058
|
+
type: z.ZodString;
|
|
2059
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2060
|
+
amount: z.ZodNumber;
|
|
2061
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2062
|
+
type: z.ZodString;
|
|
2063
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2064
|
+
amount: z.ZodNumber;
|
|
2065
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2066
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2067
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2068
|
+
type: z.ZodString;
|
|
2069
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2070
|
+
factor: z.ZodNumber;
|
|
2071
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2072
|
+
type: z.ZodString;
|
|
2073
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2074
|
+
factor: z.ZodNumber;
|
|
2075
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2076
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2077
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2078
|
+
type: z.ZodString;
|
|
2079
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2080
|
+
rate: z.ZodNumber;
|
|
2081
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2082
|
+
type: z.ZodString;
|
|
2083
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2084
|
+
rate: z.ZodNumber;
|
|
2085
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2086
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2087
|
+
}, z.core.$strip>>]>>;
|
|
2088
|
+
}, z.core.$strip>;
|
|
2089
|
+
export declare const zPlatformListingResponse: z.ZodObject<{
|
|
2090
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2091
|
+
platformType: z.ZodEnum<{
|
|
2092
|
+
SS: "SS";
|
|
2093
|
+
MY_HOME: "MY_HOME";
|
|
2094
|
+
}>;
|
|
2095
|
+
status: z.ZodEnum<{
|
|
2096
|
+
EXPIRED: "EXPIRED";
|
|
2097
|
+
PENDING: "PENDING";
|
|
2098
|
+
FAILED: "FAILED";
|
|
2099
|
+
SYNDICATED: "SYNDICATED";
|
|
2100
|
+
}>;
|
|
2101
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
2102
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2103
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
2104
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
2105
|
+
tier: z.ZodEnum<{
|
|
2106
|
+
VIP: "VIP";
|
|
2107
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2108
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2109
|
+
}>;
|
|
2110
|
+
status: z.ZodEnum<{
|
|
2111
|
+
ACTIVE: "ACTIVE";
|
|
2112
|
+
PENDING: "PENDING";
|
|
2113
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2114
|
+
FAILED: "FAILED";
|
|
2115
|
+
}>;
|
|
2116
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2117
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2118
|
+
}, z.core.$strip>>;
|
|
2119
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
2120
|
+
activatedAt: z.ZodISODate;
|
|
2121
|
+
expiresAt: z.ZodISODate;
|
|
2122
|
+
}, z.core.$strip>>;
|
|
2123
|
+
}, z.core.$strip>;
|
|
2124
|
+
export declare const zPropertyCloseReasonResponse: z.ZodObject<{
|
|
2125
|
+
closedAt: z.ZodISODateTime;
|
|
2126
|
+
reason: z.ZodEnum<{
|
|
2127
|
+
OTHER: "OTHER";
|
|
2128
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
2129
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
2130
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
2131
|
+
}>;
|
|
2132
|
+
}, z.core.$strip>;
|
|
2133
|
+
export declare const zPropertyDetailsResponse: z.ZodObject<{
|
|
2134
|
+
title: z.ZodString;
|
|
2135
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
2136
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
2137
|
+
totalArea: z.ZodNumber;
|
|
2138
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
2139
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
2140
|
+
address: z.ZodObject<{
|
|
2141
|
+
region: z.ZodObject<{
|
|
2142
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2143
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2144
|
+
language: z.ZodEnum<{
|
|
2145
|
+
ka: "ka";
|
|
2146
|
+
en: "en";
|
|
2147
|
+
ru: "ru";
|
|
2148
|
+
}>;
|
|
2149
|
+
text: z.ZodString;
|
|
2150
|
+
}, z.core.$strip>>;
|
|
2151
|
+
}, z.core.$strip>;
|
|
2152
|
+
district: z.ZodObject<{
|
|
2153
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2154
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2155
|
+
language: z.ZodEnum<{
|
|
2156
|
+
ka: "ka";
|
|
2157
|
+
en: "en";
|
|
2158
|
+
ru: "ru";
|
|
2159
|
+
}>;
|
|
2160
|
+
text: z.ZodString;
|
|
2161
|
+
}, z.core.$strip>>;
|
|
2162
|
+
}, z.core.$strip>;
|
|
2163
|
+
subdistrict: z.ZodObject<{
|
|
2164
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2165
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2166
|
+
language: z.ZodEnum<{
|
|
2167
|
+
ka: "ka";
|
|
2168
|
+
en: "en";
|
|
2169
|
+
ru: "ru";
|
|
2170
|
+
}>;
|
|
2171
|
+
text: z.ZodString;
|
|
2172
|
+
}, z.core.$strip>>;
|
|
2173
|
+
}, z.core.$strip>;
|
|
2174
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
2175
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2176
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2177
|
+
language: z.ZodEnum<{
|
|
2178
|
+
ka: "ka";
|
|
2179
|
+
en: "en";
|
|
2180
|
+
ru: "ru";
|
|
2181
|
+
}>;
|
|
2182
|
+
text: z.ZodString;
|
|
2183
|
+
}, z.core.$strip>>;
|
|
2184
|
+
}, z.core.$strip>>;
|
|
2185
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
2186
|
+
lat: z.ZodNumber;
|
|
2187
|
+
lng: z.ZodNumber;
|
|
2188
|
+
}, z.core.$strip>;
|
|
2189
|
+
}, z.core.$strip>;
|
|
2190
|
+
export declare const zPropertyListingResponse: z.ZodObject<{
|
|
2191
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
2192
|
+
listingId: z.ZodUUID;
|
|
2193
|
+
listingType: z.ZodEnum<{
|
|
2194
|
+
SALE: "SALE";
|
|
2195
|
+
RENT: "RENT";
|
|
2196
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2197
|
+
PLEDGE: "PLEDGE";
|
|
2198
|
+
}>;
|
|
2199
|
+
marketplaceStatus: z.ZodEnum<{
|
|
2200
|
+
ACTIVE: "ACTIVE";
|
|
2201
|
+
PAUSED: "PAUSED";
|
|
2202
|
+
EXPIRED: "EXPIRED";
|
|
2203
|
+
PENDING: "PENDING";
|
|
2204
|
+
FAILED: "FAILED";
|
|
2205
|
+
}>;
|
|
2206
|
+
crmState: z.ZodEnum<{
|
|
2207
|
+
CLOSED: "CLOSED";
|
|
2208
|
+
OPEN: "OPEN";
|
|
2209
|
+
}>;
|
|
2210
|
+
isProcessing: z.ZodBoolean;
|
|
2211
|
+
price: z.ZodNumber;
|
|
2212
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2213
|
+
type: z.ZodString;
|
|
2214
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2215
|
+
amount: z.ZodNumber;
|
|
2216
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2217
|
+
type: z.ZodString;
|
|
2218
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2219
|
+
amount: z.ZodNumber;
|
|
2220
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2221
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2222
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2223
|
+
type: z.ZodString;
|
|
2224
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2225
|
+
factor: z.ZodNumber;
|
|
2226
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2227
|
+
type: z.ZodString;
|
|
2228
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2229
|
+
factor: z.ZodNumber;
|
|
2230
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2231
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2232
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2233
|
+
type: z.ZodString;
|
|
2234
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2235
|
+
rate: z.ZodNumber;
|
|
2236
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2237
|
+
type: z.ZodString;
|
|
2238
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2239
|
+
rate: z.ZodNumber;
|
|
2240
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2241
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2242
|
+
}, z.core.$strip>>]>>;
|
|
2243
|
+
platformListings: z.ZodArray<z.ZodObject<{
|
|
2244
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2245
|
+
platformType: z.ZodEnum<{
|
|
2246
|
+
SS: "SS";
|
|
2247
|
+
MY_HOME: "MY_HOME";
|
|
2248
|
+
}>;
|
|
2249
|
+
status: z.ZodEnum<{
|
|
2250
|
+
EXPIRED: "EXPIRED";
|
|
2251
|
+
PENDING: "PENDING";
|
|
2252
|
+
FAILED: "FAILED";
|
|
2253
|
+
SYNDICATED: "SYNDICATED";
|
|
2254
|
+
}>;
|
|
2255
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
2256
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2257
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
2258
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
2259
|
+
tier: z.ZodEnum<{
|
|
2260
|
+
VIP: "VIP";
|
|
2261
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2262
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2263
|
+
}>;
|
|
2264
|
+
status: z.ZodEnum<{
|
|
2265
|
+
ACTIVE: "ACTIVE";
|
|
2266
|
+
PENDING: "PENDING";
|
|
2267
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2268
|
+
FAILED: "FAILED";
|
|
2269
|
+
}>;
|
|
2270
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2271
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2272
|
+
}, z.core.$strip>>;
|
|
2273
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
2274
|
+
activatedAt: z.ZodISODate;
|
|
2275
|
+
expiresAt: z.ZodISODate;
|
|
2276
|
+
}, z.core.$strip>>;
|
|
2277
|
+
}, z.core.$strip>>;
|
|
2278
|
+
createdAt: z.ZodISODateTime;
|
|
2279
|
+
closedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
2280
|
+
}, z.core.$strip>;
|
|
2281
|
+
export declare const zPropertyPageResponse: z.ZodObject<{
|
|
2282
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
2283
|
+
propertyId: z.ZodUUID;
|
|
2284
|
+
type: z.ZodEnum<{
|
|
2285
|
+
GARAGE: "GARAGE";
|
|
2286
|
+
HOUSE: "HOUSE";
|
|
2287
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
2288
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
2289
|
+
VILLA: "VILLA";
|
|
2290
|
+
COTTAGE: "COTTAGE";
|
|
2291
|
+
APARTMENT: "APARTMENT";
|
|
2292
|
+
DUPLEX: "DUPLEX";
|
|
2293
|
+
TRIPLEX: "TRIPLEX";
|
|
2294
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
2295
|
+
ATTIC: "ATTIC";
|
|
2296
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
2297
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
2298
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
2299
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
2300
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
2301
|
+
OFFICE: "OFFICE";
|
|
2302
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
2303
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
2304
|
+
WAREHOUSE: "WAREHOUSE";
|
|
2305
|
+
}>;
|
|
2306
|
+
state: z.ZodEnum<{
|
|
2307
|
+
IN_REGISTRATION: "IN_REGISTRATION";
|
|
2308
|
+
CLOSED: "CLOSED";
|
|
2309
|
+
UNLISTED: "UNLISTED";
|
|
2310
|
+
LISTED_INTERNALLY: "LISTED_INTERNALLY";
|
|
2311
|
+
LISTED: "LISTED";
|
|
2312
|
+
}>;
|
|
2313
|
+
details: z.ZodOptional<z.ZodObject<{
|
|
2314
|
+
title: z.ZodString;
|
|
2315
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
2316
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
2317
|
+
totalArea: z.ZodNumber;
|
|
2318
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
2319
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
2320
|
+
address: z.ZodObject<{
|
|
2321
|
+
region: z.ZodObject<{
|
|
2322
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2323
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2324
|
+
language: z.ZodEnum<{
|
|
2325
|
+
ka: "ka";
|
|
2326
|
+
en: "en";
|
|
2327
|
+
ru: "ru";
|
|
2328
|
+
}>;
|
|
2329
|
+
text: z.ZodString;
|
|
2330
|
+
}, z.core.$strip>>;
|
|
2331
|
+
}, z.core.$strip>;
|
|
2332
|
+
district: z.ZodObject<{
|
|
2333
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2334
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2335
|
+
language: z.ZodEnum<{
|
|
2336
|
+
ka: "ka";
|
|
2337
|
+
en: "en";
|
|
2338
|
+
ru: "ru";
|
|
2339
|
+
}>;
|
|
2340
|
+
text: z.ZodString;
|
|
2341
|
+
}, z.core.$strip>>;
|
|
2342
|
+
}, z.core.$strip>;
|
|
2343
|
+
subdistrict: z.ZodObject<{
|
|
2344
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2345
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2346
|
+
language: z.ZodEnum<{
|
|
2347
|
+
ka: "ka";
|
|
2348
|
+
en: "en";
|
|
2349
|
+
ru: "ru";
|
|
2350
|
+
}>;
|
|
2351
|
+
text: z.ZodString;
|
|
2352
|
+
}, z.core.$strip>>;
|
|
2353
|
+
}, z.core.$strip>;
|
|
2354
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
2355
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2356
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2357
|
+
language: z.ZodEnum<{
|
|
2358
|
+
ka: "ka";
|
|
2359
|
+
en: "en";
|
|
2360
|
+
ru: "ru";
|
|
2361
|
+
}>;
|
|
2362
|
+
text: z.ZodString;
|
|
2363
|
+
}, z.core.$strip>>;
|
|
2364
|
+
}, z.core.$strip>>;
|
|
2365
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
2366
|
+
lat: z.ZodNumber;
|
|
2367
|
+
lng: z.ZodNumber;
|
|
2368
|
+
}, z.core.$strip>;
|
|
2369
|
+
}, z.core.$strip>>;
|
|
2370
|
+
agreement: z.ZodObject<{
|
|
2371
|
+
agreement: z.ZodEnum<{
|
|
2372
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
2373
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
2374
|
+
}>;
|
|
2375
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
2376
|
+
}, z.core.$strip>;
|
|
2377
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
2378
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
2379
|
+
listingId: z.ZodUUID;
|
|
2380
|
+
listingType: z.ZodEnum<{
|
|
2381
|
+
SALE: "SALE";
|
|
2382
|
+
RENT: "RENT";
|
|
2383
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2384
|
+
PLEDGE: "PLEDGE";
|
|
2385
|
+
}>;
|
|
2386
|
+
marketplaceStatus: z.ZodEnum<{
|
|
2387
|
+
ACTIVE: "ACTIVE";
|
|
2388
|
+
PAUSED: "PAUSED";
|
|
2389
|
+
EXPIRED: "EXPIRED";
|
|
2390
|
+
PENDING: "PENDING";
|
|
2391
|
+
FAILED: "FAILED";
|
|
2392
|
+
}>;
|
|
2393
|
+
crmState: z.ZodEnum<{
|
|
2394
|
+
CLOSED: "CLOSED";
|
|
2395
|
+
OPEN: "OPEN";
|
|
2396
|
+
}>;
|
|
2397
|
+
isProcessing: z.ZodBoolean;
|
|
2398
|
+
price: z.ZodNumber;
|
|
2399
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2400
|
+
type: z.ZodString;
|
|
2401
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2402
|
+
amount: z.ZodNumber;
|
|
2403
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2404
|
+
type: z.ZodString;
|
|
2405
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2406
|
+
amount: z.ZodNumber;
|
|
2407
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2408
|
+
type: z.ZodLiteral<"FIXED">;
|
|
2409
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2410
|
+
type: z.ZodString;
|
|
2411
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2412
|
+
factor: z.ZodNumber;
|
|
2413
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2414
|
+
type: z.ZodString;
|
|
2415
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2416
|
+
factor: z.ZodNumber;
|
|
2417
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2418
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
2419
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2420
|
+
type: z.ZodString;
|
|
2421
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2422
|
+
rate: z.ZodNumber;
|
|
2423
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2424
|
+
type: z.ZodString;
|
|
2425
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
2426
|
+
rate: z.ZodNumber;
|
|
2427
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
2428
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
2429
|
+
}, z.core.$strip>>]>>;
|
|
2430
|
+
platformListings: z.ZodArray<z.ZodObject<{
|
|
2431
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
2432
|
+
platformType: z.ZodEnum<{
|
|
2433
|
+
SS: "SS";
|
|
2434
|
+
MY_HOME: "MY_HOME";
|
|
2435
|
+
}>;
|
|
2436
|
+
status: z.ZodEnum<{
|
|
2437
|
+
EXPIRED: "EXPIRED";
|
|
2438
|
+
PENDING: "PENDING";
|
|
2439
|
+
FAILED: "FAILED";
|
|
2440
|
+
SYNDICATED: "SYNDICATED";
|
|
1927
2441
|
}>;
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
2442
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
2443
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2444
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
2445
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
2446
|
+
tier: z.ZodEnum<{
|
|
2447
|
+
VIP: "VIP";
|
|
2448
|
+
VIP_PLUS: "VIP_PLUS";
|
|
2449
|
+
SUPER_VIP: "SUPER_VIP";
|
|
2450
|
+
}>;
|
|
2451
|
+
status: z.ZodEnum<{
|
|
2452
|
+
ACTIVE: "ACTIVE";
|
|
2453
|
+
PENDING: "PENDING";
|
|
2454
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
2455
|
+
FAILED: "FAILED";
|
|
2456
|
+
}>;
|
|
2457
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
2458
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
2459
|
+
}, z.core.$strip>>;
|
|
2460
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
2461
|
+
activatedAt: z.ZodISODate;
|
|
2462
|
+
expiresAt: z.ZodISODate;
|
|
2463
|
+
}, z.core.$strip>>;
|
|
2464
|
+
}, z.core.$strip>>;
|
|
2465
|
+
createdAt: z.ZodISODateTime;
|
|
2466
|
+
closedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
1935
2467
|
}, z.core.$strip>>;
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
2468
|
+
createdAt: z.ZodISODateTime;
|
|
2469
|
+
updatedAt: z.ZodISODateTime;
|
|
2470
|
+
closeReason: z.ZodOptional<z.ZodObject<{
|
|
2471
|
+
closedAt: z.ZodISODateTime;
|
|
2472
|
+
reason: z.ZodEnum<{
|
|
2473
|
+
OTHER: "OTHER";
|
|
2474
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
2475
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
2476
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
1944
2477
|
}>;
|
|
1945
|
-
}, z.core.$strip
|
|
1946
|
-
website: z.ZodOptional<z.ZodString>;
|
|
2478
|
+
}, z.core.$strip>>;
|
|
1947
2479
|
}, z.core.$strip>;
|
|
1948
2480
|
export declare const zContactId: z.ZodObject<{
|
|
1949
2481
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
@@ -2436,10 +2968,10 @@ export declare const zListingGridView: z.ZodObject<{
|
|
|
2436
2968
|
}>>;
|
|
2437
2969
|
price: z.ZodOptional<z.ZodNumber>;
|
|
2438
2970
|
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
2439
|
-
|
|
2440
|
-
FIXED_RENT: "FIXED_RENT";
|
|
2441
|
-
PERCENTAGE: "PERCENTAGE";
|
|
2971
|
+
FIXED: "FIXED";
|
|
2442
2972
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
2973
|
+
PERCENTAGE: "PERCENTAGE";
|
|
2974
|
+
NOT_SET: "NOT_SET";
|
|
2443
2975
|
}>>;
|
|
2444
2976
|
commission: z.ZodOptional<z.ZodNumber>;
|
|
2445
2977
|
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2563,10 +3095,10 @@ export declare const zPagedModelListingGridView: z.ZodObject<{
|
|
|
2563
3095
|
}>>;
|
|
2564
3096
|
price: z.ZodOptional<z.ZodNumber>;
|
|
2565
3097
|
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
2566
|
-
|
|
2567
|
-
FIXED_RENT: "FIXED_RENT";
|
|
2568
|
-
PERCENTAGE: "PERCENTAGE";
|
|
3098
|
+
FIXED: "FIXED";
|
|
2569
3099
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
3100
|
+
PERCENTAGE: "PERCENTAGE";
|
|
3101
|
+
NOT_SET: "NOT_SET";
|
|
2570
3102
|
}>>;
|
|
2571
3103
|
commission: z.ZodOptional<z.ZodNumber>;
|
|
2572
3104
|
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2746,9 +3278,9 @@ export declare const zMessageView: z.ZodObject<{
|
|
|
2746
3278
|
}, z.core.$strip>>]>;
|
|
2747
3279
|
status: z.ZodEnum<{
|
|
2748
3280
|
PENDING: "PENDING";
|
|
3281
|
+
FAILED: "FAILED";
|
|
2749
3282
|
RECEIVED: "RECEIVED";
|
|
2750
3283
|
SENT: "SENT";
|
|
2751
|
-
FAILED: "FAILED";
|
|
2752
3284
|
}>;
|
|
2753
3285
|
sentAt: z.ZodISODateTime;
|
|
2754
3286
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -2784,9 +3316,9 @@ export declare const zThreadUpdates: z.ZodObject<{
|
|
|
2784
3316
|
}, z.core.$strip>>]>;
|
|
2785
3317
|
status: z.ZodEnum<{
|
|
2786
3318
|
PENDING: "PENDING";
|
|
3319
|
+
FAILED: "FAILED";
|
|
2787
3320
|
RECEIVED: "RECEIVED";
|
|
2788
3321
|
SENT: "SENT";
|
|
2789
|
-
FAILED: "FAILED";
|
|
2790
3322
|
}>;
|
|
2791
3323
|
sentAt: z.ZodISODateTime;
|
|
2792
3324
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -2824,9 +3356,9 @@ export declare const zCursorPageMessageView: z.ZodObject<{
|
|
|
2824
3356
|
}, z.core.$strip>>]>;
|
|
2825
3357
|
status: z.ZodEnum<{
|
|
2826
3358
|
PENDING: "PENDING";
|
|
3359
|
+
FAILED: "FAILED";
|
|
2827
3360
|
RECEIVED: "RECEIVED";
|
|
2828
3361
|
SENT: "SENT";
|
|
2829
|
-
FAILED: "FAILED";
|
|
2830
3362
|
}>;
|
|
2831
3363
|
sentAt: z.ZodISODateTime;
|
|
2832
3364
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -3203,13 +3735,6 @@ export declare const zPagedModelContactGridResponse: z.ZodObject<{
|
|
|
3203
3735
|
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
3204
3736
|
}, z.core.$strip>>;
|
|
3205
3737
|
}, z.core.$strip>;
|
|
3206
|
-
export declare const zAgreementResponse: z.ZodObject<{
|
|
3207
|
-
agreement: z.ZodEnum<{
|
|
3208
|
-
EXCLUSIVE: "EXCLUSIVE";
|
|
3209
|
-
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
3210
|
-
}>;
|
|
3211
|
-
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
3212
|
-
}, z.core.$strip>;
|
|
3213
3738
|
export declare const zAssignedMember: z.ZodObject<{
|
|
3214
3739
|
memberId: z.ZodUUID;
|
|
3215
3740
|
name: z.ZodString;
|
|
@@ -3239,63 +3764,6 @@ export declare const zContactInfoResponse: z.ZodObject<{
|
|
|
3239
3764
|
phoneNumber: z.ZodString;
|
|
3240
3765
|
email: z.ZodOptional<z.ZodString>;
|
|
3241
3766
|
}, z.core.$strip>;
|
|
3242
|
-
export declare const zPropertyDetailsResponse: z.ZodObject<{
|
|
3243
|
-
title: z.ZodString;
|
|
3244
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
3245
|
-
photoCount: z.ZodOptional<z.ZodInt>;
|
|
3246
|
-
totalArea: z.ZodNumber;
|
|
3247
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
3248
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
3249
|
-
address: z.ZodObject<{
|
|
3250
|
-
region: z.ZodObject<{
|
|
3251
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3252
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3253
|
-
language: z.ZodEnum<{
|
|
3254
|
-
ka: "ka";
|
|
3255
|
-
en: "en";
|
|
3256
|
-
ru: "ru";
|
|
3257
|
-
}>;
|
|
3258
|
-
text: z.ZodString;
|
|
3259
|
-
}, z.core.$strip>>;
|
|
3260
|
-
}, z.core.$strip>;
|
|
3261
|
-
district: z.ZodObject<{
|
|
3262
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3263
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3264
|
-
language: z.ZodEnum<{
|
|
3265
|
-
ka: "ka";
|
|
3266
|
-
en: "en";
|
|
3267
|
-
ru: "ru";
|
|
3268
|
-
}>;
|
|
3269
|
-
text: z.ZodString;
|
|
3270
|
-
}, z.core.$strip>>;
|
|
3271
|
-
}, z.core.$strip>;
|
|
3272
|
-
subdistrict: z.ZodObject<{
|
|
3273
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3274
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3275
|
-
language: z.ZodEnum<{
|
|
3276
|
-
ka: "ka";
|
|
3277
|
-
en: "en";
|
|
3278
|
-
ru: "ru";
|
|
3279
|
-
}>;
|
|
3280
|
-
text: z.ZodString;
|
|
3281
|
-
}, z.core.$strip>>;
|
|
3282
|
-
}, z.core.$strip>;
|
|
3283
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
3284
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
3285
|
-
names: z.ZodArray<z.ZodObject<{
|
|
3286
|
-
language: z.ZodEnum<{
|
|
3287
|
-
ka: "ka";
|
|
3288
|
-
en: "en";
|
|
3289
|
-
ru: "ru";
|
|
3290
|
-
}>;
|
|
3291
|
-
text: z.ZodString;
|
|
3292
|
-
}, z.core.$strip>>;
|
|
3293
|
-
}, z.core.$strip>>;
|
|
3294
|
-
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
3295
|
-
lat: z.ZodNumber;
|
|
3296
|
-
lng: z.ZodNumber;
|
|
3297
|
-
}, z.core.$strip>;
|
|
3298
|
-
}, z.core.$strip>;
|
|
3299
3767
|
export declare const zContactPropertyResponse: z.ZodObject<{
|
|
3300
3768
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
3301
3769
|
propertyId: z.ZodUUID;
|
|
@@ -4192,6 +4660,21 @@ export declare const zPutMeetingsByMeetingIdCancelData: z.ZodObject<{
|
|
|
4192
4660
|
* No Content
|
|
4193
4661
|
*/
|
|
4194
4662
|
export declare const zPutMeetingsByMeetingIdCancelResponse: z.ZodVoid;
|
|
4663
|
+
export declare const zPutContactsByContactIdPropertiesByPropertyIdListingsByListingIdPriceData: z.ZodObject<{
|
|
4664
|
+
body: z.ZodObject<{
|
|
4665
|
+
price: z.ZodNumber;
|
|
4666
|
+
}, z.core.$strip>;
|
|
4667
|
+
path: z.ZodObject<{
|
|
4668
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4669
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
4670
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
4671
|
+
}, z.core.$strip>;
|
|
4672
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4673
|
+
}, z.core.$strip>;
|
|
4674
|
+
/**
|
|
4675
|
+
* No Content
|
|
4676
|
+
*/
|
|
4677
|
+
export declare const zPutContactsByContactIdPropertiesByPropertyIdListingsByListingIdPriceResponse: z.ZodVoid;
|
|
4195
4678
|
export declare const zPutContactsByContactIdPropertiesByPropertyIdAgreementData: z.ZodObject<{
|
|
4196
4679
|
body: z.ZodObject<{
|
|
4197
4680
|
type: z.ZodEnum<{
|
|
@@ -4450,6 +4933,26 @@ export declare const zPutContactsByContactIdInterestsByInterestIdPublishData: z.
|
|
|
4450
4933
|
* No Content
|
|
4451
4934
|
*/
|
|
4452
4935
|
export declare const zPutContactsByContactIdInterestsByInterestIdPublishResponse: z.ZodVoid;
|
|
4936
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdListingsByExternalListingIdRateData: z.ZodObject<{
|
|
4937
|
+
body: z.ZodObject<{
|
|
4938
|
+
decision: z.ZodEnum<{
|
|
4939
|
+
MAYBE: "MAYBE";
|
|
4940
|
+
DISLIKE: "DISLIKE";
|
|
4941
|
+
LIKE: "LIKE";
|
|
4942
|
+
}>;
|
|
4943
|
+
note: z.ZodOptional<z.ZodString>;
|
|
4944
|
+
}, z.core.$strip>;
|
|
4945
|
+
path: z.ZodObject<{
|
|
4946
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4947
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4948
|
+
externalListingId: z.ZodUUID;
|
|
4949
|
+
}, z.core.$strip>;
|
|
4950
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4951
|
+
}, z.core.$strip>;
|
|
4952
|
+
/**
|
|
4953
|
+
* No Content
|
|
4954
|
+
*/
|
|
4955
|
+
export declare const zPutContactsByContactIdInterestsByInterestIdListingsByExternalListingIdRateResponse: z.ZodVoid;
|
|
4453
4956
|
export declare const zPutContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
|
|
4454
4957
|
body: z.ZodObject<{
|
|
4455
4958
|
externalPropertyId: z.ZodUUID;
|
|
@@ -4556,6 +5059,17 @@ export declare const zPutContactByContactIdUpdateContactDetailsData: z.ZodObject
|
|
|
4556
5059
|
* No Content
|
|
4557
5060
|
*/
|
|
4558
5061
|
export declare const zPutContactByContactIdUpdateContactDetailsResponse: z.ZodVoid;
|
|
5062
|
+
export declare const zPutContactByContactIdReopenData: z.ZodObject<{
|
|
5063
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5064
|
+
path: z.ZodObject<{
|
|
5065
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5066
|
+
}, z.core.$strip>;
|
|
5067
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5068
|
+
}, z.core.$strip>;
|
|
5069
|
+
/**
|
|
5070
|
+
* No Content
|
|
5071
|
+
*/
|
|
5072
|
+
export declare const zPutContactByContactIdReopenResponse: z.ZodVoid;
|
|
4559
5073
|
export declare const zPutContactByContactIdLostData: z.ZodObject<{
|
|
4560
5074
|
body: z.ZodObject<{
|
|
4561
5075
|
reason: z.ZodEnum<{
|
|
@@ -4803,6 +5317,49 @@ export declare const zPostWalletDepositData: z.ZodObject<{
|
|
|
4803
5317
|
* No Content
|
|
4804
5318
|
*/
|
|
4805
5319
|
export declare const zPostWalletDepositResponse: z.ZodVoid;
|
|
5320
|
+
export declare const zDeleteSubscriptionsData: z.ZodObject<{
|
|
5321
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5322
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
5323
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5324
|
+
}, z.core.$strip>;
|
|
5325
|
+
/**
|
|
5326
|
+
* No Content
|
|
5327
|
+
*/
|
|
5328
|
+
export declare const zDeleteSubscriptionsResponse: z.ZodVoid;
|
|
5329
|
+
export declare const zPostSubscriptionsData: z.ZodObject<{
|
|
5330
|
+
body: z.ZodObject<{
|
|
5331
|
+
plan: z.ZodEnum<{
|
|
5332
|
+
STARTER: "STARTER";
|
|
5333
|
+
PRO: "PRO";
|
|
5334
|
+
ENTERPRISE: "ENTERPRISE";
|
|
5335
|
+
}>;
|
|
5336
|
+
billingCycle: z.ZodEnum<{
|
|
5337
|
+
MONTHLY: "MONTHLY";
|
|
5338
|
+
ANNUAL: "ANNUAL";
|
|
5339
|
+
}>;
|
|
5340
|
+
name: z.ZodString;
|
|
5341
|
+
email: z.ZodEmail;
|
|
5342
|
+
phone: z.ZodString;
|
|
5343
|
+
subdomain: z.ZodString;
|
|
5344
|
+
address: z.ZodObject<{
|
|
5345
|
+
country: z.ZodString;
|
|
5346
|
+
city: z.ZodString;
|
|
5347
|
+
district: z.ZodString;
|
|
5348
|
+
subdistrict: z.ZodString;
|
|
5349
|
+
street: z.ZodString;
|
|
5350
|
+
}, z.core.$strip>;
|
|
5351
|
+
}, z.core.$strip>;
|
|
5352
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
5353
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5354
|
+
}, z.core.$strip>;
|
|
5355
|
+
/**
|
|
5356
|
+
* Created
|
|
5357
|
+
*/
|
|
5358
|
+
export declare const zPostSubscriptionsResponse: z.ZodObject<{
|
|
5359
|
+
checkoutUrl: z.ZodOptional<z.ZodString>;
|
|
5360
|
+
agencyId: z.ZodOptional<z.ZodUUID>;
|
|
5361
|
+
subscriptionId: z.ZodOptional<z.ZodUUID>;
|
|
5362
|
+
}, z.core.$strip>;
|
|
4806
5363
|
export declare const zGetRolesData: z.ZodObject<{
|
|
4807
5364
|
body: z.ZodOptional<z.ZodNever>;
|
|
4808
5365
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -4937,7 +5494,12 @@ export declare const zPostPublicWebhooksMetaFbData: z.ZodObject<{
|
|
|
4937
5494
|
'X-Hub-Signature-256': z.ZodOptional<z.ZodString>;
|
|
4938
5495
|
}, z.core.$strip>>;
|
|
4939
5496
|
}, z.core.$strip>;
|
|
4940
|
-
export declare const
|
|
5497
|
+
export declare const zPostPublicWebhooksFlittData: z.ZodObject<{
|
|
5498
|
+
body: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
5499
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
5500
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5501
|
+
}, z.core.$strip>;
|
|
5502
|
+
export declare const zPostPublicRecomendationsByTokenListingsByExternalListingIdRateData: z.ZodObject<{
|
|
4941
5503
|
body: z.ZodObject<{
|
|
4942
5504
|
decision: z.ZodEnum<{
|
|
4943
5505
|
MAYBE: "MAYBE";
|
|
@@ -4948,14 +5510,14 @@ export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateData: z.Zo
|
|
|
4948
5510
|
}, z.core.$strip>;
|
|
4949
5511
|
path: z.ZodObject<{
|
|
4950
5512
|
token: z.ZodUUID;
|
|
4951
|
-
|
|
5513
|
+
externalListingId: z.ZodUUID;
|
|
4952
5514
|
}, z.core.$strip>;
|
|
4953
5515
|
query: z.ZodOptional<z.ZodNever>;
|
|
4954
5516
|
}, z.core.$strip>;
|
|
4955
5517
|
/**
|
|
4956
5518
|
* No Content
|
|
4957
5519
|
*/
|
|
4958
|
-
export declare const
|
|
5520
|
+
export declare const zPostPublicRecomendationsByTokenListingsByExternalListingIdRateResponse: z.ZodVoid;
|
|
4959
5521
|
export declare const zPostPublicOtpPhoneData: z.ZodObject<{
|
|
4960
5522
|
body: z.ZodObject<{
|
|
4961
5523
|
phoneNumber: z.ZodString;
|
|
@@ -5329,9 +5891,9 @@ export declare const zGetConversationsByConversationIdMessagesResponse: z.ZodObj
|
|
|
5329
5891
|
}, z.core.$strip>>]>;
|
|
5330
5892
|
status: z.ZodEnum<{
|
|
5331
5893
|
PENDING: "PENDING";
|
|
5894
|
+
FAILED: "FAILED";
|
|
5332
5895
|
RECEIVED: "RECEIVED";
|
|
5333
5896
|
SENT: "SENT";
|
|
5334
|
-
FAILED: "FAILED";
|
|
5335
5897
|
}>;
|
|
5336
5898
|
sentAt: z.ZodISODateTime;
|
|
5337
5899
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -5345,21 +5907,138 @@ export declare const zGetConversationsByConversationIdMessagesResponse: z.ZodObj
|
|
|
5345
5907
|
nextCursor: z.ZodOptional<z.ZodString>;
|
|
5346
5908
|
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
5347
5909
|
}, z.core.$strip>;
|
|
5348
|
-
export declare const zPostConversationsByConversationIdMessagesData: z.ZodObject<{
|
|
5349
|
-
body: z.ZodObject<{
|
|
5350
|
-
text: z.ZodString;
|
|
5910
|
+
export declare const zPostConversationsByConversationIdMessagesData: z.ZodObject<{
|
|
5911
|
+
body: z.ZodObject<{
|
|
5912
|
+
text: z.ZodString;
|
|
5913
|
+
}, z.core.$strip>;
|
|
5914
|
+
path: z.ZodObject<{
|
|
5915
|
+
conversationId: z.ZodUUID;
|
|
5916
|
+
}, z.core.$strip>;
|
|
5917
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5918
|
+
}, z.core.$strip>;
|
|
5919
|
+
/**
|
|
5920
|
+
* Message persisted and sent
|
|
5921
|
+
*/
|
|
5922
|
+
export declare const zPostConversationsByConversationIdMessagesResponse: z.ZodObject<{
|
|
5923
|
+
id: z.ZodUUID;
|
|
5924
|
+
}, z.core.$strip>;
|
|
5925
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdReopenData: z.ZodObject<{
|
|
5926
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5927
|
+
path: z.ZodObject<{
|
|
5928
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5929
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
5930
|
+
}, z.core.$strip>;
|
|
5931
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5932
|
+
}, z.core.$strip>;
|
|
5933
|
+
/**
|
|
5934
|
+
* No Content
|
|
5935
|
+
*/
|
|
5936
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdReopenResponse: z.ZodVoid;
|
|
5937
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsData: z.ZodObject<{
|
|
5938
|
+
body: z.ZodObject<{
|
|
5939
|
+
listingType: z.ZodEnum<{
|
|
5940
|
+
SALE: "SALE";
|
|
5941
|
+
RENT: "RENT";
|
|
5942
|
+
DAILY_RENT: "DAILY_RENT";
|
|
5943
|
+
PLEDGE: "PLEDGE";
|
|
5944
|
+
}>;
|
|
5945
|
+
askingPrice: z.ZodNumber;
|
|
5946
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
5947
|
+
type: z.ZodString;
|
|
5948
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5949
|
+
amount: z.ZodNumber;
|
|
5950
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
5951
|
+
type: z.ZodString;
|
|
5952
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
5953
|
+
amount: z.ZodNumber;
|
|
5954
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
5955
|
+
type: z.ZodLiteral<"FIXED">;
|
|
5956
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
5957
|
+
type: z.ZodString;
|
|
5958
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5959
|
+
factor: z.ZodNumber;
|
|
5960
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
5961
|
+
type: z.ZodString;
|
|
5962
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
5963
|
+
factor: z.ZodNumber;
|
|
5964
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
5965
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
5966
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
5967
|
+
type: z.ZodString;
|
|
5968
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5969
|
+
rate: z.ZodNumber;
|
|
5970
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
5971
|
+
type: z.ZodString;
|
|
5972
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
5973
|
+
rate: z.ZodNumber;
|
|
5974
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
5975
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
5976
|
+
}, z.core.$strip>>]>>;
|
|
5977
|
+
}, z.core.$strip>;
|
|
5978
|
+
path: z.ZodObject<{
|
|
5979
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5980
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
5981
|
+
}, z.core.$strip>;
|
|
5982
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5983
|
+
}, z.core.$strip>;
|
|
5984
|
+
/**
|
|
5985
|
+
* Created
|
|
5986
|
+
*/
|
|
5987
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsResponse: z.ZodObject<{
|
|
5988
|
+
id: z.ZodUUID;
|
|
5989
|
+
}, z.core.$strip>;
|
|
5990
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdResumeData: z.ZodObject<{
|
|
5991
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5992
|
+
path: z.ZodObject<{
|
|
5993
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5994
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
5995
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
5351
5996
|
}, z.core.$strip>;
|
|
5997
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5998
|
+
}, z.core.$strip>;
|
|
5999
|
+
/**
|
|
6000
|
+
* No Content
|
|
6001
|
+
*/
|
|
6002
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdResumeResponse: z.ZodVoid;
|
|
6003
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenData: z.ZodObject<{
|
|
6004
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
5352
6005
|
path: z.ZodObject<{
|
|
5353
|
-
|
|
6006
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6007
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6008
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
5354
6009
|
}, z.core.$strip>;
|
|
5355
6010
|
query: z.ZodOptional<z.ZodNever>;
|
|
5356
6011
|
}, z.core.$strip>;
|
|
5357
6012
|
/**
|
|
5358
|
-
*
|
|
6013
|
+
* No Content
|
|
5359
6014
|
*/
|
|
5360
|
-
export declare const
|
|
5361
|
-
|
|
6015
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdReopenResponse: z.ZodVoid;
|
|
6016
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdRenewData: z.ZodObject<{
|
|
6017
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
6018
|
+
path: z.ZodObject<{
|
|
6019
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6020
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6021
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6022
|
+
}, z.core.$strip>;
|
|
6023
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
6024
|
+
}, z.core.$strip>;
|
|
6025
|
+
/**
|
|
6026
|
+
* No Content
|
|
6027
|
+
*/
|
|
6028
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdRenewResponse: z.ZodVoid;
|
|
6029
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdPauseData: z.ZodObject<{
|
|
6030
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
6031
|
+
path: z.ZodObject<{
|
|
6032
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6033
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6034
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6035
|
+
}, z.core.$strip>;
|
|
6036
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
5362
6037
|
}, z.core.$strip>;
|
|
6038
|
+
/**
|
|
6039
|
+
* No Content
|
|
6040
|
+
*/
|
|
6041
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdPauseResponse: z.ZodVoid;
|
|
5363
6042
|
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
5364
6043
|
body: z.ZodOptional<z.ZodNever>;
|
|
5365
6044
|
path: z.ZodObject<{
|
|
@@ -5374,29 +6053,83 @@ export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByL
|
|
|
5374
6053
|
*/
|
|
5375
6054
|
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
|
|
5376
6055
|
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
6056
|
+
body: z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6057
|
+
type: z.ZodString;
|
|
6058
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6059
|
+
amount: z.ZodNumber;
|
|
6060
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6061
|
+
type: z.ZodString;
|
|
6062
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6063
|
+
amount: z.ZodNumber;
|
|
6064
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6065
|
+
type: z.ZodLiteral<"FIXED">;
|
|
6066
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6067
|
+
type: z.ZodString;
|
|
6068
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6069
|
+
factor: z.ZodNumber;
|
|
6070
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6071
|
+
type: z.ZodString;
|
|
6072
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6073
|
+
factor: z.ZodNumber;
|
|
6074
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6075
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
6076
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
6077
|
+
type: z.ZodString;
|
|
6078
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
6079
|
+
rate: z.ZodNumber;
|
|
6080
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6081
|
+
type: z.ZodString;
|
|
6082
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
6083
|
+
rate: z.ZodNumber;
|
|
6084
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
6085
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
6086
|
+
}, z.core.$strip>>]>;
|
|
6087
|
+
path: z.ZodObject<{
|
|
6088
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6089
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6090
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6091
|
+
}, z.core.$strip>;
|
|
6092
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
6093
|
+
}, z.core.$strip>;
|
|
6094
|
+
/**
|
|
6095
|
+
* No Content
|
|
6096
|
+
*/
|
|
6097
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse: z.ZodVoid;
|
|
6098
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdCloseData: z.ZodObject<{
|
|
5377
6099
|
body: z.ZodObject<{
|
|
6100
|
+
withdrawExternal: z.ZodOptional<z.ZodBoolean>;
|
|
6101
|
+
}, z.core.$strip>;
|
|
6102
|
+
path: z.ZodObject<{
|
|
6103
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6104
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
5378
6105
|
listingId: z.ZodCoercedBigInt<unknown>;
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
6106
|
+
}, z.core.$strip>;
|
|
6107
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
6108
|
+
}, z.core.$strip>;
|
|
6109
|
+
/**
|
|
6110
|
+
* No Content
|
|
6111
|
+
*/
|
|
6112
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdCloseResponse: z.ZodVoid;
|
|
6113
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdCloseData: z.ZodObject<{
|
|
6114
|
+
body: z.ZodObject<{
|
|
6115
|
+
reason: z.ZodEnum<{
|
|
6116
|
+
OTHER: "OTHER";
|
|
6117
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
6118
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
6119
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
5384
6120
|
}>;
|
|
5385
|
-
|
|
5386
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
5387
|
-
factor: z.ZodOptional<z.ZodNumber>;
|
|
6121
|
+
withdrawExternal: z.ZodOptional<z.ZodBoolean>;
|
|
5388
6122
|
}, z.core.$strip>;
|
|
5389
6123
|
path: z.ZodObject<{
|
|
5390
6124
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
5391
6125
|
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
5392
|
-
listingId: z.ZodCoercedBigInt<unknown>;
|
|
5393
6126
|
}, z.core.$strip>;
|
|
5394
6127
|
query: z.ZodOptional<z.ZodNever>;
|
|
5395
6128
|
}, z.core.$strip>;
|
|
5396
6129
|
/**
|
|
5397
6130
|
* No Content
|
|
5398
6131
|
*/
|
|
5399
|
-
export declare const
|
|
6132
|
+
export declare const zPostContactsByContactIdPropertiesByPropertyIdCloseResponse: z.ZodVoid;
|
|
5400
6133
|
export declare const zPostContactsByContactIdInterestsData: z.ZodObject<{
|
|
5401
6134
|
body: z.ZodObject<{
|
|
5402
6135
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
@@ -6251,7 +6984,6 @@ export declare const zGetPublicRecomendationsByTokenDecisionsData: z.ZodObject<{
|
|
|
6251
6984
|
* OK
|
|
6252
6985
|
*/
|
|
6253
6986
|
export declare const zGetPublicRecomendationsByTokenDecisionsResponse: z.ZodArray<z.ZodObject<{
|
|
6254
|
-
itemId: z.ZodCoercedBigInt<unknown>;
|
|
6255
6987
|
externalPropertyId: z.ZodUUID;
|
|
6256
6988
|
externalListingId: z.ZodUUID;
|
|
6257
6989
|
decision: z.ZodEnum<{
|
|
@@ -6566,6 +7298,215 @@ export declare const zGetPublicAgencySubdomainBySubDomainResponse: z.ZodObject<{
|
|
|
6566
7298
|
logo: z.ZodOptional<z.ZodString>;
|
|
6567
7299
|
theme: z.ZodOptional<z.ZodInt>;
|
|
6568
7300
|
}, z.core.$strip>;
|
|
7301
|
+
export declare const zGetPropertyByPropertyIdPageData: z.ZodObject<{
|
|
7302
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7303
|
+
path: z.ZodObject<{
|
|
7304
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
7305
|
+
}, z.core.$strip>;
|
|
7306
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
7307
|
+
}, z.core.$strip>;
|
|
7308
|
+
/**
|
|
7309
|
+
* OK
|
|
7310
|
+
*/
|
|
7311
|
+
export declare const zGetPropertyByPropertyIdPageResponse: z.ZodObject<{
|
|
7312
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
7313
|
+
propertyId: z.ZodUUID;
|
|
7314
|
+
type: z.ZodEnum<{
|
|
7315
|
+
GARAGE: "GARAGE";
|
|
7316
|
+
HOUSE: "HOUSE";
|
|
7317
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
7318
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
7319
|
+
VILLA: "VILLA";
|
|
7320
|
+
COTTAGE: "COTTAGE";
|
|
7321
|
+
APARTMENT: "APARTMENT";
|
|
7322
|
+
DUPLEX: "DUPLEX";
|
|
7323
|
+
TRIPLEX: "TRIPLEX";
|
|
7324
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
7325
|
+
ATTIC: "ATTIC";
|
|
7326
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
7327
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
7328
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
7329
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
7330
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
7331
|
+
OFFICE: "OFFICE";
|
|
7332
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
7333
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
7334
|
+
WAREHOUSE: "WAREHOUSE";
|
|
7335
|
+
}>;
|
|
7336
|
+
state: z.ZodEnum<{
|
|
7337
|
+
IN_REGISTRATION: "IN_REGISTRATION";
|
|
7338
|
+
CLOSED: "CLOSED";
|
|
7339
|
+
UNLISTED: "UNLISTED";
|
|
7340
|
+
LISTED_INTERNALLY: "LISTED_INTERNALLY";
|
|
7341
|
+
LISTED: "LISTED";
|
|
7342
|
+
}>;
|
|
7343
|
+
details: z.ZodOptional<z.ZodObject<{
|
|
7344
|
+
title: z.ZodString;
|
|
7345
|
+
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
7346
|
+
photoCount: z.ZodOptional<z.ZodInt>;
|
|
7347
|
+
totalArea: z.ZodNumber;
|
|
7348
|
+
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
7349
|
+
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
7350
|
+
address: z.ZodObject<{
|
|
7351
|
+
region: z.ZodObject<{
|
|
7352
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7353
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7354
|
+
language: z.ZodEnum<{
|
|
7355
|
+
ka: "ka";
|
|
7356
|
+
en: "en";
|
|
7357
|
+
ru: "ru";
|
|
7358
|
+
}>;
|
|
7359
|
+
text: z.ZodString;
|
|
7360
|
+
}, z.core.$strip>>;
|
|
7361
|
+
}, z.core.$strip>;
|
|
7362
|
+
district: z.ZodObject<{
|
|
7363
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7364
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7365
|
+
language: z.ZodEnum<{
|
|
7366
|
+
ka: "ka";
|
|
7367
|
+
en: "en";
|
|
7368
|
+
ru: "ru";
|
|
7369
|
+
}>;
|
|
7370
|
+
text: z.ZodString;
|
|
7371
|
+
}, z.core.$strip>>;
|
|
7372
|
+
}, z.core.$strip>;
|
|
7373
|
+
subdistrict: z.ZodObject<{
|
|
7374
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7375
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7376
|
+
language: z.ZodEnum<{
|
|
7377
|
+
ka: "ka";
|
|
7378
|
+
en: "en";
|
|
7379
|
+
ru: "ru";
|
|
7380
|
+
}>;
|
|
7381
|
+
text: z.ZodString;
|
|
7382
|
+
}, z.core.$strip>>;
|
|
7383
|
+
}, z.core.$strip>;
|
|
7384
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
7385
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7386
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7387
|
+
language: z.ZodEnum<{
|
|
7388
|
+
ka: "ka";
|
|
7389
|
+
en: "en";
|
|
7390
|
+
ru: "ru";
|
|
7391
|
+
}>;
|
|
7392
|
+
text: z.ZodString;
|
|
7393
|
+
}, z.core.$strip>>;
|
|
7394
|
+
}, z.core.$strip>>;
|
|
7395
|
+
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
7396
|
+
lat: z.ZodNumber;
|
|
7397
|
+
lng: z.ZodNumber;
|
|
7398
|
+
}, z.core.$strip>;
|
|
7399
|
+
}, z.core.$strip>>;
|
|
7400
|
+
agreement: z.ZodObject<{
|
|
7401
|
+
agreement: z.ZodEnum<{
|
|
7402
|
+
EXCLUSIVE: "EXCLUSIVE";
|
|
7403
|
+
NON_EXCLUSIVE: "NON_EXCLUSIVE";
|
|
7404
|
+
}>;
|
|
7405
|
+
expiryDate: z.ZodOptional<z.ZodISODate>;
|
|
7406
|
+
}, z.core.$strip>;
|
|
7407
|
+
listings: z.ZodArray<z.ZodObject<{
|
|
7408
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
7409
|
+
listingId: z.ZodUUID;
|
|
7410
|
+
listingType: z.ZodEnum<{
|
|
7411
|
+
SALE: "SALE";
|
|
7412
|
+
RENT: "RENT";
|
|
7413
|
+
DAILY_RENT: "DAILY_RENT";
|
|
7414
|
+
PLEDGE: "PLEDGE";
|
|
7415
|
+
}>;
|
|
7416
|
+
marketplaceStatus: z.ZodEnum<{
|
|
7417
|
+
ACTIVE: "ACTIVE";
|
|
7418
|
+
PAUSED: "PAUSED";
|
|
7419
|
+
EXPIRED: "EXPIRED";
|
|
7420
|
+
PENDING: "PENDING";
|
|
7421
|
+
FAILED: "FAILED";
|
|
7422
|
+
}>;
|
|
7423
|
+
crmState: z.ZodEnum<{
|
|
7424
|
+
CLOSED: "CLOSED";
|
|
7425
|
+
OPEN: "OPEN";
|
|
7426
|
+
}>;
|
|
7427
|
+
isProcessing: z.ZodBoolean;
|
|
7428
|
+
price: z.ZodNumber;
|
|
7429
|
+
deal: z.ZodOptional<z.ZodUnion<readonly [z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7430
|
+
type: z.ZodString;
|
|
7431
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7432
|
+
amount: z.ZodNumber;
|
|
7433
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7434
|
+
type: z.ZodString;
|
|
7435
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7436
|
+
amount: z.ZodNumber;
|
|
7437
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
7438
|
+
type: z.ZodLiteral<"FIXED">;
|
|
7439
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7440
|
+
type: z.ZodString;
|
|
7441
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7442
|
+
factor: z.ZodNumber;
|
|
7443
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7444
|
+
type: z.ZodString;
|
|
7445
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7446
|
+
factor: z.ZodNumber;
|
|
7447
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
7448
|
+
type: z.ZodLiteral<"MONTHS_OF_RENT">;
|
|
7449
|
+
}, z.core.$strip>>, z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
7450
|
+
type: z.ZodString;
|
|
7451
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7452
|
+
rate: z.ZodNumber;
|
|
7453
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7454
|
+
type: z.ZodString;
|
|
7455
|
+
}, z.core.$strip>>, z.ZodObject<{
|
|
7456
|
+
rate: z.ZodNumber;
|
|
7457
|
+
commission: z.ZodOptional<z.ZodNumber>;
|
|
7458
|
+
type: z.ZodLiteral<"PERCENTAGE">;
|
|
7459
|
+
}, z.core.$strip>>]>>;
|
|
7460
|
+
platformListings: z.ZodArray<z.ZodObject<{
|
|
7461
|
+
platformId: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
7462
|
+
platformType: z.ZodEnum<{
|
|
7463
|
+
SS: "SS";
|
|
7464
|
+
MY_HOME: "MY_HOME";
|
|
7465
|
+
}>;
|
|
7466
|
+
status: z.ZodEnum<{
|
|
7467
|
+
EXPIRED: "EXPIRED";
|
|
7468
|
+
PENDING: "PENDING";
|
|
7469
|
+
FAILED: "FAILED";
|
|
7470
|
+
SYNDICATED: "SYNDICATED";
|
|
7471
|
+
}>;
|
|
7472
|
+
listedAt: z.ZodOptional<z.ZodISODate>;
|
|
7473
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
7474
|
+
renewedAt: z.ZodOptional<z.ZodISODate>;
|
|
7475
|
+
boost: z.ZodOptional<z.ZodObject<{
|
|
7476
|
+
tier: z.ZodEnum<{
|
|
7477
|
+
VIP: "VIP";
|
|
7478
|
+
VIP_PLUS: "VIP_PLUS";
|
|
7479
|
+
SUPER_VIP: "SUPER_VIP";
|
|
7480
|
+
}>;
|
|
7481
|
+
status: z.ZodEnum<{
|
|
7482
|
+
ACTIVE: "ACTIVE";
|
|
7483
|
+
PENDING: "PENDING";
|
|
7484
|
+
FAIL_NO_BALANCE: "FAIL_NO_BALANCE";
|
|
7485
|
+
FAILED: "FAILED";
|
|
7486
|
+
}>;
|
|
7487
|
+
activatedAt: z.ZodOptional<z.ZodISODate>;
|
|
7488
|
+
expiresAt: z.ZodOptional<z.ZodISODate>;
|
|
7489
|
+
}, z.core.$strip>>;
|
|
7490
|
+
coloredListing: z.ZodOptional<z.ZodObject<{
|
|
7491
|
+
activatedAt: z.ZodISODate;
|
|
7492
|
+
expiresAt: z.ZodISODate;
|
|
7493
|
+
}, z.core.$strip>>;
|
|
7494
|
+
}, z.core.$strip>>;
|
|
7495
|
+
createdAt: z.ZodISODateTime;
|
|
7496
|
+
closedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
7497
|
+
}, z.core.$strip>>;
|
|
7498
|
+
createdAt: z.ZodISODateTime;
|
|
7499
|
+
updatedAt: z.ZodISODateTime;
|
|
7500
|
+
closeReason: z.ZodOptional<z.ZodObject<{
|
|
7501
|
+
closedAt: z.ZodISODateTime;
|
|
7502
|
+
reason: z.ZodEnum<{
|
|
7503
|
+
OTHER: "OTHER";
|
|
7504
|
+
DEAL_CLOSED: "DEAL_CLOSED";
|
|
7505
|
+
OWNER_WITHDREW: "OWNER_WITHDREW";
|
|
7506
|
+
MANDATE_EXPIRED: "MANDATE_EXPIRED";
|
|
7507
|
+
}>;
|
|
7508
|
+
}, z.core.$strip>>;
|
|
7509
|
+
}, z.core.$strip>;
|
|
6569
7510
|
export declare const zGetOauthData: z.ZodObject<{
|
|
6570
7511
|
body: z.ZodOptional<z.ZodNever>;
|
|
6571
7512
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -6668,6 +7609,17 @@ export declare const zGetOauthGoogleAuthorizeData: z.ZodObject<{
|
|
|
6668
7609
|
* OK
|
|
6669
7610
|
*/
|
|
6670
7611
|
export declare const zGetOauthGoogleAuthorizeResponse: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
7612
|
+
export declare const zDeleteNotificationsData: z.ZodObject<{
|
|
7613
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
7614
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
7615
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
7616
|
+
target: z.ZodOptional<z.ZodString>;
|
|
7617
|
+
}, z.core.$strip>>;
|
|
7618
|
+
}, z.core.$strip>;
|
|
7619
|
+
/**
|
|
7620
|
+
* No Content
|
|
7621
|
+
*/
|
|
7622
|
+
export declare const zDeleteNotificationsResponse: z.ZodVoid;
|
|
6671
7623
|
export declare const zGetNotificationsData: z.ZodObject<{
|
|
6672
7624
|
body: z.ZodOptional<z.ZodNever>;
|
|
6673
7625
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -7086,10 +8038,10 @@ export declare const zGetListingResponse: z.ZodObject<{
|
|
|
7086
8038
|
}>>;
|
|
7087
8039
|
price: z.ZodOptional<z.ZodNumber>;
|
|
7088
8040
|
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
7089
|
-
|
|
7090
|
-
FIXED_RENT: "FIXED_RENT";
|
|
7091
|
-
PERCENTAGE: "PERCENTAGE";
|
|
8041
|
+
FIXED: "FIXED";
|
|
7092
8042
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
8043
|
+
PERCENTAGE: "PERCENTAGE";
|
|
8044
|
+
NOT_SET: "NOT_SET";
|
|
7093
8045
|
}>>;
|
|
7094
8046
|
commission: z.ZodOptional<z.ZodNumber>;
|
|
7095
8047
|
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7229,10 +8181,10 @@ export declare const zGetListingByPropertyIdResponse: z.ZodObject<{
|
|
|
7229
8181
|
}>>;
|
|
7230
8182
|
price: z.ZodOptional<z.ZodNumber>;
|
|
7231
8183
|
commissionType: z.ZodOptional<z.ZodEnum<{
|
|
7232
|
-
|
|
7233
|
-
FIXED_RENT: "FIXED_RENT";
|
|
7234
|
-
PERCENTAGE: "PERCENTAGE";
|
|
8184
|
+
FIXED: "FIXED";
|
|
7235
8185
|
MONTHS_OF_RENT: "MONTHS_OF_RENT";
|
|
8186
|
+
PERCENTAGE: "PERCENTAGE";
|
|
8187
|
+
NOT_SET: "NOT_SET";
|
|
7236
8188
|
}>>;
|
|
7237
8189
|
commission: z.ZodOptional<z.ZodNumber>;
|
|
7238
8190
|
platforms: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -7501,9 +8453,9 @@ export declare const zGetConversationsByConversationIdUpdatesResponse: z.ZodObje
|
|
|
7501
8453
|
}, z.core.$strip>>]>;
|
|
7502
8454
|
status: z.ZodEnum<{
|
|
7503
8455
|
PENDING: "PENDING";
|
|
8456
|
+
FAILED: "FAILED";
|
|
7504
8457
|
RECEIVED: "RECEIVED";
|
|
7505
8458
|
SENT: "SENT";
|
|
7506
|
-
FAILED: "FAILED";
|
|
7507
8459
|
}>;
|
|
7508
8460
|
sentAt: z.ZodISODateTime;
|
|
7509
8461
|
failureReason: z.ZodOptional<z.ZodString>;
|
|
@@ -8394,17 +9346,32 @@ export declare const zDeleteConversationsByConversationIdPresenceData: z.ZodObje
|
|
|
8394
9346
|
* No Content
|
|
8395
9347
|
*/
|
|
8396
9348
|
export declare const zDeleteConversationsByConversationIdPresenceResponse: z.ZodVoid;
|
|
8397
|
-
export declare const
|
|
9349
|
+
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdData: z.ZodObject<{
|
|
9350
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
9351
|
+
path: z.ZodObject<{
|
|
9352
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
9353
|
+
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
9354
|
+
listingId: z.ZodCoercedBigInt<unknown>;
|
|
9355
|
+
}, z.core.$strip>;
|
|
9356
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
9357
|
+
withdrawExternal: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
9358
|
+
}, z.core.$strip>>;
|
|
9359
|
+
}, z.core.$strip>;
|
|
9360
|
+
/**
|
|
9361
|
+
* No Content
|
|
9362
|
+
*/
|
|
9363
|
+
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdResponse: z.ZodVoid;
|
|
9364
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdListingsByExternalListingIdData: z.ZodObject<{
|
|
8398
9365
|
body: z.ZodOptional<z.ZodNever>;
|
|
8399
9366
|
path: z.ZodObject<{
|
|
8400
9367
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
8401
9368
|
interestId: z.ZodCoercedBigInt<unknown>;
|
|
8402
|
-
|
|
9369
|
+
externalListingId: z.ZodUUID;
|
|
8403
9370
|
}, z.core.$strip>;
|
|
8404
9371
|
query: z.ZodOptional<z.ZodNever>;
|
|
8405
9372
|
}, z.core.$strip>;
|
|
8406
9373
|
/**
|
|
8407
9374
|
* No Content
|
|
8408
9375
|
*/
|
|
8409
|
-
export declare const
|
|
9376
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdListingsByExternalListingIdResponse: z.ZodVoid;
|
|
8410
9377
|
//# sourceMappingURL=zod.gen.d.ts.map
|