@homespot-sdk/core 0.0.215 → 0.0.216
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 +185 -68
- package/dist/rem/schemas.gen.d.ts.map +1 -1
- package/dist/rem/schemas.gen.js +184 -76
- package/dist/rem/schemas.gen.js.map +1 -1
- package/dist/rem/sdk.gen.d.ts +21 -8
- package/dist/rem/sdk.gen.d.ts.map +1 -1
- package/dist/rem/sdk.gen.js +119 -14
- package/dist/rem/sdk.gen.js.map +1 -1
- package/dist/rem/types.gen.d.ts +283 -77
- package/dist/rem/types.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.d.ts +774 -381
- package/dist/rem/zod.gen.d.ts.map +1 -1
- package/dist/rem/zod.gen.js +289 -107
- package/dist/rem/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/rem/types.gen.d.ts
CHANGED
|
@@ -93,12 +93,23 @@ export type CreateAgencyRequest = {
|
|
|
93
93
|
address: AddressRequest;
|
|
94
94
|
establishedYear: number;
|
|
95
95
|
};
|
|
96
|
-
export type
|
|
96
|
+
export type PhotoRequest = {
|
|
97
|
+
photo: string;
|
|
97
98
|
type: TypeEnum2;
|
|
98
|
-
|
|
99
|
+
width: number;
|
|
100
|
+
height?: number;
|
|
99
101
|
};
|
|
100
|
-
export type
|
|
101
|
-
|
|
102
|
+
export type PresignedUrlResponse = {
|
|
103
|
+
originalName: string;
|
|
104
|
+
key: string;
|
|
105
|
+
url: string;
|
|
106
|
+
};
|
|
107
|
+
export type PresignedUrlsResponse = {
|
|
108
|
+
data: Array<PresignedUrlResponse>;
|
|
109
|
+
};
|
|
110
|
+
export type UploadAcknowledgmentResponse = {
|
|
111
|
+
success: Array<string>;
|
|
112
|
+
fail: Array<string>;
|
|
102
113
|
};
|
|
103
114
|
export type TransferFundsRequest = {
|
|
104
115
|
transferTo: string;
|
|
@@ -248,23 +259,37 @@ export type InterestId = {
|
|
|
248
259
|
export type IdResponseUuid = {
|
|
249
260
|
id: string;
|
|
250
261
|
};
|
|
251
|
-
export type
|
|
252
|
-
|
|
262
|
+
export type WebsiteRequest = {
|
|
263
|
+
url?: string;
|
|
264
|
+
};
|
|
265
|
+
export type ThemeRequest = {
|
|
266
|
+
primaryColor: number;
|
|
267
|
+
};
|
|
268
|
+
export type SocialMediaRequest = {
|
|
253
269
|
type: TypeEnum3;
|
|
254
|
-
|
|
255
|
-
height?: number;
|
|
270
|
+
url?: string;
|
|
256
271
|
};
|
|
257
|
-
export type
|
|
258
|
-
|
|
259
|
-
key: string;
|
|
260
|
-
url: string;
|
|
272
|
+
export type SocialMediasRequest = {
|
|
273
|
+
data: Array<SocialMediaRequest>;
|
|
261
274
|
};
|
|
262
|
-
export type
|
|
263
|
-
data: Array<
|
|
275
|
+
export type MultiLangTextRequest = {
|
|
276
|
+
data: Array<TextRequest>;
|
|
264
277
|
};
|
|
265
|
-
export type
|
|
266
|
-
|
|
267
|
-
|
|
278
|
+
export type TextRequest = {
|
|
279
|
+
language: SchemaEnum3;
|
|
280
|
+
text?: string;
|
|
281
|
+
};
|
|
282
|
+
export type WhitelabelSectionRequest = {
|
|
283
|
+
title: MultiLangTextRequest;
|
|
284
|
+
body: MultiLangTextRequest;
|
|
285
|
+
};
|
|
286
|
+
export type WhitelabelReviewRequest = {
|
|
287
|
+
quote: MultiLangTextRequest;
|
|
288
|
+
name: MultiLangTextRequest;
|
|
289
|
+
status: MultiLangTextRequest;
|
|
290
|
+
};
|
|
291
|
+
export type EstablishedYearRequest = {
|
|
292
|
+
year: number;
|
|
268
293
|
};
|
|
269
294
|
export type OrganizationSummaryViewResponse = {
|
|
270
295
|
agencyId: string;
|
|
@@ -368,21 +393,21 @@ export type AgencySummaryResponse = {
|
|
|
368
393
|
owner: string;
|
|
369
394
|
name: string;
|
|
370
395
|
email: string;
|
|
371
|
-
seats:
|
|
396
|
+
seats: number;
|
|
372
397
|
subdomain: string;
|
|
373
398
|
phone: string;
|
|
374
|
-
|
|
375
|
-
establishedYear: string;
|
|
399
|
+
establishedYear?: number;
|
|
376
400
|
status: SchemaEnum2;
|
|
377
401
|
logo?: string;
|
|
402
|
+
theme?: number;
|
|
378
403
|
};
|
|
379
404
|
export type PagedModelAgencySummaryResponse = {
|
|
380
405
|
content?: Array<AgencySummaryResponse>;
|
|
381
406
|
page?: PageMetadata;
|
|
382
407
|
};
|
|
383
408
|
export type AgencyContactInfoResponse = {
|
|
384
|
-
phone
|
|
385
|
-
email
|
|
409
|
+
phone: string;
|
|
410
|
+
email: string;
|
|
386
411
|
address?: string;
|
|
387
412
|
};
|
|
388
413
|
export type AgencyStatsResponse = {
|
|
@@ -391,19 +416,18 @@ export type AgencyStatsResponse = {
|
|
|
391
416
|
operatingSince: number;
|
|
392
417
|
};
|
|
393
418
|
export type LangTextResponse = {
|
|
394
|
-
language:
|
|
419
|
+
language: SchemaEnum3;
|
|
395
420
|
text: string;
|
|
396
421
|
};
|
|
397
422
|
export type MemberResponse = {
|
|
398
|
-
memberId
|
|
399
|
-
firstName
|
|
400
|
-
lastName
|
|
423
|
+
memberId: string;
|
|
424
|
+
firstName: string;
|
|
425
|
+
lastName: string;
|
|
401
426
|
phone?: string;
|
|
402
|
-
email
|
|
427
|
+
email: string;
|
|
403
428
|
profilePictureUrl?: string;
|
|
404
|
-
contactInfo?: Array<ItemsEnum2>;
|
|
405
429
|
};
|
|
406
|
-
export type
|
|
430
|
+
export type ReviewResponse = {
|
|
407
431
|
quote?: LangTextResponse;
|
|
408
432
|
name?: LangTextResponse;
|
|
409
433
|
status?: LangTextResponse;
|
|
@@ -412,17 +436,25 @@ export type SegmentResponse = {
|
|
|
412
436
|
title?: LangTextResponse;
|
|
413
437
|
body?: LangTextResponse;
|
|
414
438
|
};
|
|
439
|
+
export type SocialLinkResponse = {
|
|
440
|
+
url: string;
|
|
441
|
+
type: TypeEnum3;
|
|
442
|
+
};
|
|
415
443
|
export type WhitelabelResponse = {
|
|
416
444
|
theme: number;
|
|
417
445
|
name: string;
|
|
446
|
+
logoUrl?: string;
|
|
447
|
+
coverUrl?: string;
|
|
418
448
|
slogan?: SegmentResponse;
|
|
419
449
|
stats: AgencyStatsResponse;
|
|
420
450
|
ourTeam?: SegmentResponse;
|
|
421
451
|
members: Array<MemberResponse>;
|
|
422
452
|
review?: SegmentResponse;
|
|
423
|
-
reviews?: Array<
|
|
453
|
+
reviews?: Array<ReviewResponse>;
|
|
424
454
|
contactUs?: SegmentResponse;
|
|
425
455
|
agencyInfo?: AgencyContactInfoResponse;
|
|
456
|
+
socialLinks?: Array<SocialLinkResponse>;
|
|
457
|
+
website?: string;
|
|
426
458
|
};
|
|
427
459
|
export type MemberViewResponse = {
|
|
428
460
|
userId: string;
|
|
@@ -456,7 +488,9 @@ export type LeadGridResponse = {
|
|
|
456
488
|
id: number;
|
|
457
489
|
createdBy: string;
|
|
458
490
|
assignedTo?: string;
|
|
459
|
-
|
|
491
|
+
assignedToName?: string;
|
|
492
|
+
assignedToPhoto?: string;
|
|
493
|
+
status: SchemaEnum4;
|
|
460
494
|
contactFullName?: string;
|
|
461
495
|
contactGender?: GenderEnum;
|
|
462
496
|
contactPhoneNumber: string;
|
|
@@ -490,6 +524,8 @@ export type ClientGridResponse = {
|
|
|
490
524
|
createdBy: string;
|
|
491
525
|
leadId?: number;
|
|
492
526
|
assignedTo?: string;
|
|
527
|
+
assignedToName?: string;
|
|
528
|
+
assignedToPhoto?: string;
|
|
493
529
|
contactFullName?: string;
|
|
494
530
|
contactPhoneNumber: string;
|
|
495
531
|
contactGender?: GenderEnum;
|
|
@@ -630,11 +666,11 @@ export type AgencyProfileResponse = {
|
|
|
630
666
|
subdomain: string;
|
|
631
667
|
phone: string;
|
|
632
668
|
address: AddressViewResponse;
|
|
633
|
-
establishedYear: number;
|
|
634
669
|
};
|
|
635
670
|
export type SchemaEnum = 'MAYBE' | 'DISLIKE' | 'LIKE' | 'VISIT';
|
|
636
671
|
export type SchemaEnum2 = 'NEW' | 'ACTIVE' | 'PAYMENT_FAILED' | 'INACTIVE';
|
|
637
|
-
export type SchemaEnum3 = '
|
|
672
|
+
export type SchemaEnum3 = 'ka' | 'en' | 'ru';
|
|
673
|
+
export type SchemaEnum4 = 'NEW' | 'ATTEMPTED_CONTACT' | 'CONTACTED' | 'DISQUALIFIED' | 'CONVERTED' | 'LOST';
|
|
638
674
|
export type ItemsEnum = 'AGENCY_WRITE' | 'INVITATION_READ' | 'INVITATION_WRITE' | 'ROLE_READ' | 'ROLE_WRITE' | 'MEMBER_READ' | 'MEMBER_WRITE' | 'LEAD_READ' | 'LEAD_WRITE' | 'LEAD_READ_ALL' | 'LEAD_WRITE_ALL' | 'CLIENT_READ' | 'CLIENT_WRITE' | 'CLIENT_READ_ALL' | 'CLIENT_WRITE_ALL' | 'PROPERTY_READ_ALL';
|
|
639
675
|
export type ClientTypeEnum = 'LISTING' | 'SEEKING';
|
|
640
676
|
export type ListingTypeEnum = 'SALE' | 'RENT' | 'DAILY_RENT' | 'PLEDGE';
|
|
@@ -643,16 +679,15 @@ export type GenderEnum = 'MALE' | 'FEMALE' | 'UNKNOWN';
|
|
|
643
679
|
export type TypeEnum = 'EXCLUSIVE' | 'NON_EXCLUSIVE';
|
|
644
680
|
export type PriorityEnum = 'CRITICAL' | 'HIGH' | 'MEDIUM' | 'LOW';
|
|
645
681
|
export type ItemsEnum2 = 'WHATSAPP' | 'VIBER' | 'PHONE_CALL';
|
|
646
|
-
export type TypeEnum2 = '
|
|
682
|
+
export type TypeEnum2 = 'JPEG' | 'JPG' | 'PNG' | 'WEBP';
|
|
647
683
|
export type OutcomeEnum = 'CONVERTED' | 'LOST' | 'DISQUALIFIED';
|
|
648
684
|
export type PlatformEnum = 'SS' | 'MY_HOME';
|
|
649
685
|
export type TierEnum = 'VIP' | 'VIP_PLUS' | 'SUPER_VIP';
|
|
650
686
|
export type CommissionTypeEnum = 'FIXED_SALE' | 'FIXED_RENT' | 'PERCENTAGE' | 'MONTHS_OF_RENT';
|
|
651
|
-
export type TypeEnum3 = '
|
|
687
|
+
export type TypeEnum3 = 'FACEBOOK' | 'YOUTUBE' | 'INSTAGRAM' | 'TIKTOK' | 'LINKEDIN';
|
|
652
688
|
export type StatusEnum = 'DRAFT' | 'AWAITING_CLIENT_REVIEW' | 'CLOSED';
|
|
653
689
|
export type GroupEnum = 'AGENCY' | 'INVITATION' | 'ROLE' | 'MEMBER' | 'LEAD' | 'CLIENT' | 'PROPERTY';
|
|
654
690
|
export type StatusEnum2 = 'PENDING' | 'ACCEPTED' | 'CANCELLED' | 'EXPIRED';
|
|
655
|
-
export type LanguageEnum = 'ka' | 'en' | 'ru';
|
|
656
691
|
export type SourceTypeEnum = 'MY_HOME' | 'SS' | 'UNKNOWN';
|
|
657
692
|
export type StateEnum = 'IN_REGISTRATION' | 'UNLISTED' | 'LISTED_INTERNALLY' | 'LISTED' | 'CLOSED';
|
|
658
693
|
export type DeleteRolesByRoleIdData = {
|
|
@@ -957,19 +992,84 @@ export type PutAgencyByAgencyIdActivateResponses = {
|
|
|
957
992
|
204: void;
|
|
958
993
|
};
|
|
959
994
|
export type PutAgencyByAgencyIdActivateResponse = PutAgencyByAgencyIdActivateResponses[keyof PutAgencyByAgencyIdActivateResponses];
|
|
960
|
-
export type
|
|
961
|
-
body
|
|
995
|
+
export type PostWhitelabelData = {
|
|
996
|
+
body?: never;
|
|
997
|
+
path?: never;
|
|
998
|
+
query?: never;
|
|
999
|
+
url: '/whitelabel';
|
|
1000
|
+
};
|
|
1001
|
+
export type PostWhitelabelResponses = {
|
|
1002
|
+
/**
|
|
1003
|
+
* No Content
|
|
1004
|
+
*/
|
|
1005
|
+
204: void;
|
|
1006
|
+
};
|
|
1007
|
+
export type PostWhitelabelResponse = PostWhitelabelResponses[keyof PostWhitelabelResponses];
|
|
1008
|
+
export type PostWhitelabelPresignedUrlsData = {
|
|
1009
|
+
body: PhotoRequest;
|
|
1010
|
+
path?: never;
|
|
1011
|
+
query?: never;
|
|
1012
|
+
url: '/whitelabel/presigned-urls';
|
|
1013
|
+
};
|
|
1014
|
+
export type PostWhitelabelPresignedUrlsResponses = {
|
|
1015
|
+
/**
|
|
1016
|
+
* OK
|
|
1017
|
+
*/
|
|
1018
|
+
200: PresignedUrlsResponse;
|
|
1019
|
+
};
|
|
1020
|
+
export type PostWhitelabelPresignedUrlsResponse = PostWhitelabelPresignedUrlsResponses[keyof PostWhitelabelPresignedUrlsResponses];
|
|
1021
|
+
export type PostWhitelabelPresignedUrlsNotifyLogoData = {
|
|
1022
|
+
body: PhotoRequest;
|
|
1023
|
+
path?: never;
|
|
1024
|
+
query?: never;
|
|
1025
|
+
url: '/whitelabel/presigned-urls/notify/logo';
|
|
1026
|
+
};
|
|
1027
|
+
export type PostWhitelabelPresignedUrlsNotifyLogoResponses = {
|
|
1028
|
+
/**
|
|
1029
|
+
* OK
|
|
1030
|
+
*/
|
|
1031
|
+
200: UploadAcknowledgmentResponse;
|
|
1032
|
+
};
|
|
1033
|
+
export type PostWhitelabelPresignedUrlsNotifyLogoResponse = PostWhitelabelPresignedUrlsNotifyLogoResponses[keyof PostWhitelabelPresignedUrlsNotifyLogoResponses];
|
|
1034
|
+
export type PostWhitelabelPresignedUrlsNotifyCoverData = {
|
|
1035
|
+
body: PhotoRequest;
|
|
1036
|
+
path?: never;
|
|
1037
|
+
query?: never;
|
|
1038
|
+
url: '/whitelabel/presigned-urls/notify/cover';
|
|
1039
|
+
};
|
|
1040
|
+
export type PostWhitelabelPresignedUrlsNotifyCoverResponses = {
|
|
1041
|
+
/**
|
|
1042
|
+
* OK
|
|
1043
|
+
*/
|
|
1044
|
+
200: UploadAcknowledgmentResponse;
|
|
1045
|
+
};
|
|
1046
|
+
export type PostWhitelabelPresignedUrlsNotifyCoverResponse = PostWhitelabelPresignedUrlsNotifyCoverResponses[keyof PostWhitelabelPresignedUrlsNotifyCoverResponses];
|
|
1047
|
+
export type PostWhitelabelDeactivateData = {
|
|
1048
|
+
body?: never;
|
|
962
1049
|
path?: never;
|
|
963
1050
|
query?: never;
|
|
964
|
-
url: '/
|
|
1051
|
+
url: '/whitelabel/deactivate';
|
|
965
1052
|
};
|
|
966
|
-
export type
|
|
1053
|
+
export type PostWhitelabelDeactivateResponses = {
|
|
967
1054
|
/**
|
|
968
1055
|
* No Content
|
|
969
1056
|
*/
|
|
970
1057
|
204: void;
|
|
971
1058
|
};
|
|
972
|
-
export type
|
|
1059
|
+
export type PostWhitelabelDeactivateResponse = PostWhitelabelDeactivateResponses[keyof PostWhitelabelDeactivateResponses];
|
|
1060
|
+
export type PostWhitelabelActivateData = {
|
|
1061
|
+
body?: never;
|
|
1062
|
+
path?: never;
|
|
1063
|
+
query?: never;
|
|
1064
|
+
url: '/whitelabel/activate';
|
|
1065
|
+
};
|
|
1066
|
+
export type PostWhitelabelActivateResponses = {
|
|
1067
|
+
/**
|
|
1068
|
+
* No Content
|
|
1069
|
+
*/
|
|
1070
|
+
204: void;
|
|
1071
|
+
};
|
|
1072
|
+
export type PostWhitelabelActivateResponse = PostWhitelabelActivateResponses[keyof PostWhitelabelActivateResponses];
|
|
973
1073
|
export type PostWalletTransferData = {
|
|
974
1074
|
body: TransferFundsRequest;
|
|
975
1075
|
path?: never;
|
|
@@ -1051,6 +1151,32 @@ export type PostPublicRecomendationsByRecommendationsIdItemsByItemIdRateResponse
|
|
|
1051
1151
|
204: void;
|
|
1052
1152
|
};
|
|
1053
1153
|
export type PostPublicRecomendationsByRecommendationsIdItemsByItemIdRateResponse = PostPublicRecomendationsByRecommendationsIdItemsByItemIdRateResponses[keyof PostPublicRecomendationsByRecommendationsIdItemsByItemIdRateResponses];
|
|
1154
|
+
export type PostMemberPresignedUrlsData = {
|
|
1155
|
+
body: PhotoRequest;
|
|
1156
|
+
path?: never;
|
|
1157
|
+
query?: never;
|
|
1158
|
+
url: '/member/presigned-urls';
|
|
1159
|
+
};
|
|
1160
|
+
export type PostMemberPresignedUrlsResponses = {
|
|
1161
|
+
/**
|
|
1162
|
+
* OK
|
|
1163
|
+
*/
|
|
1164
|
+
200: PresignedUrlsResponse;
|
|
1165
|
+
};
|
|
1166
|
+
export type PostMemberPresignedUrlsResponse = PostMemberPresignedUrlsResponses[keyof PostMemberPresignedUrlsResponses];
|
|
1167
|
+
export type PostMemberPresignedUrlsNotifyData = {
|
|
1168
|
+
body: PhotoRequest;
|
|
1169
|
+
path?: never;
|
|
1170
|
+
query?: never;
|
|
1171
|
+
url: '/member/presigned-urls/notify';
|
|
1172
|
+
};
|
|
1173
|
+
export type PostMemberPresignedUrlsNotifyResponses = {
|
|
1174
|
+
/**
|
|
1175
|
+
* OK
|
|
1176
|
+
*/
|
|
1177
|
+
200: UploadAcknowledgmentResponse;
|
|
1178
|
+
};
|
|
1179
|
+
export type PostMemberPresignedUrlsNotifyResponse = PostMemberPresignedUrlsNotifyResponses[keyof PostMemberPresignedUrlsNotifyResponses];
|
|
1054
1180
|
export type PostLeadsData = {
|
|
1055
1181
|
body: CaptureLeadRequest;
|
|
1056
1182
|
path?: never;
|
|
@@ -1446,45 +1572,123 @@ export type PostAgencyResponses = {
|
|
|
1446
1572
|
201: IdResponseUuid;
|
|
1447
1573
|
};
|
|
1448
1574
|
export type PostAgencyResponse = PostAgencyResponses[keyof PostAgencyResponses];
|
|
1449
|
-
export type
|
|
1450
|
-
body:
|
|
1575
|
+
export type PatchWhitelabelWebsiteData = {
|
|
1576
|
+
body: WebsiteRequest;
|
|
1451
1577
|
path?: never;
|
|
1452
1578
|
query?: never;
|
|
1453
|
-
url: '/
|
|
1579
|
+
url: '/whitelabel/website';
|
|
1454
1580
|
};
|
|
1455
|
-
export type
|
|
1581
|
+
export type PatchWhitelabelWebsiteResponses = {
|
|
1456
1582
|
/**
|
|
1457
|
-
*
|
|
1583
|
+
* No Content
|
|
1458
1584
|
*/
|
|
1459
|
-
|
|
1585
|
+
204: void;
|
|
1460
1586
|
};
|
|
1461
|
-
export type
|
|
1462
|
-
export type
|
|
1463
|
-
body:
|
|
1587
|
+
export type PatchWhitelabelWebsiteResponse = PatchWhitelabelWebsiteResponses[keyof PatchWhitelabelWebsiteResponses];
|
|
1588
|
+
export type PatchWhitelabelThemeData = {
|
|
1589
|
+
body: ThemeRequest;
|
|
1464
1590
|
path?: never;
|
|
1465
1591
|
query?: never;
|
|
1466
|
-
url: '/
|
|
1592
|
+
url: '/whitelabel/theme';
|
|
1467
1593
|
};
|
|
1468
|
-
export type
|
|
1594
|
+
export type PatchWhitelabelThemeResponses = {
|
|
1469
1595
|
/**
|
|
1470
|
-
*
|
|
1596
|
+
* No Content
|
|
1471
1597
|
*/
|
|
1472
|
-
|
|
1598
|
+
204: void;
|
|
1473
1599
|
};
|
|
1474
|
-
export type
|
|
1475
|
-
export type
|
|
1476
|
-
body:
|
|
1600
|
+
export type PatchWhitelabelThemeResponse = PatchWhitelabelThemeResponses[keyof PatchWhitelabelThemeResponses];
|
|
1601
|
+
export type PatchWhitelabelSocialLinksData = {
|
|
1602
|
+
body: SocialMediasRequest;
|
|
1477
1603
|
path?: never;
|
|
1478
1604
|
query?: never;
|
|
1479
|
-
url: '/
|
|
1605
|
+
url: '/whitelabel/social-links';
|
|
1480
1606
|
};
|
|
1481
|
-
export type
|
|
1607
|
+
export type PatchWhitelabelSocialLinksResponses = {
|
|
1482
1608
|
/**
|
|
1483
|
-
*
|
|
1609
|
+
* No Content
|
|
1484
1610
|
*/
|
|
1485
|
-
|
|
1611
|
+
204: void;
|
|
1612
|
+
};
|
|
1613
|
+
export type PatchWhitelabelSocialLinksResponse = PatchWhitelabelSocialLinksResponses[keyof PatchWhitelabelSocialLinksResponses];
|
|
1614
|
+
export type PatchWhitelabelSloganData = {
|
|
1615
|
+
body: WhitelabelSectionRequest;
|
|
1616
|
+
path?: never;
|
|
1617
|
+
query?: never;
|
|
1618
|
+
url: '/whitelabel/slogan';
|
|
1619
|
+
};
|
|
1620
|
+
export type PatchWhitelabelSloganResponses = {
|
|
1621
|
+
/**
|
|
1622
|
+
* No Content
|
|
1623
|
+
*/
|
|
1624
|
+
204: void;
|
|
1625
|
+
};
|
|
1626
|
+
export type PatchWhitelabelSloganResponse = PatchWhitelabelSloganResponses[keyof PatchWhitelabelSloganResponses];
|
|
1627
|
+
export type PatchWhitelabelReviewsData = {
|
|
1628
|
+
body: Array<WhitelabelReviewRequest>;
|
|
1629
|
+
path?: never;
|
|
1630
|
+
query?: never;
|
|
1631
|
+
url: '/whitelabel/reviews';
|
|
1632
|
+
};
|
|
1633
|
+
export type PatchWhitelabelReviewsResponses = {
|
|
1634
|
+
/**
|
|
1635
|
+
* No Content
|
|
1636
|
+
*/
|
|
1637
|
+
204: void;
|
|
1638
|
+
};
|
|
1639
|
+
export type PatchWhitelabelReviewsResponse = PatchWhitelabelReviewsResponses[keyof PatchWhitelabelReviewsResponses];
|
|
1640
|
+
export type PatchWhitelabelReviewSectionData = {
|
|
1641
|
+
body: WhitelabelSectionRequest;
|
|
1642
|
+
path?: never;
|
|
1643
|
+
query?: never;
|
|
1644
|
+
url: '/whitelabel/review-section';
|
|
1645
|
+
};
|
|
1646
|
+
export type PatchWhitelabelReviewSectionResponses = {
|
|
1647
|
+
/**
|
|
1648
|
+
* No Content
|
|
1649
|
+
*/
|
|
1650
|
+
204: void;
|
|
1651
|
+
};
|
|
1652
|
+
export type PatchWhitelabelReviewSectionResponse = PatchWhitelabelReviewSectionResponses[keyof PatchWhitelabelReviewSectionResponses];
|
|
1653
|
+
export type PatchWhitelabelOurTeamData = {
|
|
1654
|
+
body: WhitelabelSectionRequest;
|
|
1655
|
+
path?: never;
|
|
1656
|
+
query?: never;
|
|
1657
|
+
url: '/whitelabel/our-team';
|
|
1658
|
+
};
|
|
1659
|
+
export type PatchWhitelabelOurTeamResponses = {
|
|
1660
|
+
/**
|
|
1661
|
+
* No Content
|
|
1662
|
+
*/
|
|
1663
|
+
204: void;
|
|
1664
|
+
};
|
|
1665
|
+
export type PatchWhitelabelOurTeamResponse = PatchWhitelabelOurTeamResponses[keyof PatchWhitelabelOurTeamResponses];
|
|
1666
|
+
export type PatchWhitelabelEstablishedYearData = {
|
|
1667
|
+
body: EstablishedYearRequest;
|
|
1668
|
+
path?: never;
|
|
1669
|
+
query?: never;
|
|
1670
|
+
url: '/whitelabel/established-year';
|
|
1671
|
+
};
|
|
1672
|
+
export type PatchWhitelabelEstablishedYearResponses = {
|
|
1673
|
+
/**
|
|
1674
|
+
* No Content
|
|
1675
|
+
*/
|
|
1676
|
+
204: void;
|
|
1677
|
+
};
|
|
1678
|
+
export type PatchWhitelabelEstablishedYearResponse = PatchWhitelabelEstablishedYearResponses[keyof PatchWhitelabelEstablishedYearResponses];
|
|
1679
|
+
export type PatchWhitelabelContactUsData = {
|
|
1680
|
+
body: WhitelabelSectionRequest;
|
|
1681
|
+
path?: never;
|
|
1682
|
+
query?: never;
|
|
1683
|
+
url: '/whitelabel/contact-us';
|
|
1684
|
+
};
|
|
1685
|
+
export type PatchWhitelabelContactUsResponses = {
|
|
1686
|
+
/**
|
|
1687
|
+
* No Content
|
|
1688
|
+
*/
|
|
1689
|
+
204: void;
|
|
1486
1690
|
};
|
|
1487
|
-
export type
|
|
1691
|
+
export type PatchWhitelabelContactUsResponse = PatchWhitelabelContactUsResponses[keyof PatchWhitelabelContactUsResponses];
|
|
1488
1692
|
export type GetUserMeData = {
|
|
1489
1693
|
body?: never;
|
|
1490
1694
|
path?: never;
|
|
@@ -1599,36 +1803,38 @@ export type GetPublicAgencyResponses = {
|
|
|
1599
1803
|
200: PagedModelAgencySummaryResponse;
|
|
1600
1804
|
};
|
|
1601
1805
|
export type GetPublicAgencyResponse = GetPublicAgencyResponses[keyof GetPublicAgencyResponses];
|
|
1602
|
-
export type
|
|
1806
|
+
export type GetPublicAgencySubdomainBySubdomainLandingData = {
|
|
1603
1807
|
body?: never;
|
|
1604
1808
|
path: {
|
|
1605
|
-
|
|
1809
|
+
subdomain: string;
|
|
1606
1810
|
};
|
|
1607
|
-
query?:
|
|
1608
|
-
|
|
1811
|
+
query?: {
|
|
1812
|
+
language?: SchemaEnum3;
|
|
1813
|
+
};
|
|
1814
|
+
url: '/public/agency/subdomain/{subdomain}/landing';
|
|
1609
1815
|
};
|
|
1610
|
-
export type
|
|
1816
|
+
export type GetPublicAgencySubdomainBySubdomainLandingResponses = {
|
|
1611
1817
|
/**
|
|
1612
1818
|
* OK
|
|
1613
1819
|
*/
|
|
1614
|
-
200:
|
|
1820
|
+
200: WhitelabelResponse;
|
|
1615
1821
|
};
|
|
1616
|
-
export type
|
|
1617
|
-
export type
|
|
1822
|
+
export type GetPublicAgencySubdomainBySubdomainLandingResponse = GetPublicAgencySubdomainBySubdomainLandingResponses[keyof GetPublicAgencySubdomainBySubdomainLandingResponses];
|
|
1823
|
+
export type GetPublicAgencySubdomainBySubDomainData = {
|
|
1618
1824
|
body?: never;
|
|
1619
1825
|
path: {
|
|
1620
|
-
|
|
1826
|
+
subDomain: string;
|
|
1621
1827
|
};
|
|
1622
1828
|
query?: never;
|
|
1623
|
-
url: '/public/agency
|
|
1829
|
+
url: '/public/agency/subdomain/{subDomain}';
|
|
1624
1830
|
};
|
|
1625
|
-
export type
|
|
1831
|
+
export type GetPublicAgencySubdomainBySubDomainResponses = {
|
|
1626
1832
|
/**
|
|
1627
1833
|
* OK
|
|
1628
1834
|
*/
|
|
1629
|
-
200:
|
|
1835
|
+
200: AgencySummaryResponse;
|
|
1630
1836
|
};
|
|
1631
|
-
export type
|
|
1837
|
+
export type GetPublicAgencySubdomainBySubDomainResponse = GetPublicAgencySubdomainBySubDomainResponses[keyof GetPublicAgencySubdomainBySubDomainResponses];
|
|
1632
1838
|
export type GetMemberData = {
|
|
1633
1839
|
body?: never;
|
|
1634
1840
|
path?: never;
|
|
@@ -1660,7 +1866,7 @@ export type GetLeadData = {
|
|
|
1660
1866
|
body?: never;
|
|
1661
1867
|
path?: never;
|
|
1662
1868
|
query?: {
|
|
1663
|
-
status?:
|
|
1869
|
+
status?: SchemaEnum4;
|
|
1664
1870
|
isSearching?: boolean;
|
|
1665
1871
|
isListing?: boolean;
|
|
1666
1872
|
/**
|
|
@@ -1704,7 +1910,7 @@ export type GetLeadMineData = {
|
|
|
1704
1910
|
body?: never;
|
|
1705
1911
|
path?: never;
|
|
1706
1912
|
query?: {
|
|
1707
|
-
status?:
|
|
1913
|
+
status?: SchemaEnum4;
|
|
1708
1914
|
isSearching?: boolean;
|
|
1709
1915
|
isListing?: boolean;
|
|
1710
1916
|
/**
|