vcomply-workflow-engine 5.0.2 → 5.0.3

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.
Files changed (34) hide show
  1. package/esm2022/lib/constants/assessts.constants.mjs +2 -1
  2. package/esm2022/lib/more-option/more-option.component.mjs +20 -2
  3. package/esm2022/lib/report-a-case/components/case-assignees/case-assignees.component.mjs +1 -1
  4. package/esm2022/lib/report-a-case/components/case-category/case-category.component.mjs +1 -1
  5. package/esm2022/lib/report-a-case/components/case-details/case-details.component.mjs +39 -12
  6. package/esm2022/lib/report-a-case/components/case-priority/case-priority.component.mjs +30 -18
  7. package/esm2022/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.mjs +1 -1
  8. package/esm2022/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.mjs +33 -10
  9. package/esm2022/lib/report-a-case/components/field-holder/field-holder.component.mjs +5 -5
  10. package/esm2022/lib/report-a-case/components/form-selectBox/form-selectBox.component.mjs +17 -30
  11. package/esm2022/lib/report-a-case/components/rc-details/rc-details.component.mjs +20 -8
  12. package/esm2022/lib/report-a-case/components/report-date/report-date.component.mjs +19 -11
  13. package/esm2022/lib/report-a-case/constants/report-case.constants.mjs +75 -3
  14. package/esm2022/lib/report-a-case/workflow-case/workflow-case.component.mjs +104 -26
  15. package/esm2022/lib/workflow-engine-container/workflow-engine-container.component.mjs +8 -1
  16. package/fesm2022/vcomply-workflow-engine.mjs +345 -103
  17. package/fesm2022/vcomply-workflow-engine.mjs.map +1 -1
  18. package/lib/constants/assessts.constants.d.ts +1 -0
  19. package/lib/report-a-case/components/case-assignees/case-assignees.component.d.ts +5 -0
  20. package/lib/report-a-case/components/case-category/case-category.component.d.ts +5 -0
  21. package/lib/report-a-case/components/case-details/case-details.component.d.ts +6 -0
  22. package/lib/report-a-case/components/case-priority/case-priority.component.d.ts +7 -1
  23. package/lib/report-a-case/components/case-resolution-deadline/case-resolution-deadline.component.d.ts +5 -0
  24. package/lib/report-a-case/components/case-type-dropdown/case-dropdown.component.d.ts +7 -1
  25. package/lib/report-a-case/components/case-type-slider/case-type.component.d.ts +4 -0
  26. package/lib/report-a-case/components/due-date/due-date.component.d.ts +4 -0
  27. package/lib/report-a-case/components/field-holder/field-holder.component.d.ts +1 -0
  28. package/lib/report-a-case/components/form-selectBox/form-selectBox.component.d.ts +3 -15
  29. package/lib/report-a-case/components/rc-details/rc-details.component.d.ts +7 -0
  30. package/lib/report-a-case/components/report-date/report-date.component.d.ts +5 -0
  31. package/lib/report-a-case/constants/report-case.constants.d.ts +72 -0
  32. package/lib/report-a-case/workflow-case/workflow-case.component.d.ts +146 -20
  33. package/lib/workflow-engine-container/workflow-engine-container.component.d.ts +1 -0
  34. package/package.json +1 -1
@@ -6,4 +6,5 @@ export declare const ASSETS: {
6
6
  what: string;
7
7
  case_resolution_deadline: string;
8
8
  case_assignees: string;
9
+ format_evidence: string;
9
10
  };
@@ -12,11 +12,13 @@ export declare class CaseAssigneesComponent {
12
12
  what: string;
13
13
  case_resolution_deadline: string;
14
14
  case_assignees: string;
15
+ format_evidence: string;
15
16
  };
