kui-crm 0.0.574 → 0.0.576
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 +201 -199
- package/package.json +1 -1
- package/types/index.d.ts +146 -144
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -409,7 +409,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
409
409
|
provider_type: string;
|
|
410
410
|
};
|
|
411
411
|
declare type DataTransferFormats = "online" | "offline";
|
|
412
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
413
413
|
declare type ApartmentResourceModel = {
|
|
414
414
|
id: number;
|
|
415
415
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -418,7 +418,7 @@ declare type ApartmentResourceModel = {
|
|
|
418
418
|
payer_code?: string;
|
|
419
419
|
meter_readings_day_from?: number;
|
|
420
420
|
meter_readings_day_to?: number;
|
|
421
|
-
receipt_example?: DocumentModel
|
|
421
|
+
receipt_example?: DocumentModel;
|
|
422
422
|
provider_auth_login?: string;
|
|
423
423
|
provider_auth_password?: string;
|
|
424
424
|
provider_url?: string;
|
|
@@ -443,8 +443,8 @@ declare type InspectionFillingParams = {
|
|
|
443
443
|
description?: string;
|
|
444
444
|
serial_code?: string;
|
|
445
445
|
amount?: number | string | null;
|
|
446
|
-
photos: ImageBodyRequest
|
|
447
|
-
instruction?: FileBodyRequest
|
|
446
|
+
photos: ImageBodyRequest[];
|
|
447
|
+
instruction?: FileBodyRequest | null;
|
|
448
448
|
was_missing?: boolean;
|
|
449
449
|
};
|
|
450
450
|
declare type InspectionMeterValueModel = {
|
|
@@ -460,7 +460,7 @@ declare type InspectionBasedOnModel = {
|
|
|
460
460
|
id: number;
|
|
461
461
|
inspection_type: InspectionTypes;
|
|
462
462
|
};
|
|
463
|
-
declare type VideoModel
|
|
463
|
+
declare type VideoModel = {
|
|
464
464
|
id: number;
|
|
465
465
|
video_url: string;
|
|
466
466
|
file_name?: string;
|
|
@@ -475,8 +475,8 @@ declare type InspectionRoomPhotoModel = {
|
|
|
475
475
|
uploaded: boolean;
|
|
476
476
|
purpose: InspectionRoomPhotoTypes;
|
|
477
477
|
comment?: string;
|
|
478
|
-
photos: ImageModel
|
|
479
|
-
videos: VideoModel
|
|
478
|
+
photos: ImageModel[];
|
|
479
|
+
videos: VideoModel[];
|
|
480
480
|
room_order_number?: number | null;
|
|
481
481
|
};
|
|
482
482
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
|
|
@@ -514,11 +514,11 @@ declare type FullInspectionCommonFields = {
|
|
|
514
514
|
filling: InspectionFillingModel[];
|
|
515
515
|
} & ApartmentModel;
|
|
516
516
|
declare type InspectionMeterCommonInfo = {
|
|
517
|
-
resource_type: ResourceTypes
|
|
518
|
-
passport: FileModel
|
|
519
|
-
meter_type: MeterTypes
|
|
517
|
+
resource_type: ResourceTypes;
|
|
518
|
+
passport: FileModel | null;
|
|
519
|
+
meter_type: MeterTypes;
|
|
520
520
|
operating_account: string;
|
|
521
|
-
photos: ImageModel
|
|
521
|
+
photos: ImageModel[];
|
|
522
522
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
523
523
|
declare type TransferInspectionMeterModel = {
|
|
524
524
|
values: InspectionMeterValueModel;
|
|
@@ -526,9 +526,9 @@ declare type TransferInspectionMeterModel = {
|
|
|
526
526
|
declare type TransferInspectionFields = {
|
|
527
527
|
transfer_type: TransferInspectionTypes;
|
|
528
528
|
meters: TransferInspectionMeterModel[];
|
|
529
|
-
inspection_document: DocumentModel
|
|
530
|
-
rental_contract_termination_document: DocumentModel
|
|
531
|
-
service_contract_termination_document: DocumentModel
|
|
529
|
+
inspection_document: DocumentModel | null;
|
|
530
|
+
rental_contract_termination_document: DocumentModel | null;
|
|
531
|
+
service_contract_termination_document: DocumentModel | null;
|
|
532
532
|
} & FullInspectionCommonFields;
|
|
533
533
|
declare type RegularInspectionFields = {
|
|
534
534
|
meters: TransferInspectionMeterModel[];
|
|
@@ -537,7 +537,7 @@ declare type RegularInspectionFields = {
|
|
|
537
537
|
declare type ComparableObjectModel = {
|
|
538
538
|
id: number;
|
|
539
539
|
advertisement_link: string;
|
|
540
|
-
advertisement_screenshot: ImageModel
|
|
540
|
+
advertisement_screenshot: ImageModel | null;
|
|
541
541
|
object_price: string;
|
|
542
542
|
key_object_differences: string;
|
|
543
543
|
};
|
|
@@ -545,7 +545,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
545
545
|
id: number;
|
|
546
546
|
source_name: string;
|
|
547
547
|
link: string;
|
|
548
|
-
screenshot: ImageModel
|
|
548
|
+
screenshot: ImageModel | null;
|
|
549
549
|
min_price: string;
|
|
550
550
|
max_price: string;
|
|
551
551
|
};
|
|
@@ -588,11 +588,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
588
588
|
declare type ImpairmentModel = {
|
|
589
589
|
id: number;
|
|
590
590
|
impairment_type: ImpairmentType;
|
|
591
|
-
proof_file: DocumentModel
|
|
591
|
+
proof_file: DocumentModel | null;
|
|
592
592
|
price: number;
|
|
593
593
|
solution: string;
|
|
594
594
|
description: string;
|
|
595
|
-
photos: ImageModel
|
|
595
|
+
photos: ImageModel[];
|
|
596
596
|
item_link: string;
|
|
597
597
|
bill_line_name: string;
|
|
598
598
|
};
|
|
@@ -603,7 +603,7 @@ declare type InitialInspectionModelFields = {
|
|
|
603
603
|
used_resources: UsedResourcesModel;
|
|
604
604
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
605
605
|
declare type AppraisalRequestModelFields = {
|
|
606
|
-
floor_plan: DocumentModel
|
|
606
|
+
floor_plan: DocumentModel | null;
|
|
607
607
|
};
|
|
608
608
|
declare type InspectionModel = {
|
|
609
609
|
initial?: InitialInspectionModelFields;
|
|
@@ -637,7 +637,7 @@ declare type InventoryInspectionFields = {
|
|
|
637
637
|
allowed_smoking: boolean;
|
|
638
638
|
additional_terms: string;
|
|
639
639
|
resources: InspectionResourcesModel[];
|
|
640
|
-
inspection_document: DocumentModel
|
|
640
|
+
inspection_document: DocumentModel | null;
|
|
641
641
|
} & FullInspectionCommonFields;
|
|
642
642
|
declare type InventoryInspectionModel = {
|
|
643
643
|
inventory: InventoryInspectionFields;
|
|
@@ -685,11 +685,13 @@ declare type InspectionFeedbackInterface = {
|
|
|
685
685
|
};
|
|
686
686
|
declare type PatchInspectionImageParams = {
|
|
687
687
|
id?: number;
|
|
688
|
-
|
|
688
|
+
order?: number;
|
|
689
|
+
} & Partial<ImageBodyRequest>;
|
|
689
690
|
declare type PatchInspectionVideoParams = {
|
|
690
691
|
id?: number;
|
|
691
|
-
} & Partial<VideoBodyRequest
|
|
692
|
+
} & Partial<VideoBodyRequest>;
|
|
692
693
|
declare type PatchRoomImagesParams = {
|
|
694
|
+
id?: number | null;
|
|
693
695
|
purpose: InspectionRoomPhotoTypes;
|
|
694
696
|
comment?: string;
|
|
695
697
|
photos: PatchInspectionImageParams[];
|
|
@@ -705,7 +707,7 @@ declare type TagModel = {
|
|
|
705
707
|
declare type GetTagsResponse = TagModel[];
|
|
706
708
|
declare type ApartmentFillingAPIVariants = "finish" | "furniture" | "appliance" | "accessorie";
|
|
707
709
|
declare type PostInspectionFillingModel = {
|
|
708
|
-
|
|
710
|
+
id: number;
|
|
709
711
|
is_absent: boolean;
|
|
710
712
|
};
|
|
711
713
|
declare type PostInspectionFillingListModel = {
|
|
@@ -728,8 +730,8 @@ declare type InspectionFillingModel = {
|
|
|
728
730
|
description: string;
|
|
729
731
|
serial_code: string;
|
|
730
732
|
amount: number;
|
|
731
|
-
photos: ImageModel
|
|
732
|
-
instruction: DocumentModel
|
|
733
|
+
photos: ImageModel[];
|
|
734
|
+
instruction: DocumentModel;
|
|
733
735
|
is_absent: boolean;
|
|
734
736
|
previously_absent: boolean;
|
|
735
737
|
model: string;
|
|
@@ -811,7 +813,7 @@ declare type CommonMeterParams = {
|
|
|
811
813
|
company: CompanyLiteParams;
|
|
812
814
|
operating_account_number?: string | null;
|
|
813
815
|
company_is_administrative: boolean;
|
|
814
|
-
photos?: ImageModel
|
|
816
|
+
photos?: ImageModel[];
|
|
815
817
|
auto_sending: boolean;
|
|
816
818
|
no_tariff: boolean;
|
|
817
819
|
is_avg: boolean;
|
|
@@ -823,15 +825,15 @@ declare type ElectricityMeterValues = {
|
|
|
823
825
|
T3?: MeterTariffModel;
|
|
824
826
|
};
|
|
825
827
|
declare type WaterMeterParams = {
|
|
826
|
-
type: WaterMeterTypes
|
|
828
|
+
type: WaterMeterTypes;
|
|
827
829
|
tariff: SingleCounterTariffModel;
|
|
828
830
|
} & CommonMeterParams & MeterTariffModel;
|
|
829
831
|
declare type SingleMeterParams = {
|
|
830
|
-
type?: WaterMeterTypes
|
|
832
|
+
type?: WaterMeterTypes;
|
|
831
833
|
tariff: SingleCounterTariffModel;
|
|
832
834
|
} & CommonMeterParams & MeterTariffModel;
|
|
833
835
|
declare type ElectricityMeterParams = {
|
|
834
|
-
type: ElectricityMeterTypes
|
|
836
|
+
type: ElectricityMeterTypes;
|
|
835
837
|
values: ElectricityMeterValues;
|
|
836
838
|
tariff: ElectricityMeterTariffModel;
|
|
837
839
|
overall_value?: number;
|
|
@@ -1073,7 +1075,7 @@ declare type CountryParams = {
|
|
|
1073
1075
|
code: string;
|
|
1074
1076
|
} & CatalogItemParams;
|
|
1075
1077
|
|
|
1076
|
-
type FileWithVisibility
|
|
1078
|
+
type FileWithVisibility = {
|
|
1077
1079
|
file: File | null
|
|
1078
1080
|
tenant: boolean
|
|
1079
1081
|
landlord: boolean
|
|
@@ -1081,8 +1083,8 @@ type FileWithVisibility$1 = {
|
|
|
1081
1083
|
url: string
|
|
1082
1084
|
}
|
|
1083
1085
|
|
|
1084
|
-
type InputFileWithVisibilityFields
|
|
1085
|
-
| FileWithVisibility
|
|
1086
|
+
type InputFileWithVisibilityFields =
|
|
1087
|
+
| FileWithVisibility
|
|
1086
1088
|
| DocumentWithVisibility
|
|
1087
1089
|
| null
|
|
1088
1090
|
| undefined
|
|
@@ -1112,7 +1114,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1112
1114
|
}
|
|
1113
1115
|
|
|
1114
1116
|
type ChangeReasonFormFields = {
|
|
1115
|
-
reason: InputFileWithVisibilityFields
|
|
1117
|
+
reason: InputFileWithVisibilityFields
|
|
1116
1118
|
comment?: string
|
|
1117
1119
|
}
|
|
1118
1120
|
|
|
@@ -1127,13 +1129,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1127
1129
|
settings?: any
|
|
1128
1130
|
} & InputWithControllerProps<TFormValues>
|
|
1129
1131
|
|
|
1130
|
-
type CompanyAutocompleteFields
|
|
1132
|
+
type CompanyAutocompleteFields = {
|
|
1131
1133
|
id: number
|
|
1132
1134
|
name: string
|
|
1133
1135
|
logo?: string | null
|
|
1134
1136
|
}
|
|
1135
1137
|
|
|
1136
|
-
declare class FileStore
|
|
1138
|
+
declare class FileStore implements FileStoreInterface {
|
|
1137
1139
|
id: number | null;
|
|
1138
1140
|
index?: number | null;
|
|
1139
1141
|
name: string;
|
|
@@ -1164,13 +1166,13 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1164
1166
|
setIndex: (index: number) => void;
|
|
1165
1167
|
get title(): string;
|
|
1166
1168
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1167
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1168
|
-
static initFromFileModel: (file: FileModel
|
|
1169
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1170
|
-
static initFromImageModel: (file: ImageModel
|
|
1171
|
-
static initFromVideoModel: (image: VideoModel
|
|
1172
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1173
|
-
static initFromFileStore: (file: FileStore
|
|
1169
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1170
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1171
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1172
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1173
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1174
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1175
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1174
1176
|
}
|
|
1175
1177
|
|
|
1176
1178
|
declare type ImageParams = {
|
|
@@ -1205,8 +1207,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1205
1207
|
delete: () => Promise<void>;
|
|
1206
1208
|
get extension(): string;
|
|
1207
1209
|
get title(): string;
|
|
1208
|
-
static initFromImageModel: (image: ImageModel
|
|
1209
|
-
static initFromVideoModel: (image: VideoModel
|
|
1210
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1211
|
+
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1210
1212
|
}
|
|
1211
1213
|
|
|
1212
1214
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1331,7 +1333,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1331
1333
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1332
1334
|
payerCode?: string;
|
|
1333
1335
|
communalServicesAccount?: string;
|
|
1334
|
-
company?: CompanyAutocompleteFields
|
|
1336
|
+
company?: CompanyAutocompleteFields | null;
|
|
1335
1337
|
} & ChangeReasonFormFields;
|
|
1336
1338
|
declare type ApartmentOverviewInfoFields = {
|
|
1337
1339
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1354,14 +1356,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1354
1356
|
} & ApartmentPaymentInfoParams;
|
|
1355
1357
|
declare type InspectionMeterInfoParams = {
|
|
1356
1358
|
id: number;
|
|
1357
|
-
resource: ResourceTypes
|
|
1358
|
-
type?: MeterTypes
|
|
1359
|
+
resource: ResourceTypes;
|
|
1360
|
+
type?: MeterTypes;
|
|
1359
1361
|
number: string;
|
|
1360
1362
|
startDate: DateTime | null;
|
|
1361
1363
|
company: CompanyLiteParams;
|
|
1362
1364
|
operationalAccountNumber?: string | null;
|
|
1363
1365
|
tariff: EntityLinkParams | null;
|
|
1364
|
-
passportFile: FileStore
|
|
1366
|
+
passportFile: FileStore | null;
|
|
1365
1367
|
initialValue?: number;
|
|
1366
1368
|
lastValue?: number;
|
|
1367
1369
|
initialValueT1?: number;
|
|
@@ -1383,8 +1385,8 @@ declare type ValuesParams = {
|
|
|
1383
1385
|
};
|
|
1384
1386
|
declare type PartialMeterInfoParams = {
|
|
1385
1387
|
id: number;
|
|
1386
|
-
type: MeterTypes
|
|
1387
|
-
resource: ResourceTypes
|
|
1388
|
+
type: MeterTypes;
|
|
1389
|
+
resource: ResourceTypes;
|
|
1388
1390
|
number: string;
|
|
1389
1391
|
values: ValuesParams;
|
|
1390
1392
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1396,7 +1398,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1396
1398
|
declare type ComparableObjectParams = {
|
|
1397
1399
|
id: number;
|
|
1398
1400
|
link: string;
|
|
1399
|
-
screenshot: FileStore
|
|
1401
|
+
screenshot: FileStore | null;
|
|
1400
1402
|
price: number;
|
|
1401
1403
|
differences: string;
|
|
1402
1404
|
};
|
|
@@ -1404,7 +1406,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1404
1406
|
id: number;
|
|
1405
1407
|
dataSourceName: string;
|
|
1406
1408
|
link: string;
|
|
1407
|
-
screenshot: FileStore
|
|
1409
|
+
screenshot: FileStore | null;
|
|
1408
1410
|
minPrice: number;
|
|
1409
1411
|
maxPrice: number;
|
|
1410
1412
|
};
|
|
@@ -1429,8 +1431,8 @@ declare type FillingInfoFormFields = {
|
|
|
1429
1431
|
name?: string;
|
|
1430
1432
|
description?: string;
|
|
1431
1433
|
type?: ApartmentFillingVariants | null;
|
|
1432
|
-
instruction?: InputFileWithVisibilityFields
|
|
1433
|
-
tempImages?: ImageBodyRequest
|
|
1434
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1435
|
+
tempImages?: ImageBodyRequest[];
|
|
1434
1436
|
};
|
|
1435
1437
|
|
|
1436
1438
|
declare type FillingTagParams = {
|
|
@@ -1445,7 +1447,7 @@ declare type FillingParams = {
|
|
|
1445
1447
|
images?: (ImageStore | UploadFileParams)[];
|
|
1446
1448
|
serialNumber?: string;
|
|
1447
1449
|
numberOfSubjects?: number | string | null;
|
|
1448
|
-
instruction?: InputFileWithVisibilityFields
|
|
1450
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1449
1451
|
type?: ApartmentFillingVariants;
|
|
1450
1452
|
loader?: Loader;
|
|
1451
1453
|
};
|
|
@@ -1457,7 +1459,7 @@ declare type FillingFullParams = {
|
|
|
1457
1459
|
images?: (ImageStore | UploadFileParams)[];
|
|
1458
1460
|
serialNumber?: string;
|
|
1459
1461
|
numberOfSubjects?: number | string | null;
|
|
1460
|
-
instruction?: InputFileWithVisibilityFields
|
|
1462
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1461
1463
|
type?: ApartmentFillingVariants;
|
|
1462
1464
|
loader?: Loader;
|
|
1463
1465
|
check?: boolean | null;
|
|
@@ -1476,31 +1478,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1476
1478
|
name: string;
|
|
1477
1479
|
};
|
|
1478
1480
|
|
|
1479
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1480
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1481
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1482
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1483
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1484
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1485
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1486
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1487
|
-
declare type FileBodyRequest = {
|
|
1481
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1482
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1483
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1484
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1485
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1486
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1487
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1488
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1489
|
+
declare type FileBodyRequest$1 = {
|
|
1488
1490
|
temp_file_id?: number;
|
|
1489
1491
|
name: string;
|
|
1490
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1492
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1491
1493
|
url?: string;
|
|
1492
1494
|
};
|
|
1493
|
-
declare type ImageBodyRequest = {
|
|
1495
|
+
declare type ImageBodyRequest$1 = {
|
|
1494
1496
|
temp_file_id: number;
|
|
1495
1497
|
image_name: string;
|
|
1496
1498
|
url: string;
|
|
1497
1499
|
};
|
|
1498
|
-
declare type VideoBodyRequest = {
|
|
1500
|
+
declare type VideoBodyRequest$1 = {
|
|
1499
1501
|
temp_file_id: number;
|
|
1500
1502
|
file_name: string;
|
|
1501
1503
|
url: string;
|
|
1502
1504
|
};
|
|
1503
|
-
declare type ImageModel = {
|
|
1505
|
+
declare type ImageModel$1 = {
|
|
1504
1506
|
id: number;
|
|
1505
1507
|
image_name?: string;
|
|
1506
1508
|
image_url?: string;
|
|
@@ -1509,22 +1511,22 @@ declare type ImageModel = {
|
|
|
1509
1511
|
image_large_url: string;
|
|
1510
1512
|
size: number;
|
|
1511
1513
|
};
|
|
1512
|
-
declare type FileModel = {
|
|
1514
|
+
declare type FileModel$1 = {
|
|
1513
1515
|
id: number;
|
|
1514
1516
|
name: string;
|
|
1515
1517
|
size: number;
|
|
1516
1518
|
url: string;
|
|
1517
1519
|
};
|
|
1518
|
-
declare type DocumentModel = {
|
|
1520
|
+
declare type DocumentModel$1 = {
|
|
1519
1521
|
pk: number;
|
|
1520
1522
|
name: string;
|
|
1521
1523
|
created?: string;
|
|
1522
1524
|
attachment: string;
|
|
1523
1525
|
size: number;
|
|
1524
1526
|
uploaded_by?: string | null;
|
|
1525
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1527
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1526
1528
|
};
|
|
1527
|
-
declare type VideoModel = {
|
|
1529
|
+
declare type VideoModel$1 = {
|
|
1528
1530
|
id: number;
|
|
1529
1531
|
video_url: string;
|
|
1530
1532
|
file_name?: string;
|
|
@@ -1535,7 +1537,7 @@ declare type VideoModel = {
|
|
|
1535
1537
|
resolution?: string;
|
|
1536
1538
|
};
|
|
1537
1539
|
|
|
1538
|
-
type FileWithVisibility = {
|
|
1540
|
+
type FileWithVisibility$1 = {
|
|
1539
1541
|
file: File | null
|
|
1540
1542
|
tenant: boolean
|
|
1541
1543
|
landlord: boolean
|
|
@@ -1543,19 +1545,19 @@ type FileWithVisibility = {
|
|
|
1543
1545
|
url: string
|
|
1544
1546
|
}
|
|
1545
1547
|
|
|
1546
|
-
type InputFileWithVisibilityFields =
|
|
1547
|
-
| FileWithVisibility
|
|
1548
|
+
type InputFileWithVisibilityFields$1 =
|
|
1549
|
+
| FileWithVisibility$1
|
|
1548
1550
|
| DocumentWithVisibility$1
|
|
1549
1551
|
| null
|
|
1550
1552
|
| undefined
|
|
1551
1553
|
|
|
1552
|
-
type CompanyAutocompleteFields = {
|
|
1554
|
+
type CompanyAutocompleteFields$1 = {
|
|
1553
1555
|
id: number
|
|
1554
1556
|
name: string
|
|
1555
1557
|
logo?: string | null
|
|
1556
1558
|
}
|
|
1557
1559
|
|
|
1558
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1560
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1559
1561
|
id: number | null;
|
|
1560
1562
|
index?: number | null;
|
|
1561
1563
|
name: string;
|
|
@@ -1586,22 +1588,22 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1586
1588
|
setIndex: (index: number) => void;
|
|
1587
1589
|
get title(): string;
|
|
1588
1590
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1589
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1590
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1591
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1592
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1593
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1594
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1595
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1591
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1592
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1593
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1594
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1595
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1596
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1597
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1596
1598
|
}
|
|
1597
1599
|
|
|
1598
1600
|
type PartialPayerFields$1 = {
|
|
1599
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1600
|
-
mainPayer?: ResourcePaymentRoles
|
|
1601
|
-
refundFrom?: ResourcePaymentRoles
|
|
1602
|
-
partType?: UnitOfPaymentTypes | null
|
|
1601
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1602
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1603
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1604
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1603
1605
|
refundValue?: number | string | null
|
|
1604
|
-
utilityType: UtilityTypes
|
|
1606
|
+
utilityType: UtilityTypes$1
|
|
1605
1607
|
}
|
|
1606
1608
|
|
|
1607
1609
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1633,13 +1635,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1633
1635
|
visibility?: DocumentVisibilityVariants$1;
|
|
1634
1636
|
extension: string;
|
|
1635
1637
|
};
|
|
1636
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1638
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1637
1639
|
declare type FileStoreParams$1 = {
|
|
1638
1640
|
id?: number | null;
|
|
1639
1641
|
url?: string;
|
|
1640
1642
|
index?: number | string | null;
|
|
1641
1643
|
createdBy?: string | null;
|
|
1642
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1644
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1643
1645
|
name?: string;
|
|
1644
1646
|
date?: string | null;
|
|
1645
1647
|
size?: number | null;
|
|
@@ -1667,14 +1669,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1667
1669
|
initialValueT1?: number
|
|
1668
1670
|
initialValueT2?: number
|
|
1669
1671
|
initialValueT3?: number
|
|
1670
|
-
type?: MeterTypes
|
|
1671
|
-
resource?: ResourceTypes
|
|
1672
|
+
type?: MeterTypes$1
|
|
1673
|
+
resource?: ResourceTypes$1
|
|
1672
1674
|
withAutoSending?: boolean
|
|
1673
1675
|
}
|
|
1674
1676
|
|
|
1675
1677
|
type MeterFeaturesFormFields$1 = {
|
|
1676
1678
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1677
|
-
company: CompanyAutocompleteFields | null
|
|
1679
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1678
1680
|
nextCheck: DateTime | null
|
|
1679
1681
|
lastValue?: number
|
|
1680
1682
|
lastValueT1?: number
|
|
@@ -1698,9 +1700,9 @@ declare type ApartmentMeterValues = {
|
|
|
1698
1700
|
} & MeterValues;
|
|
1699
1701
|
declare type InspectionMeterFields = {
|
|
1700
1702
|
id?: number;
|
|
1701
|
-
resource: ResourceTypes;
|
|
1702
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1703
|
-
images: FileStore[];
|
|
1703
|
+
resource: ResourceTypes$1;
|
|
1704
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1705
|
+
images: FileStore$1[];
|
|
1704
1706
|
} & MeterFeaturesFormFields$1;
|
|
1705
1707
|
|
|
1706
1708
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1715,7 +1717,7 @@ type PartialPayerProps<T> = {
|
|
|
1715
1717
|
title: string
|
|
1716
1718
|
name: string
|
|
1717
1719
|
form: UseFormReturn<T>
|
|
1718
|
-
utilityType: UtilityTypes
|
|
1720
|
+
utilityType: UtilityTypes
|
|
1719
1721
|
fieldsVariant?: PartialPayerVariants
|
|
1720
1722
|
settings?: ObjectType
|
|
1721
1723
|
disabled?: boolean
|
|
@@ -1723,12 +1725,12 @@ type PartialPayerProps<T> = {
|
|
|
1723
1725
|
}
|
|
1724
1726
|
|
|
1725
1727
|
type PartialPayerFields = {
|
|
1726
|
-
payer?: ResourcePaymentRoles
|
|
1727
|
-
mainPayer?: ResourcePaymentRoles
|
|
1728
|
-
refundFrom?: ResourcePaymentRoles
|
|
1729
|
-
partType?: UnitOfPaymentTypes
|
|
1728
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1729
|
+
mainPayer?: ResourcePaymentRoles
|
|
1730
|
+
refundFrom?: ResourcePaymentRoles
|
|
1731
|
+
partType?: UnitOfPaymentTypes | null
|
|
1730
1732
|
refundValue?: number | string | null
|
|
1731
|
-
utilityType: UtilityTypes
|
|
1733
|
+
utilityType: UtilityTypes
|
|
1732
1734
|
}
|
|
1733
1735
|
|
|
1734
1736
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1812,15 +1814,15 @@ declare type ResourceAccessParams = {
|
|
|
1812
1814
|
password?: string;
|
|
1813
1815
|
description?: string;
|
|
1814
1816
|
};
|
|
1815
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1817
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1816
1818
|
declare type ApartmentResourceCompanyDetails = {
|
|
1817
|
-
company: CompanyAutocompleteFields
|
|
1819
|
+
company: CompanyAutocompleteFields | null;
|
|
1818
1820
|
operationalAccountNumber: string;
|
|
1819
1821
|
payerCode: string;
|
|
1820
1822
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1821
1823
|
access: ResourceAccessParams;
|
|
1822
1824
|
sampleReceiptLink: string;
|
|
1823
|
-
sampleReceipt?: InputFileWithVisibilityFields
|
|
1825
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1824
1826
|
};
|
|
1825
1827
|
declare type ApartmentResourceInterface = {
|
|
1826
1828
|
type: ApartmentResourceTypes;
|
|
@@ -1857,15 +1859,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1857
1859
|
loader: Loader;
|
|
1858
1860
|
};
|
|
1859
1861
|
declare type PostDocumentsResponse = {
|
|
1860
|
-
documents: DocumentModel
|
|
1862
|
+
documents: DocumentModel[];
|
|
1861
1863
|
};
|
|
1862
1864
|
declare type DocumentAgentInterface = {
|
|
1863
1865
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1864
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1865
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1866
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1867
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1866
1868
|
};
|
|
1867
1869
|
declare type DocumentsAgentInterface = {
|
|
1868
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1870
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1869
1871
|
} & DocumentAgentInterface;
|
|
1870
1872
|
|
|
1871
1873
|
declare type MetroLineParams = {
|
|
@@ -1936,7 +1938,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1936
1938
|
};
|
|
1937
1939
|
declare type ApartmentDocumentModel = {
|
|
1938
1940
|
id: number;
|
|
1939
|
-
document: DocumentModel
|
|
1941
|
+
document: DocumentModel;
|
|
1940
1942
|
expiration_date: string;
|
|
1941
1943
|
start_date: string;
|
|
1942
1944
|
number: string;
|
|
@@ -1948,7 +1950,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1948
1950
|
tariff?: TariffLinkModel;
|
|
1949
1951
|
activation_date?: string;
|
|
1950
1952
|
check_date?: string;
|
|
1951
|
-
type?: ElectricityMeterTypes
|
|
1953
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1952
1954
|
apartment: ApartmentLinkModel;
|
|
1953
1955
|
company: CompanyLiteParams;
|
|
1954
1956
|
operating_account_number?: string | null;
|
|
@@ -2069,7 +2071,7 @@ declare type ApartmentModel = {
|
|
|
2069
2071
|
owner_id: number;
|
|
2070
2072
|
metro_stations: ApartmentMetroParams[];
|
|
2071
2073
|
rental_status: RentalStatuses;
|
|
2072
|
-
main_image: ImageModel
|
|
2074
|
+
main_image: ImageModel;
|
|
2073
2075
|
tv_type: TVTypes | null;
|
|
2074
2076
|
inspection: ApartmentInspectionModel;
|
|
2075
2077
|
distance_to_center_kilometers: number | null;
|
|
@@ -2096,7 +2098,7 @@ declare type ApartmentLiteModel = {
|
|
|
2096
2098
|
renter: LiteUserModel | null;
|
|
2097
2099
|
rental_status: RentalStatuses;
|
|
2098
2100
|
renter_payment_status: RentalPaymentStatuses;
|
|
2099
|
-
main_image: ImageModel
|
|
2101
|
+
main_image: ImageModel;
|
|
2100
2102
|
service_contract?: ServiceContractLiteModel;
|
|
2101
2103
|
is_imported_from_old_crm?: boolean;
|
|
2102
2104
|
max_electricity_counters?: number | null;
|
|
@@ -2142,7 +2144,7 @@ declare type ObjectForMapModel = {
|
|
|
2142
2144
|
apartment_number: string;
|
|
2143
2145
|
address: string;
|
|
2144
2146
|
geolocation: LatLonParams;
|
|
2145
|
-
main_image: ImageModel
|
|
2147
|
+
main_image: ImageModel;
|
|
2146
2148
|
renter: ClientLiteModel | null;
|
|
2147
2149
|
owner: ClientLiteModel;
|
|
2148
2150
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2174,13 +2176,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2174
2176
|
agent: DocumentAgentInterface;
|
|
2175
2177
|
loader: Loader;
|
|
2176
2178
|
settings?: any;
|
|
2177
|
-
constructor(document: DocumentModel
|
|
2179
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2178
2180
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2179
|
-
updateDocument: (res: DocumentModel
|
|
2181
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2180
2182
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2181
2183
|
get extension(): string;
|
|
2182
2184
|
get title(): string;
|
|
2183
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2185
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2184
2186
|
}
|
|
2185
2187
|
|
|
2186
2188
|
type InputTypes =
|
|
@@ -2240,13 +2242,13 @@ declare type FileParams = {
|
|
|
2240
2242
|
size?: number | null;
|
|
2241
2243
|
file: File;
|
|
2242
2244
|
};
|
|
2243
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2245
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2244
2246
|
declare type FileStoreParams = {
|
|
2245
2247
|
id?: number | null;
|
|
2246
2248
|
url?: string;
|
|
2247
2249
|
index?: number | string | null;
|
|
2248
2250
|
createdBy?: string | null;
|
|
2249
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2251
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2250
2252
|
name?: string;
|
|
2251
2253
|
date?: string | null;
|
|
2252
2254
|
size?: number | null;
|
|
@@ -2397,8 +2399,8 @@ declare const FillingTagsAgent: {
|
|
|
2397
2399
|
};
|
|
2398
2400
|
|
|
2399
2401
|
declare const TariffsAgent: {
|
|
2400
|
-
all: (tariff: ResourceTypes
|
|
2401
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2402
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2403
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2402
2404
|
};
|
|
2403
2405
|
|
|
2404
2406
|
type SignInFormFields = {
|
|
@@ -2417,8 +2419,8 @@ declare const ApartmentsAgent: {
|
|
|
2417
2419
|
};
|
|
2418
2420
|
|
|
2419
2421
|
declare const ApartmentMetersAgent: {
|
|
2420
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2421
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2422
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2423
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2422
2424
|
};
|
|
2423
2425
|
|
|
2424
2426
|
declare const requests: {
|
|
@@ -2442,7 +2444,7 @@ declare const meterUnitLabel: {
|
|
|
2442
2444
|
electricity: string;
|
|
2443
2445
|
};
|
|
2444
2446
|
|
|
2445
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2447
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2446
2448
|
|
|
2447
2449
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2448
2450
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2458,34 +2460,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2458
2460
|
}, "">;
|
|
2459
2461
|
|
|
2460
2462
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2461
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2463
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2462
2464
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2463
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2465
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2464
2466
|
temp_file_id: number;
|
|
2465
2467
|
name: string;
|
|
2466
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2468
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2467
2469
|
url: string;
|
|
2468
2470
|
} | null;
|
|
2469
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2470
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2471
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2471
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2472
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2473
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2472
2474
|
name: string;
|
|
2473
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2475
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2474
2476
|
} | null;
|
|
2475
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2477
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2476
2478
|
name: string;
|
|
2477
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2479
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2478
2480
|
} | null>;
|
|
2479
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2480
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2481
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2482
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2483
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2484
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2485
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2486
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2487
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2488
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2481
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2482
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2483
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2484
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2485
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2486
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2487
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2488
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2489
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2490
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2489
2491
|
|
|
2490
2492
|
declare const matchesAPISubjectRoles: {
|
|
2491
2493
|
maroom: string;
|
|
@@ -2578,16 +2580,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2578
2580
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2579
2581
|
|
|
2580
2582
|
declare class FilesStore {
|
|
2581
|
-
files: FileStore
|
|
2583
|
+
files: FileStore[];
|
|
2582
2584
|
variant: FileVariant;
|
|
2583
2585
|
constructor(variant: FileVariant);
|
|
2584
|
-
addFile: (newFile: FileStore
|
|
2586
|
+
addFile: (newFile: FileStore) => void;
|
|
2585
2587
|
removeFile: (index: number) => void;
|
|
2586
|
-
setFiles: (files: FileStore
|
|
2588
|
+
setFiles: (files: FileStore[]) => void;
|
|
2587
2589
|
uploadFiles: () => Promise<void>;
|
|
2588
|
-
get uploadedData(): (FileBodyRequest
|
|
2590
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2589
2591
|
get uploadedAllFiles(): boolean;
|
|
2590
|
-
get notUploadedFiles(): FileStore
|
|
2592
|
+
get notUploadedFiles(): FileStore[];
|
|
2591
2593
|
get isUploading(): boolean;
|
|
2592
2594
|
get videoLength(): number;
|
|
2593
2595
|
get nonVideoLength(): number;
|
|
@@ -2609,7 +2611,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2609
2611
|
messages?: UploadMediaMessages;
|
|
2610
2612
|
withoutFilesStore?: boolean;
|
|
2611
2613
|
};
|
|
2612
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2614
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2613
2615
|
|
|
2614
2616
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2615
2617
|
onSearchItem: (value: string) => void;
|
|
@@ -2781,11 +2783,11 @@ type DistrictAutocompleteFields = {
|
|
|
2781
2783
|
type ReplaceableTariffFields = {
|
|
2782
2784
|
name: string
|
|
2783
2785
|
id?: number
|
|
2784
|
-
type?: ResourceTypes
|
|
2786
|
+
type?: ResourceTypes
|
|
2785
2787
|
}
|
|
2786
2788
|
|
|
2787
2789
|
type TariffCommonFields = {
|
|
2788
|
-
resourceType: ResourceTypes
|
|
2790
|
+
resourceType: ResourceTypes
|
|
2789
2791
|
name: string
|
|
2790
2792
|
startDate: DateTime
|
|
2791
2793
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2797,7 +2799,7 @@ type TariffCommonFields = {
|
|
|
2797
2799
|
}
|
|
2798
2800
|
|
|
2799
2801
|
type ElectricityTariffCreationFormFields = {
|
|
2800
|
-
type: ElectricityMeterTypes
|
|
2802
|
+
type: ElectricityMeterTypes
|
|
2801
2803
|
isOverallConsumption: boolean
|
|
2802
2804
|
T1?: number
|
|
2803
2805
|
T2?: number
|
|
@@ -2818,7 +2820,7 @@ type TariffCreationFormProps = {
|
|
|
2818
2820
|
handleClose: () => void
|
|
2819
2821
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2820
2822
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2821
|
-
defaultResource: ResourceTypes
|
|
2823
|
+
defaultResource: ResourceTypes
|
|
2822
2824
|
settings?: any
|
|
2823
2825
|
}
|
|
2824
2826
|
|
|
@@ -2863,7 +2865,7 @@ declare class TariffsLiteStore {
|
|
|
2863
2865
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2864
2866
|
settings?: any;
|
|
2865
2867
|
constructor(settings?: any);
|
|
2866
|
-
fetchAll: (resource: ResourceTypes
|
|
2868
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2867
2869
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2868
2870
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2869
2871
|
id: number;
|
|
@@ -2871,7 +2873,7 @@ declare class TariffsLiteStore {
|
|
|
2871
2873
|
};
|
|
2872
2874
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2873
2875
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2874
|
-
type: ElectricityMeterTypes
|
|
2876
|
+
type: ElectricityMeterTypes;
|
|
2875
2877
|
T1: string | undefined;
|
|
2876
2878
|
T2: string | undefined;
|
|
2877
2879
|
T3: string | undefined;
|
|
@@ -3164,7 +3166,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3164
3166
|
name?: string
|
|
3165
3167
|
label?: string
|
|
3166
3168
|
hideName?: string
|
|
3167
|
-
resource: ResourceTypes
|
|
3169
|
+
resource: ResourceTypes
|
|
3168
3170
|
filter?: string
|
|
3169
3171
|
filterRequired?: boolean
|
|
3170
3172
|
settings?: any
|
|
@@ -3177,7 +3179,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3177
3179
|
}
|
|
3178
3180
|
|
|
3179
3181
|
type MeterFeaturesFieldsProps = {
|
|
3180
|
-
resource?: ResourceTypes
|
|
3182
|
+
resource?: ResourceTypes
|
|
3181
3183
|
replacements?: LiteMeterInterface[]
|
|
3182
3184
|
isNewResource?: boolean
|
|
3183
3185
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3191,7 +3193,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3191
3193
|
withNextCheck?: boolean
|
|
3192
3194
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3193
3195
|
handleMeterTypeChange?: (
|
|
3194
|
-
meterType: ElectricityMeterTypes
|
|
3196
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3195
3197
|
) => void
|
|
3196
3198
|
settings?: any
|
|
3197
3199
|
disabledInitial?: boolean
|
|
@@ -3204,14 +3206,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3204
3206
|
initialValueT1?: number
|
|
3205
3207
|
initialValueT2?: number
|
|
3206
3208
|
initialValueT3?: number
|
|
3207
|
-
type?: MeterTypes
|
|
3208
|
-
resource?: ResourceTypes
|
|
3209
|
+
type?: MeterTypes
|
|
3210
|
+
resource?: ResourceTypes
|
|
3209
3211
|
withAutoSending?: boolean
|
|
3210
3212
|
}
|
|
3211
3213
|
|
|
3212
3214
|
type MeterFeaturesFormFields = {
|
|
3213
3215
|
tariff: TariffGroupAutocompleteFields | null
|
|
3214
|
-
company: CompanyAutocompleteFields
|
|
3216
|
+
company: CompanyAutocompleteFields | null
|
|
3215
3217
|
nextCheck: DateTime | null
|
|
3216
3218
|
lastValue?: number
|
|
3217
3219
|
lastValueT1?: number
|
|
@@ -3225,8 +3227,8 @@ type MeterFeaturesFormFields = {
|
|
|
3225
3227
|
} & BasicMeterFeaturesFormFields
|
|
3226
3228
|
|
|
3227
3229
|
type BasicMeterFieldsSettings = {
|
|
3228
|
-
resource?: ResourceTypes
|
|
3229
|
-
meterType?: MeterTypes
|
|
3230
|
+
resource?: ResourceTypes
|
|
3231
|
+
meterType?: MeterTypes
|
|
3230
3232
|
disabledInitial?: boolean
|
|
3231
3233
|
}
|
|
3232
3234
|
|
|
@@ -3258,10 +3260,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3258
3260
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3259
3261
|
|
|
3260
3262
|
type MeterTypeRadioGroupProps = {
|
|
3261
|
-
resource?: ResourceTypes
|
|
3263
|
+
resource?: ResourceTypes
|
|
3262
3264
|
form: UseFormReturn<any>
|
|
3263
3265
|
handleChange: (
|
|
3264
|
-
meterType: ElectricityMeterTypes
|
|
3266
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3265
3267
|
) => void
|
|
3266
3268
|
disabled?: boolean
|
|
3267
3269
|
waterOptions?: OptionParams[]
|
|
@@ -3273,7 +3275,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3273
3275
|
type MeterFeaturesFormProps = {
|
|
3274
3276
|
formStore?: MultistepForm$1<any>
|
|
3275
3277
|
handleMeterTypeChange?: (
|
|
3276
|
-
meterType: ElectricityMeterTypes
|
|
3278
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3277
3279
|
) => void
|
|
3278
3280
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3279
3281
|
|
|
@@ -3341,7 +3343,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3341
3343
|
startDate: undefined;
|
|
3342
3344
|
}, "">;
|
|
3343
3345
|
|
|
3344
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3346
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3345
3347
|
|
|
3346
3348
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3347
3349
|
|
|
@@ -3357,7 +3359,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3357
3359
|
|
|
3358
3360
|
type TariffReplacementFieldsProps = {
|
|
3359
3361
|
form: UseFormReturn<TariffCommonFields>
|
|
3360
|
-
resource: ResourceTypes
|
|
3362
|
+
resource: ResourceTypes
|
|
3361
3363
|
setReplaceable: (value: boolean) => void
|
|
3362
3364
|
settings?: any
|
|
3363
3365
|
}
|
|
@@ -3773,7 +3775,7 @@ type UploadPhotosButtonProps = {
|
|
|
3773
3775
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3774
3776
|
|
|
3775
3777
|
type UploadedImageProps = {
|
|
3776
|
-
image: FileStore
|
|
3778
|
+
image: FileStore
|
|
3777
3779
|
index: number
|
|
3778
3780
|
onClick: (index: number) => void
|
|
3779
3781
|
onDelete: (index: number) => void
|
|
@@ -3806,14 +3808,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3806
3808
|
};
|
|
3807
3809
|
declare type PartialMeterInfoFields = {
|
|
3808
3810
|
id: number;
|
|
3809
|
-
resource: ResourceTypes
|
|
3810
|
-
type?: MeterTypes
|
|
3811
|
+
resource: ResourceTypes;
|
|
3812
|
+
type?: MeterTypes;
|
|
3811
3813
|
number: string;
|
|
3812
|
-
images: FileStore
|
|
3814
|
+
images: FileStore[];
|
|
3813
3815
|
maxValue?: PartialMeterValuesFields;
|
|
3814
3816
|
values: PartialMeterValuesFields;
|
|
3815
3817
|
} & PartialMeterValuesFields;
|
|
3816
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3818
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes, type?: MeterTypes | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3817
3819
|
|
|
3818
3820
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3819
3821
|
type: string | undefined;
|
|
@@ -3840,4 +3842,4 @@ type SignInPageProps = {
|
|
|
3840
3842
|
|
|
3841
3843
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3842
3844
|
|
|
3843
|
-
export { APIPayerValues, APIPayerValuesWithoutInvoice, 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, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as 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, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, 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$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel$1 as VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3845
|
+
export { APIPayerValues, APIPayerValuesWithoutInvoice, 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, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 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, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, 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, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e 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, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|