kui-crm 0.0.592 → 0.0.593
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;
|
|
@@ -429,6 +429,7 @@ declare type ApartmentResourceModel = {
|
|
|
429
429
|
comment?: string;
|
|
430
430
|
meters_max_count?: number;
|
|
431
431
|
meters_current_count?: number;
|
|
432
|
+
app_name?: string;
|
|
432
433
|
};
|
|
433
434
|
declare type ApartmentResourcesResponse = ApartmentResourceModel[];
|
|
434
435
|
|
|
@@ -443,8 +444,8 @@ declare type InspectionFillingParams = {
|
|
|
443
444
|
description?: string;
|
|
444
445
|
serial_code?: string;
|
|
445
446
|
amount?: number | string | null;
|
|
446
|
-
photos: ImageBodyRequest[];
|
|
447
|
-
instruction?: FileBodyRequest | null;
|
|
447
|
+
photos: ImageBodyRequest$1[];
|
|
448
|
+
instruction?: FileBodyRequest$1 | null;
|
|
448
449
|
was_missing?: boolean;
|
|
449
450
|
};
|
|
450
451
|
declare type InspectionMeterValueModel = {
|
|
@@ -460,7 +461,7 @@ declare type InspectionBasedOnModel = {
|
|
|
460
461
|
id: number;
|
|
461
462
|
inspection_type: InspectionTypes;
|
|
462
463
|
};
|
|
463
|
-
declare type VideoModel = {
|
|
464
|
+
declare type VideoModel$1 = {
|
|
464
465
|
id: number;
|
|
465
466
|
video_url: string;
|
|
466
467
|
file_name?: string;
|
|
@@ -475,8 +476,8 @@ declare type InspectionRoomPhotoModel = {
|
|
|
475
476
|
uploaded: boolean;
|
|
476
477
|
purpose: InspectionRoomPhotoTypes;
|
|
477
478
|
comment?: string;
|
|
478
|
-
photos: ImageModel[];
|
|
479
|
-
videos: VideoModel[];
|
|
479
|
+
photos: ImageModel$1[];
|
|
480
|
+
videos: VideoModel$1[];
|
|
480
481
|
room_order_number?: number | null;
|
|
481
482
|
};
|
|
482
483
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
|
|
@@ -514,11 +515,11 @@ declare type FullInspectionCommonFields = {
|
|
|
514
515
|
filling: InspectionFillingModel[];
|
|
515
516
|
} & ApartmentModel;
|
|
516
517
|
declare type InspectionMeterCommonInfo = {
|
|
517
|
-
resource_type: ResourceTypes;
|
|
518
|
-
passport: FileModel | null;
|
|
519
|
-
meter_type: MeterTypes;
|
|
518
|
+
resource_type: ResourceTypes$1;
|
|
519
|
+
passport: FileModel$1 | null;
|
|
520
|
+
meter_type: MeterTypes$1;
|
|
520
521
|
operating_account: string;
|
|
521
|
-
photos: ImageModel[];
|
|
522
|
+
photos: ImageModel$1[];
|
|
522
523
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
523
524
|
declare type TransferInspectionMeterModel = {
|
|
524
525
|
values: InspectionMeterValueModel;
|
|
@@ -528,9 +529,9 @@ declare type TransferInspectionMeterModel = {
|
|
|
528
529
|
declare type TransferInspectionFields = {
|
|
529
530
|
transfer_type: TransferInspectionTypes;
|
|
530
531
|
meters: TransferInspectionMeterModel[];
|
|
531
|
-
inspection_document: DocumentModel | null;
|
|
532
|
-
rental_contract_termination_document: DocumentModel | null;
|
|
533
|
-
service_contract_termination_document: DocumentModel | null;
|
|
532
|
+
inspection_document: DocumentModel$1 | null;
|
|
533
|
+
rental_contract_termination_document: DocumentModel$1 | null;
|
|
534
|
+
service_contract_termination_document: DocumentModel$1 | null;
|
|
534
535
|
} & FullInspectionCommonFields;
|
|
535
536
|
declare type RegularInspectionFields = {
|
|
536
537
|
meters: TransferInspectionMeterModel[];
|
|
@@ -539,7 +540,7 @@ declare type RegularInspectionFields = {
|
|
|
539
540
|
declare type ComparableObjectModel = {
|
|
540
541
|
id: number;
|
|
541
542
|
advertisement_link: string;
|
|
542
|
-
advertisement_screenshot: ImageModel | null;
|
|
543
|
+
advertisement_screenshot: ImageModel$1 | null;
|
|
543
544
|
object_price: string;
|
|
544
545
|
key_object_differences: string;
|
|
545
546
|
};
|
|
@@ -547,7 +548,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
547
548
|
id: number;
|
|
548
549
|
source_name: string;
|
|
549
550
|
link: string;
|
|
550
|
-
screenshot: ImageModel | null;
|
|
551
|
+
screenshot: ImageModel$1 | null;
|
|
551
552
|
min_price: string;
|
|
552
553
|
max_price: string;
|
|
553
554
|
};
|
|
@@ -590,11 +591,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
590
591
|
declare type ImpairmentModel = {
|
|
591
592
|
id: number;
|
|
592
593
|
impairment_type: ImpairmentType;
|
|
593
|
-
proof_file: DocumentModel | null;
|
|
594
|
+
proof_file: DocumentModel$1 | null;
|
|
594
595
|
price: number;
|
|
595
596
|
solution: string;
|
|
596
597
|
description: string;
|
|
597
|
-
photos: ImageModel[];
|
|
598
|
+
photos: ImageModel$1[];
|
|
598
599
|
item_link: string;
|
|
599
600
|
bill_line_name: string;
|
|
600
601
|
};
|
|
@@ -605,7 +606,7 @@ declare type InitialInspectionModelFields = {
|
|
|
605
606
|
used_resources: UsedResourcesModel;
|
|
606
607
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
607
608
|
declare type AppraisalRequestModelFields = {
|
|
608
|
-
floor_plan: DocumentModel | null;
|
|
609
|
+
floor_plan: DocumentModel$1 | null;
|
|
609
610
|
};
|
|
610
611
|
declare type InspectionModel = {
|
|
611
612
|
initial?: InitialInspectionModelFields;
|
|
@@ -639,7 +640,7 @@ declare type InventoryInspectionFields = {
|
|
|
639
640
|
allowed_smoking: boolean;
|
|
640
641
|
additional_terms: string;
|
|
641
642
|
resources: InspectionResourcesModel[];
|
|
642
|
-
inspection_document: DocumentModel | null;
|
|
643
|
+
inspection_document: DocumentModel$1 | null;
|
|
643
644
|
} & FullInspectionCommonFields;
|
|
644
645
|
declare type InventoryInspectionModel = {
|
|
645
646
|
inventory: InventoryInspectionFields;
|
|
@@ -691,10 +692,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
691
692
|
declare type PatchInspectionImageParams = {
|
|
692
693
|
id?: number;
|
|
693
694
|
order?: number;
|
|
694
|
-
} & Partial<ImageBodyRequest>;
|
|
695
|
+
} & Partial<ImageBodyRequest$1>;
|
|
695
696
|
declare type PatchInspectionVideoParams = {
|
|
696
697
|
id?: number;
|
|
697
|
-
} & Partial<VideoBodyRequest>;
|
|
698
|
+
} & Partial<VideoBodyRequest$1>;
|
|
698
699
|
declare type PatchRoomImagesParams = {
|
|
699
700
|
id?: number | null;
|
|
700
701
|
purpose: InspectionRoomPhotoTypes;
|
|
@@ -735,8 +736,8 @@ declare type InspectionFillingModel = {
|
|
|
735
736
|
description: string;
|
|
736
737
|
serial_code: string;
|
|
737
738
|
amount: number;
|
|
738
|
-
photos: ImageModel[];
|
|
739
|
-
instruction: DocumentModel;
|
|
739
|
+
photos: ImageModel$1[];
|
|
740
|
+
instruction: DocumentModel$1;
|
|
740
741
|
is_absent: boolean;
|
|
741
742
|
previously_absent: boolean;
|
|
742
743
|
model: string;
|
|
@@ -818,7 +819,7 @@ declare type CommonMeterParams = {
|
|
|
818
819
|
company: CompanyLiteParams;
|
|
819
820
|
operating_account_number?: string | null;
|
|
820
821
|
company_is_administrative: boolean;
|
|
821
|
-
photos?: ImageModel[];
|
|
822
|
+
photos?: ImageModel$1[];
|
|
822
823
|
auto_sending: boolean;
|
|
823
824
|
no_tariff: boolean;
|
|
824
825
|
is_avg: boolean;
|
|
@@ -830,15 +831,15 @@ declare type ElectricityMeterValues = {
|
|
|
830
831
|
T3?: MeterTariffModel;
|
|
831
832
|
};
|
|
832
833
|
declare type WaterMeterParams = {
|
|
833
|
-
type: WaterMeterTypes;
|
|
834
|
+
type: WaterMeterTypes$1;
|
|
834
835
|
tariff: SingleCounterTariffModel;
|
|
835
836
|
} & CommonMeterParams & MeterTariffModel;
|
|
836
837
|
declare type SingleMeterParams = {
|
|
837
|
-
type?: WaterMeterTypes;
|
|
838
|
+
type?: WaterMeterTypes$1;
|
|
838
839
|
tariff: SingleCounterTariffModel;
|
|
839
840
|
} & CommonMeterParams & MeterTariffModel;
|
|
840
841
|
declare type ElectricityMeterParams = {
|
|
841
|
-
type: ElectricityMeterTypes;
|
|
842
|
+
type: ElectricityMeterTypes$1;
|
|
842
843
|
values: ElectricityMeterValues;
|
|
843
844
|
tariff: ElectricityMeterTariffModel;
|
|
844
845
|
overall_value?: number;
|
|
@@ -1081,7 +1082,7 @@ declare type CountryParams = {
|
|
|
1081
1082
|
code: string;
|
|
1082
1083
|
} & CatalogItemParams;
|
|
1083
1084
|
|
|
1084
|
-
type FileWithVisibility = {
|
|
1085
|
+
type FileWithVisibility$1 = {
|
|
1085
1086
|
id?: number
|
|
1086
1087
|
file: File | null
|
|
1087
1088
|
tenant: boolean
|
|
@@ -1090,8 +1091,8 @@ type FileWithVisibility = {
|
|
|
1090
1091
|
url: string
|
|
1091
1092
|
}
|
|
1092
1093
|
|
|
1093
|
-
type InputFileWithVisibilityFields =
|
|
1094
|
-
| FileWithVisibility
|
|
1094
|
+
type InputFileWithVisibilityFields$1 =
|
|
1095
|
+
| FileWithVisibility$1
|
|
1095
1096
|
| DocumentWithVisibility
|
|
1096
1097
|
| null
|
|
1097
1098
|
| undefined
|
|
@@ -1121,7 +1122,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1121
1122
|
}
|
|
1122
1123
|
|
|
1123
1124
|
type ChangeReasonFormFields = {
|
|
1124
|
-
reason: InputFileWithVisibilityFields
|
|
1125
|
+
reason: InputFileWithVisibilityFields$1
|
|
1125
1126
|
comment?: string
|
|
1126
1127
|
}
|
|
1127
1128
|
|
|
@@ -1136,13 +1137,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1136
1137
|
settings?: any
|
|
1137
1138
|
} & InputWithControllerProps<TFormValues>
|
|
1138
1139
|
|
|
1139
|
-
type CompanyAutocompleteFields = {
|
|
1140
|
+
type CompanyAutocompleteFields$1 = {
|
|
1140
1141
|
id: number
|
|
1141
1142
|
name: string
|
|
1142
1143
|
logo?: string | null
|
|
1143
1144
|
}
|
|
1144
1145
|
|
|
1145
|
-
declare class FileStore implements FileStoreInterface {
|
|
1146
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1146
1147
|
id: number | null;
|
|
1147
1148
|
index?: number | null;
|
|
1148
1149
|
name: string;
|
|
@@ -1173,13 +1174,13 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1173
1174
|
setIndex: (index: number) => void;
|
|
1174
1175
|
get title(): string;
|
|
1175
1176
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1176
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1177
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1178
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1179
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1180
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1181
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1182
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1177
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1178
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1179
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1180
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1181
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1182
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1183
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1183
1184
|
}
|
|
1184
1185
|
|
|
1185
1186
|
declare type ImageParams = {
|
|
@@ -1214,8 +1215,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1214
1215
|
delete: () => Promise<void>;
|
|
1215
1216
|
get extension(): string;
|
|
1216
1217
|
get title(): string;
|
|
1217
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1218
|
-
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1218
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1219
|
+
static initFromVideoModel: (image: VideoModel$1) => ImageStore;
|
|
1219
1220
|
}
|
|
1220
1221
|
|
|
1221
1222
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1340,7 +1341,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1340
1341
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1341
1342
|
payerCode?: string;
|
|
1342
1343
|
communalServicesAccount?: string;
|
|
1343
|
-
company?: CompanyAutocompleteFields | null;
|
|
1344
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1344
1345
|
} & ChangeReasonFormFields;
|
|
1345
1346
|
declare type ApartmentOverviewInfoFields = {
|
|
1346
1347
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1363,14 +1364,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1363
1364
|
} & ApartmentPaymentInfoParams;
|
|
1364
1365
|
declare type InspectionMeterInfoParams = {
|
|
1365
1366
|
id: number;
|
|
1366
|
-
resource: ResourceTypes;
|
|
1367
|
-
type?: MeterTypes;
|
|
1367
|
+
resource: ResourceTypes$1;
|
|
1368
|
+
type?: MeterTypes$1;
|
|
1368
1369
|
number: string;
|
|
1369
1370
|
startDate: DateTime | null;
|
|
1370
1371
|
company: CompanyLiteParams;
|
|
1371
1372
|
operationalAccountNumber?: string | null;
|
|
1372
1373
|
tariff: EntityLinkParams | null;
|
|
1373
|
-
passportFile: FileStore | null;
|
|
1374
|
+
passportFile: FileStore$1 | null;
|
|
1374
1375
|
initialValue?: number;
|
|
1375
1376
|
lastValue?: number;
|
|
1376
1377
|
initialValueT1?: number;
|
|
@@ -1392,8 +1393,8 @@ declare type ValuesParams = {
|
|
|
1392
1393
|
};
|
|
1393
1394
|
declare type PartialMeterInfoParams = {
|
|
1394
1395
|
id: number;
|
|
1395
|
-
type: MeterTypes;
|
|
1396
|
-
resource: ResourceTypes;
|
|
1396
|
+
type: MeterTypes$1;
|
|
1397
|
+
resource: ResourceTypes$1;
|
|
1397
1398
|
number: string;
|
|
1398
1399
|
values: ValuesParams;
|
|
1399
1400
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1407,7 +1408,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1407
1408
|
declare type ComparableObjectParams = {
|
|
1408
1409
|
id: number;
|
|
1409
1410
|
link: string;
|
|
1410
|
-
screenshot: FileStore | null;
|
|
1411
|
+
screenshot: FileStore$1 | null;
|
|
1411
1412
|
price: number;
|
|
1412
1413
|
differences: string;
|
|
1413
1414
|
};
|
|
@@ -1415,7 +1416,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1415
1416
|
id: number;
|
|
1416
1417
|
dataSourceName: string;
|
|
1417
1418
|
link: string;
|
|
1418
|
-
screenshot: FileStore | null;
|
|
1419
|
+
screenshot: FileStore$1 | null;
|
|
1419
1420
|
minPrice: number;
|
|
1420
1421
|
maxPrice: number;
|
|
1421
1422
|
};
|
|
@@ -1440,8 +1441,8 @@ declare type FillingInfoFormFields = {
|
|
|
1440
1441
|
name?: string;
|
|
1441
1442
|
description?: string;
|
|
1442
1443
|
type?: ApartmentFillingVariants | null;
|
|
1443
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1444
|
-
tempImages?: ImageBodyRequest[];
|
|
1444
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1445
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1445
1446
|
};
|
|
1446
1447
|
|
|
1447
1448
|
declare type FillingTagParams = {
|
|
@@ -1456,7 +1457,7 @@ declare type FillingParams = {
|
|
|
1456
1457
|
images?: (ImageStore | UploadFileParams)[];
|
|
1457
1458
|
serialNumber?: string;
|
|
1458
1459
|
numberOfSubjects?: number | string | null;
|
|
1459
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1460
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1460
1461
|
type?: ApartmentFillingVariants;
|
|
1461
1462
|
loader?: Loader;
|
|
1462
1463
|
};
|
|
@@ -1468,7 +1469,7 @@ declare type FillingFullParams = {
|
|
|
1468
1469
|
images?: (ImageStore | UploadFileParams)[];
|
|
1469
1470
|
serialNumber?: string;
|
|
1470
1471
|
numberOfSubjects?: number | string | null;
|
|
1471
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1472
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1472
1473
|
type?: ApartmentFillingVariants;
|
|
1473
1474
|
loader?: Loader;
|
|
1474
1475
|
check?: boolean | null;
|
|
@@ -1487,31 +1488,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1487
1488
|
name: string;
|
|
1488
1489
|
};
|
|
1489
1490
|
|
|
1490
|
-
declare type ResourcePaymentRoles
|
|
1491
|
-
declare type UnitOfPaymentTypes
|
|
1492
|
-
declare type WaterMeterTypes
|
|
1493
|
-
declare type ElectricityMeterTypes
|
|
1494
|
-
declare type ResourceTypes
|
|
1495
|
-
declare type MeterTypes
|
|
1496
|
-
declare type UtilityTypes
|
|
1497
|
-
declare type DocumentVisibilityAPIVariants
|
|
1498
|
-
declare type FileBodyRequest
|
|
1491
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1492
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1493
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1494
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1495
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1496
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1497
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1498
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1499
|
+
declare type FileBodyRequest = {
|
|
1499
1500
|
temp_file_id?: number;
|
|
1500
1501
|
name: string;
|
|
1501
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1502
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1502
1503
|
url?: string;
|
|
1503
1504
|
};
|
|
1504
|
-
declare type ImageBodyRequest
|
|
1505
|
+
declare type ImageBodyRequest = {
|
|
1505
1506
|
temp_file_id: number;
|
|
1506
1507
|
image_name: string;
|
|
1507
1508
|
url: string;
|
|
1508
1509
|
};
|
|
1509
|
-
declare type VideoBodyRequest
|
|
1510
|
+
declare type VideoBodyRequest = {
|
|
1510
1511
|
temp_file_id: number;
|
|
1511
1512
|
file_name: string;
|
|
1512
1513
|
url: string;
|
|
1513
1514
|
};
|
|
1514
|
-
declare type ImageModel
|
|
1515
|
+
declare type ImageModel = {
|
|
1515
1516
|
id: number;
|
|
1516
1517
|
image_name?: string;
|
|
1517
1518
|
image_url?: string;
|
|
@@ -1520,22 +1521,22 @@ declare type ImageModel$1 = {
|
|
|
1520
1521
|
image_large_url: string;
|
|
1521
1522
|
size: number;
|
|
1522
1523
|
};
|
|
1523
|
-
declare type FileModel
|
|
1524
|
+
declare type FileModel = {
|
|
1524
1525
|
id: number;
|
|
1525
1526
|
name: string;
|
|
1526
1527
|
size: number;
|
|
1527
1528
|
url: string;
|
|
1528
1529
|
};
|
|
1529
|
-
declare type DocumentModel
|
|
1530
|
+
declare type DocumentModel = {
|
|
1530
1531
|
pk: number;
|
|
1531
1532
|
name: string;
|
|
1532
1533
|
created?: string;
|
|
1533
1534
|
attachment: string;
|
|
1534
1535
|
size: number;
|
|
1535
1536
|
uploaded_by?: string | null;
|
|
1536
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1537
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1537
1538
|
};
|
|
1538
|
-
declare type VideoModel
|
|
1539
|
+
declare type VideoModel = {
|
|
1539
1540
|
id: number;
|
|
1540
1541
|
video_url: string;
|
|
1541
1542
|
file_name?: string;
|
|
@@ -1546,7 +1547,7 @@ declare type VideoModel$1 = {
|
|
|
1546
1547
|
resolution?: string;
|
|
1547
1548
|
};
|
|
1548
1549
|
|
|
1549
|
-
type FileWithVisibility
|
|
1550
|
+
type FileWithVisibility = {
|
|
1550
1551
|
id?: number
|
|
1551
1552
|
file: File | null
|
|
1552
1553
|
tenant: boolean
|
|
@@ -1555,19 +1556,19 @@ type FileWithVisibility$1 = {
|
|
|
1555
1556
|
url: string
|
|
1556
1557
|
}
|
|
1557
1558
|
|
|
1558
|
-
type InputFileWithVisibilityFields
|
|
1559
|
-
| FileWithVisibility
|
|
1559
|
+
type InputFileWithVisibilityFields =
|
|
1560
|
+
| FileWithVisibility
|
|
1560
1561
|
| DocumentWithVisibility$1
|
|
1561
1562
|
| null
|
|
1562
1563
|
| undefined
|
|
1563
1564
|
|
|
1564
|
-
type CompanyAutocompleteFields
|
|
1565
|
+
type CompanyAutocompleteFields = {
|
|
1565
1566
|
id: number
|
|
1566
1567
|
name: string
|
|
1567
1568
|
logo?: string | null
|
|
1568
1569
|
}
|
|
1569
1570
|
|
|
1570
|
-
declare class FileStore
|
|
1571
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1571
1572
|
id: number | null;
|
|
1572
1573
|
index?: number | null;
|
|
1573
1574
|
name: string;
|
|
@@ -1598,22 +1599,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1598
1599
|
setIndex: (index: number) => void;
|
|
1599
1600
|
get title(): string;
|
|
1600
1601
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1601
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1602
|
-
static initFromFileModel: (file: FileModel
|
|
1603
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1604
|
-
static initFromImageModel: (file: ImageModel
|
|
1605
|
-
static initFromVideoModel: (image: VideoModel
|
|
1606
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1607
|
-
static initFromFileStore: (file: FileStore
|
|
1602
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1603
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1604
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1605
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1606
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1607
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1608
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1608
1609
|
}
|
|
1609
1610
|
|
|
1610
1611
|
type PartialPayerFields$1 = {
|
|
1611
|
-
payer?: ResourcePaymentRoles
|
|
1612
|
-
mainPayer?: ResourcePaymentRoles
|
|
1613
|
-
refundFrom?: ResourcePaymentRoles
|
|
1614
|
-
partType?: UnitOfPaymentTypes
|
|
1612
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1613
|
+
mainPayer?: ResourcePaymentRoles
|
|
1614
|
+
refundFrom?: ResourcePaymentRoles
|
|
1615
|
+
partType?: UnitOfPaymentTypes | null
|
|
1615
1616
|
refundValue?: number | string | null
|
|
1616
|
-
utilityType: UtilityTypes
|
|
1617
|
+
utilityType: UtilityTypes
|
|
1617
1618
|
}
|
|
1618
1619
|
|
|
1619
1620
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1645,13 +1646,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1645
1646
|
visibility?: DocumentVisibilityVariants$1;
|
|
1646
1647
|
extension: string;
|
|
1647
1648
|
};
|
|
1648
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1649
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1649
1650
|
declare type FileStoreParams$1 = {
|
|
1650
1651
|
id?: number | null;
|
|
1651
1652
|
url?: string;
|
|
1652
1653
|
index?: number | string | null;
|
|
1653
1654
|
createdBy?: string | null;
|
|
1654
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1655
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1655
1656
|
name?: string;
|
|
1656
1657
|
date?: string | null;
|
|
1657
1658
|
size?: number | null;
|
|
@@ -1679,14 +1680,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1679
1680
|
initialValueT1?: number
|
|
1680
1681
|
initialValueT2?: number
|
|
1681
1682
|
initialValueT3?: number
|
|
1682
|
-
type?: MeterTypes
|
|
1683
|
-
resource?: ResourceTypes
|
|
1683
|
+
type?: MeterTypes
|
|
1684
|
+
resource?: ResourceTypes
|
|
1684
1685
|
withAutoSending?: boolean
|
|
1685
1686
|
}
|
|
1686
1687
|
|
|
1687
1688
|
type MeterFeaturesFormFields$1 = {
|
|
1688
1689
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1689
|
-
company: CompanyAutocompleteFields
|
|
1690
|
+
company: CompanyAutocompleteFields | null
|
|
1690
1691
|
nextCheck: DateTime | null
|
|
1691
1692
|
lastValue?: number
|
|
1692
1693
|
lastValueT1?: number
|
|
@@ -1710,9 +1711,9 @@ declare type ApartmentMeterValues = {
|
|
|
1710
1711
|
} & MeterValues;
|
|
1711
1712
|
declare type InspectionMeterFields = {
|
|
1712
1713
|
id?: number;
|
|
1713
|
-
resource: ResourceTypes
|
|
1714
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1715
|
-
images: FileStore
|
|
1714
|
+
resource: ResourceTypes;
|
|
1715
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1716
|
+
images: FileStore[];
|
|
1716
1717
|
} & MeterFeaturesFormFields$1;
|
|
1717
1718
|
|
|
1718
1719
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1727,7 +1728,7 @@ type PartialPayerProps<T> = {
|
|
|
1727
1728
|
title: string
|
|
1728
1729
|
name: string
|
|
1729
1730
|
form: UseFormReturn<T>
|
|
1730
|
-
utilityType: UtilityTypes
|
|
1731
|
+
utilityType: UtilityTypes$1
|
|
1731
1732
|
fieldsVariant?: PartialPayerVariants
|
|
1732
1733
|
settings?: ObjectType
|
|
1733
1734
|
disabled?: boolean
|
|
@@ -1735,12 +1736,12 @@ type PartialPayerProps<T> = {
|
|
|
1735
1736
|
}
|
|
1736
1737
|
|
|
1737
1738
|
type PartialPayerFields = {
|
|
1738
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1739
|
-
mainPayer?: ResourcePaymentRoles
|
|
1740
|
-
refundFrom?: ResourcePaymentRoles
|
|
1741
|
-
partType?: UnitOfPaymentTypes | null
|
|
1739
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1740
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1741
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1742
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1742
1743
|
refundValue?: number | string | null
|
|
1743
|
-
utilityType: UtilityTypes
|
|
1744
|
+
utilityType: UtilityTypes$1
|
|
1744
1745
|
}
|
|
1745
1746
|
|
|
1746
1747
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1824,15 +1825,15 @@ declare type ResourceAccessParams = {
|
|
|
1824
1825
|
description?: string;
|
|
1825
1826
|
appName?: string;
|
|
1826
1827
|
};
|
|
1827
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1828
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1828
1829
|
declare type ApartmentResourceCompanyDetails = {
|
|
1829
|
-
company: CompanyAutocompleteFields | null;
|
|
1830
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1830
1831
|
operationalAccountNumber: string;
|
|
1831
1832
|
payerCode: string;
|
|
1832
1833
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1833
1834
|
access: ResourceAccessParams;
|
|
1834
1835
|
sampleReceiptLink: string;
|
|
1835
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1836
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1836
1837
|
};
|
|
1837
1838
|
declare type ApartmentResourceInterface = {
|
|
1838
1839
|
type: ApartmentResourceTypes;
|
|
@@ -1869,15 +1870,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1869
1870
|
loader: Loader;
|
|
1870
1871
|
};
|
|
1871
1872
|
declare type PostDocumentsResponse = {
|
|
1872
|
-
documents: DocumentModel[];
|
|
1873
|
+
documents: DocumentModel$1[];
|
|
1873
1874
|
};
|
|
1874
1875
|
declare type DocumentAgentInterface = {
|
|
1875
1876
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1876
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1877
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1877
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1878
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1878
1879
|
};
|
|
1879
1880
|
declare type DocumentsAgentInterface = {
|
|
1880
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1881
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1881
1882
|
} & DocumentAgentInterface;
|
|
1882
1883
|
|
|
1883
1884
|
declare type MetroLineParams = {
|
|
@@ -1948,7 +1949,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1948
1949
|
};
|
|
1949
1950
|
declare type ApartmentDocumentModel = {
|
|
1950
1951
|
id: number;
|
|
1951
|
-
document: DocumentModel;
|
|
1952
|
+
document: DocumentModel$1;
|
|
1952
1953
|
expiration_date: string;
|
|
1953
1954
|
start_date: string;
|
|
1954
1955
|
number: string;
|
|
@@ -1961,7 +1962,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1961
1962
|
tariff?: TariffLinkModel;
|
|
1962
1963
|
activation_date?: string;
|
|
1963
1964
|
check_date?: string;
|
|
1964
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1965
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1965
1966
|
apartment: ApartmentLinkModel;
|
|
1966
1967
|
company: CompanyLiteParams;
|
|
1967
1968
|
operating_account_number?: string | null;
|
|
@@ -2082,7 +2083,7 @@ declare type ApartmentModel = {
|
|
|
2082
2083
|
owner_id: number;
|
|
2083
2084
|
metro_stations: ApartmentMetroParams[];
|
|
2084
2085
|
rental_status: RentalStatuses;
|
|
2085
|
-
main_image: ImageModel;
|
|
2086
|
+
main_image: ImageModel$1;
|
|
2086
2087
|
tv_type: TVTypes | null;
|
|
2087
2088
|
inspection: ApartmentInspectionModel;
|
|
2088
2089
|
distance_to_center_kilometers: number | null;
|
|
@@ -2109,7 +2110,7 @@ declare type ApartmentLiteModel = {
|
|
|
2109
2110
|
renter: LiteUserModel | null;
|
|
2110
2111
|
rental_status: RentalStatuses;
|
|
2111
2112
|
renter_payment_status: RentalPaymentStatuses;
|
|
2112
|
-
main_image: ImageModel;
|
|
2113
|
+
main_image: ImageModel$1;
|
|
2113
2114
|
service_contract?: ServiceContractLiteModel;
|
|
2114
2115
|
is_imported_from_old_crm?: boolean;
|
|
2115
2116
|
max_electricity_counters?: number | null;
|
|
@@ -2155,7 +2156,7 @@ declare type ObjectForMapModel = {
|
|
|
2155
2156
|
apartment_number: string;
|
|
2156
2157
|
address: string;
|
|
2157
2158
|
geolocation: LatLonParams;
|
|
2158
|
-
main_image: ImageModel;
|
|
2159
|
+
main_image: ImageModel$1;
|
|
2159
2160
|
renter: ClientLiteModel | null;
|
|
2160
2161
|
owner: ClientLiteModel;
|
|
2161
2162
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2187,13 +2188,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2187
2188
|
agent: DocumentAgentInterface;
|
|
2188
2189
|
loader: Loader;
|
|
2189
2190
|
settings?: any;
|
|
2190
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2191
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2191
2192
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2192
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2193
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2193
2194
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2194
2195
|
get extension(): string;
|
|
2195
2196
|
get title(): string;
|
|
2196
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2197
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2197
2198
|
}
|
|
2198
2199
|
|
|
2199
2200
|
type InputTypes =
|
|
@@ -2253,13 +2254,13 @@ declare type FileParams = {
|
|
|
2253
2254
|
size?: number | null;
|
|
2254
2255
|
file: File;
|
|
2255
2256
|
};
|
|
2256
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2257
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2257
2258
|
declare type FileStoreParams = {
|
|
2258
2259
|
id?: number | null;
|
|
2259
2260
|
url?: string;
|
|
2260
2261
|
index?: number | string | null;
|
|
2261
2262
|
createdBy?: string | null;
|
|
2262
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2263
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2263
2264
|
name?: string;
|
|
2264
2265
|
date?: string | null;
|
|
2265
2266
|
size?: number | null;
|
|
@@ -2424,8 +2425,8 @@ declare const FillingTagsAgent: {
|
|
|
2424
2425
|
};
|
|
2425
2426
|
|
|
2426
2427
|
declare const TariffsAgent: {
|
|
2427
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2428
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2428
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2429
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2429
2430
|
};
|
|
2430
2431
|
|
|
2431
2432
|
type SignInFormFields = {
|
|
@@ -2444,8 +2445,8 @@ declare const ApartmentsAgent: {
|
|
|
2444
2445
|
};
|
|
2445
2446
|
|
|
2446
2447
|
declare const ApartmentMetersAgent: {
|
|
2447
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2448
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2448
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2449
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2449
2450
|
};
|
|
2450
2451
|
|
|
2451
2452
|
declare const requests: {
|
|
@@ -2469,7 +2470,7 @@ declare const meterUnitLabel: {
|
|
|
2469
2470
|
electricity: string;
|
|
2470
2471
|
};
|
|
2471
2472
|
|
|
2472
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2473
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2473
2474
|
|
|
2474
2475
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2475
2476
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2485,34 +2486,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2485
2486
|
}, "">;
|
|
2486
2487
|
|
|
2487
2488
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2488
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2489
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2489
2490
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2490
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2491
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2491
2492
|
temp_file_id: number;
|
|
2492
2493
|
name: string;
|
|
2493
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2494
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2494
2495
|
url: string;
|
|
2495
2496
|
} | null;
|
|
2496
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2497
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2498
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2497
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2498
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2499
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2499
2500
|
name: string;
|
|
2500
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2501
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2501
2502
|
} | null;
|
|
2502
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2503
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2503
2504
|
name: string;
|
|
2504
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2505
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2505
2506
|
} | null>;
|
|
2506
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2507
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2508
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2509
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2510
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2511
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2512
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2513
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2514
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2515
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2507
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2508
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2509
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2510
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2511
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2512
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2513
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2514
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2515
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2516
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2516
2517
|
|
|
2517
2518
|
declare const matchesAPISubjectRoles: {
|
|
2518
2519
|
maroom: string;
|
|
@@ -2605,16 +2606,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2605
2606
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2606
2607
|
|
|
2607
2608
|
declare class FilesStore {
|
|
2608
|
-
files: FileStore[];
|
|
2609
|
+
files: FileStore$1[];
|
|
2609
2610
|
variant: FileVariant;
|
|
2610
2611
|
constructor(variant: FileVariant);
|
|
2611
|
-
addFile: (newFile: FileStore) => void;
|
|
2612
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2612
2613
|
removeFile: (index: number) => void;
|
|
2613
|
-
setFiles: (files: FileStore[]) => void;
|
|
2614
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2614
2615
|
uploadFiles: () => Promise<void>;
|
|
2615
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2616
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2616
2617
|
get uploadedAllFiles(): boolean;
|
|
2617
|
-
get notUploadedFiles(): FileStore[];
|
|
2618
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2618
2619
|
get isUploading(): boolean;
|
|
2619
2620
|
get videoLength(): number;
|
|
2620
2621
|
get nonVideoLength(): number;
|
|
@@ -2636,7 +2637,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2636
2637
|
messages?: UploadMediaMessages;
|
|
2637
2638
|
withoutFilesStore?: boolean;
|
|
2638
2639
|
};
|
|
2639
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2640
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2640
2641
|
|
|
2641
2642
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2642
2643
|
onSearchItem: (value: string) => void;
|
|
@@ -2808,11 +2809,11 @@ type DistrictAutocompleteFields = {
|
|
|
2808
2809
|
type ReplaceableTariffFields = {
|
|
2809
2810
|
name: string
|
|
2810
2811
|
id?: number
|
|
2811
|
-
type?: ResourceTypes
|
|
2812
|
+
type?: ResourceTypes$1
|
|
2812
2813
|
}
|
|
2813
2814
|
|
|
2814
2815
|
type TariffCommonFields = {
|
|
2815
|
-
resourceType: ResourceTypes
|
|
2816
|
+
resourceType: ResourceTypes$1
|
|
2816
2817
|
name: string
|
|
2817
2818
|
startDate: DateTime
|
|
2818
2819
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2824,7 +2825,7 @@ type TariffCommonFields = {
|
|
|
2824
2825
|
}
|
|
2825
2826
|
|
|
2826
2827
|
type ElectricityTariffCreationFormFields = {
|
|
2827
|
-
type: ElectricityMeterTypes
|
|
2828
|
+
type: ElectricityMeterTypes$1
|
|
2828
2829
|
isOverallConsumption: boolean
|
|
2829
2830
|
T1?: number
|
|
2830
2831
|
T2?: number
|
|
@@ -2845,7 +2846,7 @@ type TariffCreationFormProps = {
|
|
|
2845
2846
|
handleClose: () => void
|
|
2846
2847
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2847
2848
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2848
|
-
defaultResource: ResourceTypes
|
|
2849
|
+
defaultResource: ResourceTypes$1
|
|
2849
2850
|
settings?: any
|
|
2850
2851
|
}
|
|
2851
2852
|
|
|
@@ -2890,7 +2891,7 @@ declare class TariffsLiteStore {
|
|
|
2890
2891
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2891
2892
|
settings?: any;
|
|
2892
2893
|
constructor(settings?: any);
|
|
2893
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2894
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2894
2895
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2895
2896
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2896
2897
|
id: number;
|
|
@@ -2898,7 +2899,7 @@ declare class TariffsLiteStore {
|
|
|
2898
2899
|
};
|
|
2899
2900
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2900
2901
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2901
|
-
type: ElectricityMeterTypes;
|
|
2902
|
+
type: ElectricityMeterTypes$1;
|
|
2902
2903
|
T1: string | undefined;
|
|
2903
2904
|
T2: string | undefined;
|
|
2904
2905
|
T3: string | undefined;
|
|
@@ -3192,7 +3193,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3192
3193
|
name?: string
|
|
3193
3194
|
label?: string
|
|
3194
3195
|
hideName?: string
|
|
3195
|
-
resource: ResourceTypes
|
|
3196
|
+
resource: ResourceTypes$1
|
|
3196
3197
|
filter?: string
|
|
3197
3198
|
filterRequired?: boolean
|
|
3198
3199
|
settings?: any
|
|
@@ -3205,7 +3206,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3205
3206
|
}
|
|
3206
3207
|
|
|
3207
3208
|
type MeterFeaturesFieldsProps = {
|
|
3208
|
-
resource?: ResourceTypes
|
|
3209
|
+
resource?: ResourceTypes$1
|
|
3209
3210
|
replacements?: LiteMeterInterface[]
|
|
3210
3211
|
isNewResource?: boolean
|
|
3211
3212
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3219,7 +3220,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3219
3220
|
withNextCheck?: boolean
|
|
3220
3221
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3221
3222
|
handleMeterTypeChange?: (
|
|
3222
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3223
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3223
3224
|
) => void
|
|
3224
3225
|
settings?: any
|
|
3225
3226
|
disabledInitial?: boolean
|
|
@@ -3232,14 +3233,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3232
3233
|
initialValueT1?: number
|
|
3233
3234
|
initialValueT2?: number
|
|
3234
3235
|
initialValueT3?: number
|
|
3235
|
-
type?: MeterTypes
|
|
3236
|
-
resource?: ResourceTypes
|
|
3236
|
+
type?: MeterTypes$1
|
|
3237
|
+
resource?: ResourceTypes$1
|
|
3237
3238
|
withAutoSending?: boolean
|
|
3238
3239
|
}
|
|
3239
3240
|
|
|
3240
3241
|
type MeterFeaturesFormFields = {
|
|
3241
3242
|
tariff: TariffGroupAutocompleteFields | null
|
|
3242
|
-
company: CompanyAutocompleteFields | null
|
|
3243
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3243
3244
|
nextCheck: DateTime | null
|
|
3244
3245
|
lastValue?: number
|
|
3245
3246
|
lastValueT1?: number
|
|
@@ -3253,8 +3254,8 @@ type MeterFeaturesFormFields = {
|
|
|
3253
3254
|
} & BasicMeterFeaturesFormFields
|
|
3254
3255
|
|
|
3255
3256
|
type BasicMeterFieldsSettings = {
|
|
3256
|
-
resource?: ResourceTypes
|
|
3257
|
-
meterType?: MeterTypes
|
|
3257
|
+
resource?: ResourceTypes$1
|
|
3258
|
+
meterType?: MeterTypes$1
|
|
3258
3259
|
disabledInitial?: boolean
|
|
3259
3260
|
}
|
|
3260
3261
|
|
|
@@ -3286,10 +3287,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3286
3287
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3287
3288
|
|
|
3288
3289
|
type MeterTypeRadioGroupProps = {
|
|
3289
|
-
resource?: ResourceTypes
|
|
3290
|
+
resource?: ResourceTypes$1
|
|
3290
3291
|
form: UseFormReturn<any>
|
|
3291
3292
|
handleChange: (
|
|
3292
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3293
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3293
3294
|
) => void
|
|
3294
3295
|
disabled?: boolean
|
|
3295
3296
|
waterOptions?: OptionParams[]
|
|
@@ -3301,7 +3302,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3301
3302
|
type MeterFeaturesFormProps = {
|
|
3302
3303
|
formStore?: MultistepForm$1<any>
|
|
3303
3304
|
handleMeterTypeChange?: (
|
|
3304
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3305
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3305
3306
|
) => void
|
|
3306
3307
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3307
3308
|
|
|
@@ -3369,7 +3370,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3369
3370
|
startDate: undefined;
|
|
3370
3371
|
}, "">;
|
|
3371
3372
|
|
|
3372
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3373
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3373
3374
|
|
|
3374
3375
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3375
3376
|
|
|
@@ -3385,7 +3386,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3385
3386
|
|
|
3386
3387
|
type TariffReplacementFieldsProps = {
|
|
3387
3388
|
form: UseFormReturn<TariffCommonFields>
|
|
3388
|
-
resource: ResourceTypes
|
|
3389
|
+
resource: ResourceTypes$1
|
|
3389
3390
|
setReplaceable: (value: boolean) => void
|
|
3390
3391
|
settings?: any
|
|
3391
3392
|
}
|
|
@@ -3801,7 +3802,7 @@ type UploadPhotosButtonProps = {
|
|
|
3801
3802
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3802
3803
|
|
|
3803
3804
|
type UploadedImageProps = {
|
|
3804
|
-
image: FileStore
|
|
3805
|
+
image: FileStore$1
|
|
3805
3806
|
index: number
|
|
3806
3807
|
onClick: (index: number) => void
|
|
3807
3808
|
onDelete: (index: number) => void
|
|
@@ -3834,15 +3835,15 @@ declare type PartialMeterValuesFields = {
|
|
|
3834
3835
|
};
|
|
3835
3836
|
declare type PartialMeterInfoFields = {
|
|
3836
3837
|
id: number;
|
|
3837
|
-
resource: ResourceTypes;
|
|
3838
|
-
type?: MeterTypes;
|
|
3838
|
+
resource: ResourceTypes$1;
|
|
3839
|
+
type?: MeterTypes$1;
|
|
3839
3840
|
number: string;
|
|
3840
|
-
images: FileStore[];
|
|
3841
|
+
images: FileStore$1[];
|
|
3841
3842
|
maxValue?: PartialMeterValuesFields;
|
|
3842
3843
|
minValue?: PartialMeterValuesFields;
|
|
3843
3844
|
values: PartialMeterValuesFields;
|
|
3844
3845
|
} & PartialMeterValuesFields;
|
|
3845
|
-
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>[];
|
|
3846
|
+
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>[];
|
|
3846
3847
|
|
|
3847
3848
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3848
3849
|
type: string | undefined;
|
|
@@ -3869,4 +3870,4 @@ type SignInPageProps = {
|
|
|
3869
3870
|
|
|
3870
3871
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3871
3872
|
|
|
3872
|
-
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, ReceiverPaymentCompanyModel, _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, TransitAccountModel, 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 };
|
|
3873
|
+
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, ReceiverPaymentCompanyModel, _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, TransitAccountModel, 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 };
|