@sweepbright/api-client 0.31.3 → 0.31.5

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.
@@ -72,6 +72,7 @@ export declare const settingsDataSchema: z.ZodObject<{
72
72
  google_analytics_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
73
73
  homepage_cover: z.ZodString;
74
74
  homepage_cover_image: z.ZodString;
75
+ homepage_cover_image_file_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
75
76
  homepage_cover_video: z.ZodString;
76
77
  homepage_highlights: z.ZodArray<z.ZodAny, "many">;
77
78
  homepage_properties: z.ZodString;
@@ -246,6 +247,7 @@ export declare const settingsDataSchema: z.ZodObject<{
246
247
  enable_zumper?: string | null | undefined;
247
248
  facebook_pixel_id?: string | null | undefined;
248
249
  google_analytics_id?: string | null | undefined;
250
+ homepage_cover_image_file_id?: string | null | undefined;
249
251
  immovlan_customer_id?: string | null | undefined;
250
252
  livechat_app_id?: string | null | undefined;
251
253
  logic_immo_agency_id?: string | null | undefined;
@@ -370,6 +372,7 @@ export declare const settingsDataSchema: z.ZodObject<{
370
372
  enable_zumper?: string | null | undefined;
371
373
  facebook_pixel_id?: string | null | undefined;
372
374
  google_analytics_id?: string | null | undefined;
375
+ homepage_cover_image_file_id?: string | null | undefined;
373
376
  immovlan_customer_id?: string | null | undefined;
374
377
  livechat_app_id?: string | null | undefined;
375
378
  logic_immo_agency_id?: string | null | undefined;
@@ -496,6 +499,7 @@ export declare const settingsDataSchema: z.ZodObject<{
496
499
  enable_zumper?: string | null | undefined;
497
500
  facebook_pixel_id?: string | null | undefined;
498
501
  google_analytics_id?: string | null | undefined;
502
+ homepage_cover_image_file_id?: string | null | undefined;
499
503
  immovlan_customer_id?: string | null | undefined;
500
504
  livechat_app_id?: string | null | undefined;
501
505
  logic_immo_agency_id?: string | null | undefined;
@@ -622,6 +626,7 @@ export declare const settingsDataSchema: z.ZodObject<{
622
626
  enable_zumper?: string | null | undefined;
623
627
  facebook_pixel_id?: string | null | undefined;
624
628
  google_analytics_id?: string | null | undefined;
629
+ homepage_cover_image_file_id?: string | null | undefined;
625
630
  immovlan_customer_id?: string | null | undefined;
626
631
  livechat_app_id?: string | null | undefined;
627
632
  logic_immo_agency_id?: string | null | undefined;
@@ -634,18 +639,99 @@ export declare const officeSettingsSchema: z.ZodObject<{
634
639
  currency: z.ZodNativeEnum<typeof import("../common/currencies").Currency>;
635
640
  country: z.ZodString;
636
641
  visit_duration: z.ZodNumber;
642
+ use_bright_matching: z.ZodBoolean;
643
+ default_assignee: z.ZodObject<{
644
+ id: z.ZodNumber;
645
+ first_name: z.ZodString;
646
+ last_name: z.ZodString;
647
+ full_name: z.ZodString;
648
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
649
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
650
+ role_id: z.ZodString;
651
+ intercom_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
652
+ launchdarkly_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
653
+ created_at: z.ZodString;
654
+ updated_at: z.ZodString;
655
+ appointment_service_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
656
+ locale: z.ZodString;
657
+ office_id: z.ZodString;
658
+ }, "strip", z.ZodTypeAny, {
659
+ id: number;
660
+ first_name: string;
661
+ last_name: string;
662
+ full_name: string;
663
+ role_id: string;
664
+ created_at: string;
665
+ updated_at: string;
666
+ locale: string;
667
+ office_id: string;
668
+ email?: string | null | undefined;
669
+ phone?: string | null | undefined;
670
+ intercom_hash?: string | null | undefined;
671
+ launchdarkly_hash?: string | null | undefined;
672
+ appointment_service_url?: string | null | undefined;
673
+ }, {
674
+ id: number;
675
+ first_name: string;
676
+ last_name: string;
677
+ full_name: string;
678
+ role_id: string;
679
+ created_at: string;
680
+ updated_at: string;
681
+ locale: string;
682
+ office_id: string;
683
+ email?: string | null | undefined;
684
+ phone?: string | null | undefined;
685
+ intercom_hash?: string | null | undefined;
686
+ launchdarkly_hash?: string | null | undefined;
687
+ appointment_service_url?: string | null | undefined;
688
+ }>;
637
689
  }, "strip", z.ZodTypeAny, {
638
690
  measurement_system: MeasurementSystem;
639
691
  numeral_system: string;
640
692
  currency: import("../common/currencies").Currency;
641
693
  country: string;
642
694
  visit_duration: number;
695
+ use_bright_matching: boolean;
696
+ default_assignee: {
697
+ id: number;
698
+ first_name: string;
699
+ last_name: string;
700
+ full_name: string;
701
+ role_id: string;
702
+ created_at: string;
703
+ updated_at: string;
704
+ locale: string;
705
+ office_id: string;
706
+ email?: string | null | undefined;
707
+ phone?: string | null | undefined;
708
+ intercom_hash?: string | null | undefined;
709
+ launchdarkly_hash?: string | null | undefined;
710
+ appointment_service_url?: string | null | undefined;
711
+ };
643
712
  }, {
644
713
  measurement_system: MeasurementSystem;
645
714
  numeral_system: string;
646
715
  currency: import("../common/currencies").Currency;
647
716
  country: string;
648
717
  visit_duration: number;
718
+ use_bright_matching: boolean;
719
+ default_assignee: {
720
+ id: number;
721
+ first_name: string;
722
+ last_name: string;
723
+ full_name: string;
724
+ role_id: string;
725
+ created_at: string;
726
+ updated_at: string;
727
+ locale: string;
728
+ office_id: string;
729
+ email?: string | null | undefined;
730
+ phone?: string | null | undefined;
731
+ intercom_hash?: string | null | undefined;
732
+ launchdarkly_hash?: string | null | undefined;
733
+ appointment_service_url?: string | null | undefined;
734
+ };
649
735
  }>;
650
736
  export declare const officeSettingsDataSchema: z.ZodObject<{
651
737
  data: z.ZodObject<{
@@ -654,18 +740,99 @@ export declare const officeSettingsDataSchema: z.ZodObject<{
654
740
  currency: z.ZodNativeEnum<typeof import("../common/currencies").Currency>;
655
741
  country: z.ZodString;
656
742
  visit_duration: z.ZodNumber;
743
+ use_bright_matching: z.ZodBoolean;
744
+ default_assignee: z.ZodObject<{
745
+ id: z.ZodNumber;
746
+ first_name: z.ZodString;
747
+ last_name: z.ZodString;
748
+ full_name: z.ZodString;
749
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
751
+ role_id: z.ZodString;
752
+ intercom_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
753
+ launchdarkly_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
754
+ created_at: z.ZodString;
755
+ updated_at: z.ZodString;
756
+ appointment_service_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
757
+ locale: z.ZodString;
758
+ office_id: z.ZodString;
759
+ }, "strip", z.ZodTypeAny, {
760
+ id: number;
761
+ first_name: string;
762
+ last_name: string;
763
+ full_name: string;
764
+ role_id: string;
765
+ created_at: string;
766
+ updated_at: string;
767
+ locale: string;
768
+ office_id: string;
769
+ email?: string | null | undefined;
770
+ phone?: string | null | undefined;
771
+ intercom_hash?: string | null | undefined;
772
+ launchdarkly_hash?: string | null | undefined;
773
+ appointment_service_url?: string | null | undefined;
774
+ }, {
775
+ id: number;
776
+ first_name: string;
777
+ last_name: string;
778
+ full_name: string;
779
+ role_id: string;
780
+ created_at: string;
781
+ updated_at: string;
782
+ locale: string;
783
+ office_id: string;
784
+ email?: string | null | undefined;
785
+ phone?: string | null | undefined;
786
+ intercom_hash?: string | null | undefined;
787
+ launchdarkly_hash?: string | null | undefined;
788
+ appointment_service_url?: string | null | undefined;
789
+ }>;
657
790
  }, "strip", z.ZodTypeAny, {
658
791
  measurement_system: MeasurementSystem;
659
792
  numeral_system: string;
660
793
  currency: import("../common/currencies").Currency;
661
794
  country: string;
662
795
  visit_duration: number;
796
+ use_bright_matching: boolean;
797
+ default_assignee: {
798
+ id: number;
799
+ first_name: string;
800
+ last_name: string;
801
+ full_name: string;
802
+ role_id: string;
803
+ created_at: string;
804
+ updated_at: string;
805
+ locale: string;
806
+ office_id: string;
807
+ email?: string | null | undefined;
808
+ phone?: string | null | undefined;
809
+ intercom_hash?: string | null | undefined;
810
+ launchdarkly_hash?: string | null | undefined;
811
+ appointment_service_url?: string | null | undefined;
812
+ };
663
813
  }, {
664
814
  measurement_system: MeasurementSystem;
665
815
  numeral_system: string;
666
816
  currency: import("../common/currencies").Currency;
667
817
  country: string;
668
818
  visit_duration: number;
819
+ use_bright_matching: boolean;
820
+ default_assignee: {
821
+ id: number;
822
+ first_name: string;
823
+ last_name: string;
824
+ full_name: string;
825
+ role_id: string;
826
+ created_at: string;
827
+ updated_at: string;
828
+ locale: string;
829
+ office_id: string;
830
+ email?: string | null | undefined;
831
+ phone?: string | null | undefined;
832
+ intercom_hash?: string | null | undefined;
833
+ launchdarkly_hash?: string | null | undefined;
834
+ appointment_service_url?: string | null | undefined;
835
+ };
669
836
  }>;
670
837
  }, "strip", z.ZodTypeAny, {
671
838
  data: {
@@ -674,6 +841,23 @@ export declare const officeSettingsDataSchema: z.ZodObject<{
674
841
  currency: import("../common/currencies").Currency;
675
842
  country: string;
676
843
  visit_duration: number;
844
+ use_bright_matching: boolean;
845
+ default_assignee: {
846
+ id: number;
847
+ first_name: string;
848
+ last_name: string;
849
+ full_name: string;
850
+ role_id: string;
851
+ created_at: string;
852
+ updated_at: string;
853
+ locale: string;
854
+ office_id: string;
855
+ email?: string | null | undefined;
856
+ phone?: string | null | undefined;
857
+ intercom_hash?: string | null | undefined;
858
+ launchdarkly_hash?: string | null | undefined;
859
+ appointment_service_url?: string | null | undefined;
860
+ };
677
861
  };
678
862
  }, {
679
863
  data: {
@@ -682,6 +866,23 @@ export declare const officeSettingsDataSchema: z.ZodObject<{
682
866
  currency: import("../common/currencies").Currency;
683
867
  country: string;
684
868
  visit_duration: number;
869
+ use_bright_matching: boolean;
870
+ default_assignee: {
871
+ id: number;
872
+ first_name: string;
873
+ last_name: string;
874
+ full_name: string;
875
+ role_id: string;
876
+ created_at: string;
877
+ updated_at: string;
878
+ locale: string;
879
+ office_id: string;
880
+ email?: string | null | undefined;
881
+ phone?: string | null | undefined;
882
+ intercom_hash?: string | null | undefined;
883
+ launchdarkly_hash?: string | null | undefined;
884
+ appointment_service_url?: string | null | undefined;
885
+ };
685
886
  };
686
887
  }>;
687
888
  export declare const planSchema: z.ZodObject<{
@@ -732,6 +933,46 @@ export declare const planDataSchema: z.ZodObject<{
732
933
  interval: string;
733
934
  };
734
935
  }>;
936
+ export declare const photoSchema: z.ZodObject<{
937
+ uploaded_at: z.ZodString;
938
+ photo_file_id: z.ZodString;
939
+ url: z.ZodString;
940
+ }, "strip", z.ZodTypeAny, {
941
+ url: string;
942
+ uploaded_at: string;
943
+ photo_file_id: string;
944
+ }, {
945
+ url: string;
946
+ uploaded_at: string;
947
+ photo_file_id: string;
948
+ }>;
949
+ export declare const photoDataSchema: z.ZodObject<{
950
+ data: z.ZodObject<{
951
+ uploaded_at: z.ZodString;
952
+ photo_file_id: z.ZodString;
953
+ url: z.ZodString;
954
+ }, "strip", z.ZodTypeAny, {
955
+ url: string;
956
+ uploaded_at: string;
957
+ photo_file_id: string;
958
+ }, {
959
+ url: string;
960
+ uploaded_at: string;
961
+ photo_file_id: string;
962
+ }>;
963
+ }, "strip", z.ZodTypeAny, {
964
+ data: {
965
+ url: string;
966
+ uploaded_at: string;
967
+ photo_file_id: string;
968
+ };
969
+ }, {
970
+ data: {
971
+ url: string;
972
+ uploaded_at: string;
973
+ photo_file_id: string;
974
+ };
975
+ }>;
735
976
  export declare const companySchema: z.ZodObject<{
736
977
  id: z.ZodString;
737
978
  name: z.ZodString;
@@ -777,6 +1018,33 @@ export declare const companySchema: z.ZodObject<{
777
1018
  interval: string;
778
1019
  };
779
1020
  }>;
1021
+ photo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1022
+ data: z.ZodObject<{
1023
+ uploaded_at: z.ZodString;
1024
+ photo_file_id: z.ZodString;
1025
+ url: z.ZodString;
1026
+ }, "strip", z.ZodTypeAny, {
1027
+ url: string;
1028
+ uploaded_at: string;
1029
+ photo_file_id: string;
1030
+ }, {
1031
+ url: string;
1032
+ uploaded_at: string;
1033
+ photo_file_id: string;
1034
+ }>;
1035
+ }, "strip", z.ZodTypeAny, {
1036
+ data: {
1037
+ url: string;
1038
+ uploaded_at: string;
1039
+ photo_file_id: string;
1040
+ };
1041
+ }, {
1042
+ data: {
1043
+ url: string;
1044
+ uploaded_at: string;
1045
+ photo_file_id: string;
1046
+ };
1047
+ }>>>;
780
1048
  settings: z.ZodObject<{
781
1049
  data: z.ZodObject<{
782
1050
  about_en: z.ZodString;
@@ -848,6 +1116,7 @@ export declare const companySchema: z.ZodObject<{
848
1116
  google_analytics_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
849
1117
  homepage_cover: z.ZodString;
850
1118
  homepage_cover_image: z.ZodString;
1119
+ homepage_cover_image_file_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
851
1120
  homepage_cover_video: z.ZodString;
852
1121
  homepage_highlights: z.ZodArray<z.ZodAny, "many">;
853
1122
  homepage_properties: z.ZodString;
@@ -1022,6 +1291,7 @@ export declare const companySchema: z.ZodObject<{
1022
1291
  enable_zumper?: string | null | undefined;
1023
1292
  facebook_pixel_id?: string | null | undefined;
1024
1293
  google_analytics_id?: string | null | undefined;
1294
+ homepage_cover_image_file_id?: string | null | undefined;
1025
1295
  immovlan_customer_id?: string | null | undefined;
1026
1296
  livechat_app_id?: string | null | undefined;
1027
1297
  logic_immo_agency_id?: string | null | undefined;
@@ -1146,6 +1416,7 @@ export declare const companySchema: z.ZodObject<{
1146
1416
  enable_zumper?: string | null | undefined;
1147
1417
  facebook_pixel_id?: string | null | undefined;
1148
1418
  google_analytics_id?: string | null | undefined;
1419
+ homepage_cover_image_file_id?: string | null | undefined;
1149
1420
  immovlan_customer_id?: string | null | undefined;
1150
1421
  livechat_app_id?: string | null | undefined;
1151
1422
  logic_immo_agency_id?: string | null | undefined;
@@ -1272,6 +1543,7 @@ export declare const companySchema: z.ZodObject<{
1272
1543
  enable_zumper?: string | null | undefined;
1273
1544
  facebook_pixel_id?: string | null | undefined;
1274
1545
  google_analytics_id?: string | null | undefined;
1546
+ homepage_cover_image_file_id?: string | null | undefined;
1275
1547
  immovlan_customer_id?: string | null | undefined;
1276
1548
  livechat_app_id?: string | null | undefined;
1277
1549
  logic_immo_agency_id?: string | null | undefined;
@@ -1398,6 +1670,7 @@ export declare const companySchema: z.ZodObject<{
1398
1670
  enable_zumper?: string | null | undefined;
1399
1671
  facebook_pixel_id?: string | null | undefined;
1400
1672
  google_analytics_id?: string | null | undefined;
1673
+ homepage_cover_image_file_id?: string | null | undefined;
1401
1674
  immovlan_customer_id?: string | null | undefined;
1402
1675
  livechat_app_id?: string | null | undefined;
1403
1676
  logic_immo_agency_id?: string | null | undefined;
@@ -1526,6 +1799,7 @@ export declare const companySchema: z.ZodObject<{
1526
1799
  enable_zumper?: string | null | undefined;
1527
1800
  facebook_pixel_id?: string | null | undefined;
1528
1801
  google_analytics_id?: string | null | undefined;
1802
+ homepage_cover_image_file_id?: string | null | undefined;
1529
1803
  immovlan_customer_id?: string | null | undefined;
1530
1804
  livechat_app_id?: string | null | undefined;
1531
1805
  logic_immo_agency_id?: string | null | undefined;
@@ -1534,13 +1808,13 @@ export declare const companySchema: z.ZodObject<{
1534
1808
  };
1535
1809
  intercom_app_id: string;
1536
1810
  id: string;
1537
- name: string;
1811
+ created_at: string;
1538
1812
  locale: string;
1813
+ name: string;
1539
1814
  member_count: number;
1540
1815
  member_allowed: number;
1541
1816
  contacts_count: number;
1542
1817
  channels_count: number;
1543
- created_at: string;
1544
1818
  plan: {
1545
1819
  data: {
1546
1820
  id: string;
@@ -1552,6 +1826,13 @@ export declare const companySchema: z.ZodObject<{
1552
1826
  referrer?: {} | null | undefined;
1553
1827
  disabled_at?: string | null | undefined;
1554
1828
  updated_at?: string | null | undefined;
1829
+ photo?: {
1830
+ data: {
1831
+ url: string;
1832
+ uploaded_at: string;
1833
+ photo_file_id: string;
1834
+ };
1835
+ } | null | undefined;
1555
1836
  }, {
1556
1837
  settings: {
1557
1838
  data: {
@@ -1674,6 +1955,7 @@ export declare const companySchema: z.ZodObject<{
1674
1955
  enable_zumper?: string | null | undefined;
1675
1956
  facebook_pixel_id?: string | null | undefined;
1676
1957
  google_analytics_id?: string | null | undefined;
1958
+ homepage_cover_image_file_id?: string | null | undefined;
1677
1959
  immovlan_customer_id?: string | null | undefined;
1678
1960
  livechat_app_id?: string | null | undefined;
1679
1961
  logic_immo_agency_id?: string | null | undefined;
@@ -1682,13 +1964,13 @@ export declare const companySchema: z.ZodObject<{
1682
1964
  };
1683
1965
  intercom_app_id: string;
1684
1966
  id: string;
1685
- name: string;
1967
+ created_at: string;
1686
1968
  locale: string;
1969
+ name: string;
1687
1970
  member_count: number;
1688
1971
  member_allowed: number;
1689
1972
  contacts_count: number;
1690
1973
  channels_count: number;
1691
- created_at: string;
1692
1974
  plan: {
1693
1975
  data: {
1694
1976
  id: string;
@@ -1700,6 +1982,13 @@ export declare const companySchema: z.ZodObject<{
1700
1982
  referrer?: {} | null | undefined;
1701
1983
  disabled_at?: string | null | undefined;
1702
1984
  updated_at?: string | null | undefined;
1985
+ photo?: {
1986
+ data: {
1987
+ url: string;
1988
+ uploaded_at: string;
1989
+ photo_file_id: string;
1990
+ };
1991
+ } | null | undefined;
1703
1992
  }>;
1704
1993
  export declare const companyDataSchema: z.ZodObject<{
1705
1994
  data: z.ZodObject<{
@@ -1747,6 +2036,33 @@ export declare const companyDataSchema: z.ZodObject<{
1747
2036
  interval: string;
1748
2037
  };
1749
2038
  }>;
2039
+ photo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2040
+ data: z.ZodObject<{
2041
+ uploaded_at: z.ZodString;
2042
+ photo_file_id: z.ZodString;
2043
+ url: z.ZodString;
2044
+ }, "strip", z.ZodTypeAny, {
2045
+ url: string;
2046
+ uploaded_at: string;
2047
+ photo_file_id: string;
2048
+ }, {
2049
+ url: string;
2050
+ uploaded_at: string;
2051
+ photo_file_id: string;
2052
+ }>;
2053
+ }, "strip", z.ZodTypeAny, {
2054
+ data: {
2055
+ url: string;
2056
+ uploaded_at: string;
2057
+ photo_file_id: string;
2058
+ };
2059
+ }, {
2060
+ data: {
2061
+ url: string;
2062
+ uploaded_at: string;
2063
+ photo_file_id: string;
2064
+ };
2065
+ }>>>;
1750
2066
  settings: z.ZodObject<{
1751
2067
  data: z.ZodObject<{
1752
2068
  about_en: z.ZodString;
@@ -1818,6 +2134,7 @@ export declare const companyDataSchema: z.ZodObject<{
1818
2134
  google_analytics_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1819
2135
  homepage_cover: z.ZodString;
1820
2136
  homepage_cover_image: z.ZodString;
2137
+ homepage_cover_image_file_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1821
2138
  homepage_cover_video: z.ZodString;
1822
2139
  homepage_highlights: z.ZodArray<z.ZodAny, "many">;
1823
2140
  homepage_properties: z.ZodString;
@@ -1992,6 +2309,7 @@ export declare const companyDataSchema: z.ZodObject<{
1992
2309
  enable_zumper?: string | null | undefined;
1993
2310
  facebook_pixel_id?: string | null | undefined;
1994
2311
  google_analytics_id?: string | null | undefined;
2312
+ homepage_cover_image_file_id?: string | null | undefined;
1995
2313
  immovlan_customer_id?: string | null | undefined;
1996
2314
  livechat_app_id?: string | null | undefined;
1997
2315
  logic_immo_agency_id?: string | null | undefined;
@@ -2116,6 +2434,7 @@ export declare const companyDataSchema: z.ZodObject<{
2116
2434
  enable_zumper?: string | null | undefined;
2117
2435
  facebook_pixel_id?: string | null | undefined;
2118
2436
  google_analytics_id?: string | null | undefined;
2437
+ homepage_cover_image_file_id?: string | null | undefined;
2119
2438
  immovlan_customer_id?: string | null | undefined;
2120
2439
  livechat_app_id?: string | null | undefined;
2121
2440
  logic_immo_agency_id?: string | null | undefined;
@@ -2242,6 +2561,7 @@ export declare const companyDataSchema: z.ZodObject<{
2242
2561
  enable_zumper?: string | null | undefined;
2243
2562
  facebook_pixel_id?: string | null | undefined;
2244
2563
  google_analytics_id?: string | null | undefined;
2564
+ homepage_cover_image_file_id?: string | null | undefined;
2245
2565
  immovlan_customer_id?: string | null | undefined;
2246
2566
  livechat_app_id?: string | null | undefined;
2247
2567
  logic_immo_agency_id?: string | null | undefined;
@@ -2368,6 +2688,7 @@ export declare const companyDataSchema: z.ZodObject<{
2368
2688
  enable_zumper?: string | null | undefined;
2369
2689
  facebook_pixel_id?: string | null | undefined;
2370
2690
  google_analytics_id?: string | null | undefined;
2691
+ homepage_cover_image_file_id?: string | null | undefined;
2371
2692
  immovlan_customer_id?: string | null | undefined;
2372
2693
  livechat_app_id?: string | null | undefined;
2373
2694
  logic_immo_agency_id?: string | null | undefined;
@@ -2496,6 +2817,7 @@ export declare const companyDataSchema: z.ZodObject<{
2496
2817
  enable_zumper?: string | null | undefined;
2497
2818
  facebook_pixel_id?: string | null | undefined;
2498
2819
  google_analytics_id?: string | null | undefined;
2820
+ homepage_cover_image_file_id?: string | null | undefined;
2499
2821
  immovlan_customer_id?: string | null | undefined;
2500
2822
  livechat_app_id?: string | null | undefined;
2501
2823
  logic_immo_agency_id?: string | null | undefined;
@@ -2504,13 +2826,13 @@ export declare const companyDataSchema: z.ZodObject<{
2504
2826
  };
2505
2827
  intercom_app_id: string;
2506
2828
  id: string;
2507
- name: string;
2829
+ created_at: string;
2508
2830
  locale: string;
2831
+ name: string;
2509
2832
  member_count: number;
2510
2833
  member_allowed: number;
2511
2834
  contacts_count: number;
2512
2835
  channels_count: number;
2513
- created_at: string;
2514
2836
  plan: {
2515
2837
  data: {
2516
2838
  id: string;
@@ -2522,6 +2844,13 @@ export declare const companyDataSchema: z.ZodObject<{
2522
2844
  referrer?: {} | null | undefined;
2523
2845
  disabled_at?: string | null | undefined;
2524
2846
  updated_at?: string | null | undefined;
2847
+ photo?: {
2848
+ data: {
2849
+ url: string;
2850
+ uploaded_at: string;
2851
+ photo_file_id: string;
2852
+ };
2853
+ } | null | undefined;
2525
2854
  }, {
2526
2855
  settings: {
2527
2856
  data: {
@@ -2644,6 +2973,7 @@ export declare const companyDataSchema: z.ZodObject<{
2644
2973
  enable_zumper?: string | null | undefined;
2645
2974
  facebook_pixel_id?: string | null | undefined;
2646
2975
  google_analytics_id?: string | null | undefined;
2976
+ homepage_cover_image_file_id?: string | null | undefined;
2647
2977
  immovlan_customer_id?: string | null | undefined;
2648
2978
  livechat_app_id?: string | null | undefined;
2649
2979
  logic_immo_agency_id?: string | null | undefined;
@@ -2652,13 +2982,13 @@ export declare const companyDataSchema: z.ZodObject<{
2652
2982
  };
2653
2983
  intercom_app_id: string;
2654
2984
  id: string;
2655
- name: string;
2985
+ created_at: string;
2656
2986
  locale: string;
2987
+ name: string;
2657
2988
  member_count: number;
2658
2989
  member_allowed: number;
2659
2990
  contacts_count: number;
2660
2991
  channels_count: number;
2661
- created_at: string;
2662
2992
  plan: {
2663
2993
  data: {
2664
2994
  id: string;
@@ -2670,6 +3000,13 @@ export declare const companyDataSchema: z.ZodObject<{
2670
3000
  referrer?: {} | null | undefined;
2671
3001
  disabled_at?: string | null | undefined;
2672
3002
  updated_at?: string | null | undefined;
3003
+ photo?: {
3004
+ data: {
3005
+ url: string;
3006
+ uploaded_at: string;
3007
+ photo_file_id: string;
3008
+ };
3009
+ } | null | undefined;
2673
3010
  }>;
2674
3011
  }, "strip", z.ZodTypeAny, {
2675
3012
  data: {
@@ -2794,6 +3131,7 @@ export declare const companyDataSchema: z.ZodObject<{
2794
3131
  enable_zumper?: string | null | undefined;
2795
3132
  facebook_pixel_id?: string | null | undefined;
2796
3133
  google_analytics_id?: string | null | undefined;
3134
+ homepage_cover_image_file_id?: string | null | undefined;
2797
3135
  immovlan_customer_id?: string | null | undefined;
2798
3136
  livechat_app_id?: string | null | undefined;
2799
3137
  logic_immo_agency_id?: string | null | undefined;
@@ -2802,13 +3140,13 @@ export declare const companyDataSchema: z.ZodObject<{
2802
3140
  };
2803
3141
  intercom_app_id: string;
2804
3142
  id: string;
2805
- name: string;
3143
+ created_at: string;
2806
3144
  locale: string;
3145
+ name: string;
2807
3146
  member_count: number;
2808
3147
  member_allowed: number;
2809
3148
  contacts_count: number;
2810
3149
  channels_count: number;
2811
- created_at: string;
2812
3150
  plan: {
2813
3151
  data: {
2814
3152
  id: string;
@@ -2820,6 +3158,13 @@ export declare const companyDataSchema: z.ZodObject<{
2820
3158
  referrer?: {} | null | undefined;
2821
3159
  disabled_at?: string | null | undefined;
2822
3160
  updated_at?: string | null | undefined;
3161
+ photo?: {
3162
+ data: {
3163
+ url: string;
3164
+ uploaded_at: string;
3165
+ photo_file_id: string;
3166
+ };
3167
+ } | null | undefined;
2823
3168
  };
2824
3169
  }, {
2825
3170
  data: {
@@ -2944,6 +3289,7 @@ export declare const companyDataSchema: z.ZodObject<{
2944
3289
  enable_zumper?: string | null | undefined;
2945
3290
  facebook_pixel_id?: string | null | undefined;
2946
3291
  google_analytics_id?: string | null | undefined;
3292
+ homepage_cover_image_file_id?: string | null | undefined;
2947
3293
  immovlan_customer_id?: string | null | undefined;
2948
3294
  livechat_app_id?: string | null | undefined;
2949
3295
  logic_immo_agency_id?: string | null | undefined;
@@ -2952,13 +3298,13 @@ export declare const companyDataSchema: z.ZodObject<{
2952
3298
  };
2953
3299
  intercom_app_id: string;
2954
3300
  id: string;
2955
- name: string;
3301
+ created_at: string;
2956
3302
  locale: string;
3303
+ name: string;
2957
3304
  member_count: number;
2958
3305
  member_allowed: number;
2959
3306
  contacts_count: number;
2960
3307
  channels_count: number;
2961
- created_at: string;
2962
3308
  plan: {
2963
3309
  data: {
2964
3310
  id: string;
@@ -2970,6 +3316,13 @@ export declare const companyDataSchema: z.ZodObject<{
2970
3316
  referrer?: {} | null | undefined;
2971
3317
  disabled_at?: string | null | undefined;
2972
3318
  updated_at?: string | null | undefined;
3319
+ photo?: {
3320
+ data: {
3321
+ url: string;
3322
+ uploaded_at: string;
3323
+ photo_file_id: string;
3324
+ };
3325
+ } | null | undefined;
2973
3326
  };
2974
3327
  }>;
2975
3328
  export declare const officeSchema: z.ZodObject<{
@@ -3023,6 +3376,33 @@ export declare const officeSchema: z.ZodObject<{
3023
3376
  interval: string;
3024
3377
  };
3025
3378
  }>;
3379
+ photo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3380
+ data: z.ZodObject<{
3381
+ uploaded_at: z.ZodString;
3382
+ photo_file_id: z.ZodString;
3383
+ url: z.ZodString;
3384
+ }, "strip", z.ZodTypeAny, {
3385
+ url: string;
3386
+ uploaded_at: string;
3387
+ photo_file_id: string;
3388
+ }, {
3389
+ url: string;
3390
+ uploaded_at: string;
3391
+ photo_file_id: string;
3392
+ }>;
3393
+ }, "strip", z.ZodTypeAny, {
3394
+ data: {
3395
+ url: string;
3396
+ uploaded_at: string;
3397
+ photo_file_id: string;
3398
+ };
3399
+ }, {
3400
+ data: {
3401
+ url: string;
3402
+ uploaded_at: string;
3403
+ photo_file_id: string;
3404
+ };
3405
+ }>>>;
3026
3406
  settings: z.ZodObject<{
3027
3407
  data: z.ZodObject<{
3028
3408
  about_en: z.ZodString;
@@ -3094,6 +3474,7 @@ export declare const officeSchema: z.ZodObject<{
3094
3474
  google_analytics_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3095
3475
  homepage_cover: z.ZodString;
3096
3476
  homepage_cover_image: z.ZodString;
3477
+ homepage_cover_image_file_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3097
3478
  homepage_cover_video: z.ZodString;
3098
3479
  homepage_highlights: z.ZodArray<z.ZodAny, "many">;
3099
3480
  homepage_properties: z.ZodString;
@@ -3268,6 +3649,7 @@ export declare const officeSchema: z.ZodObject<{
3268
3649
  enable_zumper?: string | null | undefined;
3269
3650
  facebook_pixel_id?: string | null | undefined;
3270
3651
  google_analytics_id?: string | null | undefined;
3652
+ homepage_cover_image_file_id?: string | null | undefined;
3271
3653
  immovlan_customer_id?: string | null | undefined;
3272
3654
  livechat_app_id?: string | null | undefined;
3273
3655
  logic_immo_agency_id?: string | null | undefined;
@@ -3392,6 +3774,7 @@ export declare const officeSchema: z.ZodObject<{
3392
3774
  enable_zumper?: string | null | undefined;
3393
3775
  facebook_pixel_id?: string | null | undefined;
3394
3776
  google_analytics_id?: string | null | undefined;
3777
+ homepage_cover_image_file_id?: string | null | undefined;
3395
3778
  immovlan_customer_id?: string | null | undefined;
3396
3779
  livechat_app_id?: string | null | undefined;
3397
3780
  logic_immo_agency_id?: string | null | undefined;
@@ -3518,6 +3901,7 @@ export declare const officeSchema: z.ZodObject<{
3518
3901
  enable_zumper?: string | null | undefined;
3519
3902
  facebook_pixel_id?: string | null | undefined;
3520
3903
  google_analytics_id?: string | null | undefined;
3904
+ homepage_cover_image_file_id?: string | null | undefined;
3521
3905
  immovlan_customer_id?: string | null | undefined;
3522
3906
  livechat_app_id?: string | null | undefined;
3523
3907
  logic_immo_agency_id?: string | null | undefined;
@@ -3644,6 +4028,7 @@ export declare const officeSchema: z.ZodObject<{
3644
4028
  enable_zumper?: string | null | undefined;
3645
4029
  facebook_pixel_id?: string | null | undefined;
3646
4030
  google_analytics_id?: string | null | undefined;
4031
+ homepage_cover_image_file_id?: string | null | undefined;
3647
4032
  immovlan_customer_id?: string | null | undefined;
3648
4033
  livechat_app_id?: string | null | undefined;
3649
4034
  logic_immo_agency_id?: string | null | undefined;
@@ -3772,6 +4157,7 @@ export declare const officeSchema: z.ZodObject<{
3772
4157
  enable_zumper?: string | null | undefined;
3773
4158
  facebook_pixel_id?: string | null | undefined;
3774
4159
  google_analytics_id?: string | null | undefined;
4160
+ homepage_cover_image_file_id?: string | null | undefined;
3775
4161
  immovlan_customer_id?: string | null | undefined;
3776
4162
  livechat_app_id?: string | null | undefined;
3777
4163
  logic_immo_agency_id?: string | null | undefined;
@@ -3780,13 +4166,13 @@ export declare const officeSchema: z.ZodObject<{
3780
4166
  };
3781
4167
  intercom_app_id: string;
3782
4168
  id: string;
3783
- name: string;
4169
+ created_at: string;
3784
4170
  locale: string;
4171
+ name: string;
3785
4172
  member_count: number;
3786
4173
  member_allowed: number;
3787
4174
  contacts_count: number;
3788
4175
  channels_count: number;
3789
- created_at: string;
3790
4176
  plan: {
3791
4177
  data: {
3792
4178
  id: string;
@@ -3798,6 +4184,13 @@ export declare const officeSchema: z.ZodObject<{
3798
4184
  referrer?: {} | null | undefined;
3799
4185
  disabled_at?: string | null | undefined;
3800
4186
  updated_at?: string | null | undefined;
4187
+ photo?: {
4188
+ data: {
4189
+ url: string;
4190
+ uploaded_at: string;
4191
+ photo_file_id: string;
4192
+ };
4193
+ } | null | undefined;
3801
4194
  }, {
3802
4195
  settings: {
3803
4196
  data: {
@@ -3920,6 +4313,7 @@ export declare const officeSchema: z.ZodObject<{
3920
4313
  enable_zumper?: string | null | undefined;
3921
4314
  facebook_pixel_id?: string | null | undefined;
3922
4315
  google_analytics_id?: string | null | undefined;
4316
+ homepage_cover_image_file_id?: string | null | undefined;
3923
4317
  immovlan_customer_id?: string | null | undefined;
3924
4318
  livechat_app_id?: string | null | undefined;
3925
4319
  logic_immo_agency_id?: string | null | undefined;
@@ -3928,13 +4322,13 @@ export declare const officeSchema: z.ZodObject<{
3928
4322
  };
3929
4323
  intercom_app_id: string;
3930
4324
  id: string;
3931
- name: string;
4325
+ created_at: string;
3932
4326
  locale: string;
4327
+ name: string;
3933
4328
  member_count: number;
3934
4329
  member_allowed: number;
3935
4330
  contacts_count: number;
3936
4331
  channels_count: number;
3937
- created_at: string;
3938
4332
  plan: {
3939
4333
  data: {
3940
4334
  id: string;
@@ -3946,6 +4340,13 @@ export declare const officeSchema: z.ZodObject<{
3946
4340
  referrer?: {} | null | undefined;
3947
4341
  disabled_at?: string | null | undefined;
3948
4342
  updated_at?: string | null | undefined;
4343
+ photo?: {
4344
+ data: {
4345
+ url: string;
4346
+ uploaded_at: string;
4347
+ photo_file_id: string;
4348
+ };
4349
+ } | null | undefined;
3949
4350
  }>;
3950
4351
  }, "strip", z.ZodTypeAny, {
3951
4352
  data: {
@@ -4070,6 +4471,7 @@ export declare const officeSchema: z.ZodObject<{
4070
4471
  enable_zumper?: string | null | undefined;
4071
4472
  facebook_pixel_id?: string | null | undefined;
4072
4473
  google_analytics_id?: string | null | undefined;
4474
+ homepage_cover_image_file_id?: string | null | undefined;
4073
4475
  immovlan_customer_id?: string | null | undefined;
4074
4476
  livechat_app_id?: string | null | undefined;
4075
4477
  logic_immo_agency_id?: string | null | undefined;
@@ -4078,13 +4480,13 @@ export declare const officeSchema: z.ZodObject<{
4078
4480
  };
4079
4481
  intercom_app_id: string;
4080
4482
  id: string;
4081
- name: string;
4483
+ created_at: string;
4082
4484
  locale: string;
4485
+ name: string;
4083
4486
  member_count: number;
4084
4487
  member_allowed: number;
4085
4488
  contacts_count: number;
4086
4489
  channels_count: number;
4087
- created_at: string;
4088
4490
  plan: {
4089
4491
  data: {
4090
4492
  id: string;
@@ -4096,6 +4498,13 @@ export declare const officeSchema: z.ZodObject<{
4096
4498
  referrer?: {} | null | undefined;
4097
4499
  disabled_at?: string | null | undefined;
4098
4500
  updated_at?: string | null | undefined;
4501
+ photo?: {
4502
+ data: {
4503
+ url: string;
4504
+ uploaded_at: string;
4505
+ photo_file_id: string;
4506
+ };
4507
+ } | null | undefined;
4099
4508
  };
4100
4509
  }, {
4101
4510
  data: {
@@ -4220,6 +4629,7 @@ export declare const officeSchema: z.ZodObject<{
4220
4629
  enable_zumper?: string | null | undefined;
4221
4630
  facebook_pixel_id?: string | null | undefined;
4222
4631
  google_analytics_id?: string | null | undefined;
4632
+ homepage_cover_image_file_id?: string | null | undefined;
4223
4633
  immovlan_customer_id?: string | null | undefined;
4224
4634
  livechat_app_id?: string | null | undefined;
4225
4635
  logic_immo_agency_id?: string | null | undefined;
@@ -4228,13 +4638,13 @@ export declare const officeSchema: z.ZodObject<{
4228
4638
  };
4229
4639
  intercom_app_id: string;
4230
4640
  id: string;
4231
- name: string;
4641
+ created_at: string;
4232
4642
  locale: string;
4643
+ name: string;
4233
4644
  member_count: number;
4234
4645
  member_allowed: number;
4235
4646
  contacts_count: number;
4236
4647
  channels_count: number;
4237
- created_at: string;
4238
4648
  plan: {
4239
4649
  data: {
4240
4650
  id: string;
@@ -4246,6 +4656,13 @@ export declare const officeSchema: z.ZodObject<{
4246
4656
  referrer?: {} | null | undefined;
4247
4657
  disabled_at?: string | null | undefined;
4248
4658
  updated_at?: string | null | undefined;
4659
+ photo?: {
4660
+ data: {
4661
+ url: string;
4662
+ uploaded_at: string;
4663
+ photo_file_id: string;
4664
+ };
4665
+ } | null | undefined;
4249
4666
  };
4250
4667
  }>>>;
4251
4668
  settings: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4255,18 +4672,99 @@ export declare const officeSchema: z.ZodObject<{
4255
4672
  currency: z.ZodNativeEnum<typeof import("../common/currencies").Currency>;
4256
4673
  country: z.ZodString;
4257
4674
  visit_duration: z.ZodNumber;
4675
+ use_bright_matching: z.ZodBoolean;
4676
+ default_assignee: z.ZodObject<{
4677
+ id: z.ZodNumber;
4678
+ first_name: z.ZodString;
4679
+ last_name: z.ZodString;
4680
+ full_name: z.ZodString;
4681
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4682
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4683
+ role_id: z.ZodString;
4684
+ intercom_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4685
+ launchdarkly_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4686
+ created_at: z.ZodString;
4687
+ updated_at: z.ZodString;
4688
+ appointment_service_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4689
+ locale: z.ZodString;
4690
+ office_id: z.ZodString;
4691
+ }, "strip", z.ZodTypeAny, {
4692
+ id: number;
4693
+ first_name: string;
4694
+ last_name: string;
4695
+ full_name: string;
4696
+ role_id: string;
4697
+ created_at: string;
4698
+ updated_at: string;
4699
+ locale: string;
4700
+ office_id: string;
4701
+ email?: string | null | undefined;
4702
+ phone?: string | null | undefined;
4703
+ intercom_hash?: string | null | undefined;
4704
+ launchdarkly_hash?: string | null | undefined;
4705
+ appointment_service_url?: string | null | undefined;
4706
+ }, {
4707
+ id: number;
4708
+ first_name: string;
4709
+ last_name: string;
4710
+ full_name: string;
4711
+ role_id: string;
4712
+ created_at: string;
4713
+ updated_at: string;
4714
+ locale: string;
4715
+ office_id: string;
4716
+ email?: string | null | undefined;
4717
+ phone?: string | null | undefined;
4718
+ intercom_hash?: string | null | undefined;
4719
+ launchdarkly_hash?: string | null | undefined;
4720
+ appointment_service_url?: string | null | undefined;
4721
+ }>;
4258
4722
  }, "strip", z.ZodTypeAny, {
4259
4723
  measurement_system: MeasurementSystem;
4260
4724
  numeral_system: string;
4261
4725
  currency: import("../common/currencies").Currency;
4262
4726
  country: string;
4263
4727
  visit_duration: number;
4728
+ use_bright_matching: boolean;
4729
+ default_assignee: {
4730
+ id: number;
4731
+ first_name: string;
4732
+ last_name: string;
4733
+ full_name: string;
4734
+ role_id: string;
4735
+ created_at: string;
4736
+ updated_at: string;
4737
+ locale: string;
4738
+ office_id: string;
4739
+ email?: string | null | undefined;
4740
+ phone?: string | null | undefined;
4741
+ intercom_hash?: string | null | undefined;
4742
+ launchdarkly_hash?: string | null | undefined;
4743
+ appointment_service_url?: string | null | undefined;
4744
+ };
4264
4745
  }, {
4265
4746
  measurement_system: MeasurementSystem;
4266
4747
  numeral_system: string;
4267
4748
  currency: import("../common/currencies").Currency;
4268
4749
  country: string;
4269
4750
  visit_duration: number;
4751
+ use_bright_matching: boolean;
4752
+ default_assignee: {
4753
+ id: number;
4754
+ first_name: string;
4755
+ last_name: string;
4756
+ full_name: string;
4757
+ role_id: string;
4758
+ created_at: string;
4759
+ updated_at: string;
4760
+ locale: string;
4761
+ office_id: string;
4762
+ email?: string | null | undefined;
4763
+ phone?: string | null | undefined;
4764
+ intercom_hash?: string | null | undefined;
4765
+ launchdarkly_hash?: string | null | undefined;
4766
+ appointment_service_url?: string | null | undefined;
4767
+ };
4270
4768
  }>;
4271
4769
  }, "strip", z.ZodTypeAny, {
4272
4770
  data: {
@@ -4275,6 +4773,23 @@ export declare const officeSchema: z.ZodObject<{
4275
4773
  currency: import("../common/currencies").Currency;
4276
4774
  country: string;
4277
4775
  visit_duration: number;
4776
+ use_bright_matching: boolean;
4777
+ default_assignee: {
4778
+ id: number;
4779
+ first_name: string;
4780
+ last_name: string;
4781
+ full_name: string;
4782
+ role_id: string;
4783
+ created_at: string;
4784
+ updated_at: string;
4785
+ locale: string;
4786
+ office_id: string;
4787
+ email?: string | null | undefined;
4788
+ phone?: string | null | undefined;
4789
+ intercom_hash?: string | null | undefined;
4790
+ launchdarkly_hash?: string | null | undefined;
4791
+ appointment_service_url?: string | null | undefined;
4792
+ };
4278
4793
  };
4279
4794
  }, {
4280
4795
  data: {
@@ -4283,6 +4798,23 @@ export declare const officeSchema: z.ZodObject<{
4283
4798
  currency: import("../common/currencies").Currency;
4284
4799
  country: string;
4285
4800
  visit_duration: number;
4801
+ use_bright_matching: boolean;
4802
+ default_assignee: {
4803
+ id: number;
4804
+ first_name: string;
4805
+ last_name: string;
4806
+ full_name: string;
4807
+ role_id: string;
4808
+ created_at: string;
4809
+ updated_at: string;
4810
+ locale: string;
4811
+ office_id: string;
4812
+ email?: string | null | undefined;
4813
+ phone?: string | null | undefined;
4814
+ intercom_hash?: string | null | undefined;
4815
+ launchdarkly_hash?: string | null | undefined;
4816
+ appointment_service_url?: string | null | undefined;
4817
+ };
4286
4818
  };
4287
4819
  }>>>;
4288
4820
  }, "strip", z.ZodTypeAny, {
@@ -4413,6 +4945,7 @@ export declare const officeSchema: z.ZodObject<{
4413
4945
  enable_zumper?: string | null | undefined;
4414
4946
  facebook_pixel_id?: string | null | undefined;
4415
4947
  google_analytics_id?: string | null | undefined;
4948
+ homepage_cover_image_file_id?: string | null | undefined;
4416
4949
  immovlan_customer_id?: string | null | undefined;
4417
4950
  livechat_app_id?: string | null | undefined;
4418
4951
  logic_immo_agency_id?: string | null | undefined;
@@ -4421,13 +4954,13 @@ export declare const officeSchema: z.ZodObject<{
4421
4954
  };
4422
4955
  intercom_app_id: string;
4423
4956
  id: string;
4424
- name: string;
4957
+ created_at: string;
4425
4958
  locale: string;
4959
+ name: string;
4426
4960
  member_count: number;
4427
4961
  member_allowed: number;
4428
4962
  contacts_count: number;
4429
4963
  channels_count: number;
4430
- created_at: string;
4431
4964
  plan: {
4432
4965
  data: {
4433
4966
  id: string;
@@ -4439,6 +4972,13 @@ export declare const officeSchema: z.ZodObject<{
4439
4972
  referrer?: {} | null | undefined;
4440
4973
  disabled_at?: string | null | undefined;
4441
4974
  updated_at?: string | null | undefined;
4975
+ photo?: {
4976
+ data: {
4977
+ url: string;
4978
+ uploaded_at: string;
4979
+ photo_file_id: string;
4980
+ };
4981
+ } | null | undefined;
4442
4982
  };
4443
4983
  } | null | undefined;
4444
4984
  settings?: {
@@ -4448,6 +4988,23 @@ export declare const officeSchema: z.ZodObject<{
4448
4988
  currency: import("../common/currencies").Currency;
4449
4989
  country: string;
4450
4990
  visit_duration: number;
4991
+ use_bright_matching: boolean;
4992
+ default_assignee: {
4993
+ id: number;
4994
+ first_name: string;
4995
+ last_name: string;
4996
+ full_name: string;
4997
+ role_id: string;
4998
+ created_at: string;
4999
+ updated_at: string;
5000
+ locale: string;
5001
+ office_id: string;
5002
+ email?: string | null | undefined;
5003
+ phone?: string | null | undefined;
5004
+ intercom_hash?: string | null | undefined;
5005
+ launchdarkly_hash?: string | null | undefined;
5006
+ appointment_service_url?: string | null | undefined;
5007
+ };
4451
5008
  };
4452
5009
  } | null | undefined;
4453
5010
  }, {
@@ -4578,6 +5135,7 @@ export declare const officeSchema: z.ZodObject<{
4578
5135
  enable_zumper?: string | null | undefined;
4579
5136
  facebook_pixel_id?: string | null | undefined;
4580
5137
  google_analytics_id?: string | null | undefined;
5138
+ homepage_cover_image_file_id?: string | null | undefined;
4581
5139
  immovlan_customer_id?: string | null | undefined;
4582
5140
  livechat_app_id?: string | null | undefined;
4583
5141
  logic_immo_agency_id?: string | null | undefined;
@@ -4586,13 +5144,13 @@ export declare const officeSchema: z.ZodObject<{
4586
5144
  };
4587
5145
  intercom_app_id: string;
4588
5146
  id: string;
4589
- name: string;
5147
+ created_at: string;
4590
5148
  locale: string;
5149
+ name: string;
4591
5150
  member_count: number;
4592
5151
  member_allowed: number;
4593
5152
  contacts_count: number;
4594
5153
  channels_count: number;
4595
- created_at: string;
4596
5154
  plan: {
4597
5155
  data: {
4598
5156
  id: string;
@@ -4604,6 +5162,13 @@ export declare const officeSchema: z.ZodObject<{
4604
5162
  referrer?: {} | null | undefined;
4605
5163
  disabled_at?: string | null | undefined;
4606
5164
  updated_at?: string | null | undefined;
5165
+ photo?: {
5166
+ data: {
5167
+ url: string;
5168
+ uploaded_at: string;
5169
+ photo_file_id: string;
5170
+ };
5171
+ } | null | undefined;
4607
5172
  };
4608
5173
  } | null | undefined;
4609
5174
  settings?: {
@@ -4613,6 +5178,23 @@ export declare const officeSchema: z.ZodObject<{
4613
5178
  currency: import("../common/currencies").Currency;
4614
5179
  country: string;
4615
5180
  visit_duration: number;
5181
+ use_bright_matching: boolean;
5182
+ default_assignee: {
5183
+ id: number;
5184
+ first_name: string;
5185
+ last_name: string;
5186
+ full_name: string;
5187
+ role_id: string;
5188
+ created_at: string;
5189
+ updated_at: string;
5190
+ locale: string;
5191
+ office_id: string;
5192
+ email?: string | null | undefined;
5193
+ phone?: string | null | undefined;
5194
+ intercom_hash?: string | null | undefined;
5195
+ launchdarkly_hash?: string | null | undefined;
5196
+ appointment_service_url?: string | null | undefined;
5197
+ };
4616
5198
  };
4617
5199
  } | null | undefined;
4618
5200
  }>;
@@ -4668,6 +5250,33 @@ export declare const officeDataSchema: z.ZodObject<{
4668
5250
  interval: string;
4669
5251
  };
4670
5252
  }>;
5253
+ photo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5254
+ data: z.ZodObject<{
5255
+ uploaded_at: z.ZodString;
5256
+ photo_file_id: z.ZodString;
5257
+ url: z.ZodString;
5258
+ }, "strip", z.ZodTypeAny, {
5259
+ url: string;
5260
+ uploaded_at: string;
5261
+ photo_file_id: string;
5262
+ }, {
5263
+ url: string;
5264
+ uploaded_at: string;
5265
+ photo_file_id: string;
5266
+ }>;
5267
+ }, "strip", z.ZodTypeAny, {
5268
+ data: {
5269
+ url: string;
5270
+ uploaded_at: string;
5271
+ photo_file_id: string;
5272
+ };
5273
+ }, {
5274
+ data: {
5275
+ url: string;
5276
+ uploaded_at: string;
5277
+ photo_file_id: string;
5278
+ };
5279
+ }>>>;
4671
5280
  settings: z.ZodObject<{
4672
5281
  data: z.ZodObject<{
4673
5282
  about_en: z.ZodString;
@@ -4739,6 +5348,7 @@ export declare const officeDataSchema: z.ZodObject<{
4739
5348
  google_analytics_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4740
5349
  homepage_cover: z.ZodString;
4741
5350
  homepage_cover_image: z.ZodString;
5351
+ homepage_cover_image_file_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4742
5352
  homepage_cover_video: z.ZodString;
4743
5353
  homepage_highlights: z.ZodArray<z.ZodAny, "many">;
4744
5354
  homepage_properties: z.ZodString;
@@ -4913,6 +5523,7 @@ export declare const officeDataSchema: z.ZodObject<{
4913
5523
  enable_zumper?: string | null | undefined;
4914
5524
  facebook_pixel_id?: string | null | undefined;
4915
5525
  google_analytics_id?: string | null | undefined;
5526
+ homepage_cover_image_file_id?: string | null | undefined;
4916
5527
  immovlan_customer_id?: string | null | undefined;
4917
5528
  livechat_app_id?: string | null | undefined;
4918
5529
  logic_immo_agency_id?: string | null | undefined;
@@ -5037,6 +5648,7 @@ export declare const officeDataSchema: z.ZodObject<{
5037
5648
  enable_zumper?: string | null | undefined;
5038
5649
  facebook_pixel_id?: string | null | undefined;
5039
5650
  google_analytics_id?: string | null | undefined;
5651
+ homepage_cover_image_file_id?: string | null | undefined;
5040
5652
  immovlan_customer_id?: string | null | undefined;
5041
5653
  livechat_app_id?: string | null | undefined;
5042
5654
  logic_immo_agency_id?: string | null | undefined;
@@ -5163,6 +5775,7 @@ export declare const officeDataSchema: z.ZodObject<{
5163
5775
  enable_zumper?: string | null | undefined;
5164
5776
  facebook_pixel_id?: string | null | undefined;
5165
5777
  google_analytics_id?: string | null | undefined;
5778
+ homepage_cover_image_file_id?: string | null | undefined;
5166
5779
  immovlan_customer_id?: string | null | undefined;
5167
5780
  livechat_app_id?: string | null | undefined;
5168
5781
  logic_immo_agency_id?: string | null | undefined;
@@ -5289,6 +5902,7 @@ export declare const officeDataSchema: z.ZodObject<{
5289
5902
  enable_zumper?: string | null | undefined;
5290
5903
  facebook_pixel_id?: string | null | undefined;
5291
5904
  google_analytics_id?: string | null | undefined;
5905
+ homepage_cover_image_file_id?: string | null | undefined;
5292
5906
  immovlan_customer_id?: string | null | undefined;
5293
5907
  livechat_app_id?: string | null | undefined;
5294
5908
  logic_immo_agency_id?: string | null | undefined;
@@ -5417,6 +6031,7 @@ export declare const officeDataSchema: z.ZodObject<{
5417
6031
  enable_zumper?: string | null | undefined;
5418
6032
  facebook_pixel_id?: string | null | undefined;
5419
6033
  google_analytics_id?: string | null | undefined;
6034
+ homepage_cover_image_file_id?: string | null | undefined;
5420
6035
  immovlan_customer_id?: string | null | undefined;
5421
6036
  livechat_app_id?: string | null | undefined;
5422
6037
  logic_immo_agency_id?: string | null | undefined;
@@ -5425,13 +6040,13 @@ export declare const officeDataSchema: z.ZodObject<{
5425
6040
  };
5426
6041
  intercom_app_id: string;
5427
6042
  id: string;
5428
- name: string;
6043
+ created_at: string;
5429
6044
  locale: string;
6045
+ name: string;
5430
6046
  member_count: number;
5431
6047
  member_allowed: number;
5432
6048
  contacts_count: number;
5433
6049
  channels_count: number;
5434
- created_at: string;
5435
6050
  plan: {
5436
6051
  data: {
5437
6052
  id: string;
@@ -5443,6 +6058,13 @@ export declare const officeDataSchema: z.ZodObject<{
5443
6058
  referrer?: {} | null | undefined;
5444
6059
  disabled_at?: string | null | undefined;
5445
6060
  updated_at?: string | null | undefined;
6061
+ photo?: {
6062
+ data: {
6063
+ url: string;
6064
+ uploaded_at: string;
6065
+ photo_file_id: string;
6066
+ };
6067
+ } | null | undefined;
5446
6068
  }, {
5447
6069
  settings: {
5448
6070
  data: {
@@ -5565,6 +6187,7 @@ export declare const officeDataSchema: z.ZodObject<{
5565
6187
  enable_zumper?: string | null | undefined;
5566
6188
  facebook_pixel_id?: string | null | undefined;
5567
6189
  google_analytics_id?: string | null | undefined;
6190
+ homepage_cover_image_file_id?: string | null | undefined;
5568
6191
  immovlan_customer_id?: string | null | undefined;
5569
6192
  livechat_app_id?: string | null | undefined;
5570
6193
  logic_immo_agency_id?: string | null | undefined;
@@ -5573,13 +6196,13 @@ export declare const officeDataSchema: z.ZodObject<{
5573
6196
  };
5574
6197
  intercom_app_id: string;
5575
6198
  id: string;
5576
- name: string;
6199
+ created_at: string;
5577
6200
  locale: string;
6201
+ name: string;
5578
6202
  member_count: number;
5579
6203
  member_allowed: number;
5580
6204
  contacts_count: number;
5581
6205
  channels_count: number;
5582
- created_at: string;
5583
6206
  plan: {
5584
6207
  data: {
5585
6208
  id: string;
@@ -5591,6 +6214,13 @@ export declare const officeDataSchema: z.ZodObject<{
5591
6214
  referrer?: {} | null | undefined;
5592
6215
  disabled_at?: string | null | undefined;
5593
6216
  updated_at?: string | null | undefined;
6217
+ photo?: {
6218
+ data: {
6219
+ url: string;
6220
+ uploaded_at: string;
6221
+ photo_file_id: string;
6222
+ };
6223
+ } | null | undefined;
5594
6224
  }>;
5595
6225
  }, "strip", z.ZodTypeAny, {
5596
6226
  data: {
@@ -5715,6 +6345,7 @@ export declare const officeDataSchema: z.ZodObject<{
5715
6345
  enable_zumper?: string | null | undefined;
5716
6346
  facebook_pixel_id?: string | null | undefined;
5717
6347
  google_analytics_id?: string | null | undefined;
6348
+ homepage_cover_image_file_id?: string | null | undefined;
5718
6349
  immovlan_customer_id?: string | null | undefined;
5719
6350
  livechat_app_id?: string | null | undefined;
5720
6351
  logic_immo_agency_id?: string | null | undefined;
@@ -5723,13 +6354,13 @@ export declare const officeDataSchema: z.ZodObject<{
5723
6354
  };
5724
6355
  intercom_app_id: string;
5725
6356
  id: string;
5726
- name: string;
6357
+ created_at: string;
5727
6358
  locale: string;
6359
+ name: string;
5728
6360
  member_count: number;
5729
6361
  member_allowed: number;
5730
6362
  contacts_count: number;
5731
6363
  channels_count: number;
5732
- created_at: string;
5733
6364
  plan: {
5734
6365
  data: {
5735
6366
  id: string;
@@ -5741,6 +6372,13 @@ export declare const officeDataSchema: z.ZodObject<{
5741
6372
  referrer?: {} | null | undefined;
5742
6373
  disabled_at?: string | null | undefined;
5743
6374
  updated_at?: string | null | undefined;
6375
+ photo?: {
6376
+ data: {
6377
+ url: string;
6378
+ uploaded_at: string;
6379
+ photo_file_id: string;
6380
+ };
6381
+ } | null | undefined;
5744
6382
  };
5745
6383
  }, {
5746
6384
  data: {
@@ -5865,6 +6503,7 @@ export declare const officeDataSchema: z.ZodObject<{
5865
6503
  enable_zumper?: string | null | undefined;
5866
6504
  facebook_pixel_id?: string | null | undefined;
5867
6505
  google_analytics_id?: string | null | undefined;
6506
+ homepage_cover_image_file_id?: string | null | undefined;
5868
6507
  immovlan_customer_id?: string | null | undefined;
5869
6508
  livechat_app_id?: string | null | undefined;
5870
6509
  logic_immo_agency_id?: string | null | undefined;
@@ -5873,13 +6512,13 @@ export declare const officeDataSchema: z.ZodObject<{
5873
6512
  };
5874
6513
  intercom_app_id: string;
5875
6514
  id: string;
5876
- name: string;
6515
+ created_at: string;
5877
6516
  locale: string;
6517
+ name: string;
5878
6518
  member_count: number;
5879
6519
  member_allowed: number;
5880
6520
  contacts_count: number;
5881
6521
  channels_count: number;
5882
- created_at: string;
5883
6522
  plan: {
5884
6523
  data: {
5885
6524
  id: string;
@@ -5891,6 +6530,13 @@ export declare const officeDataSchema: z.ZodObject<{
5891
6530
  referrer?: {} | null | undefined;
5892
6531
  disabled_at?: string | null | undefined;
5893
6532
  updated_at?: string | null | undefined;
6533
+ photo?: {
6534
+ data: {
6535
+ url: string;
6536
+ uploaded_at: string;
6537
+ photo_file_id: string;
6538
+ };
6539
+ } | null | undefined;
5894
6540
  };
5895
6541
  }>>>;
5896
6542
  settings: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -5900,18 +6546,99 @@ export declare const officeDataSchema: z.ZodObject<{
5900
6546
  currency: z.ZodNativeEnum<typeof import("../common/currencies").Currency>;
5901
6547
  country: z.ZodString;
5902
6548
  visit_duration: z.ZodNumber;
6549
+ use_bright_matching: z.ZodBoolean;
6550
+ default_assignee: z.ZodObject<{
6551
+ id: z.ZodNumber;
6552
+ first_name: z.ZodString;
6553
+ last_name: z.ZodString;
6554
+ full_name: z.ZodString;
6555
+ email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6556
+ phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6557
+ role_id: z.ZodString;
6558
+ intercom_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6559
+ launchdarkly_hash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6560
+ created_at: z.ZodString;
6561
+ updated_at: z.ZodString;
6562
+ appointment_service_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6563
+ locale: z.ZodString;
6564
+ office_id: z.ZodString;
6565
+ }, "strip", z.ZodTypeAny, {
6566
+ id: number;
6567
+ first_name: string;
6568
+ last_name: string;
6569
+ full_name: string;
6570
+ role_id: string;
6571
+ created_at: string;
6572
+ updated_at: string;
6573
+ locale: string;
6574
+ office_id: string;
6575
+ email?: string | null | undefined;
6576
+ phone?: string | null | undefined;
6577
+ intercom_hash?: string | null | undefined;
6578
+ launchdarkly_hash?: string | null | undefined;
6579
+ appointment_service_url?: string | null | undefined;
6580
+ }, {
6581
+ id: number;
6582
+ first_name: string;
6583
+ last_name: string;
6584
+ full_name: string;
6585
+ role_id: string;
6586
+ created_at: string;
6587
+ updated_at: string;
6588
+ locale: string;
6589
+ office_id: string;
6590
+ email?: string | null | undefined;
6591
+ phone?: string | null | undefined;
6592
+ intercom_hash?: string | null | undefined;
6593
+ launchdarkly_hash?: string | null | undefined;
6594
+ appointment_service_url?: string | null | undefined;
6595
+ }>;
5903
6596
  }, "strip", z.ZodTypeAny, {
5904
6597
  measurement_system: MeasurementSystem;
5905
6598
  numeral_system: string;
5906
6599
  currency: import("../common/currencies").Currency;
5907
6600
  country: string;
5908
6601
  visit_duration: number;
6602
+ use_bright_matching: boolean;
6603
+ default_assignee: {
6604
+ id: number;
6605
+ first_name: string;
6606
+ last_name: string;
6607
+ full_name: string;
6608
+ role_id: string;
6609
+ created_at: string;
6610
+ updated_at: string;
6611
+ locale: string;
6612
+ office_id: string;
6613
+ email?: string | null | undefined;
6614
+ phone?: string | null | undefined;
6615
+ intercom_hash?: string | null | undefined;
6616
+ launchdarkly_hash?: string | null | undefined;
6617
+ appointment_service_url?: string | null | undefined;
6618
+ };
5909
6619
  }, {
5910
6620
  measurement_system: MeasurementSystem;
5911
6621
  numeral_system: string;
5912
6622
  currency: import("../common/currencies").Currency;
5913
6623
  country: string;
5914
6624
  visit_duration: number;
6625
+ use_bright_matching: boolean;
6626
+ default_assignee: {
6627
+ id: number;
6628
+ first_name: string;
6629
+ last_name: string;
6630
+ full_name: string;
6631
+ role_id: string;
6632
+ created_at: string;
6633
+ updated_at: string;
6634
+ locale: string;
6635
+ office_id: string;
6636
+ email?: string | null | undefined;
6637
+ phone?: string | null | undefined;
6638
+ intercom_hash?: string | null | undefined;
6639
+ launchdarkly_hash?: string | null | undefined;
6640
+ appointment_service_url?: string | null | undefined;
6641
+ };
5915
6642
  }>;
5916
6643
  }, "strip", z.ZodTypeAny, {
5917
6644
  data: {
@@ -5920,6 +6647,23 @@ export declare const officeDataSchema: z.ZodObject<{
5920
6647
  currency: import("../common/currencies").Currency;
5921
6648
  country: string;
5922
6649
  visit_duration: number;
6650
+ use_bright_matching: boolean;
6651
+ default_assignee: {
6652
+ id: number;
6653
+ first_name: string;
6654
+ last_name: string;
6655
+ full_name: string;
6656
+ role_id: string;
6657
+ created_at: string;
6658
+ updated_at: string;
6659
+ locale: string;
6660
+ office_id: string;
6661
+ email?: string | null | undefined;
6662
+ phone?: string | null | undefined;
6663
+ intercom_hash?: string | null | undefined;
6664
+ launchdarkly_hash?: string | null | undefined;
6665
+ appointment_service_url?: string | null | undefined;
6666
+ };
5923
6667
  };
5924
6668
  }, {
5925
6669
  data: {
@@ -5928,6 +6672,23 @@ export declare const officeDataSchema: z.ZodObject<{
5928
6672
  currency: import("../common/currencies").Currency;
5929
6673
  country: string;
5930
6674
  visit_duration: number;
6675
+ use_bright_matching: boolean;
6676
+ default_assignee: {
6677
+ id: number;
6678
+ first_name: string;
6679
+ last_name: string;
6680
+ full_name: string;
6681
+ role_id: string;
6682
+ created_at: string;
6683
+ updated_at: string;
6684
+ locale: string;
6685
+ office_id: string;
6686
+ email?: string | null | undefined;
6687
+ phone?: string | null | undefined;
6688
+ intercom_hash?: string | null | undefined;
6689
+ launchdarkly_hash?: string | null | undefined;
6690
+ appointment_service_url?: string | null | undefined;
6691
+ };
5931
6692
  };
5932
6693
  }>>>;
5933
6694
  }, "strip", z.ZodTypeAny, {
@@ -6058,6 +6819,7 @@ export declare const officeDataSchema: z.ZodObject<{
6058
6819
  enable_zumper?: string | null | undefined;
6059
6820
  facebook_pixel_id?: string | null | undefined;
6060
6821
  google_analytics_id?: string | null | undefined;
6822
+ homepage_cover_image_file_id?: string | null | undefined;
6061
6823
  immovlan_customer_id?: string | null | undefined;
6062
6824
  livechat_app_id?: string | null | undefined;
6063
6825
  logic_immo_agency_id?: string | null | undefined;
@@ -6066,13 +6828,13 @@ export declare const officeDataSchema: z.ZodObject<{
6066
6828
  };
6067
6829
  intercom_app_id: string;
6068
6830
  id: string;
6069
- name: string;
6831
+ created_at: string;
6070
6832
  locale: string;
6833
+ name: string;
6071
6834
  member_count: number;
6072
6835
  member_allowed: number;
6073
6836
  contacts_count: number;
6074
6837
  channels_count: number;
6075
- created_at: string;
6076
6838
  plan: {
6077
6839
  data: {
6078
6840
  id: string;
@@ -6084,6 +6846,13 @@ export declare const officeDataSchema: z.ZodObject<{
6084
6846
  referrer?: {} | null | undefined;
6085
6847
  disabled_at?: string | null | undefined;
6086
6848
  updated_at?: string | null | undefined;
6849
+ photo?: {
6850
+ data: {
6851
+ url: string;
6852
+ uploaded_at: string;
6853
+ photo_file_id: string;
6854
+ };
6855
+ } | null | undefined;
6087
6856
  };
6088
6857
  } | null | undefined;
6089
6858
  settings?: {
@@ -6093,6 +6862,23 @@ export declare const officeDataSchema: z.ZodObject<{
6093
6862
  currency: import("../common/currencies").Currency;
6094
6863
  country: string;
6095
6864
  visit_duration: number;
6865
+ use_bright_matching: boolean;
6866
+ default_assignee: {
6867
+ id: number;
6868
+ first_name: string;
6869
+ last_name: string;
6870
+ full_name: string;
6871
+ role_id: string;
6872
+ created_at: string;
6873
+ updated_at: string;
6874
+ locale: string;
6875
+ office_id: string;
6876
+ email?: string | null | undefined;
6877
+ phone?: string | null | undefined;
6878
+ intercom_hash?: string | null | undefined;
6879
+ launchdarkly_hash?: string | null | undefined;
6880
+ appointment_service_url?: string | null | undefined;
6881
+ };
6096
6882
  };
6097
6883
  } | null | undefined;
6098
6884
  }, {
@@ -6223,6 +7009,7 @@ export declare const officeDataSchema: z.ZodObject<{
6223
7009
  enable_zumper?: string | null | undefined;
6224
7010
  facebook_pixel_id?: string | null | undefined;
6225
7011
  google_analytics_id?: string | null | undefined;
7012
+ homepage_cover_image_file_id?: string | null | undefined;
6226
7013
  immovlan_customer_id?: string | null | undefined;
6227
7014
  livechat_app_id?: string | null | undefined;
6228
7015
  logic_immo_agency_id?: string | null | undefined;
@@ -6231,13 +7018,13 @@ export declare const officeDataSchema: z.ZodObject<{
6231
7018
  };
6232
7019
  intercom_app_id: string;
6233
7020
  id: string;
6234
- name: string;
7021
+ created_at: string;
6235
7022
  locale: string;
7023
+ name: string;
6236
7024
  member_count: number;
6237
7025
  member_allowed: number;
6238
7026
  contacts_count: number;
6239
7027
  channels_count: number;
6240
- created_at: string;
6241
7028
  plan: {
6242
7029
  data: {
6243
7030
  id: string;
@@ -6249,6 +7036,13 @@ export declare const officeDataSchema: z.ZodObject<{
6249
7036
  referrer?: {} | null | undefined;
6250
7037
  disabled_at?: string | null | undefined;
6251
7038
  updated_at?: string | null | undefined;
7039
+ photo?: {
7040
+ data: {
7041
+ url: string;
7042
+ uploaded_at: string;
7043
+ photo_file_id: string;
7044
+ };
7045
+ } | null | undefined;
6252
7046
  };
6253
7047
  } | null | undefined;
6254
7048
  settings?: {
@@ -6258,6 +7052,23 @@ export declare const officeDataSchema: z.ZodObject<{
6258
7052
  currency: import("../common/currencies").Currency;
6259
7053
  country: string;
6260
7054
  visit_duration: number;
7055
+ use_bright_matching: boolean;
7056
+ default_assignee: {
7057
+ id: number;
7058
+ first_name: string;
7059
+ last_name: string;
7060
+ full_name: string;
7061
+ role_id: string;
7062
+ created_at: string;
7063
+ updated_at: string;
7064
+ locale: string;
7065
+ office_id: string;
7066
+ email?: string | null | undefined;
7067
+ phone?: string | null | undefined;
7068
+ intercom_hash?: string | null | undefined;
7069
+ launchdarkly_hash?: string | null | undefined;
7070
+ appointment_service_url?: string | null | undefined;
7071
+ };
6261
7072
  };
6262
7073
  } | null | undefined;
6263
7074
  }>;
@@ -6390,6 +7201,7 @@ export declare const officeDataSchema: z.ZodObject<{
6390
7201
  enable_zumper?: string | null | undefined;
6391
7202
  facebook_pixel_id?: string | null | undefined;
6392
7203
  google_analytics_id?: string | null | undefined;
7204
+ homepage_cover_image_file_id?: string | null | undefined;
6393
7205
  immovlan_customer_id?: string | null | undefined;
6394
7206
  livechat_app_id?: string | null | undefined;
6395
7207
  logic_immo_agency_id?: string | null | undefined;
@@ -6398,13 +7210,13 @@ export declare const officeDataSchema: z.ZodObject<{
6398
7210
  };
6399
7211
  intercom_app_id: string;
6400
7212
  id: string;
6401
- name: string;
7213
+ created_at: string;
6402
7214
  locale: string;
7215
+ name: string;
6403
7216
  member_count: number;
6404
7217
  member_allowed: number;
6405
7218
  contacts_count: number;
6406
7219
  channels_count: number;
6407
- created_at: string;
6408
7220
  plan: {
6409
7221
  data: {
6410
7222
  id: string;
@@ -6416,6 +7228,13 @@ export declare const officeDataSchema: z.ZodObject<{
6416
7228
  referrer?: {} | null | undefined;
6417
7229
  disabled_at?: string | null | undefined;
6418
7230
  updated_at?: string | null | undefined;
7231
+ photo?: {
7232
+ data: {
7233
+ url: string;
7234
+ uploaded_at: string;
7235
+ photo_file_id: string;
7236
+ };
7237
+ } | null | undefined;
6419
7238
  };
6420
7239
  } | null | undefined;
6421
7240
  settings?: {
@@ -6425,6 +7244,23 @@ export declare const officeDataSchema: z.ZodObject<{
6425
7244
  currency: import("../common/currencies").Currency;
6426
7245
  country: string;
6427
7246
  visit_duration: number;
7247
+ use_bright_matching: boolean;
7248
+ default_assignee: {
7249
+ id: number;
7250
+ first_name: string;
7251
+ last_name: string;
7252
+ full_name: string;
7253
+ role_id: string;
7254
+ created_at: string;
7255
+ updated_at: string;
7256
+ locale: string;
7257
+ office_id: string;
7258
+ email?: string | null | undefined;
7259
+ phone?: string | null | undefined;
7260
+ intercom_hash?: string | null | undefined;
7261
+ launchdarkly_hash?: string | null | undefined;
7262
+ appointment_service_url?: string | null | undefined;
7263
+ };
6428
7264
  };
6429
7265
  } | null | undefined;
6430
7266
  };
@@ -6557,6 +7393,7 @@ export declare const officeDataSchema: z.ZodObject<{
6557
7393
  enable_zumper?: string | null | undefined;
6558
7394
  facebook_pixel_id?: string | null | undefined;
6559
7395
  google_analytics_id?: string | null | undefined;
7396
+ homepage_cover_image_file_id?: string | null | undefined;
6560
7397
  immovlan_customer_id?: string | null | undefined;
6561
7398
  livechat_app_id?: string | null | undefined;
6562
7399
  logic_immo_agency_id?: string | null | undefined;
@@ -6565,13 +7402,13 @@ export declare const officeDataSchema: z.ZodObject<{
6565
7402
  };
6566
7403
  intercom_app_id: string;
6567
7404
  id: string;
6568
- name: string;
7405
+ created_at: string;
6569
7406
  locale: string;
7407
+ name: string;
6570
7408
  member_count: number;
6571
7409
  member_allowed: number;
6572
7410
  contacts_count: number;
6573
7411
  channels_count: number;
6574
- created_at: string;
6575
7412
  plan: {
6576
7413
  data: {
6577
7414
  id: string;
@@ -6583,6 +7420,13 @@ export declare const officeDataSchema: z.ZodObject<{
6583
7420
  referrer?: {} | null | undefined;
6584
7421
  disabled_at?: string | null | undefined;
6585
7422
  updated_at?: string | null | undefined;
7423
+ photo?: {
7424
+ data: {
7425
+ url: string;
7426
+ uploaded_at: string;
7427
+ photo_file_id: string;
7428
+ };
7429
+ } | null | undefined;
6586
7430
  };
6587
7431
  } | null | undefined;
6588
7432
  settings?: {
@@ -6592,6 +7436,23 @@ export declare const officeDataSchema: z.ZodObject<{
6592
7436
  currency: import("../common/currencies").Currency;
6593
7437
  country: string;
6594
7438
  visit_duration: number;
7439
+ use_bright_matching: boolean;
7440
+ default_assignee: {
7441
+ id: number;
7442
+ first_name: string;
7443
+ last_name: string;
7444
+ full_name: string;
7445
+ role_id: string;
7446
+ created_at: string;
7447
+ updated_at: string;
7448
+ locale: string;
7449
+ office_id: string;
7450
+ email?: string | null | undefined;
7451
+ phone?: string | null | undefined;
7452
+ intercom_hash?: string | null | undefined;
7453
+ launchdarkly_hash?: string | null | undefined;
7454
+ appointment_service_url?: string | null | undefined;
7455
+ };
6595
7456
  };
6596
7457
  } | null | undefined;
6597
7458
  };