kui-crm 0.0.172 → 0.0.174
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 +8 -6
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
package/index.d.ts
CHANGED
|
@@ -585,6 +585,7 @@ declare type InspectionFillingParams = {
|
|
|
585
585
|
amount?: number | string | null;
|
|
586
586
|
photos: ImageBodyRequest[];
|
|
587
587
|
instruction?: FileBodyRequest | null;
|
|
588
|
+
was_missing?: boolean;
|
|
588
589
|
};
|
|
589
590
|
declare type InspectionMeterValueModel = {
|
|
590
591
|
cold?: string | number | null;
|
|
@@ -653,6 +654,7 @@ declare type TransferInspectionFields = {
|
|
|
653
654
|
} & FullInspectionCommonFields;
|
|
654
655
|
declare type RegularInspectionFields = {
|
|
655
656
|
meters: TransferInspectionMeterModel[];
|
|
657
|
+
filling: InspectionFillingModel[];
|
|
656
658
|
};
|
|
657
659
|
declare type ComparableObjectModel = {
|
|
658
660
|
id: number;
|
|
@@ -2290,12 +2292,12 @@ declare const _default$b: typeof ModalWithMap;
|
|
|
2290
2292
|
|
|
2291
2293
|
declare function OpenMapButton(props: OpenMapButtonProps): JSX.Element;
|
|
2292
2294
|
|
|
2293
|
-
type ImageCardProps$1 = {
|
|
2294
|
-
url: string
|
|
2295
|
-
onDelete
|
|
2296
|
-
onClick?: (index?: number) => void
|
|
2297
|
-
index?: number
|
|
2298
|
-
disabled?: boolean
|
|
2295
|
+
type ImageCardProps$1 = {
|
|
2296
|
+
url: string
|
|
2297
|
+
onDelete?: ((index?: number) => void) | false
|
|
2298
|
+
onClick?: (index?: number) => void
|
|
2299
|
+
index?: number
|
|
2300
|
+
disabled?: boolean
|
|
2299
2301
|
}
|
|
2300
2302
|
|
|
2301
2303
|
declare function PreviewImageCard(props: ImageCardProps$1): JSX.Element;
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1215,6 +1215,7 @@ declare type InspectionFillingParams = {
|
|
|
1215
1215
|
amount?: number | string | null;
|
|
1216
1216
|
photos: ImageBodyRequest[];
|
|
1217
1217
|
instruction?: FileBodyRequest | null;
|
|
1218
|
+
was_missing?: boolean;
|
|
1218
1219
|
};
|
|
1219
1220
|
declare type InspectionMeterValueModel = {
|
|
1220
1221
|
cold?: string | number | null;
|
|
@@ -1283,6 +1284,7 @@ declare type TransferInspectionFields = {
|
|
|
1283
1284
|
} & FullInspectionCommonFields;
|
|
1284
1285
|
declare type RegularInspectionFields = {
|
|
1285
1286
|
meters: TransferInspectionMeterModel[];
|
|
1287
|
+
filling: InspectionFillingModel[];
|
|
1286
1288
|
};
|
|
1287
1289
|
declare type ComparableObjectModel = {
|
|
1288
1290
|
id: number;
|