kui-crm_actions 0.0.19 → 0.0.21
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 +6 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -3,7 +3,7 @@ import { RoomType, CountryModel, RegionModel, CityModel, CountyModel, DistrictMo
|
|
3
3
|
import * as yup from 'yup';
|
4
4
|
import { Loader, MultistepForm } from 'kui-utils';
|
5
5
|
import { DateTime } from 'luxon';
|
6
|
-
import UploadFileParams$
|
6
|
+
import UploadFileParams$2, { UploadFileParams as UploadFileParams$1 } from 'kui-complex/dist/FileItem';
|
7
7
|
import { InputWithAddressFields } from 'kui-complex/dist/InputWithAddressAutocomplete';
|
8
8
|
import { ReactElement } from 'react';
|
9
9
|
|
@@ -126,6 +126,7 @@ type InspectionMeterFields$1 = {
|
|
126
126
|
id?: number
|
127
127
|
resource: ResourceTypes$1
|
128
128
|
passportFile?: InputFileWithVisibilityFields
|
129
|
+
images: UploadFileParams$1[]
|
129
130
|
} & MeterFeaturesFormFields
|
130
131
|
|
131
132
|
type InspectionMetersStepFields$1 = {
|
@@ -156,7 +157,7 @@ type InspectionRoomPhotoTypes =
|
|
156
157
|
| "room"
|
157
158
|
| "entrance"
|
158
159
|
| "others"
|
159
|
-
| "
|
160
|
+
| "toilet"
|
160
161
|
| "combined_bathroom"
|
161
162
|
| "keys"
|
162
163
|
|
@@ -168,7 +169,7 @@ type CommonInspectionFormFields = () => {
|
|
168
169
|
|
169
170
|
type InspectionRoomImagesParams = {
|
170
171
|
type: InspectionRoomPhotoTypes
|
171
|
-
files: UploadFileParams$
|
172
|
+
files: UploadFileParams$2[]
|
172
173
|
comment: string
|
173
174
|
}
|
174
175
|
|
@@ -398,7 +399,7 @@ type InspectionMeterFields = {
|
|
398
399
|
id?: number
|
399
400
|
resource: ResourceTypes
|
400
401
|
passportFile?: InputFileWithVisibilityFields
|
401
|
-
images: UploadFileParams$
|
402
|
+
images: UploadFileParams$1[]
|
402
403
|
} & MeterFeaturesFormFields
|
403
404
|
|
404
405
|
type InspectionMetersStepFields = {
|
@@ -406,7 +407,7 @@ type InspectionMetersStepFields = {
|
|
406
407
|
}
|
407
408
|
|
408
409
|
type FillingInfoStepFields = {
|
409
|
-
images: UploadFileParams$
|
410
|
+
images: UploadFileParams$1[]
|
410
411
|
} & FillingInfoFormFields$1
|
411
412
|
|
412
413
|
type FillingListInfoStepFields = {
|