16
17
  assigneesTexts: {
17
18
  case_type: string;
18
19
  report_case: string;
19
20
  add_case: string;
21
+ receive_updates: string;
20
22
  case_details: {
21
23
  name: {
22
24
  title: string;
@@ -29,6 +31,8 @@ export declare class CaseAssigneesComponent {
29
31
  rc: {
30
32
  title: string;
31
33
  placeholder: string;
34
+ singularText: string;
35
+ pluralText: string;
32
36
  };
33
37
  case_type: {
34
38
  title: string;
@@ -63,6 +67,7 @@ export declare class CaseAssigneesComponent {
63
67
  tooltipMessage: {
64
68
  report_case: string;
65
69
  add_case: string;
70
+ receive_updates: string;
66
71
  rc: string;
67
72
  };
68
73
  errorMessage: {
@@ -12,11 +12,13 @@ export declare class CaseCategoryComponent {
12
12
  what: string;
13
13
  case_resolution_deadline: string;
14
14
  case_assignees: string;
15
+ format_evidence: string;
15
16
  };
16
17
  categoryTexts: {
17
18
  case_type: string;
18
19
  report_case: string;
19
20
  add_case: string;
21
+ receive_updates: string;
20
22
  case_details: {
21
23
  name: {
22
24
  title: string;
@@ -29,6 +31,8 @@ export declare class CaseCategoryComponent {
29
31
  rc: {
30
32
  title: string;
31
33
  placeholder: string;
34
+ singularText: string;
35
+ pluralText: string;
32
36
  };
33
37
  case_type: {
34
38
  title: string;
@@ -63,6 +67,7 @@ export declare class CaseCategoryComponent {
63
67
  tooltipMessage: {
64
68
  report_case: string;
65
69
  add_case: string;
70
+ receive_updates: string;
66
71
  rc: string;
67
72
  };
68
73
  errorMessage: {
@@ -6,6 +6,7 @@ export declare class CaseDetailsComponent implements OnInit {
6
6
  case_type: string;
7
7
  report_case: string;
8
8
  add_case: string;
9
+ receive_updates: string;
9
10
  case_details: {
10
11
  name: {
11
12
  title: string;
@@ -18,6 +19,8 @@ export declare class CaseDetailsComponent implements OnInit {
18
19
  rc: {
19
20
  title: string;
20
21
  placeholder: string;
22
+ singularText: string;
23
+ pluralText: string;
21
24
  };
22
25
  case_type: {
23
26
  title: string;
@@ -52,6 +55,7 @@ export declare class CaseDetailsComponent implements OnInit {
52
55
  tooltipMessage: {
53
56
  report_case: string;
54
57
  add_case: string;
58
+ receive_updates: string;
55
59
  rc: string;
56
60
  };
57
61
  errorMessage: {
@@ -66,6 +70,7 @@ export declare class CaseDetailsComponent implements OnInit {
66
70
  what: string;
67
71
  case_resolution_deadline: string;
68
72
  case_assignees: string;
73
+ format_evidence: string;
69
74
  };
70
75
  description: EditorConfig;
71
76
  payload: any;
@@ -74,6 +79,7 @@ export declare class CaseDetailsComponent implements OnInit {
74
79
  constructor();
75
80
  ngOnInit(): void;
76
81
  onNameChange(event: any): void;
82
+ onDescriptionChange(event: any): void;
77
83
  checkDescription(): void;
78
84
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseDetailsComponent, never>;
79
85
  static ɵcmp: i0.ɵɵComponentDeclaration<CaseDetailsComponent, "app-case-details", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, {}, never, never, false, never>;
@@ -8,6 +8,7 @@ export declare class CasePriorityComponent implements OnInit {
8
8
  case_type: string;
9
9
  report_case: string;
10
10
  add_case: string;
11
+ receive_updates: string;
11
12
  case_details: {
12
13
  name: {
13
14
  title: string;
@@ -20,6 +21,8 @@ export declare class CasePriorityComponent implements OnInit {
20
21
  rc: {
21
22
  title: string;
22
23
  placeholder: string;
24
+ singularText: string;
25
+ pluralText: string;
23
26
  };
24
27
  case_type: {
25
28
  title: string;
@@ -54,6 +57,7 @@ export declare class CasePriorityComponent implements OnInit {
54
57
  tooltipMessage: {
55
58
  report_case: string;
56
59
  add_case: string;
60
+ receive_updates: string;
57
61
  rc: string;
58
62
  };
59
63
  errorMessage: {
@@ -68,6 +72,7 @@ export declare class CasePriorityComponent implements OnInit {
68
72
  what: string;
69
73
  case_resolution_deadline: string;
70
74
  case_assignees: string;
75
+ format_evidence: string;
71
76
  };
72
77
  config: any;
73
78
  chipItems: any[];
@@ -78,10 +83,11 @@ export declare class CasePriorityComponent implements OnInit {
78
83
  fieldSelected: string;
79
84
  payload: any;
80
85
  onPriorityChange: EventEmitter<any>;
86
+ onPriorityLoader: EventEmitter<boolean>;
81
87
  constructor(reportACaseService: ReportACaseService);
82
88
  ngOnInit(): void;
83
89
  getAllPriorities(): void;
84
90
  onSelectedItemListChange(event: any): void;
85
91
  static ɵfac: i0.ɵɵFactoryDeclaration<CasePriorityComponent, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<CasePriorityComponent, "app-case-priority", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; }, { "onPriorityChange": "onPriorityChange"; }, never, never, false, never>;
92
+ static ɵcmp: i0.ɵɵComponentDeclaration<CasePriorityComponent, "app-case-priority", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; }, { "onPriorityChange": "onPriorityChange"; "onPriorityLoader": "onPriorityLoader"; }, never, never, false, never>;
87
93
  }
@@ -11,11 +11,13 @@ export declare class CaseResolutionDeadlineComponent {
11
11
  what: string;
12
12
  case_resolution_deadline: string;
13
13
  case_assignees: string;
14
+ format_evidence: string;
14
15
  };
15
16
  dueDateTexts: {
16
17
  case_type: string;
17
18
  report_case: string;
18
19
  add_case: string;
20
+ receive_updates: string;
19
21
  case_details: {
20
22
  name: {
21
23
  title: string;
@@ -28,6 +30,8 @@ export declare class CaseResolutionDeadlineComponent {
28
30
  rc: {
29
31
  title: string;
30
32
  placeholder: string;
33
+ singularText: string;
34
+ pluralText: string;
31
35
  };
32
36
  case_type: {
33
37
  title: string;
@@ -62,6 +66,7 @@ export declare class CaseResolutionDeadlineComponent {
62
66
  tooltipMessage: {
63
67
  report_case: string;
64
68
  add_case: string;
69
+ receive_updates: string;
65
70
  rc: string;
66
71
  };
67
72
  errorMessage: {
@@ -8,6 +8,7 @@ export declare class CaseDropdownComponent implements OnInit {
8
8
  case_type: string;
9
9
  report_case: string;
10
10
  add_case: string;
11
+ receive_updates: string;
11
12
  case_details: {
12
13
  name: {
13
14
  title: string;
@@ -20,6 +21,8 @@ export declare class CaseDropdownComponent implements OnInit {
20
21
  rc: {
21
22
  title: string;
22
23
  placeholder: string;
24
+ singularText: string;
25
+ pluralText: string;
23
26
  };
24
27
  case_type: {
25
28
  title: string;
@@ -54,6 +57,7 @@ export declare class CaseDropdownComponent implements OnInit {
54
57
  tooltipMessage: {
55
58
  report_case: string;
56
59
  add_case: string;
60
+ receive_updates: string;
57
61
  rc: string;
58
62
  };
59
63
  errorMessage: {
@@ -68,6 +72,7 @@ export declare class CaseDropdownComponent implements OnInit {
68
72
  what: string;
69
73
  case_resolution_deadline: string;
70
74
  case_assignees: string;
75
+ format_evidence: string;
71
76
  };
72
77
  config: any;
73
78
  chipItems: any[];
@@ -79,10 +84,11 @@ export declare class CaseDropdownComponent implements OnInit {
79
84
  payload: any;
80
85
  validationError: any;
81
86
  onCaseTypeChange: EventEmitter<any>;
87
+ onCaseTypeLoading: EventEmitter<boolean>;
82
88
  constructor(reportACaseService: ReportACaseService);
83
89
  ngOnInit(): void;
84
90
  getAllTypes(): void;
85
91
  onSelectedItemListChange(event: any): void;
86
92
  static ɵfac: i0.ɵɵFactoryDeclaration<CaseDropdownComponent, never>;
87
- static ɵcmp: i0.ɵɵComponentDeclaration<CaseDropdownComponent, "app-case-type-dropdown", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, { "onCaseTypeChange": "onCaseTypeChange"; }, never, never, false, never>;
93
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseDropdownComponent, "app-case-type-dropdown", never, { "fieldSelected": { "alias": "fieldSelected"; "required": false; }; "payload": { "alias": "payload"; "required": false; }; "validationError": { "alias": "validationError"; "required": false; }; }, { "onCaseTypeChange": "onCaseTypeChange"; "onCaseTypeLoading": "onCaseTypeLoading"; }, never, never, false, never>;
88
94
  }
@@ -9,6 +9,7 @@ export declare class CaseTypeComponent implements OnInit {
9
9
  case_type: string;
10
10
  report_case: string;
11
11
  add_case: string;
12
+ receive_updates: string;
12
13
  case_details: {
13
14
  name: {
14
15
  title: string;
@@ -21,6 +22,8 @@ export declare class CaseTypeComponent implements OnInit {
21
22
  rc: {
22
23
  title: string;
23
24
  placeholder: string;
25
+ singularText: string;
26
+ pluralText: string;
24
27
  };
25
28
  case_type: {
26
29
  title: string;
@@ -55,6 +58,7 @@ export declare class CaseTypeComponent implements OnInit {
55
58
  tooltipMessage: {
56
59
  report_case: string;
57
60
  add_case: string;
61
+ receive_updates: string;
58
62
  rc: string;
59
63
  };
60
64
  errorMessage: {
@@ -19,6 +19,7 @@ export declare class DueDateComponent implements OnInit {
19
19
  case_type: string;
20
20
  report_case: string;
21
21
  add_case: string;
22
+ receive_updates: string;
22
23
  case_details: {
23
24
  name: {
24
25
  title: string;
@@ -31,6 +32,8 @@ export declare class DueDateComponent implements OnInit {
31
32
  rc: {
32
33
  title: string;
33
34
  placeholder: string;
35
+ singularText: string;
36
+ pluralText: string;
34
37
  };
35
38
  case_type: {
36
39
  title: string;
@@ -65,6 +68,7 @@ export declare class DueDateComponent implements OnInit {
65
68
  tooltipMessage: {
66
69
  report_case: string;
67
70
  add_case: string;
71
+ receive_updates: string;
68
72
  rc: string;
69
73
  };
70
74
  errorMessage: {
@@ -8,6 +8,7 @@ export declare class FieldHolderComponent {
8
8
  what: string;
9
9
  case_resolution_deadline: string;
10
10
  case_assignees: string;
11
+ format_evidence: string;
11
12
  };
12
13
  image: string;
13
14
  active: boolean;
@@ -13,13 +13,6 @@ export declare class FormSelectBoxComponent {
13
13
  readonly SelectionPopupState: SelectionPopupState;
14
14
  readonly SelectionState: SelectionState;
15
15
  _config: any;
16
- itemList: any[];
17
- selectedItemList: any[];
18
- selectedItem: string;
19
- dropDownList: any;
20
- dropDownText: any;
21
- treeData: any;
22
- isLoader: boolean;
23
16
  title: string;
24
17
  key: string;
25
18
  action: string;
@@ -28,20 +21,15 @@ export declare class FormSelectBoxComponent {
28
21
  isCaseTypeSelected: boolean;
29
22
  chipItems: any[];
30
23
  set config(value: any);
31
- set initialSelectedItemList(value: any[]);
32
24
  isError: boolean;
33
25
  errorMessage: string;
26
+ selectedData: any;
34
27
  selectedItemListChange: EventEmitter<any>;
35
28
  fieldClicked: EventEmitter<any>;
36
- selectedData: any;
37
- selectionList: any;
38
- isContainerRest: boolean;
39
- selectedRc: any;
40
- defaultRc: any;
41
- constructor();
42
29
  ngOnChanges(changes: SimpleChanges): void;
43
30
  openSelection(): void;
44
31
  setDropdownList(event: any): void;
32
+ removeSelectedList(event: any): void;
45
33
  static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectBoxComponent, never>;
46
- static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectBoxComponent, "app-form-selectBox", never, { "title": { "alias": "title"; "required": false; }; "key": { "alias": "key"; "required": false; }; "action": { "alias": "action"; "required": false; }; "state": { "alias": "state"; "required": false; }; "popupState": { "alias": "popupState"; "required": false; }; "isCaseTypeSelected": { "alias": "isCaseTypeSelected"; "required": false; }; "chipItems": { "alias": "chipItems"; "required": false; }; "config": { "alias": "config"; "required": false; }; "initialSelectedItemList": { "alias": "initialSelectedItemList"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "selectedData": { "alias": "selectedData"; "required": false; }; }, { "selectedItemListChange": "selectedItemListChange"; "fieldClicked": "fieldClicked"; }, never, ["[label]"], false, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectBoxComponent, "app-form-selectBox", never, { "title": { "alias": "title"; "required": false; }; "key": { "alias": "key"; "required": false; }; "action": { "alias": "action"; "required": false; }; "state": { "alias": "state"; "required": false; }; "popupState": { "alias": "popupState"; "required": false; }; "isCaseTypeSelected": { "alias": "isCaseTypeSelected"; "required": false; }; "chipItems": { "alias": "chipItems"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isError": { "alias": "isError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "selectedData": { "alias": "selectedData"; "required": false; }; }, { "selectedItemListChange": "selectedItemListChange"; "fieldClicked": "fieldClicked"; }, never, ["[label]"], false, never>;
47
35
  }
@@ -12,11 +12,13 @@ export declare class RcDetailsComponent {
12
12
  what: string;
13
13
  case_resolution_deadline: string;
14
14
  case_assignees: string;
15
+ format_evidence: string;
15
16
  };
16
17
  rcTexts: {
17
18
  case_type: string;
18
19
  report_case: string;
19
20
  add_case: string;
21
+ receive_updates: string;
20
22
  case_details: {
21
23
  name: {
22
24
  title: string;
@@ -29,6 +31,8 @@ export declare class RcDetailsComponent {
29
31
  rc: {
30
32
  title: string;
31
33
  placeholder: string;
34
+ singularText: string;
35
+ pluralText: string;
32
36
  };
33
37
  case_type: {
34
38
  title: string;
@@ -63,6 +67,7 @@ export declare class RcDetailsComponent {
63
67
  tooltipMessage: {
64
68
  report_case: string;
65
69
  add_case: string;
70
+ receive_updates: string;
66
71
  rc: string;
67
72
  };
68
73
  errorMessage: {
@@ -86,8 +91,10 @@ export declare class RcDetailsComponent {
86
91
  ngOnInit(): void;
87
92
  getResponsibilityCentersList(): void;
88
93
  saveSelectedRCList(event: any): void;
94
+ setPayload(event: any): void;
89
95
  setSelectedRcList(event: any): void;
90
96
  activateSelector(active: boolean): void;
97
+ setRcList(event: any): void;
91
98
  static ɵfac: i0.ɵɵFactoryDeclaration<RcDetailsComponent, never>;
92
99
  static ɵcmp: i0.ɵɵComponentDeclaration<RcDetailsComponent, "app-rc-details", never, { "payload": { "alias": "payload"; "required": false; }; "fieldSelected": { "alias": "fieldSelected"; "required": false; }; }, { "fieldClicked": "fieldClicked"; "onRcChange": "onRcChange"; }, never, never, false, never>;
93
100
  }
@@ -10,11 +10,13 @@ export declare class ReportDateComponent {
10
10
  what: string;
11
11
  case_resolution_deadline: string;
12
12
  case_assignees: string;
13
+ format_evidence: string;
13
14
  };
14
15
  reportTexts: {
15
16
  case_type: string;
16
17
  report_case: string;
17
18
  add_case: string;
19
+ receive_updates: string;
18
20
  case_details: {
19
21
  name: {
20
22
  title: string;
@@ -27,6 +29,8 @@ export declare class ReportDateComponent {
27
29
  rc: {
28
30
  title: string;
29
31
  placeholder: string;
32
+ singularText: string;
33
+ pluralText: string;
30
34
  };
31
35
  case_type: {
32
36
  title: string;
@@ -61,6 +65,7 @@ export declare class ReportDateComponent {
61
65
  tooltipMessage: {
62
66
  report_case: string;
63
67
  add_case: string;
68
+ receive_updates: string;
64
69
  rc: string;
65
70
  };
66
71
  errorMessage: {
@@ -2,6 +2,7 @@ export declare const REPORT_CASE: {
2
2
  case_type: string;
3
3
  report_case: string;
4
4
  add_case: string;
5
+ receive_updates: string;
5
6
  case_details: {
6
7
  name: {
7
8
  title: string;
@@ -14,6 +15,8 @@ export declare const REPORT_CASE: {
14
15
  rc: {
15
16
  title: string;
16
17
  placeholder: string;
18
+ singularText: string;
19
+ pluralText: string;
17
20
  };
18
21
  case_type: {
19
22
  title: string;
@@ -48,6 +51,7 @@ export declare const REPORT_CASE: {
48
51
  tooltipMessage: {
49
52
  report_case: string;
50
53
  add_case: string;
54
+ receive_updates: string;
51
55
  rc: string;
52
56
  };
53
57
  errorMessage: {
@@ -110,6 +114,74 @@ export declare const REPORT_CASE_PAYLOAD: {
110
114
  linked_assessment_issues: {};
111
115
  source: string;
112
116
  };
117
+ export declare const ADD_TO_CASE_WORKFLOW: {
118
+ name: string;
119
+ description: {
120
+ text: string;
121
+ attachments: never[];
122
+ };
123
+ receive_updates: boolean;
124
+ rc_details: {
125
+ ids: never[];
126
+ separate_rc_cases: boolean;
127
+ main_rc_id: string;
128
+ };
129
+ reported_date: string;
130
+ case_type: {
131
+ id: string;
132
+ custom_fields: never[];
133
+ };
134
+ priority: {
135
+ id: string;
136
+ custom_fields: never[];
137
+ };
138
+ category: {
139
+ ids: never[];
140
+ custom_fields: never[];
141
+ };
142
+ additional_category: {
143
+ ids: never[];
144
+ custom_fields: never[];
145
+ };
146
+ supporting_documents: never[];
147
+ stage: string;
148
+ risk_class: number;
149
+ caseToWorkflow: {
150
+ workflow_id: string;
151
+ owners: never[];
152
+ assignees: never[];
153
+ assignees_group: never[];
154
+ resolution_deadline: {
155
+ due_date: string;
156
+ stages_assignees: never[];
157
+ assignee_remind_before: number;
158
+ owner_remind_before: number;
159
+ };
160
+ exception_type: string;
161
+ associated_risks: {
162
+ text: string;
163
+ attachments: never[];
164
+ };
165
+ oversights: {
166
+ cc_ids: never[];
167
+ cc_failures_ids: never[];
168
+ };
169
+ evidence_enabled: boolean;
170
+ recommendations: {
171
+ text: string;
172
+ attachments: never[];
173
+ };
174
+ };
175
+ responsibilities_Linked: never[];
176
+ linked_assessment_issues: {
177
+ resp_id: string;
178
+ due_date_id: string;
179
+ assessment_id: string;
180
+ question_id: string;
181
+ auditee_id: number;
182
+ };
183
+ source: string;
184
+ };
113
185
  export declare const ADDITIONAL_OPTION_PAYLOAD: {
114
186
  workflow_id: string;
115
187
  owners: never[];