@homespot-sdk/core 0.0.215 → 0.0.217

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