kui-crm 0.0.595 → 0.0.597
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 +202 -200
- package/package.json +1 -1
- package/types/index.d.ts +147 -145
- package/utils/index.d.ts +2 -2
package/index.d.ts
CHANGED
|
@@ -186,21 +186,21 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
199
|
-
declare type PaymentStatuses = "paid" | "
|
|
199
|
+
declare type PaymentStatuses = "paid" | "due" | "overdue" | null;
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -409,7 +409,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
409
409
|
provider_type: string;
|
|
410
410
|
};
|
|
411
411
|
declare type DataTransferFormats = "online" | "offline";
|
|
412
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
413
413
|
declare type ApartmentResourceModel = {
|
|
414
414
|
id: number;
|
|
415
415
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -418,7 +418,7 @@ declare type ApartmentResourceModel = {
|
|
|
418
418
|
payer_code?: string;
|
|
419
419
|
meter_readings_day_from?: number;
|
|
420
420
|
meter_readings_day_to?: number;
|
|
421
|
-
receipt_example?: DocumentModel
|
|
421
|
+
receipt_example?: DocumentModel;
|
|
422
422
|
provider_auth_login?: string;
|
|
423
423
|
provider_auth_password?: string;
|
|
424
424
|
provider_url?: string;
|
|
@@ -444,8 +444,8 @@ declare type InspectionFillingParams = {
|
|
|
444
444
|
description?: string;
|
|
445
445
|
serial_code?: string;
|
|
446
446
|
amount?: number | string | null;
|
|
447
|
-
photos: ImageBodyRequest
|
|
448
|
-
instruction?: FileBodyRequest
|
|
447
|
+
photos: ImageBodyRequest[];
|
|
448
|
+
instruction?: FileBodyRequest | null;
|
|
449
449
|
was_missing?: boolean;
|
|
450
450
|
};
|
|
451
451
|
declare type InspectionMeterValueModel = {
|
|
@@ -461,7 +461,7 @@ declare type InspectionBasedOnModel = {
|
|
|
461
461
|
id: number;
|
|
462
462
|
inspection_type: InspectionTypes;
|
|
463
463
|
};
|
|
464
|
-
declare type VideoModel
|
|
464
|
+
declare type VideoModel = {
|
|
465
465
|
id: number;
|
|
466
466
|
video_url: string;
|
|
467
467
|
file_name?: string;
|
|
@@ -476,8 +476,8 @@ declare type InspectionRoomPhotoModel = {
|
|
|
476
476
|
uploaded: boolean;
|
|
477
477
|
purpose: InspectionRoomPhotoTypes;
|
|
478
478
|
comment?: string;
|
|
479
|
-
photos: ImageModel
|
|
480
|
-
videos: VideoModel
|
|
479
|
+
photos: ImageModel[];
|
|
480
|
+
videos: VideoModel[];
|
|
481
481
|
room_order_number?: number | null;
|
|
482
482
|
};
|
|
483
483
|
declare type InspectionConditionReasons = "already_signed" | "invoice_already_fixed_for_impairments" | "inspection_with_appraisal_or_impairments" | "impairments_already_fixed" | "offer_sended";
|
|
@@ -515,11 +515,11 @@ declare type FullInspectionCommonFields = {
|
|
|
515
515
|
filling: InspectionFillingModel[];
|
|
516
516
|
} & ApartmentModel;
|
|
517
517
|
declare type InspectionMeterCommonInfo = {
|
|
518
|
-
resource_type: ResourceTypes
|
|
519
|
-
passport: FileModel
|
|
520
|
-
meter_type: MeterTypes
|
|
518
|
+
resource_type: ResourceTypes;
|
|
519
|
+
passport: FileModel | null;
|
|
520
|
+
meter_type: MeterTypes;
|
|
521
521
|
operating_account: string;
|
|
522
|
-
photos: ImageModel
|
|
522
|
+
photos: ImageModel[];
|
|
523
523
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
524
524
|
declare type TransferInspectionMeterModel = {
|
|
525
525
|
values: InspectionMeterValueModel;
|
|
@@ -529,9 +529,9 @@ declare type TransferInspectionMeterModel = {
|
|
|
529
529
|
declare type TransferInspectionFields = {
|
|
530
530
|
transfer_type: TransferInspectionTypes;
|
|
531
531
|
meters: TransferInspectionMeterModel[];
|
|
532
|
-
inspection_document: DocumentModel
|
|
533
|
-
rental_contract_termination_document: DocumentModel
|
|
534
|
-
service_contract_termination_document: DocumentModel
|
|
532
|
+
inspection_document: DocumentModel | null;
|
|
533
|
+
rental_contract_termination_document: DocumentModel | null;
|
|
534
|
+
service_contract_termination_document: DocumentModel | null;
|
|
535
535
|
} & FullInspectionCommonFields;
|
|
536
536
|
declare type RegularInspectionFields = {
|
|
537
537
|
meters: TransferInspectionMeterModel[];
|
|
@@ -540,7 +540,7 @@ declare type RegularInspectionFields = {
|
|
|
540
540
|
declare type ComparableObjectModel = {
|
|
541
541
|
id: number;
|
|
542
542
|
advertisement_link: string;
|
|
543
|
-
advertisement_screenshot: ImageModel
|
|
543
|
+
advertisement_screenshot: ImageModel | null;
|
|
544
544
|
object_price: string;
|
|
545
545
|
key_object_differences: string;
|
|
546
546
|
};
|
|
@@ -548,7 +548,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
548
548
|
id: number;
|
|
549
549
|
source_name: string;
|
|
550
550
|
link: string;
|
|
551
|
-
screenshot: ImageModel
|
|
551
|
+
screenshot: ImageModel | null;
|
|
552
552
|
min_price: string;
|
|
553
553
|
max_price: string;
|
|
554
554
|
};
|
|
@@ -590,12 +590,13 @@ declare type AppraisalInspectionFields = {
|
|
|
590
590
|
declare type ImpairmentType = "damages" | "wear_tear";
|
|
591
591
|
declare type ImpairmentModel = {
|
|
592
592
|
id: number;
|
|
593
|
+
name: string;
|
|
593
594
|
impairment_type: ImpairmentType;
|
|
594
|
-
proof_file: DocumentModel
|
|
595
|
+
proof_file: DocumentModel | null;
|
|
595
596
|
price: number;
|
|
596
597
|
solution: string;
|
|
597
598
|
description: string;
|
|
598
|
-
photos: ImageModel
|
|
599
|
+
photos: ImageModel[];
|
|
599
600
|
item_link: string;
|
|
600
601
|
bill_line_name: string;
|
|
601
602
|
};
|
|
@@ -606,7 +607,7 @@ declare type InitialInspectionModelFields = {
|
|
|
606
607
|
used_resources: UsedResourcesModel;
|
|
607
608
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
608
609
|
declare type AppraisalRequestModelFields = {
|
|
609
|
-
floor_plan: DocumentModel
|
|
610
|
+
floor_plan: DocumentModel | null;
|
|
610
611
|
};
|
|
611
612
|
declare type InspectionModel = {
|
|
612
613
|
initial?: InitialInspectionModelFields;
|
|
@@ -640,7 +641,7 @@ declare type InventoryInspectionFields = {
|
|
|
640
641
|
allowed_smoking: boolean;
|
|
641
642
|
additional_terms: string;
|
|
642
643
|
resources: InspectionResourcesModel[];
|
|
643
|
-
inspection_document: DocumentModel
|
|
644
|
+
inspection_document: DocumentModel | null;
|
|
644
645
|
} & FullInspectionCommonFields;
|
|
645
646
|
declare type InventoryInspectionModel = {
|
|
646
647
|
inventory: InventoryInspectionFields;
|
|
@@ -692,10 +693,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
692
693
|
declare type PatchInspectionImageParams = {
|
|
693
694
|
id?: number;
|
|
694
695
|
order?: number;
|
|
695
|
-
} & Partial<ImageBodyRequest
|
|
696
|
+
} & Partial<ImageBodyRequest>;
|
|
696
697
|
declare type PatchInspectionVideoParams = {
|
|
697
698
|
id?: number;
|
|
698
|
-
} & Partial<VideoBodyRequest
|
|
699
|
+
} & Partial<VideoBodyRequest>;
|
|
699
700
|
declare type PatchRoomImagesParams = {
|
|
700
701
|
id?: number | null;
|
|
701
702
|
purpose: InspectionRoomPhotoTypes;
|
|
@@ -736,8 +737,8 @@ declare type InspectionFillingModel = {
|
|
|
736
737
|
description: string;
|
|
737
738
|
serial_code: string;
|
|
738
739
|
amount: number;
|
|
739
|
-
photos: ImageModel
|
|
740
|
-
instruction: DocumentModel
|
|
740
|
+
photos: ImageModel[];
|
|
741
|
+
instruction: DocumentModel;
|
|
741
742
|
is_absent: boolean;
|
|
742
743
|
previously_absent: boolean;
|
|
743
744
|
model: string;
|
|
@@ -819,7 +820,7 @@ declare type CommonMeterParams = {
|
|
|
819
820
|
company: CompanyLiteParams;
|
|
820
821
|
operating_account_number?: string | null;
|
|
821
822
|
company_is_administrative: boolean;
|
|
822
|
-
photos?: ImageModel
|
|
823
|
+
photos?: ImageModel[];
|
|
823
824
|
auto_sending: boolean;
|
|
824
825
|
no_tariff: boolean;
|
|
825
826
|
is_avg: boolean;
|
|
@@ -831,15 +832,15 @@ declare type ElectricityMeterValues = {
|
|
|
831
832
|
T3?: MeterTariffModel;
|
|
832
833
|
};
|
|
833
834
|
declare type WaterMeterParams = {
|
|
834
|
-
type: WaterMeterTypes
|
|
835
|
+
type: WaterMeterTypes;
|
|
835
836
|
tariff: SingleCounterTariffModel;
|
|
836
837
|
} & CommonMeterParams & MeterTariffModel;
|
|
837
838
|
declare type SingleMeterParams = {
|
|
838
|
-
type?: WaterMeterTypes
|
|
839
|
+
type?: WaterMeterTypes;
|
|
839
840
|
tariff: SingleCounterTariffModel;
|
|
840
841
|
} & CommonMeterParams & MeterTariffModel;
|
|
841
842
|
declare type ElectricityMeterParams = {
|
|
842
|
-
type: ElectricityMeterTypes
|
|
843
|
+
type: ElectricityMeterTypes;
|
|
843
844
|
values: ElectricityMeterValues;
|
|
844
845
|
tariff: ElectricityMeterTariffModel;
|
|
845
846
|
overall_value?: number;
|
|
@@ -958,6 +959,7 @@ declare type ServiceContractListModel = {
|
|
|
958
959
|
agent_report_payment_status: PaymentStatuses;
|
|
959
960
|
state: ServiceContractStatusStateModel;
|
|
960
961
|
rental_type: RentalTypes;
|
|
962
|
+
start_date: string;
|
|
961
963
|
};
|
|
962
964
|
|
|
963
965
|
declare type RoommateParams = {};
|
|
@@ -1086,7 +1088,7 @@ declare type CountryParams = {
|
|
|
1086
1088
|
code: string;
|
|
1087
1089
|
} & CatalogItemParams;
|
|
1088
1090
|
|
|
1089
|
-
type FileWithVisibility
|
|
1091
|
+
type FileWithVisibility = {
|
|
1090
1092
|
id?: number
|
|
1091
1093
|
file: File | null
|
|
1092
1094
|
tenant: boolean
|
|
@@ -1095,8 +1097,8 @@ type FileWithVisibility$1 = {
|
|
|
1095
1097
|
url: string
|
|
1096
1098
|
}
|
|
1097
1099
|
|
|
1098
|
-
type InputFileWithVisibilityFields
|
|
1099
|
-
| FileWithVisibility
|
|
1100
|
+
type InputFileWithVisibilityFields =
|
|
1101
|
+
| FileWithVisibility
|
|
1100
1102
|
| DocumentWithVisibility
|
|
1101
1103
|
| null
|
|
1102
1104
|
| undefined
|
|
@@ -1126,7 +1128,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1126
1128
|
}
|
|
1127
1129
|
|
|
1128
1130
|
type ChangeReasonFormFields = {
|
|
1129
|
-
reason: InputFileWithVisibilityFields
|
|
1131
|
+
reason: InputFileWithVisibilityFields
|
|
1130
1132
|
comment?: string
|
|
1131
1133
|
}
|
|
1132
1134
|
|
|
@@ -1141,13 +1143,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1141
1143
|
settings?: any
|
|
1142
1144
|
} & InputWithControllerProps<TFormValues>
|
|
1143
1145
|
|
|
1144
|
-
type CompanyAutocompleteFields
|
|
1146
|
+
type CompanyAutocompleteFields = {
|
|
1145
1147
|
id: number
|
|
1146
1148
|
name: string
|
|
1147
1149
|
logo?: string | null
|
|
1148
1150
|
}
|
|
1149
1151
|
|
|
1150
|
-
declare class FileStore
|
|
1152
|
+
declare class FileStore implements FileStoreInterface {
|
|
1151
1153
|
id: number | null;
|
|
1152
1154
|
index?: number | null;
|
|
1153
1155
|
name: string;
|
|
@@ -1178,13 +1180,13 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1178
1180
|
setIndex: (index: number) => void;
|
|
1179
1181
|
get title(): string;
|
|
1180
1182
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1181
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1182
|
-
static initFromFileModel: (file: FileModel
|
|
1183
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1184
|
-
static initFromImageModel: (file: ImageModel
|
|
1185
|
-
static initFromVideoModel: (image: VideoModel
|
|
1186
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1187
|
-
static initFromFileStore: (file: FileStore
|
|
1183
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1184
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1185
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1186
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1187
|
+
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1188
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1189
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1188
1190
|
}
|
|
1189
1191
|
|
|
1190
1192
|
declare type ImageParams = {
|
|
@@ -1219,8 +1221,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1219
1221
|
delete: () => Promise<void>;
|
|
1220
1222
|
get extension(): string;
|
|
1221
1223
|
get title(): string;
|
|
1222
|
-
static initFromImageModel: (image: ImageModel
|
|
1223
|
-
static initFromVideoModel: (image: VideoModel
|
|
1224
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1225
|
+
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1224
1226
|
}
|
|
1225
1227
|
|
|
1226
1228
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1345,7 +1347,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1345
1347
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1346
1348
|
payerCode?: string;
|
|
1347
1349
|
communalServicesAccount?: string;
|
|
1348
|
-
company?: CompanyAutocompleteFields
|
|
1350
|
+
company?: CompanyAutocompleteFields | null;
|
|
1349
1351
|
} & ChangeReasonFormFields;
|
|
1350
1352
|
declare type ApartmentOverviewInfoFields = {
|
|
1351
1353
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1368,14 +1370,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1368
1370
|
} & ApartmentPaymentInfoParams;
|
|
1369
1371
|
declare type InspectionMeterInfoParams = {
|
|
1370
1372
|
id: number;
|
|
1371
|
-
resource: ResourceTypes
|
|
1372
|
-
type?: MeterTypes
|
|
1373
|
+
resource: ResourceTypes;
|
|
1374
|
+
type?: MeterTypes;
|
|
1373
1375
|
number: string;
|
|
1374
1376
|
startDate: DateTime | null;
|
|
1375
1377
|
company: CompanyLiteParams;
|
|
1376
1378
|
operationalAccountNumber?: string | null;
|
|
1377
1379
|
tariff: EntityLinkParams | null;
|
|
1378
|
-
passportFile: FileStore
|
|
1380
|
+
passportFile: FileStore | null;
|
|
1379
1381
|
initialValue?: number;
|
|
1380
1382
|
lastValue?: number;
|
|
1381
1383
|
initialValueT1?: number;
|
|
@@ -1397,8 +1399,8 @@ declare type ValuesParams = {
|
|
|
1397
1399
|
};
|
|
1398
1400
|
declare type PartialMeterInfoParams = {
|
|
1399
1401
|
id: number;
|
|
1400
|
-
type: MeterTypes
|
|
1401
|
-
resource: ResourceTypes
|
|
1402
|
+
type: MeterTypes;
|
|
1403
|
+
resource: ResourceTypes;
|
|
1402
1404
|
number: string;
|
|
1403
1405
|
values: ValuesParams;
|
|
1404
1406
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1412,7 +1414,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1412
1414
|
declare type ComparableObjectParams = {
|
|
1413
1415
|
id: number;
|
|
1414
1416
|
link: string;
|
|
1415
|
-
screenshot: FileStore
|
|
1417
|
+
screenshot: FileStore | null;
|
|
1416
1418
|
price: number;
|
|
1417
1419
|
differences: string;
|
|
1418
1420
|
};
|
|
@@ -1420,7 +1422,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1420
1422
|
id: number;
|
|
1421
1423
|
dataSourceName: string;
|
|
1422
1424
|
link: string;
|
|
1423
|
-
screenshot: FileStore
|
|
1425
|
+
screenshot: FileStore | null;
|
|
1424
1426
|
minPrice: number;
|
|
1425
1427
|
maxPrice: number;
|
|
1426
1428
|
};
|
|
@@ -1445,8 +1447,8 @@ declare type FillingInfoFormFields = {
|
|
|
1445
1447
|
name?: string;
|
|
1446
1448
|
description?: string;
|
|
1447
1449
|
type?: ApartmentFillingVariants | null;
|
|
1448
|
-
instruction?: InputFileWithVisibilityFields
|
|
1449
|
-
tempImages?: ImageBodyRequest
|
|
1450
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1451
|
+
tempImages?: ImageBodyRequest[];
|
|
1450
1452
|
};
|
|
1451
1453
|
|
|
1452
1454
|
declare type FillingTagParams = {
|
|
@@ -1461,7 +1463,7 @@ declare type FillingParams = {
|
|
|
1461
1463
|
images?: (ImageStore | UploadFileParams)[];
|
|
1462
1464
|
serialNumber?: string;
|
|
1463
1465
|
numberOfSubjects?: number | string | null;
|
|
1464
|
-
instruction?: InputFileWithVisibilityFields
|
|
1466
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1465
1467
|
type?: ApartmentFillingVariants;
|
|
1466
1468
|
loader?: Loader;
|
|
1467
1469
|
};
|
|
@@ -1473,7 +1475,7 @@ declare type FillingFullParams = {
|
|
|
1473
1475
|
images?: (ImageStore | UploadFileParams)[];
|
|
1474
1476
|
serialNumber?: string;
|
|
1475
1477
|
numberOfSubjects?: number | string | null;
|
|
1476
|
-
instruction?: InputFileWithVisibilityFields
|
|
1478
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1477
1479
|
type?: ApartmentFillingVariants;
|
|
1478
1480
|
loader?: Loader;
|
|
1479
1481
|
check?: boolean | null;
|
|
@@ -1492,31 +1494,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1492
1494
|
name: string;
|
|
1493
1495
|
};
|
|
1494
1496
|
|
|
1495
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1496
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1497
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1498
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1499
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1500
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1501
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1502
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1503
|
-
declare type FileBodyRequest = {
|
|
1497
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1498
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1499
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1500
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1501
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1502
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1503
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1504
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1505
|
+
declare type FileBodyRequest$1 = {
|
|
1504
1506
|
temp_file_id?: number;
|
|
1505
1507
|
name: string;
|
|
1506
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1508
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1507
1509
|
url?: string;
|
|
1508
1510
|
};
|
|
1509
|
-
declare type ImageBodyRequest = {
|
|
1511
|
+
declare type ImageBodyRequest$1 = {
|
|
1510
1512
|
temp_file_id: number;
|
|
1511
1513
|
image_name: string;
|
|
1512
1514
|
url: string;
|
|
1513
1515
|
};
|
|
1514
|
-
declare type VideoBodyRequest = {
|
|
1516
|
+
declare type VideoBodyRequest$1 = {
|
|
1515
1517
|
temp_file_id: number;
|
|
1516
1518
|
file_name: string;
|
|
1517
1519
|
url: string;
|
|
1518
1520
|
};
|
|
1519
|
-
declare type ImageModel = {
|
|
1521
|
+
declare type ImageModel$1 = {
|
|
1520
1522
|
id: number;
|
|
1521
1523
|
image_name?: string;
|
|
1522
1524
|
image_url?: string;
|
|
@@ -1525,22 +1527,22 @@ declare type ImageModel = {
|
|
|
1525
1527
|
image_large_url: string;
|
|
1526
1528
|
size: number;
|
|
1527
1529
|
};
|
|
1528
|
-
declare type FileModel = {
|
|
1530
|
+
declare type FileModel$1 = {
|
|
1529
1531
|
id: number;
|
|
1530
1532
|
name: string;
|
|
1531
1533
|
size: number;
|
|
1532
1534
|
url: string;
|
|
1533
1535
|
};
|
|
1534
|
-
declare type DocumentModel = {
|
|
1536
|
+
declare type DocumentModel$1 = {
|
|
1535
1537
|
pk: number;
|
|
1536
1538
|
name: string;
|
|
1537
1539
|
created?: string;
|
|
1538
1540
|
attachment: string;
|
|
1539
1541
|
size: number;
|
|
1540
1542
|
uploaded_by?: string | null;
|
|
1541
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1543
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1542
1544
|
};
|
|
1543
|
-
declare type VideoModel = {
|
|
1545
|
+
declare type VideoModel$1 = {
|
|
1544
1546
|
id: number;
|
|
1545
1547
|
video_url: string;
|
|
1546
1548
|
file_name?: string;
|
|
@@ -1551,7 +1553,7 @@ declare type VideoModel = {
|
|
|
1551
1553
|
resolution?: string;
|
|
1552
1554
|
};
|
|
1553
1555
|
|
|
1554
|
-
type FileWithVisibility = {
|
|
1556
|
+
type FileWithVisibility$1 = {
|
|
1555
1557
|
id?: number
|
|
1556
1558
|
file: File | null
|
|
1557
1559
|
tenant: boolean
|
|
@@ -1560,19 +1562,19 @@ type FileWithVisibility = {
|
|
|
1560
1562
|
url: string
|
|
1561
1563
|
}
|
|
1562
1564
|
|
|
1563
|
-
type InputFileWithVisibilityFields =
|
|
1564
|
-
| FileWithVisibility
|
|
1565
|
+
type InputFileWithVisibilityFields$1 =
|
|
1566
|
+
| FileWithVisibility$1
|
|
1565
1567
|
| DocumentWithVisibility$1
|
|
1566
1568
|
| null
|
|
1567
1569
|
| undefined
|
|
1568
1570
|
|
|
1569
|
-
type CompanyAutocompleteFields = {
|
|
1571
|
+
type CompanyAutocompleteFields$1 = {
|
|
1570
1572
|
id: number
|
|
1571
1573
|
name: string
|
|
1572
1574
|
logo?: string | null
|
|
1573
1575
|
}
|
|
1574
1576
|
|
|
1575
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1577
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1576
1578
|
id: number | null;
|
|
1577
1579
|
index?: number | null;
|
|
1578
1580
|
name: string;
|
|
@@ -1603,22 +1605,22 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1603
1605
|
setIndex: (index: number) => void;
|
|
1604
1606
|
get title(): string;
|
|
1605
1607
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1606
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1607
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1608
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1609
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1610
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1611
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1612
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1608
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1609
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1610
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1611
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1612
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1613
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1614
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1613
1615
|
}
|
|
1614
1616
|
|
|
1615
1617
|
type PartialPayerFields$1 = {
|
|
1616
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1617
|
-
mainPayer?: ResourcePaymentRoles
|
|
1618
|
-
refundFrom?: ResourcePaymentRoles
|
|
1619
|
-
partType?: UnitOfPaymentTypes | null
|
|
1618
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1619
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1620
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1621
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1620
1622
|
refundValue?: number | string | null
|
|
1621
|
-
utilityType: UtilityTypes
|
|
1623
|
+
utilityType: UtilityTypes$1
|
|
1622
1624
|
}
|
|
1623
1625
|
|
|
1624
1626
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1650,13 +1652,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1650
1652
|
visibility?: DocumentVisibilityVariants$1;
|
|
1651
1653
|
extension: string;
|
|
1652
1654
|
};
|
|
1653
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1655
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1654
1656
|
declare type FileStoreParams$1 = {
|
|
1655
1657
|
id?: number | null;
|
|
1656
1658
|
url?: string;
|
|
1657
1659
|
index?: number | string | null;
|
|
1658
1660
|
createdBy?: string | null;
|
|
1659
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1661
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1660
1662
|
name?: string;
|
|
1661
1663
|
date?: string | null;
|
|
1662
1664
|
size?: number | null;
|
|
@@ -1684,14 +1686,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1684
1686
|
initialValueT1?: number
|
|
1685
1687
|
initialValueT2?: number
|
|
1686
1688
|
initialValueT3?: number
|
|
1687
|
-
type?: MeterTypes
|
|
1688
|
-
resource?: ResourceTypes
|
|
1689
|
+
type?: MeterTypes$1
|
|
1690
|
+
resource?: ResourceTypes$1
|
|
1689
1691
|
withAutoSending?: boolean
|
|
1690
1692
|
}
|
|
1691
1693
|
|
|
1692
1694
|
type MeterFeaturesFormFields$1 = {
|
|
1693
1695
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1694
|
-
company: CompanyAutocompleteFields | null
|
|
1696
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1695
1697
|
nextCheck: DateTime | null
|
|
1696
1698
|
lastValue?: number
|
|
1697
1699
|
lastValueT1?: number
|
|
@@ -1715,9 +1717,9 @@ declare type ApartmentMeterValues = {
|
|
|
1715
1717
|
} & MeterValues;
|
|
1716
1718
|
declare type InspectionMeterFields = {
|
|
1717
1719
|
id?: number;
|
|
1718
|
-
resource: ResourceTypes;
|
|
1719
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1720
|
-
images: FileStore[];
|
|
1720
|
+
resource: ResourceTypes$1;
|
|
1721
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1722
|
+
images: FileStore$1[];
|
|
1721
1723
|
} & MeterFeaturesFormFields$1;
|
|
1722
1724
|
|
|
1723
1725
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1732,7 +1734,7 @@ type PartialPayerProps<T> = {
|
|
|
1732
1734
|
title: string
|
|
1733
1735
|
name: string
|
|
1734
1736
|
form: UseFormReturn<T>
|
|
1735
|
-
utilityType: UtilityTypes
|
|
1737
|
+
utilityType: UtilityTypes
|
|
1736
1738
|
fieldsVariant?: PartialPayerVariants
|
|
1737
1739
|
settings?: ObjectType
|
|
1738
1740
|
disabled?: boolean
|
|
@@ -1740,12 +1742,12 @@ type PartialPayerProps<T> = {
|
|
|
1740
1742
|
}
|
|
1741
1743
|
|
|
1742
1744
|
type PartialPayerFields = {
|
|
1743
|
-
payer?: ResourcePaymentRoles
|
|
1744
|
-
mainPayer?: ResourcePaymentRoles
|
|
1745
|
-
refundFrom?: ResourcePaymentRoles
|
|
1746
|
-
partType?: UnitOfPaymentTypes
|
|
1745
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1746
|
+
mainPayer?: ResourcePaymentRoles
|
|
1747
|
+
refundFrom?: ResourcePaymentRoles
|
|
1748
|
+
partType?: UnitOfPaymentTypes | null
|
|
1747
1749
|
refundValue?: number | string | null
|
|
1748
|
-
utilityType: UtilityTypes
|
|
1750
|
+
utilityType: UtilityTypes
|
|
1749
1751
|
}
|
|
1750
1752
|
|
|
1751
1753
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1829,15 +1831,15 @@ declare type ResourceAccessParams = {
|
|
|
1829
1831
|
description?: string;
|
|
1830
1832
|
appName?: string;
|
|
1831
1833
|
};
|
|
1832
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1834
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1833
1835
|
declare type ApartmentResourceCompanyDetails = {
|
|
1834
|
-
company: CompanyAutocompleteFields
|
|
1836
|
+
company: CompanyAutocompleteFields | null;
|
|
1835
1837
|
operationalAccountNumber: string;
|
|
1836
1838
|
payerCode: string;
|
|
1837
1839
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1838
1840
|
access: ResourceAccessParams;
|
|
1839
1841
|
sampleReceiptLink: string;
|
|
1840
|
-
sampleReceipt?: InputFileWithVisibilityFields
|
|
1842
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1841
1843
|
};
|
|
1842
1844
|
declare type ApartmentResourceInterface = {
|
|
1843
1845
|
type: ApartmentResourceTypes;
|
|
@@ -1874,15 +1876,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1874
1876
|
loader: Loader;
|
|
1875
1877
|
};
|
|
1876
1878
|
declare type PostDocumentsResponse = {
|
|
1877
|
-
documents: DocumentModel
|
|
1879
|
+
documents: DocumentModel[];
|
|
1878
1880
|
};
|
|
1879
1881
|
declare type DocumentAgentInterface = {
|
|
1880
1882
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1881
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1882
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1883
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1884
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1883
1885
|
};
|
|
1884
1886
|
declare type DocumentsAgentInterface = {
|
|
1885
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1887
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1886
1888
|
} & DocumentAgentInterface;
|
|
1887
1889
|
|
|
1888
1890
|
declare type MetroLineParams = {
|
|
@@ -1938,7 +1940,7 @@ declare type ApartmentContractTypes = "service_contract" | "renter_contract";
|
|
|
1938
1940
|
declare type GasTypes = "not_have" | "stove" | "stove_and_heater";
|
|
1939
1941
|
declare type WallMaterials = "brick" | "panel" | "wood" | "block" | "stone";
|
|
1940
1942
|
declare type HouseTypes = "ST" | "MB" | "M" | "BR" | "P" | "W" | "BL" | "WP" | "apart_hotel" | "apartment" | "townhouse" | "private_residence";
|
|
1941
|
-
declare type RoomTypes = "
|
|
1943
|
+
declare type RoomTypes = "apartment" | "flat" | "commercial" | "garage" | "car_space";
|
|
1942
1944
|
declare type OverlapTypes = "wood" | "stone" | "brick" | "reinforced_concrete" | "metal" | "combined";
|
|
1943
1945
|
declare type RoomModel = {
|
|
1944
1946
|
id: number;
|
|
@@ -1953,7 +1955,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1953
1955
|
};
|
|
1954
1956
|
declare type ApartmentDocumentModel = {
|
|
1955
1957
|
id: number;
|
|
1956
|
-
document: DocumentModel
|
|
1958
|
+
document: DocumentModel;
|
|
1957
1959
|
expiration_date: string;
|
|
1958
1960
|
start_date: string;
|
|
1959
1961
|
number: string;
|
|
@@ -1966,7 +1968,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1966
1968
|
tariff?: TariffLinkModel;
|
|
1967
1969
|
activation_date?: string;
|
|
1968
1970
|
check_date?: string;
|
|
1969
|
-
type?: ElectricityMeterTypes
|
|
1971
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1970
1972
|
apartment: ApartmentLinkModel;
|
|
1971
1973
|
company: CompanyLiteParams;
|
|
1972
1974
|
operating_account_number?: string | null;
|
|
@@ -2087,7 +2089,7 @@ declare type ApartmentModel = {
|
|
|
2087
2089
|
owner_id: number;
|
|
2088
2090
|
metro_stations: ApartmentMetroParams[];
|
|
2089
2091
|
rental_status: RentalStatuses;
|
|
2090
|
-
main_image: ImageModel
|
|
2092
|
+
main_image: ImageModel;
|
|
2091
2093
|
tv_type: TVTypes | null;
|
|
2092
2094
|
inspection: ApartmentInspectionModel;
|
|
2093
2095
|
distance_to_center_kilometers: number | null;
|
|
@@ -2114,7 +2116,7 @@ declare type ApartmentLiteModel = {
|
|
|
2114
2116
|
renter: LiteUserModel | null;
|
|
2115
2117
|
rental_status: RentalStatuses;
|
|
2116
2118
|
renter_payment_status: RentalPaymentStatuses;
|
|
2117
|
-
main_image: ImageModel
|
|
2119
|
+
main_image: ImageModel;
|
|
2118
2120
|
service_contract?: ServiceContractLiteModel;
|
|
2119
2121
|
is_imported_from_old_crm?: boolean;
|
|
2120
2122
|
max_electricity_counters?: number | null;
|
|
@@ -2160,7 +2162,7 @@ declare type ObjectForMapModel = {
|
|
|
2160
2162
|
apartment_number: string;
|
|
2161
2163
|
address: string;
|
|
2162
2164
|
geolocation: LatLonParams;
|
|
2163
|
-
main_image: ImageModel
|
|
2165
|
+
main_image: ImageModel;
|
|
2164
2166
|
renter: ClientLiteModel | null;
|
|
2165
2167
|
owner: ClientLiteModel;
|
|
2166
2168
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2192,13 +2194,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2192
2194
|
agent: DocumentAgentInterface;
|
|
2193
2195
|
loader: Loader;
|
|
2194
2196
|
settings?: any;
|
|
2195
|
-
constructor(document: DocumentModel
|
|
2197
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2196
2198
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2197
|
-
updateDocument: (res: DocumentModel
|
|
2199
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2198
2200
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2199
2201
|
get extension(): string;
|
|
2200
2202
|
get title(): string;
|
|
2201
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2203
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2202
2204
|
}
|
|
2203
2205
|
|
|
2204
2206
|
type InputTypes =
|
|
@@ -2258,13 +2260,13 @@ declare type FileParams = {
|
|
|
2258
2260
|
size?: number | null;
|
|
2259
2261
|
file: File;
|
|
2260
2262
|
};
|
|
2261
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2263
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2262
2264
|
declare type FileStoreParams = {
|
|
2263
2265
|
id?: number | null;
|
|
2264
2266
|
url?: string;
|
|
2265
2267
|
index?: number | string | null;
|
|
2266
2268
|
createdBy?: string | null;
|
|
2267
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2269
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2268
2270
|
name?: string;
|
|
2269
2271
|
date?: string | null;
|
|
2270
2272
|
size?: number | null;
|
|
@@ -2429,8 +2431,8 @@ declare const FillingTagsAgent: {
|
|
|
2429
2431
|
};
|
|
2430
2432
|
|
|
2431
2433
|
declare const TariffsAgent: {
|
|
2432
|
-
all: (tariff: ResourceTypes
|
|
2433
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2434
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2435
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2434
2436
|
};
|
|
2435
2437
|
|
|
2436
2438
|
type SignInFormFields = {
|
|
@@ -2449,8 +2451,8 @@ declare const ApartmentsAgent: {
|
|
|
2449
2451
|
};
|
|
2450
2452
|
|
|
2451
2453
|
declare const ApartmentMetersAgent: {
|
|
2452
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2453
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2454
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2455
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2454
2456
|
};
|
|
2455
2457
|
|
|
2456
2458
|
declare const requests: {
|
|
@@ -2474,7 +2476,7 @@ declare const meterUnitLabel: {
|
|
|
2474
2476
|
electricity: string;
|
|
2475
2477
|
};
|
|
2476
2478
|
|
|
2477
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2479
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2478
2480
|
|
|
2479
2481
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2480
2482
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2490,34 +2492,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2490
2492
|
}, "">;
|
|
2491
2493
|
|
|
2492
2494
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2493
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2495
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2494
2496
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2495
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2497
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2496
2498
|
temp_file_id: number;
|
|
2497
2499
|
name: string;
|
|
2498
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2500
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2499
2501
|
url: string;
|
|
2500
2502
|
} | null;
|
|
2501
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2502
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2503
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2503
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2504
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2505
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2504
2506
|
name: string;
|
|
2505
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2507
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2506
2508
|
} | null;
|
|
2507
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2509
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2508
2510
|
name: string;
|
|
2509
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2511
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2510
2512
|
} | null>;
|
|
2511
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2512
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2513
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2514
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2515
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2516
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2517
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2518
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2519
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2520
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2513
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2514
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2515
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2516
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2517
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2518
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2519
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2520
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2521
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2522
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2521
2523
|
|
|
2522
2524
|
declare const matchesAPISubjectRoles: {
|
|
2523
2525
|
maroom: string;
|
|
@@ -2610,16 +2612,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2610
2612
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2611
2613
|
|
|
2612
2614
|
declare class FilesStore {
|
|
2613
|
-
files: FileStore
|
|
2615
|
+
files: FileStore[];
|
|
2614
2616
|
variant: FileVariant;
|
|
2615
2617
|
constructor(variant: FileVariant);
|
|
2616
|
-
addFile: (newFile: FileStore
|
|
2618
|
+
addFile: (newFile: FileStore) => void;
|
|
2617
2619
|
removeFile: (index: number) => void;
|
|
2618
|
-
setFiles: (files: FileStore
|
|
2620
|
+
setFiles: (files: FileStore[]) => void;
|
|
2619
2621
|
uploadFiles: () => Promise<void>;
|
|
2620
|
-
get uploadedData(): (FileBodyRequest
|
|
2622
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2621
2623
|
get uploadedAllFiles(): boolean;
|
|
2622
|
-
get notUploadedFiles(): FileStore
|
|
2624
|
+
get notUploadedFiles(): FileStore[];
|
|
2623
2625
|
get isUploading(): boolean;
|
|
2624
2626
|
get videoLength(): number;
|
|
2625
2627
|
get nonVideoLength(): number;
|
|
@@ -2641,7 +2643,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2641
2643
|
messages?: UploadMediaMessages;
|
|
2642
2644
|
withoutFilesStore?: boolean;
|
|
2643
2645
|
};
|
|
2644
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2646
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2645
2647
|
|
|
2646
2648
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2647
2649
|
onSearchItem: (value: string) => void;
|
|
@@ -2813,11 +2815,11 @@ type DistrictAutocompleteFields = {
|
|
|
2813
2815
|
type ReplaceableTariffFields = {
|
|
2814
2816
|
name: string
|
|
2815
2817
|
id?: number
|
|
2816
|
-
type?: ResourceTypes
|
|
2818
|
+
type?: ResourceTypes
|
|
2817
2819
|
}
|
|
2818
2820
|
|
|
2819
2821
|
type TariffCommonFields = {
|
|
2820
|
-
resourceType: ResourceTypes
|
|
2822
|
+
resourceType: ResourceTypes
|
|
2821
2823
|
name: string
|
|
2822
2824
|
startDate: DateTime
|
|
2823
2825
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2829,7 +2831,7 @@ type TariffCommonFields = {
|
|
|
2829
2831
|
}
|
|
2830
2832
|
|
|
2831
2833
|
type ElectricityTariffCreationFormFields = {
|
|
2832
|
-
type: ElectricityMeterTypes
|
|
2834
|
+
type: ElectricityMeterTypes
|
|
2833
2835
|
isOverallConsumption: boolean
|
|
2834
2836
|
T1?: number
|
|
2835
2837
|
T2?: number
|
|
@@ -2850,7 +2852,7 @@ type TariffCreationFormProps = {
|
|
|
2850
2852
|
handleClose: () => void
|
|
2851
2853
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2852
2854
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2853
|
-
defaultResource: ResourceTypes
|
|
2855
|
+
defaultResource: ResourceTypes
|
|
2854
2856
|
settings?: any
|
|
2855
2857
|
}
|
|
2856
2858
|
|
|
@@ -2895,7 +2897,7 @@ declare class TariffsLiteStore {
|
|
|
2895
2897
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2896
2898
|
settings?: any;
|
|
2897
2899
|
constructor(settings?: any);
|
|
2898
|
-
fetchAll: (resource: ResourceTypes
|
|
2900
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2899
2901
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2900
2902
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2901
2903
|
id: number;
|
|
@@ -2903,7 +2905,7 @@ declare class TariffsLiteStore {
|
|
|
2903
2905
|
};
|
|
2904
2906
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2905
2907
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2906
|
-
type: ElectricityMeterTypes
|
|
2908
|
+
type: ElectricityMeterTypes;
|
|
2907
2909
|
T1: string | undefined;
|
|
2908
2910
|
T2: string | undefined;
|
|
2909
2911
|
T3: string | undefined;
|
|
@@ -3197,7 +3199,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3197
3199
|
name?: string
|
|
3198
3200
|
label?: string
|
|
3199
3201
|
hideName?: string
|
|
3200
|
-
resource: ResourceTypes
|
|
3202
|
+
resource: ResourceTypes
|
|
3201
3203
|
filter?: string
|
|
3202
3204
|
filterRequired?: boolean
|
|
3203
3205
|
settings?: any
|
|
@@ -3210,7 +3212,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3210
3212
|
}
|
|
3211
3213
|
|
|
3212
3214
|
type MeterFeaturesFieldsProps = {
|
|
3213
|
-
resource?: ResourceTypes
|
|
3215
|
+
resource?: ResourceTypes
|
|
3214
3216
|
replacements?: LiteMeterInterface[]
|
|
3215
3217
|
isNewResource?: boolean
|
|
3216
3218
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3224,7 +3226,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3224
3226
|
withNextCheck?: boolean
|
|
3225
3227
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3226
3228
|
handleMeterTypeChange?: (
|
|
3227
|
-
meterType: ElectricityMeterTypes
|
|
3229
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3228
3230
|
) => void
|
|
3229
3231
|
settings?: any
|
|
3230
3232
|
disabledInitial?: boolean
|
|
@@ -3237,14 +3239,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3237
3239
|
initialValueT1?: number
|
|
3238
3240
|
initialValueT2?: number
|
|
3239
3241
|
initialValueT3?: number
|
|
3240
|
-
type?: MeterTypes
|
|
3241
|
-
resource?: ResourceTypes
|
|
3242
|
+
type?: MeterTypes
|
|
3243
|
+
resource?: ResourceTypes
|
|
3242
3244
|
withAutoSending?: boolean
|
|
3243
3245
|
}
|
|
3244
3246
|
|
|
3245
3247
|
type MeterFeaturesFormFields = {
|
|
3246
3248
|
tariff: TariffGroupAutocompleteFields | null
|
|
3247
|
-
company: CompanyAutocompleteFields
|
|
3249
|
+
company: CompanyAutocompleteFields | null
|
|
3248
3250
|
nextCheck: DateTime | null
|
|
3249
3251
|
lastValue?: number
|
|
3250
3252
|
lastValueT1?: number
|
|
@@ -3258,8 +3260,8 @@ type MeterFeaturesFormFields = {
|
|
|
3258
3260
|
} & BasicMeterFeaturesFormFields
|
|
3259
3261
|
|
|
3260
3262
|
type BasicMeterFieldsSettings = {
|
|
3261
|
-
resource?: ResourceTypes
|
|
3262
|
-
meterType?: MeterTypes
|
|
3263
|
+
resource?: ResourceTypes
|
|
3264
|
+
meterType?: MeterTypes
|
|
3263
3265
|
disabledInitial?: boolean
|
|
3264
3266
|
}
|
|
3265
3267
|
|
|
@@ -3291,10 +3293,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3291
3293
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3292
3294
|
|
|
3293
3295
|
type MeterTypeRadioGroupProps = {
|
|
3294
|
-
resource?: ResourceTypes
|
|
3296
|
+
resource?: ResourceTypes
|
|
3295
3297
|
form: UseFormReturn<any>
|
|
3296
3298
|
handleChange: (
|
|
3297
|
-
meterType: ElectricityMeterTypes
|
|
3299
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3298
3300
|
) => void
|
|
3299
3301
|
disabled?: boolean
|
|
3300
3302
|
waterOptions?: OptionParams[]
|
|
@@ -3306,7 +3308,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3306
3308
|
type MeterFeaturesFormProps = {
|
|
3307
3309
|
formStore?: MultistepForm$1<any>
|
|
3308
3310
|
handleMeterTypeChange?: (
|
|
3309
|
-
meterType: ElectricityMeterTypes
|
|
3311
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3310
3312
|
) => void
|
|
3311
3313
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3312
3314
|
|
|
@@ -3374,7 +3376,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3374
3376
|
startDate: undefined;
|
|
3375
3377
|
}, "">;
|
|
3376
3378
|
|
|
3377
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3379
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3378
3380
|
|
|
3379
3381
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3380
3382
|
|
|
@@ -3390,7 +3392,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3390
3392
|
|
|
3391
3393
|
type TariffReplacementFieldsProps = {
|
|
3392
3394
|
form: UseFormReturn<TariffCommonFields>
|
|
3393
|
-
resource: ResourceTypes
|
|
3395
|
+
resource: ResourceTypes
|
|
3394
3396
|
setReplaceable: (value: boolean) => void
|
|
3395
3397
|
settings?: any
|
|
3396
3398
|
}
|
|
@@ -3806,7 +3808,7 @@ type UploadPhotosButtonProps = {
|
|
|
3806
3808
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3807
3809
|
|
|
3808
3810
|
type UploadedImageProps = {
|
|
3809
|
-
image: FileStore
|
|
3811
|
+
image: FileStore
|
|
3810
3812
|
index: number
|
|
3811
3813
|
onClick: (index: number) => void
|
|
3812
3814
|
onDelete: (index: number) => void
|
|
@@ -3839,15 +3841,15 @@ declare type PartialMeterValuesFields = {
|
|
|
3839
3841
|
};
|
|
3840
3842
|
declare type PartialMeterInfoFields = {
|
|
3841
3843
|
id: number;
|
|
3842
|
-
resource: ResourceTypes
|
|
3843
|
-
type?: MeterTypes
|
|
3844
|
+
resource: ResourceTypes;
|
|
3845
|
+
type?: MeterTypes;
|
|
3844
3846
|
number: string;
|
|
3845
|
-
images: FileStore
|
|
3847
|
+
images: FileStore[];
|
|
3846
3848
|
maxValue?: PartialMeterValuesFields;
|
|
3847
3849
|
minValue?: PartialMeterValuesFields;
|
|
3848
3850
|
values: PartialMeterValuesFields;
|
|
3849
3851
|
} & PartialMeterValuesFields;
|
|
3850
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3852
|
+
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>[];
|
|
3851
3853
|
|
|
3852
3854
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3853
3855
|
type: string | undefined;
|
|
@@ -3874,4 +3876,4 @@ type SignInPageProps = {
|
|
|
3874
3876
|
|
|
3875
3877
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3876
3878
|
|
|
3877
|
-
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentChargeTypes, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityChargeTypes, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel$1 as VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3879
|
+
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentChargeTypes, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityChargeTypes, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|