kui-crm 0.0.268 → 0.0.269
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/index.d.ts +94 -94
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -193,7 +193,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
193
193
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
194
194
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
195
195
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
196
|
-
declare type DocumentVisibilityAPIVariants
|
|
196
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
197
197
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
198
198
|
declare type ContractLinkModel = {
|
|
199
199
|
id: number;
|
|
@@ -228,7 +228,7 @@ declare type ApartmentLinkModel = {
|
|
|
228
228
|
address: string;
|
|
229
229
|
object_name?: string;
|
|
230
230
|
apartment_number?: string;
|
|
231
|
-
main_image: ImageModel
|
|
231
|
+
main_image: ImageModel | null;
|
|
232
232
|
folder_number?: string;
|
|
233
233
|
};
|
|
234
234
|
declare type ApartmentSimpleModel = {
|
|
@@ -238,7 +238,7 @@ declare type LiteObjectModel = {
|
|
|
238
238
|
id: number;
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
|
-
main_image: ImageModel
|
|
241
|
+
main_image: ImageModel | null;
|
|
242
242
|
};
|
|
243
243
|
declare type AdministrativeCompanyModel = {
|
|
244
244
|
id: number;
|
|
@@ -256,12 +256,12 @@ declare type UtilityPayerModel = {
|
|
|
256
256
|
refund_value?: number | string;
|
|
257
257
|
value_type?: UnitOfPaymentTypes;
|
|
258
258
|
};
|
|
259
|
-
declare type FileBodyRequest
|
|
259
|
+
declare type FileBodyRequest = {
|
|
260
260
|
temp_file_id?: number;
|
|
261
261
|
name: string;
|
|
262
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
262
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
263
263
|
};
|
|
264
|
-
declare type ImageBodyRequest
|
|
264
|
+
declare type ImageBodyRequest = {
|
|
265
265
|
temp_file_id: number;
|
|
266
266
|
image_name: string;
|
|
267
267
|
};
|
|
@@ -269,7 +269,7 @@ declare type UploadFileResponse = {
|
|
|
269
269
|
id: number;
|
|
270
270
|
upload: string;
|
|
271
271
|
};
|
|
272
|
-
declare type ImageModel
|
|
272
|
+
declare type ImageModel = {
|
|
273
273
|
id: number;
|
|
274
274
|
image_name?: string;
|
|
275
275
|
image_url?: string;
|
|
@@ -278,20 +278,20 @@ declare type ImageModel$1 = {
|
|
|
278
278
|
image_large_url: string;
|
|
279
279
|
size: number;
|
|
280
280
|
};
|
|
281
|
-
declare type FileModel
|
|
281
|
+
declare type FileModel = {
|
|
282
282
|
id: number;
|
|
283
283
|
name: string;
|
|
284
284
|
size: number;
|
|
285
285
|
url: string;
|
|
286
286
|
};
|
|
287
|
-
declare type DocumentModel
|
|
287
|
+
declare type DocumentModel = {
|
|
288
288
|
pk: number;
|
|
289
289
|
name: string;
|
|
290
290
|
created?: string;
|
|
291
291
|
attachment: string;
|
|
292
292
|
size: number;
|
|
293
293
|
uploaded_by?: string | null;
|
|
294
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
294
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
295
295
|
};
|
|
296
296
|
declare type PatchDocumentRequest = {
|
|
297
297
|
name: string;
|
|
@@ -299,7 +299,7 @@ declare type PatchDocumentRequest = {
|
|
|
299
299
|
declare type PatchFileParams = {
|
|
300
300
|
id: number;
|
|
301
301
|
name: string;
|
|
302
|
-
visibility: DocumentVisibilityAPIVariants
|
|
302
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
303
303
|
};
|
|
304
304
|
declare type PaginationRes<T> = {
|
|
305
305
|
count: number;
|
|
@@ -371,8 +371,8 @@ declare type InspectionFillingModel = {
|
|
|
371
371
|
description: string;
|
|
372
372
|
serial_code: string;
|
|
373
373
|
amount: number;
|
|
374
|
-
photos: ImageModel
|
|
375
|
-
instruction: DocumentModel
|
|
374
|
+
photos: ImageModel[];
|
|
375
|
+
instruction: DocumentModel;
|
|
376
376
|
is_absent: boolean;
|
|
377
377
|
previously_absent: boolean;
|
|
378
378
|
model: string;
|
|
@@ -452,7 +452,7 @@ declare type CommonMeterParams = {
|
|
|
452
452
|
company: CompanyLiteParams;
|
|
453
453
|
operating_account_number?: string | null;
|
|
454
454
|
company_is_administrative: boolean;
|
|
455
|
-
photos?: ImageModel
|
|
455
|
+
photos?: ImageModel[];
|
|
456
456
|
auto_sending: boolean;
|
|
457
457
|
no_tariff: boolean;
|
|
458
458
|
is_avg: boolean;
|
|
@@ -651,14 +651,14 @@ declare type ApiTokenAuthResponse = {
|
|
|
651
651
|
};
|
|
652
652
|
|
|
653
653
|
declare type InspectionRoomPhotoTypes = "kitchen" | "bathroom" | "room" | "bedroom" | "entrance" | "others" | "toilet" | "combined_bathroom" | "keys" | "additional" | "parking";
|
|
654
|
-
declare type TransferInspectionTypes = "maroom_tenant" | "tenant_maroom" | "maroom_landlord";
|
|
654
|
+
declare type TransferInspectionTypes = "maroom_tenant" | "tenant_maroom" | "maroom_landlord" | "tenant_landlord";
|
|
655
655
|
declare type InspectionFillingParams = {
|
|
656
656
|
feature: number;
|
|
657
657
|
description?: string;
|
|
658
658
|
serial_code?: string;
|
|
659
659
|
amount?: number | string | null;
|
|
660
|
-
photos: ImageBodyRequest
|
|
661
|
-
instruction?: FileBodyRequest
|
|
660
|
+
photos: ImageBodyRequest[];
|
|
661
|
+
instruction?: FileBodyRequest | null;
|
|
662
662
|
was_missing?: boolean;
|
|
663
663
|
};
|
|
664
664
|
declare type InspectionMeterValueModel = {
|
|
@@ -679,7 +679,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
679
679
|
uploaded: boolean;
|
|
680
680
|
purpose: InspectionRoomPhotoTypes;
|
|
681
681
|
comment?: string;
|
|
682
|
-
photos: ImageModel
|
|
682
|
+
photos: ImageModel[];
|
|
683
683
|
room_order_number?: number | null;
|
|
684
684
|
};
|
|
685
685
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed";
|
|
@@ -709,10 +709,10 @@ declare type FullInspectionCommonFields = {
|
|
|
709
709
|
} & ApartmentModel;
|
|
710
710
|
declare type InspectionMeterCommonInfo = {
|
|
711
711
|
resource_type: ResourceTypes;
|
|
712
|
-
passport: FileModel
|
|
712
|
+
passport: FileModel | null;
|
|
713
713
|
meter_type: MeterTypes;
|
|
714
714
|
operating_account: string;
|
|
715
|
-
photos: ImageModel
|
|
715
|
+
photos: ImageModel[];
|
|
716
716
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
717
717
|
declare type TransferInspectionMeterModel = {
|
|
718
718
|
values: InspectionMeterValueModel;
|
|
@@ -728,7 +728,7 @@ declare type RegularInspectionFields = {
|
|
|
728
728
|
declare type ComparableObjectModel = {
|
|
729
729
|
id: number;
|
|
730
730
|
advertisement_link: string;
|
|
731
|
-
advertisement_screenshot: ImageModel
|
|
731
|
+
advertisement_screenshot: ImageModel | null;
|
|
732
732
|
object_price: string;
|
|
733
733
|
key_object_differences: string;
|
|
734
734
|
};
|
|
@@ -736,7 +736,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
736
736
|
id: number;
|
|
737
737
|
source_name: string;
|
|
738
738
|
link: string;
|
|
739
|
-
screenshot: ImageModel
|
|
739
|
+
screenshot: ImageModel | null;
|
|
740
740
|
min_price: string;
|
|
741
741
|
max_price: string;
|
|
742
742
|
};
|
|
@@ -775,11 +775,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
775
775
|
declare type ImpairmentModel = {
|
|
776
776
|
id: number;
|
|
777
777
|
impairment_type: ImpairmentType;
|
|
778
|
-
proof_file: DocumentModel
|
|
778
|
+
proof_file: DocumentModel | null;
|
|
779
779
|
price: number;
|
|
780
780
|
solution: string;
|
|
781
781
|
description: string;
|
|
782
|
-
photos: ImageModel
|
|
782
|
+
photos: ImageModel[];
|
|
783
783
|
item_link: string;
|
|
784
784
|
};
|
|
785
785
|
declare type MetroStationsFields = {
|
|
@@ -953,7 +953,7 @@ declare namespace CompanyAutocomplete {
|
|
|
953
953
|
}
|
|
954
954
|
declare const _default$l: typeof CompanyAutocomplete;
|
|
955
955
|
|
|
956
|
-
declare class FileStore
|
|
956
|
+
declare class FileStore implements FileStoreInterface {
|
|
957
957
|
id: number | null;
|
|
958
958
|
index?: number;
|
|
959
959
|
name: string;
|
|
@@ -962,27 +962,27 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
962
962
|
size: number | null;
|
|
963
963
|
createdBy: string;
|
|
964
964
|
visibility?: DocumentVisibilityVariants;
|
|
965
|
-
filesStore?: FilesStoreInterface
|
|
965
|
+
filesStore?: FilesStoreInterface | null;
|
|
966
966
|
extension: string;
|
|
967
967
|
file?: File;
|
|
968
968
|
uploadStatus: LoadStatus;
|
|
969
|
-
uploadedData: FileBodyRequest
|
|
969
|
+
uploadedData: FileBodyRequest | ImageBodyRequest | null;
|
|
970
970
|
loader: Loader;
|
|
971
|
-
constructor(file: FileStoreParams, filesStore?: FilesStoreInterface
|
|
971
|
+
constructor(file: FileStoreParams, filesStore?: FilesStoreInterface);
|
|
972
972
|
uploadFile: (variant: FileVariant) => Promise<void>;
|
|
973
973
|
updateUploadStatus: (status: LoadStatus) => void;
|
|
974
|
-
updateUploadedData: (data: FileBodyRequest
|
|
974
|
+
updateUploadedData: (data: FileBodyRequest | ImageBodyRequest) => void;
|
|
975
975
|
editFile: (data: any) => void;
|
|
976
976
|
deleteFile: () => void;
|
|
977
977
|
updateName: (name: string) => void;
|
|
978
978
|
updateStore: (data: unknown) => void;
|
|
979
979
|
setIndex: (index: number) => void;
|
|
980
980
|
get title(): string;
|
|
981
|
-
static initFromFileModel: (file: FileModel
|
|
982
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
983
|
-
static initFromImageModel: (file: ImageModel
|
|
984
|
-
static initFromFile: (file: File, index: number) => FileStore
|
|
985
|
-
static initFromFileStore: (file: FileStore
|
|
981
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
982
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
983
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined) => FileStore;
|
|
984
|
+
static initFromFile: (file: File, index: number) => FileStore;
|
|
985
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
986
986
|
}
|
|
987
987
|
|
|
988
988
|
declare type ImageParams = {
|
|
@@ -1015,7 +1015,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1015
1015
|
delete: () => Promise<void>;
|
|
1016
1016
|
get extension(): string;
|
|
1017
1017
|
get title(): string;
|
|
1018
|
-
static initFromImageModel: (image: ImageModel
|
|
1018
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1019
1019
|
}
|
|
1020
1020
|
|
|
1021
1021
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1166,7 +1166,7 @@ declare type InspectionMeterInfoParams = {
|
|
|
1166
1166
|
company: CompanyLiteParams;
|
|
1167
1167
|
operationalAccountNumber?: string | null;
|
|
1168
1168
|
tariff: EntityLinkParams | null;
|
|
1169
|
-
passportFile: FileStore
|
|
1169
|
+
passportFile: FileStore | null;
|
|
1170
1170
|
initialValue?: number;
|
|
1171
1171
|
lastValue?: number;
|
|
1172
1172
|
initialValueT1?: number;
|
|
@@ -1200,7 +1200,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1200
1200
|
declare type ComparableObjectParams = {
|
|
1201
1201
|
id: number;
|
|
1202
1202
|
link: string;
|
|
1203
|
-
screenshot: FileStore
|
|
1203
|
+
screenshot: FileStore | null;
|
|
1204
1204
|
price: number;
|
|
1205
1205
|
differences: string;
|
|
1206
1206
|
};
|
|
@@ -1208,7 +1208,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1208
1208
|
id: number;
|
|
1209
1209
|
dataSourceName: string;
|
|
1210
1210
|
link: string;
|
|
1211
|
-
screenshot: FileStore
|
|
1211
|
+
screenshot: FileStore | null;
|
|
1212
1212
|
minPrice: number;
|
|
1213
1213
|
maxPrice: number;
|
|
1214
1214
|
};
|
|
@@ -1234,7 +1234,7 @@ declare type FillingInfoFormFields = {
|
|
|
1234
1234
|
description?: string;
|
|
1235
1235
|
type?: ApartmentFillingVariants | null;
|
|
1236
1236
|
instruction?: InputFileWithVisibilityFields;
|
|
1237
|
-
tempImages?: ImageBodyRequest
|
|
1237
|
+
tempImages?: ImageBodyRequest[];
|
|
1238
1238
|
};
|
|
1239
1239
|
|
|
1240
1240
|
declare function InputFileWithVisibility<T extends FieldValues>(props: InputFileProps<T>): JSX.Element | null;
|
|
@@ -1277,11 +1277,11 @@ declare type InspectionFeedbackParams = {
|
|
|
1277
1277
|
comment?: string;
|
|
1278
1278
|
};
|
|
1279
1279
|
|
|
1280
|
-
declare type FilesStoreInterface
|
|
1280
|
+
declare type FilesStoreInterface = {
|
|
1281
1281
|
editFile: (id: number, data: any, callback: () => void) => void;
|
|
1282
1282
|
deleteFile: (id: number) => void;
|
|
1283
1283
|
};
|
|
1284
|
-
declare type FileStoreInterface
|
|
1284
|
+
declare type FileStoreInterface = {
|
|
1285
1285
|
id: number | null;
|
|
1286
1286
|
name: string;
|
|
1287
1287
|
url: string;
|
|
@@ -1289,7 +1289,7 @@ declare type FileStoreInterface$1 = {
|
|
|
1289
1289
|
size: number | null;
|
|
1290
1290
|
createdBy: string;
|
|
1291
1291
|
visibility?: DocumentVisibilityVariants;
|
|
1292
|
-
filesStore?: FilesStoreInterface
|
|
1292
|
+
filesStore?: FilesStoreInterface | null;
|
|
1293
1293
|
editFile?: (data: any) => void;
|
|
1294
1294
|
deleteFile?: () => void;
|
|
1295
1295
|
extension: string;
|
|
@@ -1300,12 +1300,12 @@ declare type DocumentsStoreInterface = {
|
|
|
1300
1300
|
loader: Loader;
|
|
1301
1301
|
};
|
|
1302
1302
|
declare type DocumentAgentInterface = {
|
|
1303
|
-
postDocument: (body: any, ...params: any) => Promise<DocumentModel
|
|
1304
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1305
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1303
|
+
postDocument: (body: any, ...params: any) => Promise<DocumentModel>;
|
|
1304
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1305
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1306
1306
|
};
|
|
1307
1307
|
declare type DocumentsAgentInterface = {
|
|
1308
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1308
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1309
1309
|
} & DocumentAgentInterface;
|
|
1310
1310
|
|
|
1311
1311
|
type CompanyCreationFields = {
|
|
@@ -1362,7 +1362,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1362
1362
|
};
|
|
1363
1363
|
declare type ApartmentDocumentModel = {
|
|
1364
1364
|
id: number;
|
|
1365
|
-
document: DocumentModel
|
|
1365
|
+
document: DocumentModel;
|
|
1366
1366
|
expiration_date: string;
|
|
1367
1367
|
start_date: string;
|
|
1368
1368
|
number: string;
|
|
@@ -1487,7 +1487,7 @@ declare type ApartmentModel = {
|
|
|
1487
1487
|
owner_id: number;
|
|
1488
1488
|
metro_stations: ApartmentMetroParams[];
|
|
1489
1489
|
rental_status: RentalStatuses;
|
|
1490
|
-
main_image: ImageModel
|
|
1490
|
+
main_image: ImageModel;
|
|
1491
1491
|
tv_type: TVTypes | null;
|
|
1492
1492
|
inspection: ApartmentInspectionModel;
|
|
1493
1493
|
distance_to_center_kilometers: number | null;
|
|
@@ -1512,7 +1512,7 @@ declare type ApartmentLiteModel = {
|
|
|
1512
1512
|
renter: LiteUserModel | null;
|
|
1513
1513
|
rental_status: RentalStatuses;
|
|
1514
1514
|
renter_payment_status: PaymentStatuses;
|
|
1515
|
-
main_image: ImageModel
|
|
1515
|
+
main_image: ImageModel;
|
|
1516
1516
|
service_contract?: ServiceContractLiteModel;
|
|
1517
1517
|
is_imported_from_old_crm?: boolean;
|
|
1518
1518
|
max_electricity_counters?: number | null;
|
|
@@ -1558,7 +1558,7 @@ declare type ObjectForMapModel = {
|
|
|
1558
1558
|
apartment_number: string;
|
|
1559
1559
|
address: string;
|
|
1560
1560
|
geolocation: LatLonParams;
|
|
1561
|
-
main_image: ImageModel
|
|
1561
|
+
main_image: ImageModel;
|
|
1562
1562
|
renter: ClientLiteModel | null;
|
|
1563
1563
|
owner: ClientLiteModel;
|
|
1564
1564
|
metro_stations: MetroStationModel[];
|
|
@@ -1573,17 +1573,17 @@ declare type FillingTagModel = {
|
|
|
1573
1573
|
feature_type: FillingTypes;
|
|
1574
1574
|
};
|
|
1575
1575
|
|
|
1576
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1577
|
-
declare type FileBodyRequest = {
|
|
1576
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1577
|
+
declare type FileBodyRequest$1 = {
|
|
1578
1578
|
temp_file_id?: number;
|
|
1579
1579
|
name: string;
|
|
1580
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1580
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1581
1581
|
};
|
|
1582
|
-
declare type ImageBodyRequest = {
|
|
1582
|
+
declare type ImageBodyRequest$1 = {
|
|
1583
1583
|
temp_file_id: number;
|
|
1584
1584
|
image_name: string;
|
|
1585
1585
|
};
|
|
1586
|
-
declare type ImageModel = {
|
|
1586
|
+
declare type ImageModel$1 = {
|
|
1587
1587
|
id: number;
|
|
1588
1588
|
image_name?: string;
|
|
1589
1589
|
image_url?: string;
|
|
@@ -1592,23 +1592,23 @@ declare type ImageModel = {
|
|
|
1592
1592
|
image_large_url: string;
|
|
1593
1593
|
size: number;
|
|
1594
1594
|
};
|
|
1595
|
-
declare type FileModel = {
|
|
1595
|
+
declare type FileModel$1 = {
|
|
1596
1596
|
id: number;
|
|
1597
1597
|
name: string;
|
|
1598
1598
|
size: number;
|
|
1599
1599
|
url: string;
|
|
1600
1600
|
};
|
|
1601
|
-
declare type DocumentModel = {
|
|
1601
|
+
declare type DocumentModel$1 = {
|
|
1602
1602
|
pk: number;
|
|
1603
1603
|
name: string;
|
|
1604
1604
|
created?: string;
|
|
1605
1605
|
attachment: string;
|
|
1606
1606
|
size: number;
|
|
1607
1607
|
uploaded_by?: string | null;
|
|
1608
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1608
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1609
1609
|
};
|
|
1610
1610
|
|
|
1611
|
-
declare class FileStore implements FileStoreInterface {
|
|
1611
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1612
1612
|
id: number | null;
|
|
1613
1613
|
index?: number;
|
|
1614
1614
|
name: string;
|
|
@@ -1617,34 +1617,34 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1617
1617
|
size: number | null;
|
|
1618
1618
|
createdBy: string;
|
|
1619
1619
|
visibility?: DocumentVisibilityVariants$1;
|
|
1620
|
-
filesStore?: FilesStoreInterface | null;
|
|
1620
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1621
1621
|
extension: string;
|
|
1622
1622
|
file?: File;
|
|
1623
1623
|
uploadStatus: LoadStatus$1;
|
|
1624
|
-
uploadedData: FileBodyRequest | ImageBodyRequest | null;
|
|
1624
|
+
uploadedData: FileBodyRequest$1 | ImageBodyRequest$1 | null;
|
|
1625
1625
|
loader: Loader;
|
|
1626
|
-
constructor(file: FileStoreParams$1, filesStore?: FilesStoreInterface);
|
|
1626
|
+
constructor(file: FileStoreParams$1, filesStore?: FilesStoreInterface$1);
|
|
1627
1627
|
uploadFile: (variant: FileVariant$1) => Promise<void>;
|
|
1628
1628
|
updateUploadStatus: (status: LoadStatus$1) => void;
|
|
1629
|
-
updateUploadedData: (data: FileBodyRequest | ImageBodyRequest) => void;
|
|
1629
|
+
updateUploadedData: (data: FileBodyRequest$1 | ImageBodyRequest$1) => void;
|
|
1630
1630
|
editFile: (data: any) => void;
|
|
1631
1631
|
deleteFile: () => void;
|
|
1632
1632
|
updateName: (name: string) => void;
|
|
1633
1633
|
updateStore: (data: unknown) => void;
|
|
1634
1634
|
setIndex: (index: number) => void;
|
|
1635
1635
|
get title(): string;
|
|
1636
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1637
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1638
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined) => FileStore;
|
|
1639
|
-
static initFromFile: (file: File, index: number) => FileStore;
|
|
1640
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1636
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1637
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1638
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined) => FileStore$1;
|
|
1639
|
+
static initFromFile: (file: File, index: number) => FileStore$1;
|
|
1640
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1641
1641
|
}
|
|
1642
1642
|
|
|
1643
|
-
declare type FilesStoreInterface = {
|
|
1643
|
+
declare type FilesStoreInterface$1 = {
|
|
1644
1644
|
editFile: (id: number, data: any, callback: () => void) => void;
|
|
1645
1645
|
deleteFile: (id: number) => void;
|
|
1646
1646
|
};
|
|
1647
|
-
declare type FileStoreInterface = {
|
|
1647
|
+
declare type FileStoreInterface$1 = {
|
|
1648
1648
|
id: number | null;
|
|
1649
1649
|
name: string;
|
|
1650
1650
|
url: string;
|
|
@@ -1652,7 +1652,7 @@ declare type FileStoreInterface = {
|
|
|
1652
1652
|
size: number | null;
|
|
1653
1653
|
createdBy: string;
|
|
1654
1654
|
visibility?: DocumentVisibilityVariants$1;
|
|
1655
|
-
filesStore?: FilesStoreInterface | null;
|
|
1655
|
+
filesStore?: FilesStoreInterface$1 | null;
|
|
1656
1656
|
editFile?: (data: any) => void;
|
|
1657
1657
|
deleteFile?: () => void;
|
|
1658
1658
|
extension: string;
|
|
@@ -1664,13 +1664,13 @@ declare type FileStoreParams$1 = {
|
|
|
1664
1664
|
url?: string;
|
|
1665
1665
|
index?: number | string | null;
|
|
1666
1666
|
createdBy?: string | null;
|
|
1667
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1667
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1668
1668
|
name?: string;
|
|
1669
1669
|
date?: string | null;
|
|
1670
1670
|
size?: number | null;
|
|
1671
1671
|
file?: File | null;
|
|
1672
1672
|
uploadStatus?: LoadStatus$1;
|
|
1673
|
-
uploadedData?: FileBodyRequest | ImageBodyRequest | null;
|
|
1673
|
+
uploadedData?: FileBodyRequest$1 | ImageBodyRequest$1 | null;
|
|
1674
1674
|
};
|
|
1675
1675
|
declare type LoadStatus$1 = "loading" | "success" | "failure" | "default";
|
|
1676
1676
|
declare type FileVariant$1 = "image" | "document";
|
|
@@ -1694,7 +1694,7 @@ type InputParams$1<T> = {
|
|
|
1694
1694
|
size?: GridSize
|
|
1695
1695
|
} & InputByTypeProps$1<T>
|
|
1696
1696
|
|
|
1697
|
-
declare class DocumentStore implements FileStoreInterface
|
|
1697
|
+
declare class DocumentStore implements FileStoreInterface {
|
|
1698
1698
|
id: number;
|
|
1699
1699
|
name: string;
|
|
1700
1700
|
url: string;
|
|
@@ -1705,13 +1705,13 @@ declare class DocumentStore implements FileStoreInterface$1 {
|
|
|
1705
1705
|
documentsStore: DocumentsStoreInterface;
|
|
1706
1706
|
agent: DocumentAgentInterface;
|
|
1707
1707
|
loader: Loader;
|
|
1708
|
-
constructor(document: DocumentModel
|
|
1708
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface);
|
|
1709
1709
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
1710
|
-
updateDocument: (res: DocumentModel
|
|
1710
|
+
updateDocument: (res: DocumentModel) => void;
|
|
1711
1711
|
deleteDocument: (...params: any) => Promise<void>;
|
|
1712
1712
|
get extension(): string;
|
|
1713
1713
|
get title(): string;
|
|
1714
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
1714
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
1715
1715
|
}
|
|
1716
1716
|
|
|
1717
1717
|
declare type SubjectRoles = "maroom" | "landlord" | "tenant";
|
|
@@ -1757,13 +1757,13 @@ declare type FileStoreParams = {
|
|
|
1757
1757
|
url?: string;
|
|
1758
1758
|
index?: number | string | null;
|
|
1759
1759
|
createdBy?: string | null;
|
|
1760
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1760
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1761
1761
|
name?: string;
|
|
1762
1762
|
date?: string | null;
|
|
1763
1763
|
size?: number | null;
|
|
1764
1764
|
file?: File | null;
|
|
1765
1765
|
uploadStatus?: LoadStatus;
|
|
1766
|
-
uploadedData?: FileBodyRequest
|
|
1766
|
+
uploadedData?: FileBodyRequest | ImageBodyRequest | null;
|
|
1767
1767
|
};
|
|
1768
1768
|
declare type GeolocationParams = {
|
|
1769
1769
|
lat: number;
|
|
@@ -1960,14 +1960,14 @@ declare const phoneNonRequiredSchema: (name: string) => yup.ObjectSchema<{
|
|
|
1960
1960
|
phoneNumber: undefined;
|
|
1961
1961
|
}, "">;
|
|
1962
1962
|
|
|
1963
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1) => Promise<ImageBodyRequest
|
|
1964
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
1965
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | File) => Promise<FileBodyRequest
|
|
1966
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File) => Promise<FileBodyRequest
|
|
1967
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<(FileBodyRequest
|
|
1968
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<FileBodyRequest
|
|
1969
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[]) => Promise<FileBodyRequest
|
|
1970
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams) => Promise<FileBodyRequest
|
|
1963
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1) => Promise<ImageBodyRequest | null>;
|
|
1964
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
1965
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | File) => Promise<FileBodyRequest | null>;
|
|
1966
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File) => Promise<FileBodyRequest | null>;
|
|
1967
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<(FileBodyRequest | null)[]>;
|
|
1968
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[]) => Promise<FileBodyRequest[]>;
|
|
1969
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[]) => Promise<FileBodyRequest[]>;
|
|
1970
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams) => Promise<FileBodyRequest | null>;
|
|
1971
1971
|
|
|
1972
1972
|
declare const matchesAPISubjectRoles: {
|
|
1973
1973
|
maroom: string;
|
|
@@ -2072,16 +2072,16 @@ declare const useMapCards: (location: GeolocationParams, map?: google.maps.Map |
|
|
|
2072
2072
|
};
|
|
2073
2073
|
|
|
2074
2074
|
declare class FilesStore {
|
|
2075
|
-
files: FileStore
|
|
2075
|
+
files: FileStore[];
|
|
2076
2076
|
variant: FileVariant;
|
|
2077
2077
|
constructor(variant: FileVariant);
|
|
2078
|
-
addFile: (newFile: FileStore
|
|
2078
|
+
addFile: (newFile: FileStore) => void;
|
|
2079
2079
|
removeFile: (index: number) => void;
|
|
2080
|
-
setFiles: (files: FileStore
|
|
2080
|
+
setFiles: (files: FileStore[]) => void;
|
|
2081
2081
|
uploadFiles: () => Promise<void>;
|
|
2082
|
-
get uploadedData(): (FileBodyRequest
|
|
2082
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2083
2083
|
get uploadedAllFiles(): boolean;
|
|
2084
|
-
get notUploadedFiles(): FileStore
|
|
2084
|
+
get notUploadedFiles(): FileStore[];
|
|
2085
2085
|
get isUploading(): boolean;
|
|
2086
2086
|
}
|
|
2087
2087
|
|
|
@@ -3212,7 +3212,7 @@ declare type PartialMeterInfoFields = {
|
|
|
3212
3212
|
resource: ResourceTypes;
|
|
3213
3213
|
type?: MeterTypes;
|
|
3214
3214
|
number: string;
|
|
3215
|
-
images: FileStore[];
|
|
3215
|
+
images: FileStore$1[];
|
|
3216
3216
|
maxValue?: PartialMeterValuesFields;
|
|
3217
3217
|
values: PartialMeterValuesFields;
|
|
3218
3218
|
} & PartialMeterValuesFields;
|
|
@@ -3240,4 +3240,4 @@ type SignInPageProps = {
|
|
|
3240
3240
|
|
|
3241
3241
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3242
3242
|
|
|
3243
|
-
export { APIPayerValues, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroParams, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$i as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLiteModel, ClientRoles, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CommonMeterParams, CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$l as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$h as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$7 as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractStatuses, CopyButton, CountriesStore, _default$k as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DeepPartial, DetailObjectInfoInterface, _default$b as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$4 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface$1 as FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface$1 as FilesStoreInterface, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$e as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$d as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FormBottom, FormBottomProps, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$5 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, InputWithMap, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionTypeValues, InspectionTypes, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$8 as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$g as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, MeterFeaturesForm, MeterFeaturesFormFields, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersResponse, MetersResponseBody, _default$3 as MetroAutocomplete, _default$2 as MetroBlock, _default$1 as MetroBlockForModal, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$f as ModalWithMap, _default$6 as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$j as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractModel, RentalInspectionParams, RentalStatuses, RentalTypes, _default$c as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$9 as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$a as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, WallMaterials, WallMaterialsValues, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneSchema, phoneWithConditionSchema, positiveNumberSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadNewFile, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3243
|
+
export { APIPayerValues, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroParams, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$i as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLiteModel, ClientRoles, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CommonMeterParams, CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$l as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$h as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$7 as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractStatuses, CopyButton, CountriesStore, _default$k as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DeepPartial, DetailObjectInfoInterface, _default$b as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$4 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$e as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$d as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FormBottom, FormBottomProps, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$5 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, InputWithMap, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionTypeValues, InspectionTypes, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$8 as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$g as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, MeterFeaturesForm, MeterFeaturesFormFields, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersResponse, MetersResponseBody, _default$3 as MetroAutocomplete, _default$2 as MetroBlock, _default$1 as MetroBlockForModal, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$f as ModalWithMap, _default$6 as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$j as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractModel, RentalInspectionParams, RentalStatuses, RentalTypes, _default$c as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$9 as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$a as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, WallMaterials, WallMaterialsValues, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneSchema, phoneWithConditionSchema, positiveNumberSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadNewFile, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1254,7 +1254,7 @@ declare type ApiTokenAuthResponse = {
|
|
|
1254
1254
|
};
|
|
1255
1255
|
|
|
1256
1256
|
declare type InspectionRoomPhotoTypes = "kitchen" | "bathroom" | "room" | "bedroom" | "entrance" | "others" | "toilet" | "combined_bathroom" | "keys" | "additional" | "parking";
|
|
1257
|
-
declare type TransferInspectionTypes = "maroom_tenant" | "tenant_maroom" | "maroom_landlord";
|
|
1257
|
+
declare type TransferInspectionTypes = "maroom_tenant" | "tenant_maroom" | "maroom_landlord" | "tenant_landlord";
|
|
1258
1258
|
declare type InspectionFillingParams = {
|
|
1259
1259
|
feature: number;
|
|
1260
1260
|
description?: string;
|