@gizone/rrs-client 4.2.8-alpha.469 → 4.2.8-alpha.471

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.
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
13
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
13
14
  /**
14
15
  * 设备维保历史参数
15
16
  * @export
@@ -40,4 +41,22 @@ export interface MaintenanceHistoryDto {
40
41
  * @memberof MaintenanceHistoryDto
41
42
  */
42
43
  'status'?: WorkOrderStatusEnum;
44
+ /**
45
+ * 工单编号
46
+ * @type {string}
47
+ * @memberof MaintenanceHistoryDto
48
+ */
49
+ 'workOrderNo'?: string;
50
+ /**
51
+ * 工单id
52
+ * @type {number}
53
+ * @memberof MaintenanceHistoryDto
54
+ */
55
+ 'workOrderId'?: number;
56
+ /**
57
+ *
58
+ * @type {WorkOrderTypeEnum}
59
+ * @memberof MaintenanceHistoryDto
60
+ */
61
+ 'workOrderType'?: WorkOrderTypeEnum;
43
62
  }
@@ -79,5 +79,6 @@ export declare const ViolationIssueTypeEnum: {
79
79
  readonly NoTeamMeeting: "NO_TEAM_MEETING";
80
80
  readonly PlatformStagingAreaNotCleared: "PLATFORM_STAGING_AREA_NOT_CLEARED";
81
81
  readonly UtilizationProblem: "UTILIZATION_PROBLEM";
82
+ readonly Other: "OTHER";
82
83
  };
83
84
  export type ViolationIssueTypeEnum = typeof ViolationIssueTypeEnum[keyof typeof ViolationIssueTypeEnum];
@@ -80,5 +80,6 @@ export const ViolationIssueTypeEnum = {
80
80
  SixSProblem: 'SIX_S_PROBLEM',
81
81
  NoTeamMeeting: 'NO_TEAM_MEETING',
82
82
  PlatformStagingAreaNotCleared: 'PLATFORM_STAGING_AREA_NOT_CLEARED',
83
- UtilizationProblem: 'UTILIZATION_PROBLEM'
83
+ UtilizationProblem: 'UTILIZATION_PROBLEM',
84
+ Other: 'OTHER'
84
85
  };
@@ -53,7 +53,7 @@ export interface ViolationWorkOrderAddVo {
53
53
  * @type {number}
54
54
  * @memberof ViolationWorkOrderAddVo
55
55
  */
56
- 'spaceId': number;
56
+ 'spaceId'?: number;
57
57
  /**
58
58
  * 工单名称
59
59
  * @type {string}
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
13
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
13
14
  /**
14
15
  * 设备维保历史参数
15
16
  * @export
@@ -40,4 +41,22 @@ export interface MaintenanceHistoryDto {
40
41
  * @memberof MaintenanceHistoryDto
41
42
  */
42
43
  'status'?: WorkOrderStatusEnum;
44
+ /**
45
+ * 工单编号
46
+ * @type {string}
47
+ * @memberof MaintenanceHistoryDto
48
+ */
49
+ 'workOrderNo'?: string;
50
+ /**
51
+ * 工单id
52
+ * @type {number}
53
+ * @memberof MaintenanceHistoryDto
54
+ */
55
+ 'workOrderId'?: number;
56
+ /**
57
+ *
58
+ * @type {WorkOrderTypeEnum}
59
+ * @memberof MaintenanceHistoryDto
60
+ */
61
+ 'workOrderType'?: WorkOrderTypeEnum;
43
62
  }
@@ -79,5 +79,6 @@ export declare const ViolationIssueTypeEnum: {
79
79
  readonly NoTeamMeeting: "NO_TEAM_MEETING";
80
80
  readonly PlatformStagingAreaNotCleared: "PLATFORM_STAGING_AREA_NOT_CLEARED";
81
81
  readonly UtilizationProblem: "UTILIZATION_PROBLEM";
82
+ readonly Other: "OTHER";
82
83
  };
83
84
  export type ViolationIssueTypeEnum = typeof ViolationIssueTypeEnum[keyof typeof ViolationIssueTypeEnum];
@@ -83,5 +83,6 @@ exports.ViolationIssueTypeEnum = {
83
83
  SixSProblem: 'SIX_S_PROBLEM',
84
84
  NoTeamMeeting: 'NO_TEAM_MEETING',
85
85
  PlatformStagingAreaNotCleared: 'PLATFORM_STAGING_AREA_NOT_CLEARED',
86
- UtilizationProblem: 'UTILIZATION_PROBLEM'
86
+ UtilizationProblem: 'UTILIZATION_PROBLEM',
87
+ Other: 'OTHER'
87
88
  };
@@ -53,7 +53,7 @@ export interface ViolationWorkOrderAddVo {
53
53
  * @type {number}
54
54
  * @memberof ViolationWorkOrderAddVo
55
55
  */
56
- 'spaceId': number;
56
+ 'spaceId'?: number;
57
57
  /**
58
58
  * 工单名称
59
59
  * @type {string}
@@ -16,6 +16,9 @@
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
18
  import type { WorkOrderStatusEnum } from './work-order-status-enum';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import type { WorkOrderTypeEnum } from './work-order-type-enum';
19
22
 
20
23
  /**
21
24
  * 设备维保历史参数
@@ -47,6 +50,24 @@ export interface MaintenanceHistoryDto {
47
50
  * @memberof MaintenanceHistoryDto
48
51
  */
49
52
  'status'?: WorkOrderStatusEnum;
53
+ /**
54
+ * 工单编号
55
+ * @type {string}
56
+ * @memberof MaintenanceHistoryDto
57
+ */
58
+ 'workOrderNo'?: string;
59
+ /**
60
+ * 工单id
61
+ * @type {number}
62
+ * @memberof MaintenanceHistoryDto
63
+ */
64
+ 'workOrderId'?: number;
65
+ /**
66
+ *
67
+ * @type {WorkOrderTypeEnum}
68
+ * @memberof MaintenanceHistoryDto
69
+ */
70
+ 'workOrderType'?: WorkOrderTypeEnum;
50
71
  }
51
72
 
52
73
 
@@ -84,7 +84,8 @@ export const ViolationIssueTypeEnum = {
84
84
  SixSProblem: 'SIX_S_PROBLEM',
85
85
  NoTeamMeeting: 'NO_TEAM_MEETING',
86
86
  PlatformStagingAreaNotCleared: 'PLATFORM_STAGING_AREA_NOT_CLEARED',
87
- UtilizationProblem: 'UTILIZATION_PROBLEM'
87
+ UtilizationProblem: 'UTILIZATION_PROBLEM',
88
+ Other: 'OTHER'
88
89
  } as const;
89
90
 
90
91
  export type ViolationIssueTypeEnum = typeof ViolationIssueTypeEnum[keyof typeof ViolationIssueTypeEnum];
@@ -64,7 +64,7 @@ export interface ViolationWorkOrderAddVo {
64
64
  * @type {number}
65
65
  * @memberof ViolationWorkOrderAddVo
66
66
  */
67
- 'spaceId': number;
67
+ 'spaceId'?: number;
68
68
  /**
69
69
  * 工单名称
70
70
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.8-alpha.469",
3
+ "version": "4.2.8-alpha.471",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {