kui-crm 0.0.549 → 0.0.550
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 +188 -187
- package/package.json +1 -1
- package/types/index.d.ts +133 -132
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles
|
|
190
|
-
declare type UnitOfPaymentTypes
|
|
191
|
-
declare type WaterMeterTypes
|
|
192
|
-
declare type ElectricityMeterTypes
|
|
193
|
-
declare type ResourceTypes
|
|
194
|
-
declare type MeterTypes
|
|
195
|
-
declare type UtilityTypes
|
|
189
|
+
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
+
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants
|
|
203
|
+
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel
|
|
242
|
+
main_image: ImageModel | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel
|
|
252
|
+
main_image: ImageModel | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles
|
|
267
|
-
refund_from: ResourcePaymentRoles
|
|
265
|
+
utility_type: UtilityTypes;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
+
refund_from: ResourcePaymentRoles;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes
|
|
269
|
+
value_type?: UnitOfPaymentTypes;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest
|
|
271
|
+
declare type FileBodyRequest = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest
|
|
277
|
+
declare type ImageBodyRequest = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest
|
|
282
|
+
declare type VideoBodyRequest = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel
|
|
291
|
+
declare type ImageModel = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel$1 = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel
|
|
300
|
+
declare type FileModel = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel
|
|
306
|
+
declare type DocumentModel = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -401,7 +401,7 @@ declare type ApartmentResourceCompanyModel = {
|
|
|
401
401
|
provider_type: string;
|
|
402
402
|
};
|
|
403
403
|
declare type DataTransferFormats = "online" | "offline";
|
|
404
|
-
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes
|
|
404
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes | "other";
|
|
405
405
|
declare type ApartmentResourceModel = {
|
|
406
406
|
id: number;
|
|
407
407
|
company: ApartmentResourceCompanyModel | null;
|
|
@@ -410,7 +410,7 @@ declare type ApartmentResourceModel = {
|
|
|
410
410
|
payer_code?: string;
|
|
411
411
|
meter_readings_day_from?: number;
|
|
412
412
|
meter_readings_day_to?: number;
|
|
413
|
-
receipt_example?: DocumentModel
|
|
413
|
+
receipt_example?: DocumentModel;
|
|
414
414
|
provider_auth_login?: string;
|
|
415
415
|
provider_auth_password?: string;
|
|
416
416
|
provider_url?: string;
|
|
@@ -431,8 +431,8 @@ declare type InspectionFillingParams = {
|
|
|
431
431
|
description?: string;
|
|
432
432
|
serial_code?: string;
|
|
433
433
|
amount?: number | string | null;
|
|
434
|
-
photos: ImageBodyRequest
|
|
435
|
-
instruction?: FileBodyRequest
|
|
434
|
+
photos: ImageBodyRequest[];
|
|
435
|
+
instruction?: FileBodyRequest | null;
|
|
436
436
|
was_missing?: boolean;
|
|
437
437
|
};
|
|
438
438
|
declare type InspectionMeterValueModel = {
|
|
@@ -463,7 +463,7 @@ declare type InspectionRoomPhotoModel = {
|
|
|
463
463
|
uploaded: boolean;
|
|
464
464
|
purpose: InspectionRoomPhotoTypes;
|
|
465
465
|
comment?: string;
|
|
466
|
-
photos: ImageModel
|
|
466
|
+
photos: ImageModel[];
|
|
467
467
|
videos: VideoModel[];
|
|
468
468
|
room_order_number?: number | null;
|
|
469
469
|
};
|
|
@@ -500,11 +500,11 @@ declare type FullInspectionCommonFields = {
|
|
|
500
500
|
filling: InspectionFillingModel[];
|
|
501
501
|
} & ApartmentModel;
|
|
502
502
|
declare type InspectionMeterCommonInfo = {
|
|
503
|
-
resource_type: ResourceTypes
|
|
504
|
-
passport: FileModel
|
|
505
|
-
meter_type: MeterTypes
|
|
503
|
+
resource_type: ResourceTypes;
|
|
504
|
+
passport: FileModel | null;
|
|
505
|
+
meter_type: MeterTypes;
|
|
506
506
|
operating_account: string;
|
|
507
|
-
photos: ImageModel
|
|
507
|
+
photos: ImageModel[];
|
|
508
508
|
} & Omit<MeterCommonInfoModel, "operating_account_number">;
|
|
509
509
|
declare type TransferInspectionMeterModel = {
|
|
510
510
|
values: InspectionMeterValueModel;
|
|
@@ -520,7 +520,7 @@ declare type RegularInspectionFields = {
|
|
|
520
520
|
declare type ComparableObjectModel = {
|
|
521
521
|
id: number;
|
|
522
522
|
advertisement_link: string;
|
|
523
|
-
advertisement_screenshot: ImageModel
|
|
523
|
+
advertisement_screenshot: ImageModel | null;
|
|
524
524
|
object_price: string;
|
|
525
525
|
key_object_differences: string;
|
|
526
526
|
};
|
|
@@ -528,7 +528,7 @@ declare type StatisticalEvaluationModel = {
|
|
|
528
528
|
id: number;
|
|
529
529
|
source_name: string;
|
|
530
530
|
link: string;
|
|
531
|
-
screenshot: ImageModel
|
|
531
|
+
screenshot: ImageModel | null;
|
|
532
532
|
min_price: string;
|
|
533
533
|
max_price: string;
|
|
534
534
|
};
|
|
@@ -571,11 +571,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
571
571
|
declare type ImpairmentModel = {
|
|
572
572
|
id: number;
|
|
573
573
|
impairment_type: ImpairmentType;
|
|
574
|
-
proof_file: DocumentModel
|
|
574
|
+
proof_file: DocumentModel | null;
|
|
575
575
|
price: number;
|
|
576
576
|
solution: string;
|
|
577
577
|
description: string;
|
|
578
|
-
photos: ImageModel
|
|
578
|
+
photos: ImageModel[];
|
|
579
579
|
item_link: string;
|
|
580
580
|
};
|
|
581
581
|
declare type MetroStationsFields = {
|
|
@@ -585,7 +585,7 @@ declare type InitialInspectionModelFields = {
|
|
|
585
585
|
used_resources: UsedResourcesModel;
|
|
586
586
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
587
587
|
declare type AppraisalRequestModelFields = {
|
|
588
|
-
floor_plan: DocumentModel
|
|
588
|
+
floor_plan: DocumentModel | null;
|
|
589
589
|
};
|
|
590
590
|
declare type InspectionModel = {
|
|
591
591
|
initial?: InitialInspectionModelFields;
|
|
@@ -662,10 +662,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
662
662
|
};
|
|
663
663
|
declare type PatchInspectionImageParams = {
|
|
664
664
|
id?: number;
|
|
665
|
-
} & Partial<ImageBodyRequest
|
|
665
|
+
} & Partial<ImageBodyRequest>;
|
|
666
666
|
declare type PatchInspectionVideoParams = {
|
|
667
667
|
id?: number;
|
|
668
|
-
} & Partial<VideoBodyRequest
|
|
668
|
+
} & Partial<VideoBodyRequest>;
|
|
669
669
|
declare type PatchRoomImagesParams = {
|
|
670
670
|
type: InspectionRoomPhotoTypes;
|
|
671
671
|
comment?: string;
|
|
@@ -705,8 +705,8 @@ declare type InspectionFillingModel = {
|
|
|
705
705
|
description: string;
|
|
706
706
|
serial_code: string;
|
|
707
707
|
amount: number;
|
|
708
|
-
photos: ImageModel
|
|
709
|
-
instruction: DocumentModel
|
|
708
|
+
photos: ImageModel[];
|
|
709
|
+
instruction: DocumentModel;
|
|
710
710
|
is_absent: boolean;
|
|
711
711
|
previously_absent: boolean;
|
|
712
712
|
model: string;
|
|
@@ -788,7 +788,7 @@ declare type CommonMeterParams = {
|
|
|
788
788
|
company: CompanyLiteParams;
|
|
789
789
|
operating_account_number?: string | null;
|
|
790
790
|
company_is_administrative: boolean;
|
|
791
|
-
photos?: ImageModel
|
|
791
|
+
photos?: ImageModel[];
|
|
792
792
|
auto_sending: boolean;
|
|
793
793
|
no_tariff: boolean;
|
|
794
794
|
is_avg: boolean;
|
|
@@ -800,15 +800,15 @@ declare type ElectricityMeterValues = {
|
|
|
800
800
|
T3?: MeterTariffModel;
|
|
801
801
|
};
|
|
802
802
|
declare type WaterMeterParams = {
|
|
803
|
-
type: WaterMeterTypes
|
|
803
|
+
type: WaterMeterTypes;
|
|
804
804
|
tariff: SingleCounterTariffModel;
|
|
805
805
|
} & CommonMeterParams & MeterTariffModel;
|
|
806
806
|
declare type SingleMeterParams = {
|
|
807
|
-
type?: WaterMeterTypes
|
|
807
|
+
type?: WaterMeterTypes;
|
|
808
808
|
tariff: SingleCounterTariffModel;
|
|
809
809
|
} & CommonMeterParams & MeterTariffModel;
|
|
810
810
|
declare type ElectricityMeterParams = {
|
|
811
|
-
type: ElectricityMeterTypes
|
|
811
|
+
type: ElectricityMeterTypes;
|
|
812
812
|
values: ElectricityMeterValues;
|
|
813
813
|
tariff: ElectricityMeterTariffModel;
|
|
814
814
|
overall_value?: number;
|
|
@@ -1035,7 +1035,7 @@ declare type CountryParams = {
|
|
|
1035
1035
|
code: string;
|
|
1036
1036
|
} & CatalogItemParams;
|
|
1037
1037
|
|
|
1038
|
-
type FileWithVisibility
|
|
1038
|
+
type FileWithVisibility = {
|
|
1039
1039
|
file: File | null
|
|
1040
1040
|
tenant: boolean
|
|
1041
1041
|
landlord: boolean
|
|
@@ -1043,8 +1043,8 @@ type FileWithVisibility$1 = {
|
|
|
1043
1043
|
url: string
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
|
-
type InputFileWithVisibilityFields
|
|
1047
|
-
| FileWithVisibility
|
|
1046
|
+
type InputFileWithVisibilityFields =
|
|
1047
|
+
| FileWithVisibility
|
|
1048
1048
|
| DocumentWithVisibility
|
|
1049
1049
|
| null
|
|
1050
1050
|
| undefined
|
|
@@ -1074,7 +1074,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1074
1074
|
}
|
|
1075
1075
|
|
|
1076
1076
|
type ChangeReasonFormFields = {
|
|
1077
|
-
reason: InputFileWithVisibilityFields
|
|
1077
|
+
reason: InputFileWithVisibilityFields
|
|
1078
1078
|
comment?: string
|
|
1079
1079
|
}
|
|
1080
1080
|
|
|
@@ -1089,13 +1089,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1089
1089
|
settings?: any
|
|
1090
1090
|
} & InputWithControllerProps<TFormValues>
|
|
1091
1091
|
|
|
1092
|
-
type CompanyAutocompleteFields
|
|
1092
|
+
type CompanyAutocompleteFields = {
|
|
1093
1093
|
id: number
|
|
1094
1094
|
name: string
|
|
1095
1095
|
logo?: string | null
|
|
1096
1096
|
}
|
|
1097
1097
|
|
|
1098
|
-
declare class FileStore
|
|
1098
|
+
declare class FileStore implements FileStoreInterface {
|
|
1099
1099
|
id: number | null;
|
|
1100
1100
|
index?: number | null;
|
|
1101
1101
|
name: string;
|
|
@@ -1126,12 +1126,12 @@ declare class FileStore$1 implements FileStoreInterface {
|
|
|
1126
1126
|
setIndex: (index: number) => void;
|
|
1127
1127
|
get title(): string;
|
|
1128
1128
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1129
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1130
|
-
static initFromFileModel: (file: FileModel
|
|
1131
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1132
|
-
static initFromImageModel: (file: ImageModel
|
|
1133
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1134
|
-
static initFromFileStore: (file: FileStore
|
|
1129
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1130
|
+
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1131
|
+
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1132
|
+
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1133
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1134
|
+
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1135
1135
|
}
|
|
1136
1136
|
|
|
1137
1137
|
declare type ImageParams = {
|
|
@@ -1166,7 +1166,7 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1166
1166
|
delete: () => Promise<void>;
|
|
1167
1167
|
get extension(): string;
|
|
1168
1168
|
get title(): string;
|
|
1169
|
-
static initFromImageModel: (image: ImageModel
|
|
1169
|
+
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1170
1170
|
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
@@ -1292,7 +1292,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1292
1292
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1293
1293
|
payerCode?: string;
|
|
1294
1294
|
communalServicesAccount?: string;
|
|
1295
|
-
company?: CompanyAutocompleteFields
|
|
1295
|
+
company?: CompanyAutocompleteFields | null;
|
|
1296
1296
|
} & ChangeReasonFormFields;
|
|
1297
1297
|
declare type ApartmentOverviewInfoFields = {
|
|
1298
1298
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1315,14 +1315,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1315
1315
|
} & ApartmentPaymentInfoParams;
|
|
1316
1316
|
declare type InspectionMeterInfoParams = {
|
|
1317
1317
|
id: number;
|
|
1318
|
-
resource: ResourceTypes
|
|
1319
|
-
type?: MeterTypes
|
|
1318
|
+
resource: ResourceTypes;
|
|
1319
|
+
type?: MeterTypes;
|
|
1320
1320
|
number: string;
|
|
1321
1321
|
startDate: DateTime | null;
|
|
1322
1322
|
company: CompanyLiteParams;
|
|
1323
1323
|
operationalAccountNumber?: string | null;
|
|
1324
1324
|
tariff: EntityLinkParams | null;
|
|
1325
|
-
passportFile: FileStore
|
|
1325
|
+
passportFile: FileStore | null;
|
|
1326
1326
|
initialValue?: number;
|
|
1327
1327
|
lastValue?: number;
|
|
1328
1328
|
initialValueT1?: number;
|
|
@@ -1344,8 +1344,8 @@ declare type ValuesParams = {
|
|
|
1344
1344
|
};
|
|
1345
1345
|
declare type PartialMeterInfoParams = {
|
|
1346
1346
|
id: number;
|
|
1347
|
-
type: MeterTypes
|
|
1348
|
-
resource: ResourceTypes
|
|
1347
|
+
type: MeterTypes;
|
|
1348
|
+
resource: ResourceTypes;
|
|
1349
1349
|
number: string;
|
|
1350
1350
|
values: ValuesParams;
|
|
1351
1351
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1357,7 +1357,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1357
1357
|
declare type ComparableObjectParams = {
|
|
1358
1358
|
id: number;
|
|
1359
1359
|
link: string;
|
|
1360
|
-
screenshot: FileStore
|
|
1360
|
+
screenshot: FileStore | null;
|
|
1361
1361
|
price: number;
|
|
1362
1362
|
differences: string;
|
|
1363
1363
|
};
|
|
@@ -1365,7 +1365,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1365
1365
|
id: number;
|
|
1366
1366
|
dataSourceName: string;
|
|
1367
1367
|
link: string;
|
|
1368
|
-
screenshot: FileStore
|
|
1368
|
+
screenshot: FileStore | null;
|
|
1369
1369
|
minPrice: number;
|
|
1370
1370
|
maxPrice: number;
|
|
1371
1371
|
};
|
|
@@ -1390,8 +1390,8 @@ declare type FillingInfoFormFields = {
|
|
|
1390
1390
|
name?: string;
|
|
1391
1391
|
description?: string;
|
|
1392
1392
|
type?: ApartmentFillingVariants | null;
|
|
1393
|
-
instruction?: InputFileWithVisibilityFields
|
|
1394
|
-
tempImages?: ImageBodyRequest
|
|
1393
|
+
instruction?: InputFileWithVisibilityFields;
|
|
1394
|
+
tempImages?: ImageBodyRequest[];
|
|
1395
1395
|
};
|
|
1396
1396
|
|
|
1397
1397
|
declare type FillingTagParams = {
|
|
@@ -1406,7 +1406,7 @@ declare type FillingParams = {
|
|
|
1406
1406
|
images?: (ImageStore | UploadFileParams)[];
|
|
1407
1407
|
serialNumber?: string;
|
|
1408
1408
|
numberOfSubjects?: number | string | null;
|
|
1409
|
-
instruction?: InputFileWithVisibilityFields
|
|
1409
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1410
1410
|
type?: ApartmentFillingVariants;
|
|
1411
1411
|
loader?: Loader;
|
|
1412
1412
|
};
|
|
@@ -1418,7 +1418,7 @@ declare type FillingFullParams = {
|
|
|
1418
1418
|
images?: (ImageStore | UploadFileParams)[];
|
|
1419
1419
|
serialNumber?: string;
|
|
1420
1420
|
numberOfSubjects?: number | string | null;
|
|
1421
|
-
instruction?: InputFileWithVisibilityFields
|
|
1421
|
+
instruction?: InputFileWithVisibilityFields | null;
|
|
1422
1422
|
type?: ApartmentFillingVariants;
|
|
1423
1423
|
loader?: Loader;
|
|
1424
1424
|
check?: boolean | null;
|
|
@@ -1437,31 +1437,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1437
1437
|
name: string;
|
|
1438
1438
|
};
|
|
1439
1439
|
|
|
1440
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1441
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
1442
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
1443
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
1444
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
1445
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
1446
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
1447
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
1448
|
-
declare type FileBodyRequest = {
|
|
1440
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
1441
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
1442
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
1443
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
1444
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
1445
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
1446
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
1447
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
1448
|
+
declare type FileBodyRequest$1 = {
|
|
1449
1449
|
temp_file_id?: number;
|
|
1450
1450
|
name: string;
|
|
1451
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1451
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1452
1452
|
url?: string;
|
|
1453
1453
|
};
|
|
1454
|
-
declare type ImageBodyRequest = {
|
|
1454
|
+
declare type ImageBodyRequest$1 = {
|
|
1455
1455
|
temp_file_id: number;
|
|
1456
1456
|
image_name: string;
|
|
1457
1457
|
url: string;
|
|
1458
1458
|
};
|
|
1459
|
-
declare type VideoBodyRequest = {
|
|
1459
|
+
declare type VideoBodyRequest$1 = {
|
|
1460
1460
|
temp_file_id: number;
|
|
1461
1461
|
file_name: string;
|
|
1462
1462
|
url: string;
|
|
1463
1463
|
};
|
|
1464
|
-
declare type ImageModel = {
|
|
1464
|
+
declare type ImageModel$1 = {
|
|
1465
1465
|
id: number;
|
|
1466
1466
|
image_name?: string;
|
|
1467
1467
|
image_url?: string;
|
|
@@ -1470,23 +1470,23 @@ declare type ImageModel = {
|
|
|
1470
1470
|
image_large_url: string;
|
|
1471
1471
|
size: number;
|
|
1472
1472
|
};
|
|
1473
|
-
declare type FileModel = {
|
|
1473
|
+
declare type FileModel$1 = {
|
|
1474
1474
|
id: number;
|
|
1475
1475
|
name: string;
|
|
1476
1476
|
size: number;
|
|
1477
1477
|
url: string;
|
|
1478
1478
|
};
|
|
1479
|
-
declare type DocumentModel = {
|
|
1479
|
+
declare type DocumentModel$1 = {
|
|
1480
1480
|
pk: number;
|
|
1481
1481
|
name: string;
|
|
1482
1482
|
created?: string;
|
|
1483
1483
|
attachment: string;
|
|
1484
1484
|
size: number;
|
|
1485
1485
|
uploaded_by?: string | null;
|
|
1486
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1486
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1487
1487
|
};
|
|
1488
1488
|
|
|
1489
|
-
type FileWithVisibility = {
|
|
1489
|
+
type FileWithVisibility$1 = {
|
|
1490
1490
|
file: File | null
|
|
1491
1491
|
tenant: boolean
|
|
1492
1492
|
landlord: boolean
|
|
@@ -1494,19 +1494,19 @@ type FileWithVisibility = {
|
|
|
1494
1494
|
url: string
|
|
1495
1495
|
}
|
|
1496
1496
|
|
|
1497
|
-
type InputFileWithVisibilityFields =
|
|
1498
|
-
| FileWithVisibility
|
|
1497
|
+
type InputFileWithVisibilityFields$1 =
|
|
1498
|
+
| FileWithVisibility$1
|
|
1499
1499
|
| DocumentWithVisibility$1
|
|
1500
1500
|
| null
|
|
1501
1501
|
| undefined
|
|
1502
1502
|
|
|
1503
|
-
type CompanyAutocompleteFields = {
|
|
1503
|
+
type CompanyAutocompleteFields$1 = {
|
|
1504
1504
|
id: number
|
|
1505
1505
|
name: string
|
|
1506
1506
|
logo?: string | null
|
|
1507
1507
|
}
|
|
1508
1508
|
|
|
1509
|
-
declare class FileStore implements FileStoreInterface$1 {
|
|
1509
|
+
declare class FileStore$1 implements FileStoreInterface$1 {
|
|
1510
1510
|
id: number | null;
|
|
1511
1511
|
index?: number | null;
|
|
1512
1512
|
name: string;
|
|
@@ -1537,21 +1537,21 @@ declare class FileStore implements FileStoreInterface$1 {
|
|
|
1537
1537
|
setIndex: (index: number) => void;
|
|
1538
1538
|
get title(): string;
|
|
1539
1539
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1540
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1541
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1542
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1543
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1544
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1545
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1540
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1541
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1542
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1543
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1544
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1545
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
1548
|
type PartialPayerFields$1 = {
|
|
1549
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1550
|
-
mainPayer?: ResourcePaymentRoles
|
|
1551
|
-
refundFrom?: ResourcePaymentRoles
|
|
1552
|
-
partType?: UnitOfPaymentTypes | null
|
|
1549
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1550
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1551
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1552
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1553
1553
|
refundValue?: number | string | null
|
|
1554
|
-
utilityType: UtilityTypes
|
|
1554
|
+
utilityType: UtilityTypes$1
|
|
1555
1555
|
}
|
|
1556
1556
|
|
|
1557
1557
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1583,13 +1583,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1583
1583
|
visibility?: DocumentVisibilityVariants$1;
|
|
1584
1584
|
extension: string;
|
|
1585
1585
|
};
|
|
1586
|
-
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1586
|
+
declare type UploadedFileParams$1 = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
1587
1587
|
declare type FileStoreParams$1 = {
|
|
1588
1588
|
id?: number | null;
|
|
1589
1589
|
url?: string;
|
|
1590
1590
|
index?: number | string | null;
|
|
1591
1591
|
createdBy?: string | null;
|
|
1592
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
1592
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
1593
1593
|
name?: string;
|
|
1594
1594
|
date?: string | null;
|
|
1595
1595
|
size?: number | null;
|
|
@@ -1617,14 +1617,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1617
1617
|
initialValueT1?: number
|
|
1618
1618
|
initialValueT2?: number
|
|
1619
1619
|
initialValueT3?: number
|
|
1620
|
-
type?: MeterTypes
|
|
1621
|
-
resource?: ResourceTypes
|
|
1620
|
+
type?: MeterTypes$1
|
|
1621
|
+
resource?: ResourceTypes$1
|
|
1622
1622
|
withAutoSending?: boolean
|
|
1623
1623
|
}
|
|
1624
1624
|
|
|
1625
1625
|
type MeterFeaturesFormFields$1 = {
|
|
1626
1626
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1627
|
-
company: CompanyAutocompleteFields | null
|
|
1627
|
+
company: CompanyAutocompleteFields$1 | null
|
|
1628
1628
|
nextCheck: DateTime | null
|
|
1629
1629
|
lastValue?: number
|
|
1630
1630
|
lastValueT1?: number
|
|
@@ -1648,9 +1648,9 @@ declare type ApartmentMeterValues = {
|
|
|
1648
1648
|
} & MeterValues;
|
|
1649
1649
|
declare type InspectionMeterFields = {
|
|
1650
1650
|
id?: number;
|
|
1651
|
-
resource: ResourceTypes;
|
|
1652
|
-
passportFile?: InputFileWithVisibilityFields;
|
|
1653
|
-
images: FileStore[];
|
|
1651
|
+
resource: ResourceTypes$1;
|
|
1652
|
+
passportFile?: InputFileWithVisibilityFields$1;
|
|
1653
|
+
images: FileStore$1[];
|
|
1654
1654
|
} & MeterFeaturesFormFields$1;
|
|
1655
1655
|
|
|
1656
1656
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1665,7 +1665,7 @@ type PartialPayerProps<T> = {
|
|
|
1665
1665
|
title: string
|
|
1666
1666
|
name: string
|
|
1667
1667
|
form: UseFormReturn<T>
|
|
1668
|
-
utilityType: UtilityTypes
|
|
1668
|
+
utilityType: UtilityTypes
|
|
1669
1669
|
fieldsVariant?: PartialPayerVariants
|
|
1670
1670
|
settings?: ObjectType
|
|
1671
1671
|
disabled?: boolean
|
|
@@ -1673,12 +1673,12 @@ type PartialPayerProps<T> = {
|
|
|
1673
1673
|
}
|
|
1674
1674
|
|
|
1675
1675
|
type PartialPayerFields = {
|
|
1676
|
-
payer?: ResourcePaymentRoles
|
|
1677
|
-
mainPayer?: ResourcePaymentRoles
|
|
1678
|
-
refundFrom?: ResourcePaymentRoles
|
|
1679
|
-
partType?: UnitOfPaymentTypes
|
|
1676
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1677
|
+
mainPayer?: ResourcePaymentRoles
|
|
1678
|
+
refundFrom?: ResourcePaymentRoles
|
|
1679
|
+
partType?: UnitOfPaymentTypes | null
|
|
1680
1680
|
refundValue?: number | string | null
|
|
1681
|
-
utilityType: UtilityTypes
|
|
1681
|
+
utilityType: UtilityTypes
|
|
1682
1682
|
}
|
|
1683
1683
|
|
|
1684
1684
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1762,14 +1762,15 @@ declare type ResourceAccessParams = {
|
|
|
1762
1762
|
password?: string;
|
|
1763
1763
|
description?: string;
|
|
1764
1764
|
};
|
|
1765
|
-
declare type ApartmentResourceTypes = ResourceTypes
|
|
1765
|
+
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1766
1766
|
declare type ApartmentResourceCompanyDetails = {
|
|
1767
|
-
company: CompanyAutocompleteFields
|
|
1767
|
+
company: CompanyAutocompleteFields;
|
|
1768
1768
|
operationalAccountNumber: string;
|
|
1769
1769
|
payerCode: string;
|
|
1770
1770
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1771
1771
|
access: ResourceAccessParams;
|
|
1772
1772
|
sampleReceiptLink: string;
|
|
1773
|
+
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1773
1774
|
};
|
|
1774
1775
|
declare type ApartmentResourceInterface = {
|
|
1775
1776
|
type: ApartmentResourceTypes;
|
|
@@ -1806,15 +1807,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1806
1807
|
loader: Loader;
|
|
1807
1808
|
};
|
|
1808
1809
|
declare type PostDocumentsResponse = {
|
|
1809
|
-
documents: DocumentModel
|
|
1810
|
+
documents: DocumentModel[];
|
|
1810
1811
|
};
|
|
1811
1812
|
declare type DocumentAgentInterface = {
|
|
1812
1813
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1813
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel
|
|
1814
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel
|
|
1814
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1815
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1815
1816
|
};
|
|
1816
1817
|
declare type DocumentsAgentInterface = {
|
|
1817
|
-
getDocuments?: (...params: any) => Promise<DocumentModel
|
|
1818
|
+
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1818
1819
|
} & DocumentAgentInterface;
|
|
1819
1820
|
|
|
1820
1821
|
declare type MetroLineParams = {
|
|
@@ -1885,7 +1886,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1885
1886
|
};
|
|
1886
1887
|
declare type ApartmentDocumentModel = {
|
|
1887
1888
|
id: number;
|
|
1888
|
-
document: DocumentModel
|
|
1889
|
+
document: DocumentModel;
|
|
1889
1890
|
expiration_date: string;
|
|
1890
1891
|
start_date: string;
|
|
1891
1892
|
number: string;
|
|
@@ -1897,7 +1898,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1897
1898
|
tariff?: TariffLinkModel;
|
|
1898
1899
|
activation_date?: string;
|
|
1899
1900
|
check_date?: string;
|
|
1900
|
-
type?: ElectricityMeterTypes
|
|
1901
|
+
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1901
1902
|
apartment: ApartmentLinkModel;
|
|
1902
1903
|
company: CompanyLiteParams;
|
|
1903
1904
|
operating_account_number?: string | null;
|
|
@@ -2018,7 +2019,7 @@ declare type ApartmentModel = {
|
|
|
2018
2019
|
owner_id: number;
|
|
2019
2020
|
metro_stations: ApartmentMetroParams[];
|
|
2020
2021
|
rental_status: RentalStatuses;
|
|
2021
|
-
main_image: ImageModel
|
|
2022
|
+
main_image: ImageModel;
|
|
2022
2023
|
tv_type: TVTypes | null;
|
|
2023
2024
|
inspection: ApartmentInspectionModel;
|
|
2024
2025
|
distance_to_center_kilometers: number | null;
|
|
@@ -2045,7 +2046,7 @@ declare type ApartmentLiteModel = {
|
|
|
2045
2046
|
renter: LiteUserModel | null;
|
|
2046
2047
|
rental_status: RentalStatuses;
|
|
2047
2048
|
renter_payment_status: RentalPaymentStatuses;
|
|
2048
|
-
main_image: ImageModel
|
|
2049
|
+
main_image: ImageModel;
|
|
2049
2050
|
service_contract?: ServiceContractLiteModel;
|
|
2050
2051
|
is_imported_from_old_crm?: boolean;
|
|
2051
2052
|
max_electricity_counters?: number | null;
|
|
@@ -2091,7 +2092,7 @@ declare type ObjectForMapModel = {
|
|
|
2091
2092
|
apartment_number: string;
|
|
2092
2093
|
address: string;
|
|
2093
2094
|
geolocation: LatLonParams;
|
|
2094
|
-
main_image: ImageModel
|
|
2095
|
+
main_image: ImageModel;
|
|
2095
2096
|
renter: ClientLiteModel | null;
|
|
2096
2097
|
owner: ClientLiteModel;
|
|
2097
2098
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2123,13 +2124,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2123
2124
|
agent: DocumentAgentInterface;
|
|
2124
2125
|
loader: Loader;
|
|
2125
2126
|
settings?: any;
|
|
2126
|
-
constructor(document: DocumentModel
|
|
2127
|
+
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2127
2128
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2128
|
-
updateDocument: (res: DocumentModel
|
|
2129
|
+
updateDocument: (res: DocumentModel) => void;
|
|
2129
2130
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2130
2131
|
get extension(): string;
|
|
2131
2132
|
get title(): string;
|
|
2132
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest
|
|
2133
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2133
2134
|
}
|
|
2134
2135
|
|
|
2135
2136
|
type InputTypes =
|
|
@@ -2189,13 +2190,13 @@ declare type FileParams = {
|
|
|
2189
2190
|
size?: number | null;
|
|
2190
2191
|
file: File;
|
|
2191
2192
|
};
|
|
2192
|
-
declare type UploadedFileParams = FileBodyRequest
|
|
2193
|
+
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2193
2194
|
declare type FileStoreParams = {
|
|
2194
2195
|
id?: number | null;
|
|
2195
2196
|
url?: string;
|
|
2196
2197
|
index?: number | string | null;
|
|
2197
2198
|
createdBy?: string | null;
|
|
2198
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
2199
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
2199
2200
|
name?: string;
|
|
2200
2201
|
date?: string | null;
|
|
2201
2202
|
size?: number | null;
|
|
@@ -2346,8 +2347,8 @@ declare const FillingTagsAgent: {
|
|
|
2346
2347
|
};
|
|
2347
2348
|
|
|
2348
2349
|
declare const TariffsAgent: {
|
|
2349
|
-
all: (tariff: ResourceTypes
|
|
2350
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes
|
|
2350
|
+
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2351
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2351
2352
|
};
|
|
2352
2353
|
|
|
2353
2354
|
type SignInFormFields = {
|
|
@@ -2366,8 +2367,8 @@ declare const ApartmentsAgent: {
|
|
|
2366
2367
|
};
|
|
2367
2368
|
|
|
2368
2369
|
declare const ApartmentMetersAgent: {
|
|
2369
|
-
getMeters: (apartmentId: number, resource: ResourceTypes
|
|
2370
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes
|
|
2370
|
+
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2371
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2371
2372
|
};
|
|
2372
2373
|
|
|
2373
2374
|
declare const requests: {
|
|
@@ -2391,7 +2392,7 @@ declare const meterUnitLabel: {
|
|
|
2391
2392
|
electricity: string;
|
|
2392
2393
|
};
|
|
2393
2394
|
|
|
2394
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields
|
|
2395
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2395
2396
|
|
|
2396
2397
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2397
2398
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2407,34 +2408,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2407
2408
|
}, "">;
|
|
2408
2409
|
|
|
2409
2410
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2410
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields
|
|
2411
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2411
2412
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2412
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility
|
|
2413
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2413
2414
|
temp_file_id: number;
|
|
2414
2415
|
name: string;
|
|
2415
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2416
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2416
2417
|
url: string;
|
|
2417
2418
|
} | null;
|
|
2418
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest
|
|
2419
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest
|
|
2420
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields
|
|
2419
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2420
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2421
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2421
2422
|
name: string;
|
|
2422
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2423
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2423
2424
|
} | null;
|
|
2424
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields
|
|
2425
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2425
2426
|
name: string;
|
|
2426
|
-
visibility: DocumentVisibilityAPIVariants
|
|
2427
|
+
visibility: DocumentVisibilityAPIVariants;
|
|
2427
2428
|
} | null>;
|
|
2428
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore
|
|
2429
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore
|
|
2430
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest
|
|
2431
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest
|
|
2432
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility
|
|
2433
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields
|
|
2434
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2435
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields
|
|
2436
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest
|
|
2437
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest
|
|
2429
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2430
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2431
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2432
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2433
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2434
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2435
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2436
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2437
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2438
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2438
2439
|
|
|
2439
2440
|
declare const matchesAPISubjectRoles: {
|
|
2440
2441
|
maroom: string;
|
|
@@ -2527,16 +2528,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2527
2528
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2528
2529
|
|
|
2529
2530
|
declare class FilesStore {
|
|
2530
|
-
files: FileStore
|
|
2531
|
+
files: FileStore[];
|
|
2531
2532
|
variant: FileVariant;
|
|
2532
2533
|
constructor(variant: FileVariant);
|
|
2533
|
-
addFile: (newFile: FileStore
|
|
2534
|
+
addFile: (newFile: FileStore) => void;
|
|
2534
2535
|
removeFile: (index: number) => void;
|
|
2535
|
-
setFiles: (files: FileStore
|
|
2536
|
+
setFiles: (files: FileStore[]) => void;
|
|
2536
2537
|
uploadFiles: () => Promise<void>;
|
|
2537
|
-
get uploadedData(): (FileBodyRequest
|
|
2538
|
+
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2538
2539
|
get uploadedAllFiles(): boolean;
|
|
2539
|
-
get notUploadedFiles(): FileStore
|
|
2540
|
+
get notUploadedFiles(): FileStore[];
|
|
2540
2541
|
get isUploading(): boolean;
|
|
2541
2542
|
get videoLength(): number;
|
|
2542
2543
|
get nonVideoLength(): number;
|
|
@@ -2558,7 +2559,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2558
2559
|
messages?: UploadMediaMessages;
|
|
2559
2560
|
withoutFilesStore?: boolean;
|
|
2560
2561
|
};
|
|
2561
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore
|
|
2562
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2562
2563
|
|
|
2563
2564
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2564
2565
|
onSearchItem: (value: string) => void;
|
|
@@ -2730,11 +2731,11 @@ type DistrictAutocompleteFields = {
|
|
|
2730
2731
|
type ReplaceableTariffFields = {
|
|
2731
2732
|
name: string
|
|
2732
2733
|
id?: number
|
|
2733
|
-
type?: ResourceTypes
|
|
2734
|
+
type?: ResourceTypes
|
|
2734
2735
|
}
|
|
2735
2736
|
|
|
2736
2737
|
type TariffCommonFields = {
|
|
2737
|
-
resourceType: ResourceTypes
|
|
2738
|
+
resourceType: ResourceTypes
|
|
2738
2739
|
name: string
|
|
2739
2740
|
startDate: DateTime
|
|
2740
2741
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2746,7 +2747,7 @@ type TariffCommonFields = {
|
|
|
2746
2747
|
}
|
|
2747
2748
|
|
|
2748
2749
|
type ElectricityTariffCreationFormFields = {
|
|
2749
|
-
type: ElectricityMeterTypes
|
|
2750
|
+
type: ElectricityMeterTypes
|
|
2750
2751
|
isOverallConsumption: boolean
|
|
2751
2752
|
T1?: number
|
|
2752
2753
|
T2?: number
|
|
@@ -2767,7 +2768,7 @@ type TariffCreationFormProps = {
|
|
|
2767
2768
|
handleClose: () => void
|
|
2768
2769
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2769
2770
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2770
|
-
defaultResource: ResourceTypes
|
|
2771
|
+
defaultResource: ResourceTypes
|
|
2771
2772
|
settings?: any
|
|
2772
2773
|
}
|
|
2773
2774
|
|
|
@@ -2812,7 +2813,7 @@ declare class TariffsLiteStore {
|
|
|
2812
2813
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2813
2814
|
settings?: any;
|
|
2814
2815
|
constructor(settings?: any);
|
|
2815
|
-
fetchAll: (resource: ResourceTypes
|
|
2816
|
+
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2816
2817
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2817
2818
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2818
2819
|
id: number;
|
|
@@ -2820,7 +2821,7 @@ declare class TariffsLiteStore {
|
|
|
2820
2821
|
};
|
|
2821
2822
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2822
2823
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2823
|
-
type: ElectricityMeterTypes
|
|
2824
|
+
type: ElectricityMeterTypes;
|
|
2824
2825
|
T1: string | undefined;
|
|
2825
2826
|
T2: string | undefined;
|
|
2826
2827
|
T3: string | undefined;
|
|
@@ -3113,7 +3114,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3113
3114
|
name?: string
|
|
3114
3115
|
label?: string
|
|
3115
3116
|
hideName?: string
|
|
3116
|
-
resource: ResourceTypes
|
|
3117
|
+
resource: ResourceTypes
|
|
3117
3118
|
filter?: string
|
|
3118
3119
|
filterRequired?: boolean
|
|
3119
3120
|
settings?: any
|
|
@@ -3126,7 +3127,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3126
3127
|
}
|
|
3127
3128
|
|
|
3128
3129
|
type MeterFeaturesFieldsProps = {
|
|
3129
|
-
resource?: ResourceTypes
|
|
3130
|
+
resource?: ResourceTypes
|
|
3130
3131
|
replacements?: LiteMeterInterface[]
|
|
3131
3132
|
isNewResource?: boolean
|
|
3132
3133
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3140,7 +3141,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3140
3141
|
withNextCheck?: boolean
|
|
3141
3142
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3142
3143
|
handleMeterTypeChange?: (
|
|
3143
|
-
meterType: ElectricityMeterTypes
|
|
3144
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3144
3145
|
) => void
|
|
3145
3146
|
settings?: any
|
|
3146
3147
|
}
|
|
@@ -3152,14 +3153,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3152
3153
|
initialValueT1?: number
|
|
3153
3154
|
initialValueT2?: number
|
|
3154
3155
|
initialValueT3?: number
|
|
3155
|
-
type?: MeterTypes
|
|
3156
|
-
resource?: ResourceTypes
|
|
3156
|
+
type?: MeterTypes
|
|
3157
|
+
resource?: ResourceTypes
|
|
3157
3158
|
withAutoSending?: boolean
|
|
3158
3159
|
}
|
|
3159
3160
|
|
|
3160
3161
|
type MeterFeaturesFormFields = {
|
|
3161
3162
|
tariff: TariffGroupAutocompleteFields | null
|
|
3162
|
-
company: CompanyAutocompleteFields
|
|
3163
|
+
company: CompanyAutocompleteFields | null
|
|
3163
3164
|
nextCheck: DateTime | null
|
|
3164
3165
|
lastValue?: number
|
|
3165
3166
|
lastValueT1?: number
|
|
@@ -3173,8 +3174,8 @@ type MeterFeaturesFormFields = {
|
|
|
3173
3174
|
} & BasicMeterFeaturesFormFields
|
|
3174
3175
|
|
|
3175
3176
|
type BasicMeterFieldsSettings = {
|
|
3176
|
-
resource?: ResourceTypes
|
|
3177
|
-
meterType?: MeterTypes
|
|
3177
|
+
resource?: ResourceTypes
|
|
3178
|
+
meterType?: MeterTypes
|
|
3178
3179
|
}
|
|
3179
3180
|
|
|
3180
3181
|
type RenderMeterFieldsSettings = {
|
|
@@ -3204,10 +3205,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3204
3205
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3205
3206
|
|
|
3206
3207
|
type MeterTypeRadioGroupProps = {
|
|
3207
|
-
resource?: ResourceTypes
|
|
3208
|
+
resource?: ResourceTypes
|
|
3208
3209
|
form: UseFormReturn<any>
|
|
3209
3210
|
handleChange: (
|
|
3210
|
-
meterType: ElectricityMeterTypes
|
|
3211
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3211
3212
|
) => void
|
|
3212
3213
|
disabled?: boolean
|
|
3213
3214
|
waterOptions?: OptionParams[]
|
|
@@ -3219,7 +3220,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3219
3220
|
type MeterFeaturesFormProps = {
|
|
3220
3221
|
formStore?: MultistepForm$1<any>
|
|
3221
3222
|
handleMeterTypeChange?: (
|
|
3222
|
-
meterType: ElectricityMeterTypes
|
|
3223
|
+
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3223
3224
|
) => void
|
|
3224
3225
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3225
3226
|
|
|
@@ -3287,7 +3288,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3287
3288
|
startDate: undefined;
|
|
3288
3289
|
}, "">;
|
|
3289
3290
|
|
|
3290
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes
|
|
3291
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3291
3292
|
|
|
3292
3293
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3293
3294
|
|
|
@@ -3303,7 +3304,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3303
3304
|
|
|
3304
3305
|
type TariffReplacementFieldsProps = {
|
|
3305
3306
|
form: UseFormReturn<TariffCommonFields>
|
|
3306
|
-
resource: ResourceTypes
|
|
3307
|
+
resource: ResourceTypes
|
|
3307
3308
|
setReplaceable: (value: boolean) => void
|
|
3308
3309
|
settings?: any
|
|
3309
3310
|
}
|
|
@@ -3718,7 +3719,7 @@ type UploadPhotosButtonProps = {
|
|
|
3718
3719
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3719
3720
|
|
|
3720
3721
|
type UploadedImageProps = {
|
|
3721
|
-
image: FileStore
|
|
3722
|
+
image: FileStore
|
|
3722
3723
|
index: number
|
|
3723
3724
|
onClick: (index: number) => void
|
|
3724
3725
|
onDelete: (index: number) => void
|
|
@@ -3751,14 +3752,14 @@ declare type PartialMeterValuesFields = {
|
|
|
3751
3752
|
};
|
|
3752
3753
|
declare type PartialMeterInfoFields = {
|
|
3753
3754
|
id: number;
|
|
3754
|
-
resource: ResourceTypes
|
|
3755
|
-
type?: MeterTypes
|
|
3755
|
+
resource: ResourceTypes;
|
|
3756
|
+
type?: MeterTypes;
|
|
3756
3757
|
number: string;
|
|
3757
|
-
images: FileStore
|
|
3758
|
+
images: FileStore[];
|
|
3758
3759
|
maxValue?: PartialMeterValuesFields;
|
|
3759
3760
|
values: PartialMeterValuesFields;
|
|
3760
3761
|
} & PartialMeterValuesFields;
|
|
3761
|
-
declare const getPartialMeterInfoFields: (resource: ResourceTypes
|
|
3762
|
+
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>[];
|
|
3762
3763
|
|
|
3763
3764
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3764
3765
|
type: string | undefined;
|
|
@@ -3785,4 +3786,4 @@ type SignInPageProps = {
|
|
|
3785
3786
|
|
|
3786
3787
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3787
3788
|
|
|
3788
|
-
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields$1 as CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel$1 as DocumentModel, DocumentVisibilityAPIVariants$1 as DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes$1 as ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest$1 as FileBodyRequest, FileModel$1 as FileModel, FileParams, FileStore$1 as FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility$1 as FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest$1 as ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel$1 as ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields$1 as InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes$1 as MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles$1 as ResourcePaymentRoles, ResourceTypes$1 as ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TwoOptionForAutocomplete, UnitOfPaymentTypes$1 as UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes$1 as UtilityTypes, Values, ValuesParams, VideoBodyRequest$1 as VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes$1 as WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
3789
|
+
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, 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 };
|