@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.js
CHANGED
|
@@ -123,9 +123,6 @@ export const zRescheduleRequest = z.object({
|
|
|
123
123
|
start: z.iso.datetime(),
|
|
124
124
|
durationMinutes: z.optional(z.int().gte(15).lte(480)),
|
|
125
125
|
});
|
|
126
|
-
export const zRenameClientRecommendationsRequest = z.object({
|
|
127
|
-
name: z.optional(z.string()),
|
|
128
|
-
});
|
|
129
126
|
export const zAgreementRequest = z.object({
|
|
130
127
|
type: z.enum(['EXCLUSIVE', 'NON_EXCLUSIVE']),
|
|
131
128
|
expiresAt: z.optional(z.iso.date()),
|
|
@@ -318,7 +315,7 @@ export const zIdResponseInteger = z.object({
|
|
|
318
315
|
}),
|
|
319
316
|
});
|
|
320
317
|
export const zRateRecommendationItemRequest = z.object({
|
|
321
|
-
decision: z.enum(['MAYBE', 'DISLIKE', 'LIKE'
|
|
318
|
+
decision: z.enum(['MAYBE', 'DISLIKE', 'LIKE']),
|
|
322
319
|
note: z.optional(z.string().min(0).max(100)),
|
|
323
320
|
});
|
|
324
321
|
export const zContactInfoRequest = z.object({
|
|
@@ -444,24 +441,6 @@ export const zProblemDetail = z.object({
|
|
|
444
441
|
export const zIdResponseUuid = z.object({
|
|
445
442
|
id: z.uuid(),
|
|
446
443
|
});
|
|
447
|
-
export const zCreateClientRecommendationsRequest = z.object({
|
|
448
|
-
title: z.string().min(1),
|
|
449
|
-
interestId: z.coerce
|
|
450
|
-
.bigint()
|
|
451
|
-
.min(BigInt('-9223372036854775808'), {
|
|
452
|
-
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
453
|
-
})
|
|
454
|
-
.max(BigInt('9223372036854775807'), {
|
|
455
|
-
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
456
|
-
}),
|
|
457
|
-
});
|
|
458
|
-
export const zRecommendationsId = z.object({
|
|
459
|
-
value: z.optional(z.uuid()),
|
|
460
|
-
});
|
|
461
|
-
export const zRecommendListingRequest = z.object({
|
|
462
|
-
externalPropertyId: z.uuid(),
|
|
463
|
-
externalListingId: z.uuid(),
|
|
464
|
-
});
|
|
465
444
|
export const zAddDealRequest = z.object({
|
|
466
445
|
listingId: z.coerce
|
|
467
446
|
.bigint()
|
|
@@ -491,6 +470,13 @@ export const zInterestId = z.object({
|
|
|
491
470
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
492
471
|
})),
|
|
493
472
|
});
|
|
473
|
+
export const zTitleRequest = z.object({
|
|
474
|
+
title: z.string().min(1).max(50),
|
|
475
|
+
});
|
|
476
|
+
export const zRecommendListingRequest = z.object({
|
|
477
|
+
externalPropertyId: z.uuid(),
|
|
478
|
+
externalListingId: z.uuid(),
|
|
479
|
+
});
|
|
494
480
|
export const zOnboardClientRequest = z.object({
|
|
495
481
|
title: z.optional(z.string()),
|
|
496
482
|
contactInfo: zContactInfoRequest,
|
|
@@ -678,15 +664,7 @@ export const zAddressResponse = z.object({
|
|
|
678
664
|
lng: z.number(),
|
|
679
665
|
});
|
|
680
666
|
export const zRecommendationsCardView = z.object({
|
|
681
|
-
|
|
682
|
-
.bigint()
|
|
683
|
-
.min(BigInt('-9223372036854775808'), {
|
|
684
|
-
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
685
|
-
})
|
|
686
|
-
.max(BigInt('9223372036854775807'), {
|
|
687
|
-
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
688
|
-
}),
|
|
689
|
-
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE', 'VISIT'])),
|
|
667
|
+
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE'])),
|
|
690
668
|
clientNote: z.optional(z.string()),
|
|
691
669
|
ownerContactId: z.coerce
|
|
692
670
|
.bigint()
|
|
@@ -757,10 +735,10 @@ export const zPagedModelRecommendationsCardView = z.object({
|
|
|
757
735
|
page: z.optional(zPageMetadata),
|
|
758
736
|
});
|
|
759
737
|
export const zRecommendationResponse = z.object({
|
|
760
|
-
|
|
738
|
+
shareToken: z.uuid(),
|
|
761
739
|
title: z.string(),
|
|
762
740
|
createdAt: z.iso.datetime(),
|
|
763
|
-
status: z.enum(['DRAFT', '
|
|
741
|
+
status: z.enum(['DRAFT', 'SHARED', 'CLOSED']),
|
|
764
742
|
recommendations: zPagedModelRecommendationsCardView,
|
|
765
743
|
});
|
|
766
744
|
export const zRecommendationDecisionResponse = z.object({
|
|
@@ -774,7 +752,7 @@ export const zRecommendationDecisionResponse = z.object({
|
|
|
774
752
|
}),
|
|
775
753
|
externalPropertyId: z.uuid(),
|
|
776
754
|
externalListingId: z.uuid(),
|
|
777
|
-
decision: z.enum(['MAYBE', 'DISLIKE', 'LIKE'
|
|
755
|
+
decision: z.enum(['MAYBE', 'DISLIKE', 'LIKE']),
|
|
778
756
|
});
|
|
779
757
|
export const zPermissionResponse = z.object({
|
|
780
758
|
permission: z.enum([
|
|
@@ -1386,15 +1364,33 @@ export const zCursorPageMessageView = z.object({
|
|
|
1386
1364
|
nextCursor: z.optional(z.string()),
|
|
1387
1365
|
hasNext: z.optional(z.boolean()),
|
|
1388
1366
|
});
|
|
1389
|
-
export const
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1367
|
+
export const zRangeBigDecimal = z.object({
|
|
1368
|
+
min: z.optional(z.number()),
|
|
1369
|
+
max: z.optional(z.number()),
|
|
1370
|
+
});
|
|
1371
|
+
export const zRangeDouble = z.object({
|
|
1372
|
+
min: z.optional(z.number()),
|
|
1373
|
+
max: z.optional(z.number()),
|
|
1374
|
+
});
|
|
1375
|
+
export const zRangeInteger = z.object({
|
|
1376
|
+
min: z.optional(z
|
|
1377
|
+
.int()
|
|
1378
|
+
.min(-2147483648, {
|
|
1379
|
+
error: 'Invalid value: Expected int32 to be >= -2147483648',
|
|
1394
1380
|
})
|
|
1395
|
-
.max(
|
|
1396
|
-
error: 'Invalid value: Expected
|
|
1397
|
-
}),
|
|
1381
|
+
.max(2147483647, {
|
|
1382
|
+
error: 'Invalid value: Expected int32 to be <= 2147483647',
|
|
1383
|
+
})),
|
|
1384
|
+
max: z.optional(z
|
|
1385
|
+
.int()
|
|
1386
|
+
.min(-2147483648, {
|
|
1387
|
+
error: 'Invalid value: Expected int32 to be >= -2147483648',
|
|
1388
|
+
})
|
|
1389
|
+
.max(2147483647, {
|
|
1390
|
+
error: 'Invalid value: Expected int32 to be <= 2147483647',
|
|
1391
|
+
})),
|
|
1392
|
+
});
|
|
1393
|
+
export const zCriteria = z.object({
|
|
1398
1394
|
propertyTypes: z.array(z.enum([
|
|
1399
1395
|
'HOUSE',
|
|
1400
1396
|
'TOWN_HOUSE',
|
|
@@ -1418,49 +1414,65 @@ export const zConstantInterestResponse = z.object({
|
|
|
1418
1414
|
'GARAGE',
|
|
1419
1415
|
])),
|
|
1420
1416
|
listingType: z.enum(['SALE', 'RENT', 'DAILY_RENT', 'PLEDGE']),
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1417
|
+
budget: z.optional(zRangeBigDecimal),
|
|
1418
|
+
bedrooms: z.optional(zRangeInteger),
|
|
1419
|
+
bathrooms: z.optional(zRangeInteger),
|
|
1420
|
+
totalArea: z.optional(zRangeDouble),
|
|
1421
|
+
livingArea: z.optional(zRangeDouble),
|
|
1422
|
+
region: z.optional(zLocationResponse),
|
|
1423
|
+
district: z.optional(zLocationResponse),
|
|
1424
|
+
subDistrict: z.optional(zLocationResponse),
|
|
1425
|
+
street: z.optional(zLocationResponse),
|
|
1426
|
+
});
|
|
1427
|
+
export const zRecommendationStats = z.object({
|
|
1428
|
+
total: z
|
|
1424
1429
|
.int()
|
|
1425
1430
|
.min(-2147483648, {
|
|
1426
1431
|
error: 'Invalid value: Expected int32 to be >= -2147483648',
|
|
1427
1432
|
})
|
|
1428
1433
|
.max(2147483647, {
|
|
1429
1434
|
error: 'Invalid value: Expected int32 to be <= 2147483647',
|
|
1430
|
-
})
|
|
1431
|
-
|
|
1435
|
+
}),
|
|
1436
|
+
liked: z
|
|
1432
1437
|
.int()
|
|
1433
1438
|
.min(-2147483648, {
|
|
1434
1439
|
error: 'Invalid value: Expected int32 to be >= -2147483648',
|
|
1435
1440
|
})
|
|
1436
1441
|
.max(2147483647, {
|
|
1437
1442
|
error: 'Invalid value: Expected int32 to be <= 2147483647',
|
|
1438
|
-
})
|
|
1439
|
-
|
|
1443
|
+
}),
|
|
1444
|
+
disliked: z
|
|
1440
1445
|
.int()
|
|
1441
1446
|
.min(-2147483648, {
|
|
1442
1447
|
error: 'Invalid value: Expected int32 to be >= -2147483648',
|
|
1443
1448
|
})
|
|
1444
1449
|
.max(2147483647, {
|
|
1445
1450
|
error: 'Invalid value: Expected int32 to be <= 2147483647',
|
|
1446
|
-
})
|
|
1447
|
-
|
|
1451
|
+
}),
|
|
1452
|
+
undecided: z
|
|
1448
1453
|
.int()
|
|
1449
1454
|
.min(-2147483648, {
|
|
1450
1455
|
error: 'Invalid value: Expected int32 to be >= -2147483648',
|
|
1451
1456
|
})
|
|
1452
1457
|
.max(2147483647, {
|
|
1453
1458
|
error: 'Invalid value: Expected int32 to be <= 2147483647',
|
|
1454
|
-
})
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1459
|
+
}),
|
|
1460
|
+
});
|
|
1461
|
+
export const zInterestResponse = z.object({
|
|
1462
|
+
id: z.coerce
|
|
1463
|
+
.bigint()
|
|
1464
|
+
.min(BigInt('-9223372036854775808'), {
|
|
1465
|
+
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
1466
|
+
})
|
|
1467
|
+
.max(BigInt('9223372036854775807'), {
|
|
1468
|
+
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
1469
|
+
}),
|
|
1470
|
+
title: z.string(),
|
|
1471
|
+
status: z.enum(['DRAFT', 'SHARED', 'CLOSED']),
|
|
1472
|
+
shareToken: z.uuid(),
|
|
1473
|
+
createdAt: z.iso.datetime(),
|
|
1474
|
+
criteria: zCriteria,
|
|
1475
|
+
recommendations: zRecommendationStats,
|
|
1464
1476
|
});
|
|
1465
1477
|
export const zCommentView = z.object({
|
|
1466
1478
|
id: z.uuid(),
|
|
@@ -1643,10 +1655,20 @@ export const zClient360Response = z.object({
|
|
|
1643
1655
|
communicationPreference: z.optional(zCommunicationPreferenceResponse),
|
|
1644
1656
|
isSearching: z.boolean(),
|
|
1645
1657
|
isListing: z.boolean(),
|
|
1646
|
-
priority: z.
|
|
1658
|
+
priority: z.enum(['CRITICAL', 'HIGH', 'MEDIUM', 'LOW']),
|
|
1659
|
+
status: z.enum([
|
|
1660
|
+
'NEW',
|
|
1661
|
+
'ON_HOLD',
|
|
1662
|
+
'COLD',
|
|
1663
|
+
'WARM',
|
|
1664
|
+
'HOT',
|
|
1665
|
+
'WAITING_PAYMENT',
|
|
1666
|
+
'LOST',
|
|
1667
|
+
'WON',
|
|
1668
|
+
]),
|
|
1647
1669
|
createdAt: z.iso.datetime(),
|
|
1648
1670
|
updatedAt: z.iso.datetime(),
|
|
1649
|
-
interests: z.array(
|
|
1671
|
+
interests: z.array(zInterestResponse),
|
|
1650
1672
|
properties: z.array(zContactPropertyResponse),
|
|
1651
1673
|
});
|
|
1652
1674
|
export const zAssignedAgent = z.object({
|
|
@@ -1918,8 +1940,8 @@ export const zPutMeetingsByMeetingIdCancelData = z.object({
|
|
|
1918
1940
|
* No Content
|
|
1919
1941
|
*/
|
|
1920
1942
|
export const zPutMeetingsByMeetingIdCancelResponse = z.void();
|
|
1921
|
-
export const
|
|
1922
|
-
body:
|
|
1943
|
+
export const zPutContactsByContactIdPropertiesByPropertyIdAgreementData = z.object({
|
|
1944
|
+
body: zAgreementRequest,
|
|
1923
1945
|
path: z.object({
|
|
1924
1946
|
contactId: z.coerce
|
|
1925
1947
|
.bigint()
|
|
@@ -1929,16 +1951,19 @@ export const zPutContactsByContactIdRecommendationsByRecommendationsIdTitleData
|
|
|
1929
1951
|
.max(BigInt('9223372036854775807'), {
|
|
1930
1952
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
1931
1953
|
}),
|
|
1932
|
-
|
|
1954
|
+
propertyId: z.coerce
|
|
1955
|
+
.bigint()
|
|
1956
|
+
.min(BigInt('-9223372036854775808'), {
|
|
1957
|
+
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
1958
|
+
})
|
|
1959
|
+
.max(BigInt('9223372036854775807'), {
|
|
1960
|
+
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
1961
|
+
}),
|
|
1933
1962
|
}),
|
|
1934
1963
|
query: z.optional(z.never()),
|
|
1935
1964
|
});
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
*/
|
|
1939
|
-
export const zPutContactsByContactIdRecommendationsByRecommendationsIdTitleResponse = z.void();
|
|
1940
|
-
export const zPutContactsByContactIdPropertiesByPropertyIdAgreementData = z.object({
|
|
1941
|
-
body: zAgreementRequest,
|
|
1965
|
+
export const zGetContactsByContactIdInterestsByInterestIdData = z.object({
|
|
1966
|
+
body: z.optional(z.never()),
|
|
1942
1967
|
path: z.object({
|
|
1943
1968
|
contactId: z.coerce
|
|
1944
1969
|
.bigint()
|
|
@@ -1948,7 +1973,7 @@ export const zPutContactsByContactIdPropertiesByPropertyIdAgreementData = z.obje
|
|
|
1948
1973
|
.max(BigInt('9223372036854775807'), {
|
|
1949
1974
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
1950
1975
|
}),
|
|
1951
|
-
|
|
1976
|
+
interestId: z.coerce
|
|
1952
1977
|
.bigint()
|
|
1953
1978
|
.min(BigInt('-9223372036854775808'), {
|
|
1954
1979
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -1959,6 +1984,10 @@ export const zPutContactsByContactIdPropertiesByPropertyIdAgreementData = z.obje
|
|
|
1959
1984
|
}),
|
|
1960
1985
|
query: z.optional(z.never()),
|
|
1961
1986
|
});
|
|
1987
|
+
/**
|
|
1988
|
+
* OK
|
|
1989
|
+
*/
|
|
1990
|
+
export const zGetContactsByContactIdInterestsByInterestIdResponse = zInterestResponse;
|
|
1962
1991
|
export const zPutContactsByContactIdInterestsByInterestIdData = z.object({
|
|
1963
1992
|
body: zCaptureInterestRequest,
|
|
1964
1993
|
path: z.object({
|
|
@@ -2236,7 +2265,28 @@ export const zPostRolesData = z.object({
|
|
|
2236
2265
|
* Created
|
|
2237
2266
|
*/
|
|
2238
2267
|
export const zPostRolesResponse = zIdResponseInteger;
|
|
2239
|
-
export const
|
|
2268
|
+
export const zGetPublicWebhooksMetaWaData = z.object({
|
|
2269
|
+
body: z.optional(z.never()),
|
|
2270
|
+
path: z.optional(z.never()),
|
|
2271
|
+
query: z.object({
|
|
2272
|
+
'hub.mode': z.string(),
|
|
2273
|
+
'hub.verify_token': z.string(),
|
|
2274
|
+
'hub.challenge': z.string(),
|
|
2275
|
+
}),
|
|
2276
|
+
});
|
|
2277
|
+
/**
|
|
2278
|
+
* OK
|
|
2279
|
+
*/
|
|
2280
|
+
export const zGetPublicWebhooksMetaWaResponse = z.string();
|
|
2281
|
+
export const zPostPublicWebhooksMetaWaData = z.object({
|
|
2282
|
+
body: z.string(),
|
|
2283
|
+
path: z.optional(z.never()),
|
|
2284
|
+
query: z.optional(z.never()),
|
|
2285
|
+
headers: z.optional(z.object({
|
|
2286
|
+
'X-Hub-Signature-256': z.optional(z.string()),
|
|
2287
|
+
})),
|
|
2288
|
+
});
|
|
2289
|
+
export const zGetPublicWebhooksMetaIgData = z.object({
|
|
2240
2290
|
body: z.optional(z.never()),
|
|
2241
2291
|
path: z.optional(z.never()),
|
|
2242
2292
|
query: z.object({
|
|
@@ -2248,8 +2298,8 @@ export const zGetPublicWebhooksMetaData = z.object({
|
|
|
2248
2298
|
/**
|
|
2249
2299
|
* OK
|
|
2250
2300
|
*/
|
|
2251
|
-
export const
|
|
2252
|
-
export const
|
|
2301
|
+
export const zGetPublicWebhooksMetaIgResponse = z.string();
|
|
2302
|
+
export const zPostPublicWebhooksMetaIgData = z.object({
|
|
2253
2303
|
body: z.string(),
|
|
2254
2304
|
path: z.optional(z.never()),
|
|
2255
2305
|
query: z.optional(z.never()),
|
|
@@ -2257,10 +2307,31 @@ export const zPostPublicWebhooksMetaData = z.object({
|
|
|
2257
2307
|
'X-Hub-Signature-256': z.optional(z.string()),
|
|
2258
2308
|
})),
|
|
2259
2309
|
});
|
|
2260
|
-
export const
|
|
2310
|
+
export const zGetPublicWebhooksMetaFbData = z.object({
|
|
2311
|
+
body: z.optional(z.never()),
|
|
2312
|
+
path: z.optional(z.never()),
|
|
2313
|
+
query: z.object({
|
|
2314
|
+
'hub.mode': z.string(),
|
|
2315
|
+
'hub.verify_token': z.string(),
|
|
2316
|
+
'hub.challenge': z.string(),
|
|
2317
|
+
}),
|
|
2318
|
+
});
|
|
2319
|
+
/**
|
|
2320
|
+
* OK
|
|
2321
|
+
*/
|
|
2322
|
+
export const zGetPublicWebhooksMetaFbResponse = z.string();
|
|
2323
|
+
export const zPostPublicWebhooksMetaFbData = z.object({
|
|
2324
|
+
body: z.string(),
|
|
2325
|
+
path: z.optional(z.never()),
|
|
2326
|
+
query: z.optional(z.never()),
|
|
2327
|
+
headers: z.optional(z.object({
|
|
2328
|
+
'X-Hub-Signature-256': z.optional(z.string()),
|
|
2329
|
+
})),
|
|
2330
|
+
});
|
|
2331
|
+
export const zPostPublicRecomendationsByTokenItemsByItemIdRateData = z.object({
|
|
2261
2332
|
body: zRateRecommendationItemRequest,
|
|
2262
2333
|
path: z.object({
|
|
2263
|
-
|
|
2334
|
+
token: z.uuid(),
|
|
2264
2335
|
itemId: z.coerce
|
|
2265
2336
|
.bigint()
|
|
2266
2337
|
.min(BigInt('-9223372036854775808'), {
|
|
@@ -2275,7 +2346,7 @@ export const zPostPublicRecomendationsByRecommendationsIdItemsByItemIdRateData =
|
|
|
2275
2346
|
/**
|
|
2276
2347
|
* No Content
|
|
2277
2348
|
*/
|
|
2278
|
-
export const
|
|
2349
|
+
export const zPostPublicRecomendationsByTokenItemsByItemIdRateResponse = z.void();
|
|
2279
2350
|
export const zPostPublicOtpPhoneData = z.object({
|
|
2280
2351
|
body: zPhoneRequest,
|
|
2281
2352
|
path: z.optional(z.never()),
|
|
@@ -2429,8 +2500,8 @@ export const zPostConversationsByConversationIdMessagesData = z.object({
|
|
|
2429
2500
|
* Message persisted and sent
|
|
2430
2501
|
*/
|
|
2431
2502
|
export const zPostConversationsByConversationIdMessagesResponse = zIdResponseUuid;
|
|
2432
|
-
export const
|
|
2433
|
-
body:
|
|
2503
|
+
export const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData = z.object({
|
|
2504
|
+
body: z.optional(z.never()),
|
|
2434
2505
|
path: z.object({
|
|
2435
2506
|
contactId: z.coerce
|
|
2436
2507
|
.bigint()
|
|
@@ -2440,17 +2511,7 @@ export const zPostContactsByContactIdRecommendationsData = z.object({
|
|
|
2440
2511
|
.max(BigInt('9223372036854775807'), {
|
|
2441
2512
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2442
2513
|
}),
|
|
2443
|
-
|
|
2444
|
-
query: z.optional(z.never()),
|
|
2445
|
-
});
|
|
2446
|
-
/**
|
|
2447
|
-
* Created
|
|
2448
|
-
*/
|
|
2449
|
-
export const zPostContactsByContactIdRecommendationsResponse = zRecommendationsId;
|
|
2450
|
-
export const zPostContactsByContactIdRecommendationsByRecommendationsIdSubmitData = z.object({
|
|
2451
|
-
body: z.optional(z.never()),
|
|
2452
|
-
path: z.object({
|
|
2453
|
-
contactId: z.coerce
|
|
2514
|
+
propertyId: z.coerce
|
|
2454
2515
|
.bigint()
|
|
2455
2516
|
.min(BigInt('-9223372036854775808'), {
|
|
2456
2517
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -2458,18 +2519,7 @@ export const zPostContactsByContactIdRecommendationsByRecommendationsIdSubmitDat
|
|
|
2458
2519
|
.max(BigInt('9223372036854775807'), {
|
|
2459
2520
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2460
2521
|
}),
|
|
2461
|
-
|
|
2462
|
-
}),
|
|
2463
|
-
query: z.optional(z.never()),
|
|
2464
|
-
});
|
|
2465
|
-
/**
|
|
2466
|
-
* No Content
|
|
2467
|
-
*/
|
|
2468
|
-
export const zPostContactsByContactIdRecommendationsByRecommendationsIdSubmitResponse = z.void();
|
|
2469
|
-
export const zPostContactsByContactIdRecommendationsByRecommendationsIdReviseData = z.object({
|
|
2470
|
-
body: z.optional(z.never()),
|
|
2471
|
-
path: z.object({
|
|
2472
|
-
contactId: z.coerce
|
|
2522
|
+
listingId: z.coerce
|
|
2473
2523
|
.bigint()
|
|
2474
2524
|
.min(BigInt('-9223372036854775808'), {
|
|
2475
2525
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -2477,16 +2527,15 @@ export const zPostContactsByContactIdRecommendationsByRecommendationsIdReviseDat
|
|
|
2477
2527
|
.max(BigInt('9223372036854775807'), {
|
|
2478
2528
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2479
2529
|
}),
|
|
2480
|
-
recommendationsId: z.uuid(),
|
|
2481
2530
|
}),
|
|
2482
2531
|
query: z.optional(z.never()),
|
|
2483
2532
|
});
|
|
2484
2533
|
/**
|
|
2485
2534
|
* No Content
|
|
2486
2535
|
*/
|
|
2487
|
-
export const
|
|
2488
|
-
export const
|
|
2489
|
-
body:
|
|
2536
|
+
export const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse = z.void();
|
|
2537
|
+
export const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealData = z.object({
|
|
2538
|
+
body: zAddDealRequest,
|
|
2490
2539
|
path: z.object({
|
|
2491
2540
|
contactId: z.coerce
|
|
2492
2541
|
.bigint()
|
|
@@ -2496,14 +2545,15 @@ export const zPostContactsByContactIdRecommendationsByRecommendationsIdItemsData
|
|
|
2496
2545
|
.max(BigInt('9223372036854775807'), {
|
|
2497
2546
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2498
2547
|
}),
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2548
|
+
propertyId: z.coerce
|
|
2549
|
+
.bigint()
|
|
2550
|
+
.min(BigInt('-9223372036854775808'), {
|
|
2551
|
+
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
2552
|
+
})
|
|
2553
|
+
.max(BigInt('9223372036854775807'), {
|
|
2554
|
+
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2555
|
+
}),
|
|
2556
|
+
listingId: z.coerce
|
|
2507
2557
|
.bigint()
|
|
2508
2558
|
.min(BigInt('-9223372036854775808'), {
|
|
2509
2559
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -2511,16 +2561,15 @@ export const zPostContactsByContactIdRecommendationsByRecommendationsIdCloseData
|
|
|
2511
2561
|
.max(BigInt('9223372036854775807'), {
|
|
2512
2562
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2513
2563
|
}),
|
|
2514
|
-
recommendationsId: z.uuid(),
|
|
2515
2564
|
}),
|
|
2516
2565
|
query: z.optional(z.never()),
|
|
2517
2566
|
});
|
|
2518
2567
|
/**
|
|
2519
2568
|
* No Content
|
|
2520
2569
|
*/
|
|
2521
|
-
export const
|
|
2522
|
-
export const
|
|
2523
|
-
body:
|
|
2570
|
+
export const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDealResponse = z.void();
|
|
2571
|
+
export const zPostContactsByContactIdInterestsData = z.object({
|
|
2572
|
+
body: zCaptureInterestRequest,
|
|
2524
2573
|
path: z.object({
|
|
2525
2574
|
contactId: z.coerce
|
|
2526
2575
|
.bigint()
|
|
@@ -2530,7 +2579,17 @@ export const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingId
|
|
|
2530
2579
|
.max(BigInt('9223372036854775807'), {
|
|
2531
2580
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2532
2581
|
}),
|
|
2533
|
-
|
|
2582
|
+
}),
|
|
2583
|
+
query: z.optional(z.never()),
|
|
2584
|
+
});
|
|
2585
|
+
/**
|
|
2586
|
+
* Created
|
|
2587
|
+
*/
|
|
2588
|
+
export const zPostContactsByContactIdInterestsResponse = zInterestId;
|
|
2589
|
+
export const zPostContactsByContactIdInterestsByInterestIdShareData = z.object({
|
|
2590
|
+
body: z.optional(z.never()),
|
|
2591
|
+
path: z.object({
|
|
2592
|
+
contactId: z.coerce
|
|
2534
2593
|
.bigint()
|
|
2535
2594
|
.min(BigInt('-9223372036854775808'), {
|
|
2536
2595
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -2538,7 +2597,7 @@ export const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingId
|
|
|
2538
2597
|
.max(BigInt('9223372036854775807'), {
|
|
2539
2598
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2540
2599
|
}),
|
|
2541
|
-
|
|
2600
|
+
interestId: z.coerce
|
|
2542
2601
|
.bigint()
|
|
2543
2602
|
.min(BigInt('-9223372036854775808'), {
|
|
2544
2603
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -2552,9 +2611,9 @@ export const zDeleteContactsByContactIdPropertiesByPropertyIdListingsByListingId
|
|
|
2552
2611
|
/**
|
|
2553
2612
|
* No Content
|
|
2554
2613
|
*/
|
|
2555
|
-
export const
|
|
2556
|
-
export const
|
|
2557
|
-
body:
|
|
2614
|
+
export const zPostContactsByContactIdInterestsByInterestIdShareResponse = z.void();
|
|
2615
|
+
export const zPostContactsByContactIdInterestsByInterestIdReviseData = z.object({
|
|
2616
|
+
body: z.optional(z.never()),
|
|
2558
2617
|
path: z.object({
|
|
2559
2618
|
contactId: z.coerce
|
|
2560
2619
|
.bigint()
|
|
@@ -2564,15 +2623,7 @@ export const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDe
|
|
|
2564
2623
|
.max(BigInt('9223372036854775807'), {
|
|
2565
2624
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2566
2625
|
}),
|
|
2567
|
-
|
|
2568
|
-
.bigint()
|
|
2569
|
-
.min(BigInt('-9223372036854775808'), {
|
|
2570
|
-
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
2571
|
-
})
|
|
2572
|
-
.max(BigInt('9223372036854775807'), {
|
|
2573
|
-
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2574
|
-
}),
|
|
2575
|
-
listingId: z.coerce
|
|
2626
|
+
interestId: z.coerce
|
|
2576
2627
|
.bigint()
|
|
2577
2628
|
.min(BigInt('-9223372036854775808'), {
|
|
2578
2629
|
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
@@ -2586,9 +2637,9 @@ export const zPostContactsByContactIdPropertiesByPropertyIdListingsByListingIdDe
|
|
|
2586
2637
|
/**
|
|
2587
2638
|
* No Content
|
|
2588
2639
|
*/
|
|
2589
|
-
export const
|
|
2590
|
-
export const
|
|
2591
|
-
body:
|
|
2640
|
+
export const zPostContactsByContactIdInterestsByInterestIdReviseResponse = z.void();
|
|
2641
|
+
export const zPostContactsByContactIdInterestsByInterestIdRenameData = z.object({
|
|
2642
|
+
body: zTitleRequest,
|
|
2592
2643
|
path: z.object({
|
|
2593
2644
|
contactId: z.coerce
|
|
2594
2645
|
.bigint()
|
|
@@ -2598,15 +2649,23 @@ export const zPostContactsByContactIdInterestsData = z.object({
|
|
|
2598
2649
|
.max(BigInt('9223372036854775807'), {
|
|
2599
2650
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2600
2651
|
}),
|
|
2652
|
+
interestId: z.coerce
|
|
2653
|
+
.bigint()
|
|
2654
|
+
.min(BigInt('-9223372036854775808'), {
|
|
2655
|
+
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
2656
|
+
})
|
|
2657
|
+
.max(BigInt('9223372036854775807'), {
|
|
2658
|
+
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
2659
|
+
}),
|
|
2601
2660
|
}),
|
|
2602
2661
|
query: z.optional(z.never()),
|
|
2603
2662
|
});
|
|
2604
2663
|
/**
|
|
2605
|
-
*
|
|
2664
|
+
* No Content
|
|
2606
2665
|
*/
|
|
2607
|
-
export const
|
|
2608
|
-
export const
|
|
2609
|
-
body:
|
|
2666
|
+
export const zPostContactsByContactIdInterestsByInterestIdRenameResponse = z.void();
|
|
2667
|
+
export const zPostContactsByContactIdInterestsByInterestIdItemsData = z.object({
|
|
2668
|
+
body: zRecommendListingRequest,
|
|
2610
2669
|
path: z.object({
|
|
2611
2670
|
contactId: z.coerce
|
|
2612
2671
|
.bigint()
|
|
@@ -2627,11 +2686,7 @@ export const zPostContactsByContactIdInterestsByInterestIdFulfilledData = z.obje
|
|
|
2627
2686
|
}),
|
|
2628
2687
|
query: z.optional(z.never()),
|
|
2629
2688
|
});
|
|
2630
|
-
|
|
2631
|
-
* No Content
|
|
2632
|
-
*/
|
|
2633
|
-
export const zPostContactsByContactIdInterestsByInterestIdFulfilledResponse = z.void();
|
|
2634
|
-
export const zPostContactsByContactIdInterestsByInterestIdCancelledData = z.object({
|
|
2689
|
+
export const zPostContactsByContactIdInterestsByInterestIdCloseData = z.object({
|
|
2635
2690
|
body: z.optional(z.never()),
|
|
2636
2691
|
path: z.object({
|
|
2637
2692
|
contactId: z.coerce
|
|
@@ -2656,7 +2711,7 @@ export const zPostContactsByContactIdInterestsByInterestIdCancelledData = z.obje
|
|
|
2656
2711
|
/**
|
|
2657
2712
|
* No Content
|
|
2658
2713
|
*/
|
|
2659
|
-
export const
|
|
2714
|
+
export const zPostContactsByContactIdInterestsByInterestIdCloseResponse = z.void();
|
|
2660
2715
|
export const zDeleteContactsByContactIdCommentsData = z.object({
|
|
2661
2716
|
body: z.optional(z.never()),
|
|
2662
2717
|
path: z.object({
|
|
@@ -2921,13 +2976,13 @@ export const zGetUserMeData = z.object({
|
|
|
2921
2976
|
* OK
|
|
2922
2977
|
*/
|
|
2923
2978
|
export const zGetUserMeResponse = zUserContextViewResponse;
|
|
2924
|
-
export const
|
|
2979
|
+
export const zGetPublicRecomendationsByTokenItemsData = z.object({
|
|
2925
2980
|
body: z.optional(z.never()),
|
|
2926
2981
|
path: z.object({
|
|
2927
|
-
|
|
2982
|
+
token: z.uuid(),
|
|
2928
2983
|
}),
|
|
2929
2984
|
query: z.optional(z.object({
|
|
2930
|
-
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE'
|
|
2985
|
+
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE'])),
|
|
2931
2986
|
page: z.optional(z.int().gte(0)).default(0),
|
|
2932
2987
|
size: z.optional(z.int().gte(1)).default(20),
|
|
2933
2988
|
sort: z.optional(z.array(z.string())),
|
|
@@ -2936,18 +2991,18 @@ export const zGetPublicRecomendationsByRecommendationsIdItemsData = z.object({
|
|
|
2936
2991
|
/**
|
|
2937
2992
|
* OK
|
|
2938
2993
|
*/
|
|
2939
|
-
export const
|
|
2940
|
-
export const
|
|
2994
|
+
export const zGetPublicRecomendationsByTokenItemsResponse = zRecommendationResponse;
|
|
2995
|
+
export const zGetPublicRecomendationsByTokenDecisionsData = z.object({
|
|
2941
2996
|
body: z.optional(z.never()),
|
|
2942
2997
|
path: z.object({
|
|
2943
|
-
|
|
2998
|
+
token: z.uuid(),
|
|
2944
2999
|
}),
|
|
2945
3000
|
query: z.optional(z.never()),
|
|
2946
3001
|
});
|
|
2947
3002
|
/**
|
|
2948
3003
|
* OK
|
|
2949
3004
|
*/
|
|
2950
|
-
export const
|
|
3005
|
+
export const zGetPublicRecomendationsByTokenDecisionsResponse = z.array(zRecommendationDecisionResponse);
|
|
2951
3006
|
export const zGetPublicPermissionsData = z.object({
|
|
2952
3007
|
body: z.optional(z.never()),
|
|
2953
3008
|
path: z.optional(z.never()),
|
|
@@ -2995,7 +3050,7 @@ export const zGetPublicAgencyData = z.object({
|
|
|
2995
3050
|
status: z.optional(z.enum(['NEW', 'ACTIVE', 'PAYMENT_FAILED', 'INACTIVE'])),
|
|
2996
3051
|
page: z.optional(z.int().gte(0)).default(0),
|
|
2997
3052
|
size: z.optional(z.int().gte(1)).default(10),
|
|
2998
|
-
sort: z.optional(z.array(z.string())).default(['
|
|
3053
|
+
sort: z.optional(z.array(z.string())).default(['title,ASC']),
|
|
2999
3054
|
})),
|
|
3000
3055
|
});
|
|
3001
3056
|
/**
|
|
@@ -3494,31 +3549,7 @@ export const zGetConversationsByConversationIdUpdatesData = z.object({
|
|
|
3494
3549
|
* OK
|
|
3495
3550
|
*/
|
|
3496
3551
|
export const zGetConversationsByConversationIdUpdatesResponse = zThreadUpdates;
|
|
3497
|
-
export const
|
|
3498
|
-
body: z.optional(z.never()),
|
|
3499
|
-
path: z.object({
|
|
3500
|
-
contactId: z.coerce
|
|
3501
|
-
.bigint()
|
|
3502
|
-
.min(BigInt('-9223372036854775808'), {
|
|
3503
|
-
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
3504
|
-
})
|
|
3505
|
-
.max(BigInt('9223372036854775807'), {
|
|
3506
|
-
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
3507
|
-
}),
|
|
3508
|
-
recommendationsId: z.uuid(),
|
|
3509
|
-
}),
|
|
3510
|
-
query: z.optional(z.object({
|
|
3511
|
-
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE', 'VISIT'])),
|
|
3512
|
-
page: z.optional(z.int().gte(0)).default(0),
|
|
3513
|
-
size: z.optional(z.int().gte(1)).default(20),
|
|
3514
|
-
sort: z.optional(z.array(z.string())),
|
|
3515
|
-
})),
|
|
3516
|
-
});
|
|
3517
|
-
/**
|
|
3518
|
-
* OK
|
|
3519
|
-
*/
|
|
3520
|
-
export const zGetContactsByContactIdRecommendationsByRecommendationsIdResponse = zRecommendationResponse;
|
|
3521
|
-
export const zGetContactsByContactIdRecommendationsInterestByInterestIdData = z.object({
|
|
3552
|
+
export const zGetContactsByContactIdInterestsByInterestIdRecommendationsData = z.object({
|
|
3522
3553
|
body: z.optional(z.never()),
|
|
3523
3554
|
path: z.object({
|
|
3524
3555
|
contactId: z.coerce
|
|
@@ -3539,7 +3570,7 @@ export const zGetContactsByContactIdRecommendationsInterestByInterestIdData = z.
|
|
|
3539
3570
|
}),
|
|
3540
3571
|
}),
|
|
3541
3572
|
query: z.optional(z.object({
|
|
3542
|
-
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE'
|
|
3573
|
+
decision: z.optional(z.enum(['MAYBE', 'DISLIKE', 'LIKE'])),
|
|
3543
3574
|
page: z.optional(z.int().gte(0)).default(0),
|
|
3544
3575
|
size: z.optional(z.int().gte(1)).default(20),
|
|
3545
3576
|
sort: z.optional(z.array(z.string())),
|
|
@@ -3548,26 +3579,7 @@ export const zGetContactsByContactIdRecommendationsInterestByInterestIdData = z.
|
|
|
3548
3579
|
/**
|
|
3549
3580
|
* OK
|
|
3550
3581
|
*/
|
|
3551
|
-
export const
|
|
3552
|
-
export const zGetContactsByContactIdInterestsRecommendationByRecommendationIdData = z.object({
|
|
3553
|
-
body: z.optional(z.never()),
|
|
3554
|
-
path: z.object({
|
|
3555
|
-
contactId: z.coerce
|
|
3556
|
-
.bigint()
|
|
3557
|
-
.min(BigInt('-9223372036854775808'), {
|
|
3558
|
-
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
3559
|
-
})
|
|
3560
|
-
.max(BigInt('9223372036854775807'), {
|
|
3561
|
-
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
3562
|
-
}),
|
|
3563
|
-
recommendationId: z.uuid(),
|
|
3564
|
-
}),
|
|
3565
|
-
query: z.optional(z.never()),
|
|
3566
|
-
});
|
|
3567
|
-
/**
|
|
3568
|
-
* OK
|
|
3569
|
-
*/
|
|
3570
|
-
export const zGetContactsByContactIdInterestsRecommendationByRecommendationIdResponse = zConstantInterestResponse;
|
|
3582
|
+
export const zGetContactsByContactIdInterestsByInterestIdRecommendationsResponse = zRecommendationResponse;
|
|
3571
3583
|
export const zGetContactByContactIdData = z.object({
|
|
3572
3584
|
body: z.optional(z.never()),
|
|
3573
3585
|
path: z.object({
|
|
@@ -3813,7 +3825,7 @@ export const zDeleteConversationsByConversationIdPresenceData = z.object({
|
|
|
3813
3825
|
* No Content
|
|
3814
3826
|
*/
|
|
3815
3827
|
export const zDeleteConversationsByConversationIdPresenceResponse = z.void();
|
|
3816
|
-
export const
|
|
3828
|
+
export const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdData = z.object({
|
|
3817
3829
|
body: z.optional(z.never()),
|
|
3818
3830
|
path: z.object({
|
|
3819
3831
|
contactId: z.coerce
|
|
@@ -3824,7 +3836,14 @@ export const zDeleteContactsByContactIdRecommendationsByRecommendationsIdItemsBy
|
|
|
3824
3836
|
.max(BigInt('9223372036854775807'), {
|
|
3825
3837
|
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
3826
3838
|
}),
|
|
3827
|
-
|
|
3839
|
+
interestId: z.coerce
|
|
3840
|
+
.bigint()
|
|
3841
|
+
.min(BigInt('-9223372036854775808'), {
|
|
3842
|
+
error: 'Invalid value: Expected int64 to be >= -9223372036854775808',
|
|
3843
|
+
})
|
|
3844
|
+
.max(BigInt('9223372036854775807'), {
|
|
3845
|
+
error: 'Invalid value: Expected int64 to be <= 9223372036854775807',
|
|
3846
|
+
}),
|
|
3828
3847
|
itemId: z.coerce
|
|
3829
3848
|
.bigint()
|
|
3830
3849
|
.min(BigInt('-9223372036854775808'), {
|
|
@@ -3839,5 +3858,5 @@ export const zDeleteContactsByContactIdRecommendationsByRecommendationsIdItemsBy
|
|
|
3839
3858
|
/**
|
|
3840
3859
|
* No Content
|
|
3841
3860
|
*/
|
|
3842
|
-
export const
|
|
3861
|
+
export const zDeleteContactsByContactIdInterestsByInterestIdItemsByItemIdResponse = z.void();
|
|
3843
3862
|
//# sourceMappingURL=zod.gen.js.map
|