kui-crm 0.0.561 → 0.0.563
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/cjs/index.js +1 -1
- package/index.d.ts +188 -188
- package/index.js +1 -1
- package/package.json +1 -1
- package/types/index.d.ts +133 -133
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
189
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
195
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
203
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel | null;
|
|
242
|
+
main_image: ImageModel$1 | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel | null;
|
|
252
|
+
main_image: ImageModel$1 | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes;
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
-
refund_from: ResourcePaymentRoles;
|
|
265
|
+
utility_type: UtilityTypes$1;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles$1;
|
|
267
|
+
refund_from: ResourcePaymentRoles$1;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes;
|
|
269
|
+
value_type?: UnitOfPaymentTypes$1;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest = {
|
|
271
|
+
declare type FileBodyRequest$1 = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest = {
|
|
277
|
+
declare type ImageBodyRequest$1 = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest = {
|
|
282
|
+
declare type VideoBodyRequest$1 = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel = {
|
|
291
|
+
declare type ImageModel$1 = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel = {
|
|
300
|
+
declare type FileModel$1 = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel = {
|
|
306
|
+
declare type DocumentModel$1 = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -401,7 +401,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
401
401
|
provider_type: string;
|
|
402
402
|
};
|
|
403
403
|
declare type DataTransferFormats = "online" | "offline";
|
|
404
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
404
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "other";
|
|
405
405
|
declare type ApartmentResourceModel = {
|
|
406
406
|
id: number;
|
|
407
407
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -410,7 +410,7 @@ declare type ApartmentResourceModel = {
|
|
|
410
410
|
payer_code?: string;
|
|
411
411
|
meter_readings_day_from?: number;
|
|
412
412
|
meter_readings_day_to?: number;
|
|
413
|
-
receipt_example?: DocumentModel;
|
|
413
|
+
receipt_example?: DocumentModel$1;
|
|
414
414
|
provider_auth_login?: string;
|
|
415
415
|
provider_auth_password?: string;
|
|
416
416
|
provider_url?: string;
|
|
@@ -431,8 +431,8 @@ declare type InspectionFillingParams = {
|
|
|
431
431
|
description?: string;
|
|
432
432
|
serial_code?: string;
|
|
433
433
|
amount?: number | string | null;
|
|
434
|
-
photos: ImageBodyRequest[];
|
|
435
|
-
instruction?: FileBodyRequest | null;
|
|
434
|
+
photos: ImageBodyRequest$1[];
|
|
435
|
+
instruction?: FileBodyRequest$1 | null;
|
|
436
436
|
was_missing?: boolean;
|
|
437
437
|
};
|
|
438
438
|
declare type InspectionMeterValueModel = {
|
|
@@ -463,7 +463,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
463
463
|
uploaded: boolean;
|
|
464
464
|
purpose: InspectionRoomPhotoTypes;
|
|
465
465
|
comment?: string;
|
|
466
|
-
photos: ImageModel[];
|
|
466
|
+
photos: ImageModel$1[];
|
|
467
467
|
videos: VideoModel[];
|
|
468
468
|
room_order_number?: number | null;
|
|
469
469
|
};
|
|
@@ -501,11 +501,11 @@ declare type FullInspectionCommonFields = {
|
|
|
501
501
|
filling: InspectionFillingModel[];
|
|
502
502
|
} & ApartmentModel;
|
|
503
503
|
declare type InspectionMeterCommonInfo = {
|
|
504
|
-
resource_type: ResourceTypes;
|
|
505
|
-
passport: FileModel | null;
|
|
506
|
-
meter_type: MeterTypes;
|
|
504
|
+
resource_type: ResourceTypes$1;
|
|
505
|
+
passport: FileModel$1 | null;
|
|
506
|
+
meter_type: MeterTypes$1;
|
|
507
507
|
operating_account: string;
|
|
508
|
-
photos: ImageModel[];
|
|
508
|
+
photos: ImageModel$1[];
|
|
509
509
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
510
510
|
declare type TransferInspectionMeterModel = {
|
|
511
511
|
values: InspectionMeterValueModel;
|
|
@@ -521,7 +521,7 @@ declare type RegularInspectionFields = {
|
|
|
521
521
|
declare type ComparableObjectModel = {
|
|
522
522
|
id: number;
|
|
523
523
|
advertisement_link: string;
|
|
524
|
-
advertisement_screenshot: ImageModel | null;
|
|
524
|
+
advertisement_screenshot: ImageModel$1 | null;
|
|
525
525
|
object_price: string;
|
|
526
526
|
key_object_differences: string;
|
|
527
527
|
};
|
|
@@ -529,7 +529,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
529
529
|
id: number;
|
|
530
530
|
source_name: string;
|
|
531
531
|
link: string;
|
|
532
|
-
screenshot: ImageModel | null;
|
|
532
|
+
screenshot: ImageModel$1 | null;
|
|
533
533
|
min_price: string;
|
|
534
534
|
max_price: string;
|
|
535
535
|
};
|
|
@@ -572,11 +572,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
572
572
|
declare type ImpairmentModel = {
|
|
573
573
|
id: number;
|
|
574
574
|
impairment_type: ImpairmentType;
|
|
575
|
-
proof_file: DocumentModel | null;
|
|
575
|
+
proof_file: DocumentModel$1 | null;
|
|
576
576
|
price: number;
|
|
577
577
|
solution: string;
|
|
578
578
|
description: string;
|
|
579
|
-
photos: ImageModel[];
|
|
579
|
+
photos: ImageModel$1[];
|
|
580
580
|
item_link: string;
|
|
581
581
|
};
|
|
582
582
|
declare type MetroStationsFields = {
|
|
@@ -586,7 +586,7 @@ declare type InitialInspectionModelFields = {
|
|
|
586
586
|
used_resources: UsedResourcesModel;
|
|
587
587
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
588
588
|
declare type AppraisalRequestModelFields = {
|
|
589
|
-
floor_plan: DocumentModel | null;
|
|
589
|
+
floor_plan: DocumentModel$1 | null;
|
|
590
590
|
};
|
|
591
591
|
declare type InspectionModel = {
|
|
592
592
|
initial?: InitialInspectionModelFields;
|
|
@@ -663,10 +663,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
663
663
|
};
|
|
664
664
|
declare type PatchInspectionImageParams = {
|
|
665
665
|
id?: number;
|
|
666
|
-
} & Partial<ImageBodyRequest>;
|
|
666
|
+
} & Partial<ImageBodyRequest$1>;
|
|
667
667
|
declare type PatchInspectionVideoParams = {
|
|
668
668
|
id?: number;
|
|
669
|
-
} & Partial<VideoBodyRequest>;
|
|
669
|
+
} & Partial<VideoBodyRequest$1>;
|
|
670
670
|
declare type PatchRoomImagesParams = {
|
|
671
671
|
type: InspectionRoomPhotoTypes;
|
|
672
672
|
comment?: string;
|
|
@@ -706,8 +706,8 @@ declare type InspectionFillingModel = {
|
|
|
706
706
|
description: string;
|
|
707
707
|
serial_code: string;
|
|
708
708
|
amount: number;
|
|
709
|
-
photos: ImageModel[];
|
|
710
|
-
instruction: DocumentModel;
|
|
709
|
+
photos: ImageModel$1[];
|
|
710
|
+
instruction: DocumentModel$1;
|
|
711
711
|
is_absent: boolean;
|
|
712
712
|
previously_absent: boolean;
|
|
713
713
|
model: string;
|
|
@@ -789,7 +789,7 @@ declare type CommonMeterParams = {
|
|
|
789
789
|
company: CompanyLiteParams;
|
|
790
790
|
operating_account_number?: string | null;
|
|
791
791
|
company_is_administrative: boolean;
|
|
792
|
-
photos?: ImageModel[];
|
|
792
|
+
photos?: ImageModel$1[];
|
|
793
793
|
auto_sending: boolean;
|
|
794
794
|
no_tariff: boolean;
|
|
795
795
|
is_avg: boolean;
|
|
@@ -801,15 +801,15 @@ declare type ElectricityMeterValues = {
|
|
|
801
801
|
T3?: MeterTariffModel;
|
|
802
802
|
};
|
|
803
803
|
declare type WaterMeterParams = {
|
|
804
|
-
type: WaterMeterTypes;
|
|
804
|
+
type: WaterMeterTypes$1;
|
|
805
805
|
tariff: SingleCounterTariffModel;
|
|
806
806
|
} & CommonMeterParams & MeterTariffModel;
|
|
807
807
|
declare type SingleMeterParams = {
|
|
808
|
-
type?: WaterMeterTypes;
|
|
808
|
+
type?: WaterMeterTypes$1;
|
|
809
809
|
tariff: SingleCounterTariffModel;
|
|
810
810
|
} & CommonMeterParams & MeterTariffModel;
|
|
811
811
|
declare type ElectricityMeterParams = {
|
|
812
|
-
type: ElectricityMeterTypes;
|
|
812
|
+
type: ElectricityMeterTypes$1;
|
|
813
813
|
values: ElectricityMeterValues;
|
|
814
814
|
tariff: ElectricityMeterTariffModel;
|
|
815
815
|
overall_value?: number;
|
|
@@ -1048,7 +1048,7 @@ declare type CountryParams = {
|
|
|
1048
1048
|
code: string;
|
|
1049
1049
|
} & CatalogItemParams;
|
|
1050
1050
|
|
|
1051
|
-
type FileWithVisibility = {
|
|
1051
|
+
type FileWithVisibility$1 = {
|
|
1052
1052
|
file: File | null
|
|
1053
1053
|
tenant: boolean
|
|
1054
1054
|
landlord: boolean
|
|
@@ -1056,8 +1056,8 @@ type FileWithVisibility = {
|
|
|
1056
1056
|
url: string
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
|
-
type InputFileWithVisibilityFields =
|
|
1060
|
-
| FileWithVisibility
|
|
1059
|
+
type InputFileWithVisibilityFields$1 =
|
|
1060
|
+
| FileWithVisibility$1
|
|
1061
1061
|
| DocumentWithVisibility
|
|
1062
1062
|
| null
|
|
1063
1063
|
| undefined
|
|
@@ -1087,7 +1087,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1087
1087
|
}
|
|
1088
1088
|
|
|
1089
1089
|
type ChangeReasonFormFields = {
|
|
1090
|
-
reason: InputFileWithVisibilityFields
|
|
1090
|
+
reason: InputFileWithVisibilityFields$1
|
|
1091
1091
|
comment?: string
|
|
1092
1092
|
}
|
|
1093
1093
|
|
|
@@ -1102,13 +1102,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1102
1102
|
settings?: any
|
|
1103
1103
|
} & InputWithControllerProps<TFormValues>
|
|
1104
1104
|
|
|
1105
|
-
type CompanyAutocompleteFields = {
|
|
1105
|
+
type CompanyAutocompleteFields$1 = {
|
|
1106
1106
|
id: number
|
|
1107
1107
|
name: string
|
|
1108
1108
|
logo?: string | null
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
1111
|
-
declare class FileStore implements FileStoreInterface {
|
|
1111
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1112
1112
|
id: number | null;
|
|
1113
1113
|
index?: number | null;
|
|
1114
1114
|
name: string;
|
|
@@ -1139,12 +1139,12 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1139
1139
|
setIndex: (index: number) => void;
|
|
1140
1140
|
get title(): string;
|
|
1141
1141
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1142
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1143
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1144
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1145
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1146
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1147
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1142
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1143
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1144
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1145
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1146
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1147
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1148
1148
|
}
|
|
1149
1149
|
|
|
1150
1150
|
declare type ImageParams = {
|
|
@@ -1179,7 +1179,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1179
1179
|
delete: () => Promise<void>;
|
|
1180
1180
|
get extension(): string;
|
|
1181
1181
|
get title(): string;
|
|
1182
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1182
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1183
1183
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1184
1184
|
}
|
|
1185
1185
|
|
|
@@ -1305,7 +1305,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1305
1305
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1306
1306
|
payerCode?: string;
|
|
1307
1307
|
communalServicesAccount?: string;
|
|
1308
|
-
company?: CompanyAutocompleteFields | null;
|
|
1308
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1309
1309
|
} & ChangeReasonFormFields;
|
|
1310
1310
|
declare type ApartmentOverviewInfoFields = {
|
|
1311
1311
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1328,14 +1328,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1328
1328
|
} & ApartmentPaymentInfoParams;
|
|
1329
1329
|
declare type InspectionMeterInfoParams = {
|
|
1330
1330
|
id: number;
|
|
1331
|
-
resource: ResourceTypes;
|
|
1332
|
-
type?: MeterTypes;
|
|
1331
|
+
resource: ResourceTypes$1;
|
|
1332
|
+
type?: MeterTypes$1;
|
|
1333
1333
|
number: string;
|
|
1334
1334
|
startDate: DateTime | null;
|
|
1335
1335
|
company: CompanyLiteParams;
|
|
1336
1336
|
operationalAccountNumber?: string | null;
|
|
1337
1337
|
tariff: EntityLinkParams | null;
|
|
1338
|
-
passportFile: FileStore | null;
|
|
1338
|
+
passportFile: FileStore$1 | null;
|
|
1339
1339
|
initialValue?: number;
|
|
1340
1340
|
lastValue?: number;
|
|
1341
1341
|
initialValueT1?: number;
|
|
@@ -1357,8 +1357,8 @@ declare type ValuesParams = {
|
|
|
1357
1357
|
};
|
|
1358
1358
|
declare type PartialMeterInfoParams = {
|
|
1359
1359
|
id: number;
|
|
1360
|
-
type: MeterTypes;
|
|
1361
|
-
resource: ResourceTypes;
|
|
1360
|
+
type: MeterTypes$1;
|
|
1361
|
+
resource: ResourceTypes$1;
|
|
1362
1362
|
number: string;
|
|
1363
1363
|
values: ValuesParams;
|
|
1364
1364
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1370,7 +1370,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1370
1370
|
declare type ComparableObjectParams = {
|
|
1371
1371
|
id: number;
|
|
1372
1372
|
link: string;
|
|
1373
|
-
screenshot: FileStore | null;
|
|
1373
|
+
screenshot: FileStore$1 | null;
|
|
1374
1374
|
price: number;
|
|
1375
1375
|
differences: string;
|
|
1376
1376
|
};
|
|
@@ -1378,7 +1378,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1378
1378
|
id: number;
|
|
1379
1379
|
dataSourceName: string;
|
|
1380
1380
|
link: string;
|
|
1381
|
-
screenshot: FileStore | null;
|
|
1381
|
+
screenshot: FileStore$1 | null;
|
|
1382
1382
|
minPrice: number;
|
|
1383
1383
|
maxPrice: number;
|
|
1384
1384
|
};
|
|
@@ -1403,8 +1403,8 @@ declare type FillingInfoFormFields = {
|
|
|
1403
1403
|
name?: string;
|
|
1404
1404
|
description?: string;
|
|
1405
1405
|
type?: ApartmentFillingVariants | null;
|
|
1406
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1407
|
-
tempImages?: ImageBodyRequest[];
|
|
1406
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1407
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1408
1408
|
};
|
|
1409
1409
|
|
|
1410
1410
|
declare type FillingTagParams = {
|
|
@@ -1419,7 +1419,7 @@ declare type FillingParams = {
|
|
|
1419
1419
|
images?: (ImageStore | UploadFileParams)[];
|
|
1420
1420
|
serialNumber?: string;
|
|
1421
1421
|
numberOfSubjects?: number | string | null;
|
|
1422
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1422
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1423
1423
|
type?: ApartmentFillingVariants;
|
|
1424
1424
|
loader?: Loader;
|
|
1425
1425
|
};
|
|
@@ -1431,7 +1431,7 @@ declare type FillingFullParams = {
|
|
|
1431
1431
|
images?: (ImageStore | UploadFileParams)[];
|
|
1432
1432
|
serialNumber?: string;
|
|
1433
1433
|
numberOfSubjects?: number | string | null;
|
|
1434
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1434
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1435
1435
|
type?: ApartmentFillingVariants;
|
|
1436
1436
|
loader?: Loader;
|
|
1437
1437
|
check?: boolean | null;
|
|
@@ -1450,31 +1450,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1450
1450
|
name: string;
|
|
1451
1451
|
};
|
|
1452
1452
|
|
|
1453
|
-
declare type ResourcePaymentRoles
|
|
1454
|
-
declare type UnitOfPaymentTypes
|
|
1455
|
-
declare type WaterMeterTypes
|
|
1456
|
-
declare type ElectricityMeterTypes
|
|
1457
|
-
declare type ResourceTypes
|
|
1458
|
-
declare type MeterTypes
|
|
1459
|
-
declare type UtilityTypes
|
|
1460
|
-
declare type DocumentVisibilityAPIVariants
|
|
1461
|
-
declare type FileBodyRequest
|
|
1453
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1454
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1455
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1456
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1457
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1458
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1459
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1460
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1461
|
+
declare type FileBodyRequest = {
|
|
1462
1462
|
temp_file_id?: number;
|
|
1463
1463
|
name: string;
|
|
1464
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1464
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1465
1465
|
url?: string;
|
|
1466
1466
|
};
|
|
1467
|
-
declare type ImageBodyRequest
|
|
1467
|
+
declare type ImageBodyRequest = {
|
|
1468
1468
|
temp_file_id: number;
|
|
1469
1469
|
image_name: string;
|
|
1470
1470
|
url: string;
|
|
1471
1471
|
};
|
|
1472
|
-
declare type VideoBodyRequest
|
|
1472
|
+
declare type VideoBodyRequest = {
|
|
1473
1473
|
temp_file_id: number;
|
|
1474
1474
|
file_name: string;
|
|
1475
1475
|
url: string;
|
|
1476
1476
|
};
|
|
1477
|
-
declare type ImageModel
|
|
1477
|
+
declare type ImageModel = {
|
|
1478
1478
|
id: number;
|
|
1479
1479
|
image_name?: string;
|
|
1480
1480
|
image_url?: string;
|
|
@@ -1483,23 +1483,23 @@ declare type ImageModel$1 = {
|
|
|
1483
1483
|
image_large_url: string;
|
|
1484
1484
|
size: number;
|
|
1485
1485
|
};
|
|
1486
|
-
declare type FileModel
|
|
1486
|
+
declare type FileModel = {
|
|
1487
1487
|
id: number;
|
|
1488
1488
|
name: string;
|
|
1489
1489
|
size: number;
|
|
1490
1490
|
url: string;
|
|
1491
1491
|
};
|
|
1492
|
-
declare type DocumentModel
|
|
1492
|
+
declare type DocumentModel = {
|
|
1493
1493
|
pk: number;
|
|
1494
1494
|
name: string;
|
|
1495
1495
|
created?: string;
|
|
1496
1496
|
attachment: string;
|
|
1497
1497
|
size: number;
|
|
1498
1498
|
uploaded_by?: string | null;
|
|
1499
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1499
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1500
1500
|
};
|
|
1501
1501
|
|
|
1502
|
-
type FileWithVisibility
|
|
1502
|
+
type FileWithVisibility = {
|
|
1503
1503
|
file: File | null
|
|
1504
1504
|
tenant: boolean
|
|
1505
1505
|
landlord: boolean
|
|
@@ -1507,19 +1507,19 @@ type FileWithVisibility$1 = {
|
|
|
1507
1507
|
url: string
|
|
1508
1508
|
}
|
|
1509
1509
|
|
|
1510
|
-
type InputFileWithVisibilityFields
|
|
1511
|
-
| FileWithVisibility
|
|
1510
|
+
type InputFileWithVisibilityFields =
|
|
1511
|
+
| FileWithVisibility
|
|
1512
1512
|
| DocumentWithVisibility$1
|
|
1513
1513
|
| null
|
|
1514
1514
|
| undefined
|
|
1515
1515
|
|
|
1516
|
-
type CompanyAutocompleteFields
|
|
1516
|
+
type CompanyAutocompleteFields = {
|
|
1517
1517
|
id: number
|
|
1518
1518
|
name: string
|
|
1519
1519
|
logo?: string | null
|
|
1520
1520
|
}
|
|
1521
1521
|
|
|
1522
|
-
declare class FileStore
|
|
1522
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1523
1523
|
id: number | null;
|
|
1524
1524
|
index?: number | null;
|
|
1525
1525
|
name: string;
|
|
@@ -1550,21 +1550,21 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1550
1550
|
setIndex: (index: number) => void;
|
|
1551
1551
|
get title(): string;
|
|
1552
1552
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1553
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1554
|
-
static initFromFileModel: (file: FileModel
|
|
1555
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1556
|
-
static initFromImageModel: (file: ImageModel
|
|
1557
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1558
|
-
static initFromFileStore: (file: FileStore
|
|
1553
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1554
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1555
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1556
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1557
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1558
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1559
1559
|
}
|
|
1560
1560
|
|
|
1561
1561
|
type PartialPayerFields$1 = {
|
|
1562
|
-
payer?: ResourcePaymentRoles
|
|
1563
|
-
mainPayer?: ResourcePaymentRoles
|
|
1564
|
-
refundFrom?: ResourcePaymentRoles
|
|
1565
|
-
partType?: UnitOfPaymentTypes
|
|
1562
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1563
|
+
mainPayer?: ResourcePaymentRoles
|
|
1564
|
+
refundFrom?: ResourcePaymentRoles
|
|
1565
|
+
partType?: UnitOfPaymentTypes | null
|
|
1566
1566
|
refundValue?: number | string | null
|
|
1567
|
-
utilityType: UtilityTypes
|
|
1567
|
+
utilityType: UtilityTypes
|
|
1568
1568
|
}
|
|
1569
1569
|
|
|
1570
1570
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1596,13 +1596,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1596
1596
|
visibility?: DocumentVisibilityVariants$1;
|
|
1597
1597
|
extension: string;
|
|
1598
1598
|
};
|
|
1599
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1599
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1600
1600
|
declare type FileStoreParams$1 = {
|
|
1601
1601
|
id?: number | null;
|
|
1602
1602
|
url?: string;
|
|
1603
1603
|
index?: number | string | null;
|
|
1604
1604
|
createdBy?: string | null;
|
|
1605
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1605
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1606
1606
|
name?: string;
|
|
1607
1607
|
date?: string | null;
|
|
1608
1608
|
size?: number | null;
|
|
@@ -1630,14 +1630,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1630
1630
|
initialValueT1?: number
|
|
1631
1631
|
initialValueT2?: number
|
|
1632
1632
|
initialValueT3?: number
|
|
1633
|
-
type?: MeterTypes
|
|
1634
|
-
resource?: ResourceTypes
|
|
1633
|
+
type?: MeterTypes
|
|
1634
|
+
resource?: ResourceTypes
|
|
1635
1635
|
withAutoSending?: boolean
|
|
1636
1636
|
}
|
|
1637
1637
|
|
|
1638
1638
|
type MeterFeaturesFormFields$1 = {
|
|
1639
1639
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1640
|
-
company: CompanyAutocompleteFields
|
|
1640
|
+
company: CompanyAutocompleteFields | null
|
|
1641
1641
|
nextCheck: DateTime | null
|
|
1642
1642
|
lastValue?: number
|
|
1643
1643
|
lastValueT1?: number
|
|
@@ -1661,9 +1661,9 @@ declare type ApartmentMeterValues = {
|
|
|
1661
1661
|
} & MeterValues;
|
|
1662
1662
|
declare type InspectionMeterFields = {
|
|
1663
1663
|
id?: number;
|
|
1664
|
-
resource: ResourceTypes
|
|
1665
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1666
|
-
images: FileStore
|
|
1664
|
+
resource: ResourceTypes;
|
|
1665
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1666
|
+
images: FileStore[];
|
|
1667
1667
|
} & MeterFeaturesFormFields$1;
|
|
1668
1668
|
|
|
1669
1669
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1678,7 +1678,7 @@ type PartialPayerProps<T> = {
|
|
|
1678
1678
|
title: string
|
|
1679
1679
|
name: string
|
|
1680
1680
|
form: UseFormReturn<T>
|
|
1681
|
-
utilityType: UtilityTypes
|
|
1681
|
+
utilityType: UtilityTypes$1
|
|
1682
1682
|
fieldsVariant?: PartialPayerVariants
|
|
1683
1683
|
settings?: ObjectType
|
|
1684
1684
|
disabled?: boolean
|
|
@@ -1686,12 +1686,12 @@ type PartialPayerProps<T> = {
|
|
|
1686
1686
|
}
|
|
1687
1687
|
|
|
1688
1688
|
type PartialPayerFields = {
|
|
1689
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1690
|
-
mainPayer?: ResourcePaymentRoles
|
|
1691
|
-
refundFrom?: ResourcePaymentRoles
|
|
1692
|
-
partType?: UnitOfPaymentTypes | null
|
|
1689
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1690
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1691
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1692
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1693
1693
|
refundValue?: number | string | null
|
|
1694
|
-
utilityType: UtilityTypes
|
|
1694
|
+
utilityType: UtilityTypes$1
|
|
1695
1695
|
}
|
|
1696
1696
|
|
|
1697
1697
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1775,15 +1775,15 @@ declare type ResourceAccessParams = {
|
|
|
1775
1775
|
password?: string;
|
|
1776
1776
|
description?: string;
|
|
1777
1777
|
};
|
|
1778
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1778
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1779
1779
|
declare type ApartmentResourceCompanyDetails = {
|
|
1780
|
-
company: CompanyAutocompleteFields | null;
|
|
1780
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1781
1781
|
operationalAccountNumber: string;
|
|
1782
1782
|
payerCode: string;
|
|
1783
1783
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1784
1784
|
access: ResourceAccessParams;
|
|
1785
1785
|
sampleReceiptLink: string;
|
|
1786
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1786
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1787
1787
|
};
|
|
1788
1788
|
declare type ApartmentResourceInterface = {
|
|
1789
1789
|
type: ApartmentResourceTypes;
|
|
@@ -1820,15 +1820,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1820
1820
|
loader: Loader;
|
|
1821
1821
|
};
|
|
1822
1822
|
declare type PostDocumentsResponse = {
|
|
1823
|
-
documents: DocumentModel[];
|
|
1823
|
+
documents: DocumentModel$1[];
|
|
1824
1824
|
};
|
|
1825
1825
|
declare type DocumentAgentInterface = {
|
|
1826
1826
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1827
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1828
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1827
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1828
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1829
1829
|
};
|
|
1830
1830
|
declare type DocumentsAgentInterface = {
|
|
1831
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1831
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1832
1832
|
} & DocumentAgentInterface;
|
|
1833
1833
|
|
|
1834
1834
|
declare type MetroLineParams = {
|
|
@@ -1899,7 +1899,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1899
1899
|
};
|
|
1900
1900
|
declare type ApartmentDocumentModel = {
|
|
1901
1901
|
id: number;
|
|
1902
|
-
document: DocumentModel;
|
|
1902
|
+
document: DocumentModel$1;
|
|
1903
1903
|
expiration_date: string;
|
|
1904
1904
|
start_date: string;
|
|
1905
1905
|
number: string;
|
|
@@ -1911,7 +1911,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1911
1911
|
tariff?: TariffLinkModel;
|
|
1912
1912
|
activation_date?: string;
|
|
1913
1913
|
check_date?: string;
|
|
1914
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1914
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1915
1915
|
apartment: ApartmentLinkModel;
|
|
1916
1916
|
company: CompanyLiteParams;
|
|
1917
1917
|
operating_account_number?: string | null;
|
|
@@ -2032,7 +2032,7 @@ declare type ApartmentModel = {
|
|
|
2032
2032
|
owner_id: number;
|
|
2033
2033
|
metro_stations: ApartmentMetroParams[];
|
|
2034
2034
|
rental_status: RentalStatuses;
|
|
2035
|
-
main_image: ImageModel;
|
|
2035
|
+
main_image: ImageModel$1;
|
|
2036
2036
|
tv_type: TVTypes | null;
|
|
2037
2037
|
inspection: ApartmentInspectionModel;
|
|
2038
2038
|
distance_to_center_kilometers: number | null;
|
|
@@ -2059,7 +2059,7 @@ declare type ApartmentLiteModel = {
|
|
|
2059
2059
|
renter: LiteUserModel | null;
|
|
2060
2060
|
rental_status: RentalStatuses;
|
|
2061
2061
|
renter_payment_status: RentalPaymentStatuses;
|
|
2062
|
-
main_image: ImageModel;
|
|
2062
|
+
main_image: ImageModel$1;
|
|
2063
2063
|
service_contract?: ServiceContractLiteModel;
|
|
2064
2064
|
is_imported_from_old_crm?: boolean;
|
|
2065
2065
|
max_electricity_counters?: number | null;
|
|
@@ -2105,7 +2105,7 @@ declare type ObjectForMapModel = {
|
|
|
2105
2105
|
apartment_number: string;
|
|
2106
2106
|
address: string;
|
|
2107
2107
|
geolocation: LatLonParams;
|
|
2108
|
-
main_image: ImageModel;
|
|
2108
|
+
main_image: ImageModel$1;
|
|
2109
2109
|
renter: ClientLiteModel | null;
|
|
2110
2110
|
owner: ClientLiteModel;
|
|
2111
2111
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2137,13 +2137,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2137
2137
|
agent: DocumentAgentInterface;
|
|
2138
2138
|
loader: Loader;
|
|
2139
2139
|
settings?: any;
|
|
2140
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2140
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2141
2141
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2142
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2142
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2143
2143
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2144
2144
|
get extension(): string;
|
|
2145
2145
|
get title(): string;
|
|
2146
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2146
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2147
2147
|
}
|
|
2148
2148
|
|
|
2149
2149
|
type InputTypes =
|
|
@@ -2203,13 +2203,13 @@ declare type FileParams = {
|
|
|
2203
2203
|
size?: number | null;
|
|
2204
2204
|
file: File;
|
|
2205
2205
|
};
|
|
2206
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2206
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2207
2207
|
declare type FileStoreParams = {
|
|
2208
2208
|
id?: number | null;
|
|
2209
2209
|
url?: string;
|
|
2210
2210
|
index?: number | string | null;
|
|
2211
2211
|
createdBy?: string | null;
|
|
2212
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2212
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2213
2213
|
name?: string;
|
|
2214
2214
|
date?: string | null;
|
|
2215
2215
|
size?: number | null;
|
|
@@ -2360,8 +2360,8 @@ declare const FillingTagsAgent: {
|
|
|
2360
2360
|
};
|
|
2361
2361
|
|
|
2362
2362
|
declare const TariffsAgent: {
|
|
2363
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2364
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2363
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2364
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2365
2365
|
};
|
|
2366
2366
|
|
|
2367
2367
|
type SignInFormFields = {
|
|
@@ -2380,8 +2380,8 @@ declare const ApartmentsAgent: {
|
|
|
2380
2380
|
};
|
|
2381
2381
|
|
|
2382
2382
|
declare const ApartmentMetersAgent: {
|
|
2383
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2384
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2383
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2384
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2385
2385
|
};
|
|
2386
2386
|
|
|
2387
2387
|
declare const requests: {
|
|
@@ -2405,7 +2405,7 @@ declare const meterUnitLabel: {
|
|
|
2405
2405
|
electricity: string;
|
|
2406
2406
|
};
|
|
2407
2407
|
|
|
2408
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2408
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2409
2409
|
|
|
2410
2410
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2411
2411
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2421,34 +2421,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2421
2421
|
}, "">;
|
|
2422
2422
|
|
|
2423
2423
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2424
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2424
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2425
2425
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2426
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2426
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2427
2427
|
temp_file_id: number;
|
|
2428
2428
|
name: string;
|
|
2429
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2429
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2430
2430
|
url: string;
|
|
2431
2431
|
} | null;
|
|
2432
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2433
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2434
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2432
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2433
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2434
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2435
2435
|
name: string;
|
|
2436
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2436
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2437
2437
|
} | null;
|
|
2438
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2438
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2439
2439
|
name: string;
|
|
2440
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2440
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2441
2441
|
} | null>;
|
|
2442
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2443
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2444
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2445
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2446
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2447
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2448
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2449
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2450
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2451
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2442
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2443
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2444
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2445
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2446
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2447
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2448
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2449
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2450
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2451
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2452
2452
|
|
|
2453
2453
|
declare const matchesAPISubjectRoles: {
|
|
2454
2454
|
maroom: string;
|
|
@@ -2541,16 +2541,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2541
2541
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2542
2542
|
|
|
2543
2543
|
declare class FilesStore {
|
|
2544
|
-
files: FileStore[];
|
|
2544
|
+
files: FileStore$1[];
|
|
2545
2545
|
variant: FileVariant;
|
|
2546
2546
|
constructor(variant: FileVariant);
|
|
2547
|
-
addFile: (newFile: FileStore) => void;
|
|
2547
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2548
2548
|
removeFile: (index: number) => void;
|
|
2549
|
-
setFiles: (files: FileStore[]) => void;
|
|
2549
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2550
2550
|
uploadFiles: () => Promise<void>;
|
|
2551
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2551
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2552
2552
|
get uploadedAllFiles(): boolean;
|
|
2553
|
-
get notUploadedFiles(): FileStore[];
|
|
2553
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2554
2554
|
get isUploading(): boolean;
|
|
2555
2555
|
get videoLength(): number;
|
|
2556
2556
|
get nonVideoLength(): number;
|
|
@@ -2572,7 +2572,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2572
2572
|
messages?: UploadMediaMessages;
|
|
2573
2573
|
withoutFilesStore?: boolean;
|
|
2574
2574
|
};
|
|
2575
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2575
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2576
2576
|
|
|
2577
2577
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2578
2578
|
onSearchItem: (value: string) => void;
|
|
@@ -2744,11 +2744,11 @@ type DistrictAutocompleteFields = {
|
|
|
2744
2744
|
type ReplaceableTariffFields = {
|
|
2745
2745
|
name: string
|
|
2746
2746
|
id?: number
|
|
2747
|
-
type?: ResourceTypes
|
|
2747
|
+
type?: ResourceTypes$1
|
|
2748
2748
|
}
|
|
2749
2749
|
|
|
2750
2750
|
type TariffCommonFields = {
|
|
2751
|
-
resourceType: ResourceTypes
|
|
2751
|
+
resourceType: ResourceTypes$1
|
|
2752
2752
|
name: string
|
|
2753
2753
|
startDate: DateTime
|
|
2754
2754
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2760,7 +2760,7 @@ type TariffCommonFields = {
|
|
|
2760
2760
|
}
|
|
2761
2761
|
|
|
2762
2762
|
type ElectricityTariffCreationFormFields = {
|
|
2763
|
-
type: ElectricityMeterTypes
|
|
2763
|
+
type: ElectricityMeterTypes$1
|
|
2764
2764
|
isOverallConsumption: boolean
|
|
2765
2765
|
T1?: number
|
|
2766
2766
|
T2?: number
|
|
@@ -2781,7 +2781,7 @@ type TariffCreationFormProps = {
|
|
|
2781
2781
|
handleClose: () => void
|
|
2782
2782
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2783
2783
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2784
|
-
defaultResource: ResourceTypes
|
|
2784
|
+
defaultResource: ResourceTypes$1
|
|
2785
2785
|
settings?: any
|
|
2786
2786
|
}
|
|
2787
2787
|
|
|
@@ -2826,7 +2826,7 @@ declare class TariffsLiteStore {
|
|
|
2826
2826
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2827
2827
|
settings?: any;
|
|
2828
2828
|
constructor(settings?: any);
|
|
2829
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2829
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2830
2830
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2831
2831
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2832
2832
|
id: number;
|
|
@@ -2834,7 +2834,7 @@ declare class TariffsLiteStore {
|
|
|
2834
2834
|
};
|
|
2835
2835
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2836
2836
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2837
|
-
type: ElectricityMeterTypes;
|
|
2837
|
+
type: ElectricityMeterTypes$1;
|
|
2838
2838
|
T1: string | undefined;
|
|
2839
2839
|
T2: string | undefined;
|
|
2840
2840
|
T3: string | undefined;
|
|
@@ -3127,7 +3127,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3127
3127
|
name?: string
|
|
3128
3128
|
label?: string
|
|
3129
3129
|
hideName?: string
|
|
3130
|
-
resource: ResourceTypes
|
|
3130
|
+
resource: ResourceTypes$1
|
|
3131
3131
|
filter?: string
|
|
3132
3132
|
filterRequired?: boolean
|
|
3133
3133
|
settings?: any
|
|
@@ -3140,7 +3140,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3140
3140
|
}
|
|
3141
3141
|
|
|
3142
3142
|
type MeterFeaturesFieldsProps = {
|
|
3143
|
-
resource?: ResourceTypes
|
|
3143
|
+
resource?: ResourceTypes$1
|
|
3144
3144
|
replacements?: LiteMeterInterface[]
|
|
3145
3145
|
isNewResource?: boolean
|
|
3146
3146
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3154,7 +3154,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3154
3154
|
withNextCheck?: boolean
|
|
3155
3155
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3156
3156
|
handleMeterTypeChange?: (
|
|
3157
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3157
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3158
3158
|
) => void
|
|
3159
3159
|
settings?: any
|
|
3160
3160
|
disabledInitial?: boolean
|
|
@@ -3167,14 +3167,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3167
3167
|
initialValueT1?: number
|
|
3168
3168
|
initialValueT2?: number
|
|
3169
3169
|
initialValueT3?: number
|
|
3170
|
-
type?: MeterTypes
|
|
3171
|
-
resource?: ResourceTypes
|
|
3170
|
+
type?: MeterTypes$1
|
|
3171
|
+
resource?: ResourceTypes$1
|
|
3172
3172
|
withAutoSending?: boolean
|
|
3173
3173
|
}
|
|
3174
3174
|
|
|
3175
3175
|
type MeterFeaturesFormFields = {
|
|
3176
3176
|
tariff: TariffGroupAutocompleteFields | null
|
|
3177
|
-
company: CompanyAutocompleteFields | null
|
|
3177
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3178
3178
|
nextCheck: DateTime | null
|
|
3179
3179
|
lastValue?: number
|
|
3180
3180
|
lastValueT1?: number
|
|
@@ -3188,8 +3188,8 @@ type MeterFeaturesFormFields = {
|
|
|
3188
3188
|
} & BasicMeterFeaturesFormFields
|
|
3189
3189
|
|
|
3190
3190
|
type BasicMeterFieldsSettings = {
|
|
3191
|
-
resource?: ResourceTypes
|
|
3192
|
-
meterType?: MeterTypes
|
|
3191
|
+
resource?: ResourceTypes$1
|
|
3192
|
+
meterType?: MeterTypes$1
|
|
3193
3193
|
disabledInitial?: boolean
|
|
3194
3194
|
}
|
|
3195
3195
|
|
|
@@ -3221,10 +3221,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3221
3221
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3222
3222
|
|
|
3223
3223
|
type MeterTypeRadioGroupProps = {
|
|
3224
|
-
resource?: ResourceTypes
|
|
3224
|
+
resource?: ResourceTypes$1
|
|
3225
3225
|
form: UseFormReturn<any>
|
|
3226
3226
|
handleChange: (
|
|
3227
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3227
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3228
3228
|
) => void
|
|
3229
3229
|
disabled?: boolean
|
|
3230
3230
|
waterOptions?: OptionParams[]
|
|
@@ -3236,7 +3236,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3236
3236
|
type MeterFeaturesFormProps = {
|
|
3237
3237
|
formStore?: MultistepForm$1<any>
|
|
3238
3238
|
handleMeterTypeChange?: (
|
|
3239
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3239
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3240
3240
|
) => void
|
|
3241
3241
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3242
3242
|
|
|
@@ -3304,7 +3304,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3304
3304
|
startDate: undefined;
|
|
3305
3305
|
}, "">;
|
|
3306
3306
|
|
|
3307
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3307
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3308
3308
|
|
|
3309
3309
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3310
3310
|
|
|
@@ -3320,7 +3320,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3320
3320
|
|
|
3321
3321
|
type TariffReplacementFieldsProps = {
|
|
3322
3322
|
form: UseFormReturn<TariffCommonFields>
|
|
3323
|
-
resource: ResourceTypes
|
|
3323
|
+
resource: ResourceTypes$1
|
|
3324
3324
|
setReplaceable: (value: boolean) => void
|
|
3325
3325
|
settings?: any
|
|
3326
3326
|
}
|
|
@@ -3735,7 +3735,7 @@ type UploadPhotosButtonProps = {
|
|
|
3735
3735
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3736
3736
|
|
|
3737
3737
|
type UploadedImageProps = {
|
|
3738
|
-
image: FileStore
|
|
3738
|
+
image: FileStore$1
|
|
3739
3739
|
index: number
|
|
3740
3740
|
onClick: (index: number) => void
|
|
3741
3741
|
onDelete: (index: number) => void
|
|
@@ -3768,14 +3768,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3768
3768
|
};
|
|
3769
3769
|
declare type PartialMeterInfoFields = {
|
|
3770
3770
|
id: number;
|
|
3771
|
-
resource: ResourceTypes;
|
|
3772
|
-
type?: MeterTypes;
|
|
3771
|
+
resource: ResourceTypes$1;
|
|
3772
|
+
type?: MeterTypes$1;
|
|
3773
3773
|
number: string;
|
|
3774
|
-
images: FileStore[];
|
|
3774
|
+
images: FileStore$1[];
|
|
3775
3775
|
maxValue?: PartialMeterValuesFields;
|
|
3776
3776
|
values: PartialMeterValuesFields;
|
|
3777
3777
|
} & PartialMeterValuesFields;
|
|
3778
|
-
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>[];
|
|
3778
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes$1, type?: MeterTypes$1 | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3779
3779
|
|
|
3780
3780
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3781
3781
|
type: string | undefined;
|
|
@@ -3802,4 +3802,4 @@ type SignInPageProps = {
|
|
|
3802
3802
|
|
|
3803
3803
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3804
3804
|
|
|
3805
|
-
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, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3805
|
+
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, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel, 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 };
|