kui-crm 0.0.578 → 0.0.579
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 +199 -198
- package/package.json +1 -1
- package/types/index.d.ts +144 -143
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 = "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";
|
|
189
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
195
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "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 = "everybody" | "renter" | "owner" | "nobody";
|
|
203
|
+
declare type DocumentVisibilityAPIVariants$1 = "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 | null;
|
|
242
|
+
main_image: ImageModel$1 | 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 | null;
|
|
252
|
+
main_image: ImageModel$1 | 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$1;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles$1;
|
|
267
|
+
refund_from: ResourcePaymentRoles$1;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes;
|
|
269
|
+
value_type?: UnitOfPaymentTypes$1;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest = {
|
|
271
|
+
declare type FileBodyRequest$1 = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest = {
|
|
277
|
+
declare type ImageBodyRequest$1 = {
|
|
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$1 = {
|
|
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$1 = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel = {
|
|
300
|
+
declare type FileModel$1 = {
|
|
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$1 = {
|
|
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$1;
|
|
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$1;
|
|
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 | "other";
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "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$1;
|
|
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 | null;
|
|
446
|
+
photos: ImageBodyRequest$1[];
|
|
447
|
+
instruction?: FileBodyRequest$1 | 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$1 = {
|
|
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$1[];
|
|
479
|
+
videos: VideoModel$1[];
|
|
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 | null;
|
|
519
|
-
meter_type: MeterTypes;
|
|
517
|
+
resource_type: ResourceTypes$1;
|
|
518
|
+
passport: FileModel$1 | null;
|
|
519
|
+
meter_type: MeterTypes$1;
|
|
520
520
|
operating_account: string;
|
|
521
|
-
photos: ImageModel[];
|
|
521
|
+
photos: ImageModel$1[];
|
|
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 | null;
|
|
530
|
-
rental_contract_termination_document: DocumentModel | null;
|
|
531
|
-
service_contract_termination_document: DocumentModel | null;
|
|
529
|
+
inspection_document: DocumentModel$1 | null;
|
|
530
|
+
rental_contract_termination_document: DocumentModel$1 | null;
|
|
531
|
+
service_contract_termination_document: DocumentModel$1 | 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 | null;
|
|
540
|
+
advertisement_screenshot: ImageModel$1 | 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 | null;
|
|
548
|
+
screenshot: ImageModel$1 | 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 | null;
|
|
591
|
+
proof_file: DocumentModel$1 | null;
|
|
592
592
|
price: number;
|
|
593
593
|
solution: string;
|
|
594
594
|
description: string;
|
|
595
|
-
photos: ImageModel[];
|
|
595
|
+
photos: ImageModel$1[];
|
|
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 | null;
|
|
606
|
+
floor_plan: DocumentModel$1 | 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 | null;
|
|
640
|
+
inspection_document: DocumentModel$1 | null;
|
|
641
641
|
} & FullInspectionCommonFields;
|
|
642
642
|
declare type InventoryInspectionModel = {
|
|
643
643
|
inventory: InventoryInspectionFields;
|
|
@@ -677,6 +677,7 @@ declare type ApartmentInspectionListModel = {
|
|
|
677
677
|
owner_feedback: InspectionFeedbackModel | null;
|
|
678
678
|
renter_feedback: InspectionFeedbackModel | null;
|
|
679
679
|
conclusion: AppraisalTenantOfferModel | null;
|
|
680
|
+
status: InspectionStatus;
|
|
680
681
|
};
|
|
681
682
|
declare type InspectionFeedbackInterface = {
|
|
682
683
|
agree: boolean;
|
|
@@ -686,10 +687,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
686
687
|
declare type PatchInspectionImageParams = {
|
|
687
688
|
id?: number;
|
|
688
689
|
order?: number;
|
|
689
|
-
} & Partial<ImageBodyRequest>;
|
|
690
|
+
} & Partial<ImageBodyRequest$1>;
|
|
690
691
|
declare type PatchInspectionVideoParams = {
|
|
691
692
|
id?: number;
|
|
692
|
-
} & Partial<VideoBodyRequest>;
|
|
693
|
+
} & Partial<VideoBodyRequest$1>;
|
|
693
694
|
declare type PatchRoomImagesParams = {
|
|
694
695
|
id?: number | null;
|
|
695
696
|
purpose: InspectionRoomPhotoTypes;
|
|
@@ -730,8 +731,8 @@ declare type InspectionFillingModel = {
|
|
|
730
731
|
description: string;
|
|
731
732
|
serial_code: string;
|
|
732
733
|
amount: number;
|
|
733
|
-
photos: ImageModel[];
|
|
734
|
-
instruction: DocumentModel;
|
|
734
|
+
photos: ImageModel$1[];
|
|
735
|
+
instruction: DocumentModel$1;
|
|
735
736
|
is_absent: boolean;
|
|
736
737
|
previously_absent: boolean;
|
|
737
738
|
model: string;
|
|
@@ -813,7 +814,7 @@ declare type CommonMeterParams = {
|
|
|
813
814
|
company: CompanyLiteParams;
|
|
814
815
|
operating_account_number?: string | null;
|
|
815
816
|
company_is_administrative: boolean;
|
|
816
|
-
photos?: ImageModel[];
|
|
817
|
+
photos?: ImageModel$1[];
|
|
817
818
|
auto_sending: boolean;
|
|
818
819
|
no_tariff: boolean;
|
|
819
820
|
is_avg: boolean;
|
|
@@ -825,15 +826,15 @@ declare type ElectricityMeterValues = {
|
|
|
825
826
|
T3?: MeterTariffModel;
|
|
826
827
|
};
|
|
827
828
|
declare type WaterMeterParams = {
|
|
828
|
-
type: WaterMeterTypes;
|
|
829
|
+
type: WaterMeterTypes$1;
|
|
829
830
|
tariff: SingleCounterTariffModel;
|
|
830
831
|
} & CommonMeterParams & MeterTariffModel;
|
|
831
832
|
declare type SingleMeterParams = {
|
|
832
|
-
type?: WaterMeterTypes;
|
|
833
|
+
type?: WaterMeterTypes$1;
|
|
833
834
|
tariff: SingleCounterTariffModel;
|
|
834
835
|
} & CommonMeterParams & MeterTariffModel;
|
|
835
836
|
declare type ElectricityMeterParams = {
|
|
836
|
-
type: ElectricityMeterTypes;
|
|
837
|
+
type: ElectricityMeterTypes$1;
|
|
837
838
|
values: ElectricityMeterValues;
|
|
838
839
|
tariff: ElectricityMeterTariffModel;
|
|
839
840
|
overall_value?: number;
|
|
@@ -1076,7 +1077,7 @@ declare type CountryParams = {
|
|
|
1076
1077
|
code: string;
|
|
1077
1078
|
} & CatalogItemParams;
|
|
1078
1079
|
|
|
1079
|
-
type FileWithVisibility = {
|
|
1080
|
+
type FileWithVisibility$1 = {
|
|
1080
1081
|
id?: number
|
|
1081
1082
|
file: File | null
|
|
1082
1083
|
tenant: boolean
|
|
@@ -1085,8 +1086,8 @@ type FileWithVisibility = {
|
|
|
1085
1086
|
url: string
|
|
1086
1087
|
}
|
|
1087
1088
|
|
|
1088
|
-
type InputFileWithVisibilityFields =
|
|
1089
|
-
| FileWithVisibility
|
|
1089
|
+
type InputFileWithVisibilityFields$1 =
|
|
1090
|
+
| FileWithVisibility$1
|
|
1090
1091
|
| DocumentWithVisibility
|
|
1091
1092
|
| null
|
|
1092
1093
|
| undefined
|
|
@@ -1116,7 +1117,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1116
1117
|
}
|
|
1117
1118
|
|
|
1118
1119
|
type ChangeReasonFormFields = {
|
|
1119
|
-
reason: InputFileWithVisibilityFields
|
|
1120
|
+
reason: InputFileWithVisibilityFields$1
|
|
1120
1121
|
comment?: string
|
|
1121
1122
|
}
|
|
1122
1123
|
|
|
@@ -1131,13 +1132,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1131
1132
|
settings?: any
|
|
1132
1133
|
} & InputWithControllerProps<TFormValues>
|
|
1133
1134
|
|
|
1134
|
-
type CompanyAutocompleteFields = {
|
|
1135
|
+
type CompanyAutocompleteFields$1 = {
|
|
1135
1136
|
id: number
|
|
1136
1137
|
name: string
|
|
1137
1138
|
logo?: string | null
|
|
1138
1139
|
}
|
|
1139
1140
|
|
|
1140
|
-
declare class FileStore implements FileStoreInterface {
|
|
1141
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1141
1142
|
id: number | null;
|
|
1142
1143
|
index?: number | null;
|
|
1143
1144
|
name: string;
|
|
@@ -1168,13 +1169,13 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1168
1169
|
setIndex: (index: number) => void;
|
|
1169
1170
|
get title(): string;
|
|
1170
1171
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1171
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1172
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1173
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1174
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1175
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1176
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1177
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1172
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1173
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1174
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1175
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1176
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1177
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1178
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1178
1179
|
}
|
|
1179
1180
|
|
|
1180
1181
|
declare type ImageParams = {
|
|
@@ -1209,8 +1210,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1209
1210
|
delete: () => Promise<void>;
|
|
1210
1211
|
get extension(): string;
|
|
1211
1212
|
get title(): string;
|
|
1212
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1213
|
-
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1213
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1214
|
+
static initFromVideoModel: (image: VideoModel$1) => ImageStore;
|
|
1214
1215
|
}
|
|
1215
1216
|
|
|
1216
1217
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1335,7 +1336,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1335
1336
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1336
1337
|
payerCode?: string;
|
|
1337
1338
|
communalServicesAccount?: string;
|
|
1338
|
-
company?: CompanyAutocompleteFields | null;
|
|
1339
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1339
1340
|
} & ChangeReasonFormFields;
|
|
1340
1341
|
declare type ApartmentOverviewInfoFields = {
|
|
1341
1342
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1358,14 +1359,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1358
1359
|
} & ApartmentPaymentInfoParams;
|
|
1359
1360
|
declare type InspectionMeterInfoParams = {
|
|
1360
1361
|
id: number;
|
|
1361
|
-
resource: ResourceTypes;
|
|
1362
|
-
type?: MeterTypes;
|
|
1362
|
+
resource: ResourceTypes$1;
|
|
1363
|
+
type?: MeterTypes$1;
|
|
1363
1364
|
number: string;
|
|
1364
1365
|
startDate: DateTime | null;
|
|
1365
1366
|
company: CompanyLiteParams;
|
|
1366
1367
|
operationalAccountNumber?: string | null;
|
|
1367
1368
|
tariff: EntityLinkParams | null;
|
|
1368
|
-
passportFile: FileStore | null;
|
|
1369
|
+
passportFile: FileStore$1 | null;
|
|
1369
1370
|
initialValue?: number;
|
|
1370
1371
|
lastValue?: number;
|
|
1371
1372
|
initialValueT1?: number;
|
|
@@ -1387,8 +1388,8 @@ declare type ValuesParams = {
|
|
|
1387
1388
|
};
|
|
1388
1389
|
declare type PartialMeterInfoParams = {
|
|
1389
1390
|
id: number;
|
|
1390
|
-
type: MeterTypes;
|
|
1391
|
-
resource: ResourceTypes;
|
|
1391
|
+
type: MeterTypes$1;
|
|
1392
|
+
resource: ResourceTypes$1;
|
|
1392
1393
|
number: string;
|
|
1393
1394
|
values: ValuesParams;
|
|
1394
1395
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1400,7 +1401,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1400
1401
|
declare type ComparableObjectParams = {
|
|
1401
1402
|
id: number;
|
|
1402
1403
|
link: string;
|
|
1403
|
-
screenshot: FileStore | null;
|
|
1404
|
+
screenshot: FileStore$1 | null;
|
|
1404
1405
|
price: number;
|
|
1405
1406
|
differences: string;
|
|
1406
1407
|
};
|
|
@@ -1408,7 +1409,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1408
1409
|
id: number;
|
|
1409
1410
|
dataSourceName: string;
|
|
1410
1411
|
link: string;
|
|
1411
|
-
screenshot: FileStore | null;
|
|
1412
|
+
screenshot: FileStore$1 | null;
|
|
1412
1413
|
minPrice: number;
|
|
1413
1414
|
maxPrice: number;
|
|
1414
1415
|
};
|
|
@@ -1433,8 +1434,8 @@ declare type FillingInfoFormFields = {
|
|
|
1433
1434
|
name?: string;
|
|
1434
1435
|
description?: string;
|
|
1435
1436
|
type?: ApartmentFillingVariants | null;
|
|
1436
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1437
|
-
tempImages?: ImageBodyRequest[];
|
|
1437
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1438
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1438
1439
|
};
|
|
1439
1440
|
|
|
1440
1441
|
declare type FillingTagParams = {
|
|
@@ -1449,7 +1450,7 @@ declare type FillingParams = {
|
|
|
1449
1450
|
images?: (ImageStore | UploadFileParams)[];
|
|
1450
1451
|
serialNumber?: string;
|
|
1451
1452
|
numberOfSubjects?: number | string | null;
|
|
1452
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1453
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1453
1454
|
type?: ApartmentFillingVariants;
|
|
1454
1455
|
loader?: Loader;
|
|
1455
1456
|
};
|
|
@@ -1461,7 +1462,7 @@ declare type FillingFullParams = {
|
|
|
1461
1462
|
images?: (ImageStore | UploadFileParams)[];
|
|
1462
1463
|
serialNumber?: string;
|
|
1463
1464
|
numberOfSubjects?: number | string | null;
|
|
1464
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1465
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1465
1466
|
type?: ApartmentFillingVariants;
|
|
1466
1467
|
loader?: Loader;
|
|
1467
1468
|
check?: boolean | null;
|
|
@@ -1480,31 +1481,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1480
1481
|
name: string;
|
|
1481
1482
|
};
|
|
1482
1483
|
|
|
1483
|
-
declare type ResourcePaymentRoles
|
|
1484
|
-
declare type UnitOfPaymentTypes
|
|
1485
|
-
declare type WaterMeterTypes
|
|
1486
|
-
declare type ElectricityMeterTypes
|
|
1487
|
-
declare type ResourceTypes
|
|
1488
|
-
declare type MeterTypes
|
|
1489
|
-
declare type UtilityTypes
|
|
1490
|
-
declare type DocumentVisibilityAPIVariants
|
|
1491
|
-
declare type FileBodyRequest
|
|
1484
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1485
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1486
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1487
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1488
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1489
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1490
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1491
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1492
|
+
declare type FileBodyRequest = {
|
|
1492
1493
|
temp_file_id?: number;
|
|
1493
1494
|
name: string;
|
|
1494
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1495
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1495
1496
|
url?: string;
|
|
1496
1497
|
};
|
|
1497
|
-
declare type ImageBodyRequest
|
|
1498
|
+
declare type ImageBodyRequest = {
|
|
1498
1499
|
temp_file_id: number;
|
|
1499
1500
|
image_name: string;
|
|
1500
1501
|
url: string;
|
|
1501
1502
|
};
|
|
1502
|
-
declare type VideoBodyRequest
|
|
1503
|
+
declare type VideoBodyRequest = {
|
|
1503
1504
|
temp_file_id: number;
|
|
1504
1505
|
file_name: string;
|
|
1505
1506
|
url: string;
|
|
1506
1507
|
};
|
|
1507
|
-
declare type ImageModel
|
|
1508
|
+
declare type ImageModel = {
|
|
1508
1509
|
id: number;
|
|
1509
1510
|
image_name?: string;
|
|
1510
1511
|
image_url?: string;
|
|
@@ -1513,22 +1514,22 @@ declare type ImageModel$1 = {
|
|
|
1513
1514
|
image_large_url: string;
|
|
1514
1515
|
size: number;
|
|
1515
1516
|
};
|
|
1516
|
-
declare type FileModel
|
|
1517
|
+
declare type FileModel = {
|
|
1517
1518
|
id: number;
|
|
1518
1519
|
name: string;
|
|
1519
1520
|
size: number;
|
|
1520
1521
|
url: string;
|
|
1521
1522
|
};
|
|
1522
|
-
declare type DocumentModel
|
|
1523
|
+
declare type DocumentModel = {
|
|
1523
1524
|
pk: number;
|
|
1524
1525
|
name: string;
|
|
1525
1526
|
created?: string;
|
|
1526
1527
|
attachment: string;
|
|
1527
1528
|
size: number;
|
|
1528
1529
|
uploaded_by?: string | null;
|
|
1529
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1530
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1530
1531
|
};
|
|
1531
|
-
declare type VideoModel
|
|
1532
|
+
declare type VideoModel = {
|
|
1532
1533
|
id: number;
|
|
1533
1534
|
video_url: string;
|
|
1534
1535
|
file_name?: string;
|
|
@@ -1539,7 +1540,7 @@ declare type VideoModel$1 = {
|
|
|
1539
1540
|
resolution?: string;
|
|
1540
1541
|
};
|
|
1541
1542
|
|
|
1542
|
-
type FileWithVisibility
|
|
1543
|
+
type FileWithVisibility = {
|
|
1543
1544
|
id?: number
|
|
1544
1545
|
file: File | null
|
|
1545
1546
|
tenant: boolean
|
|
@@ -1548,19 +1549,19 @@ type FileWithVisibility$1 = {
|
|
|
1548
1549
|
url: string
|
|
1549
1550
|
}
|
|
1550
1551
|
|
|
1551
|
-
type InputFileWithVisibilityFields
|
|
1552
|
-
| FileWithVisibility
|
|
1552
|
+
type InputFileWithVisibilityFields =
|
|
1553
|
+
| FileWithVisibility
|
|
1553
1554
|
| DocumentWithVisibility$1
|
|
1554
1555
|
| null
|
|
1555
1556
|
| undefined
|
|
1556
1557
|
|
|
1557
|
-
type CompanyAutocompleteFields
|
|
1558
|
+
type CompanyAutocompleteFields = {
|
|
1558
1559
|
id: number
|
|
1559
1560
|
name: string
|
|
1560
1561
|
logo?: string | null
|
|
1561
1562
|
}
|
|
1562
1563
|
|
|
1563
|
-
declare class FileStore
|
|
1564
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1564
1565
|
id: number | null;
|
|
1565
1566
|
index?: number | null;
|
|
1566
1567
|
name: string;
|
|
@@ -1591,22 +1592,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1591
1592
|
setIndex: (index: number) => void;
|
|
1592
1593
|
get title(): string;
|
|
1593
1594
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1594
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1595
|
-
static initFromFileModel: (file: FileModel
|
|
1596
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1597
|
-
static initFromImageModel: (file: ImageModel
|
|
1598
|
-
static initFromVideoModel: (image: VideoModel
|
|
1599
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1600
|
-
static initFromFileStore: (file: FileStore
|
|
1595
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1596
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1597
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1598
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1599
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1600
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1601
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1601
1602
|
}
|
|
1602
1603
|
|
|
1603
1604
|
type PartialPayerFields$1 = {
|
|
1604
|
-
payer?: ResourcePaymentRoles
|
|
1605
|
-
mainPayer?: ResourcePaymentRoles
|
|
1606
|
-
refundFrom?: ResourcePaymentRoles
|
|
1607
|
-
partType?: UnitOfPaymentTypes
|
|
1605
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1606
|
+
mainPayer?: ResourcePaymentRoles
|
|
1607
|
+
refundFrom?: ResourcePaymentRoles
|
|
1608
|
+
partType?: UnitOfPaymentTypes | null
|
|
1608
1609
|
refundValue?: number | string | null
|
|
1609
|
-
utilityType: UtilityTypes
|
|
1610
|
+
utilityType: UtilityTypes
|
|
1610
1611
|
}
|
|
1611
1612
|
|
|
1612
1613
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1638,13 +1639,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1638
1639
|
visibility?: DocumentVisibilityVariants$1;
|
|
1639
1640
|
extension: string;
|
|
1640
1641
|
};
|
|
1641
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1642
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1642
1643
|
declare type FileStoreParams$1 = {
|
|
1643
1644
|
id?: number | null;
|
|
1644
1645
|
url?: string;
|
|
1645
1646
|
index?: number | string | null;
|
|
1646
1647
|
createdBy?: string | null;
|
|
1647
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1648
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1648
1649
|
name?: string;
|
|
1649
1650
|
date?: string | null;
|
|
1650
1651
|
size?: number | null;
|
|
@@ -1672,14 +1673,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1672
1673
|
initialValueT1?: number
|
|
1673
1674
|
initialValueT2?: number
|
|
1674
1675
|
initialValueT3?: number
|
|
1675
|
-
type?: MeterTypes
|
|
1676
|
-
resource?: ResourceTypes
|
|
1676
|
+
type?: MeterTypes
|
|
1677
|
+
resource?: ResourceTypes
|
|
1677
1678
|
withAutoSending?: boolean
|
|
1678
1679
|
}
|
|
1679
1680
|
|
|
1680
1681
|
type MeterFeaturesFormFields$1 = {
|
|
1681
1682
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1682
|
-
company: CompanyAutocompleteFields
|
|
1683
|
+
company: CompanyAutocompleteFields | null
|
|
1683
1684
|
nextCheck: DateTime | null
|
|
1684
1685
|
lastValue?: number
|
|
1685
1686
|
lastValueT1?: number
|
|
@@ -1703,9 +1704,9 @@ declare type ApartmentMeterValues = {
|
|
|
1703
1704
|
} & MeterValues;
|
|
1704
1705
|
declare type InspectionMeterFields = {
|
|
1705
1706
|
id?: number;
|
|
1706
|
-
resource: ResourceTypes
|
|
1707
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1708
|
-
images: FileStore
|
|
1707
|
+
resource: ResourceTypes;
|
|
1708
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1709
|
+
images: FileStore[];
|
|
1709
1710
|
} & MeterFeaturesFormFields$1;
|
|
1710
1711
|
|
|
1711
1712
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1720,7 +1721,7 @@ type PartialPayerProps<T> = {
|
|
|
1720
1721
|
title: string
|
|
1721
1722
|
name: string
|
|
1722
1723
|
form: UseFormReturn<T>
|
|
1723
|
-
utilityType: UtilityTypes
|
|
1724
|
+
utilityType: UtilityTypes$1
|
|
1724
1725
|
fieldsVariant?: PartialPayerVariants
|
|
1725
1726
|
settings?: ObjectType
|
|
1726
1727
|
disabled?: boolean
|
|
@@ -1728,12 +1729,12 @@ type PartialPayerProps<T> = {
|
|
|
1728
1729
|
}
|
|
1729
1730
|
|
|
1730
1731
|
type PartialPayerFields = {
|
|
1731
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1732
|
-
mainPayer?: ResourcePaymentRoles
|
|
1733
|
-
refundFrom?: ResourcePaymentRoles
|
|
1734
|
-
partType?: UnitOfPaymentTypes | null
|
|
1732
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1733
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1734
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1735
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1735
1736
|
refundValue?: number | string | null
|
|
1736
|
-
utilityType: UtilityTypes
|
|
1737
|
+
utilityType: UtilityTypes$1
|
|
1737
1738
|
}
|
|
1738
1739
|
|
|
1739
1740
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1817,15 +1818,15 @@ declare type ResourceAccessParams = {
|
|
|
1817
1818
|
password?: string;
|
|
1818
1819
|
description?: string;
|
|
1819
1820
|
};
|
|
1820
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1821
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1821
1822
|
declare type ApartmentResourceCompanyDetails = {
|
|
1822
|
-
company: CompanyAutocompleteFields | null;
|
|
1823
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1823
1824
|
operationalAccountNumber: string;
|
|
1824
1825
|
payerCode: string;
|
|
1825
1826
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1826
1827
|
access: ResourceAccessParams;
|
|
1827
1828
|
sampleReceiptLink: string;
|
|
1828
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1829
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1829
1830
|
};
|
|
1830
1831
|
declare type ApartmentResourceInterface = {
|
|
1831
1832
|
type: ApartmentResourceTypes;
|
|
@@ -1862,15 +1863,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1862
1863
|
loader: Loader;
|
|
1863
1864
|
};
|
|
1864
1865
|
declare type PostDocumentsResponse = {
|
|
1865
|
-
documents: DocumentModel[];
|
|
1866
|
+
documents: DocumentModel$1[];
|
|
1866
1867
|
};
|
|
1867
1868
|
declare type DocumentAgentInterface = {
|
|
1868
1869
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1869
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1870
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1870
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1871
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1871
1872
|
};
|
|
1872
1873
|
declare type DocumentsAgentInterface = {
|
|
1873
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1874
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1874
1875
|
} & DocumentAgentInterface;
|
|
1875
1876
|
|
|
1876
1877
|
declare type MetroLineParams = {
|
|
@@ -1941,7 +1942,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1941
1942
|
};
|
|
1942
1943
|
declare type ApartmentDocumentModel = {
|
|
1943
1944
|
id: number;
|
|
1944
|
-
document: DocumentModel;
|
|
1945
|
+
document: DocumentModel$1;
|
|
1945
1946
|
expiration_date: string;
|
|
1946
1947
|
start_date: string;
|
|
1947
1948
|
number: string;
|
|
@@ -1953,7 +1954,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1953
1954
|
tariff?: TariffLinkModel;
|
|
1954
1955
|
activation_date?: string;
|
|
1955
1956
|
check_date?: string;
|
|
1956
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1957
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1957
1958
|
apartment: ApartmentLinkModel;
|
|
1958
1959
|
company: CompanyLiteParams;
|
|
1959
1960
|
operating_account_number?: string | null;
|
|
@@ -2074,7 +2075,7 @@ declare type ApartmentModel = {
|
|
|
2074
2075
|
owner_id: number;
|
|
2075
2076
|
metro_stations: ApartmentMetroParams[];
|
|
2076
2077
|
rental_status: RentalStatuses;
|
|
2077
|
-
main_image: ImageModel;
|
|
2078
|
+
main_image: ImageModel$1;
|
|
2078
2079
|
tv_type: TVTypes | null;
|
|
2079
2080
|
inspection: ApartmentInspectionModel;
|
|
2080
2081
|
distance_to_center_kilometers: number | null;
|
|
@@ -2101,7 +2102,7 @@ declare type ApartmentLiteModel = {
|
|
|
2101
2102
|
renter: LiteUserModel | null;
|
|
2102
2103
|
rental_status: RentalStatuses;
|
|
2103
2104
|
renter_payment_status: RentalPaymentStatuses;
|
|
2104
|
-
main_image: ImageModel;
|
|
2105
|
+
main_image: ImageModel$1;
|
|
2105
2106
|
service_contract?: ServiceContractLiteModel;
|
|
2106
2107
|
is_imported_from_old_crm?: boolean;
|
|
2107
2108
|
max_electricity_counters?: number | null;
|
|
@@ -2147,7 +2148,7 @@ declare type ObjectForMapModel = {
|
|
|
2147
2148
|
apartment_number: string;
|
|
2148
2149
|
address: string;
|
|
2149
2150
|
geolocation: LatLonParams;
|
|
2150
|
-
main_image: ImageModel;
|
|
2151
|
+
main_image: ImageModel$1;
|
|
2151
2152
|
renter: ClientLiteModel | null;
|
|
2152
2153
|
owner: ClientLiteModel;
|
|
2153
2154
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2179,13 +2180,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2179
2180
|
agent: DocumentAgentInterface;
|
|
2180
2181
|
loader: Loader;
|
|
2181
2182
|
settings?: any;
|
|
2182
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2183
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2183
2184
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2184
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2185
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2185
2186
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2186
2187
|
get extension(): string;
|
|
2187
2188
|
get title(): string;
|
|
2188
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2189
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2189
2190
|
}
|
|
2190
2191
|
|
|
2191
2192
|
type InputTypes =
|
|
@@ -2245,13 +2246,13 @@ declare type FileParams = {
|
|
|
2245
2246
|
size?: number | null;
|
|
2246
2247
|
file: File;
|
|
2247
2248
|
};
|
|
2248
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2249
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2249
2250
|
declare type FileStoreParams = {
|
|
2250
2251
|
id?: number | null;
|
|
2251
2252
|
url?: string;
|
|
2252
2253
|
index?: number | string | null;
|
|
2253
2254
|
createdBy?: string | null;
|
|
2254
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2255
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2255
2256
|
name?: string;
|
|
2256
2257
|
date?: string | null;
|
|
2257
2258
|
size?: number | null;
|
|
@@ -2402,8 +2403,8 @@ declare const FillingTagsAgent: {
|
|
|
2402
2403
|
};
|
|
2403
2404
|
|
|
2404
2405
|
declare const TariffsAgent: {
|
|
2405
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2406
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2406
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2407
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2407
2408
|
};
|
|
2408
2409
|
|
|
2409
2410
|
type SignInFormFields = {
|
|
@@ -2422,8 +2423,8 @@ declare const ApartmentsAgent: {
|
|
|
2422
2423
|
};
|
|
2423
2424
|
|
|
2424
2425
|
declare const ApartmentMetersAgent: {
|
|
2425
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2426
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2426
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2427
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2427
2428
|
};
|
|
2428
2429
|
|
|
2429
2430
|
declare const requests: {
|
|
@@ -2447,7 +2448,7 @@ declare const meterUnitLabel: {
|
|
|
2447
2448
|
electricity: string;
|
|
2448
2449
|
};
|
|
2449
2450
|
|
|
2450
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2451
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2451
2452
|
|
|
2452
2453
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2453
2454
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2463,34 +2464,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2463
2464
|
}, "">;
|
|
2464
2465
|
|
|
2465
2466
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2466
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2467
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2467
2468
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2468
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2469
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2469
2470
|
temp_file_id: number;
|
|
2470
2471
|
name: string;
|
|
2471
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2472
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2472
2473
|
url: string;
|
|
2473
2474
|
} | null;
|
|
2474
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2475
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2476
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2475
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2476
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2477
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2477
2478
|
name: string;
|
|
2478
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2479
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2479
2480
|
} | null;
|
|
2480
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2481
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2481
2482
|
name: string;
|
|
2482
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2483
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2483
2484
|
} | null>;
|
|
2484
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2485
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2486
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2487
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2488
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2489
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2490
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2491
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2492
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2493
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2485
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2486
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2487
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2488
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2489
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2490
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2491
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2492
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2493
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2494
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2494
2495
|
|
|
2495
2496
|
declare const matchesAPISubjectRoles: {
|
|
2496
2497
|
maroom: string;
|
|
@@ -2583,16 +2584,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2583
2584
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2584
2585
|
|
|
2585
2586
|
declare class FilesStore {
|
|
2586
|
-
files: FileStore[];
|
|
2587
|
+
files: FileStore$1[];
|
|
2587
2588
|
variant: FileVariant;
|
|
2588
2589
|
constructor(variant: FileVariant);
|
|
2589
|
-
addFile: (newFile: FileStore) => void;
|
|
2590
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2590
2591
|
removeFile: (index: number) => void;
|
|
2591
|
-
setFiles: (files: FileStore[]) => void;
|
|
2592
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2592
2593
|
uploadFiles: () => Promise<void>;
|
|
2593
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2594
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2594
2595
|
get uploadedAllFiles(): boolean;
|
|
2595
|
-
get notUploadedFiles(): FileStore[];
|
|
2596
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2596
2597
|
get isUploading(): boolean;
|
|
2597
2598
|
get videoLength(): number;
|
|
2598
2599
|
get nonVideoLength(): number;
|
|
@@ -2614,7 +2615,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2614
2615
|
messages?: UploadMediaMessages;
|
|
2615
2616
|
withoutFilesStore?: boolean;
|
|
2616
2617
|
};
|
|
2617
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2618
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2618
2619
|
|
|
2619
2620
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2620
2621
|
onSearchItem: (value: string) => void;
|
|
@@ -2786,11 +2787,11 @@ type DistrictAutocompleteFields = {
|
|
|
2786
2787
|
type ReplaceableTariffFields = {
|
|
2787
2788
|
name: string
|
|
2788
2789
|
id?: number
|
|
2789
|
-
type?: ResourceTypes
|
|
2790
|
+
type?: ResourceTypes$1
|
|
2790
2791
|
}
|
|
2791
2792
|
|
|
2792
2793
|
type TariffCommonFields = {
|
|
2793
|
-
resourceType: ResourceTypes
|
|
2794
|
+
resourceType: ResourceTypes$1
|
|
2794
2795
|
name: string
|
|
2795
2796
|
startDate: DateTime
|
|
2796
2797
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2802,7 +2803,7 @@ type TariffCommonFields = {
|
|
|
2802
2803
|
}
|
|
2803
2804
|
|
|
2804
2805
|
type ElectricityTariffCreationFormFields = {
|
|
2805
|
-
type: ElectricityMeterTypes
|
|
2806
|
+
type: ElectricityMeterTypes$1
|
|
2806
2807
|
isOverallConsumption: boolean
|
|
2807
2808
|
T1?: number
|
|
2808
2809
|
T2?: number
|
|
@@ -2823,7 +2824,7 @@ type TariffCreationFormProps = {
|
|
|
2823
2824
|
handleClose: () => void
|
|
2824
2825
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2825
2826
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2826
|
-
defaultResource: ResourceTypes
|
|
2827
|
+
defaultResource: ResourceTypes$1
|
|
2827
2828
|
settings?: any
|
|
2828
2829
|
}
|
|
2829
2830
|
|
|
@@ -2868,7 +2869,7 @@ declare class TariffsLiteStore {
|
|
|
2868
2869
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2869
2870
|
settings?: any;
|
|
2870
2871
|
constructor(settings?: any);
|
|
2871
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2872
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2872
2873
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2873
2874
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2874
2875
|
id: number;
|
|
@@ -2876,7 +2877,7 @@ declare class TariffsLiteStore {
|
|
|
2876
2877
|
};
|
|
2877
2878
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2878
2879
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2879
|
-
type: ElectricityMeterTypes;
|
|
2880
|
+
type: ElectricityMeterTypes$1;
|
|
2880
2881
|
T1: string | undefined;
|
|
2881
2882
|
T2: string | undefined;
|
|
2882
2883
|
T3: string | undefined;
|
|
@@ -3169,7 +3170,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3169
3170
|
name?: string
|
|
3170
3171
|
label?: string
|
|
3171
3172
|
hideName?: string
|
|
3172
|
-
resource: ResourceTypes
|
|
3173
|
+
resource: ResourceTypes$1
|
|
3173
3174
|
filter?: string
|
|
3174
3175
|
filterRequired?: boolean
|
|
3175
3176
|
settings?: any
|
|
@@ -3182,7 +3183,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3182
3183
|
}
|
|
3183
3184
|
|
|
3184
3185
|
type MeterFeaturesFieldsProps = {
|
|
3185
|
-
resource?: ResourceTypes
|
|
3186
|
+
resource?: ResourceTypes$1
|
|
3186
3187
|
replacements?: LiteMeterInterface[]
|
|
3187
3188
|
isNewResource?: boolean
|
|
3188
3189
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3196,7 +3197,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3196
3197
|
withNextCheck?: boolean
|
|
3197
3198
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3198
3199
|
handleMeterTypeChange?: (
|
|
3199
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3200
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3200
3201
|
) => void
|
|
3201
3202
|
settings?: any
|
|
3202
3203
|
disabledInitial?: boolean
|
|
@@ -3209,14 +3210,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3209
3210
|
initialValueT1?: number
|
|
3210
3211
|
initialValueT2?: number
|
|
3211
3212
|
initialValueT3?: number
|
|
3212
|
-
type?: MeterTypes
|
|
3213
|
-
resource?: ResourceTypes
|
|
3213
|
+
type?: MeterTypes$1
|
|
3214
|
+
resource?: ResourceTypes$1
|
|
3214
3215
|
withAutoSending?: boolean
|
|
3215
3216
|
}
|
|
3216
3217
|
|
|
3217
3218
|
type MeterFeaturesFormFields = {
|
|
3218
3219
|
tariff: TariffGroupAutocompleteFields | null
|
|
3219
|
-
company: CompanyAutocompleteFields | null
|
|
3220
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3220
3221
|
nextCheck: DateTime | null
|
|
3221
3222
|
lastValue?: number
|
|
3222
3223
|
lastValueT1?: number
|
|
@@ -3230,8 +3231,8 @@ type MeterFeaturesFormFields = {
|
|
|
3230
3231
|
} & BasicMeterFeaturesFormFields
|
|
3231
3232
|
|
|
3232
3233
|
type BasicMeterFieldsSettings = {
|
|
3233
|
-
resource?: ResourceTypes
|
|
3234
|
-
meterType?: MeterTypes
|
|
3234
|
+
resource?: ResourceTypes$1
|
|
3235
|
+
meterType?: MeterTypes$1
|
|
3235
3236
|
disabledInitial?: boolean
|
|
3236
3237
|
}
|
|
3237
3238
|
|
|
@@ -3263,10 +3264,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3263
3264
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3264
3265
|
|
|
3265
3266
|
type MeterTypeRadioGroupProps = {
|
|
3266
|
-
resource?: ResourceTypes
|
|
3267
|
+
resource?: ResourceTypes$1
|
|
3267
3268
|
form: UseFormReturn<any>
|
|
3268
3269
|
handleChange: (
|
|
3269
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3270
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3270
3271
|
) => void
|
|
3271
3272
|
disabled?: boolean
|
|
3272
3273
|
waterOptions?: OptionParams[]
|
|
@@ -3278,7 +3279,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3278
3279
|
type MeterFeaturesFormProps = {
|
|
3279
3280
|
formStore?: MultistepForm$1<any>
|
|
3280
3281
|
handleMeterTypeChange?: (
|
|
3281
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3282
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3282
3283
|
) => void
|
|
3283
3284
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3284
3285
|
|
|
@@ -3346,7 +3347,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3346
3347
|
startDate: undefined;
|
|
3347
3348
|
}, "">;
|
|
3348
3349
|
|
|
3349
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3350
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3350
3351
|
|
|
3351
3352
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3352
3353
|
|
|
@@ -3362,7 +3363,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3362
3363
|
|
|
3363
3364
|
type TariffReplacementFieldsProps = {
|
|
3364
3365
|
form: UseFormReturn<TariffCommonFields>
|
|
3365
|
-
resource: ResourceTypes
|
|
3366
|
+
resource: ResourceTypes$1
|
|
3366
3367
|
setReplaceable: (value: boolean) => void
|
|
3367
3368
|
settings?: any
|
|
3368
3369
|
}
|
|
@@ -3778,7 +3779,7 @@ type UploadPhotosButtonProps = {
|
|
|
3778
3779
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3779
3780
|
|
|
3780
3781
|
type UploadedImageProps = {
|
|
3781
|
-
image: FileStore
|
|
3782
|
+
image: FileStore$1
|
|
3782
3783
|
index: number
|
|
3783
3784
|
onClick: (index: number) => void
|
|
3784
3785
|
onDelete: (index: number) => void
|
|
@@ -3811,14 +3812,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3811
3812
|
};
|
|
3812
3813
|
declare type PartialMeterInfoFields = {
|
|
3813
3814
|
id: number;
|
|
3814
|
-
resource: ResourceTypes;
|
|
3815
|
-
type?: MeterTypes;
|
|
3815
|
+
resource: ResourceTypes$1;
|
|
3816
|
+
type?: MeterTypes$1;
|
|
3816
3817
|
number: string;
|
|
3817
|
-
images: FileStore[];
|
|
3818
|
+
images: FileStore$1[];
|
|
3818
3819
|
maxValue?: PartialMeterValuesFields;
|
|
3819
3820
|
values: PartialMeterValuesFields;
|
|
3820
3821
|
} & PartialMeterValuesFields;
|
|
3821
|
-
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>[];
|
|
3822
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes$1, type?: MeterTypes$1 | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3822
3823
|
|
|
3823
3824
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3824
3825
|
type: string | undefined;
|
|
@@ -3845,4 +3846,4 @@ type SignInPageProps = {
|
|
|
3845
3846
|
|
|
3846
3847
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3847
3848
|
|
|
3848
|
-
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 };
|
|
3849
|
+
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 };
|