kui-crm 0.0.602 → 0.0.603
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 +198 -198
- package/package.json +1 -1
- package/types/index.d.ts +143 -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
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "due" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -411,7 +411,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
411
411
|
provider_type: string;
|
|
412
412
|
};
|
|
413
413
|
declare type DataTransferFormats = "online" | "offline";
|
|
414
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
414
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
415
415
|
declare type ApartmentResourceModel = {
|
|
416
416
|
id: number;
|
|
417
417
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -420,7 +420,7 @@ declare type ApartmentResourceModel = {
|
|
|
420
420
|
payer_code?: string;
|
|
421
421
|
meter_readings_day_from?: number;
|
|
422
422
|
meter_readings_day_to?: number;
|
|
423
|
-
receipt_example?: DocumentModel
|
|
423
|
+
receipt_example?: DocumentModel;
|
|
424
424
|
provider_auth_login?: string;
|
|
425
425
|
provider_auth_password?: string;
|
|
426
426
|
site?: string;
|
|
@@ -445,8 +445,8 @@ declare type InspectionFillingParams = {
|
|
|
445
445
|
description?: string;
|
|
446
446
|
serial_code?: string;
|
|
447
447
|
amount?: number | string | null;
|
|
448
|
-
photos: ImageBodyRequest
|
|
449
|
-
instruction?: FileBodyRequest
|
|
448
|
+
photos: ImageBodyRequest[];
|
|
449
|
+
instruction?: FileBodyRequest | null;
|
|
450
450
|
was_missing?: boolean;
|
|
451
451
|
};
|
|
452
452
|
declare type InspectionMeterValueModel = {
|
|
@@ -462,7 +462,7 @@ declare type InspectionBasedOnModel = {
|
|
|
462
462
|
id: number;
|
|
463
463
|
inspection_type: InspectionTypes;
|
|
464
464
|
};
|
|
465
|
-
declare type VideoModel
|
|
465
|
+
declare type VideoModel = {
|
|
466
466
|
id: number;
|
|
467
467
|
video_url: string;
|
|
468
468
|
file_name?: string;
|
|
@@ -477,8 +477,8 @@ declare type InspectionRoomPhotoModel = {
|
|
|
477
477
|
uploaded: boolean;
|
|
478
478
|
purpose: InspectionRoomPhotoTypes;
|
|
479
479
|
comment?: string;
|
|
480
|
-
photos: ImageModel
|
|
481
|
-
videos: VideoModel
|
|
480
|
+
photos: ImageModel[];
|
|
481
|
+
videos: VideoModel[];
|
|
482
482
|
room_order_number?: number | null;
|
|
483
483
|
};
|
|
484
484
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
|
|
@@ -516,11 +516,11 @@ declare type FullInspectionCommonFields = {
|
|
|
516
516
|
filling: InspectionFillingModel[];
|
|
517
517
|
} & ApartmentModel;
|
|
518
518
|
declare type InspectionMeterCommonInfo = {
|
|
519
|
-
resource_type: ResourceTypes
|
|
520
|
-
passport: FileModel
|
|
521
|
-
meter_type: MeterTypes
|
|
519
|
+
resource_type: ResourceTypes;
|
|
520
|
+
passport: FileModel | null;
|
|
521
|
+
meter_type: MeterTypes;
|
|
522
522
|
operating_account: string;
|
|
523
|
-
photos: ImageModel
|
|
523
|
+
photos: ImageModel[];
|
|
524
524
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
525
525
|
declare type TransferInspectionMeterModel = {
|
|
526
526
|
values: InspectionMeterValueModel;
|
|
@@ -530,9 +530,9 @@ declare type TransferInspectionMeterModel = {
|
|
|
530
530
|
declare type TransferInspectionFields = {
|
|
531
531
|
transfer_type: TransferInspectionTypes;
|
|
532
532
|
meters: TransferInspectionMeterModel[];
|
|
533
|
-
inspection_document: DocumentModel
|
|
534
|
-
rental_contract_termination_document: DocumentModel
|
|
535
|
-
service_contract_termination_document: DocumentModel
|
|
533
|
+
inspection_document: DocumentModel | null;
|
|
534
|
+
rental_contract_termination_document: DocumentModel | null;
|
|
535
|
+
service_contract_termination_document: DocumentModel | null;
|
|
536
536
|
} & FullInspectionCommonFields;
|
|
537
537
|
declare type RegularInspectionFields = {
|
|
538
538
|
meters: TransferInspectionMeterModel[];
|
|
@@ -541,7 +541,7 @@ declare type RegularInspectionFields = {
|
|
|
541
541
|
declare type ComparableObjectModel = {
|
|
542
542
|
id: number;
|
|
543
543
|
advertisement_link: string;
|
|
544
|
-
advertisement_screenshot: ImageModel
|
|
544
|
+
advertisement_screenshot: ImageModel | null;
|
|
545
545
|
object_price: string;
|
|
546
546
|
key_object_differences: string;
|
|
547
547
|
};
|
|
@@ -549,7 +549,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
549
549
|
id: number;
|
|
550
550
|
source_name: string;
|
|
551
551
|
link: string;
|
|
552
|
-
screenshot: ImageModel
|
|
552
|
+
screenshot: ImageModel | null;
|
|
553
553
|
min_price: string;
|
|
554
554
|
max_price: string;
|
|
555
555
|
};
|
|
@@ -593,11 +593,11 @@ declare type ImpairmentModel = {
|
|
|
593
593
|
id: number;
|
|
594
594
|
name: string;
|
|
595
595
|
impairment_type: ImpairmentType;
|
|
596
|
-
proof_file: DocumentModel
|
|
596
|
+
proof_file: DocumentModel | null;
|
|
597
597
|
price: number;
|
|
598
598
|
solution: string;
|
|
599
599
|
description: string;
|
|
600
|
-
photos: ImageModel
|
|
600
|
+
photos: ImageModel[];
|
|
601
601
|
item_link: string;
|
|
602
602
|
bill_line_name: string;
|
|
603
603
|
};
|
|
@@ -608,7 +608,7 @@ declare type InitialInspectionModelFields = {
|
|
|
608
608
|
used_resources: UsedResourcesModel;
|
|
609
609
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
610
610
|
declare type AppraisalRequestModelFields = {
|
|
611
|
-
floor_plan: DocumentModel
|
|
611
|
+
floor_plan: DocumentModel | null;
|
|
612
612
|
};
|
|
613
613
|
declare type InspectionModel = {
|
|
614
614
|
initial?: InitialInspectionModelFields;
|
|
@@ -642,7 +642,7 @@ declare type InventoryInspectionFields = {
|
|
|
642
642
|
allowed_smoking: boolean;
|
|
643
643
|
additional_terms: string;
|
|
644
644
|
resources: InspectionResourcesModel[];
|
|
645
|
-
inspection_document: DocumentModel
|
|
645
|
+
inspection_document: DocumentModel | null;
|
|
646
646
|
} & FullInspectionCommonFields;
|
|
647
647
|
declare type InventoryInspectionModel = {
|
|
648
648
|
inventory: InventoryInspectionFields;
|
|
@@ -694,10 +694,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
694
694
|
declare type PatchInspectionImageParams = {
|
|
695
695
|
id?: number;
|
|
696
696
|
order?: number;
|
|
697
|
-
} & Partial<ImageBodyRequest
|
|
697
|
+
} & Partial<ImageBodyRequest>;
|
|
698
698
|
declare type PatchInspectionVideoParams = {
|
|
699
699
|
id?: number;
|
|
700
|
-
} & Partial<VideoBodyRequest
|
|
700
|
+
} & Partial<VideoBodyRequest>;
|
|
701
701
|
declare type PatchRoomImagesParams = {
|
|
702
702
|
id?: number | null;
|
|
703
703
|
purpose: InspectionRoomPhotoTypes;
|
|
@@ -738,8 +738,8 @@ declare type InspectionFillingModel = {
|
|
|
738
738
|
description: string;
|
|
739
739
|
serial_code: string;
|
|
740
740
|
amount: number;
|
|
741
|
-
photos: ImageModel
|
|
742
|
-
instruction: DocumentModel
|
|
741
|
+
photos: ImageModel[];
|
|
742
|
+
instruction: DocumentModel;
|
|
743
743
|
is_absent: boolean;
|
|
744
744
|
previously_absent: boolean;
|
|
745
745
|
model: string;
|
|
@@ -821,7 +821,7 @@ declare type CommonMeterParams = {
|
|
|
821
821
|
company: CompanyLiteParams;
|
|
822
822
|
operating_account_number?: string | null;
|
|
823
823
|
company_is_administrative: boolean;
|
|
824
|
-
photos?: ImageModel
|
|
824
|
+
photos?: ImageModel[];
|
|
825
825
|
auto_sending: boolean;
|
|
826
826
|
no_tariff: boolean;
|
|
827
827
|
is_avg: boolean;
|
|
@@ -833,15 +833,15 @@ declare type ElectricityMeterValues = {
|
|
|
833
833
|
T3?: MeterTariffModel;
|
|
834
834
|
};
|
|
835
835
|
declare type WaterMeterParams = {
|
|
836
|
-
type: WaterMeterTypes
|
|
836
|
+
type: WaterMeterTypes;
|
|
837
837
|
tariff: SingleCounterTariffModel;
|
|
838
838
|
} & CommonMeterParams & MeterTariffModel;
|
|
839
839
|
declare type SingleMeterParams = {
|
|
840
|
-
type?: WaterMeterTypes
|
|
840
|
+
type?: WaterMeterTypes;
|
|
841
841
|
tariff: SingleCounterTariffModel;
|
|
842
842
|
} & CommonMeterParams & MeterTariffModel;
|
|
843
843
|
declare type ElectricityMeterParams = {
|
|
844
|
-
type: ElectricityMeterTypes
|
|
844
|
+
type: ElectricityMeterTypes;
|
|
845
845
|
values: ElectricityMeterValues;
|
|
846
846
|
tariff: ElectricityMeterTariffModel;
|
|
847
847
|
overall_value?: number;
|
|
@@ -1089,7 +1089,7 @@ declare type CountryParams = {
|
|
|
1089
1089
|
code: string;
|
|
1090
1090
|
} & CatalogItemParams;
|
|
1091
1091
|
|
|
1092
|
-
type FileWithVisibility
|
|
1092
|
+
type FileWithVisibility = {
|
|
1093
1093
|
id?: number
|
|
1094
1094
|
file: File | null
|
|
1095
1095
|
tenant: boolean
|
|
@@ -1098,8 +1098,8 @@ type FileWithVisibility$1 = {
|
|
|
1098
1098
|
url: string
|
|
1099
1099
|
}
|
|
1100
1100
|
|
|
1101
|
-
type InputFileWithVisibilityFields
|
|
1102
|
-
| FileWithVisibility
|
|
1101
|
+
type InputFileWithVisibilityFields =
|
|
1102
|
+
| FileWithVisibility
|
|
1103
1103
|
| DocumentWithVisibility
|
|
1104
1104
|
| null
|
|
1105
1105
|
| undefined
|
|
@@ -1129,7 +1129,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1129
1129
|
}
|
|
1130
1130
|
|
|
1131
1131
|
type ChangeReasonFormFields = {
|
|
1132
|
-
reason: InputFileWithVisibilityFields
|
|
1132
|
+
reason: InputFileWithVisibilityFields
|
|
1133
1133
|
comment?: string
|
|
1134
1134
|
}
|
|
1135
1135
|
|
|
@@ -1144,13 +1144,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1144
1144
|
settings?: any
|
|
1145
1145
|
} & InputWithControllerProps<TFormValues>
|
|
1146
1146
|
|
|
1147
|
-
type CompanyAutocompleteFields
|
|
1147
|
+
type CompanyAutocompleteFields = {
|
|
1148
1148
|
id: number
|
|
1149
1149
|
name: string
|
|
1150
1150
|
logo?: string | null
|
|
1151
1151
|
}
|
|
1152
1152
|
|
|
1153
|
-
declare class FileStore
|
|
1153
|
+
declare class FileStore implements FileStoreInterface {
|
|
1154
1154
|
id: number | null;
|
|
1155
1155
|
index?: number | null;
|
|
1156
1156
|
name: string;
|
|
@@ -1181,13 +1181,13 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1181
1181
|
setIndex: (index: number) => void;
|
|
1182
1182
|
get title(): string;
|
|
1183
1183
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1184
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1185
|
-
static initFromFileModel: (file: FileModel
|
|
1186
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1187
|
-
static initFromImageModel: (file: ImageModel
|
|
1188
|
-
static initFromVideoModel: (image: VideoModel
|
|
1189
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1190
|
-
static initFromFileStore: (file: FileStore
|
|
1184
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1185
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1186
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1187
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1188
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1189
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1190
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1191
1191
|
}
|
|
1192
1192
|
|
|
1193
1193
|
declare type ImageParams = {
|
|
@@ -1222,8 +1222,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1222
1222
|
delete: () => Promise<void>;
|
|
1223
1223
|
get extension(): string;
|
|
1224
1224
|
get title(): string;
|
|
1225
|
-
static initFromImageModel: (image: ImageModel
|
|
1226
|
-
static initFromVideoModel: (image: VideoModel
|
|
1225
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1226
|
+
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1227
1227
|
}
|
|
1228
1228
|
|
|
1229
1229
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1348,7 +1348,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1348
1348
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1349
1349
|
payerCode?: string;
|
|
1350
1350
|
communalServicesAccount?: string;
|
|
1351
|
-
company?: CompanyAutocompleteFields
|
|
1351
|
+
company?: CompanyAutocompleteFields | null;
|
|
1352
1352
|
} & ChangeReasonFormFields;
|
|
1353
1353
|
declare type ApartmentOverviewInfoFields = {
|
|
1354
1354
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1371,14 +1371,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1371
1371
|
} & ApartmentPaymentInfoParams;
|
|
1372
1372
|
declare type InspectionMeterInfoParams = {
|
|
1373
1373
|
id: number;
|
|
1374
|
-
resource: ResourceTypes
|
|
1375
|
-
type?: MeterTypes
|
|
1374
|
+
resource: ResourceTypes;
|
|
1375
|
+
type?: MeterTypes;
|
|
1376
1376
|
number: string;
|
|
1377
1377
|
startDate: DateTime | null;
|
|
1378
1378
|
company: CompanyLiteParams;
|
|
1379
1379
|
operationalAccountNumber?: string | null;
|
|
1380
1380
|
tariff: EntityLinkParams | null;
|
|
1381
|
-
passportFile: FileStore
|
|
1381
|
+
passportFile: FileStore | null;
|
|
1382
1382
|
initialValue?: number;
|
|
1383
1383
|
lastValue?: number;
|
|
1384
1384
|
initialValueT1?: number;
|
|
@@ -1400,8 +1400,8 @@ declare type ValuesParams = {
|
|
|
1400
1400
|
};
|
|
1401
1401
|
declare type PartialMeterInfoParams = {
|
|
1402
1402
|
id: number;
|
|
1403
|
-
type: MeterTypes
|
|
1404
|
-
resource: ResourceTypes
|
|
1403
|
+
type: MeterTypes;
|
|
1404
|
+
resource: ResourceTypes;
|
|
1405
1405
|
number: string;
|
|
1406
1406
|
values: ValuesParams;
|
|
1407
1407
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1415,7 +1415,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1415
1415
|
declare type ComparableObjectParams = {
|
|
1416
1416
|
id: number;
|
|
1417
1417
|
link: string;
|
|
1418
|
-
screenshot: FileStore
|
|
1418
|
+
screenshot: FileStore | null;
|
|
1419
1419
|
price: number;
|
|
1420
1420
|
differences: string;
|
|
1421
1421
|
};
|
|
@@ -1423,7 +1423,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1423
1423
|
id: number;
|
|
1424
1424
|
dataSourceName: string;
|
|
1425
1425
|
link: string;
|
|
1426
|
-
screenshot: FileStore
|
|
1426
|
+
screenshot: FileStore | null;
|
|
1427
1427
|
minPrice: number;
|
|
1428
1428
|
maxPrice: number;
|
|
1429
1429
|
};
|
|
@@ -1448,8 +1448,8 @@ declare type FillingInfoFormFields = {
|
|
|
1448
1448
|
name?: string;
|
|
1449
1449
|
description?: string;
|
|
1450
1450
|
type?: ApartmentFillingVariants | null;
|
|
1451
|
-
instruction?: InputFileWithVisibilityFields
|
|
1452
|
-
tempImages?: ImageBodyRequest
|
|
1451
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1452
|
+
tempImages?: ImageBodyRequest[];
|
|
1453
1453
|
};
|
|
1454
1454
|
|
|
1455
1455
|
declare type FillingTagParams = {
|
|
@@ -1464,7 +1464,7 @@ declare type FillingParams = {
|
|
|
1464
1464
|
images?: (ImageStore | UploadFileParams)[];
|
|
1465
1465
|
serialNumber?: string;
|
|
1466
1466
|
numberOfSubjects?: number | string | null;
|
|
1467
|
-
instruction?: InputFileWithVisibilityFields
|
|
1467
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1468
1468
|
type?: ApartmentFillingVariants;
|
|
1469
1469
|
loader?: Loader;
|
|
1470
1470
|
};
|
|
@@ -1476,7 +1476,7 @@ declare type FillingFullParams = {
|
|
|
1476
1476
|
images?: (ImageStore | UploadFileParams)[];
|
|
1477
1477
|
serialNumber?: string;
|
|
1478
1478
|
numberOfSubjects?: number | string | null;
|
|
1479
|
-
instruction?: InputFileWithVisibilityFields
|
|
1479
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1480
1480
|
type?: ApartmentFillingVariants;
|
|
1481
1481
|
loader?: Loader;
|
|
1482
1482
|
check?: boolean | null;
|
|
@@ -1495,31 +1495,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1495
1495
|
name: string;
|
|
1496
1496
|
};
|
|
1497
1497
|
|
|
1498
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1499
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1500
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1501
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1502
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1503
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1504
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1505
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1506
|
-
declare type FileBodyRequest = {
|
|
1498
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1499
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1500
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1501
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1502
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1503
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1504
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1505
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1506
|
+
declare type FileBodyRequest$1 = {
|
|
1507
1507
|
temp_file_id?: number;
|
|
1508
1508
|
name: string;
|
|
1509
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1509
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1510
1510
|
url?: string;
|
|
1511
1511
|
};
|
|
1512
|
-
declare type ImageBodyRequest = {
|
|
1512
|
+
declare type ImageBodyRequest$1 = {
|
|
1513
1513
|
temp_file_id: number;
|
|
1514
1514
|
image_name: string;
|
|
1515
1515
|
url: string;
|
|
1516
1516
|
};
|
|
1517
|
-
declare type VideoBodyRequest = {
|
|
1517
|
+
declare type VideoBodyRequest$1 = {
|
|
1518
1518
|
temp_file_id: number;
|
|
1519
1519
|
file_name: string;
|
|
1520
1520
|
url: string;
|
|
1521
1521
|
};
|
|
1522
|
-
declare type ImageModel = {
|
|
1522
|
+
declare type ImageModel$1 = {
|
|
1523
1523
|
id: number;
|
|
1524
1524
|
image_name?: string;
|
|
1525
1525
|
image_url?: string;
|
|
@@ -1528,22 +1528,22 @@ declare type ImageModel = {
|
|
|
1528
1528
|
image_large_url: string;
|
|
1529
1529
|
size: number;
|
|
1530
1530
|
};
|
|
1531
|
-
declare type FileModel = {
|
|
1531
|
+
declare type FileModel$1 = {
|
|
1532
1532
|
id: number;
|
|
1533
1533
|
name: string;
|
|
1534
1534
|
size: number;
|
|
1535
1535
|
url: string;
|
|
1536
1536
|
};
|
|
1537
|
-
declare type DocumentModel = {
|
|
1537
|
+
declare type DocumentModel$1 = {
|
|
1538
1538
|
pk: number;
|
|
1539
1539
|
name: string;
|
|
1540
1540
|
created?: string;
|
|
1541
1541
|
attachment: string;
|
|
1542
1542
|
size: number;
|
|
1543
1543
|
uploaded_by?: string | null;
|
|
1544
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1544
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1545
1545
|
};
|
|
1546
|
-
declare type VideoModel = {
|
|
1546
|
+
declare type VideoModel$1 = {
|
|
1547
1547
|
id: number;
|
|
1548
1548
|
video_url: string;
|
|
1549
1549
|
file_name?: string;
|
|
@@ -1554,7 +1554,7 @@ declare type VideoModel = {
|
|
|
1554
1554
|
resolution?: string;
|
|
1555
1555
|
};
|
|
1556
1556
|
|
|
1557
|
-
type FileWithVisibility = {
|
|
1557
|
+
type FileWithVisibility$1 = {
|
|
1558
1558
|
id?: number
|
|
1559
1559
|
file: File | null
|
|
1560
1560
|
tenant: boolean
|
|
@@ -1563,19 +1563,19 @@ type FileWithVisibility = {
|
|
|
1563
1563
|
url: string
|
|
1564
1564
|
}
|
|
1565
1565
|
|
|
1566
|
-
type InputFileWithVisibilityFields =
|
|
1567
|
-
| FileWithVisibility
|
|
1566
|
+
type InputFileWithVisibilityFields$1 =
|
|
1567
|
+
| FileWithVisibility$1
|
|
1568
1568
|
| DocumentWithVisibility$1
|
|
1569
1569
|
| null
|
|
1570
1570
|
| undefined
|
|
1571
1571
|
|
|
1572
|
-
type CompanyAutocompleteFields = {
|
|
1572
|
+
type CompanyAutocompleteFields$1 = {
|
|
1573
1573
|
id: number
|
|
1574
1574
|
name: string
|
|
1575
1575
|
logo?: string | null
|
|
1576
1576
|
}
|
|
1577
1577
|
|
|
1578
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1578
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1579
1579
|
id: number | null;
|
|
1580
1580
|
index?: number | null;
|
|
1581
1581
|
name: string;
|
|
@@ -1606,22 +1606,22 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1606
1606
|
setIndex: (index: number) => void;
|
|
1607
1607
|
get title(): string;
|
|
1608
1608
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1609
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1610
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1611
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1612
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1613
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1614
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1615
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1609
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1610
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1611
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1612
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1613
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1614
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1615
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1616
1616
|
}
|
|
1617
1617
|
|
|
1618
1618
|
type PartialPayerFields$1 = {
|
|
1619
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1620
|
-
mainPayer?: ResourcePaymentRoles
|
|
1621
|
-
refundFrom?: ResourcePaymentRoles
|
|
1622
|
-
partType?: UnitOfPaymentTypes | null
|
|
1619
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1620
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1621
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1622
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1623
1623
|
refundValue?: number | string | null
|
|
1624
|
-
utilityType: UtilityTypes
|
|
1624
|
+
utilityType: UtilityTypes$1
|
|
1625
1625
|
}
|
|
1626
1626
|
|
|
1627
1627
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1653,13 +1653,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1653
1653
|
visibility?: DocumentVisibilityVariants$1;
|
|
1654
1654
|
extension: string;
|
|
1655
1655
|
};
|
|
1656
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1656
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1657
1657
|
declare type FileStoreParams$1 = {
|
|
1658
1658
|
id?: number | null;
|
|
1659
1659
|
url?: string;
|
|
1660
1660
|
index?: number | string | null;
|
|
1661
1661
|
createdBy?: string | null;
|
|
1662
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1662
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1663
1663
|
name?: string;
|
|
1664
1664
|
date?: string | null;
|
|
1665
1665
|
size?: number | null;
|
|
@@ -1687,14 +1687,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1687
1687
|
initialValueT1?: number
|
|
1688
1688
|
initialValueT2?: number
|
|
1689
1689
|
initialValueT3?: number
|
|
1690
|
-
type?: MeterTypes
|
|
1691
|
-
resource?: ResourceTypes
|
|
1690
|
+
type?: MeterTypes$1
|
|
1691
|
+
resource?: ResourceTypes$1
|
|
1692
1692
|
withAutoSending?: boolean
|
|
1693
1693
|
}
|
|
1694
1694
|
|
|
1695
1695
|
type MeterFeaturesFormFields$1 = {
|
|
1696
1696
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1697
|
-
company: CompanyAutocompleteFields | null
|
|
1697
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1698
1698
|
nextCheck: DateTime | null
|
|
1699
1699
|
lastValue?: number
|
|
1700
1700
|
lastValueT1?: number
|
|
@@ -1718,9 +1718,9 @@ declare type ApartmentMeterValues = {
|
|
|
1718
1718
|
} & MeterValues;
|
|
1719
1719
|
declare type InspectionMeterFields = {
|
|
1720
1720
|
id?: number;
|
|
1721
|
-
resource: ResourceTypes;
|
|
1722
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1723
|
-
images: FileStore[];
|
|
1721
|
+
resource: ResourceTypes$1;
|
|
1722
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1723
|
+
images: FileStore$1[];
|
|
1724
1724
|
} & MeterFeaturesFormFields$1;
|
|
1725
1725
|
|
|
1726
1726
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1735,7 +1735,7 @@ type PartialPayerProps<T> = {
|
|
|
1735
1735
|
title: string
|
|
1736
1736
|
name: string
|
|
1737
1737
|
form: UseFormReturn<T>
|
|
1738
|
-
utilityType: UtilityTypes
|
|
1738
|
+
utilityType: UtilityTypes
|
|
1739
1739
|
fieldsVariant?: PartialPayerVariants
|
|
1740
1740
|
settings?: ObjectType
|
|
1741
1741
|
disabled?: boolean
|
|
@@ -1743,12 +1743,12 @@ type PartialPayerProps<T> = {
|
|
|
1743
1743
|
}
|
|
1744
1744
|
|
|
1745
1745
|
type PartialPayerFields = {
|
|
1746
|
-
payer?: ResourcePaymentRoles
|
|
1747
|
-
mainPayer?: ResourcePaymentRoles
|
|
1748
|
-
refundFrom?: ResourcePaymentRoles
|
|
1749
|
-
partType?: UnitOfPaymentTypes
|
|
1746
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1747
|
+
mainPayer?: ResourcePaymentRoles
|
|
1748
|
+
refundFrom?: ResourcePaymentRoles
|
|
1749
|
+
partType?: UnitOfPaymentTypes | null
|
|
1750
1750
|
refundValue?: number | string | null
|
|
1751
|
-
utilityType: UtilityTypes
|
|
1751
|
+
utilityType: UtilityTypes
|
|
1752
1752
|
}
|
|
1753
1753
|
|
|
1754
1754
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1832,15 +1832,15 @@ declare type ResourceAccessParams = {
|
|
|
1832
1832
|
description?: string;
|
|
1833
1833
|
appName?: string;
|
|
1834
1834
|
};
|
|
1835
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1835
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1836
1836
|
declare type ApartmentResourceCompanyDetails = {
|
|
1837
|
-
company: CompanyAutocompleteFields
|
|
1837
|
+
company: CompanyAutocompleteFields | null;
|
|
1838
1838
|
operationalAccountNumber: string;
|
|
1839
1839
|
payerCode: string;
|
|
1840
1840
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1841
1841
|
access: ResourceAccessParams;
|
|
1842
1842
|
sampleReceiptLink: string;
|
|
1843
|
-
sampleReceipt?: InputFileWithVisibilityFields
|
|
1843
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1844
1844
|
};
|
|
1845
1845
|
declare type ApartmentResourceInterface = {
|
|
1846
1846
|
type: ApartmentResourceTypes;
|
|
@@ -1877,15 +1877,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1877
1877
|
loader: Loader;
|
|
1878
1878
|
};
|
|
1879
1879
|
declare type PostDocumentsResponse = {
|
|
1880
|
-
documents: DocumentModel
|
|
1880
|
+
documents: DocumentModel[];
|
|
1881
1881
|
};
|
|
1882
1882
|
declare type DocumentAgentInterface = {
|
|
1883
1883
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1884
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1885
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1884
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1885
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1886
1886
|
};
|
|
1887
1887
|
declare type DocumentsAgentInterface = {
|
|
1888
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1888
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1889
1889
|
} & DocumentAgentInterface;
|
|
1890
1890
|
|
|
1891
1891
|
declare type MetroLineParams = {
|
|
@@ -1956,7 +1956,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1956
1956
|
};
|
|
1957
1957
|
declare type ApartmentDocumentModel = {
|
|
1958
1958
|
id: number;
|
|
1959
|
-
document: DocumentModel
|
|
1959
|
+
document: DocumentModel;
|
|
1960
1960
|
expiration_date: string;
|
|
1961
1961
|
start_date: string;
|
|
1962
1962
|
number: string;
|
|
@@ -1969,7 +1969,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1969
1969
|
tariff?: TariffLinkModel;
|
|
1970
1970
|
activation_date?: string;
|
|
1971
1971
|
check_date?: string;
|
|
1972
|
-
type?: ElectricityMeterTypes
|
|
1972
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1973
1973
|
apartment: ApartmentLinkModel;
|
|
1974
1974
|
company: CompanyLiteParams;
|
|
1975
1975
|
operating_account_number?: string | null;
|
|
@@ -2090,7 +2090,7 @@ declare type ApartmentModel = {
|
|
|
2090
2090
|
owner_id: number;
|
|
2091
2091
|
metro_stations: ApartmentMetroParams[];
|
|
2092
2092
|
rental_status: RentalStatuses;
|
|
2093
|
-
main_image: ImageModel
|
|
2093
|
+
main_image: ImageModel;
|
|
2094
2094
|
tv_type: TVTypes | null;
|
|
2095
2095
|
inspection: ApartmentInspectionModel;
|
|
2096
2096
|
distance_to_center_kilometers: number | null;
|
|
@@ -2117,7 +2117,7 @@ declare type ApartmentLiteModel = {
|
|
|
2117
2117
|
renter: LiteUserModel | null;
|
|
2118
2118
|
rental_status: RentalStatuses;
|
|
2119
2119
|
renter_payment_status: RentalPaymentStatuses;
|
|
2120
|
-
main_image: ImageModel
|
|
2120
|
+
main_image: ImageModel;
|
|
2121
2121
|
service_contract?: ServiceContractLiteModel;
|
|
2122
2122
|
is_imported_from_old_crm?: boolean;
|
|
2123
2123
|
max_electricity_counters?: number | null;
|
|
@@ -2163,7 +2163,7 @@ declare type ObjectForMapModel = {
|
|
|
2163
2163
|
apartment_number: string;
|
|
2164
2164
|
address: string;
|
|
2165
2165
|
geolocation: LatLonParams;
|
|
2166
|
-
main_image: ImageModel
|
|
2166
|
+
main_image: ImageModel;
|
|
2167
2167
|
renter: ClientLiteModel | null;
|
|
2168
2168
|
owner: ClientLiteModel;
|
|
2169
2169
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2195,13 +2195,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2195
2195
|
agent: DocumentAgentInterface;
|
|
2196
2196
|
loader: Loader;
|
|
2197
2197
|
settings?: any;
|
|
2198
|
-
constructor(document: DocumentModel
|
|
2198
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2199
2199
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2200
|
-
updateDocument: (res: DocumentModel
|
|
2200
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2201
2201
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2202
2202
|
get extension(): string;
|
|
2203
2203
|
get title(): string;
|
|
2204
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2204
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2205
2205
|
}
|
|
2206
2206
|
|
|
2207
2207
|
type InputTypes =
|
|
@@ -2261,13 +2261,13 @@ declare type FileParams = {
|
|
|
2261
2261
|
size?: number | null;
|
|
2262
2262
|
file: File;
|
|
2263
2263
|
};
|
|
2264
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2264
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2265
2265
|
declare type FileStoreParams = {
|
|
2266
2266
|
id?: number | null;
|
|
2267
2267
|
url?: string;
|
|
2268
2268
|
index?: number | string | null;
|
|
2269
2269
|
createdBy?: string | null;
|
|
2270
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2270
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2271
2271
|
name?: string;
|
|
2272
2272
|
date?: string | null;
|
|
2273
2273
|
size?: number | null;
|
|
@@ -2432,8 +2432,8 @@ declare const FillingTagsAgent: {
|
|
|
2432
2432
|
};
|
|
2433
2433
|
|
|
2434
2434
|
declare const TariffsAgent: {
|
|
2435
|
-
all: (tariff: ResourceTypes
|
|
2436
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2435
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2436
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2437
2437
|
};
|
|
2438
2438
|
|
|
2439
2439
|
type SignInFormFields = {
|
|
@@ -2452,8 +2452,8 @@ declare const ApartmentsAgent: {
|
|
|
2452
2452
|
};
|
|
2453
2453
|
|
|
2454
2454
|
declare const ApartmentMetersAgent: {
|
|
2455
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2456
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2455
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2456
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2457
2457
|
};
|
|
2458
2458
|
|
|
2459
2459
|
declare const requests: {
|
|
@@ -2477,7 +2477,7 @@ declare const meterUnitLabel: {
|
|
|
2477
2477
|
electricity: string;
|
|
2478
2478
|
};
|
|
2479
2479
|
|
|
2480
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2480
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2481
2481
|
|
|
2482
2482
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2483
2483
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2493,34 +2493,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2493
2493
|
}, "">;
|
|
2494
2494
|
|
|
2495
2495
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2496
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2496
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2497
2497
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2498
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2498
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2499
2499
|
temp_file_id: number;
|
|
2500
2500
|
name: string;
|
|
2501
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2501
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2502
2502
|
url: string;
|
|
2503
2503
|
} | null;
|
|
2504
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2505
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2506
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2504
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2505
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2506
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2507
2507
|
name: string;
|
|
2508
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2508
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2509
2509
|
} | null;
|
|
2510
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2510
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2511
2511
|
name: string;
|
|
2512
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2512
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2513
2513
|
} | null>;
|
|
2514
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2515
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2516
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2517
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2518
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2519
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2520
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2521
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2522
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2523
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2514
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2515
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2516
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2517
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2518
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2519
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2520
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2521
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2522
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2523
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2524
2524
|
|
|
2525
2525
|
declare const matchesAPISubjectRoles: {
|
|
2526
2526
|
maroom: string;
|
|
@@ -2613,16 +2613,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2613
2613
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2614
2614
|
|
|
2615
2615
|
declare class FilesStore {
|
|
2616
|
-
files: FileStore
|
|
2616
|
+
files: FileStore[];
|
|
2617
2617
|
variant: FileVariant;
|
|
2618
2618
|
constructor(variant: FileVariant);
|
|
2619
|
-
addFile: (newFile: FileStore
|
|
2619
|
+
addFile: (newFile: FileStore) => void;
|
|
2620
2620
|
removeFile: (index: number) => void;
|
|
2621
|
-
setFiles: (files: FileStore
|
|
2621
|
+
setFiles: (files: FileStore[]) => void;
|
|
2622
2622
|
uploadFiles: () => Promise<void>;
|
|
2623
|
-
get uploadedData(): (FileBodyRequest
|
|
2623
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2624
2624
|
get uploadedAllFiles(): boolean;
|
|
2625
|
-
get notUploadedFiles(): FileStore
|
|
2625
|
+
get notUploadedFiles(): FileStore[];
|
|
2626
2626
|
get isUploading(): boolean;
|
|
2627
2627
|
get videoLength(): number;
|
|
2628
2628
|
get nonVideoLength(): number;
|
|
@@ -2644,7 +2644,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2644
2644
|
messages?: UploadMediaMessages;
|
|
2645
2645
|
withoutFilesStore?: boolean;
|
|
2646
2646
|
};
|
|
2647
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2647
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2648
2648
|
|
|
2649
2649
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2650
2650
|
onSearchItem: (value: string) => void;
|
|
@@ -2816,11 +2816,11 @@ type DistrictAutocompleteFields = {
|
|
|
2816
2816
|
type ReplaceableTariffFields = {
|
|
2817
2817
|
name: string
|
|
2818
2818
|
id?: number
|
|
2819
|
-
type?: ResourceTypes
|
|
2819
|
+
type?: ResourceTypes
|
|
2820
2820
|
}
|
|
2821
2821
|
|
|
2822
2822
|
type TariffCommonFields = {
|
|
2823
|
-
resourceType: ResourceTypes
|
|
2823
|
+
resourceType: ResourceTypes
|
|
2824
2824
|
name: string
|
|
2825
2825
|
startDate: DateTime
|
|
2826
2826
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2832,7 +2832,7 @@ type TariffCommonFields = {
|
|
|
2832
2832
|
}
|
|
2833
2833
|
|
|
2834
2834
|
type ElectricityTariffCreationFormFields = {
|
|
2835
|
-
type: ElectricityMeterTypes
|
|
2835
|
+
type: ElectricityMeterTypes
|
|
2836
2836
|
isOverallConsumption: boolean
|
|
2837
2837
|
T1?: number
|
|
2838
2838
|
T2?: number
|
|
@@ -2853,7 +2853,7 @@ type TariffCreationFormProps = {
|
|
|
2853
2853
|
handleClose: () => void
|
|
2854
2854
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2855
2855
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2856
|
-
defaultResource: ResourceTypes
|
|
2856
|
+
defaultResource: ResourceTypes
|
|
2857
2857
|
settings?: any
|
|
2858
2858
|
}
|
|
2859
2859
|
|
|
@@ -2898,7 +2898,7 @@ declare class TariffsLiteStore {
|
|
|
2898
2898
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2899
2899
|
settings?: any;
|
|
2900
2900
|
constructor(settings?: any);
|
|
2901
|
-
fetchAll: (resource: ResourceTypes
|
|
2901
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2902
2902
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2903
2903
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2904
2904
|
id: number;
|
|
@@ -2906,7 +2906,7 @@ declare class TariffsLiteStore {
|
|
|
2906
2906
|
};
|
|
2907
2907
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2908
2908
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2909
|
-
type: ElectricityMeterTypes
|
|
2909
|
+
type: ElectricityMeterTypes;
|
|
2910
2910
|
T1: string | undefined;
|
|
2911
2911
|
T2: string | undefined;
|
|
2912
2912
|
T3: string | undefined;
|
|
@@ -3200,7 +3200,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3200
3200
|
name?: string
|
|
3201
3201
|
label?: string
|
|
3202
3202
|
hideName?: string
|
|
3203
|
-
resource: ResourceTypes
|
|
3203
|
+
resource: ResourceTypes
|
|
3204
3204
|
filter?: string
|
|
3205
3205
|
filterRequired?: boolean
|
|
3206
3206
|
settings?: any
|
|
@@ -3213,7 +3213,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3213
3213
|
}
|
|
3214
3214
|
|
|
3215
3215
|
type MeterFeaturesFieldsProps = {
|
|
3216
|
-
resource?: ResourceTypes
|
|
3216
|
+
resource?: ResourceTypes
|
|
3217
3217
|
replacements?: LiteMeterInterface[]
|
|
3218
3218
|
isNewResource?: boolean
|
|
3219
3219
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3227,7 +3227,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3227
3227
|
withNextCheck?: boolean
|
|
3228
3228
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3229
3229
|
handleMeterTypeChange?: (
|
|
3230
|
-
meterType: ElectricityMeterTypes
|
|
3230
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3231
3231
|
) => void
|
|
3232
3232
|
settings?: any
|
|
3233
3233
|
disabledInitial?: boolean
|
|
@@ -3240,14 +3240,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3240
3240
|
initialValueT1?: number
|
|
3241
3241
|
initialValueT2?: number
|
|
3242
3242
|
initialValueT3?: number
|
|
3243
|
-
type?: MeterTypes
|
|
3244
|
-
resource?: ResourceTypes
|
|
3243
|
+
type?: MeterTypes
|
|
3244
|
+
resource?: ResourceTypes
|
|
3245
3245
|
withAutoSending?: boolean
|
|
3246
3246
|
}
|
|
3247
3247
|
|
|
3248
3248
|
type MeterFeaturesFormFields = {
|
|
3249
3249
|
tariff: TariffGroupAutocompleteFields | null
|
|
3250
|
-
company: CompanyAutocompleteFields
|
|
3250
|
+
company: CompanyAutocompleteFields | null
|
|
3251
3251
|
nextCheck: DateTime | null
|
|
3252
3252
|
lastValue?: number
|
|
3253
3253
|
lastValueT1?: number
|
|
@@ -3261,8 +3261,8 @@ type MeterFeaturesFormFields = {
|
|
|
3261
3261
|
} & BasicMeterFeaturesFormFields
|
|
3262
3262
|
|
|
3263
3263
|
type BasicMeterFieldsSettings = {
|
|
3264
|
-
resource?: ResourceTypes
|
|
3265
|
-
meterType?: MeterTypes
|
|
3264
|
+
resource?: ResourceTypes
|
|
3265
|
+
meterType?: MeterTypes
|
|
3266
3266
|
disabledInitial?: boolean
|
|
3267
3267
|
}
|
|
3268
3268
|
|
|
@@ -3294,10 +3294,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3294
3294
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3295
3295
|
|
|
3296
3296
|
type MeterTypeRadioGroupProps = {
|
|
3297
|
-
resource?: ResourceTypes
|
|
3297
|
+
resource?: ResourceTypes
|
|
3298
3298
|
form: UseFormReturn<any>
|
|
3299
3299
|
handleChange: (
|
|
3300
|
-
meterType: ElectricityMeterTypes
|
|
3300
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3301
3301
|
) => void
|
|
3302
3302
|
disabled?: boolean
|
|
3303
3303
|
waterOptions?: OptionParams[]
|
|
@@ -3309,7 +3309,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3309
3309
|
type MeterFeaturesFormProps = {
|
|
3310
3310
|
formStore?: MultistepForm$1<any>
|
|
3311
3311
|
handleMeterTypeChange?: (
|
|
3312
|
-
meterType: ElectricityMeterTypes
|
|
3312
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3313
3313
|
) => void
|
|
3314
3314
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3315
3315
|
|
|
@@ -3377,7 +3377,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3377
3377
|
startDate: undefined;
|
|
3378
3378
|
}, "">;
|
|
3379
3379
|
|
|
3380
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3380
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3381
3381
|
|
|
3382
3382
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3383
3383
|
|
|
@@ -3393,7 +3393,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3393
3393
|
|
|
3394
3394
|
type TariffReplacementFieldsProps = {
|
|
3395
3395
|
form: UseFormReturn<TariffCommonFields>
|
|
3396
|
-
resource: ResourceTypes
|
|
3396
|
+
resource: ResourceTypes
|
|
3397
3397
|
setReplaceable: (value: boolean) => void
|
|
3398
3398
|
settings?: any
|
|
3399
3399
|
}
|
|
@@ -3809,7 +3809,7 @@ type UploadPhotosButtonProps = {
|
|
|
3809
3809
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3810
3810
|
|
|
3811
3811
|
type UploadedImageProps = {
|
|
3812
|
-
image: FileStore
|
|
3812
|
+
image: FileStore
|
|
3813
3813
|
index: number
|
|
3814
3814
|
onClick: (index: number) => void
|
|
3815
3815
|
onDelete: (index: number) => void
|
|
@@ -3842,15 +3842,15 @@ declare type PartialMeterValuesFields = {
|
|
|
3842
3842
|
};
|
|
3843
3843
|
declare type PartialMeterInfoFields = {
|
|
3844
3844
|
id: number;
|
|
3845
|
-
resource: ResourceTypes
|
|
3846
|
-
type?: MeterTypes
|
|
3845
|
+
resource: ResourceTypes;
|
|
3846
|
+
type?: MeterTypes;
|
|
3847
3847
|
number: string;
|
|
3848
|
-
images: FileStore
|
|
3848
|
+
images: FileStore[];
|
|
3849
3849
|
maxValue?: PartialMeterValuesFields;
|
|
3850
3850
|
minValue?: PartialMeterValuesFields;
|
|
3851
3851
|
values: PartialMeterValuesFields;
|
|
3852
3852
|
} & PartialMeterValuesFields;
|
|
3853
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3853
|
+
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>[];
|
|
3854
3854
|
|
|
3855
3855
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3856
3856
|
type: string | undefined;
|
|
@@ -3877,4 +3877,4 @@ type SignInPageProps = {
|
|
|
3877
3877
|
|
|
3878
3878
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3879
3879
|
|
|
3880
|
-
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, RentChargeTypes, 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, UtilityChargeTypes, 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 };
|
|
3880
|
+
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, RentChargeTypes, 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, UtilityChargeTypes, 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 };
|