@homespot-sdk/core 0.0.314 → 0.0.316
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/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 +135 -95
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +152 -100
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +20 -20
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +67 -63
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/transformers.gen.d.ts +4 -4
- package/dist/rem/transformers.gen.d.ts.map +1 -1
- package/dist/rem/transformers.gen.js +11 -6
- package/dist/rem/transformers.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +204 -204
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +629 -555
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +223 -204
- package/dist/rem/zod.gen.js.map +1 -1
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -1
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/schemas.gen.d.ts +25 -0
- package/dist/utils/schemas.gen.d.ts.map +1 -1
- package/dist/utils/schemas.gen.js +25 -0
- package/dist/utils/schemas.gen.js.map +1 -1
- package/dist/utils/sdk.gen.d.ts +3 -2
- package/dist/utils/sdk.gen.d.ts.map +1 -1
- package/dist/utils/sdk.gen.js +2 -1
- package/dist/utils/sdk.gen.js.map +1 -1
- package/dist/utils/types.gen.d.ts +23 -0
- package/dist/utils/types.gen.d.ts.map +1 -1
- package/dist/utils/zod.gen.d.ts +95 -0
- package/dist/utils/zod.gen.d.ts.map +1 -1
- package/dist/utils/zod.gen.js +26 -0
- package/dist/utils/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/zod.gen.d.ts
CHANGED
|
@@ -167,9 +167,6 @@ 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 zRenameClientRecommendationsRequest: z.ZodObject<{
|
|
171
|
-
name: z.ZodOptional<z.ZodString>;
|
|
172
|
-
}, z.core.$strip>;
|
|
173
170
|
export declare const zAgreementRequest: z.ZodObject<{
|
|
174
171
|
type: z.ZodEnum<{
|
|
175
172
|
EXCLUSIVE: "EXCLUSIVE";
|
|
@@ -374,7 +371,6 @@ export declare const zRateRecommendationItemRequest: z.ZodObject<{
|
|
|
374
371
|
MAYBE: "MAYBE";
|
|
375
372
|
DISLIKE: "DISLIKE";
|
|
376
373
|
LIKE: "LIKE";
|
|
377
|
-
VISIT: "VISIT";
|
|
378
374
|
}>;
|
|
379
375
|
note: z.ZodOptional<z.ZodString>;
|
|
380
376
|
}, z.core.$strip>;
|
|
@@ -515,17 +511,6 @@ export declare const zProblemDetail: z.ZodObject<{
|
|
|
515
511
|
export declare const zIdResponseUuid: z.ZodObject<{
|
|
516
512
|
id: z.ZodUUID;
|
|
517
513
|
}, z.core.$strip>;
|
|
518
|
-
export declare const zCreateClientRecommendationsRequest: z.ZodObject<{
|
|
519
|
-
title: z.ZodString;
|
|
520
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
521
|
-
}, z.core.$strip>;
|
|
522
|
-
export declare const zRecommendationsId: z.ZodObject<{
|
|
523
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
524
|
-
}, z.core.$strip>;
|
|
525
|
-
export declare const zRecommendListingRequest: z.ZodObject<{
|
|
526
|
-
externalPropertyId: z.ZodUUID;
|
|
527
|
-
externalListingId: z.ZodUUID;
|
|
528
|
-
}, z.core.$strip>;
|
|
529
514
|
export declare const zAddDealRequest: z.ZodObject<{
|
|
530
515
|
listingId: z.ZodCoercedBigInt<unknown>;
|
|
531
516
|
commissionType: z.ZodEnum<{
|
|
@@ -541,6 +526,13 @@ export declare const zAddDealRequest: z.ZodObject<{
|
|
|
541
526
|
export declare const zInterestId: z.ZodObject<{
|
|
542
527
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
543
528
|
}, z.core.$strip>;
|
|
529
|
+
export declare const zTitleRequest: z.ZodObject<{
|
|
530
|
+
title: z.ZodString;
|
|
531
|
+
}, z.core.$strip>;
|
|
532
|
+
export declare const zRecommendListingRequest: z.ZodObject<{
|
|
533
|
+
externalPropertyId: z.ZodUUID;
|
|
534
|
+
externalListingId: z.ZodUUID;
|
|
535
|
+
}, z.core.$strip>;
|
|
544
536
|
export declare const zOnboardClientRequest: z.ZodObject<{
|
|
545
537
|
title: z.ZodOptional<z.ZodString>;
|
|
546
538
|
contactInfo: z.ZodObject<{
|
|
@@ -799,12 +791,10 @@ export declare const zAddressResponse: z.ZodObject<{
|
|
|
799
791
|
lng: z.ZodNumber;
|
|
800
792
|
}, z.core.$strip>;
|
|
801
793
|
export declare const zRecommendationsCardView: z.ZodObject<{
|
|
802
|
-
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
803
794
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
804
795
|
MAYBE: "MAYBE";
|
|
805
796
|
DISLIKE: "DISLIKE";
|
|
806
797
|
LIKE: "LIKE";
|
|
807
|
-
VISIT: "VISIT";
|
|
808
798
|
}>>;
|
|
809
799
|
clientNote: z.ZodOptional<z.ZodString>;
|
|
810
800
|
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -898,12 +888,10 @@ export declare const zRecommendationsCardView: z.ZodObject<{
|
|
|
898
888
|
}, z.core.$strip>;
|
|
899
889
|
export declare const zPagedModelRecommendationsCardView: z.ZodObject<{
|
|
900
890
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
901
|
-
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
902
891
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
903
892
|
MAYBE: "MAYBE";
|
|
904
893
|
DISLIKE: "DISLIKE";
|
|
905
894
|
LIKE: "LIKE";
|
|
906
|
-
VISIT: "VISIT";
|
|
907
895
|
}>>;
|
|
908
896
|
clientNote: z.ZodOptional<z.ZodString>;
|
|
909
897
|
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -1003,22 +991,20 @@ export declare const zPagedModelRecommendationsCardView: z.ZodObject<{
|
|
|
1003
991
|
}, z.core.$strip>>;
|
|
1004
992
|
}, z.core.$strip>;
|
|
1005
993
|
export declare const zRecommendationResponse: z.ZodObject<{
|
|
1006
|
-
|
|
994
|
+
shareToken: z.ZodUUID;
|
|
1007
995
|
title: z.ZodString;
|
|
1008
996
|
createdAt: z.ZodISODateTime;
|
|
1009
997
|
status: z.ZodEnum<{
|
|
1010
998
|
DRAFT: "DRAFT";
|
|
1011
|
-
|
|
999
|
+
SHARED: "SHARED";
|
|
1012
1000
|
CLOSED: "CLOSED";
|
|
1013
1001
|
}>;
|
|
1014
1002
|
recommendations: z.ZodObject<{
|
|
1015
1003
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1016
|
-
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
1017
1004
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
1018
1005
|
MAYBE: "MAYBE";
|
|
1019
1006
|
DISLIKE: "DISLIKE";
|
|
1020
1007
|
LIKE: "LIKE";
|
|
1021
|
-
VISIT: "VISIT";
|
|
1022
1008
|
}>>;
|
|
1023
1009
|
clientNote: z.ZodOptional<z.ZodString>;
|
|
1024
1010
|
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -1126,7 +1112,6 @@ export declare const zRecommendationDecisionResponse: z.ZodObject<{
|
|
|
1126
1112
|
MAYBE: "MAYBE";
|
|
1127
1113
|
DISLIKE: "DISLIKE";
|
|
1128
1114
|
LIKE: "LIKE";
|
|
1129
|
-
VISIT: "VISIT";
|
|
1130
1115
|
}>;
|
|
1131
1116
|
}, z.core.$strip>;
|
|
1132
1117
|
export declare const zPermissionResponse: z.ZodObject<{
|
|
@@ -2376,8 +2361,19 @@ export declare const zCursorPageMessageView: z.ZodObject<{
|
|
|
2376
2361
|
nextCursor: z.ZodOptional<z.ZodString>;
|
|
2377
2362
|
hasNext: z.ZodOptional<z.ZodBoolean>;
|
|
2378
2363
|
}, z.core.$strip>;
|
|
2379
|
-
export declare const
|
|
2380
|
-
|
|
2364
|
+
export declare const zRangeBigDecimal: z.ZodObject<{
|
|
2365
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2366
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2367
|
+
}, z.core.$strip>;
|
|
2368
|
+
export declare const zRangeDouble: z.ZodObject<{
|
|
2369
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2370
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2371
|
+
}, z.core.$strip>;
|
|
2372
|
+
export declare const zRangeInteger: z.ZodObject<{
|
|
2373
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
2374
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
2375
|
+
}, z.core.$strip>;
|
|
2376
|
+
export declare const zCriteria: z.ZodObject<{
|
|
2381
2377
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
2382
2378
|
GARAGE: "GARAGE";
|
|
2383
2379
|
HOUSE: "HOUSE";
|
|
@@ -2406,16 +2402,26 @@ export declare const zConstantInterestResponse: z.ZodObject<{
|
|
|
2406
2402
|
DAILY_RENT: "DAILY_RENT";
|
|
2407
2403
|
PLEDGE: "PLEDGE";
|
|
2408
2404
|
}>;
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2405
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
2406
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2407
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2408
|
+
}, z.core.$strip>>;
|
|
2409
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
2410
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
2411
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
2412
|
+
}, z.core.$strip>>;
|
|
2413
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
2414
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
2415
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
2416
|
+
}, z.core.$strip>>;
|
|
2417
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
2418
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2419
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2420
|
+
}, z.core.$strip>>;
|
|
2421
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
2422
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2423
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2424
|
+
}, z.core.$strip>>;
|
|
2419
2425
|
region: z.ZodOptional<z.ZodObject<{
|
|
2420
2426
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2421
2427
|
names: z.ZodArray<z.ZodObject<{
|
|
@@ -2460,7 +2466,123 @@ export declare const zConstantInterestResponse: z.ZodObject<{
|
|
|
2460
2466
|
text: z.ZodString;
|
|
2461
2467
|
}, z.core.$strip>>;
|
|
2462
2468
|
}, z.core.$strip>>;
|
|
2463
|
-
|
|
2469
|
+
}, z.core.$strip>;
|
|
2470
|
+
export declare const zRecommendationStats: z.ZodObject<{
|
|
2471
|
+
total: z.ZodInt;
|
|
2472
|
+
liked: z.ZodInt;
|
|
2473
|
+
disliked: z.ZodInt;
|
|
2474
|
+
undecided: z.ZodInt;
|
|
2475
|
+
}, z.core.$strip>;
|
|
2476
|
+
export declare const zInterestResponse: z.ZodObject<{
|
|
2477
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2478
|
+
title: z.ZodString;
|
|
2479
|
+
status: z.ZodEnum<{
|
|
2480
|
+
DRAFT: "DRAFT";
|
|
2481
|
+
SHARED: "SHARED";
|
|
2482
|
+
CLOSED: "CLOSED";
|
|
2483
|
+
}>;
|
|
2484
|
+
shareToken: z.ZodUUID;
|
|
2485
|
+
createdAt: z.ZodISODateTime;
|
|
2486
|
+
criteria: z.ZodObject<{
|
|
2487
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
2488
|
+
GARAGE: "GARAGE";
|
|
2489
|
+
HOUSE: "HOUSE";
|
|
2490
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
2491
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
2492
|
+
VILLA: "VILLA";
|
|
2493
|
+
COTTAGE: "COTTAGE";
|
|
2494
|
+
APARTMENT: "APARTMENT";
|
|
2495
|
+
DUPLEX: "DUPLEX";
|
|
2496
|
+
TRIPLEX: "TRIPLEX";
|
|
2497
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
2498
|
+
ATTIC: "ATTIC";
|
|
2499
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
2500
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
2501
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
2502
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
2503
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
2504
|
+
OFFICE: "OFFICE";
|
|
2505
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
2506
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
2507
|
+
WAREHOUSE: "WAREHOUSE";
|
|
2508
|
+
}>>;
|
|
2509
|
+
listingType: z.ZodEnum<{
|
|
2510
|
+
SALE: "SALE";
|
|
2511
|
+
RENT: "RENT";
|
|
2512
|
+
DAILY_RENT: "DAILY_RENT";
|
|
2513
|
+
PLEDGE: "PLEDGE";
|
|
2514
|
+
}>;
|
|
2515
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
2516
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2517
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2518
|
+
}, z.core.$strip>>;
|
|
2519
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
2520
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
2521
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
2522
|
+
}, z.core.$strip>>;
|
|
2523
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
2524
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
2525
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
2526
|
+
}, z.core.$strip>>;
|
|
2527
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
2528
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2529
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2530
|
+
}, z.core.$strip>>;
|
|
2531
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
2532
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
2533
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
2534
|
+
}, z.core.$strip>>;
|
|
2535
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
2536
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2537
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2538
|
+
language: z.ZodEnum<{
|
|
2539
|
+
ka: "ka";
|
|
2540
|
+
en: "en";
|
|
2541
|
+
ru: "ru";
|
|
2542
|
+
}>;
|
|
2543
|
+
text: z.ZodString;
|
|
2544
|
+
}, z.core.$strip>>;
|
|
2545
|
+
}, z.core.$strip>>;
|
|
2546
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
2547
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2548
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2549
|
+
language: z.ZodEnum<{
|
|
2550
|
+
ka: "ka";
|
|
2551
|
+
en: "en";
|
|
2552
|
+
ru: "ru";
|
|
2553
|
+
}>;
|
|
2554
|
+
text: z.ZodString;
|
|
2555
|
+
}, z.core.$strip>>;
|
|
2556
|
+
}, z.core.$strip>>;
|
|
2557
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
2558
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2559
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2560
|
+
language: z.ZodEnum<{
|
|
2561
|
+
ka: "ka";
|
|
2562
|
+
en: "en";
|
|
2563
|
+
ru: "ru";
|
|
2564
|
+
}>;
|
|
2565
|
+
text: z.ZodString;
|
|
2566
|
+
}, z.core.$strip>>;
|
|
2567
|
+
}, z.core.$strip>>;
|
|
2568
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
2569
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
2570
|
+
names: z.ZodArray<z.ZodObject<{
|
|
2571
|
+
language: z.ZodEnum<{
|
|
2572
|
+
ka: "ka";
|
|
2573
|
+
en: "en";
|
|
2574
|
+
ru: "ru";
|
|
2575
|
+
}>;
|
|
2576
|
+
text: z.ZodString;
|
|
2577
|
+
}, z.core.$strip>>;
|
|
2578
|
+
}, z.core.$strip>>;
|
|
2579
|
+
}, z.core.$strip>;
|
|
2580
|
+
recommendations: z.ZodObject<{
|
|
2581
|
+
total: z.ZodInt;
|
|
2582
|
+
liked: z.ZodInt;
|
|
2583
|
+
disliked: z.ZodInt;
|
|
2584
|
+
undecided: z.ZodInt;
|
|
2585
|
+
}, z.core.$strip>;
|
|
2464
2586
|
}, z.core.$strip>;
|
|
2465
2587
|
export declare const zCommentView: z.ZodObject<{
|
|
2466
2588
|
id: z.ZodUUID;
|
|
@@ -2861,104 +2983,139 @@ export declare const zClient360Response: z.ZodObject<{
|
|
|
2861
2983
|
}, z.core.$strip>>;
|
|
2862
2984
|
isSearching: z.ZodBoolean;
|
|
2863
2985
|
isListing: z.ZodBoolean;
|
|
2864
|
-
priority: z.
|
|
2986
|
+
priority: z.ZodEnum<{
|
|
2865
2987
|
CRITICAL: "CRITICAL";
|
|
2866
2988
|
HIGH: "HIGH";
|
|
2867
2989
|
MEDIUM: "MEDIUM";
|
|
2868
2990
|
LOW: "LOW";
|
|
2869
|
-
}
|
|
2991
|
+
}>;
|
|
2992
|
+
status: z.ZodEnum<{
|
|
2993
|
+
NEW: "NEW";
|
|
2994
|
+
ON_HOLD: "ON_HOLD";
|
|
2995
|
+
COLD: "COLD";
|
|
2996
|
+
WARM: "WARM";
|
|
2997
|
+
HOT: "HOT";
|
|
2998
|
+
WAITING_PAYMENT: "WAITING_PAYMENT";
|
|
2999
|
+
LOST: "LOST";
|
|
3000
|
+
WON: "WON";
|
|
3001
|
+
}>;
|
|
2870
3002
|
createdAt: z.ZodISODateTime;
|
|
2871
3003
|
updatedAt: z.ZodISODateTime;
|
|
2872
3004
|
interests: z.ZodArray<z.ZodObject<{
|
|
2873
3005
|
id: z.ZodCoercedBigInt<unknown>;
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
3006
|
+
title: z.ZodString;
|
|
3007
|
+
status: z.ZodEnum<{
|
|
3008
|
+
DRAFT: "DRAFT";
|
|
3009
|
+
SHARED: "SHARED";
|
|
3010
|
+
CLOSED: "CLOSED";
|
|
3011
|
+
}>;
|
|
3012
|
+
shareToken: z.ZodUUID;
|
|
3013
|
+
createdAt: z.ZodISODateTime;
|
|
3014
|
+
criteria: z.ZodObject<{
|
|
3015
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
3016
|
+
GARAGE: "GARAGE";
|
|
3017
|
+
HOUSE: "HOUSE";
|
|
3018
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
3019
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
3020
|
+
VILLA: "VILLA";
|
|
3021
|
+
COTTAGE: "COTTAGE";
|
|
3022
|
+
APARTMENT: "APARTMENT";
|
|
3023
|
+
DUPLEX: "DUPLEX";
|
|
3024
|
+
TRIPLEX: "TRIPLEX";
|
|
3025
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
3026
|
+
ATTIC: "ATTIC";
|
|
3027
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
3028
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
3029
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
3030
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
3031
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
3032
|
+
OFFICE: "OFFICE";
|
|
3033
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
3034
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
3035
|
+
WAREHOUSE: "WAREHOUSE";
|
|
3036
|
+
}>>;
|
|
3037
|
+
listingType: z.ZodEnum<{
|
|
3038
|
+
SALE: "SALE";
|
|
3039
|
+
RENT: "RENT";
|
|
3040
|
+
DAILY_RENT: "DAILY_RENT";
|
|
3041
|
+
PLEDGE: "PLEDGE";
|
|
3042
|
+
}>;
|
|
3043
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
3044
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3045
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3046
|
+
}, z.core.$strip>>;
|
|
3047
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
3048
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
3049
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
3050
|
+
}, z.core.$strip>>;
|
|
3051
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
3052
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
3053
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
3054
|
+
}, z.core.$strip>>;
|
|
3055
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
3056
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3057
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3058
|
+
}, z.core.$strip>>;
|
|
3059
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
3060
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3061
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3062
|
+
}, z.core.$strip>>;
|
|
3063
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
3064
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3065
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3066
|
+
language: z.ZodEnum<{
|
|
3067
|
+
ka: "ka";
|
|
3068
|
+
en: "en";
|
|
3069
|
+
ru: "ru";
|
|
3070
|
+
}>;
|
|
3071
|
+
text: z.ZodString;
|
|
3072
|
+
}, z.core.$strip>>;
|
|
3073
|
+
}, z.core.$strip>>;
|
|
3074
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
3075
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3076
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3077
|
+
language: z.ZodEnum<{
|
|
3078
|
+
ka: "ka";
|
|
3079
|
+
en: "en";
|
|
3080
|
+
ru: "ru";
|
|
3081
|
+
}>;
|
|
3082
|
+
text: z.ZodString;
|
|
3083
|
+
}, z.core.$strip>>;
|
|
3084
|
+
}, z.core.$strip>>;
|
|
3085
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
3086
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3087
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3088
|
+
language: z.ZodEnum<{
|
|
3089
|
+
ka: "ka";
|
|
3090
|
+
en: "en";
|
|
3091
|
+
ru: "ru";
|
|
3092
|
+
}>;
|
|
3093
|
+
text: z.ZodString;
|
|
3094
|
+
}, z.core.$strip>>;
|
|
3095
|
+
}, z.core.$strip>>;
|
|
3096
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
3097
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3098
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3099
|
+
language: z.ZodEnum<{
|
|
3100
|
+
ka: "ka";
|
|
3101
|
+
en: "en";
|
|
3102
|
+
ru: "ru";
|
|
3103
|
+
}>;
|
|
3104
|
+
text: z.ZodString;
|
|
3105
|
+
}, z.core.$strip>>;
|
|
3106
|
+
}, z.core.$strip>>;
|
|
3107
|
+
}, z.core.$strip>;
|
|
3108
|
+
recommendations: z.ZodObject<{
|
|
3109
|
+
total: z.ZodInt;
|
|
3110
|
+
liked: z.ZodInt;
|
|
3111
|
+
disliked: z.ZodInt;
|
|
3112
|
+
undecided: z.ZodInt;
|
|
3113
|
+
}, z.core.$strip>;
|
|
3114
|
+
}, z.core.$strip>>;
|
|
3115
|
+
properties: z.ZodArray<z.ZodObject<{
|
|
3116
|
+
publicId: z.ZodCoercedBigInt<unknown>;
|
|
3117
|
+
propertyId: z.ZodUUID;
|
|
3118
|
+
type: z.ZodEnum<{
|
|
2962
3119
|
GARAGE: "GARAGE";
|
|
2963
3120
|
HOUSE: "HOUSE";
|
|
2964
3121
|
TOWN_HOUSE: "TOWN_HOUSE";
|
|
@@ -3556,20 +3713,6 @@ export declare const zPutMeetingsByMeetingIdCancelData: z.ZodObject<{
|
|
|
3556
3713
|
* No Content
|
|
3557
3714
|
*/
|
|
3558
3715
|
export declare const zPutMeetingsByMeetingIdCancelResponse: z.ZodVoid;
|
|
3559
|
-
export declare const zPutContactsByContactIdRecommendationsByRecommendationsIdTitleData: z.ZodObject<{
|
|
3560
|
-
body: z.ZodObject<{
|
|
3561
|
-
name: z.ZodOptional<z.ZodString>;
|
|
3562
|
-
}, z.core.$strip>;
|
|
3563
|
-
path: z.ZodObject<{
|
|
3564
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
3565
|
-
recommendationsId: z.ZodUUID;
|
|
3566
|
-
}, z.core.$strip>;
|
|
3567
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3568
|
-
}, z.core.$strip>;
|
|
3569
|
-
/**
|
|
3570
|
-
* No Content
|
|
3571
|
-
*/
|
|
3572
|
-
export declare const zPutContactsByContactIdRecommendationsByRecommendationsIdTitleResponse: z.ZodVoid;
|
|
3573
3716
|
export declare const zPutContactsByContactIdPropertiesByPropertyIdAgreementData: z.ZodObject<{
|
|
3574
3717
|
body: z.ZodObject<{
|
|
3575
3718
|
type: z.ZodEnum<{
|
|
@@ -3584,6 +3727,128 @@ export declare const zPutContactsByContactIdPropertiesByPropertyIdAgreementData:
|
|
|
3584
3727
|
}, z.core.$strip>;
|
|
3585
3728
|
query: z.ZodOptional<z.ZodNever>;
|
|
3586
3729
|
}, z.core.$strip>;
|
|
3730
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
|
|
3731
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
3732
|
+
path: z.ZodObject<{
|
|
3733
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
3734
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
3735
|
+
}, z.core.$strip>;
|
|
3736
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
3737
|
+
}, z.core.$strip>;
|
|
3738
|
+
/**
|
|
3739
|
+
* OK
|
|
3740
|
+
*/
|
|
3741
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdResponse: z.ZodObject<{
|
|
3742
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3743
|
+
title: z.ZodString;
|
|
3744
|
+
status: z.ZodEnum<{
|
|
3745
|
+
DRAFT: "DRAFT";
|
|
3746
|
+
SHARED: "SHARED";
|
|
3747
|
+
CLOSED: "CLOSED";
|
|
3748
|
+
}>;
|
|
3749
|
+
shareToken: z.ZodUUID;
|
|
3750
|
+
createdAt: z.ZodISODateTime;
|
|
3751
|
+
criteria: z.ZodObject<{
|
|
3752
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
3753
|
+
GARAGE: "GARAGE";
|
|
3754
|
+
HOUSE: "HOUSE";
|
|
3755
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
3756
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
3757
|
+
VILLA: "VILLA";
|
|
3758
|
+
COTTAGE: "COTTAGE";
|
|
3759
|
+
APARTMENT: "APARTMENT";
|
|
3760
|
+
DUPLEX: "DUPLEX";
|
|
3761
|
+
TRIPLEX: "TRIPLEX";
|
|
3762
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
3763
|
+
ATTIC: "ATTIC";
|
|
3764
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
3765
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
3766
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
3767
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
3768
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
3769
|
+
OFFICE: "OFFICE";
|
|
3770
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
3771
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
3772
|
+
WAREHOUSE: "WAREHOUSE";
|
|
3773
|
+
}>>;
|
|
3774
|
+
listingType: z.ZodEnum<{
|
|
3775
|
+
SALE: "SALE";
|
|
3776
|
+
RENT: "RENT";
|
|
3777
|
+
DAILY_RENT: "DAILY_RENT";
|
|
3778
|
+
PLEDGE: "PLEDGE";
|
|
3779
|
+
}>;
|
|
3780
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
3781
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3782
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3783
|
+
}, z.core.$strip>>;
|
|
3784
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
3785
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
3786
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
3787
|
+
}, z.core.$strip>>;
|
|
3788
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
3789
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
3790
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
3791
|
+
}, z.core.$strip>>;
|
|
3792
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
3793
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3794
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3795
|
+
}, z.core.$strip>>;
|
|
3796
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
3797
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
3798
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
3799
|
+
}, z.core.$strip>>;
|
|
3800
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
3801
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3802
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3803
|
+
language: z.ZodEnum<{
|
|
3804
|
+
ka: "ka";
|
|
3805
|
+
en: "en";
|
|
3806
|
+
ru: "ru";
|
|
3807
|
+
}>;
|
|
3808
|
+
text: z.ZodString;
|
|
3809
|
+
}, z.core.$strip>>;
|
|
3810
|
+
}, z.core.$strip>>;
|
|
3811
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
3812
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3813
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3814
|
+
language: z.ZodEnum<{
|
|
3815
|
+
ka: "ka";
|
|
3816
|
+
en: "en";
|
|
3817
|
+
ru: "ru";
|
|
3818
|
+
}>;
|
|
3819
|
+
text: z.ZodString;
|
|
3820
|
+
}, z.core.$strip>>;
|
|
3821
|
+
}, z.core.$strip>>;
|
|
3822
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
3823
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3824
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3825
|
+
language: z.ZodEnum<{
|
|
3826
|
+
ka: "ka";
|
|
3827
|
+
en: "en";
|
|
3828
|
+
ru: "ru";
|
|
3829
|
+
}>;
|
|
3830
|
+
text: z.ZodString;
|
|
3831
|
+
}, z.core.$strip>>;
|
|
3832
|
+
}, z.core.$strip>>;
|
|
3833
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
3834
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
3835
|
+
names: z.ZodArray<z.ZodObject<{
|
|
3836
|
+
language: z.ZodEnum<{
|
|
3837
|
+
ka: "ka";
|
|
3838
|
+
en: "en";
|
|
3839
|
+
ru: "ru";
|
|
3840
|
+
}>;
|
|
3841
|
+
text: z.ZodString;
|
|
3842
|
+
}, z.core.$strip>>;
|
|
3843
|
+
}, z.core.$strip>>;
|
|
3844
|
+
}, z.core.$strip>;
|
|
3845
|
+
recommendations: z.ZodObject<{
|
|
3846
|
+
total: z.ZodInt;
|
|
3847
|
+
liked: z.ZodInt;
|
|
3848
|
+
disliked: z.ZodInt;
|
|
3849
|
+
undecided: z.ZodInt;
|
|
3850
|
+
}, z.core.$strip>;
|
|
3851
|
+
}, z.core.$strip>;
|
|
3587
3852
|
export declare const zPutContactsByContactIdInterestsByInterestIdData: z.ZodObject<{
|
|
3588
3853
|
body: z.ZodObject<{
|
|
3589
3854
|
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
@@ -4033,7 +4298,49 @@ export declare const zPostRolesData: z.ZodObject<{
|
|
|
4033
4298
|
export declare const zPostRolesResponse: z.ZodObject<{
|
|
4034
4299
|
id: z.ZodInt;
|
|
4035
4300
|
}, z.core.$strip>;
|
|
4036
|
-
export declare const
|
|
4301
|
+
export declare const zGetPublicWebhooksMetaWaData: z.ZodObject<{
|
|
4302
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4303
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4304
|
+
query: z.ZodObject<{
|
|
4305
|
+
'hub.mode': z.ZodString;
|
|
4306
|
+
'hub.verify_token': z.ZodString;
|
|
4307
|
+
'hub.challenge': z.ZodString;
|
|
4308
|
+
}, z.core.$strip>;
|
|
4309
|
+
}, z.core.$strip>;
|
|
4310
|
+
/**
|
|
4311
|
+
* OK
|
|
4312
|
+
*/
|
|
4313
|
+
export declare const zGetPublicWebhooksMetaWaResponse: z.ZodString;
|
|
4314
|
+
export declare const zPostPublicWebhooksMetaWaData: z.ZodObject<{
|
|
4315
|
+
body: z.ZodString;
|
|
4316
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4317
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4318
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
4319
|
+
'X-Hub-Signature-256': z.ZodOptional<z.ZodString>;
|
|
4320
|
+
}, z.core.$strip>>;
|
|
4321
|
+
}, z.core.$strip>;
|
|
4322
|
+
export declare const zGetPublicWebhooksMetaIgData: z.ZodObject<{
|
|
4323
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4324
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4325
|
+
query: z.ZodObject<{
|
|
4326
|
+
'hub.mode': z.ZodString;
|
|
4327
|
+
'hub.verify_token': z.ZodString;
|
|
4328
|
+
'hub.challenge': z.ZodString;
|
|
4329
|
+
}, z.core.$strip>;
|
|
4330
|
+
}, z.core.$strip>;
|
|
4331
|
+
/**
|
|
4332
|
+
* OK
|
|
4333
|
+
*/
|
|
4334
|
+
export declare const zGetPublicWebhooksMetaIgResponse: z.ZodString;
|
|
4335
|
+
export declare const zPostPublicWebhooksMetaIgData: z.ZodObject<{
|
|
4336
|
+
body: z.ZodString;
|
|
4337
|
+
path: z.ZodOptional<z.ZodNever>;
|
|
4338
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4339
|
+
headers: z.ZodOptional<z.ZodObject<{
|
|
4340
|
+
'X-Hub-Signature-256': z.ZodOptional<z.ZodString>;
|
|
4341
|
+
}, z.core.$strip>>;
|
|
4342
|
+
}, z.core.$strip>;
|
|
4343
|
+
export declare const zGetPublicWebhooksMetaFbData: z.ZodObject<{
|
|
4037
4344
|
body: z.ZodOptional<z.ZodNever>;
|
|
4038
4345
|
path: z.ZodOptional<z.ZodNever>;
|
|
4039
4346
|
query: z.ZodObject<{
|
|
@@ -4045,8 +4352,8 @@ export declare const zGetPublicWebhooksMetaData: z.ZodObject<{
|
|
|
4045
4352
|
/**
|
|
4046
4353
|
* OK
|
|
4047
4354
|
*/
|
|
4048
|
-
export declare const
|
|
4049
|
-
export declare const
|
|
4355
|
+
export declare const zGetPublicWebhooksMetaFbResponse: z.ZodString;
|
|
4356
|
+
export declare const zPostPublicWebhooksMetaFbData: z.ZodObject<{
|
|
4050
4357
|
body: z.ZodString;
|
|
4051
4358
|
path: z.ZodOptional<z.ZodNever>;
|
|
4052
4359
|
query: z.ZodOptional<z.ZodNever>;
|
|
@@ -4054,18 +4361,17 @@ export declare const zPostPublicWebhooksMetaData: z.ZodObject<{
|
|
|
4054
4361
|
'X-Hub-Signature-256': z.ZodOptional<z.ZodString>;
|
|
4055
4362
|
}, z.core.$strip>>;
|
|
4056
4363
|
}, z.core.$strip>;
|
|
4057
|
-
export declare const
|
|
4364
|
+
export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateData: z.ZodObject<{
|
|
4058
4365
|
body: z.ZodObject<{
|
|
4059
4366
|
decision: z.ZodEnum<{
|
|
4060
4367
|
MAYBE: "MAYBE";
|
|
4061
4368
|
DISLIKE: "DISLIKE";
|
|
4062
4369
|
LIKE: "LIKE";
|
|
4063
|
-
VISIT: "VISIT";
|
|
4064
4370
|
}>;
|
|
4065
4371
|
note: z.ZodOptional<z.ZodString>;
|
|
4066
4372
|
}, z.core.$strip>;
|
|
4067
4373
|
path: z.ZodObject<{
|
|
4068
|
-
|
|
4374
|
+
token: z.ZodUUID;
|
|
4069
4375
|
itemId: z.ZodCoercedBigInt<unknown>;
|
|
4070
4376
|
}, z.core.$strip>;
|
|
4071
4377
|
query: z.ZodOptional<z.ZodNever>;
|
|
@@ -4073,7 +4379,7 @@ export declare const zPostPublicRecomendationsByRecommendationsIdItemsByItemIdRa
|
|
|
4073
4379
|
/**
|
|
4074
4380
|
* No Content
|
|
4075
4381
|
*/
|
|
4076
|
-
export declare const
|
|
4382
|
+
export declare const zPostPublicRecomendationsByTokenItemsByItemIdRateResponse: z.ZodVoid;
|
|
4077
4383
|
export declare const zPostPublicOtpPhoneData: z.ZodObject<{
|
|
4078
4384
|
body: z.ZodObject<{
|
|
4079
4385
|
phoneNumber: z.ZodString;
|
|
@@ -4424,69 +4730,6 @@ export declare const zPostConversationsByConversationIdMessagesData: z.ZodObject
|
|
|
4424
4730
|
export declare const zPostConversationsByConversationIdMessagesResponse: z.ZodObject<{
|
|
4425
4731
|
id: z.ZodUUID;
|
|
4426
4732
|
}, z.core.$strip>;
|
|
4427
|
-
export declare const zPostContactsByContactIdRecommendationsData: z.ZodObject<{
|
|
4428
|
-
body: z.ZodObject<{
|
|
4429
|
-
title: z.ZodString;
|
|
4430
|
-
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4431
|
-
}, z.core.$strip>;
|
|
4432
|
-
path: z.ZodObject<{
|
|
4433
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4434
|
-
}, z.core.$strip>;
|
|
4435
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
4436
|
-
}, z.core.$strip>;
|
|
4437
|
-
/**
|
|
4438
|
-
* Created
|
|
4439
|
-
*/
|
|
4440
|
-
export declare const zPostContactsByContactIdRecommendationsResponse: z.ZodObject<{
|
|
4441
|
-
value: z.ZodOptional<z.ZodUUID>;
|
|
4442
|
-
}, z.core.$strip>;
|
|
4443
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdSubmitData: z.ZodObject<{
|
|
4444
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
4445
|
-
path: z.ZodObject<{
|
|
4446
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4447
|
-
recommendationsId: z.ZodUUID;
|
|
4448
|
-
}, z.core.$strip>;
|
|
4449
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
4450
|
-
}, z.core.$strip>;
|
|
4451
|
-
/**
|
|
4452
|
-
* No Content
|
|
4453
|
-
*/
|
|
4454
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdSubmitResponse: z.ZodVoid;
|
|
4455
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdReviseData: z.ZodObject<{
|
|
4456
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
4457
|
-
path: z.ZodObject<{
|
|
4458
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4459
|
-
recommendationsId: z.ZodUUID;
|
|
4460
|
-
}, z.core.$strip>;
|
|
4461
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
4462
|
-
}, z.core.$strip>;
|
|
4463
|
-
/**
|
|
4464
|
-
* No Content
|
|
4465
|
-
*/
|
|
4466
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdReviseResponse: z.ZodVoid;
|
|
4467
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdItemsData: z.ZodObject<{
|
|
4468
|
-
body: z.ZodObject<{
|
|
4469
|
-
externalPropertyId: z.ZodUUID;
|
|
4470
|
-
externalListingId: z.ZodUUID;
|
|
4471
|
-
}, z.core.$strip>;
|
|
4472
|
-
path: z.ZodObject<{
|
|
4473
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4474
|
-
recommendationsId: z.ZodUUID;
|
|
4475
|
-
}, z.core.$strip>;
|
|
4476
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
4477
|
-
}, z.core.$strip>;
|
|
4478
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdCloseData: z.ZodObject<{
|
|
4479
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
4480
|
-
path: z.ZodObject<{
|
|
4481
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4482
|
-
recommendationsId: z.ZodUUID;
|
|
4483
|
-
}, z.core.$strip>;
|
|
4484
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
4485
|
-
}, z.core.$strip>;
|
|
4486
|
-
/**
|
|
4487
|
-
* No Content
|
|
4488
|
-
*/
|
|
4489
|
-
export declare const zPostContactsByContactIdRecommendationsByRecommendationsIdCloseResponse: z.ZodVoid;
|
|
4490
4733
|
export declare const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData: z.ZodObject<{
|
|
4491
4734
|
body: z.ZodOptional<z.ZodNever>;
|
|
4492
4735
|
path: z.ZodObject<{
|
|
@@ -4585,7 +4828,7 @@ export declare const zPostContactsByContactIdInterestsData: z.ZodObject<{
|
|
|
4585
4828
|
export declare const zPostContactsByContactIdInterestsResponse: z.ZodObject<{
|
|
4586
4829
|
value: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
4587
4830
|
}, z.core.$strip>;
|
|
4588
|
-
export declare const
|
|
4831
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdShareData: z.ZodObject<{
|
|
4589
4832
|
body: z.ZodOptional<z.ZodNever>;
|
|
4590
4833
|
path: z.ZodObject<{
|
|
4591
4834
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -4596,8 +4839,8 @@ export declare const zPostContactsByContactIdInterestsByInterestIdFulfilledData:
|
|
|
4596
4839
|
/**
|
|
4597
4840
|
* No Content
|
|
4598
4841
|
*/
|
|
4599
|
-
export declare const
|
|
4600
|
-
export declare const
|
|
4842
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdShareResponse: z.ZodVoid;
|
|
4843
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdReviseData: z.ZodObject<{
|
|
4601
4844
|
body: z.ZodOptional<z.ZodNever>;
|
|
4602
4845
|
path: z.ZodObject<{
|
|
4603
4846
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -4608,16 +4851,53 @@ export declare const zPostContactsByContactIdInterestsByInterestIdCancelledData:
|
|
|
4608
4851
|
/**
|
|
4609
4852
|
* No Content
|
|
4610
4853
|
*/
|
|
4611
|
-
export declare const
|
|
4612
|
-
export declare const
|
|
4613
|
-
body: z.
|
|
4854
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdReviseResponse: z.ZodVoid;
|
|
4855
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdRenameData: z.ZodObject<{
|
|
4856
|
+
body: z.ZodObject<{
|
|
4857
|
+
title: z.ZodString;
|
|
4858
|
+
}, z.core.$strip>;
|
|
4614
4859
|
path: z.ZodObject<{
|
|
4615
4860
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4861
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4616
4862
|
}, z.core.$strip>;
|
|
4617
4863
|
query: z.ZodOptional<z.ZodNever>;
|
|
4618
4864
|
}, z.core.$strip>;
|
|
4619
|
-
|
|
4620
|
-
|
|
4865
|
+
/**
|
|
4866
|
+
* No Content
|
|
4867
|
+
*/
|
|
4868
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdRenameResponse: z.ZodVoid;
|
|
4869
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdItemsData: z.ZodObject<{
|
|
4870
|
+
body: z.ZodObject<{
|
|
4871
|
+
externalPropertyId: z.ZodUUID;
|
|
4872
|
+
externalListingId: z.ZodUUID;
|
|
4873
|
+
}, z.core.$strip>;
|
|
4874
|
+
path: z.ZodObject<{
|
|
4875
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4876
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4877
|
+
}, z.core.$strip>;
|
|
4878
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4879
|
+
}, z.core.$strip>;
|
|
4880
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdCloseData: z.ZodObject<{
|
|
4881
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4882
|
+
path: z.ZodObject<{
|
|
4883
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4884
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
4885
|
+
}, z.core.$strip>;
|
|
4886
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4887
|
+
}, z.core.$strip>;
|
|
4888
|
+
/**
|
|
4889
|
+
* No Content
|
|
4890
|
+
*/
|
|
4891
|
+
export declare const zPostContactsByContactIdInterestsByInterestIdCloseResponse: z.ZodVoid;
|
|
4892
|
+
export declare const zDeleteContactsByContactIdCommentsData: z.ZodObject<{
|
|
4893
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4894
|
+
path: z.ZodObject<{
|
|
4895
|
+
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4896
|
+
}, z.core.$strip>;
|
|
4897
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4898
|
+
}, z.core.$strip>;
|
|
4899
|
+
export declare const zGetContactsByContactIdCommentsData: z.ZodObject<{
|
|
4900
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4621
4901
|
path: z.ZodObject<{
|
|
4622
4902
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
4623
4903
|
}, z.core.$strip>;
|
|
@@ -5008,17 +5288,16 @@ export declare const zGetUserMeResponse: z.ZodObject<{
|
|
|
5008
5288
|
}>;
|
|
5009
5289
|
}, z.core.$strip>>;
|
|
5010
5290
|
}, z.core.$strip>;
|
|
5011
|
-
export declare const
|
|
5291
|
+
export declare const zGetPublicRecomendationsByTokenItemsData: z.ZodObject<{
|
|
5012
5292
|
body: z.ZodOptional<z.ZodNever>;
|
|
5013
5293
|
path: z.ZodObject<{
|
|
5014
|
-
|
|
5294
|
+
token: z.ZodUUID;
|
|
5015
5295
|
}, z.core.$strip>;
|
|
5016
5296
|
query: z.ZodOptional<z.ZodObject<{
|
|
5017
5297
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
5018
5298
|
MAYBE: "MAYBE";
|
|
5019
5299
|
DISLIKE: "DISLIKE";
|
|
5020
5300
|
LIKE: "LIKE";
|
|
5021
|
-
VISIT: "VISIT";
|
|
5022
5301
|
}>>;
|
|
5023
5302
|
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
5024
5303
|
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
@@ -5028,23 +5307,21 @@ export declare const zGetPublicRecomendationsByRecommendationsIdItemsData: z.Zod
|
|
|
5028
5307
|
/**
|
|
5029
5308
|
* OK
|
|
5030
5309
|
*/
|
|
5031
|
-
export declare const
|
|
5032
|
-
|
|
5310
|
+
export declare const zGetPublicRecomendationsByTokenItemsResponse: z.ZodObject<{
|
|
5311
|
+
shareToken: z.ZodUUID;
|
|
5033
5312
|
title: z.ZodString;
|
|
5034
5313
|
createdAt: z.ZodISODateTime;
|
|
5035
5314
|
status: z.ZodEnum<{
|
|
5036
5315
|
DRAFT: "DRAFT";
|
|
5037
|
-
|
|
5316
|
+
SHARED: "SHARED";
|
|
5038
5317
|
CLOSED: "CLOSED";
|
|
5039
5318
|
}>;
|
|
5040
5319
|
recommendations: z.ZodObject<{
|
|
5041
5320
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5042
|
-
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
5043
5321
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
5044
5322
|
MAYBE: "MAYBE";
|
|
5045
5323
|
DISLIKE: "DISLIKE";
|
|
5046
5324
|
LIKE: "LIKE";
|
|
5047
|
-
VISIT: "VISIT";
|
|
5048
5325
|
}>>;
|
|
5049
5326
|
clientNote: z.ZodOptional<z.ZodString>;
|
|
5050
5327
|
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -5144,17 +5421,17 @@ export declare const zGetPublicRecomendationsByRecommendationsIdItemsResponse: z
|
|
|
5144
5421
|
}, z.core.$strip>>;
|
|
5145
5422
|
}, z.core.$strip>;
|
|
5146
5423
|
}, z.core.$strip>;
|
|
5147
|
-
export declare const
|
|
5424
|
+
export declare const zGetPublicRecomendationsByTokenDecisionsData: z.ZodObject<{
|
|
5148
5425
|
body: z.ZodOptional<z.ZodNever>;
|
|
5149
5426
|
path: z.ZodObject<{
|
|
5150
|
-
|
|
5427
|
+
token: z.ZodUUID;
|
|
5151
5428
|
}, z.core.$strip>;
|
|
5152
5429
|
query: z.ZodOptional<z.ZodNever>;
|
|
5153
5430
|
}, z.core.$strip>;
|
|
5154
5431
|
/**
|
|
5155
5432
|
* OK
|
|
5156
5433
|
*/
|
|
5157
|
-
export declare const
|
|
5434
|
+
export declare const zGetPublicRecomendationsByTokenDecisionsResponse: z.ZodArray<z.ZodObject<{
|
|
5158
5435
|
itemId: z.ZodCoercedBigInt<unknown>;
|
|
5159
5436
|
externalPropertyId: z.ZodUUID;
|
|
5160
5437
|
externalListingId: z.ZodUUID;
|
|
@@ -5162,7 +5439,6 @@ export declare const zGetPublicRecomendationsByRecommendationsIdDecisionsRespons
|
|
|
5162
5439
|
MAYBE: "MAYBE";
|
|
5163
5440
|
DISLIKE: "DISLIKE";
|
|
5164
5441
|
LIKE: "LIKE";
|
|
5165
|
-
VISIT: "VISIT";
|
|
5166
5442
|
}>;
|
|
5167
5443
|
}, z.core.$strip>>;
|
|
5168
5444
|
export declare const zGetPublicPermissionsData: z.ZodObject<{
|
|
@@ -6413,144 +6689,7 @@ export declare const zGetConversationsByConversationIdUpdatesResponse: z.ZodObje
|
|
|
6413
6689
|
nextSeq: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
6414
6690
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
6415
6691
|
}, z.core.$strip>;
|
|
6416
|
-
export declare const
|
|
6417
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
6418
|
-
path: z.ZodObject<{
|
|
6419
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6420
|
-
recommendationsId: z.ZodUUID;
|
|
6421
|
-
}, z.core.$strip>;
|
|
6422
|
-
query: z.ZodOptional<z.ZodObject<{
|
|
6423
|
-
decision: z.ZodOptional<z.ZodEnum<{
|
|
6424
|
-
MAYBE: "MAYBE";
|
|
6425
|
-
DISLIKE: "DISLIKE";
|
|
6426
|
-
LIKE: "LIKE";
|
|
6427
|
-
VISIT: "VISIT";
|
|
6428
|
-
}>>;
|
|
6429
|
-
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6430
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6431
|
-
sort: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6432
|
-
}, z.core.$strip>>;
|
|
6433
|
-
}, z.core.$strip>;
|
|
6434
|
-
/**
|
|
6435
|
-
* OK
|
|
6436
|
-
*/
|
|
6437
|
-
export declare const zGetContactsByContactIdRecommendationsByRecommendationsIdResponse: z.ZodObject<{
|
|
6438
|
-
recommendationsId: z.ZodUUID;
|
|
6439
|
-
title: z.ZodString;
|
|
6440
|
-
createdAt: z.ZodISODateTime;
|
|
6441
|
-
status: z.ZodEnum<{
|
|
6442
|
-
DRAFT: "DRAFT";
|
|
6443
|
-
AWAITING_CLIENT_REVIEW: "AWAITING_CLIENT_REVIEW";
|
|
6444
|
-
CLOSED: "CLOSED";
|
|
6445
|
-
}>;
|
|
6446
|
-
recommendations: z.ZodObject<{
|
|
6447
|
-
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6448
|
-
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
6449
|
-
decision: z.ZodOptional<z.ZodEnum<{
|
|
6450
|
-
MAYBE: "MAYBE";
|
|
6451
|
-
DISLIKE: "DISLIKE";
|
|
6452
|
-
LIKE: "LIKE";
|
|
6453
|
-
VISIT: "VISIT";
|
|
6454
|
-
}>>;
|
|
6455
|
-
clientNote: z.ZodOptional<z.ZodString>;
|
|
6456
|
-
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
6457
|
-
listingId: z.ZodCoercedBigInt<unknown>;
|
|
6458
|
-
externalListingId: z.ZodUUID;
|
|
6459
|
-
listingType: z.ZodEnum<{
|
|
6460
|
-
SALE: "SALE";
|
|
6461
|
-
RENT: "RENT";
|
|
6462
|
-
DAILY_RENT: "DAILY_RENT";
|
|
6463
|
-
PLEDGE: "PLEDGE";
|
|
6464
|
-
}>;
|
|
6465
|
-
price: z.ZodNumber;
|
|
6466
|
-
propertyId: z.ZodCoercedBigInt<unknown>;
|
|
6467
|
-
externalPropertyId: z.ZodUUID;
|
|
6468
|
-
type: z.ZodEnum<{
|
|
6469
|
-
GARAGE: "GARAGE";
|
|
6470
|
-
HOUSE: "HOUSE";
|
|
6471
|
-
TOWN_HOUSE: "TOWN_HOUSE";
|
|
6472
|
-
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
6473
|
-
VILLA: "VILLA";
|
|
6474
|
-
COTTAGE: "COTTAGE";
|
|
6475
|
-
APARTMENT: "APARTMENT";
|
|
6476
|
-
DUPLEX: "DUPLEX";
|
|
6477
|
-
TRIPLEX: "TRIPLEX";
|
|
6478
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
6479
|
-
ATTIC: "ATTIC";
|
|
6480
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
6481
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
6482
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
6483
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
6484
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
6485
|
-
OFFICE: "OFFICE";
|
|
6486
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
6487
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
6488
|
-
WAREHOUSE: "WAREHOUSE";
|
|
6489
|
-
}>;
|
|
6490
|
-
coverPhoto: z.ZodOptional<z.ZodString>;
|
|
6491
|
-
photoCount: z.ZodOptional<z.ZodInt>;
|
|
6492
|
-
totalArea: z.ZodNumber;
|
|
6493
|
-
livingArea: z.ZodOptional<z.ZodNumber>;
|
|
6494
|
-
balconyArea: z.ZodOptional<z.ZodNumber>;
|
|
6495
|
-
address: z.ZodObject<{
|
|
6496
|
-
region: z.ZodObject<{
|
|
6497
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6498
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6499
|
-
language: z.ZodEnum<{
|
|
6500
|
-
ka: "ka";
|
|
6501
|
-
en: "en";
|
|
6502
|
-
ru: "ru";
|
|
6503
|
-
}>;
|
|
6504
|
-
text: z.ZodString;
|
|
6505
|
-
}, z.core.$strip>>;
|
|
6506
|
-
}, z.core.$strip>;
|
|
6507
|
-
district: z.ZodObject<{
|
|
6508
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6509
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6510
|
-
language: z.ZodEnum<{
|
|
6511
|
-
ka: "ka";
|
|
6512
|
-
en: "en";
|
|
6513
|
-
ru: "ru";
|
|
6514
|
-
}>;
|
|
6515
|
-
text: z.ZodString;
|
|
6516
|
-
}, z.core.$strip>>;
|
|
6517
|
-
}, z.core.$strip>;
|
|
6518
|
-
subdistrict: z.ZodObject<{
|
|
6519
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6520
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6521
|
-
language: z.ZodEnum<{
|
|
6522
|
-
ka: "ka";
|
|
6523
|
-
en: "en";
|
|
6524
|
-
ru: "ru";
|
|
6525
|
-
}>;
|
|
6526
|
-
text: z.ZodString;
|
|
6527
|
-
}, z.core.$strip>>;
|
|
6528
|
-
}, z.core.$strip>;
|
|
6529
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
6530
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6531
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6532
|
-
language: z.ZodEnum<{
|
|
6533
|
-
ka: "ka";
|
|
6534
|
-
en: "en";
|
|
6535
|
-
ru: "ru";
|
|
6536
|
-
}>;
|
|
6537
|
-
text: z.ZodString;
|
|
6538
|
-
}, z.core.$strip>>;
|
|
6539
|
-
}, z.core.$strip>>;
|
|
6540
|
-
cadastreCode: z.ZodOptional<z.ZodString>;
|
|
6541
|
-
lat: z.ZodNumber;
|
|
6542
|
-
lng: z.ZodNumber;
|
|
6543
|
-
}, z.core.$strip>;
|
|
6544
|
-
}, z.core.$strip>>>;
|
|
6545
|
-
page: z.ZodOptional<z.ZodObject<{
|
|
6546
|
-
size: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
6547
|
-
number: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
6548
|
-
totalElements: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
6549
|
-
totalPages: z.ZodOptional<z.ZodCoercedBigInt<unknown>>;
|
|
6550
|
-
}, z.core.$strip>>;
|
|
6551
|
-
}, z.core.$strip>;
|
|
6552
|
-
}, z.core.$strip>;
|
|
6553
|
-
export declare const zGetContactsByContactIdRecommendationsInterestByInterestIdData: z.ZodObject<{
|
|
6692
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdRecommendationsData: z.ZodObject<{
|
|
6554
6693
|
body: z.ZodOptional<z.ZodNever>;
|
|
6555
6694
|
path: z.ZodObject<{
|
|
6556
6695
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -6561,7 +6700,6 @@ export declare const zGetContactsByContactIdRecommendationsInterestByInterestIdD
|
|
|
6561
6700
|
MAYBE: "MAYBE";
|
|
6562
6701
|
DISLIKE: "DISLIKE";
|
|
6563
6702
|
LIKE: "LIKE";
|
|
6564
|
-
VISIT: "VISIT";
|
|
6565
6703
|
}>>;
|
|
6566
6704
|
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
6567
6705
|
size: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
@@ -6571,23 +6709,21 @@ export declare const zGetContactsByContactIdRecommendationsInterestByInterestIdD
|
|
|
6571
6709
|
/**
|
|
6572
6710
|
* OK
|
|
6573
6711
|
*/
|
|
6574
|
-
export declare const
|
|
6575
|
-
|
|
6712
|
+
export declare const zGetContactsByContactIdInterestsByInterestIdRecommendationsResponse: z.ZodObject<{
|
|
6713
|
+
shareToken: z.ZodUUID;
|
|
6576
6714
|
title: z.ZodString;
|
|
6577
6715
|
createdAt: z.ZodISODateTime;
|
|
6578
6716
|
status: z.ZodEnum<{
|
|
6579
6717
|
DRAFT: "DRAFT";
|
|
6580
|
-
|
|
6718
|
+
SHARED: "SHARED";
|
|
6581
6719
|
CLOSED: "CLOSED";
|
|
6582
6720
|
}>;
|
|
6583
6721
|
recommendations: z.ZodObject<{
|
|
6584
6722
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6585
|
-
recommendationItemId: z.ZodCoercedBigInt<unknown>;
|
|
6586
6723
|
decision: z.ZodOptional<z.ZodEnum<{
|
|
6587
6724
|
MAYBE: "MAYBE";
|
|
6588
6725
|
DISLIKE: "DISLIKE";
|
|
6589
6726
|
LIKE: "LIKE";
|
|
6590
|
-
VISIT: "VISIT";
|
|
6591
6727
|
}>>;
|
|
6592
6728
|
clientNote: z.ZodOptional<z.ZodString>;
|
|
6593
6729
|
ownerContactId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -6687,103 +6823,6 @@ export declare const zGetContactsByContactIdRecommendationsInterestByInterestIdR
|
|
|
6687
6823
|
}, z.core.$strip>>;
|
|
6688
6824
|
}, z.core.$strip>;
|
|
6689
6825
|
}, z.core.$strip>;
|
|
6690
|
-
export declare const zGetContactsByContactIdInterestsRecommendationByRecommendationIdData: z.ZodObject<{
|
|
6691
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
6692
|
-
path: z.ZodObject<{
|
|
6693
|
-
contactId: z.ZodCoercedBigInt<unknown>;
|
|
6694
|
-
recommendationId: z.ZodUUID;
|
|
6695
|
-
}, z.core.$strip>;
|
|
6696
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
6697
|
-
}, z.core.$strip>;
|
|
6698
|
-
/**
|
|
6699
|
-
* OK
|
|
6700
|
-
*/
|
|
6701
|
-
export declare const zGetContactsByContactIdInterestsRecommendationByRecommendationIdResponse: z.ZodObject<{
|
|
6702
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6703
|
-
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
6704
|
-
GARAGE: "GARAGE";
|
|
6705
|
-
HOUSE: "HOUSE";
|
|
6706
|
-
TOWN_HOUSE: "TOWN_HOUSE";
|
|
6707
|
-
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
6708
|
-
VILLA: "VILLA";
|
|
6709
|
-
COTTAGE: "COTTAGE";
|
|
6710
|
-
APARTMENT: "APARTMENT";
|
|
6711
|
-
DUPLEX: "DUPLEX";
|
|
6712
|
-
TRIPLEX: "TRIPLEX";
|
|
6713
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
6714
|
-
ATTIC: "ATTIC";
|
|
6715
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
6716
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
6717
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
6718
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
6719
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
6720
|
-
OFFICE: "OFFICE";
|
|
6721
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
6722
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
6723
|
-
WAREHOUSE: "WAREHOUSE";
|
|
6724
|
-
}>>;
|
|
6725
|
-
listingType: z.ZodEnum<{
|
|
6726
|
-
SALE: "SALE";
|
|
6727
|
-
RENT: "RENT";
|
|
6728
|
-
DAILY_RENT: "DAILY_RENT";
|
|
6729
|
-
PLEDGE: "PLEDGE";
|
|
6730
|
-
}>;
|
|
6731
|
-
priceMin: z.ZodOptional<z.ZodNumber>;
|
|
6732
|
-
priceMax: z.ZodOptional<z.ZodNumber>;
|
|
6733
|
-
bedroomsMin: z.ZodOptional<z.ZodInt>;
|
|
6734
|
-
bedroomsMax: z.ZodOptional<z.ZodInt>;
|
|
6735
|
-
bathroomsMin: z.ZodOptional<z.ZodInt>;
|
|
6736
|
-
bathroomsMax: z.ZodOptional<z.ZodInt>;
|
|
6737
|
-
totalAreaMin: z.ZodOptional<z.ZodNumber>;
|
|
6738
|
-
totalAreaMax: z.ZodOptional<z.ZodNumber>;
|
|
6739
|
-
livingAreaMin: z.ZodOptional<z.ZodNumber>;
|
|
6740
|
-
livingAreaMax: z.ZodOptional<z.ZodNumber>;
|
|
6741
|
-
region: z.ZodOptional<z.ZodObject<{
|
|
6742
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6743
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6744
|
-
language: z.ZodEnum<{
|
|
6745
|
-
ka: "ka";
|
|
6746
|
-
en: "en";
|
|
6747
|
-
ru: "ru";
|
|
6748
|
-
}>;
|
|
6749
|
-
text: z.ZodString;
|
|
6750
|
-
}, z.core.$strip>>;
|
|
6751
|
-
}, z.core.$strip>>;
|
|
6752
|
-
district: z.ZodOptional<z.ZodObject<{
|
|
6753
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6754
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6755
|
-
language: z.ZodEnum<{
|
|
6756
|
-
ka: "ka";
|
|
6757
|
-
en: "en";
|
|
6758
|
-
ru: "ru";
|
|
6759
|
-
}>;
|
|
6760
|
-
text: z.ZodString;
|
|
6761
|
-
}, z.core.$strip>>;
|
|
6762
|
-
}, z.core.$strip>>;
|
|
6763
|
-
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
6764
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6765
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6766
|
-
language: z.ZodEnum<{
|
|
6767
|
-
ka: "ka";
|
|
6768
|
-
en: "en";
|
|
6769
|
-
ru: "ru";
|
|
6770
|
-
}>;
|
|
6771
|
-
text: z.ZodString;
|
|
6772
|
-
}, z.core.$strip>>;
|
|
6773
|
-
}, z.core.$strip>>;
|
|
6774
|
-
street: z.ZodOptional<z.ZodObject<{
|
|
6775
|
-
id: z.ZodCoercedBigInt<unknown>;
|
|
6776
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6777
|
-
language: z.ZodEnum<{
|
|
6778
|
-
ka: "ka";
|
|
6779
|
-
en: "en";
|
|
6780
|
-
ru: "ru";
|
|
6781
|
-
}>;
|
|
6782
|
-
text: z.ZodString;
|
|
6783
|
-
}, z.core.$strip>>;
|
|
6784
|
-
}, z.core.$strip>>;
|
|
6785
|
-
active: z.ZodBoolean;
|
|
6786
|
-
}, z.core.$strip>;
|
|
6787
6826
|
export declare const zGetContactByContactIdData: z.ZodObject<{
|
|
6788
6827
|
body: z.ZodOptional<z.ZodNever>;
|
|
6789
6828
|
path: z.ZodObject<{
|
|
@@ -6905,99 +6944,134 @@ export declare const zGetContactByContactId360Response: z.ZodObject<{
|
|
|
6905
6944
|
}, z.core.$strip>>;
|
|
6906
6945
|
isSearching: z.ZodBoolean;
|
|
6907
6946
|
isListing: z.ZodBoolean;
|
|
6908
|
-
priority: z.
|
|
6947
|
+
priority: z.ZodEnum<{
|
|
6909
6948
|
CRITICAL: "CRITICAL";
|
|
6910
6949
|
HIGH: "HIGH";
|
|
6911
6950
|
MEDIUM: "MEDIUM";
|
|
6912
6951
|
LOW: "LOW";
|
|
6913
|
-
}
|
|
6952
|
+
}>;
|
|
6953
|
+
status: z.ZodEnum<{
|
|
6954
|
+
NEW: "NEW";
|
|
6955
|
+
ON_HOLD: "ON_HOLD";
|
|
6956
|
+
COLD: "COLD";
|
|
6957
|
+
WARM: "WARM";
|
|
6958
|
+
HOT: "HOT";
|
|
6959
|
+
WAITING_PAYMENT: "WAITING_PAYMENT";
|
|
6960
|
+
LOST: "LOST";
|
|
6961
|
+
WON: "WON";
|
|
6962
|
+
}>;
|
|
6914
6963
|
createdAt: z.ZodISODateTime;
|
|
6915
6964
|
updatedAt: z.ZodISODateTime;
|
|
6916
6965
|
interests: z.ZodArray<z.ZodObject<{
|
|
6917
6966
|
id: z.ZodCoercedBigInt<unknown>;
|
|
6918
|
-
|
|
6919
|
-
|
|
6920
|
-
|
|
6921
|
-
|
|
6922
|
-
|
|
6923
|
-
VILLA: "VILLA";
|
|
6924
|
-
COTTAGE: "COTTAGE";
|
|
6925
|
-
APARTMENT: "APARTMENT";
|
|
6926
|
-
DUPLEX: "DUPLEX";
|
|
6927
|
-
TRIPLEX: "TRIPLEX";
|
|
6928
|
-
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
6929
|
-
ATTIC: "ATTIC";
|
|
6930
|
-
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
6931
|
-
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
6932
|
-
HOTEL_ROOM: "HOTEL_ROOM";
|
|
6933
|
-
MOTEL_ROOM: "MOTEL_ROOM";
|
|
6934
|
-
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
6935
|
-
OFFICE: "OFFICE";
|
|
6936
|
-
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
6937
|
-
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
6938
|
-
WAREHOUSE: "WAREHOUSE";
|
|
6939
|
-
}>>;
|
|
6940
|
-
listingType: z.ZodEnum<{
|
|
6941
|
-
SALE: "SALE";
|
|
6942
|
-
RENT: "RENT";
|
|
6943
|
-
DAILY_RENT: "DAILY_RENT";
|
|
6944
|
-
PLEDGE: "PLEDGE";
|
|
6967
|
+
title: z.ZodString;
|
|
6968
|
+
status: z.ZodEnum<{
|
|
6969
|
+
DRAFT: "DRAFT";
|
|
6970
|
+
SHARED: "SHARED";
|
|
6971
|
+
CLOSED: "CLOSED";
|
|
6945
6972
|
}>;
|
|
6946
|
-
|
|
6947
|
-
|
|
6948
|
-
|
|
6949
|
-
|
|
6950
|
-
|
|
6951
|
-
|
|
6952
|
-
|
|
6953
|
-
|
|
6954
|
-
|
|
6955
|
-
|
|
6956
|
-
|
|
6957
|
-
|
|
6958
|
-
|
|
6959
|
-
|
|
6960
|
-
|
|
6961
|
-
|
|
6962
|
-
|
|
6963
|
-
|
|
6964
|
-
|
|
6973
|
+
shareToken: z.ZodUUID;
|
|
6974
|
+
createdAt: z.ZodISODateTime;
|
|
6975
|
+
criteria: z.ZodObject<{
|
|
6976
|
+
propertyTypes: z.ZodArray<z.ZodEnum<{
|
|
6977
|
+
GARAGE: "GARAGE";
|
|
6978
|
+
HOUSE: "HOUSE";
|
|
6979
|
+
TOWN_HOUSE: "TOWN_HOUSE";
|
|
6980
|
+
COUNTRY_HOUSE: "COUNTRY_HOUSE";
|
|
6981
|
+
VILLA: "VILLA";
|
|
6982
|
+
COTTAGE: "COTTAGE";
|
|
6983
|
+
APARTMENT: "APARTMENT";
|
|
6984
|
+
DUPLEX: "DUPLEX";
|
|
6985
|
+
TRIPLEX: "TRIPLEX";
|
|
6986
|
+
SEMI_BASEMENT: "SEMI_BASEMENT";
|
|
6987
|
+
ATTIC: "ATTIC";
|
|
6988
|
+
AGRICULTURAL_LAND: "AGRICULTURAL_LAND";
|
|
6989
|
+
RESIDENTIAL_LAND: "RESIDENTIAL_LAND";
|
|
6990
|
+
HOTEL_ROOM: "HOTEL_ROOM";
|
|
6991
|
+
MOTEL_ROOM: "MOTEL_ROOM";
|
|
6992
|
+
CO_LIVING_SPACE: "CO_LIVING_SPACE";
|
|
6993
|
+
OFFICE: "OFFICE";
|
|
6994
|
+
COMMERCIAL_SPACE: "COMMERCIAL_SPACE";
|
|
6995
|
+
CO_WORKING_SPACE: "CO_WORKING_SPACE";
|
|
6996
|
+
WAREHOUSE: "WAREHOUSE";
|
|
6997
|
+
}>>;
|
|
6998
|
+
listingType: z.ZodEnum<{
|
|
6999
|
+
SALE: "SALE";
|
|
7000
|
+
RENT: "RENT";
|
|
7001
|
+
DAILY_RENT: "DAILY_RENT";
|
|
7002
|
+
PLEDGE: "PLEDGE";
|
|
7003
|
+
}>;
|
|
7004
|
+
budget: z.ZodOptional<z.ZodObject<{
|
|
7005
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7006
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6965
7007
|
}, z.core.$strip>>;
|
|
6966
|
-
|
|
6967
|
-
|
|
6968
|
-
|
|
6969
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6970
|
-
language: z.ZodEnum<{
|
|
6971
|
-
ka: "ka";
|
|
6972
|
-
en: "en";
|
|
6973
|
-
ru: "ru";
|
|
6974
|
-
}>;
|
|
6975
|
-
text: z.ZodString;
|
|
7008
|
+
bedrooms: z.ZodOptional<z.ZodObject<{
|
|
7009
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
7010
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
6976
7011
|
}, z.core.$strip>>;
|
|
6977
|
-
|
|
6978
|
-
|
|
6979
|
-
|
|
6980
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6981
|
-
language: z.ZodEnum<{
|
|
6982
|
-
ka: "ka";
|
|
6983
|
-
en: "en";
|
|
6984
|
-
ru: "ru";
|
|
6985
|
-
}>;
|
|
6986
|
-
text: z.ZodString;
|
|
7012
|
+
bathrooms: z.ZodOptional<z.ZodObject<{
|
|
7013
|
+
min: z.ZodOptional<z.ZodInt>;
|
|
7014
|
+
max: z.ZodOptional<z.ZodInt>;
|
|
6987
7015
|
}, z.core.$strip>>;
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
names: z.ZodArray<z.ZodObject<{
|
|
6992
|
-
language: z.ZodEnum<{
|
|
6993
|
-
ka: "ka";
|
|
6994
|
-
en: "en";
|
|
6995
|
-
ru: "ru";
|
|
6996
|
-
}>;
|
|
6997
|
-
text: z.ZodString;
|
|
7016
|
+
totalArea: z.ZodOptional<z.ZodObject<{
|
|
7017
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7018
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
6998
7019
|
}, z.core.$strip>>;
|
|
6999
|
-
|
|
7000
|
-
|
|
7020
|
+
livingArea: z.ZodOptional<z.ZodObject<{
|
|
7021
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
7022
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
7023
|
+
}, z.core.$strip>>;
|
|
7024
|
+
region: z.ZodOptional<z.ZodObject<{
|
|
7025
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7026
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7027
|
+
language: z.ZodEnum<{
|
|
7028
|
+
ka: "ka";
|
|
7029
|
+
en: "en";
|
|
7030
|
+
ru: "ru";
|
|
7031
|
+
}>;
|
|
7032
|
+
text: z.ZodString;
|
|
7033
|
+
}, z.core.$strip>>;
|
|
7034
|
+
}, z.core.$strip>>;
|
|
7035
|
+
district: z.ZodOptional<z.ZodObject<{
|
|
7036
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7037
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7038
|
+
language: z.ZodEnum<{
|
|
7039
|
+
ka: "ka";
|
|
7040
|
+
en: "en";
|
|
7041
|
+
ru: "ru";
|
|
7042
|
+
}>;
|
|
7043
|
+
text: z.ZodString;
|
|
7044
|
+
}, z.core.$strip>>;
|
|
7045
|
+
}, z.core.$strip>>;
|
|
7046
|
+
subDistrict: z.ZodOptional<z.ZodObject<{
|
|
7047
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7048
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7049
|
+
language: z.ZodEnum<{
|
|
7050
|
+
ka: "ka";
|
|
7051
|
+
en: "en";
|
|
7052
|
+
ru: "ru";
|
|
7053
|
+
}>;
|
|
7054
|
+
text: z.ZodString;
|
|
7055
|
+
}, z.core.$strip>>;
|
|
7056
|
+
}, z.core.$strip>>;
|
|
7057
|
+
street: z.ZodOptional<z.ZodObject<{
|
|
7058
|
+
id: z.ZodCoercedBigInt<unknown>;
|
|
7059
|
+
names: z.ZodArray<z.ZodObject<{
|
|
7060
|
+
language: z.ZodEnum<{
|
|
7061
|
+
ka: "ka";
|
|
7062
|
+
en: "en";
|
|
7063
|
+
ru: "ru";
|
|
7064
|
+
}>;
|
|
7065
|
+
text: z.ZodString;
|
|
7066
|
+
}, z.core.$strip>>;
|
|
7067
|
+
}, z.core.$strip>>;
|
|
7068
|
+
}, z.core.$strip>;
|
|
7069
|
+
recommendations: z.ZodObject<{
|
|
7070
|
+
total: z.ZodInt;
|
|
7071
|
+
liked: z.ZodInt;
|
|
7072
|
+
disliked: z.ZodInt;
|
|
7073
|
+
undecided: z.ZodInt;
|
|
7074
|
+
}, z.core.$strip>;
|
|
7001
7075
|
}, z.core.$strip>>;
|
|
7002
7076
|
properties: z.ZodArray<z.ZodObject<{
|
|
7003
7077
|
publicId: z.ZodCoercedBigInt<unknown>;
|
|
@@ -7496,11 +7570,11 @@ export declare const zDeleteConversationsByConversationIdPresenceData: z.ZodObje
|
|
|
7496
7570
|
* No Content
|
|
7497
7571
|
*/
|
|
7498
7572
|
export declare const zDeleteConversationsByConversationIdPresenceResponse: z.ZodVoid;
|
|
7499
|
-
export declare const
|
|
7573
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdData: z.ZodObject<{
|
|
7500
7574
|
body: z.ZodOptional<z.ZodNever>;
|
|
7501
7575
|
path: z.ZodObject<{
|
|
7502
7576
|
contactId: z.ZodCoercedBigInt<unknown>;
|
|
7503
|
-
|
|
7577
|
+
interestId: z.ZodCoercedBigInt<unknown>;
|
|
7504
7578
|
itemId: z.ZodCoercedBigInt<unknown>;
|
|
7505
7579
|
}, z.core.$strip>;
|
|
7506
7580
|
query: z.ZodOptional<z.ZodNever>;
|
|
@@ -7508,5 +7582,5 @@ export declare const zDeleteContactsByContactIdRecommendationsByRecommendationsI
|
|
|
7508
7582
|
/**
|
|
7509
7583
|
* No Content
|
|
7510
7584
|
*/
|
|
7511
|
-
export declare const
|
|
7585
|
+
export declare const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdResponse: z.ZodVoid;
|
|
7512
7586
|
//# sourceMappingURL=zod.gen.d.ts.map
|