kui-crm 0.0.548 → 0.0.549
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/hooks/index.d.ts +2 -2
- package/index.d.ts +366 -149
- package/package.json +1 -1
- package/types/index.d.ts +241 -24
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -239,13 +239,13 @@ type FileWithVisibility = {
|
|
|
239
239
|
file: File | null
|
|
240
240
|
tenant: boolean
|
|
241
241
|
landlord: boolean
|
|
242
|
-
visibility: DocumentVisibilityVariants
|
|
242
|
+
visibility: DocumentVisibilityVariants$1
|
|
243
243
|
url: string
|
|
244
244
|
}
|
|
245
245
|
|
|
246
246
|
type InputFileWithVisibilityFields =
|
|
247
247
|
| FileWithVisibility
|
|
248
|
-
| DocumentWithVisibility
|
|
248
|
+
| DocumentWithVisibility$1
|
|
249
249
|
| null
|
|
250
250
|
| undefined
|
|
251
251
|
|
|
@@ -271,19 +271,19 @@ declare class FileStore implements FileStoreInterface {
|
|
|
271
271
|
date: DateTime | null;
|
|
272
272
|
size: number | null;
|
|
273
273
|
createdBy: string;
|
|
274
|
-
visibility?: DocumentVisibilityVariants;
|
|
274
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
275
275
|
filesStore?: FilesStoreInterface | null;
|
|
276
276
|
extension: string;
|
|
277
277
|
file?: File | null;
|
|
278
|
-
uploadStatus: LoadStatus;
|
|
279
|
-
uploadedData: UploadedFileParams;
|
|
278
|
+
uploadStatus: LoadStatus$1;
|
|
279
|
+
uploadedData: UploadedFileParams$1;
|
|
280
280
|
loader: Loader;
|
|
281
281
|
withFileCleanUp?: boolean;
|
|
282
282
|
isVideo?: boolean;
|
|
283
|
-
constructor(file: FileStoreParams, filesStore?: FilesStoreInterface | null, withFileCleanUp?: boolean);
|
|
284
|
-
uploadFile: (variant: FileVariant) => Promise<void>;
|
|
285
|
-
updateUploadStatus: (status: LoadStatus) => void;
|
|
286
|
-
updateUploadedData: (data: UploadedFileParams) => void;
|
|
283
|
+
constructor(file: FileStoreParams$1, filesStore?: FilesStoreInterface | null, withFileCleanUp?: boolean);
|
|
284
|
+
uploadFile: (variant: FileVariant$1) => Promise<void>;
|
|
285
|
+
updateUploadStatus: (status: LoadStatus$1) => void;
|
|
286
|
+
updateUploadedData: (data: UploadedFileParams$1) => void;
|
|
287
287
|
editFile: (data: any) => void;
|
|
288
288
|
deleteFile: () => void;
|
|
289
289
|
updateName: (name: string) => void;
|
|
@@ -976,7 +976,7 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
976
976
|
date: DateTime | null;
|
|
977
977
|
size: number | null;
|
|
978
978
|
createdBy: string;
|
|
979
|
-
visibility?: DocumentVisibilityVariants;
|
|
979
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
980
980
|
documentsStore: DocumentsStoreInterface;
|
|
981
981
|
agent: DocumentAgentInterface;
|
|
982
982
|
loader: Loader;
|
|
@@ -1010,7 +1010,7 @@ type InputParams<T> = {
|
|
|
1010
1010
|
} & InputByTypeProps<T>
|
|
1011
1011
|
|
|
1012
1012
|
declare type SubjectRoles = "maroom" | "landlord" | "tenant";
|
|
1013
|
-
declare type DocumentVisibilityVariants = "everybody" | "tenant" | "landlord" | "nobody";
|
|
1013
|
+
declare type DocumentVisibilityVariants$1 = "everybody" | "tenant" | "landlord" | "nobody";
|
|
1014
1014
|
declare type AddressWithLocationParams = {
|
|
1015
1015
|
address: string;
|
|
1016
1016
|
location?: LatLonParams | null;
|
|
@@ -1023,14 +1023,14 @@ declare type PhoneParams = {
|
|
|
1023
1023
|
phoneCode: string;
|
|
1024
1024
|
phoneNumber: string;
|
|
1025
1025
|
};
|
|
1026
|
-
declare type DocumentWithVisibility = {
|
|
1026
|
+
declare type DocumentWithVisibility$1 = {
|
|
1027
1027
|
id: number | null;
|
|
1028
1028
|
name: string;
|
|
1029
1029
|
url: string;
|
|
1030
1030
|
date: DateTime | null;
|
|
1031
1031
|
size: number | null;
|
|
1032
1032
|
createdBy: string;
|
|
1033
|
-
visibility?: DocumentVisibilityVariants;
|
|
1033
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
1034
1034
|
extension: string;
|
|
1035
1035
|
};
|
|
1036
1036
|
declare type SettingsParams = {
|
|
@@ -1039,7 +1039,7 @@ declare type SettingsParams = {
|
|
|
1039
1039
|
contractType?: ApartmentContractTypes;
|
|
1040
1040
|
};
|
|
1041
1041
|
declare type UploadDocumentParams = {
|
|
1042
|
-
visibility?: DocumentVisibilityVariants;
|
|
1042
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
1043
1043
|
} & UploadFileParams & SettingsParams;
|
|
1044
1044
|
declare type FileParams = {
|
|
1045
1045
|
name: string;
|
|
@@ -1047,8 +1047,8 @@ declare type FileParams = {
|
|
|
1047
1047
|
size?: number | null;
|
|
1048
1048
|
file: File;
|
|
1049
1049
|
};
|
|
1050
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1051
|
-
declare type FileStoreParams = {
|
|
1050
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1051
|
+
declare type FileStoreParams$1 = {
|
|
1052
1052
|
id?: number | null;
|
|
1053
1053
|
url?: string;
|
|
1054
1054
|
index?: number | string | null;
|
|
@@ -1058,8 +1058,8 @@ declare type FileStoreParams = {
|
|
|
1058
1058
|
date?: string | null;
|
|
1059
1059
|
size?: number | null;
|
|
1060
1060
|
file?: File | null;
|
|
1061
|
-
uploadStatus?: LoadStatus;
|
|
1062
|
-
uploadedData?: UploadedFileParams;
|
|
1061
|
+
uploadStatus?: LoadStatus$1;
|
|
1062
|
+
uploadedData?: UploadedFileParams$1;
|
|
1063
1063
|
smallImageUrl?: string;
|
|
1064
1064
|
mediumImageUrl?: string;
|
|
1065
1065
|
largeImageUrl?: string;
|
|
@@ -1109,8 +1109,8 @@ declare type UploadFileParams = {
|
|
|
1109
1109
|
title?: string;
|
|
1110
1110
|
url?: string;
|
|
1111
1111
|
};
|
|
1112
|
-
declare type LoadStatus = "loading" | "success" | "failure" | "default" | "error";
|
|
1113
|
-
declare type FileVariant = "image" | "document";
|
|
1112
|
+
declare type LoadStatus$1 = "loading" | "success" | "failure" | "default" | "error";
|
|
1113
|
+
declare type FileVariant$1 = "image" | "document";
|
|
1114
1114
|
declare type ClientSimpleParams = {
|
|
1115
1115
|
id?: number;
|
|
1116
1116
|
name?: string;
|
|
@@ -1705,6 +1705,206 @@ declare type TariffGroupLiteParams = {
|
|
|
1705
1705
|
name: string;
|
|
1706
1706
|
};
|
|
1707
1707
|
|
|
1708
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1709
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1710
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1711
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1712
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1713
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1714
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1715
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1716
|
+
declare type FileBodyRequest$1 = {
|
|
1717
|
+
temp_file_id?: number;
|
|
1718
|
+
name: string;
|
|
1719
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1720
|
+
url?: string;
|
|
1721
|
+
};
|
|
1722
|
+
declare type ImageBodyRequest$1 = {
|
|
1723
|
+
temp_file_id: number;
|
|
1724
|
+
image_name: string;
|
|
1725
|
+
url: string;
|
|
1726
|
+
};
|
|
1727
|
+
declare type VideoBodyRequest$1 = {
|
|
1728
|
+
temp_file_id: number;
|
|
1729
|
+
file_name: string;
|
|
1730
|
+
url: string;
|
|
1731
|
+
};
|
|
1732
|
+
declare type ImageModel$1 = {
|
|
1733
|
+
id: number;
|
|
1734
|
+
image_name?: string;
|
|
1735
|
+
image_url?: string;
|
|
1736
|
+
image_small_url: string;
|
|
1737
|
+
image_medium_url: string;
|
|
1738
|
+
image_large_url: string;
|
|
1739
|
+
size: number;
|
|
1740
|
+
};
|
|
1741
|
+
declare type FileModel$1 = {
|
|
1742
|
+
id: number;
|
|
1743
|
+
name: string;
|
|
1744
|
+
size: number;
|
|
1745
|
+
url: string;
|
|
1746
|
+
};
|
|
1747
|
+
declare type DocumentModel$1 = {
|
|
1748
|
+
pk: number;
|
|
1749
|
+
name: string;
|
|
1750
|
+
created?: string;
|
|
1751
|
+
attachment: string;
|
|
1752
|
+
size: number;
|
|
1753
|
+
uploaded_by?: string | null;
|
|
1754
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1755
|
+
};
|
|
1756
|
+
|
|
1757
|
+
type FileWithVisibility$1 = {
|
|
1758
|
+
file: File | null
|
|
1759
|
+
tenant: boolean
|
|
1760
|
+
landlord: boolean
|
|
1761
|
+
visibility: DocumentVisibilityVariants
|
|
1762
|
+
url: string
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
type InputFileWithVisibilityFields$1 =
|
|
1766
|
+
| FileWithVisibility$1
|
|
1767
|
+
| DocumentWithVisibility
|
|
1768
|
+
| null
|
|
1769
|
+
| undefined
|
|
1770
|
+
|
|
1771
|
+
type CompanyAutocompleteFields$1 = {
|
|
1772
|
+
id: number
|
|
1773
|
+
name: string
|
|
1774
|
+
logo?: string | null
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1778
|
+
id: number | null;
|
|
1779
|
+
index?: number | null;
|
|
1780
|
+
name: string;
|
|
1781
|
+
url: string;
|
|
1782
|
+
smallImageUrl?: string;
|
|
1783
|
+
mediumImageUrl?: string;
|
|
1784
|
+
largeImageUrl?: string;
|
|
1785
|
+
date: DateTime | null;
|
|
1786
|
+
size: number | null;
|
|
1787
|
+
createdBy: string;
|
|
1788
|
+
visibility?: DocumentVisibilityVariants;
|
|
1789
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1790
|
+
extension: string;
|
|
1791
|
+
file?: File | null;
|
|
1792
|
+
uploadStatus: LoadStatus;
|
|
1793
|
+
uploadedData: UploadedFileParams;
|
|
1794
|
+
loader: Loader;
|
|
1795
|
+
withFileCleanUp?: boolean;
|
|
1796
|
+
isVideo?: boolean;
|
|
1797
|
+
constructor(file: FileStoreParams, filesStore?: FilesStoreInterface$1 | null, withFileCleanUp?: boolean);
|
|
1798
|
+
uploadFile: (variant: FileVariant) => Promise<void>;
|
|
1799
|
+
updateUploadStatus: (status: LoadStatus) => void;
|
|
1800
|
+
updateUploadedData: (data: UploadedFileParams) => void;
|
|
1801
|
+
editFile: (data: any) => void;
|
|
1802
|
+
deleteFile: () => void;
|
|
1803
|
+
updateName: (name: string) => void;
|
|
1804
|
+
updateStore: (data: unknown) => void;
|
|
1805
|
+
setIndex: (index: number) => void;
|
|
1806
|
+
get title(): string;
|
|
1807
|
+
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1808
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1809
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1810
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1811
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1812
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1813
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
type PartialPayerFields$1 = {
|
|
1817
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1818
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1819
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1820
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1821
|
+
refundValue?: number | string | null
|
|
1822
|
+
utilityType: UtilityTypes$1
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
declare type FilesStoreInterface$1 = {
|
|
1826
|
+
editFile: (id: number, data: any, callback: () => void) => void;
|
|
1827
|
+
deleteFile: (id: number) => void;
|
|
1828
|
+
};
|
|
1829
|
+
declare type FileStoreInterface$1 = {
|
|
1830
|
+
id: number | null;
|
|
1831
|
+
name: string;
|
|
1832
|
+
url: string;
|
|
1833
|
+
date: DateTime | null;
|
|
1834
|
+
size: number | null;
|
|
1835
|
+
createdBy: string;
|
|
1836
|
+
visibility?: DocumentVisibilityVariants;
|
|
1837
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1838
|
+
editFile?: (data: any) => void;
|
|
1839
|
+
deleteFile?: () => void;
|
|
1840
|
+
extension: string;
|
|
1841
|
+
title: string;
|
|
1842
|
+
};
|
|
1843
|
+
declare type DocumentVisibilityVariants = "everybody" | "tenant" | "landlord" | "nobody";
|
|
1844
|
+
declare type DocumentWithVisibility = {
|
|
1845
|
+
id: number | null;
|
|
1846
|
+
name: string;
|
|
1847
|
+
url: string;
|
|
1848
|
+
date: DateTime | null;
|
|
1849
|
+
size: number | null;
|
|
1850
|
+
createdBy: string;
|
|
1851
|
+
visibility?: DocumentVisibilityVariants;
|
|
1852
|
+
extension: string;
|
|
1853
|
+
};
|
|
1854
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1855
|
+
declare type FileStoreParams = {
|
|
1856
|
+
id?: number | null;
|
|
1857
|
+
url?: string;
|
|
1858
|
+
index?: number | string | null;
|
|
1859
|
+
createdBy?: string | null;
|
|
1860
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1861
|
+
name?: string;
|
|
1862
|
+
date?: string | null;
|
|
1863
|
+
size?: number | null;
|
|
1864
|
+
file?: File | null;
|
|
1865
|
+
uploadStatus?: LoadStatus;
|
|
1866
|
+
uploadedData?: UploadedFileParams;
|
|
1867
|
+
smallImageUrl?: string;
|
|
1868
|
+
mediumImageUrl?: string;
|
|
1869
|
+
largeImageUrl?: string;
|
|
1870
|
+
isVideo?: boolean;
|
|
1871
|
+
};
|
|
1872
|
+
declare type LoadStatus = "loading" | "success" | "failure" | "default" | "error";
|
|
1873
|
+
declare type FileVariant = "image" | "document";
|
|
1874
|
+
|
|
1875
|
+
type TariffGroupAutocompleteFields = {
|
|
1876
|
+
id: number
|
|
1877
|
+
name: string
|
|
1878
|
+
type?: string
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
type BasicMeterFeaturesFormFields = {
|
|
1882
|
+
number: string
|
|
1883
|
+
startDate: DateTime | null
|
|
1884
|
+
initialValue?: number
|
|
1885
|
+
initialValueT1?: number
|
|
1886
|
+
initialValueT2?: number
|
|
1887
|
+
initialValueT3?: number
|
|
1888
|
+
type?: MeterTypes$1
|
|
1889
|
+
resource?: ResourceTypes$1
|
|
1890
|
+
withAutoSending?: boolean
|
|
1891
|
+
}
|
|
1892
|
+
|
|
1893
|
+
type MeterFeaturesFormFields = {
|
|
1894
|
+
tariff: TariffGroupAutocompleteFields | null
|
|
1895
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1896
|
+
nextCheck: DateTime | null
|
|
1897
|
+
lastValue?: number
|
|
1898
|
+
lastValueT1?: number
|
|
1899
|
+
lastValueT2?: number
|
|
1900
|
+
lastValueT3?: number
|
|
1901
|
+
replaceableCounter?: string | number
|
|
1902
|
+
meterPayer?: PartialPayerFields$1
|
|
1903
|
+
operationalAccountNumber?: string | null
|
|
1904
|
+
archived?: boolean
|
|
1905
|
+
tariffChangeDate?: DateTime | null
|
|
1906
|
+
} & BasicMeterFeaturesFormFields
|
|
1907
|
+
|
|
1708
1908
|
declare type MeterValues = {
|
|
1709
1909
|
initialValue?: number | string | null;
|
|
1710
1910
|
lastValue?: number | string | null;
|
|
@@ -1713,7 +1913,13 @@ declare type ApartmentMeterValues = {
|
|
|
1713
1913
|
T1?: MeterValues;
|
|
1714
1914
|
T2?: MeterValues;
|
|
1715
1915
|
T3?: MeterValues;
|
|
1716
|
-
} & MeterValues;
|
|
1916
|
+
} & MeterValues;
|
|
1917
|
+
declare type InspectionMeterFields = {
|
|
1918
|
+
id?: number;
|
|
1919
|
+
resource: ResourceTypes$1;
|
|
1920
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1921
|
+
images: FileStore$1[];
|
|
1922
|
+
} & MeterFeaturesFormFields;
|
|
1717
1923
|
|
|
1718
1924
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
1719
1925
|
declare type InspectionFeedbackParams = {
|
|
@@ -1819,7 +2025,18 @@ declare type ApartmentResourceCompanyDetails = {
|
|
|
1819
2025
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1820
2026
|
access: ResourceAccessParams;
|
|
1821
2027
|
sampleReceiptLink: string;
|
|
1822
|
-
};
|
|
2028
|
+
};
|
|
2029
|
+
declare type ApartmentResourceInterface = {
|
|
2030
|
+
type: ApartmentResourceTypes;
|
|
2031
|
+
name?: string;
|
|
2032
|
+
companyDetails: ApartmentResourceCompanyDetails | null;
|
|
2033
|
+
editResource?: () => Promise<void>;
|
|
2034
|
+
deleteResource?: () => Promise<void>;
|
|
2035
|
+
isFixedResource?: boolean;
|
|
2036
|
+
};
|
|
2037
|
+
declare type ApartmentResourceFieldsParams = {
|
|
2038
|
+
meters?: InspectionMeterFields[];
|
|
2039
|
+
} & ApartmentResourceInterface;
|
|
1823
2040
|
|
|
1824
2041
|
declare type FilesStoreInterface = {
|
|
1825
2042
|
editFile: (id: number, data: any, callback: () => void) => void;
|
|
@@ -1832,7 +2049,7 @@ declare type FileStoreInterface = {
|
|
|
1832
2049
|
date: DateTime | null;
|
|
1833
2050
|
size: number | null;
|
|
1834
2051
|
createdBy: string;
|
|
1835
|
-
visibility?: DocumentVisibilityVariants;
|
|
2052
|
+
visibility?: DocumentVisibilityVariants$1;
|
|
1836
2053
|
filesStore?: FilesStoreInterface | null;
|
|
1837
2054
|
editFile?: (data: any) => void;
|
|
1838
2055
|
deleteFile?: () => void;
|
|
@@ -1868,4 +2085,4 @@ declare type MetroStationParams = {
|
|
|
1868
2085
|
status: string;
|
|
1869
2086
|
};
|
|
1870
2087
|
|
|
1871
|
-
export { APISubjectRoles, ActivateConditions, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, CatalogItemModel, CatalogItemParams, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, CommonTariffModel, CompanyAPITypes, CompanyByTinRequestBody, CompanyInfoModel, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CounterpartyModel, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, DistrictModel, DistrictParams, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, EmptyType, EntityLinkParams, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStoreInterface, FileStoreParams, FileVariant, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagModel, FillingTagParams, FillingTypes, FixedCostModel, FixedCostParams, FullInspectionCommonFields, GasMetersResponse, GasTypes, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GroupedFillingParams, HeatingMetersResponse, HouseInfoModelFields, HouseTypes, ImageBodyRequest, ImageModel, ImageParams, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, InitialInspectionModel, InitialInspectionModelFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, LatLonParams, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, MaxMetersInfoParams, MeterCommonInfoModel, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OverlapTypes, PaginationRes, ParkingTypes, PartialMeterInfoParams, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, RegionModel, RegionParams, RegularInspectionFields, RegularInspectionModel, RenovationParams, RenovationStyle, RenovationType, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, RoomModel, RoomParams, RoomType, RoomTypes, RoommateParams, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInParams, SingleMeterParams, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TagModel, TariffGroupLiteParams, TariffLinkModel, TariffStatuses, TaxResidenceType, TaxesTypes, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, UnitOfPaymentTypes, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UploadedFileParams, UsedResourcesModel, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WifiParams };
|
|
2088
|
+
export { APISubjectRoles, ActivateConditions, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, CatalogItemModel, CatalogItemParams, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, CommonTariffModel, CompanyAPITypes, CompanyByTinRequestBody, CompanyInfoModel, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CounterpartyModel, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, DistrictModel, DistrictParams, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants$1 as DocumentVisibilityVariants, DocumentWithVisibility$1 as DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, EmptyType, EntityLinkParams, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStoreInterface, FileStoreParams$1 as FileStoreParams, FileVariant$1 as FileVariant, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagModel, FillingTagParams, FillingTypes, FixedCostModel, FixedCostParams, FullInspectionCommonFields, GasMetersResponse, GasTypes, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GroupedFillingParams, HeatingMetersResponse, HouseInfoModelFields, HouseTypes, ImageBodyRequest, ImageModel, ImageParams, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, InitialInspectionModel, InitialInspectionModelFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, LatLonParams, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus$1 as LoadStatus, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, MaxMetersInfoParams, MeterCommonInfoModel, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OverlapTypes, PaginationRes, ParkingTypes, PartialMeterInfoParams, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, RegionModel, RegionParams, RegularInspectionFields, RegularInspectionModel, RenovationParams, RenovationStyle, RenovationType, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, RoomModel, RoomParams, RoomType, RoomTypes, RoommateParams, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInParams, SingleMeterParams, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TagModel, TariffGroupLiteParams, TariffLinkModel, TariffStatuses, TaxResidenceType, TaxesTypes, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, UnitOfPaymentTypes, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UploadedFileParams$1 as UploadedFileParams, UsedResourcesModel, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WifiParams };
|