@things-factory/process 7.0.1-alpha.77 → 7.0.1-alpha.78
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/dist-server/service/process/process-history.js +1 -1
- package/dist-server/service/process/process-history.js.map +1 -1
- package/dist-server/service/process-instance/process-instance-history.js +1 -1
- package/dist-server/service/process-instance/process-instance-history.js.map +1 -1
- package/dist-server/service/process-instance/process-instance.js +1 -1
- package/dist-server/service/process-instance/process-instance.js.map +1 -1
- package/dist-server/service/process-thread/process-thread.js +1 -1
- package/dist-server/service/process-thread/process-thread.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/server/service/process/process-history.ts +3 -3
- package/server/service/process-instance/process-instance-history.ts +3 -3
- package/server/service/process-instance/process-instance.ts +1 -1
- package/server/service/process-thread/process-thread.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/process",
|
|
3
|
-
"version": "7.0.1-alpha.
|
|
3
|
+
"version": "7.0.1-alpha.78",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"@operato/graphql": "^2.0.0-alpha.0",
|
|
32
32
|
"@operato/grist-editor": "^2.0.0-alpha.0",
|
|
33
33
|
"@operato/shell": "^2.0.0-alpha.0",
|
|
34
|
-
"@things-factory/attachment-base": "^7.0.1-alpha.
|
|
35
|
-
"@things-factory/auth-base": "^7.0.1-alpha.
|
|
36
|
-
"@things-factory/board-service": "^7.0.1-alpha.
|
|
34
|
+
"@things-factory/attachment-base": "^7.0.1-alpha.78",
|
|
35
|
+
"@things-factory/auth-base": "^7.0.1-alpha.78",
|
|
36
|
+
"@things-factory/board-service": "^7.0.1-alpha.78",
|
|
37
37
|
"@things-factory/context-ui": "^7.0.1-alpha.71",
|
|
38
|
-
"@things-factory/organization": "^7.0.1-alpha.
|
|
39
|
-
"@things-factory/scheduler-client": "^7.0.1-alpha.
|
|
38
|
+
"@things-factory/organization": "^7.0.1-alpha.78",
|
|
39
|
+
"@things-factory/scheduler-client": "^7.0.1-alpha.78",
|
|
40
40
|
"@things-factory/shell": "^7.0.1-alpha.71",
|
|
41
|
-
"@things-factory/worklist": "^7.0.1-alpha.
|
|
41
|
+
"@things-factory/worklist": "^7.0.1-alpha.78"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "6423c664e70e7877c362b4aebb7f169e4a2ad22d"
|
|
44
44
|
}
|
|
@@ -38,7 +38,7 @@ export class ProcessHistory implements HistoryEntityInterface<Process> {
|
|
|
38
38
|
version?: number = 1
|
|
39
39
|
|
|
40
40
|
@ManyToOne(type => Domain)
|
|
41
|
-
@Field(
|
|
41
|
+
@Field(type => Domain)
|
|
42
42
|
domain?: Domain
|
|
43
43
|
|
|
44
44
|
@RelationId((process: Process) => process.domain)
|
|
@@ -94,8 +94,8 @@ export class ProcessHistory implements HistoryEntityInterface<Process> {
|
|
|
94
94
|
DATABASE_TYPE == 'postgres' || DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
|
|
95
95
|
? 'enum'
|
|
96
96
|
: DATABASE_TYPE == 'oracle'
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
? 'varchar2'
|
|
98
|
+
: 'smallint',
|
|
99
99
|
enum: HistoryActionType
|
|
100
100
|
})
|
|
101
101
|
public action!: HistoryActionType
|
|
@@ -48,7 +48,7 @@ export class ProcessInstanceHistory implements HistoryEntityInterface<ProcessIns
|
|
|
48
48
|
version?: number = 1
|
|
49
49
|
|
|
50
50
|
@ManyToOne(type => Domain)
|
|
51
|
-
@Field(
|
|
51
|
+
@Field(type => Domain)
|
|
52
52
|
domain?: Domain
|
|
53
53
|
|
|
54
54
|
@RelationId((processInstance: ProcessInstance) => processInstance.domain)
|
|
@@ -140,8 +140,8 @@ export class ProcessInstanceHistory implements HistoryEntityInterface<ProcessIns
|
|
|
140
140
|
DATABASE_TYPE == 'postgres' || DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
|
|
141
141
|
? 'enum'
|
|
142
142
|
: DATABASE_TYPE == 'oracle'
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
? 'varchar2'
|
|
144
|
+
: 'smallint',
|
|
145
145
|
enum: HistoryActionType
|
|
146
146
|
})
|
|
147
147
|
public action!: HistoryActionType
|