kui-crm 0.0.594 → 0.0.595
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 +206 -202
- package/package.json +1 -1
- package/types/index.d.ts +147 -143
- package/utils/index.d.ts +4 -0
package/index.d.ts
CHANGED
|
@@ -186,13 +186,13 @@ declare const CatalogsAgent: {
|
|
|
186
186
|
|
|
187
187
|
declare type GenderAPIVariants = "M" | "F";
|
|
188
188
|
declare type APISubjectRoles = "maroom" | "owner" | "renter";
|
|
189
|
-
declare type ResourcePaymentRoles = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
-
declare type UnitOfPaymentTypes = "percent" | "value";
|
|
191
|
-
declare type WaterMeterTypes = "cold" | "hot";
|
|
192
|
-
declare type ElectricityMeterTypes = "T1" | "T2" | "T3";
|
|
193
|
-
declare type ResourceTypes = "water" | "electricity" | "gas" | "heating";
|
|
194
|
-
declare type MeterTypes = ElectricityMeterTypes | WaterMeterTypes | null;
|
|
195
|
-
declare type UtilityTypes = ResourceTypes | "utility" | "invoice";
|
|
189
|
+
declare type ResourcePaymentRoles$1 = "maroom" | "owner" | "renter" | "by_invoice";
|
|
190
|
+
declare type UnitOfPaymentTypes$1 = "percent" | "value";
|
|
191
|
+
declare type WaterMeterTypes$1 = "cold" | "hot";
|
|
192
|
+
declare type ElectricityMeterTypes$1 = "T1" | "T2" | "T3";
|
|
193
|
+
declare type ResourceTypes$1 = "water" | "electricity" | "gas" | "heating";
|
|
194
|
+
declare type MeterTypes$1 = ElectricityMeterTypes$1 | WaterMeterTypes$1 | null;
|
|
195
|
+
declare type UtilityTypes$1 = ResourceTypes$1 | "utility" | "invoice";
|
|
196
196
|
declare type ClientTypes = "personal" | "company";
|
|
197
197
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
198
198
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
@@ -200,7 +200,7 @@ declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
|
200
200
|
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
201
201
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
202
202
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
203
|
-
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
203
|
+
declare type DocumentVisibilityAPIVariants$1 = "everybody" | "renter" | "owner" | "nobody";
|
|
204
204
|
declare type TaxesTypes = "resident" | "nonresident" | "individual-entrepreneur" | "company" | "self-employed";
|
|
205
205
|
declare type ContractLinkModel = {
|
|
206
206
|
id: number;
|
|
@@ -239,7 +239,7 @@ declare type ApartmentLinkModel = {
|
|
|
239
239
|
address: string;
|
|
240
240
|
object_name?: string;
|
|
241
241
|
apartment_number?: string;
|
|
242
|
-
main_image: ImageModel | null;
|
|
242
|
+
main_image: ImageModel$1 | null;
|
|
243
243
|
folder_number?: string;
|
|
244
244
|
};
|
|
245
245
|
declare type ApartmentSimpleModel = {
|
|
@@ -249,7 +249,7 @@ declare type LiteObjectModel = {
|
|
|
249
249
|
id: number;
|
|
250
250
|
address: string;
|
|
251
251
|
object_name?: string;
|
|
252
|
-
main_image: ImageModel | null;
|
|
252
|
+
main_image: ImageModel$1 | null;
|
|
253
253
|
};
|
|
254
254
|
declare type AdministrativeCompanyModel = {
|
|
255
255
|
id: number;
|
|
@@ -262,24 +262,24 @@ declare type TariffLinkModel = {
|
|
|
262
262
|
code_name: string;
|
|
263
263
|
};
|
|
264
264
|
declare type UtilityPayerModel = {
|
|
265
|
-
utility_type: UtilityTypes;
|
|
266
|
-
payment_made_by?: ResourcePaymentRoles;
|
|
267
|
-
refund_from: ResourcePaymentRoles;
|
|
265
|
+
utility_type: UtilityTypes$1;
|
|
266
|
+
payment_made_by?: ResourcePaymentRoles$1;
|
|
267
|
+
refund_from: ResourcePaymentRoles$1;
|
|
268
268
|
refund_value?: number | string;
|
|
269
|
-
value_type?: UnitOfPaymentTypes;
|
|
269
|
+
value_type?: UnitOfPaymentTypes$1;
|
|
270
270
|
};
|
|
271
|
-
declare type FileBodyRequest = {
|
|
271
|
+
declare type FileBodyRequest$1 = {
|
|
272
272
|
temp_file_id?: number;
|
|
273
273
|
name: string;
|
|
274
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
274
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
275
275
|
url?: string;
|
|
276
276
|
};
|
|
277
|
-
declare type ImageBodyRequest = {
|
|
277
|
+
declare type ImageBodyRequest$1 = {
|
|
278
278
|
temp_file_id: number;
|
|
279
279
|
image_name: string;
|
|
280
280
|
url: string;
|
|
281
281
|
};
|
|
282
|
-
declare type VideoBodyRequest = {
|
|
282
|
+
declare type VideoBodyRequest$1 = {
|
|
283
283
|
temp_file_id: number;
|
|
284
284
|
file_name: string;
|
|
285
285
|
url: string;
|
|
@@ -288,7 +288,7 @@ declare type UploadFileResponse = {
|
|
|
288
288
|
id: number;
|
|
289
289
|
upload: string;
|
|
290
290
|
};
|
|
291
|
-
declare type ImageModel = {
|
|
291
|
+
declare type ImageModel$1 = {
|
|
292
292
|
id: number;
|
|
293
293
|
image_name?: string;
|
|
294
294
|
image_url?: string;
|
|
@@ -297,20 +297,20 @@ declare type ImageModel = {
|
|
|
297
297
|
image_large_url: string;
|
|
298
298
|
size: number;
|
|
299
299
|
};
|
|
300
|
-
declare type FileModel = {
|
|
300
|
+
declare type FileModel$1 = {
|
|
301
301
|
id: number;
|
|
302
302
|
name: string;
|
|
303
303
|
size: number;
|
|
304
304
|
url: string;
|
|
305
305
|
};
|
|
306
|
-
declare type DocumentModel = {
|
|
306
|
+
declare type DocumentModel$1 = {
|
|
307
307
|
pk: number;
|
|
308
308
|
name: string;
|
|
309
309
|
created?: string;
|
|
310
310
|
attachment: string;
|
|
311
311
|
size: number;
|
|
312
312
|
uploaded_by?: string | null;
|
|
313
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
313
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
314
314
|
};
|
|
315
315
|
declare type PatchDocumentRequest = {
|
|
316
316
|
name: string;
|
|
@@ -318,7 +318,7 @@ declare type PatchDocumentRequest = {
|
|
|
318
318
|
declare type PatchFileParams = {
|
|
319
319
|
id: number;
|
|
320
320
|
name: string;
|
|
321
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
321
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
322
322
|
};
|
|
323
323
|
declare type PaginationRes<T> = {
|
|
324
324
|
count: number;
|
|
@@ -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 | "other";
|
|
412
|
+
declare type ApartmentResourceTypesAPI = "administrative" | ResourceTypes$1 | "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$1;
|
|
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 | null;
|
|
447
|
+
photos: ImageBodyRequest$1[];
|
|
448
|
+
instruction?: FileBodyRequest$1 | 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$1 = {
|
|
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$1[];
|
|
480
|
+
videos: VideoModel$1[];
|
|
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 | null;
|
|
520
|
-
meter_type: MeterTypes;
|
|
518
|
+
resource_type: ResourceTypes$1;
|
|
519
|
+
passport: FileModel$1 | null;
|
|
520
|
+
meter_type: MeterTypes$1;
|
|
521
521
|
operating_account: string;
|
|
522
|
-
photos: ImageModel[];
|
|
522
|
+
photos: ImageModel$1[];
|
|
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 | null;
|
|
533
|
-
rental_contract_termination_document: DocumentModel | null;
|
|
534
|
-
service_contract_termination_document: DocumentModel | null;
|
|
532
|
+
inspection_document: DocumentModel$1 | null;
|
|
533
|
+
rental_contract_termination_document: DocumentModel$1 | null;
|
|
534
|
+
service_contract_termination_document: DocumentModel$1 | 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 | null;
|
|
543
|
+
advertisement_screenshot: ImageModel$1 | 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 | null;
|
|
551
|
+
screenshot: ImageModel$1 | null;
|
|
552
552
|
min_price: string;
|
|
553
553
|
max_price: string;
|
|
554
554
|
};
|
|
@@ -591,11 +591,11 @@ declare type ImpairmentType = "damages" | "wear_tear";
|
|
|
591
591
|
declare type ImpairmentModel = {
|
|
592
592
|
id: number;
|
|
593
593
|
impairment_type: ImpairmentType;
|
|
594
|
-
proof_file: DocumentModel | null;
|
|
594
|
+
proof_file: DocumentModel$1 | null;
|
|
595
595
|
price: number;
|
|
596
596
|
solution: string;
|
|
597
597
|
description: string;
|
|
598
|
-
photos: ImageModel[];
|
|
598
|
+
photos: ImageModel$1[];
|
|
599
599
|
item_link: string;
|
|
600
600
|
bill_line_name: string;
|
|
601
601
|
};
|
|
@@ -606,7 +606,7 @@ declare type InitialInspectionModelFields = {
|
|
|
606
606
|
used_resources: UsedResourcesModel;
|
|
607
607
|
} & ApartmentMainInfoModelFields & ApartmentDetailInfoModelFields & HouseInfoModelFields & MetroStationsFields;
|
|
608
608
|
declare type AppraisalRequestModelFields = {
|
|
609
|
-
floor_plan: DocumentModel | null;
|
|
609
|
+
floor_plan: DocumentModel$1 | null;
|
|
610
610
|
};
|
|
611
611
|
declare type InspectionModel = {
|
|
612
612
|
initial?: InitialInspectionModelFields;
|
|
@@ -640,7 +640,7 @@ declare type InventoryInspectionFields = {
|
|
|
640
640
|
allowed_smoking: boolean;
|
|
641
641
|
additional_terms: string;
|
|
642
642
|
resources: InspectionResourcesModel[];
|
|
643
|
-
inspection_document: DocumentModel | null;
|
|
643
|
+
inspection_document: DocumentModel$1 | null;
|
|
644
644
|
} & FullInspectionCommonFields;
|
|
645
645
|
declare type InventoryInspectionModel = {
|
|
646
646
|
inventory: InventoryInspectionFields;
|
|
@@ -692,10 +692,10 @@ declare type InspectionFeedbackInterface = {
|
|
|
692
692
|
declare type PatchInspectionImageParams = {
|
|
693
693
|
id?: number;
|
|
694
694
|
order?: number;
|
|
695
|
-
} & Partial<ImageBodyRequest>;
|
|
695
|
+
} & Partial<ImageBodyRequest$1>;
|
|
696
696
|
declare type PatchInspectionVideoParams = {
|
|
697
697
|
id?: number;
|
|
698
|
-
} & Partial<VideoBodyRequest>;
|
|
698
|
+
} & Partial<VideoBodyRequest$1>;
|
|
699
699
|
declare type PatchRoomImagesParams = {
|
|
700
700
|
id?: number | null;
|
|
701
701
|
purpose: InspectionRoomPhotoTypes;
|
|
@@ -736,8 +736,8 @@ declare type InspectionFillingModel = {
|
|
|
736
736
|
description: string;
|
|
737
737
|
serial_code: string;
|
|
738
738
|
amount: number;
|
|
739
|
-
photos: ImageModel[];
|
|
740
|
-
instruction: DocumentModel;
|
|
739
|
+
photos: ImageModel$1[];
|
|
740
|
+
instruction: DocumentModel$1;
|
|
741
741
|
is_absent: boolean;
|
|
742
742
|
previously_absent: boolean;
|
|
743
743
|
model: string;
|
|
@@ -819,7 +819,7 @@ declare type CommonMeterParams = {
|
|
|
819
819
|
company: CompanyLiteParams;
|
|
820
820
|
operating_account_number?: string | null;
|
|
821
821
|
company_is_administrative: boolean;
|
|
822
|
-
photos?: ImageModel[];
|
|
822
|
+
photos?: ImageModel$1[];
|
|
823
823
|
auto_sending: boolean;
|
|
824
824
|
no_tariff: boolean;
|
|
825
825
|
is_avg: boolean;
|
|
@@ -831,15 +831,15 @@ declare type ElectricityMeterValues = {
|
|
|
831
831
|
T3?: MeterTariffModel;
|
|
832
832
|
};
|
|
833
833
|
declare type WaterMeterParams = {
|
|
834
|
-
type: WaterMeterTypes;
|
|
834
|
+
type: WaterMeterTypes$1;
|
|
835
835
|
tariff: SingleCounterTariffModel;
|
|
836
836
|
} & CommonMeterParams & MeterTariffModel;
|
|
837
837
|
declare type SingleMeterParams = {
|
|
838
|
-
type?: WaterMeterTypes;
|
|
838
|
+
type?: WaterMeterTypes$1;
|
|
839
839
|
tariff: SingleCounterTariffModel;
|
|
840
840
|
} & CommonMeterParams & MeterTariffModel;
|
|
841
841
|
declare type ElectricityMeterParams = {
|
|
842
|
-
type: ElectricityMeterTypes;
|
|
842
|
+
type: ElectricityMeterTypes$1;
|
|
843
843
|
values: ElectricityMeterValues;
|
|
844
844
|
tariff: ElectricityMeterTariffModel;
|
|
845
845
|
overall_value?: number;
|
|
@@ -977,6 +977,8 @@ declare type ClosingRentalContractFields = {
|
|
|
977
977
|
have_closed_last_period?: boolean;
|
|
978
978
|
have_calculated_deposit?: boolean;
|
|
979
979
|
};
|
|
980
|
+
declare type RentChargeTypes = "default" | "fix";
|
|
981
|
+
declare type UtilityChargeTypes = "inherit" | "disabled";
|
|
980
982
|
declare type RentalContractModel = {
|
|
981
983
|
id: number;
|
|
982
984
|
renter: CounterpartyModel;
|
|
@@ -1023,6 +1025,8 @@ declare type RentalContractModel = {
|
|
|
1023
1025
|
representative?: ClientLinkModel | null;
|
|
1024
1026
|
is_transferred_by_tenant?: boolean;
|
|
1025
1027
|
state: ServiceContractStatusStateModel;
|
|
1028
|
+
rent_charge_type: RentChargeTypes;
|
|
1029
|
+
utility_charge_type: UtilityChargeTypes;
|
|
1026
1030
|
};
|
|
1027
1031
|
|
|
1028
1032
|
declare type SignInParams = {
|
|
@@ -1082,7 +1086,7 @@ declare type CountryParams = {
|
|
|
1082
1086
|
code: string;
|
|
1083
1087
|
} & CatalogItemParams;
|
|
1084
1088
|
|
|
1085
|
-
type FileWithVisibility = {
|
|
1089
|
+
type FileWithVisibility$1 = {
|
|
1086
1090
|
id?: number
|
|
1087
1091
|
file: File | null
|
|
1088
1092
|
tenant: boolean
|
|
@@ -1091,8 +1095,8 @@ type FileWithVisibility = {
|
|
|
1091
1095
|
url: string
|
|
1092
1096
|
}
|
|
1093
1097
|
|
|
1094
|
-
type InputFileWithVisibilityFields =
|
|
1095
|
-
| FileWithVisibility
|
|
1098
|
+
type InputFileWithVisibilityFields$1 =
|
|
1099
|
+
| FileWithVisibility$1
|
|
1096
1100
|
| DocumentWithVisibility
|
|
1097
1101
|
| null
|
|
1098
1102
|
| undefined
|
|
@@ -1122,7 +1126,7 @@ type ChangeReasonFieldsProps<T> = {
|
|
|
1122
1126
|
}
|
|
1123
1127
|
|
|
1124
1128
|
type ChangeReasonFormFields = {
|
|
1125
|
-
reason: InputFileWithVisibilityFields
|
|
1129
|
+
reason: InputFileWithVisibilityFields$1
|
|
1126
1130
|
comment?: string
|
|
1127
1131
|
}
|
|
1128
1132
|
|
|
@@ -1137,13 +1141,13 @@ type CompanyAutocompleteProps<TFormValues> = {
|
|
|
1137
1141
|
settings?: any
|
|
1138
1142
|
} & InputWithControllerProps<TFormValues>
|
|
1139
1143
|
|
|
1140
|
-
type CompanyAutocompleteFields = {
|
|
1144
|
+
type CompanyAutocompleteFields$1 = {
|
|
1141
1145
|
id: number
|
|
1142
1146
|
name: string
|
|
1143
1147
|
logo?: string | null
|
|
1144
1148
|
}
|
|
1145
1149
|
|
|
1146
|
-
declare class FileStore implements FileStoreInterface {
|
|
1150
|
+
declare class FileStore$1 implements FileStoreInterface {
|
|
1147
1151
|
id: number | null;
|
|
1148
1152
|
index?: number | null;
|
|
1149
1153
|
name: string;
|
|
@@ -1174,13 +1178,13 @@ declare class FileStore implements FileStoreInterface {
|
|
|
1174
1178
|
setIndex: (index: number) => void;
|
|
1175
1179
|
get title(): string;
|
|
1176
1180
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1177
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore>;
|
|
1178
|
-
static initFromFileModel: (file: FileModel) => FileStore;
|
|
1179
|
-
static initFromDocumentModel: (file: DocumentModel) => FileStore;
|
|
1180
|
-
static initFromImageModel: (file: ImageModel, name?: string | undefined, isVideo?: boolean | undefined) => FileStore;
|
|
1181
|
-
static initFromVideoModel: (image: VideoModel) => FileStore;
|
|
1182
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore;
|
|
1183
|
-
static initFromFileStore: (file: FileStore) => FileStore;
|
|
1181
|
+
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore$1>;
|
|
1182
|
+
static initFromFileModel: (file: FileModel$1) => FileStore$1;
|
|
1183
|
+
static initFromDocumentModel: (file: DocumentModel$1) => FileStore$1;
|
|
1184
|
+
static initFromImageModel: (file: ImageModel$1, name?: string | undefined, isVideo?: boolean | undefined) => FileStore$1;
|
|
1185
|
+
static initFromVideoModel: (image: VideoModel$1) => FileStore$1;
|
|
1186
|
+
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore$1;
|
|
1187
|
+
static initFromFileStore: (file: FileStore$1) => FileStore$1;
|
|
1184
1188
|
}
|
|
1185
1189
|
|
|
1186
1190
|
declare type ImageParams = {
|
|
@@ -1215,8 +1219,8 @@ declare class ImageStore implements ImageStoreInterface {
|
|
|
1215
1219
|
delete: () => Promise<void>;
|
|
1216
1220
|
get extension(): string;
|
|
1217
1221
|
get title(): string;
|
|
1218
|
-
static initFromImageModel: (image: ImageModel) => ImageStore;
|
|
1219
|
-
static initFromVideoModel: (image: VideoModel) => ImageStore;
|
|
1222
|
+
static initFromImageModel: (image: ImageModel$1) => ImageStore;
|
|
1223
|
+
static initFromVideoModel: (image: VideoModel$1) => ImageStore;
|
|
1220
1224
|
}
|
|
1221
1225
|
|
|
1222
1226
|
declare type RenovationType = "capital" | "euro" | "designer" | "cosmetic" | "required";
|
|
@@ -1341,7 +1345,7 @@ declare type LockerAutocompleteFields = {
|
|
|
1341
1345
|
declare type ApartmentOverviewPaymentInfoFields = {
|
|
1342
1346
|
payerCode?: string;
|
|
1343
1347
|
communalServicesAccount?: string;
|
|
1344
|
-
company?: CompanyAutocompleteFields | null;
|
|
1348
|
+
company?: CompanyAutocompleteFields$1 | null;
|
|
1345
1349
|
} & ChangeReasonFormFields;
|
|
1346
1350
|
declare type ApartmentOverviewInfoFields = {
|
|
1347
1351
|
locker?: LockerAutocompleteFields | null;
|
|
@@ -1364,14 +1368,14 @@ declare type InspectionPaymentInfoParams = {
|
|
|
1364
1368
|
} & ApartmentPaymentInfoParams;
|
|
1365
1369
|
declare type InspectionMeterInfoParams = {
|
|
1366
1370
|
id: number;
|
|
1367
|
-
resource: ResourceTypes;
|
|
1368
|
-
type?: MeterTypes;
|
|
1371
|
+
resource: ResourceTypes$1;
|
|
1372
|
+
type?: MeterTypes$1;
|
|
1369
1373
|
number: string;
|
|
1370
1374
|
startDate: DateTime | null;
|
|
1371
1375
|
company: CompanyLiteParams;
|
|
1372
1376
|
operationalAccountNumber?: string | null;
|
|
1373
1377
|
tariff: EntityLinkParams | null;
|
|
1374
|
-
passportFile: FileStore | null;
|
|
1378
|
+
passportFile: FileStore$1 | null;
|
|
1375
1379
|
initialValue?: number;
|
|
1376
1380
|
lastValue?: number;
|
|
1377
1381
|
initialValueT1?: number;
|
|
@@ -1393,8 +1397,8 @@ declare type ValuesParams = {
|
|
|
1393
1397
|
};
|
|
1394
1398
|
declare type PartialMeterInfoParams = {
|
|
1395
1399
|
id: number;
|
|
1396
|
-
type: MeterTypes;
|
|
1397
|
-
resource: ResourceTypes;
|
|
1400
|
+
type: MeterTypes$1;
|
|
1401
|
+
resource: ResourceTypes$1;
|
|
1398
1402
|
number: string;
|
|
1399
1403
|
values: ValuesParams;
|
|
1400
1404
|
images?: (ImageStore | UploadImageParams)[];
|
|
@@ -1408,7 +1412,7 @@ declare type InspectionPartialMetersInfoParams = {
|
|
|
1408
1412
|
declare type ComparableObjectParams = {
|
|
1409
1413
|
id: number;
|
|
1410
1414
|
link: string;
|
|
1411
|
-
screenshot: FileStore | null;
|
|
1415
|
+
screenshot: FileStore$1 | null;
|
|
1412
1416
|
price: number;
|
|
1413
1417
|
differences: string;
|
|
1414
1418
|
};
|
|
@@ -1416,7 +1420,7 @@ declare type StatisticalEvaluationParams = {
|
|
|
1416
1420
|
id: number;
|
|
1417
1421
|
dataSourceName: string;
|
|
1418
1422
|
link: string;
|
|
1419
|
-
screenshot: FileStore | null;
|
|
1423
|
+
screenshot: FileStore$1 | null;
|
|
1420
1424
|
minPrice: number;
|
|
1421
1425
|
maxPrice: number;
|
|
1422
1426
|
};
|
|
@@ -1441,8 +1445,8 @@ declare type FillingInfoFormFields = {
|
|
|
1441
1445
|
name?: string;
|
|
1442
1446
|
description?: string;
|
|
1443
1447
|
type?: ApartmentFillingVariants | null;
|
|
1444
|
-
instruction?: InputFileWithVisibilityFields;
|
|
1445
|
-
tempImages?: ImageBodyRequest[];
|
|
1448
|
+
instruction?: InputFileWithVisibilityFields$1;
|
|
1449
|
+
tempImages?: ImageBodyRequest$1[];
|
|
1446
1450
|
};
|
|
1447
1451
|
|
|
1448
1452
|
declare type FillingTagParams = {
|
|
@@ -1457,7 +1461,7 @@ declare type FillingParams = {
|
|
|
1457
1461
|
images?: (ImageStore | UploadFileParams)[];
|
|
1458
1462
|
serialNumber?: string;
|
|
1459
1463
|
numberOfSubjects?: number | string | null;
|
|
1460
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1464
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1461
1465
|
type?: ApartmentFillingVariants;
|
|
1462
1466
|
loader?: Loader;
|
|
1463
1467
|
};
|
|
@@ -1469,7 +1473,7 @@ declare type FillingFullParams = {
|
|
|
1469
1473
|
images?: (ImageStore | UploadFileParams)[];
|
|
1470
1474
|
serialNumber?: string;
|
|
1471
1475
|
numberOfSubjects?: number | string | null;
|
|
1472
|
-
instruction?: InputFileWithVisibilityFields | null;
|
|
1476
|
+
instruction?: InputFileWithVisibilityFields$1 | null;
|
|
1473
1477
|
type?: ApartmentFillingVariants;
|
|
1474
1478
|
loader?: Loader;
|
|
1475
1479
|
check?: boolean | null;
|
|
@@ -1488,31 +1492,31 @@ declare type TariffGroupLiteParams = {
|
|
|
1488
1492
|
name: string;
|
|
1489
1493
|
};
|
|
1490
1494
|
|
|
1491
|
-
declare type ResourcePaymentRoles
|
|
1492
|
-
declare type UnitOfPaymentTypes
|
|
1493
|
-
declare type WaterMeterTypes
|
|
1494
|
-
declare type ElectricityMeterTypes
|
|
1495
|
-
declare type ResourceTypes
|
|
1496
|
-
declare type MeterTypes
|
|
1497
|
-
declare type UtilityTypes
|
|
1498
|
-
declare type DocumentVisibilityAPIVariants
|
|
1499
|
-
declare type FileBodyRequest
|
|
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 = {
|
|
1500
1504
|
temp_file_id?: number;
|
|
1501
1505
|
name: string;
|
|
1502
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1506
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1503
1507
|
url?: string;
|
|
1504
1508
|
};
|
|
1505
|
-
declare type ImageBodyRequest
|
|
1509
|
+
declare type ImageBodyRequest = {
|
|
1506
1510
|
temp_file_id: number;
|
|
1507
1511
|
image_name: string;
|
|
1508
1512
|
url: string;
|
|
1509
1513
|
};
|
|
1510
|
-
declare type VideoBodyRequest
|
|
1514
|
+
declare type VideoBodyRequest = {
|
|
1511
1515
|
temp_file_id: number;
|
|
1512
1516
|
file_name: string;
|
|
1513
1517
|
url: string;
|
|
1514
1518
|
};
|
|
1515
|
-
declare type ImageModel
|
|
1519
|
+
declare type ImageModel = {
|
|
1516
1520
|
id: number;
|
|
1517
1521
|
image_name?: string;
|
|
1518
1522
|
image_url?: string;
|
|
@@ -1521,22 +1525,22 @@ declare type ImageModel$1 = {
|
|
|
1521
1525
|
image_large_url: string;
|
|
1522
1526
|
size: number;
|
|
1523
1527
|
};
|
|
1524
|
-
declare type FileModel
|
|
1528
|
+
declare type FileModel = {
|
|
1525
1529
|
id: number;
|
|
1526
1530
|
name: string;
|
|
1527
1531
|
size: number;
|
|
1528
1532
|
url: string;
|
|
1529
1533
|
};
|
|
1530
|
-
declare type DocumentModel
|
|
1534
|
+
declare type DocumentModel = {
|
|
1531
1535
|
pk: number;
|
|
1532
1536
|
name: string;
|
|
1533
1537
|
created?: string;
|
|
1534
1538
|
attachment: string;
|
|
1535
1539
|
size: number;
|
|
1536
1540
|
uploaded_by?: string | null;
|
|
1537
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1541
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1538
1542
|
};
|
|
1539
|
-
declare type VideoModel
|
|
1543
|
+
declare type VideoModel = {
|
|
1540
1544
|
id: number;
|
|
1541
1545
|
video_url: string;
|
|
1542
1546
|
file_name?: string;
|
|
@@ -1547,7 +1551,7 @@ declare type VideoModel$1 = {
|
|
|
1547
1551
|
resolution?: string;
|
|
1548
1552
|
};
|
|
1549
1553
|
|
|
1550
|
-
type FileWithVisibility
|
|
1554
|
+
type FileWithVisibility = {
|
|
1551
1555
|
id?: number
|
|
1552
1556
|
file: File | null
|
|
1553
1557
|
tenant: boolean
|
|
@@ -1556,19 +1560,19 @@ type FileWithVisibility$1 = {
|
|
|
1556
1560
|
url: string
|
|
1557
1561
|
}
|
|
1558
1562
|
|
|
1559
|
-
type InputFileWithVisibilityFields
|
|
1560
|
-
| FileWithVisibility
|
|
1563
|
+
type InputFileWithVisibilityFields =
|
|
1564
|
+
| FileWithVisibility
|
|
1561
1565
|
| DocumentWithVisibility$1
|
|
1562
1566
|
| null
|
|
1563
1567
|
| undefined
|
|
1564
1568
|
|
|
1565
|
-
type CompanyAutocompleteFields
|
|
1569
|
+
type CompanyAutocompleteFields = {
|
|
1566
1570
|
id: number
|
|
1567
1571
|
name: string
|
|
1568
1572
|
logo?: string | null
|
|
1569
1573
|
}
|
|
1570
1574
|
|
|
1571
|
-
declare class FileStore
|
|
1575
|
+
declare class FileStore implements FileStoreInterface$1 {
|
|
1572
1576
|
id: number | null;
|
|
1573
1577
|
index?: number | null;
|
|
1574
1578
|
name: string;
|
|
@@ -1599,22 +1603,22 @@ declare class FileStore$1 implements FileStoreInterface$1 {
|
|
|
1599
1603
|
setIndex: (index: number) => void;
|
|
1600
1604
|
get title(): string;
|
|
1601
1605
|
static createPreviewUrl: (file: File) => Promise<string>;
|
|
1602
|
-
static initFromFileWithPreview: (file: File, index: number, withFileCleanUp?: boolean | undefined) => Promise<FileStore
|
|
1603
|
-
static initFromFileModel: (file: FileModel
|
|
1604
|
-
static initFromDocumentModel: (file: DocumentModel
|
|
1605
|
-
static initFromImageModel: (file: ImageModel
|
|
1606
|
-
static initFromVideoModel: (image: VideoModel
|
|
1607
|
-
static initFromFile: (file: File, index: number, withFileCleanUp?: boolean | undefined) => FileStore
|
|
1608
|
-
static initFromFileStore: (file: FileStore
|
|
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;
|
|
1609
1613
|
}
|
|
1610
1614
|
|
|
1611
1615
|
type PartialPayerFields$1 = {
|
|
1612
|
-
payer?: ResourcePaymentRoles
|
|
1613
|
-
mainPayer?: ResourcePaymentRoles
|
|
1614
|
-
refundFrom?: ResourcePaymentRoles
|
|
1615
|
-
partType?: UnitOfPaymentTypes
|
|
1616
|
+
payer?: ResourcePaymentRoles | "partial"
|
|
1617
|
+
mainPayer?: ResourcePaymentRoles
|
|
1618
|
+
refundFrom?: ResourcePaymentRoles
|
|
1619
|
+
partType?: UnitOfPaymentTypes | null
|
|
1616
1620
|
refundValue?: number | string | null
|
|
1617
|
-
utilityType: UtilityTypes
|
|
1621
|
+
utilityType: UtilityTypes
|
|
1618
1622
|
}
|
|
1619
1623
|
|
|
1620
1624
|
declare type FilesStoreInterface$1 = {
|
|
@@ -1646,13 +1650,13 @@ declare type DocumentWithVisibility$1 = {
|
|
|
1646
1650
|
visibility?: DocumentVisibilityVariants$1;
|
|
1647
1651
|
extension: string;
|
|
1648
1652
|
};
|
|
1649
|
-
declare type UploadedFileParams$1 = FileBodyRequest
|
|
1653
|
+
declare type UploadedFileParams$1 = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
1650
1654
|
declare type FileStoreParams$1 = {
|
|
1651
1655
|
id?: number | null;
|
|
1652
1656
|
url?: string;
|
|
1653
1657
|
index?: number | string | null;
|
|
1654
1658
|
createdBy?: string | null;
|
|
1655
|
-
visibility?: DocumentVisibilityAPIVariants
|
|
1659
|
+
visibility?: DocumentVisibilityAPIVariants;
|
|
1656
1660
|
name?: string;
|
|
1657
1661
|
date?: string | null;
|
|
1658
1662
|
size?: number | null;
|
|
@@ -1680,14 +1684,14 @@ type BasicMeterFeaturesFormFields$1 = {
|
|
|
1680
1684
|
initialValueT1?: number
|
|
1681
1685
|
initialValueT2?: number
|
|
1682
1686
|
initialValueT3?: number
|
|
1683
|
-
type?: MeterTypes
|
|
1684
|
-
resource?: ResourceTypes
|
|
1687
|
+
type?: MeterTypes
|
|
1688
|
+
resource?: ResourceTypes
|
|
1685
1689
|
withAutoSending?: boolean
|
|
1686
1690
|
}
|
|
1687
1691
|
|
|
1688
1692
|
type MeterFeaturesFormFields$1 = {
|
|
1689
1693
|
tariff: TariffGroupAutocompleteFields$1 | null
|
|
1690
|
-
company: CompanyAutocompleteFields
|
|
1694
|
+
company: CompanyAutocompleteFields | null
|
|
1691
1695
|
nextCheck: DateTime | null
|
|
1692
1696
|
lastValue?: number
|
|
1693
1697
|
lastValueT1?: number
|
|
@@ -1711,9 +1715,9 @@ declare type ApartmentMeterValues = {
|
|
|
1711
1715
|
} & MeterValues;
|
|
1712
1716
|
declare type InspectionMeterFields = {
|
|
1713
1717
|
id?: number;
|
|
1714
|
-
resource: ResourceTypes
|
|
1715
|
-
passportFile?: InputFileWithVisibilityFields
|
|
1716
|
-
images: FileStore
|
|
1718
|
+
resource: ResourceTypes;
|
|
1719
|
+
passportFile?: InputFileWithVisibilityFields;
|
|
1720
|
+
images: FileStore[];
|
|
1717
1721
|
} & MeterFeaturesFormFields$1;
|
|
1718
1722
|
|
|
1719
1723
|
declare type InspectionFeedbackStatus = "notSigned" | "signed" | "rejected";
|
|
@@ -1728,7 +1732,7 @@ type PartialPayerProps<T> = {
|
|
|
1728
1732
|
title: string
|
|
1729
1733
|
name: string
|
|
1730
1734
|
form: UseFormReturn<T>
|
|
1731
|
-
utilityType: UtilityTypes
|
|
1735
|
+
utilityType: UtilityTypes$1
|
|
1732
1736
|
fieldsVariant?: PartialPayerVariants
|
|
1733
1737
|
settings?: ObjectType
|
|
1734
1738
|
disabled?: boolean
|
|
@@ -1736,12 +1740,12 @@ type PartialPayerProps<T> = {
|
|
|
1736
1740
|
}
|
|
1737
1741
|
|
|
1738
1742
|
type PartialPayerFields = {
|
|
1739
|
-
payer?: ResourcePaymentRoles | "partial"
|
|
1740
|
-
mainPayer?: ResourcePaymentRoles
|
|
1741
|
-
refundFrom?: ResourcePaymentRoles
|
|
1742
|
-
partType?: UnitOfPaymentTypes | null
|
|
1743
|
+
payer?: ResourcePaymentRoles$1 | "partial"
|
|
1744
|
+
mainPayer?: ResourcePaymentRoles$1
|
|
1745
|
+
refundFrom?: ResourcePaymentRoles$1
|
|
1746
|
+
partType?: UnitOfPaymentTypes$1 | null
|
|
1743
1747
|
refundValue?: number | string | null
|
|
1744
|
-
utilityType: UtilityTypes
|
|
1748
|
+
utilityType: UtilityTypes$1
|
|
1745
1749
|
}
|
|
1746
1750
|
|
|
1747
1751
|
declare type ContractPeriodTypes = "openEnded" | "fixed";
|
|
@@ -1825,15 +1829,15 @@ declare type ResourceAccessParams = {
|
|
|
1825
1829
|
description?: string;
|
|
1826
1830
|
appName?: string;
|
|
1827
1831
|
};
|
|
1828
|
-
declare type ApartmentResourceTypes = ResourceTypes | "administrativeCompany" | "other";
|
|
1832
|
+
declare type ApartmentResourceTypes = ResourceTypes$1 | "administrativeCompany" | "other";
|
|
1829
1833
|
declare type ApartmentResourceCompanyDetails = {
|
|
1830
|
-
company: CompanyAutocompleteFields | null;
|
|
1834
|
+
company: CompanyAutocompleteFields$1 | null;
|
|
1831
1835
|
operationalAccountNumber: string;
|
|
1832
1836
|
payerCode: string;
|
|
1833
1837
|
dataSubmissionDays: DataSubmissionDaysParams;
|
|
1834
1838
|
access: ResourceAccessParams;
|
|
1835
1839
|
sampleReceiptLink: string;
|
|
1836
|
-
sampleReceipt?: InputFileWithVisibilityFields | FileStore | null;
|
|
1840
|
+
sampleReceipt?: InputFileWithVisibilityFields$1 | FileStore$1 | null;
|
|
1837
1841
|
};
|
|
1838
1842
|
declare type ApartmentResourceInterface = {
|
|
1839
1843
|
type: ApartmentResourceTypes;
|
|
@@ -1870,15 +1874,15 @@ declare type DocumentsStoreInterface = {
|
|
|
1870
1874
|
loader: Loader;
|
|
1871
1875
|
};
|
|
1872
1876
|
declare type PostDocumentsResponse = {
|
|
1873
|
-
documents: DocumentModel[];
|
|
1877
|
+
documents: DocumentModel$1[];
|
|
1874
1878
|
};
|
|
1875
1879
|
declare type DocumentAgentInterface = {
|
|
1876
1880
|
postDocuments: (body: any, ...params: any) => Promise<PostDocumentsResponse>;
|
|
1877
|
-
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel>;
|
|
1878
|
-
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel>;
|
|
1881
|
+
patchDocument: (id: number, body: any, ...params: any) => Promise<DocumentModel$1>;
|
|
1882
|
+
deleteDocument: (id: number, ...params: any) => Promise<DocumentModel$1>;
|
|
1879
1883
|
};
|
|
1880
1884
|
declare type DocumentsAgentInterface = {
|
|
1881
|
-
getDocuments?: (...params: any) => Promise<DocumentModel[]>;
|
|
1885
|
+
getDocuments?: (...params: any) => Promise<DocumentModel$1[]>;
|
|
1882
1886
|
} & DocumentAgentInterface;
|
|
1883
1887
|
|
|
1884
1888
|
declare type MetroLineParams = {
|
|
@@ -1949,7 +1953,7 @@ declare type ApartmentFeatureModel = {
|
|
|
1949
1953
|
};
|
|
1950
1954
|
declare type ApartmentDocumentModel = {
|
|
1951
1955
|
id: number;
|
|
1952
|
-
document: DocumentModel;
|
|
1956
|
+
document: DocumentModel$1;
|
|
1953
1957
|
expiration_date: string;
|
|
1954
1958
|
start_date: string;
|
|
1955
1959
|
number: string;
|
|
@@ -1962,7 +1966,7 @@ declare type MeterCommonInfoModel = {
|
|
|
1962
1966
|
tariff?: TariffLinkModel;
|
|
1963
1967
|
activation_date?: string;
|
|
1964
1968
|
check_date?: string;
|
|
1965
|
-
type?: ElectricityMeterTypes | WaterMeterTypes;
|
|
1969
|
+
type?: ElectricityMeterTypes$1 | WaterMeterTypes$1;
|
|
1966
1970
|
apartment: ApartmentLinkModel;
|
|
1967
1971
|
company: CompanyLiteParams;
|
|
1968
1972
|
operating_account_number?: string | null;
|
|
@@ -2083,7 +2087,7 @@ declare type ApartmentModel = {
|
|
|
2083
2087
|
owner_id: number;
|
|
2084
2088
|
metro_stations: ApartmentMetroParams[];
|
|
2085
2089
|
rental_status: RentalStatuses;
|
|
2086
|
-
main_image: ImageModel;
|
|
2090
|
+
main_image: ImageModel$1;
|
|
2087
2091
|
tv_type: TVTypes | null;
|
|
2088
2092
|
inspection: ApartmentInspectionModel;
|
|
2089
2093
|
distance_to_center_kilometers: number | null;
|
|
@@ -2110,7 +2114,7 @@ declare type ApartmentLiteModel = {
|
|
|
2110
2114
|
renter: LiteUserModel | null;
|
|
2111
2115
|
rental_status: RentalStatuses;
|
|
2112
2116
|
renter_payment_status: RentalPaymentStatuses;
|
|
2113
|
-
main_image: ImageModel;
|
|
2117
|
+
main_image: ImageModel$1;
|
|
2114
2118
|
service_contract?: ServiceContractLiteModel;
|
|
2115
2119
|
is_imported_from_old_crm?: boolean;
|
|
2116
2120
|
max_electricity_counters?: number | null;
|
|
@@ -2156,7 +2160,7 @@ declare type ObjectForMapModel = {
|
|
|
2156
2160
|
apartment_number: string;
|
|
2157
2161
|
address: string;
|
|
2158
2162
|
geolocation: LatLonParams;
|
|
2159
|
-
main_image: ImageModel;
|
|
2163
|
+
main_image: ImageModel$1;
|
|
2160
2164
|
renter: ClientLiteModel | null;
|
|
2161
2165
|
owner: ClientLiteModel;
|
|
2162
2166
|
metro_stations: ApartmentMetroStationModel[];
|
|
@@ -2188,13 +2192,13 @@ declare class DocumentStore implements FileStoreInterface {
|
|
|
2188
2192
|
agent: DocumentAgentInterface;
|
|
2189
2193
|
loader: Loader;
|
|
2190
2194
|
settings?: any;
|
|
2191
|
-
constructor(document: DocumentModel, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2195
|
+
constructor(document: DocumentModel$1, documentsStore: DocumentsStoreInterface, agent: DocumentAgentInterface, settings?: any);
|
|
2192
2196
|
patchDocument: (data: UploadDocumentParams, ...params: any) => Promise<void>;
|
|
2193
|
-
updateDocument: (res: DocumentModel) => void;
|
|
2197
|
+
updateDocument: (res: DocumentModel$1) => void;
|
|
2194
2198
|
deleteDocument: (...params: any) => Promise<void>;
|
|
2195
2199
|
get extension(): string;
|
|
2196
2200
|
get title(): string;
|
|
2197
|
-
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest;
|
|
2201
|
+
static getDocumentBody: (data: UploadDocumentParams) => FileBodyRequest$1;
|
|
2198
2202
|
}
|
|
2199
2203
|
|
|
2200
2204
|
type InputTypes =
|
|
@@ -2254,13 +2258,13 @@ declare type FileParams = {
|
|
|
2254
2258
|
size?: number | null;
|
|
2255
2259
|
file: File;
|
|
2256
2260
|
};
|
|
2257
|
-
declare type UploadedFileParams = FileBodyRequest | ImageBodyRequest | VideoBodyRequest | null;
|
|
2261
|
+
declare type UploadedFileParams = FileBodyRequest$1 | ImageBodyRequest$1 | VideoBodyRequest$1 | null;
|
|
2258
2262
|
declare type FileStoreParams = {
|
|
2259
2263
|
id?: number | null;
|
|
2260
2264
|
url?: string;
|
|
2261
2265
|
index?: number | string | null;
|
|
2262
2266
|
createdBy?: string | null;
|
|
2263
|
-
visibility?: DocumentVisibilityAPIVariants;
|
|
2267
|
+
visibility?: DocumentVisibilityAPIVariants$1;
|
|
2264
2268
|
name?: string;
|
|
2265
2269
|
date?: string | null;
|
|
2266
2270
|
size?: number | null;
|
|
@@ -2425,8 +2429,8 @@ declare const FillingTagsAgent: {
|
|
|
2425
2429
|
};
|
|
2426
2430
|
|
|
2427
2431
|
declare const TariffsAgent: {
|
|
2428
|
-
all: (tariff: ResourceTypes, offset: number, limit: number, params: string) => Promise<any>;
|
|
2429
|
-
createTariff: (data: PostTariffRequest, tariff: ResourceTypes) => Promise<any>;
|
|
2432
|
+
all: (tariff: ResourceTypes$1, offset: number, limit: number, params: string) => Promise<any>;
|
|
2433
|
+
createTariff: (data: PostTariffRequest, tariff: ResourceTypes$1) => Promise<any>;
|
|
2430
2434
|
};
|
|
2431
2435
|
|
|
2432
2436
|
type SignInFormFields = {
|
|
@@ -2445,8 +2449,8 @@ declare const ApartmentsAgent: {
|
|
|
2445
2449
|
};
|
|
2446
2450
|
|
|
2447
2451
|
declare const ApartmentMetersAgent: {
|
|
2448
|
-
getMeters: (apartmentId: number, resource: ResourceTypes, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2449
|
-
getLightMeters: (apartmentId: number, resource: ResourceTypes) => Promise<any>;
|
|
2452
|
+
getMeters: (apartmentId: number, resource: ResourceTypes$1, year: number, month: number, contractId?: number | null | undefined, queryParams?: string | undefined) => Promise<any>;
|
|
2453
|
+
getLightMeters: (apartmentId: number, resource: ResourceTypes$1) => Promise<any>;
|
|
2450
2454
|
};
|
|
2451
2455
|
|
|
2452
2456
|
declare const requests: {
|
|
@@ -2470,7 +2474,7 @@ declare const meterUnitLabel: {
|
|
|
2470
2474
|
electricity: string;
|
|
2471
2475
|
};
|
|
2472
2476
|
|
|
2473
|
-
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields | FileStore, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2477
|
+
declare const setFileFromFileWithVisibility: (formData: FormData, document: InputFileWithVisibilityFields$1 | FileStore$1, fileField: string, nameField?: string | undefined, visibilityField?: string | undefined, withUrl?: boolean | undefined) => void;
|
|
2474
2478
|
|
|
2475
2479
|
declare const getPositiveNumberSchema: (settings?: any) => yup.NumberSchema<number, yup.AnyObject, undefined, "">;
|
|
2476
2480
|
declare const phoneWithConditionSchema: (condition: string, settings?: any) => yup.ObjectSchema<{
|
|
@@ -2486,34 +2490,34 @@ declare const phoneNonRequiredSchema: (name: string, settings?: any) => yup.Obje
|
|
|
2486
2490
|
}, "">;
|
|
2487
2491
|
|
|
2488
2492
|
declare const getBodyForPostImage: (data: Partial<FileParams>) => FormData;
|
|
2489
|
-
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields | File | FileStore) => FormData;
|
|
2493
|
+
declare const getBodyForPostFile: (file: InputFileWithVisibilityFields$1 | File | FileStore$1) => FormData;
|
|
2490
2494
|
declare const getBodyForPostDocument: (file: UploadDocumentParams) => FormData;
|
|
2491
|
-
declare const getBodyForFileRequest: (file: FileWithVisibility | DocumentWithVisibility | UploadDocumentParams | FileStore, res?: UploadFileResponse | undefined) => {
|
|
2495
|
+
declare const getBodyForFileRequest: (file: FileWithVisibility$1 | DocumentWithVisibility | UploadDocumentParams | FileStore$1, res?: UploadFileResponse | undefined) => {
|
|
2492
2496
|
temp_file_id: number;
|
|
2493
2497
|
name: string;
|
|
2494
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2498
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2495
2499
|
url: string;
|
|
2496
2500
|
} | null;
|
|
2497
|
-
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest | null;
|
|
2498
|
-
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest | null;
|
|
2499
|
-
declare const getPatchFileParams: (file: InputFileWithVisibilityFields | FileStore) => {
|
|
2501
|
+
declare const getBodyForImageRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => ImageBodyRequest$1 | null;
|
|
2502
|
+
declare const getBodyForVideoRequest: (file: UploadFileParams$1, res?: UploadFileResponse | undefined) => VideoBodyRequest$1 | null;
|
|
2503
|
+
declare const getPatchFileParams: (file: InputFileWithVisibilityFields$1 | FileStore$1) => {
|
|
2500
2504
|
name: string;
|
|
2501
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2505
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2502
2506
|
} | null;
|
|
2503
|
-
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields | null) => Promise<FileBodyRequest | {
|
|
2507
|
+
declare const getUpdatedFileParams: (loader: Loader, document?: InputFileWithVisibilityFields$1 | null) => Promise<FileBodyRequest$1 | {
|
|
2504
2508
|
name: string;
|
|
2505
|
-
visibility: DocumentVisibilityAPIVariants;
|
|
2509
|
+
visibility: DocumentVisibilityAPIVariants$1;
|
|
2506
2510
|
} | null>;
|
|
2507
|
-
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore) => Promise<ImageBodyRequest | null>;
|
|
2508
|
-
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore) => Promise<VideoBodyRequest | null>;
|
|
2509
|
-
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest[]>;
|
|
2510
|
-
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest[]>;
|
|
2511
|
-
declare const uploadFile: (loader: Loader, file: FileWithVisibility | DocumentWithVisibility | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2512
|
-
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields | File | FileStore, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2513
|
-
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<(FileBodyRequest | null)[]>;
|
|
2514
|
-
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields | File)[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2515
|
-
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest[]>;
|
|
2516
|
-
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest | null>;
|
|
2511
|
+
declare const uploadImage: (loader: Loader, image: UploadFileParams$1 | FileStore$1) => Promise<ImageBodyRequest$1 | null>;
|
|
2512
|
+
declare const uploadVideo: (loader: Loader, video: UploadFileParams$1 | FileStore$1) => Promise<VideoBodyRequest$1 | null>;
|
|
2513
|
+
declare const uploadImages: (loader: Loader, images: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<ImageBodyRequest$1[]>;
|
|
2514
|
+
declare const uploadVideos: (loader: Loader, videos: UploadFileParams$1[], callback?: Function | undefined, url?: string | undefined) => Promise<VideoBodyRequest$1[]>;
|
|
2515
|
+
declare const uploadFile: (loader: Loader, file: FileWithVisibility$1 | DocumentWithVisibility | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2516
|
+
declare const uploadNewFile: (loader: Loader, document: InputFileWithVisibilityFields$1 | File | FileStore$1, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2517
|
+
declare const uploadFilesWithoutFilter: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<(FileBodyRequest$1 | null)[]>;
|
|
2518
|
+
declare const uploadFiles: (loader: Loader, files: (InputFileWithVisibilityFields$1 | File)[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2519
|
+
declare const uploadDocuments: (loader: Loader, documents: UploadDocumentParams[], url?: string | undefined) => Promise<FileBodyRequest$1[]>;
|
|
2520
|
+
declare const uploadDocument: (loader: Loader, file: UploadDocumentParams, url?: string | undefined) => Promise<FileBodyRequest$1 | null>;
|
|
2517
2521
|
|
|
2518
2522
|
declare const matchesAPISubjectRoles: {
|
|
2519
2523
|
maroom: string;
|
|
@@ -2606,16 +2610,16 @@ declare const getInspectionFeedbackStatus: (feedback: InspectionFeedbackInterfac
|
|
|
2606
2610
|
declare const getVideoDurationInSeconds: (file: File) => Promise<number>;
|
|
2607
2611
|
|
|
2608
2612
|
declare class FilesStore {
|
|
2609
|
-
files: FileStore[];
|
|
2613
|
+
files: FileStore$1[];
|
|
2610
2614
|
variant: FileVariant;
|
|
2611
2615
|
constructor(variant: FileVariant);
|
|
2612
|
-
addFile: (newFile: FileStore) => void;
|
|
2616
|
+
addFile: (newFile: FileStore$1) => void;
|
|
2613
2617
|
removeFile: (index: number) => void;
|
|
2614
|
-
setFiles: (files: FileStore[]) => void;
|
|
2618
|
+
setFiles: (files: FileStore$1[]) => void;
|
|
2615
2619
|
uploadFiles: () => Promise<void>;
|
|
2616
|
-
get uploadedData(): (FileBodyRequest | ImageBodyRequest)[];
|
|
2620
|
+
get uploadedData(): (FileBodyRequest$1 | ImageBodyRequest$1)[];
|
|
2617
2621
|
get uploadedAllFiles(): boolean;
|
|
2618
|
-
get notUploadedFiles(): FileStore[];
|
|
2622
|
+
get notUploadedFiles(): FileStore$1[];
|
|
2619
2623
|
get isUploading(): boolean;
|
|
2620
2624
|
get videoLength(): number;
|
|
2621
2625
|
get nonVideoLength(): number;
|
|
@@ -2637,7 +2641,7 @@ declare type UploadMediaToStoreSettings = {
|
|
|
2637
2641
|
messages?: UploadMediaMessages;
|
|
2638
2642
|
withoutFilesStore?: boolean;
|
|
2639
2643
|
};
|
|
2640
|
-
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore) => void) | undefined) => Promise<void>;
|
|
2644
|
+
declare const uploadMediaToStore: (e: SyntheticEvent<HTMLInputElement>, filesStore: FilesStore, loader: Loader, settings: UploadMediaToStoreSettings, onAdd?: ((file: FileStore$1) => void) | undefined) => Promise<void>;
|
|
2641
2645
|
|
|
2642
2646
|
declare const useAutocomplete: (filter: SortingFilter, paginator: Paginator, fetchAll: () => void, isOpen: boolean, defaultFilter?: string | undefined, withoutRequest?: boolean | undefined, deps?: DependencyList | undefined) => {
|
|
2643
2647
|
onSearchItem: (value: string) => void;
|
|
@@ -2809,11 +2813,11 @@ type DistrictAutocompleteFields = {
|
|
|
2809
2813
|
type ReplaceableTariffFields = {
|
|
2810
2814
|
name: string
|
|
2811
2815
|
id?: number
|
|
2812
|
-
type?: ResourceTypes
|
|
2816
|
+
type?: ResourceTypes$1
|
|
2813
2817
|
}
|
|
2814
2818
|
|
|
2815
2819
|
type TariffCommonFields = {
|
|
2816
|
-
resourceType: ResourceTypes
|
|
2820
|
+
resourceType: ResourceTypes$1
|
|
2817
2821
|
name: string
|
|
2818
2822
|
startDate: DateTime
|
|
2819
2823
|
replaceableTariffsGroups: ReplaceableTariffFields[]
|
|
@@ -2825,7 +2829,7 @@ type TariffCommonFields = {
|
|
|
2825
2829
|
}
|
|
2826
2830
|
|
|
2827
2831
|
type ElectricityTariffCreationFormFields = {
|
|
2828
|
-
type: ElectricityMeterTypes
|
|
2832
|
+
type: ElectricityMeterTypes$1
|
|
2829
2833
|
isOverallConsumption: boolean
|
|
2830
2834
|
T1?: number
|
|
2831
2835
|
T2?: number
|
|
@@ -2846,7 +2850,7 @@ type TariffCreationFormProps = {
|
|
|
2846
2850
|
handleClose: () => void
|
|
2847
2851
|
createTariff: (data: TariffCreationFormFields) => Promise<void>
|
|
2848
2852
|
creationForm: MultistepForm$1<TariffCreationFormFields>
|
|
2849
|
-
defaultResource: ResourceTypes
|
|
2853
|
+
defaultResource: ResourceTypes$1
|
|
2850
2854
|
settings?: any
|
|
2851
2855
|
}
|
|
2852
2856
|
|
|
@@ -2891,7 +2895,7 @@ declare class TariffsLiteStore {
|
|
|
2891
2895
|
creationForm: MultistepForm$1<TariffCreationFormFields>;
|
|
2892
2896
|
settings?: any;
|
|
2893
2897
|
constructor(settings?: any);
|
|
2894
|
-
fetchAll: (resource: ResourceTypes) => Promise<void>;
|
|
2898
|
+
fetchAll: (resource: ResourceTypes$1) => Promise<void>;
|
|
2895
2899
|
createTariff: (data: TariffCreationFormFields) => Promise<TariffGroupLiteParams>;
|
|
2896
2900
|
static getTariffParams: (tariff: CommonTariffModel) => {
|
|
2897
2901
|
id: number;
|
|
@@ -2899,7 +2903,7 @@ declare class TariffsLiteStore {
|
|
|
2899
2903
|
};
|
|
2900
2904
|
static getCreationBody: (data: TariffCreationFormFields) => PostTariffRequest;
|
|
2901
2905
|
static getTariffValues: (data: TariffCreationFormFields) => {
|
|
2902
|
-
type: ElectricityMeterTypes;
|
|
2906
|
+
type: ElectricityMeterTypes$1;
|
|
2903
2907
|
T1: string | undefined;
|
|
2904
2908
|
T2: string | undefined;
|
|
2905
2909
|
T3: string | undefined;
|
|
@@ -3193,7 +3197,7 @@ type TariffGroupAutocompleteProps<TFormValues> = {
|
|
|
3193
3197
|
name?: string
|
|
3194
3198
|
label?: string
|
|
3195
3199
|
hideName?: string
|
|
3196
|
-
resource: ResourceTypes
|
|
3200
|
+
resource: ResourceTypes$1
|
|
3197
3201
|
filter?: string
|
|
3198
3202
|
filterRequired?: boolean
|
|
3199
3203
|
settings?: any
|
|
@@ -3206,7 +3210,7 @@ type TariffGroupAutocompleteFields = {
|
|
|
3206
3210
|
}
|
|
3207
3211
|
|
|
3208
3212
|
type MeterFeaturesFieldsProps = {
|
|
3209
|
-
resource?: ResourceTypes
|
|
3213
|
+
resource?: ResourceTypes$1
|
|
3210
3214
|
replacements?: LiteMeterInterface[]
|
|
3211
3215
|
isNewResource?: boolean
|
|
3212
3216
|
handleSubmit: (data: MeterFeaturesFormFields) => void
|
|
@@ -3220,7 +3224,7 @@ type MeterFeaturesFieldsProps = {
|
|
|
3220
3224
|
withNextCheck?: boolean
|
|
3221
3225
|
defaultValues?: Partial<MeterFeaturesFormFields>
|
|
3222
3226
|
handleMeterTypeChange?: (
|
|
3223
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3227
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3224
3228
|
) => void
|
|
3225
3229
|
settings?: any
|
|
3226
3230
|
disabledInitial?: boolean
|
|
@@ -3233,14 +3237,14 @@ type BasicMeterFeaturesFormFields = {
|
|
|
3233
3237
|
initialValueT1?: number
|
|
3234
3238
|
initialValueT2?: number
|
|
3235
3239
|
initialValueT3?: number
|
|
3236
|
-
type?: MeterTypes
|
|
3237
|
-
resource?: ResourceTypes
|
|
3240
|
+
type?: MeterTypes$1
|
|
3241
|
+
resource?: ResourceTypes$1
|
|
3238
3242
|
withAutoSending?: boolean
|
|
3239
3243
|
}
|
|
3240
3244
|
|
|
3241
3245
|
type MeterFeaturesFormFields = {
|
|
3242
3246
|
tariff: TariffGroupAutocompleteFields | null
|
|
3243
|
-
company: CompanyAutocompleteFields | null
|
|
3247
|
+
company: CompanyAutocompleteFields$1 | null
|
|
3244
3248
|
nextCheck: DateTime | null
|
|
3245
3249
|
lastValue?: number
|
|
3246
3250
|
lastValueT1?: number
|
|
@@ -3254,8 +3258,8 @@ type MeterFeaturesFormFields = {
|
|
|
3254
3258
|
} & BasicMeterFeaturesFormFields
|
|
3255
3259
|
|
|
3256
3260
|
type BasicMeterFieldsSettings = {
|
|
3257
|
-
resource?: ResourceTypes
|
|
3258
|
-
meterType?: MeterTypes
|
|
3261
|
+
resource?: ResourceTypes$1
|
|
3262
|
+
meterType?: MeterTypes$1
|
|
3259
3263
|
disabledInitial?: boolean
|
|
3260
3264
|
}
|
|
3261
3265
|
|
|
@@ -3287,10 +3291,10 @@ declare const basicFieldsOfNewResourceMeter: (settings: BasicMeterFieldsSettings
|
|
|
3287
3291
|
declare const getMeterFields: (settings: RenderMeterFieldsSettings, inputsSettings?: any) => InputByTypeProps<MeterFeaturesFormFields>[];
|
|
3288
3292
|
|
|
3289
3293
|
type MeterTypeRadioGroupProps = {
|
|
3290
|
-
resource?: ResourceTypes
|
|
3294
|
+
resource?: ResourceTypes$1
|
|
3291
3295
|
form: UseFormReturn<any>
|
|
3292
3296
|
handleChange: (
|
|
3293
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3297
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3294
3298
|
) => void
|
|
3295
3299
|
disabled?: boolean
|
|
3296
3300
|
waterOptions?: OptionParams[]
|
|
@@ -3302,7 +3306,7 @@ declare function MeterTypeRadioGroup(props: MeterTypeRadioGroupProps): JSX.Eleme
|
|
|
3302
3306
|
type MeterFeaturesFormProps = {
|
|
3303
3307
|
formStore?: MultistepForm$1<any>
|
|
3304
3308
|
handleMeterTypeChange?: (
|
|
3305
|
-
meterType: ElectricityMeterTypes | WaterMeterTypes | null
|
|
3309
|
+
meterType: ElectricityMeterTypes$1 | WaterMeterTypes$1 | null
|
|
3306
3310
|
) => void
|
|
3307
3311
|
} & Omit<MeterFeaturesFieldsProps, "setIsReplaceable">
|
|
3308
3312
|
|
|
@@ -3370,7 +3374,7 @@ declare const getCommonTariffFieldsSchema: (settings?: any) => yup.ObjectSchema<
|
|
|
3370
3374
|
startDate: undefined;
|
|
3371
3375
|
}, "">;
|
|
3372
3376
|
|
|
3373
|
-
declare const getElectricityTariffFields: (type: ElectricityMeterTypes, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3377
|
+
declare const getElectricityTariffFields: (type: ElectricityMeterTypes$1, isOverallConsumption: boolean, prefix?: string | undefined, withBreak?: boolean | undefined, settings?: any) => InputByTypeProps<any>[];
|
|
3374
3378
|
|
|
3375
3379
|
type TariffCreationModalProps = TariffCreationFormProps & ModalProps
|
|
3376
3380
|
|
|
@@ -3386,7 +3390,7 @@ declare function TariffReplacementField(props: TariffReplacementFieldProps): JSX
|
|
|
3386
3390
|
|
|
3387
3391
|
type TariffReplacementFieldsProps = {
|
|
3388
3392
|
form: UseFormReturn<TariffCommonFields>
|
|
3389
|
-
resource: ResourceTypes
|
|
3393
|
+
resource: ResourceTypes$1
|
|
3390
3394
|
setReplaceable: (value: boolean) => void
|
|
3391
3395
|
settings?: any
|
|
3392
3396
|
}
|
|
@@ -3461,7 +3465,7 @@ declare const AdaptiveImagesBlock: React$1.ForwardRefExoticComponent<Pick<{
|
|
|
3461
3465
|
mobileWidth?: number | undefined;
|
|
3462
3466
|
onAdd?: (() => void) | undefined;
|
|
3463
3467
|
disabled?: boolean | undefined;
|
|
3464
|
-
} & Omit<kui_basic.GridProps, "onPointerEnterCapture" | "onPointerLeaveCapture" | "placeholder">, "resource" | "id" | "key" | "is" | "dir" | "slot" | "style" | "title" | "onSelect" | "
|
|
3468
|
+
} & Omit<kui_basic.GridProps, "onPointerEnterCapture" | "onPointerLeaveCapture" | "placeholder">, "resource" | "id" | "disabled" | "key" | "is" | "dir" | "slot" | "style" | "title" | "onSelect" | "children" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "alignContent" | "alignItems" | "direction" | "container" | "justify" | "item" | "xs" | "sm" | "lg" | "onDelete" | "mobileWidth" | "wrap" | "spacing" | "md" | "xl" | "images" | "endComponent" | "imageWidth" | "onAdd"> & React$1.RefAttributes<unknown>>;
|
|
3465
3469
|
|
|
3466
3470
|
declare const GalleryWithThumbnails: React$1.ForwardRefExoticComponent<Pick<{
|
|
3467
3471
|
images?: AdaptiveImageParams[] | undefined;
|
|
@@ -3470,7 +3474,7 @@ declare const GalleryWithThumbnails: React$1.ForwardRefExoticComponent<Pick<{
|
|
|
3470
3474
|
disabled?: boolean | undefined;
|
|
3471
3475
|
withCleanUp?: boolean | undefined;
|
|
3472
3476
|
renderHeader?: ((swiperRef: React$1.RefObject<SwiperRef>, activeSlide: number) => React$1.ReactNode) | undefined;
|
|
3473
|
-
} & Omit<kui_basic.ModalProps, "onPointerEnterCapture" | "onPointerLeaveCapture" | "placeholder">, "resource" | "id" | "key" | "is" | "size" | "dir" | "slot" | "style" | "title" | "isOpen" | "onSelect" | "
|
|
3477
|
+
} & Omit<kui_basic.ModalProps, "onPointerEnterCapture" | "onPointerLeaveCapture" | "placeholder">, "resource" | "id" | "disabled" | "key" | "is" | "size" | "dir" | "slot" | "style" | "title" | "isOpen" | "onSelect" | "children" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "description" | "handleClose" | "icon" | "isScrollable" | "isHasHeader" | "withAutoClosing" | "onDelete" | "images" | "withCleanUp" | "activeSlide" | "renderHeader"> & React$1.RefAttributes<unknown>>;
|
|
3474
3478
|
|
|
3475
3479
|
type ImageCardProps = {
|
|
3476
3480
|
onClick: (index: number) => void
|
|
@@ -3666,7 +3670,7 @@ declare const AccordionWithSummary: React$1.ForwardRefExoticComponent<Pick<{
|
|
|
3666
3670
|
detailsProps?: React$1.HTMLAttributes<HTMLDivElement> | undefined;
|
|
3667
3671
|
onChange?: ((expanded: boolean) => void) | undefined;
|
|
3668
3672
|
expanded?: boolean | undefined;
|
|
3669
|
-
} & Omit<kui_basic.AccordionSummaryProps, "onChange">, "resource" | "id" | "key" | "is" | "dir" | "slot" | "style" | "title" | "onSelect" | "
|
|
3673
|
+
} & Omit<kui_basic.AccordionSummaryProps, "onChange">, "resource" | "id" | "disabled" | "key" | "is" | "dir" | "slot" | "style" | "title" | "onSelect" | "children" | "onChange" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "placeholder" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "detailsBlock" | "expandIcon" | "contentStyles" | "expandedStyles" | "iconStyles" | "expanded" | "titleSize" | "detailsProps"> & React$1.RefAttributes<unknown>>;
|
|
3670
3674
|
|
|
3671
3675
|
type OptionDropdownType = {
|
|
3672
3676
|
icon?: ReactNode
|
|
@@ -3736,7 +3740,7 @@ declare const LoadingWithSparkles: React$1.ForwardRefExoticComponent<{
|
|
|
3736
3740
|
declare const BigCheckbox: React__default.ForwardRefExoticComponent<Pick<{
|
|
3737
3741
|
form: react_hook_form.UseFormReturn<any, any, any>;
|
|
3738
3742
|
value?: boolean | undefined;
|
|
3739
|
-
} & kui_basic.CheckboxProps, "required" | "resource" | "value" | "id" | "type" | "accept" | "error" | "name" | "key" | "is" | "size" | "dir" | "form" | "label" | "slot" | "style" | "title" | "height" | "width" | "onSelect" | "pattern" | "
|
|
3743
|
+
} & kui_basic.CheckboxProps, "required" | "resource" | "value" | "id" | "type" | "accept" | "disabled" | "error" | "name" | "key" | "is" | "size" | "dir" | "form" | "label" | "slot" | "style" | "title" | "height" | "width" | "onSelect" | "pattern" | "children" | "onChange" | "onPointerEnterCapture" | "onPointerLeaveCapture" | "alt" | "autoComplete" | "autoFocus" | "capture" | "checked" | "crossOrigin" | "enterKeyHint" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "list" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "placeholder" | "readOnly" | "src" | "step" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "lang" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "inputRef"> & React__default.RefAttributes<HTMLButtonElement>>;
|
|
3740
3744
|
|
|
3741
3745
|
type FormStepsIndicatorProps = {
|
|
3742
3746
|
active: number
|
|
@@ -3802,7 +3806,7 @@ type UploadPhotosButtonProps = {
|
|
|
3802
3806
|
declare const _default$3: (props: UploadPhotosButtonProps) => JSX.Element;
|
|
3803
3807
|
|
|
3804
3808
|
type UploadedImageProps = {
|
|
3805
|
-
image: FileStore
|
|
3809
|
+
image: FileStore$1
|
|
3806
3810
|
index: number
|
|
3807
3811
|
onClick: (index: number) => void
|
|
3808
3812
|
onDelete: (index: number) => void
|
|
@@ -3835,15 +3839,15 @@ declare type PartialMeterValuesFields = {
|
|
|
3835
3839
|
};
|
|
3836
3840
|
declare type PartialMeterInfoFields = {
|
|
3837
3841
|
id: number;
|
|
3838
|
-
resource: ResourceTypes;
|
|
3839
|
-
type?: MeterTypes;
|
|
3842
|
+
resource: ResourceTypes$1;
|
|
3843
|
+
type?: MeterTypes$1;
|
|
3840
3844
|
number: string;
|
|
3841
|
-
images: FileStore[];
|
|
3845
|
+
images: FileStore$1[];
|
|
3842
3846
|
maxValue?: PartialMeterValuesFields;
|
|
3843
3847
|
minValue?: PartialMeterValuesFields;
|
|
3844
3848
|
values: PartialMeterValuesFields;
|
|
3845
3849
|
} & PartialMeterValuesFields;
|
|
3846
|
-
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>[];
|
|
3850
|
+
declare const getPartialMeterInfoFields: (resource: ResourceTypes$1, type?: MeterTypes$1 | undefined, meter?: PartialMeterInfoFields | undefined, withCheckValue?: boolean | undefined, name?: string | null | undefined, settings?: any | null, required?: boolean | undefined) => InputParams<any>[];
|
|
3847
3851
|
|
|
3848
3852
|
declare const getFillingInfoFieldsSchema: (requiredMessage: string) => yup.ObjectSchema<{
|
|
3849
3853
|
type: string | undefined;
|
|
@@ -3870,4 +3874,4 @@ type SignInPageProps = {
|
|
|
3870
3874
|
|
|
3871
3875
|
declare const _default: (props: SignInPageProps) => JSX.Element;
|
|
3872
3876
|
|
|
3873
|
-
export { APIPayerValues, APIPayerValuesWithoutInvoice, APISubjectRoles, AccordionWithSummary, ActivateConditions, AdaptiveImageParams, AdaptiveImagesBlock, AdaptiveImagesBlockProps, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFieldsStore, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetersAgent, ApartmentMetroItem, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApartmentsAgent, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, AuthAgent, AutoMeterWarningBillet, BasicMeterFeaturesFormFields, BasicMeterFieldsSettings, BigCheckbox, BooleanValues, Breadcrumbs, CatalogItemModel, CatalogItemParams, CatalogsAgent, ChangeReasonField, ChangeReasonFields, ChangeReasonFieldsProps, ChangeReasonFormFields, getChangeReasonSchema as ChangeReasonSchema, CheckboxWithHint, CitiesStore, _default$o as CityAutocomplete, CityAutocompleteFields, CityAutocompleteProps, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, getCommonTariffFieldsSchema as CommonTariffFieldsSchema, CommonTariffModel, CompaniesAgent, CompaniesStore, CompanyAPITypes, _default$n as CompanyAutocomplete, CompanyAutocompleteFields, CompanyByTinRequestBody, CompanyCreationFields, CompanyCreationForm, CompanyCreationFormProps, _default$m as CompanyCreationModal, CompanyFields, CompanyInfoModel, _default$b as CompanyInnAutocomplete, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, CompanyTypesValues, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CopyButton, CounterpartyModel, CountriesStore, _default$q as CountryAutocomplete, CountryAutocompleteFields, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, _default$f as DistrictAutocomplete, DistrictModel, DistrictParams, DistrictsStore, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants, DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, _default$8 as DropdownMenu, DropdownMenuBase, DropdownMenuProps, DropdownMenuWithPortal, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, ElectricityTariffCreationFields, ElectricityValues, EmptyType, EntityLinkParams, ErrorPopup, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStore, FileStoreInterface, FileStoreParams, FileUploaderWithPreview, FileVariant, FileWithVisibility, FilesStore, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagCreationForm, _default$j as FillingTagCreationModal, FillingTagModel, FillingTagParams, FillingTagsAgent, _default$i as FillingTagsAutocomplete, FillingTagsAutocompleteFields, FillingTagsAutocompleteProps, FillingTagsStore, FillingTypeValues, FillingTypes, FixedCostModel, FixedCostParams, FormBottom, FormBottomProps, FormBottomWrapper, FormStepsIndicator, FormWrapper, FormWrapperProps, FullInspectionCommonFields, _default$9 as FullSlider, FullSliderModal, GalleryWithThumbnails, GasMetersResponse, GasTariffCreationFields, GasTypes, GasTypesValues, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GridAdaptiveContainer, GroupedFillingParams, HeadingWithButton, HeatingMetersResponse, HeatingTariffCreationFields, HouseInfoModelFields, HouseTypes, HouseTypesValues, ImageBodyRequest, ImageCard, ImageCardProps, ImageCardWithBackdrop, ImageModel, ImageParams, ImageStore, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, ImpairmentsTypeValues, InitialInspectionModel, InitialInspectionModelFields, InputByType, InputByTypeProps, InputFileWithVisibility, InputFileWithVisibilityFields, InputParams, InputPassword, InputTypes, _default$4 as InputWithAddressAutocomplete, InputWithAddressFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFieldsSettings, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypeValues, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, KUICrmSettings, kuiSettings as KUISettings, LatLonParams, LifecycleStatuses, Link, LinkField, LinkProps, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus, LoaderPopup, _default$c as LoaderState, LoadingWithSparkles, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, _default$l as MapComponent, MapOverlay, MapStore, MaxMetersInfoParams, MeterCommonInfoModel, MeterFeaturesFields, MeterFeaturesFieldsProps, _default$h as MeterFeaturesForm, MeterFeaturesFormFields, MeterFeaturesFormProps, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypeRadioGroup, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, _default$7 as MetroAutocomplete, _default$6 as MetroBlock, _default$5 as MetroBlockForModal, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, MetroStore, Modal, ModalProps, _default$k as ModalWithMap, _default$a as MultistepForm, NumberField, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OpenMapButton, OptionDropdownType, OverlapTypes, PageBreadcrumbs, PaginationRes, ParkingTypes, ParkingTypesValues, PartialMeterInfoFields, PartialMeterInfoParams, PartialMeterValuesFields, PartialPayer, PartialPayerFields, PartialPayerProps, PartialPayerValues, PartialPayerVariants, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PhotoSlider, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, PreviewContent, PreviewImageCard, ReceiverPaymentCompanyModel, _default$p as RegionAutocomplete, RegionAutocompleteFields, RegionAutocompleteProps, RegionModel, RegionParams, RegionsStore, RegularInspectionFields, RegularInspectionModel, RenderMeterFieldsSettings, RenovationParams, RenovationStyle, RenovationStyleValues, RenovationType, RenovationTypeValues, RentPeriodTypeValues, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, _default$g as ReplaceableCountersBlock, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, ResourceValues, RoomModel, RoomParams, RoomType, RoomTypeValues, RoomTypes, RoomTypesValues, RoommateParams, ScrollingContainer, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInFormFields, _default as SignInPage, SignInParams, SingleMeterParams, SlabsTypesValues, SliderThumbnails, SquarePreviewImage, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TVTypesValues, TableBottomLoading, TagModel, TariffCreationFieldsProps, _default$d as TariffCreationForm, TariffCreationFormFields, TariffCreationFormProps, TariffCreationModal, TariffCreationValuesFields, _default$e as TariffGroupAutocomplete, TariffGroupAutocompleteFields, TariffGroupLiteParams, TariffLinkModel, TariffReplacementField, TariffReplacementFields, TariffStatuses, TariffsAgent, TariffsLiteStore, TaxResidenceType, TaxResidenceValues, TaxTypeValues, TaxesTypes, TextOverflow, Tooltip, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, TwoOptionForAutocomplete, UnitOfPaymentTypes, UnitOfPaymentValues, UploadAgent, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, _default$3 as UploadPhotosButton, UploadedFileParams, _default$2 as UploadedPhotoWithStatus, _default$1 as UploadedPhotosGallery, UsedResourcesModel, UserBadge, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WallMaterialsValues, WarningBillet, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WaterTariffCreationFields, WaterValues, WifiParams, apartmentFields, authFlag, basicFieldsOfNewResourceMeter, csrfTokenKey, defaultRequiredMessage, fieldWithConditionSchema, genderMatches, getApartmentDetailInfoFields, getApartmentPaymentFields, getBodyForFileRequest, getBodyForImageRequest, getBodyForPostDocument, getBodyForPostFile, getBodyForPostImage, getBodyForVideoRequest, getElectricityTariffFields, getFillingInfoFields, getFillingInfoFieldsSchema, getInspectionFeedbackStatus, getMeterFeaturesFieldsSchema, getMeterFields, getMeterValuesFieldsSchema, getNumbersValues, getPartialMeterInfoFields, getPatchFileParams, getPositiveNumberSchema, getUpdatedFileParams, getUtilitiesPayerParams, getVideoDurationInSeconds, matchesAPICompanyTypes, matchesAPIFillingTypes, matchesAPISubjectRoles, matchesAPIVisibilityVariants, matchesApartmentStatuses, matchesCompanyTypes, matchesFillingTypes, matchesServiceTypes, matchesSubjectRoles, matchesVisibilityVariants, meterUnitLabel, phoneNonRequiredSchema, phoneWithConditionSchema, requests, sessionIdKey, setFileFromFileWithVisibility, setNestedNameValue, uploadDocument, uploadDocuments, uploadFile, uploadFiles, uploadFilesWithoutFilter, uploadImage, uploadImages, uploadMediaToStore, uploadNewFile, uploadVideo, uploadVideos, useAutocomplete, useFetchPage, useMapCards, usePaginationPage, usePortalPosition, useScrollWithBottomSpacing };
|
|
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 };
|