kui-crm 0.0.574 → 0.0.575

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 CHANGED
@@ -685,11 +685,13 @@ declare type InspectionFeedbackInterface = {
685
685
  };
686
686
  declare type PatchInspectionImageParams = {
687
687
  id?: number;
688
+ order?: number;
688
689
  } & Partial<ImageBodyRequest$1>;
689
690
  declare type PatchInspectionVideoParams = {
690
691
  id?: number;
691
692
  } & Partial<VideoBodyRequest$1>;
692
693
  declare type PatchRoomImagesParams = {
694
+ id?: number | null;
693
695
  purpose: InspectionRoomPhotoTypes;
694
696
  comment?: string;
695
697
  photos: PatchInspectionImageParams[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kui-crm",
3
- "version": "0.0.574",
3
+ "version": "0.0.575",
4
4
  "description": "crm complex fields",
5
5
  "main": "./cjs/index.js",
6
6
  "types": "./index.d.ts",
package/types/index.d.ts CHANGED
@@ -1494,11 +1494,13 @@ declare type InspectionFeedbackInterface = {
1494
1494
  };
1495
1495
  declare type PatchInspectionImageParams = {
1496
1496
  id?: number;
1497
+ order?: number;
1497
1498
  } & Partial<ImageBodyRequest>;
1498
1499
  declare type PatchInspectionVideoParams = {
1499
1500
  id?: number;
1500
1501
  } & Partial<VideoBodyRequest>;
1501
1502
  declare type PatchRoomImagesParams = {
1503
+ id?: number | null;
1502
1504
  purpose: InspectionRoomPhotoTypes;
1503
1505
  comment?: string;
1504
1506
  photos: PatchInspectionImageParams[];