@@ -16,21 +16,21 @@ export const EngagementWorkflow = defineWorkflow({
16
16
event : EngagementWorkflowEvent ,
17
17
context : defineContext < EngagementWorkflowContext > ,
18
18
} ) ( {
19
- Reject : {
19
+ ' Reject Proposal' : {
20
20
from : Status . InDevelopment ,
21
21
to : Status . Rejected ,
22
22
label : 'Reject' ,
23
23
type : Type . Reject ,
24
24
conditions : ProjectStep ( 'Rejected' ) ,
25
25
} ,
26
- 'End Development ' : {
26
+ 'End Proposal ' : {
27
27
from : Status . InDevelopment ,
28
28
to : Status . DidNotDevelop ,
29
29
label : 'End Development' ,
30
30
type : Type . Reject ,
31
31
conditions : ProjectStep ( 'DidNotDevelop' ) ,
32
32
} ,
33
- 'Approve to Active ' : {
33
+ 'Approve Proposal ' : {
34
34
from : Status . InDevelopment ,
35
35
to : Status . Active ,
36
36
label : 'Approve' ,
@@ -46,7 +46,7 @@ export const EngagementWorkflow = defineWorkflow({
46
46
'Discuss Suspension' : {
47
47
from : [ Status . Active , Status . ActiveChangedPlan ] ,
48
48
to : Status . DiscussingSuspension ,
49
- label : 'Discuss Susupension ' ,
49
+ label : 'Discuss Suspension ' ,
50
50
type : Type . Neutral ,
51
51
} ,
52
52
'Discuss Termination' : {
@@ -67,22 +67,22 @@ export const EngagementWorkflow = defineWorkflow({
67
67
label : 'Finalize Completion' ,
68
68
type : Type . Approve ,
69
69
} ,
70
- 'Approve Change to Plan' : {
70
+ 'Approve Change To Plan' : {
71
71
from : Status . DiscussingChangeToPlan ,
72
72
to : Status . ActiveChangedPlan ,
73
73
label : 'Approve Change to Plan' ,
74
74
type : Type . Approve ,
75
75
} ,
76
- 'Will Not Change Plan' : {
76
+ 'End Change To Plan Discussion ' : {
77
77
from : Status . DiscussingChangeToPlan ,
78
78
to : BackToActive ,
79
79
label : 'Will Not Change Plan' ,
80
80
type : Type . Neutral ,
81
81
} ,
82
- 'Discussing Change to Plan -> Discussing Suspension ' : {
82
+ 'Discuss Suspension out of Change to Plan Discussion ' : {
83
83
from : [ Status . DiscussingChangeToPlan ] ,
84
84
to : Status . DiscussingSuspension ,
85
- label : 'Discuss Susupension ' ,
85
+ label : 'Discuss Suspension ' ,
86
86
type : Type . Neutral ,
87
87
} ,
88
88
'Approve Suspension' : {
@@ -91,7 +91,7 @@ export const EngagementWorkflow = defineWorkflow({
91
91
label : 'Approve Suspension' ,
92
92
type : Type . Approve ,
93
93
} ,
94
- 'Will Not Suspend ' : {
94
+ 'End Suspension Discussion ' : {
95
95
from : Status . DiscussingSuspension ,
96
96
to : BackToActive ,
97
97
label : 'Will Not Suspend' ,
0 commit comments