kui-crm 0.0.566 → 0.0.567
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 +201 -190
- package/package.json +1 -1
- package/types/index.d.ts +146 -135
- package/utils/index.d.ts +13 -2
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;
|
|
@@ -347,6 +347,14 @@ declare type CounterpartyModel = {
|
|
|
347
347
|
is_privacy_policy_accepted?: boolean;
|
|
348
348
|
is_marketing_communications_accepted?: boolean;
|
|
349
349
|
is_public_offer_accepted?: boolean;
|
|
350
|
+
};
|
|
351
|
+
declare type LifecycleStatuses = "draft" | "active" | "closed";
|
|
352
|
+
declare type StatusStateModel<S, F = []> = {
|
|
353
|
+
status: LifecycleStatuses;
|
|
354
|
+
sub_status?: S;
|
|
355
|
+
flags?: F;
|
|
356
|
+
is_archived: boolean;
|
|
357
|
+
archived_at: string | null;
|
|
350
358
|
};
|
|
351
359
|
|
|
352
360
|
declare type CatalogItemModel = {
|
|
@@ -401,7 +409,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
401
409
|
provider_type: string;
|
|
402
410
|
};
|
|
403
411
|
declare type DataTransferFormats = "online" | "offline";
|
|
404
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "other";
|
|
405
413
|
declare type ApartmentResourceModel = {
|
|
406
414
|
id: number;
|
|
407
415
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -410,7 +418,7 @@ declare type ApartmentResourceModel = {
|
|
|
410
418
|
payer_code?: string;
|
|
411
419
|
meter_readings_day_from?: number;
|
|
412
420
|
meter_readings_day_to?: number;
|
|
413
|
-
receipt_example?: DocumentModel;
|
|
421
|
+
receipt_example?: DocumentModel$1;
|
|
414
422
|
provider_auth_login?: string;
|
|
415
423
|
provider_auth_password?: string;
|
|
416
424
|
provider_url?: string;
|
|
@@ -431,8 +439,8 @@ declare type InspectionFillingParams = {
|
|
|
431
439
|
description?: string;
|
|
432
440
|
serial_code?: string;
|
|
433
441
|
amount?: number | string | null;
|
|
434
|
-
photos: ImageBodyRequest[];
|
|
435
|
-
instruction?: FileBodyRequest | null;
|
|
442
|
+
photos: ImageBodyRequest$1[];
|
|
443
|
+
instruction?: FileBodyRequest$1 | null;
|
|
436
444
|
was_missing?: boolean;
|
|
437
445
|
};
|
|
438
446
|
declare type InspectionMeterValueModel = {
|
|
@@ -463,7 +471,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
463
471
|
uploaded: boolean;
|
|
464
472
|
purpose: InspectionRoomPhotoTypes;
|
|
465
473
|
comment?: string;
|
|
466
|
-
photos: ImageModel[];
|
|
474
|
+
photos: ImageModel$1[];
|
|
467
475
|
videos: VideoModel[];
|
|
468
476
|
room_order_number?: number | null;
|
|
469
477
|
};
|
|
@@ -501,11 +509,11 @@ declare type FullInspectionCommonFields = {
|
|
|
501
509
|
filling: InspectionFillingModel[];
|
|
502
510
|
} & ApartmentModel;
|
|
503
511
|
declare type InspectionMeterCommonInfo = {
|
|
504
|
-
resource_type: ResourceTypes;
|
|
505
|
-
passport: FileModel | null;
|
|
506
|
-
meter_type: MeterTypes;
|
|
512
|
+
resource_type: ResourceTypes$1;
|
|
513
|
+
passport: FileModel$1 | null;
|
|
514
|
+
meter_type: MeterTypes$1;
|
|
507
515
|
operating_account: string;
|
|
508
|
-
photos: ImageModel[];
|
|
516
|
+
photos: ImageModel$1[];
|
|
509
517
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
510
518
|
declare type TransferInspectionMeterModel = {
|
|
511
519
|
values: InspectionMeterValueModel;
|
|
@@ -521,7 +529,7 @@ declare type RegularInspectionFields = {
|
|
|
521
529
|
declare type ComparableObjectModel = {
|
|
522
530
|
id: number;
|
|
523
531
|
advertisement_link: string;
|
|
524
|
-
advertisement_screenshot: ImageModel | null;
|
|
532
|
+
advertisement_screenshot: ImageModel$1 | null;
|
|
525
533
|
object_price: string;
|
|
526
534
|
key_object_differences: string;
|
|
527
535
|
};
|
|
@@ -529,7 +537,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
529
537
|
id: number;
|
|
530
538
|
source_name: string;
|
|
531
539
|
link: string;
|
|
532
|
-
screenshot: ImageModel | null;
|
|
540
|
+
screenshot: ImageModel$1 | null;
|
|
533
541
|
min_price: string;
|
|
534
542
|
max_price: string;
|
|
535
543
|
};
|
|
@@ -572,11 +580,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
572
580
|
declare type ImpairmentModel = {
|
|
573
581
|
id: number;
|
|
574
582
|
impairment_type: ImpairmentType;
|
|
575
|
-
proof_file: DocumentModel | null;
|
|
583
|
+
proof_file: DocumentModel$1 | null;
|
|
576
584
|
price: number;
|
|
577
585
|
solution: string;
|
|
578
586
|
description: string;
|
|
579
|
-
photos: ImageModel[];
|
|
587
|
+
photos: ImageModel$1[];
|
|
580
588
|
item_link: string;
|
|
581
589
|
};
|
|
582
590
|
declare type MetroStationsFields = {
|
|
@@ -586,7 +594,7 @@ declare type InitialInspectionModelFields = {
|
|
|
586
594
|
used_resources: UsedResourcesModel;
|
|
587
595
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
588
596
|
declare type AppraisalRequestModelFields = {
|
|
589
|
-
floor_plan: DocumentModel | null;
|
|
597
|
+
floor_plan: DocumentModel$1 | null;
|
|
590
598
|
};
|
|
591
599
|
declare type InspectionModel = {
|
|
592
600
|
initial?: InitialInspectionModelFields;
|
|
@@ -663,10 +671,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
663
671
|
};
|
|
664
672
|
declare type PatchInspectionImageParams = {
|
|
665
673
|
id?: number;
|
|
666
|
-
} & Partial<ImageBodyRequest>;
|
|
674
|
+
} & Partial<ImageBodyRequest$1>;
|
|
667
675
|
declare type PatchInspectionVideoParams = {
|
|
668
676
|
id?: number;
|
|
669
|
-
} & Partial<VideoBodyRequest>;
|
|
677
|
+
} & Partial<VideoBodyRequest$1>;
|
|
670
678
|
declare type PatchRoomImagesParams = {
|
|
671
679
|
type: InspectionRoomPhotoTypes;
|
|
672
680
|
comment?: string;
|
|
@@ -706,8 +714,8 @@ declare type InspectionFillingModel = {
|
|
|
706
714
|
description: string;
|
|
707
715
|
serial_code: string;
|
|
708
716
|
amount: number;
|
|
709
|
-
photos: ImageModel[];
|
|
710
|
-
instruction: DocumentModel;
|
|
717
|
+
photos: ImageModel$1[];
|
|
718
|
+
instruction: DocumentModel$1;
|
|
711
719
|
is_absent: boolean;
|
|
712
720
|
previously_absent: boolean;
|
|
713
721
|
model: string;
|
|
@@ -789,7 +797,7 @@ declare type CommonMeterParams = {
|
|
|
789
797
|
company: CompanyLiteParams;
|
|
790
798
|
operating_account_number?: string | null;
|
|
791
799
|
company_is_administrative: boolean;
|
|
792
|
-
photos?: ImageModel[];
|
|
800
|
+
photos?: ImageModel$1[];
|
|
793
801
|
auto_sending: boolean;
|
|
794
802
|
no_tariff: boolean;
|
|
795
803
|
is_avg: boolean;
|
|
@@ -801,15 +809,15 @@ declare type ElectricityMeterValues = {
|
|
|
801
809
|
T3?: MeterTariffModel;
|
|
802
810
|
};
|
|
803
811
|
declare type WaterMeterParams = {
|
|
804
|
-
type: WaterMeterTypes;
|
|
812
|
+
type: WaterMeterTypes$1;
|
|
805
813
|
tariff: SingleCounterTariffModel;
|
|
806
814
|
} & CommonMeterParams & MeterTariffModel;
|
|
807
815
|
declare type SingleMeterParams = {
|
|
808
|
-
type?: WaterMeterTypes;
|
|
816
|
+
type?: WaterMeterTypes$1;
|
|
809
817
|
tariff: SingleCounterTariffModel;
|
|
810
818
|
} & CommonMeterParams & MeterTariffModel;
|
|
811
819
|
declare type ElectricityMeterParams = {
|
|
812
|
-
type: ElectricityMeterTypes;
|
|
820
|
+
type: ElectricityMeterTypes$1;
|
|
813
821
|
values: ElectricityMeterValues;
|
|
814
822
|
tariff: ElectricityMeterTariffModel;
|
|
815
823
|
overall_value?: number;
|
|
@@ -928,6 +936,7 @@ declare type RepresentativeModel = {
|
|
|
928
936
|
};
|
|
929
937
|
declare type ServiceContractModel = {
|
|
930
938
|
id: number;
|
|
939
|
+
state: ServiceContractStatusStateModel;
|
|
931
940
|
apartment: ApartmentLinkModel;
|
|
932
941
|
owner: LiteUserModel;
|
|
933
942
|
representatives: RepresentativeModel[];
|
|
@@ -944,7 +953,6 @@ declare type ServiceContractModel = {
|
|
|
944
953
|
sign_date: string;
|
|
945
954
|
start_date: string;
|
|
946
955
|
end_date: string;
|
|
947
|
-
status: ContractStatuses;
|
|
948
956
|
taxes_type: TaxesTypes;
|
|
949
957
|
initial_commission: string;
|
|
950
958
|
maintenance_commission: string;
|
|
@@ -980,6 +988,9 @@ declare type ServiceContractModel = {
|
|
|
980
988
|
public_offer_status?: OfferSignStatuses;
|
|
981
989
|
terms_acceptation?: ContractTermAcceptationModel;
|
|
982
990
|
};
|
|
991
|
+
declare type ServiceContractSubStatuses = "negotiation" | "appraisal" | "offer" | "transfer" | "rented_out" | "closing" | "completed" | "expired" | "cancelled" | "terminated" | "rejected" | "renewed" | "replaced";
|
|
992
|
+
declare type ServiceContractFlags = "new" | "expiring_soon" | "overdue" | "n/a" | "attention" | "problem" | "vip" | "dispute";
|
|
993
|
+
declare type ServiceContractStatusStateModel = StatusStateModel<ServiceContractSubStatuses, ServiceContractFlags[]>;
|
|
983
994
|
declare type ServiceContractListModel = {
|
|
984
995
|
id: number;
|
|
985
996
|
apartment: ApartmentLinkModel;
|
|
@@ -987,7 +998,7 @@ declare type ServiceContractListModel = {
|
|
|
987
998
|
owner: LiteUserModel;
|
|
988
999
|
renter: LiteUserModel;
|
|
989
1000
|
agent_report_payment_status: PaymentStatuses;
|
|
990
|
-
|
|
1001
|
+
state: ServiceContractStatusStateModel;
|
|
991
1002
|
rental_type: RentalTypes;
|
|
992
1003
|
};
|
|
993
1004
|
|
|
@@ -1048,7 +1059,7 @@ declare type CountryParams = {
|
|
|
1048
1059
|
code: string;
|
|
1049
1060
|
} & CatalogItemParams;
|
|
1050
1061
|
|
|
1051
|
-
type FileWithVisibility = {
|
|
1062
|
+
type FileWithVisibility$1 = {
|
|
1052
1063
|
file: File | null
|
|
1053
1064
|
tenant: boolean
|
|
1054
1065
|
landlord: boolean
|
|
@@ -1056,8 +1067,8 @@ type FileWithVisibility = {
|
|
|
1056
1067
|
url: string
|
|
1057
1068
|
}
|
|
1058
1069
|
|
|
1059
|
-
type InputFileWithVisibilityFields =
|
|
1060
|
-
| FileWithVisibility
|
|
1070
|
+
type InputFileWithVisibilityFields$1 =
|
|
1071
|
+
| FileWithVisibility$1
|
|
1061
1072
|
| DocumentWithVisibility
|
|
1062
1073
|
| null
|
|
1063
1074
|
| undefined
|
|
@@ -1087,7 +1098,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1087
1098
|
}
|
|
1088
1099
|
|
|
1089
1100
|
type ChangeReasonFormFields = {
|
|
1090
|
-
reason: InputFileWithVisibilityFields
|
|
1101
|
+
reason: InputFileWithVisibilityFields$1
|
|
1091
1102
|
comment?: string
|
|
1092
1103
|
}
|
|
1093
1104
|
|
|
@@ -1102,13 +1113,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1102
1113
|
settings?: any
|
|
1103
1114
|
} & InputWithControllerProps<TFormValues>
|
|
1104
1115
|
|
|
1105
|
-
type CompanyAutocompleteFields = {
|
|
1116
|
+
type CompanyAutocompleteFields$1 = {
|
|
1106
1117
|
id: number
|
|
1107
1118
|
name: string
|
|
1108
1119
|
logo?: string | null
|
|
1109
1120
|
}
|
|
1110
1121
|
|
|
1111
|
-
declare class FileStore implements FileStoreInterface {
|
|
1122
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1112
1123
|
id: number | null;
|
|
1113
1124
|
index?: number | null;
|
|
1114
1125
|
name: string;
|
|
@@ -1139,12 +1150,12 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1139
1150
|
setIndex: (index: number) => void;
|
|
1140
1151
|
get title(): string;
|
|
1141
1152
|
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;
|
|
1153
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1154
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1155
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1156
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1157
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1158
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1148
1159
|
}
|
|
1149
1160
|
|
|
1150
1161
|
declare type ImageParams = {
|
|
@@ -1179,7 +1190,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1179
1190
|
delete: () => Promise<void>;
|
|
1180
1191
|
get extension(): string;
|
|
1181
1192
|
get title(): string;
|
|
1182
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1193
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1183
1194
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1184
1195
|
}
|
|
1185
1196
|
|
|
@@ -1305,7 +1316,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1305
1316
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1306
1317
|
payerCode?: string;
|
|
1307
1318
|
communalServicesAccount?: string;
|
|
1308
|
-
company?: CompanyAutocompleteFields | null;
|
|
1319
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1309
1320
|
} & ChangeReasonFormFields;
|
|
1310
1321
|
declare type ApartmentOverviewInfoFields = {
|
|
1311
1322
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1328,14 +1339,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1328
1339
|
} & ApartmentPaymentInfoParams;
|
|
1329
1340
|
declare type InspectionMeterInfoParams = {
|
|
1330
1341
|
id: number;
|
|
1331
|
-
resource: ResourceTypes;
|
|
1332
|
-
type?: MeterTypes;
|
|
1342
|
+
resource: ResourceTypes$1;
|
|
1343
|
+
type?: MeterTypes$1;
|
|
1333
1344
|
number: string;
|
|
1334
1345
|
startDate: DateTime | null;
|
|
1335
1346
|
company: CompanyLiteParams;
|
|
1336
1347
|
operationalAccountNumber?: string | null;
|
|
1337
1348
|
tariff: EntityLinkParams | null;
|
|
1338
|
-
passportFile: FileStore | null;
|
|
1349
|
+
passportFile: FileStore$1 | null;
|
|
1339
1350
|
initialValue?: number;
|
|
1340
1351
|
lastValue?: number;
|
|
1341
1352
|
initialValueT1?: number;
|
|
@@ -1357,8 +1368,8 @@ declare type ValuesParams = {
|
|
|
1357
1368
|
};
|
|
1358
1369
|
declare type PartialMeterInfoParams = {
|
|
1359
1370
|
id: number;
|
|
1360
|
-
type: MeterTypes;
|
|
1361
|
-
resource: ResourceTypes;
|
|
1371
|
+
type: MeterTypes$1;
|
|
1372
|
+
resource: ResourceTypes$1;
|
|
1362
1373
|
number: string;
|
|
1363
1374
|
values: ValuesParams;
|
|
1364
1375
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1370,7 +1381,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1370
1381
|
declare type ComparableObjectParams = {
|
|
1371
1382
|
id: number;
|
|
1372
1383
|
link: string;
|
|
1373
|
-
screenshot: FileStore | null;
|
|
1384
|
+
screenshot: FileStore$1 | null;
|
|
1374
1385
|
price: number;
|
|
1375
1386
|
differences: string;
|
|
1376
1387
|
};
|
|
@@ -1378,7 +1389,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1378
1389
|
id: number;
|
|
1379
1390
|
dataSourceName: string;
|
|
1380
1391
|
link: string;
|
|
1381
|
-
screenshot: FileStore | null;
|
|
1392
|
+
screenshot: FileStore$1 | null;
|
|
1382
1393
|
minPrice: number;
|
|
1383
1394
|
maxPrice: number;
|
|
1384
1395
|
};
|
|
@@ -1403,8 +1414,8 @@ declare type FillingInfoFormFields = {
|
|
|
1403
1414
|
name?: string;
|
|
1404
1415
|
description?: string;
|
|
1405
1416
|
type?: ApartmentFillingVariants | null;
|
|
1406
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1407
|
-
tempImages?: ImageBodyRequest[];
|
|
1417
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1418
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1408
1419
|
};
|
|
1409
1420
|
|
|
1410
1421
|
declare type FillingTagParams = {
|
|
@@ -1419,7 +1430,7 @@ declare type FillingParams = {
|
|
|
1419
1430
|
images?: (ImageStore | UploadFileParams)[];
|
|
1420
1431
|
serialNumber?: string;
|
|
1421
1432
|
numberOfSubjects?: number | string | null;
|
|
1422
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1433
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1423
1434
|
type?: ApartmentFillingVariants;
|
|
1424
1435
|
loader?: Loader;
|
|
1425
1436
|
};
|
|
@@ -1431,7 +1442,7 @@ declare type FillingFullParams = {
|
|
|
1431
1442
|
images?: (ImageStore | UploadFileParams)[];
|
|
1432
1443
|
serialNumber?: string;
|
|
1433
1444
|
numberOfSubjects?: number | string | null;
|
|
1434
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1445
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1435
1446
|
type?: ApartmentFillingVariants;
|
|
1436
1447
|
loader?: Loader;
|
|
1437
1448
|
check?: boolean | null;
|
|
@@ -1450,31 +1461,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1450
1461
|
name: string;
|
|
1451
1462
|
};
|
|
1452
1463
|
|
|
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
|
|
1464
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1465
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1466
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
1467
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1468
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1469
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1470
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1471
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1472
|
+
declare type FileBodyRequest = {
|
|
1462
1473
|
temp_file_id?: number;
|
|
1463
1474
|
name: string;
|
|
1464
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1475
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1465
1476
|
url?: string;
|
|
1466
1477
|
};
|
|
1467
|
-
declare type ImageBodyRequest
|
|
1478
|
+
declare type ImageBodyRequest = {
|
|
1468
1479
|
temp_file_id: number;
|
|
1469
1480
|
image_name: string;
|
|
1470
1481
|
url: string;
|
|
1471
1482
|
};
|
|
1472
|
-
declare type VideoBodyRequest
|
|
1483
|
+
declare type VideoBodyRequest = {
|
|
1473
1484
|
temp_file_id: number;
|
|
1474
1485
|
file_name: string;
|
|
1475
1486
|
url: string;
|
|
1476
1487
|
};
|
|
1477
|
-
declare type ImageModel
|
|
1488
|
+
declare type ImageModel = {
|
|
1478
1489
|
id: number;
|
|
1479
1490
|
image_name?: string;
|
|
1480
1491
|
image_url?: string;
|
|
@@ -1483,23 +1494,23 @@ declare type ImageModel$1 = {
|
|
|
1483
1494
|
image_large_url: string;
|
|
1484
1495
|
size: number;
|
|
1485
1496
|
};
|
|
1486
|
-
declare type FileModel
|
|
1497
|
+
declare type FileModel = {
|
|
1487
1498
|
id: number;
|
|
1488
1499
|
name: string;
|
|
1489
1500
|
size: number;
|
|
1490
1501
|
url: string;
|
|
1491
1502
|
};
|
|
1492
|
-
declare type DocumentModel
|
|
1503
|
+
declare type DocumentModel = {
|
|
1493
1504
|
pk: number;
|
|
1494
1505
|
name: string;
|
|
1495
1506
|
created?: string;
|
|
1496
1507
|
attachment: string;
|
|
1497
1508
|
size: number;
|
|
1498
1509
|
uploaded_by?: string | null;
|
|
1499
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1510
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1500
1511
|
};
|
|
1501
1512
|
|
|
1502
|
-
type FileWithVisibility
|
|
1513
|
+
type FileWithVisibility = {
|
|
1503
1514
|
file: File | null
|
|
1504
1515
|
tenant: boolean
|
|
1505
1516
|
landlord: boolean
|
|
@@ -1507,19 +1518,19 @@ type FileWithVisibility$1 = {
|
|
|
1507
1518
|
url: string
|
|
1508
1519
|
}
|
|
1509
1520
|
|
|
1510
|
-
type InputFileWithVisibilityFields
|
|
1511
|
-
| FileWithVisibility
|
|
1521
|
+
type InputFileWithVisibilityFields =
|
|
1522
|
+
| FileWithVisibility
|
|
1512
1523
|
| DocumentWithVisibility$1
|
|
1513
1524
|
| null
|
|
1514
1525
|
| undefined
|
|
1515
1526
|
|
|
1516
|
-
type CompanyAutocompleteFields
|
|
1527
|
+
type CompanyAutocompleteFields = {
|
|
1517
1528
|
id: number
|
|
1518
1529
|
name: string
|
|
1519
1530
|
logo?: string | null
|
|
1520
1531
|
}
|
|
1521
1532
|
|
|
1522
|
-
declare class FileStore
|
|
1533
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1523
1534
|
id: number | null;
|
|
1524
1535
|
index?: number | null;
|
|
1525
1536
|
name: string;
|
|
@@ -1550,21 +1561,21 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1550
1561
|
setIndex: (index: number) => void;
|
|
1551
1562
|
get title(): string;
|
|
1552
1563
|
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
|
|
1564
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1565
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1566
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1567
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1568
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1569
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1559
1570
|
}
|
|
1560
1571
|
|
|
1561
1572
|
type PartialPayerFields$1 = {
|
|
1562
|
-
payer?: ResourcePaymentRoles
|
|
1563
|
-
mainPayer?: ResourcePaymentRoles
|
|
1564
|
-
refundFrom?: ResourcePaymentRoles
|
|
1565
|
-
partType?: UnitOfPaymentTypes
|
|
1573
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1574
|
+
mainPayer?: ResourcePaymentRoles
|
|
1575
|
+
refundFrom?: ResourcePaymentRoles
|
|
1576
|
+
partType?: UnitOfPaymentTypes | null
|
|
1566
1577
|
refundValue?: number | string | null
|
|
1567
|
-
utilityType: UtilityTypes
|
|
1578
|
+
utilityType: UtilityTypes
|
|
1568
1579
|
}
|
|
1569
1580
|
|
|
1570
1581
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1596,13 +1607,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1596
1607
|
visibility?: DocumentVisibilityVariants$1;
|
|
1597
1608
|
extension: string;
|
|
1598
1609
|
};
|
|
1599
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1610
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1600
1611
|
declare type FileStoreParams$1 = {
|
|
1601
1612
|
id?: number | null;
|
|
1602
1613
|
url?: string;
|
|
1603
1614
|
index?: number | string | null;
|
|
1604
1615
|
createdBy?: string | null;
|
|
1605
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1616
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1606
1617
|
name?: string;
|
|
1607
1618
|
date?: string | null;
|
|
1608
1619
|
size?: number | null;
|
|
@@ -1630,14 +1641,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1630
1641
|
initialValueT1?: number
|
|
1631
1642
|
initialValueT2?: number
|
|
1632
1643
|
initialValueT3?: number
|
|
1633
|
-
type?: MeterTypes
|
|
1634
|
-
resource?: ResourceTypes
|
|
1644
|
+
type?: MeterTypes
|
|
1645
|
+
resource?: ResourceTypes
|
|
1635
1646
|
withAutoSending?: boolean
|
|
1636
1647
|
}
|
|
1637
1648
|
|
|
1638
1649
|
type MeterFeaturesFormFields$1 = {
|
|
1639
1650
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1640
|
-
company: CompanyAutocompleteFields
|
|
1651
|
+
company: CompanyAutocompleteFields | null
|
|
1641
1652
|
nextCheck: DateTime | null
|
|
1642
1653
|
lastValue?: number
|
|
1643
1654
|
lastValueT1?: number
|
|
@@ -1661,9 +1672,9 @@ declare type ApartmentMeterValues = {
|
|
|
1661
1672
|
} & MeterValues;
|
|
1662
1673
|
declare type InspectionMeterFields = {
|
|
1663
1674
|
id?: number;
|
|
1664
|
-
resource: ResourceTypes
|
|
1665
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1666
|
-
images: FileStore
|
|
1675
|
+
resource: ResourceTypes;
|
|
1676
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1677
|
+
images: FileStore[];
|
|
1667
1678
|
} & MeterFeaturesFormFields$1;
|
|
1668
1679
|
|
|
1669
1680
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1678,7 +1689,7 @@ type PartialPayerProps<T> = {
|
|
|
1678
1689
|
title: string
|
|
1679
1690
|
name: string
|
|
1680
1691
|
form: UseFormReturn<T>
|
|
1681
|
-
utilityType: UtilityTypes
|
|
1692
|
+
utilityType: UtilityTypes$1
|
|
1682
1693
|
fieldsVariant?: PartialPayerVariants
|
|
1683
1694
|
settings?: ObjectType
|
|
1684
1695
|
disabled?: boolean
|
|
@@ -1686,12 +1697,12 @@ type PartialPayerProps<T> = {
|
|
|
1686
1697
|
}
|
|
1687
1698
|
|
|
1688
1699
|
type PartialPayerFields = {
|
|
1689
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1690
|
-
mainPayer?: ResourcePaymentRoles
|
|
1691
|
-
refundFrom?: ResourcePaymentRoles
|
|
1692
|
-
partType?: UnitOfPaymentTypes | null
|
|
1700
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1701
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1702
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1703
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1693
1704
|
refundValue?: number | string | null
|
|
1694
|
-
utilityType: UtilityTypes
|
|
1705
|
+
utilityType: UtilityTypes$1
|
|
1695
1706
|
}
|
|
1696
1707
|
|
|
1697
1708
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1775,15 +1786,15 @@ declare type ResourceAccessParams = {
|
|
|
1775
1786
|
password?: string;
|
|
1776
1787
|
description?: string;
|
|
1777
1788
|
};
|
|
1778
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1789
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1779
1790
|
declare type ApartmentResourceCompanyDetails = {
|
|
1780
|
-
company: CompanyAutocompleteFields | null;
|
|
1791
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1781
1792
|
operationalAccountNumber: string;
|
|
1782
1793
|
payerCode: string;
|
|
1783
1794
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1784
1795
|
access: ResourceAccessParams;
|
|
1785
1796
|
sampleReceiptLink: string;
|
|
1786
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1797
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1787
1798
|
};
|
|
1788
1799
|
declare type ApartmentResourceInterface = {
|
|
1789
1800
|
type: ApartmentResourceTypes;
|
|
@@ -1820,15 +1831,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1820
1831
|
loader: Loader;
|
|
1821
1832
|
};
|
|
1822
1833
|
declare type PostDocumentsResponse = {
|
|
1823
|
-
documents: DocumentModel[];
|
|
1834
|
+
documents: DocumentModel$1[];
|
|
1824
1835
|
};
|
|
1825
1836
|
declare type DocumentAgentInterface = {
|
|
1826
1837
|
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>;
|
|
1838
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1839
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1829
1840
|
};
|
|
1830
1841
|
declare type DocumentsAgentInterface = {
|
|
1831
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1842
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1832
1843
|
} & DocumentAgentInterface;
|
|
1833
1844
|
|
|
1834
1845
|
declare type MetroLineParams = {
|
|
@@ -1899,7 +1910,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1899
1910
|
};
|
|
1900
1911
|
declare type ApartmentDocumentModel = {
|
|
1901
1912
|
id: number;
|
|
1902
|
-
document: DocumentModel;
|
|
1913
|
+
document: DocumentModel$1;
|
|
1903
1914
|
expiration_date: string;
|
|
1904
1915
|
start_date: string;
|
|
1905
1916
|
number: string;
|
|
@@ -1911,7 +1922,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1911
1922
|
tariff?: TariffLinkModel;
|
|
1912
1923
|
activation_date?: string;
|
|
1913
1924
|
check_date?: string;
|
|
1914
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1925
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1915
1926
|
apartment: ApartmentLinkModel;
|
|
1916
1927
|
company: CompanyLiteParams;
|
|
1917
1928
|
operating_account_number?: string | null;
|
|
@@ -2032,7 +2043,7 @@ declare type ApartmentModel = {
|
|
|
2032
2043
|
owner_id: number;
|
|
2033
2044
|
metro_stations: ApartmentMetroParams[];
|
|
2034
2045
|
rental_status: RentalStatuses;
|
|
2035
|
-
main_image: ImageModel;
|
|
2046
|
+
main_image: ImageModel$1;
|
|
2036
2047
|
tv_type: TVTypes | null;
|
|
2037
2048
|
inspection: ApartmentInspectionModel;
|
|
2038
2049
|
distance_to_center_kilometers: number | null;
|
|
@@ -2059,7 +2070,7 @@ declare type ApartmentLiteModel = {
|
|
|
2059
2070
|
renter: LiteUserModel | null;
|
|
2060
2071
|
rental_status: RentalStatuses;
|
|
2061
2072
|
renter_payment_status: RentalPaymentStatuses;
|
|
2062
|
-
main_image: ImageModel;
|
|
2073
|
+
main_image: ImageModel$1;
|
|
2063
2074
|
service_contract?: ServiceContractLiteModel;
|
|
2064
2075
|
is_imported_from_old_crm?: boolean;
|
|
2065
2076
|
max_electricity_counters?: number | null;
|
|
@@ -2105,7 +2116,7 @@ declare type ObjectForMapModel = {
|
|
|
2105
2116
|
apartment_number: string;
|
|
2106
2117
|
address: string;
|
|
2107
2118
|
geolocation: LatLonParams;
|
|
2108
|
-
main_image: ImageModel;
|
|
2119
|
+
main_image: ImageModel$1;
|
|
2109
2120
|
renter: ClientLiteModel | null;
|
|
2110
2121
|
owner: ClientLiteModel;
|
|
2111
2122
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2137,13 +2148,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2137
2148
|
agent: DocumentAgentInterface;
|
|
2138
2149
|
loader: Loader;
|
|
2139
2150
|
settings?: any;
|
|
2140
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2151
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2141
2152
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2142
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2153
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2143
2154
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2144
2155
|
get extension(): string;
|
|
2145
2156
|
get title(): string;
|
|
2146
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2157
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2147
2158
|
}
|
|
2148
2159
|
|
|
2149
2160
|
type InputTypes =
|
|
@@ -2203,13 +2214,13 @@ declare type FileParams = {
|
|
|
2203
2214
|
size?: number | null;
|
|
2204
2215
|
file: File;
|
|
2205
2216
|
};
|
|
2206
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2217
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2207
2218
|
declare type FileStoreParams = {
|
|
2208
2219
|
id?: number | null;
|
|
2209
2220
|
url?: string;
|
|
2210
2221
|
index?: number | string | null;
|
|
2211
2222
|
createdBy?: string | null;
|
|
2212
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2223
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2213
2224
|
name?: string;
|
|
2214
2225
|
date?: string | null;
|
|
2215
2226
|
size?: number | null;
|
|
@@ -2360,8 +2371,8 @@ declare const FillingTagsAgent: {
|
|
|
2360
2371
|
};
|
|
2361
2372
|
|
|
2362
2373
|
declare const TariffsAgent: {
|
|
2363
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2364
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2374
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2375
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2365
2376
|
};
|
|
2366
2377
|
|
|
2367
2378
|
type SignInFormFields = {
|
|
@@ -2380,8 +2391,8 @@ declare const ApartmentsAgent: {
|
|
|
2380
2391
|
};
|
|
2381
2392
|
|
|
2382
2393
|
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>;
|
|
2394
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2395
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2385
2396
|
};
|
|
2386
2397
|
|
|
2387
2398
|
declare const requests: {
|
|
@@ -2405,7 +2416,7 @@ declare const meterUnitLabel: {
|
|
|
2405
2416
|
electricity: string;
|
|
2406
2417
|
};
|
|
2407
2418
|
|
|
2408
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2419
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2409
2420
|
|
|
2410
2421
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2411
2422
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2421,34 +2432,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2421
2432
|
}, "">;
|
|
2422
2433
|
|
|
2423
2434
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2424
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2435
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2425
2436
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2426
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2437
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2427
2438
|
temp_file_id: number;
|
|
2428
2439
|
name: string;
|
|
2429
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2440
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2430
2441
|
url: string;
|
|
2431
2442
|
} | 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) => {
|
|
2443
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2444
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2445
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2435
2446
|
name: string;
|
|
2436
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2447
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2437
2448
|
} | null;
|
|
2438
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2449
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2439
2450
|
name: string;
|
|
2440
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2451
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2441
2452
|
} | 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>;
|
|
2453
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2454
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2455
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2456
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2457
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2458
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2459
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2460
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2461
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2462
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2452
2463
|
|
|
2453
2464
|
declare const matchesAPISubjectRoles: {
|
|
2454
2465
|
maroom: string;
|
|
@@ -2541,16 +2552,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2541
2552
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2542
2553
|
|
|
2543
2554
|
declare class FilesStore {
|
|
2544
|
-
files: FileStore[];
|
|
2555
|
+
files: FileStore$1[];
|
|
2545
2556
|
variant: FileVariant;
|
|
2546
2557
|
constructor(variant: FileVariant);
|
|
2547
|
-
addFile: (newFile: FileStore) => void;
|
|
2558
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2548
2559
|
removeFile: (index: number) => void;
|
|
2549
|
-
setFiles: (files: FileStore[]) => void;
|
|
2560
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2550
2561
|
uploadFiles: () => Promise<void>;
|
|
2551
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2562
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2552
2563
|
get uploadedAllFiles(): boolean;
|
|
2553
|
-
get notUploadedFiles(): FileStore[];
|
|
2564
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2554
2565
|
get isUploading(): boolean;
|
|
2555
2566
|
get videoLength(): number;
|
|
2556
2567
|
get nonVideoLength(): number;
|
|
@@ -2572,7 +2583,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2572
2583
|
messages?: UploadMediaMessages;
|
|
2573
2584
|
withoutFilesStore?: boolean;
|
|
2574
2585
|
};
|
|
2575
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2586
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2576
2587
|
|
|
2577
2588
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2578
2589
|
onSearchItem: (value: string) => void;
|
|
@@ -2744,11 +2755,11 @@ type DistrictAutocompleteFields = {
|
|
|
2744
2755
|
type ReplaceableTariffFields = {
|
|
2745
2756
|
name: string
|
|
2746
2757
|
id?: number
|
|
2747
|
-
type?: ResourceTypes
|
|
2758
|
+
type?: ResourceTypes$1
|
|
2748
2759
|
}
|
|
2749
2760
|
|
|
2750
2761
|
type TariffCommonFields = {
|
|
2751
|
-
resourceType: ResourceTypes
|
|
2762
|
+
resourceType: ResourceTypes$1
|
|
2752
2763
|
name: string
|
|
2753
2764
|
startDate: DateTime
|
|
2754
2765
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2760,7 +2771,7 @@ type TariffCommonFields = {
|
|
|
2760
2771
|
}
|
|
2761
2772
|
|
|
2762
2773
|
type ElectricityTariffCreationFormFields = {
|
|
2763
|
-
type: ElectricityMeterTypes
|
|
2774
|
+
type: ElectricityMeterTypes$1
|
|
2764
2775
|
isOverallConsumption: boolean
|
|
2765
2776
|
T1?: number
|
|
2766
2777
|
T2?: number
|
|
@@ -2781,7 +2792,7 @@ type TariffCreationFormProps = {
|
|
|
2781
2792
|
handleClose: () => void
|
|
2782
2793
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2783
2794
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2784
|
-
defaultResource: ResourceTypes
|
|
2795
|
+
defaultResource: ResourceTypes$1
|
|
2785
2796
|
settings?: any
|
|
2786
2797
|
}
|
|
2787
2798
|
|
|
@@ -2826,7 +2837,7 @@ declare class TariffsLiteStore {
|
|
|
2826
2837
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2827
2838
|
settings?: any;
|
|
2828
2839
|
constructor(settings?: any);
|
|
2829
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2840
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2830
2841
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2831
2842
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2832
2843
|
id: number;
|
|
@@ -2834,7 +2845,7 @@ declare class TariffsLiteStore {
|
|
|
2834
2845
|
};
|
|
2835
2846
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2836
2847
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2837
|
-
type: ElectricityMeterTypes;
|
|
2848
|
+
type: ElectricityMeterTypes$1;
|
|
2838
2849
|
T1: string | undefined;
|
|
2839
2850
|
T2: string | undefined;
|
|
2840
2851
|
T3: string | undefined;
|
|
@@ -3127,7 +3138,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3127
3138
|
name?: string
|
|
3128
3139
|
label?: string
|
|
3129
3140
|
hideName?: string
|
|
3130
|
-
resource: ResourceTypes
|
|
3141
|
+
resource: ResourceTypes$1
|
|
3131
3142
|
filter?: string
|
|
3132
3143
|
filterRequired?: boolean
|
|
3133
3144
|
settings?: any
|
|
@@ -3140,7 +3151,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3140
3151
|
}
|
|
3141
3152
|
|
|
3142
3153
|
type MeterFeaturesFieldsProps = {
|
|
3143
|
-
resource?: ResourceTypes
|
|
3154
|
+
resource?: ResourceTypes$1
|
|
3144
3155
|
replacements?: LiteMeterInterface[]
|
|
3145
3156
|
isNewResource?: boolean
|
|
3146
3157
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3154,7 +3165,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3154
3165
|
withNextCheck?: boolean
|
|
3155
3166
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3156
3167
|
handleMeterTypeChange?: (
|
|
3157
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3168
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3158
3169
|
) => void
|
|
3159
3170
|
settings?: any
|
|
3160
3171
|
disabledInitial?: boolean
|
|
@@ -3167,14 +3178,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3167
3178
|
initialValueT1?: number
|
|
3168
3179
|
initialValueT2?: number
|
|
3169
3180
|
initialValueT3?: number
|
|
3170
|
-
type?: MeterTypes
|
|
3171
|
-
resource?: ResourceTypes
|
|
3181
|
+
type?: MeterTypes$1
|
|
3182
|
+
resource?: ResourceTypes$1
|
|
3172
3183
|
withAutoSending?: boolean
|
|
3173
3184
|
}
|
|
3174
3185
|
|
|
3175
3186
|
type MeterFeaturesFormFields = {
|
|
3176
3187
|
tariff: TariffGroupAutocompleteFields | null
|
|
3177
|
-
company: CompanyAutocompleteFields | null
|
|
3188
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3178
3189
|
nextCheck: DateTime | null
|
|
3179
3190
|
lastValue?: number
|
|
3180
3191
|
lastValueT1?: number
|
|
@@ -3188,8 +3199,8 @@ type MeterFeaturesFormFields = {
|
|
|
3188
3199
|
} & BasicMeterFeaturesFormFields
|
|
3189
3200
|
|
|
3190
3201
|
type BasicMeterFieldsSettings = {
|
|
3191
|
-
resource?: ResourceTypes
|
|
3192
|
-
meterType?: MeterTypes
|
|
3202
|
+
resource?: ResourceTypes$1
|
|
3203
|
+
meterType?: MeterTypes$1
|
|
3193
3204
|
disabledInitial?: boolean
|
|
3194
3205
|
}
|
|
3195
3206
|
|
|
@@ -3221,10 +3232,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3221
3232
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3222
3233
|
|
|
3223
3234
|
type MeterTypeRadioGroupProps = {
|
|
3224
|
-
resource?: ResourceTypes
|
|
3235
|
+
resource?: ResourceTypes$1
|
|
3225
3236
|
form: UseFormReturn<any>
|
|
3226
3237
|
handleChange: (
|
|
3227
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3238
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3228
3239
|
) => void
|
|
3229
3240
|
disabled?: boolean
|
|
3230
3241
|
waterOptions?: OptionParams[]
|
|
@@ -3236,7 +3247,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3236
3247
|
type MeterFeaturesFormProps = {
|
|
3237
3248
|
formStore?: MultistepForm$1<any>
|
|
3238
3249
|
handleMeterTypeChange?: (
|
|
3239
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3250
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3240
3251
|
) => void
|
|
3241
3252
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3242
3253
|
|
|
@@ -3304,7 +3315,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3304
3315
|
startDate: undefined;
|
|
3305
3316
|
}, "">;
|
|
3306
3317
|
|
|
3307
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3318
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3308
3319
|
|
|
3309
3320
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3310
3321
|
|
|
@@ -3320,7 +3331,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3320
3331
|
|
|
3321
3332
|
type TariffReplacementFieldsProps = {
|
|
3322
3333
|
form: UseFormReturn<TariffCommonFields>
|
|
3323
|
-
resource: ResourceTypes
|
|
3334
|
+
resource: ResourceTypes$1
|
|
3324
3335
|
setReplaceable: (value: boolean) => void
|
|
3325
3336
|
settings?: any
|
|
3326
3337
|
}
|
|
@@ -3736,7 +3747,7 @@ type UploadPhotosButtonProps = {
|
|
|
3736
3747
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3737
3748
|
|
|
3738
3749
|
type UploadedImageProps = {
|
|
3739
|
-
image: FileStore
|
|
3750
|
+
image: FileStore$1
|
|
3740
3751
|
index: number
|
|
3741
3752
|
onClick: (index: number) => void
|
|
3742
3753
|
onDelete: (index: number) => void
|
|
@@ -3769,14 +3780,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3769
3780
|
};
|
|
3770
3781
|
declare type PartialMeterInfoFields = {
|
|
3771
3782
|
id: number;
|
|
3772
|
-
resource: ResourceTypes;
|
|
3773
|
-
type?: MeterTypes;
|
|
3783
|
+
resource: ResourceTypes$1;
|
|
3784
|
+
type?: MeterTypes$1;
|
|
3774
3785
|
number: string;
|
|
3775
|
-
images: FileStore[];
|
|
3786
|
+
images: FileStore$1[];
|
|
3776
3787
|
maxValue?: PartialMeterValuesFields;
|
|
3777
3788
|
values: PartialMeterValuesFields;
|
|
3778
3789
|
} & PartialMeterValuesFields;
|
|
3779
|
-
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>[];
|
|
3790
|
+
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>[];
|
|
3780
3791
|
|
|
3781
3792
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3782
3793
|
type: string | undefined;
|
|
@@ -3803,4 +3814,4 @@ type SignInPageProps = {
|
|
|
3803
3814
|
|
|
3804
3815
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3805
3816
|
|
|
3806
|
-
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 };
|
|
3817
|
+
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, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel, 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 };
|