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