kui-crm 0.0.593 → 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 +74 -70
- package/package.json +1 -1
- package/types/index.d.ts +70 -66
- package/utils/index.d.ts +69 -66
package/index.d.ts
CHANGED
|
@@ -864,71 +864,6 @@ declare type ContractTermAcceptationModel = {
|
|
|
864
864
|
comment: string;
|
|
865
865
|
};
|
|
866
866
|
|
|
867
|
-
declare type RoommateParams = {};
|
|
868
|
-
declare type RentalInspectionParams = {
|
|
869
|
-
id: number;
|
|
870
|
-
rental_contract_id?: string;
|
|
871
|
-
date: string;
|
|
872
|
-
is_ok?: boolean;
|
|
873
|
-
is_fixed?: boolean;
|
|
874
|
-
note: string;
|
|
875
|
-
};
|
|
876
|
-
declare type ClosingRentalContractFields = {
|
|
877
|
-
have_closing_transfer_inspection?: boolean;
|
|
878
|
-
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
879
|
-
have_last_meters_filled?: boolean;
|
|
880
|
-
have_closing_impairments?: boolean;
|
|
881
|
-
have_closed_last_period?: boolean;
|
|
882
|
-
have_calculated_deposit?: boolean;
|
|
883
|
-
};
|
|
884
|
-
declare type RentalContractModel = {
|
|
885
|
-
id: number;
|
|
886
|
-
renter: CounterpartyModel;
|
|
887
|
-
owner: LiteUserModel;
|
|
888
|
-
renter_id: number;
|
|
889
|
-
number: string;
|
|
890
|
-
apartment: ApartmentLinkModel;
|
|
891
|
-
owner_id?: string;
|
|
892
|
-
sign_date: string;
|
|
893
|
-
start_date: string;
|
|
894
|
-
end_date?: string;
|
|
895
|
-
close_date?: string;
|
|
896
|
-
month_payment: string;
|
|
897
|
-
day_of_payment?: number;
|
|
898
|
-
termination_showing_days?: number;
|
|
899
|
-
termination_penalty: string;
|
|
900
|
-
initial_commission: string;
|
|
901
|
-
security_payment: string;
|
|
902
|
-
auto_prolongate: boolean;
|
|
903
|
-
installment: number;
|
|
904
|
-
rental_type: RentalTypes;
|
|
905
|
-
roommates_ids?: RoommateParams[];
|
|
906
|
-
status?: ContractStatuses;
|
|
907
|
-
inspections?: RentalInspectionParams[];
|
|
908
|
-
service_contract_id?: number;
|
|
909
|
-
next_inspection: string | null;
|
|
910
|
-
planned_leave_date: string;
|
|
911
|
-
inspection_interval_month?: number;
|
|
912
|
-
allowable_price_deviation?: number;
|
|
913
|
-
renter_payment_status: RentalPaymentStatuses;
|
|
914
|
-
notification_period: number;
|
|
915
|
-
allowed_pets?: boolean;
|
|
916
|
-
allowed_children?: boolean;
|
|
917
|
-
allowed_smoking?: boolean;
|
|
918
|
-
utility_payers?: UtilityPayerModel[];
|
|
919
|
-
closing_conditions: ClosingRentalContractFields;
|
|
920
|
-
first_appraisal_interval_month: number;
|
|
921
|
-
estate_agent?: ClientLiteModel;
|
|
922
|
-
edit_condition?: EditConditions;
|
|
923
|
-
activate_condition?: ActivateConditions;
|
|
924
|
-
planned_leave_date_setted_at?: string;
|
|
925
|
-
roommates: LiteUserModel[];
|
|
926
|
-
public_offer_status?: OfferSignStatuses;
|
|
927
|
-
terms_acceptation?: ContractTermAcceptationModel;
|
|
928
|
-
representative?: ClientLinkModel | null;
|
|
929
|
-
is_transferred_by_tenant?: boolean;
|
|
930
|
-
};
|
|
931
|
-
|
|
932
867
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
933
868
|
declare type FixedCostModel = {
|
|
934
869
|
name: string;
|
|
@@ -1025,6 +960,75 @@ declare type ServiceContractListModel = {
|
|
|
1025
960
|
rental_type: RentalTypes;
|
|
1026
961
|
};
|
|
1027
962
|
|
|
963
|
+
declare type RoommateParams = {};
|
|
964
|
+
declare type RentalInspectionParams = {
|
|
965
|
+
id: number;
|
|
966
|
+
rental_contract_id?: string;
|
|
967
|
+
date: string;
|
|
968
|
+
is_ok?: boolean;
|
|
969
|
+
is_fixed?: boolean;
|
|
970
|
+
note: string;
|
|
971
|
+
};
|
|
972
|
+
declare type ClosingRentalContractFields = {
|
|
973
|
+
have_closing_transfer_inspection?: boolean;
|
|
974
|
+
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
975
|
+
have_last_meters_filled?: boolean;
|
|
976
|
+
have_closing_impairments?: boolean;
|
|
977
|
+
have_closed_last_period?: boolean;
|
|
978
|
+
have_calculated_deposit?: boolean;
|
|
979
|
+
};
|
|
980
|
+
declare type RentChargeTypes = "default" | "fix";
|
|
981
|
+
declare type UtilityChargeTypes = "inherit" | "disabled";
|
|
982
|
+
declare type RentalContractModel = {
|
|
983
|
+
id: number;
|
|
984
|
+
renter: CounterpartyModel;
|
|
985
|
+
owner: LiteUserModel;
|
|
986
|
+
renter_id: number;
|
|
987
|
+
number: string;
|
|
988
|
+
apartment: ApartmentLinkModel;
|
|
989
|
+
owner_id?: string;
|
|
990
|
+
sign_date: string;
|
|
991
|
+
start_date: string;
|
|
992
|
+
end_date?: string;
|
|
993
|
+
close_date?: string;
|
|
994
|
+
month_payment: string;
|
|
995
|
+
day_of_payment?: number;
|
|
996
|
+
termination_showing_days?: number;
|
|
997
|
+
termination_penalty: string;
|
|
998
|
+
initial_commission: string;
|
|
999
|
+
security_payment: string;
|
|
1000
|
+
auto_prolongate: boolean;
|
|
1001
|
+
installment: number;
|
|
1002
|
+
rental_type: RentalTypes;
|
|
1003
|
+
roommates_ids?: RoommateParams[];
|
|
1004
|
+
inspections?: RentalInspectionParams[];
|
|
1005
|
+
service_contract_id?: number;
|
|
1006
|
+
next_inspection: string | null;
|
|
1007
|
+
planned_leave_date: string;
|
|
1008
|
+
inspection_interval_month?: number;
|
|
1009
|
+
allowable_price_deviation?: number;
|
|
1010
|
+
renter_payment_status: RentalPaymentStatuses;
|
|
1011
|
+
notification_period: number;
|
|
1012
|
+
allowed_pets?: boolean;
|
|
1013
|
+
allowed_children?: boolean;
|
|
1014
|
+
allowed_smoking?: boolean;
|
|
1015
|
+
utility_payers?: UtilityPayerModel[];
|
|
1016
|
+
closing_conditions: ClosingRentalContractFields;
|
|
1017
|
+
first_appraisal_interval_month: number;
|
|
1018
|
+
estate_agent?: ClientLiteModel;
|
|
1019
|
+
edit_condition?: EditConditions;
|
|
1020
|
+
activate_condition?: ActivateConditions;
|
|
1021
|
+
planned_leave_date_setted_at?: string;
|
|
1022
|
+
roommates: LiteUserModel[];
|
|
1023
|
+
public_offer_status?: OfferSignStatuses;
|
|
1024
|
+
terms_acceptation?: ContractTermAcceptationModel;
|
|
1025
|
+
representative?: ClientLinkModel | null;
|
|
1026
|
+
is_transferred_by_tenant?: boolean;
|
|
1027
|
+
state: ServiceContractStatusStateModel;
|
|
1028
|
+
rent_charge_type: RentChargeTypes;
|
|
1029
|
+
utility_charge_type: UtilityChargeTypes;
|
|
1030
|
+
};
|
|
1031
|
+
|
|
1028
1032
|
declare type SignInParams = {
|
|
1029
1033
|
phone: string;
|
|
1030
1034
|
password: string;
|
|
@@ -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
|
|
@@ -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$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, 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, 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 };
|
|
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 };
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -586,71 +586,6 @@ declare type ContractTermAcceptationModel = {
|
|
|
586
586
|
comment: string;
|
|
587
587
|
};
|
|
588
588
|
|
|
589
|
-
declare type RoommateParams = {};
|
|
590
|
-
declare type RentalInspectionParams = {
|
|
591
|
-
id: number;
|
|
592
|
-
rental_contract_id?: string;
|
|
593
|
-
date: string;
|
|
594
|
-
is_ok?: boolean;
|
|
595
|
-
is_fixed?: boolean;
|
|
596
|
-
note: string;
|
|
597
|
-
};
|
|
598
|
-
declare type ClosingRentalContractFields = {
|
|
599
|
-
have_closing_transfer_inspection?: boolean;
|
|
600
|
-
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
601
|
-
have_last_meters_filled?: boolean;
|
|
602
|
-
have_closing_impairments?: boolean;
|
|
603
|
-
have_closed_last_period?: boolean;
|
|
604
|
-
have_calculated_deposit?: boolean;
|
|
605
|
-
};
|
|
606
|
-
declare type RentalContractModel = {
|
|
607
|
-
id: number;
|
|
608
|
-
renter: CounterpartyModel;
|
|
609
|
-
owner: LiteUserModel;
|
|
610
|
-
renter_id: number;
|
|
611
|
-
number: string;
|
|
612
|
-
apartment: ApartmentLinkModel;
|
|
613
|
-
owner_id?: string;
|
|
614
|
-
sign_date: string;
|
|
615
|
-
start_date: string;
|
|
616
|
-
end_date?: string;
|
|
617
|
-
close_date?: string;
|
|
618
|
-
month_payment: string;
|
|
619
|
-
day_of_payment?: number;
|
|
620
|
-
termination_showing_days?: number;
|
|
621
|
-
termination_penalty: string;
|
|
622
|
-
initial_commission: string;
|
|
623
|
-
security_payment: string;
|
|
624
|
-
auto_prolongate: boolean;
|
|
625
|
-
installment: number;
|
|
626
|
-
rental_type: RentalTypes;
|
|
627
|
-
roommates_ids?: RoommateParams[];
|
|
628
|
-
status?: ContractStatuses;
|
|
629
|
-
inspections?: RentalInspectionParams[];
|
|
630
|
-
service_contract_id?: number;
|
|
631
|
-
next_inspection: string | null;
|
|
632
|
-
planned_leave_date: string;
|
|
633
|
-
inspection_interval_month?: number;
|
|
634
|
-
allowable_price_deviation?: number;
|
|
635
|
-
renter_payment_status: RentalPaymentStatuses;
|
|
636
|
-
notification_period: number;
|
|
637
|
-
allowed_pets?: boolean;
|
|
638
|
-
allowed_children?: boolean;
|
|
639
|
-
allowed_smoking?: boolean;
|
|
640
|
-
utility_payers?: UtilityPayerModel[];
|
|
641
|
-
closing_conditions: ClosingRentalContractFields;
|
|
642
|
-
first_appraisal_interval_month: number;
|
|
643
|
-
estate_agent?: ClientLiteModel;
|
|
644
|
-
edit_condition?: EditConditions;
|
|
645
|
-
activate_condition?: ActivateConditions;
|
|
646
|
-
planned_leave_date_setted_at?: string;
|
|
647
|
-
roommates: LiteUserModel[];
|
|
648
|
-
public_offer_status?: OfferSignStatuses;
|
|
649
|
-
terms_acceptation?: ContractTermAcceptationModel;
|
|
650
|
-
representative?: ClientLinkModel | null;
|
|
651
|
-
is_transferred_by_tenant?: boolean;
|
|
652
|
-
};
|
|
653
|
-
|
|
654
589
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
655
590
|
declare type FixedCostModel = {
|
|
656
591
|
name: string;
|
|
@@ -747,6 +682,75 @@ declare type ServiceContractListModel = {
|
|
|
747
682
|
rental_type: RentalTypes;
|
|
748
683
|
};
|
|
749
684
|
|
|
685
|
+
declare type RoommateParams = {};
|
|
686
|
+
declare type RentalInspectionParams = {
|
|
687
|
+
id: number;
|
|
688
|
+
rental_contract_id?: string;
|
|
689
|
+
date: string;
|
|
690
|
+
is_ok?: boolean;
|
|
691
|
+
is_fixed?: boolean;
|
|
692
|
+
note: string;
|
|
693
|
+
};
|
|
694
|
+
declare type ClosingRentalContractFields = {
|
|
695
|
+
have_closing_transfer_inspection?: boolean;
|
|
696
|
+
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
697
|
+
have_last_meters_filled?: boolean;
|
|
698
|
+
have_closing_impairments?: boolean;
|
|
699
|
+
have_closed_last_period?: boolean;
|
|
700
|
+
have_calculated_deposit?: boolean;
|
|
701
|
+
};
|
|
702
|
+
declare type RentChargeTypes = "default" | "fix";
|
|
703
|
+
declare type UtilityChargeTypes = "inherit" | "disabled";
|
|
704
|
+
declare type RentalContractModel = {
|
|
705
|
+
id: number;
|
|
706
|
+
renter: CounterpartyModel;
|
|
707
|
+
owner: LiteUserModel;
|
|
708
|
+
renter_id: number;
|
|
709
|
+
number: string;
|
|
710
|
+
apartment: ApartmentLinkModel;
|
|
711
|
+
owner_id?: string;
|
|
712
|
+
sign_date: string;
|
|
713
|
+
start_date: string;
|
|
714
|
+
end_date?: string;
|
|
715
|
+
close_date?: string;
|
|
716
|
+
month_payment: string;
|
|
717
|
+
day_of_payment?: number;
|
|
718
|
+
termination_showing_days?: number;
|
|
719
|
+
termination_penalty: string;
|
|
720
|
+
initial_commission: string;
|
|
721
|
+
security_payment: string;
|
|
722
|
+
auto_prolongate: boolean;
|
|
723
|
+
installment: number;
|
|
724
|
+
rental_type: RentalTypes;
|
|
725
|
+
roommates_ids?: RoommateParams[];
|
|
726
|
+
inspections?: RentalInspectionParams[];
|
|
727
|
+
service_contract_id?: number;
|
|
728
|
+
next_inspection: string | null;
|
|
729
|
+
planned_leave_date: string;
|
|
730
|
+
inspection_interval_month?: number;
|
|
731
|
+
allowable_price_deviation?: number;
|
|
732
|
+
renter_payment_status: RentalPaymentStatuses;
|
|
733
|
+
notification_period: number;
|
|
734
|
+
allowed_pets?: boolean;
|
|
735
|
+
allowed_children?: boolean;
|
|
736
|
+
allowed_smoking?: boolean;
|
|
737
|
+
utility_payers?: UtilityPayerModel[];
|
|
738
|
+
closing_conditions: ClosingRentalContractFields;
|
|
739
|
+
first_appraisal_interval_month: number;
|
|
740
|
+
estate_agent?: ClientLiteModel;
|
|
741
|
+
edit_condition?: EditConditions;
|
|
742
|
+
activate_condition?: ActivateConditions;
|
|
743
|
+
planned_leave_date_setted_at?: string;
|
|
744
|
+
roommates: LiteUserModel[];
|
|
745
|
+
public_offer_status?: OfferSignStatuses;
|
|
746
|
+
terms_acceptation?: ContractTermAcceptationModel;
|
|
747
|
+
representative?: ClientLinkModel | null;
|
|
748
|
+
is_transferred_by_tenant?: boolean;
|
|
749
|
+
state: ServiceContractStatusStateModel;
|
|
750
|
+
rent_charge_type: RentChargeTypes;
|
|
751
|
+
utility_charge_type: UtilityChargeTypes;
|
|
752
|
+
};
|
|
753
|
+
|
|
750
754
|
declare type ImpairmentTypes = "damages" | "wear_tear";
|
|
751
755
|
declare type PeriodStatus = "new" | "closed" | "overdue";
|
|
752
756
|
declare type FillingTypes = "finish" | "furniture" | "appliance" | "accessorie";
|
|
@@ -2164,4 +2168,4 @@ declare type MetroStationParams = {
|
|
|
2164
2168
|
status: string;
|
|
2165
2169
|
};
|
|
2166
2170
|
|
|
2167
|
-
export { APISubjectRoles, ActivateConditions, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, CatalogItemModel, CatalogItemParams, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, CommonTariffModel, CompanyAPITypes, CompanyByTinRequestBody, CompanyInfoModel, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CounterpartyModel, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, DistrictModel, DistrictParams, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants$1 as DocumentVisibilityVariants, DocumentWithVisibility$1 as DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, EmptyType, EntityLinkParams, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStoreInterface, FileStoreParams$1 as FileStoreParams, FileVariant$1 as FileVariant, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagModel, FillingTagParams, FillingTypes, FixedCostModel, FixedCostParams, FullInspectionCommonFields, GasMetersResponse, GasTypes, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GroupedFillingParams, HeatingMetersResponse, HouseInfoModelFields, HouseTypes, ImageBodyRequest, ImageModel, ImageParams, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, InitialInspectionModel, InitialInspectionModelFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, LatLonParams, LifecycleStatuses, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus$1 as LoadStatus, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, MaxMetersInfoParams, MeterCommonInfoModel, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OverlapTypes, PaginationRes, ParkingTypes, PartialMeterInfoParams, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, ReceiverPaymentCompanyModel, RegionModel, RegionParams, RegularInspectionFields, RegularInspectionModel, RenovationParams, RenovationStyle, RenovationType, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, RoomModel, RoomParams, RoomType, RoomTypes, RoommateParams, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInParams, SingleMeterParams, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TagModel, TariffGroupLiteParams, TariffLinkModel, TariffStatuses, TaxResidenceType, TaxesTypes, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, UnitOfPaymentTypes, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UploadedFileParams$1 as UploadedFileParams, UsedResourcesModel, UserNamesModel, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WifiParams };
|
|
2171
|
+
export { APISubjectRoles, ActivateConditions, AddressWithLocationParams, AdministrativeCompany, AdministrativeCompanyModel, ApartmentAdministrativeCompany, ApartmentContractTypes, ApartmentDescriptionFormFields, ApartmentDescriptionParams, ApartmentDetailInfoModelFields, ApartmentDetailInfoParams, ApartmentDocumentModel, ApartmentFeatureModel, ApartmentFillingAPIVariants, ApartmentFillingVariants, ApartmentHouseInfoParams, ApartmentInspectionListModel, ApartmentInspectionModel, ApartmentLinkModel, ApartmentLinkParams, ApartmentLiteModel, ApartmentLockerParams, ApartmentMainInfoModelFields, ApartmentMainInfoParams, ApartmentMeterAccounts, ApartmentMeterValues, ApartmentMetroParams, ApartmentMetroStationModel, ApartmentMetroStationsParams, ApartmentMetroWithCustomParams, ApartmentModel, ApartmentOverviewInfoFields, ApartmentOverviewPaymentInfoFields, ApartmentPartialDescriptionParams, ApartmentPartialModel, ApartmentPaymentInfoParams, ApartmentResourceCompanyDetails, ApartmentResourceCompanyModel, ApartmentResourceFieldsParams, ApartmentResourceInterface, ApartmentResourceModel, ApartmentResourceTypes, ApartmentResourceTypesAPI, ApartmentResourcesResponse, ApartmentSecurityInfoParams, ApartmentSimpleModel, ApartmentTelecommunicationInfoParams, ApartmentWithHouseInfoModelFields, ApiTokenAuthResponse, AppraisalInspectionFields, AppraisalInspectionModel, AppraisalOfferModel, AppraisalOfferParams, AppraisalRequestModel, AppraisalRequestModelFields, AppraisalTenantChoice, AppraisalTenantOfferModel, AppraisalType, CatalogItemModel, CatalogItemParams, CityModel, CityParams, ClientLinkModel, ClientLiteModel, ClientRoles, ClientSimpleParams, ClientTypes, ClosingRentalContractFields, ClosingServiceContractFields, CoOwnerModel, CoOwnerParams, CommonMeterParams, CommonTariffModel, CompanyAPITypes, CompanyByTinRequestBody, CompanyInfoModel, CompanyLiteParams, CompanyLogoModel, CompanyMainInfoModel, CompanyMainOfficeModel, CompanyModel, CompanyOfficeModel, CompanyOfficeWithoutIdModel, CompanyParams, CompanyTypes$1 as CompanyTypes, ComparableObjectModel, ComparableObjectParams, ContractLinkModel, ContractPeriodTypes, ContractStatuses, ContractTermAcceptationModel, ContractTermAcceptationStatuses, CounterpartyModel, CountryModel, CountryParams, CountyModel, CountyParams, DataSubmissionDaysParams, DataTransferFormats, DataTransmissionFormats, DeepPartial, DetailObjectInfoInterface, DistrictModel, DistrictParams, DocumentAgentInterface, DocumentModel, DocumentVisibilityAPIVariants, DocumentVisibilityVariants$1 as DocumentVisibilityVariants, DocumentWithVisibility$1 as DocumentWithVisibility, DocumentsAgentInterface, DocumentsStoreInterface, EditConditions, ElectricityMeterParams, ElectricityMeterTypes, ElectricityMeterValues, ElectricityMetersResponse, EmptyType, EntityLinkParams, FetchApartmentOwnersResponse, FetchApartmentsResponse, FieldsSettings, FileBodyRequest, FileModel, FileParams, FileStoreInterface, FileStoreParams$1 as FileStoreParams, FileVariant$1 as FileVariant, FilesStoreInterface, FillingFullParams, FillingInfoFormFields, FillingListItemModel, FillingParams, FillingTagModel, FillingTagParams, FillingTypes, FixedCostModel, FixedCostParams, FullInspectionCommonFields, GasMetersResponse, GasTypes, GenderAPIVariants, GeolocationParams, GetCatalogResponse, GetCitiesResponse, GetCommonTariffsResponse, GetCompaniesResponse, GetCountiesResponse, GetCountriesResponse, GetDistrictsResponse, GetLockersResponse, GetRegionsResponse, GetResidentialComplexesResponse, GetTagsResponse, GroupedFillingParams, HeatingMetersResponse, HouseInfoModelFields, HouseTypes, ImageBodyRequest, ImageModel, ImageParams, ImageStoreInterface, ImpairmentModel, ImpairmentType, ImpairmentTypes, ImpairmentsInspectionModel, InitialInspectionModel, InitialInspectionModelFields, InspectionBasedOnModel, InspectionBasedOnParams, InspectionCommonFields, InspectionConditionReasons, InspectionContractModel, InspectionEditConditionModel, InspectionFeedbackInterface, InspectionFeedbackModel, InspectionFeedbackParams, InspectionFeedbackStatus, InspectionFeedbackStatuses, InspectionFillingModel, InspectionFillingParams, InspectionMeterCommonInfo, InspectionMeterFields, InspectionMeterInfoParams, InspectionMeterValueModel, InspectionMetersInfoParams, InspectionModel, InspectionPartialMetersInfoParams, InspectionPaymentInfoParams, InspectionResourcesModel, InspectionRoomPhotoModel, InspectionRoomPhotoTypes, InspectionSignersModel, InspectionStatus, InspectionTypes, InternetProviderModel, InternetProviderParams, InventoryInspectionFields, InventoryInspectionMeterModel, InventoryInspectionModel, LatLonParams, LifecycleStatuses, LiteMeterInterface, LiteObjectModel, LiteUserModel, LoadStatus$1 as LoadStatus, LockerAutocompleteFields, LockerModel, LockerParams, MainObjectInfoInterface, MaxMetersInfoParams, MeterCommonInfoModel, MeterModel, MeterPayerModel, MeterTariffModel, MeterTypes, MeterValues, MetersCountParams, MetersLightResponse, MetersResponse, MetersResponseBody, MetroLineModel, MetroLineParams, MetroStationModel, MetroStationParams, MetroStationsFields, ObjectForMapModel, ObjectMetroStationParams, ObjectType, OfferSignStatuses, OverlapTypes, PaginationRes, ParkingTypes, PartialMeterInfoParams, PatchApartmentParams, PatchBillingInfoParams, PatchCompanyParams, PatchDocumentRequest, PatchFileParams, PatchInspectionImageParams, PatchInspectionVideoParams, PatchRoomImagesParams, PaymentStatuses, PeriodStatus, PhoneParams, PostCommonTariffParams, PostCompaniesRequest, PostDocumentsResponse, PostElectricityTariffRequest, PostGasTariffRequest, PostHeatingTariffRequest, PostInspectionFillingListModel, PostInspectionFillingModel, PostTariffRequest, PostWaterTariffRequest, ReceiverPaymentCompanyModel, RegionModel, RegionParams, RegularInspectionFields, RegularInspectionModel, RenovationParams, RenovationStyle, RenovationType, RentChargeTypes, RentPeriodTypes, RentalContractInfoValues, RentalContractModel, RentalInspectionParams, RentalPaymentStatuses, RentalStatuses, RentalTypes, RepresentativeModel, RepresentativeTypes, ResidentialComplexModel, ResidentialComplexParams, ResourceAccessParams, ResourcePaymentRoles, ResourceTypes, RoomModel, RoomParams, RoomType, RoomTypes, RoommateParams, SecurityObjectInfoInterface, ServiceContractFixedCostsFields, ServiceContractFlags, ServiceContractInfoValues, ServiceContractListModel, ServiceContractLiteModel, ServiceContractModel, ServiceContractStatusStateModel, ServiceContractSubStatuses, SettingsParams, SignInParams, SingleMeterParams, StatisticalEvaluationModel, StatisticalEvaluationParams, StatusStateModel, SubjectRoles, TVTypes, TagModel, TariffGroupLiteParams, TariffLinkModel, TariffStatuses, TaxResidenceType, TaxesTypes, TransferInspectionFields, TransferInspectionMeterModel, TransferInspectionModel, TransferInspectionTypes, TransitAccountModel, UnitOfPaymentTypes, UploadDocumentParams, UploadFileParams, UploadFileResponse, UploadImageParams, UploadedFileParams$1 as UploadedFileParams, UsedResourcesModel, UserNamesModel, UtilityChargeTypes, UtilityPayerModel, UtilityTypes, Values, ValuesParams, VideoBodyRequest, VideoModel, WallMaterials, WaterMeterParams, WaterMeterTypes, WaterMetersResponse, WifiParams };
|
package/utils/index.d.ts
CHANGED
|
@@ -24,7 +24,6 @@ declare type ClientTypes = "personal" | "company";
|
|
|
24
24
|
declare type RentalStatuses = "Rented out" | "Closed" | "Open";
|
|
25
25
|
declare type RentalPaymentStatuses = "rent_overdue" | "major_overdue" | "minor_overdue" | "rent_due" | "major_due" | "minor_due" | "all_paid";
|
|
26
26
|
declare type PaymentStatuses = "paid" | "unpaid" | "overdue" | null;
|
|
27
|
-
declare type ContractStatuses = "Closed" | "Rented out" | "New" | "Pending" | "Open" | "Closing" | "Archived";
|
|
28
27
|
declare type TaxResidenceType = "resident" | "not_resident";
|
|
29
28
|
declare type RentalTypes = "short" | "medium" | "long" | "any";
|
|
30
29
|
declare type DocumentVisibilityAPIVariants = "everybody" | "renter" | "owner" | "nobody";
|
|
@@ -353,71 +352,6 @@ declare type ContractTermAcceptationModel = {
|
|
|
353
352
|
comment: string;
|
|
354
353
|
};
|
|
355
354
|
|
|
356
|
-
declare type RoommateParams = {};
|
|
357
|
-
declare type RentalInspectionParams = {
|
|
358
|
-
id: number;
|
|
359
|
-
rental_contract_id?: string;
|
|
360
|
-
date: string;
|
|
361
|
-
is_ok?: boolean;
|
|
362
|
-
is_fixed?: boolean;
|
|
363
|
-
note: string;
|
|
364
|
-
};
|
|
365
|
-
declare type ClosingRentalContractFields = {
|
|
366
|
-
have_closing_transfer_inspection?: boolean;
|
|
367
|
-
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
368
|
-
have_last_meters_filled?: boolean;
|
|
369
|
-
have_closing_impairments?: boolean;
|
|
370
|
-
have_closed_last_period?: boolean;
|
|
371
|
-
have_calculated_deposit?: boolean;
|
|
372
|
-
};
|
|
373
|
-
declare type RentalContractModel = {
|
|
374
|
-
id: number;
|
|
375
|
-
renter: CounterpartyModel;
|
|
376
|
-
owner: LiteUserModel;
|
|
377
|
-
renter_id: number;
|
|
378
|
-
number: string;
|
|
379
|
-
apartment: ApartmentLinkModel;
|
|
380
|
-
owner_id?: string;
|
|
381
|
-
sign_date: string;
|
|
382
|
-
start_date: string;
|
|
383
|
-
end_date?: string;
|
|
384
|
-
close_date?: string;
|
|
385
|
-
month_payment: string;
|
|
386
|
-
day_of_payment?: number;
|
|
387
|
-
termination_showing_days?: number;
|
|
388
|
-
termination_penalty: string;
|
|
389
|
-
initial_commission: string;
|
|
390
|
-
security_payment: string;
|
|
391
|
-
auto_prolongate: boolean;
|
|
392
|
-
installment: number;
|
|
393
|
-
rental_type: RentalTypes;
|
|
394
|
-
roommates_ids?: RoommateParams[];
|
|
395
|
-
status?: ContractStatuses;
|
|
396
|
-
inspections?: RentalInspectionParams[];
|
|
397
|
-
service_contract_id?: number;
|
|
398
|
-
next_inspection: string | null;
|
|
399
|
-
planned_leave_date: string;
|
|
400
|
-
inspection_interval_month?: number;
|
|
401
|
-
allowable_price_deviation?: number;
|
|
402
|
-
renter_payment_status: RentalPaymentStatuses;
|
|
403
|
-
notification_period: number;
|
|
404
|
-
allowed_pets?: boolean;
|
|
405
|
-
allowed_children?: boolean;
|
|
406
|
-
allowed_smoking?: boolean;
|
|
407
|
-
utility_payers?: UtilityPayerModel[];
|
|
408
|
-
closing_conditions: ClosingRentalContractFields;
|
|
409
|
-
first_appraisal_interval_month: number;
|
|
410
|
-
estate_agent?: ClientLiteModel;
|
|
411
|
-
edit_condition?: EditConditions;
|
|
412
|
-
activate_condition?: ActivateConditions;
|
|
413
|
-
planned_leave_date_setted_at?: string;
|
|
414
|
-
roommates: LiteUserModel[];
|
|
415
|
-
public_offer_status?: OfferSignStatuses;
|
|
416
|
-
terms_acceptation?: ContractTermAcceptationModel;
|
|
417
|
-
representative?: ClientLinkModel | null;
|
|
418
|
-
is_transferred_by_tenant?: boolean;
|
|
419
|
-
};
|
|
420
|
-
|
|
421
355
|
declare type RentPeriodTypes = "short" | "medium" | "long" | "any";
|
|
422
356
|
declare type FixedCostModel = {
|
|
423
357
|
name: string;
|
|
@@ -504,6 +438,75 @@ declare type ServiceContractSubStatuses = "negotiation" | "appraisal" | "offer"
|
|
|
504
438
|
declare type ServiceContractFlags = "new" | "expiring_soon" | "overdue" | "n/a" | "attention" | "problem" | "vip" | "dispute";
|
|
505
439
|
declare type ServiceContractStatusStateModel = StatusStateModel<ServiceContractSubStatuses, ServiceContractFlags[]>;
|
|
506
440
|
|
|
441
|
+
declare type RoommateParams = {};
|
|
442
|
+
declare type RentalInspectionParams = {
|
|
443
|
+
id: number;
|
|
444
|
+
rental_contract_id?: string;
|
|
445
|
+
date: string;
|
|
446
|
+
is_ok?: boolean;
|
|
447
|
+
is_fixed?: boolean;
|
|
448
|
+
note: string;
|
|
449
|
+
};
|
|
450
|
+
declare type ClosingRentalContractFields = {
|
|
451
|
+
have_closing_transfer_inspection?: boolean;
|
|
452
|
+
have_closing_inspection_date_eq_contract_end_date?: boolean;
|
|
453
|
+
have_last_meters_filled?: boolean;
|
|
454
|
+
have_closing_impairments?: boolean;
|
|
455
|
+
have_closed_last_period?: boolean;
|
|
456
|
+
have_calculated_deposit?: boolean;
|
|
457
|
+
};
|
|
458
|
+
declare type RentChargeTypes = "default" | "fix";
|
|
459
|
+
declare type UtilityChargeTypes = "inherit" | "disabled";
|
|
460
|
+
declare type RentalContractModel = {
|
|
461
|
+
id: number;
|
|
462
|
+
renter: CounterpartyModel;
|
|
463
|
+
owner: LiteUserModel;
|
|
464
|
+
renter_id: number;
|
|
465
|
+
number: string;
|
|
466
|
+
apartment: ApartmentLinkModel;
|
|
467
|
+
owner_id?: string;
|
|
468
|
+
sign_date: string;
|
|
469
|
+
start_date: string;
|
|
470
|
+
end_date?: string;
|
|
471
|
+
close_date?: string;
|
|
472
|
+
month_payment: string;
|
|
473
|
+
day_of_payment?: number;
|
|
474
|
+
termination_showing_days?: number;
|
|
475
|
+
termination_penalty: string;
|
|
476
|
+
initial_commission: string;
|
|
477
|
+
security_payment: string;
|
|
478
|
+
auto_prolongate: boolean;
|
|
479
|
+
installment: number;
|
|
480
|
+
rental_type: RentalTypes;
|
|
481
|
+
roommates_ids?: RoommateParams[];
|
|
482
|
+
inspections?: RentalInspectionParams[];
|
|
483
|
+
service_contract_id?: number;
|
|
484
|
+
next_inspection: string | null;
|
|
485
|
+
planned_leave_date: string;
|
|
486
|
+
inspection_interval_month?: number;
|
|
487
|
+
allowable_price_deviation?: number;
|
|
488
|
+
renter_payment_status: RentalPaymentStatuses;
|
|
489
|
+
notification_period: number;
|
|
490
|
+
allowed_pets?: boolean;
|
|
491
|
+
allowed_children?: boolean;
|
|
492
|
+
allowed_smoking?: boolean;
|
|
493
|
+
utility_payers?: UtilityPayerModel[];
|
|
494
|
+
closing_conditions: ClosingRentalContractFields;
|
|
495
|
+
first_appraisal_interval_month: number;
|
|
496
|
+
estate_agent?: ClientLiteModel;
|
|
497
|
+
edit_condition?: EditConditions;
|
|
498
|
+
activate_condition?: ActivateConditions;
|
|
499
|
+
planned_leave_date_setted_at?: string;
|
|
500
|
+
roommates: LiteUserModel[];
|
|
501
|
+
public_offer_status?: OfferSignStatuses;
|
|
502
|
+
terms_acceptation?: ContractTermAcceptationModel;
|
|
503
|
+
representative?: ClientLinkModel | null;
|
|
504
|
+
is_transferred_by_tenant?: boolean;
|
|
505
|
+
state: ServiceContractStatusStateModel;
|
|
506
|
+
rent_charge_type: RentChargeTypes;
|
|
507
|
+
utility_charge_type: UtilityChargeTypes;
|
|
508
|
+
};
|
|
509
|
+
|
|
507
510
|
declare type PeriodStatus = "new" | "closed" | "overdue";
|
|
508
511
|
declare type ParkingTypes = "public" | "house" | "underground" | "multi_level";
|
|
509
512
|
declare type TVTypes = "no" | "cable" | "satellite" | "smart_tv";
|