Skip to content

Commit

Permalink
fix(orchestrator): remove field 'variables' from ProcessInstanceDTO (#…
Browse files Browse the repository at this point in the history
…2229)

FLPATH-1672
https://issues.redhat.com/browse/FLPATH-1672

Signed-off-by: Yaron Dayagi <ydayagi@redhat.com>
  • Loading branch information
ydayagi authored Sep 23, 2024
1 parent ef9ee68 commit 72050eb
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 17 deletions.
2 changes: 1 addition & 1 deletion plugins/orchestrator-common/src/generated/.METADATA.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1cfad2af0d85c888ce0217056ff82a70d168886a
7ec62a1b04426e5eed857f18fdae983cf02a39c4

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions plugins/orchestrator-common/src/generated/client/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,6 @@ export interface ProcessInstanceDTO {
* @memberof ProcessInstanceDTO
*/
'error'?: ProcessInstanceErrorDTO;
/**
*
* @type {object}
* @memberof ProcessInstanceDTO
*/
'variables'?: object;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1049,9 +1049,6 @@
},
"error" : {
"$ref" : "#/components/schemas/ProcessInstanceErrorDTO"
},
"variables" : {
"$ref" : "#/components/schemas/ProcessInstanceVariablesDTO"
}
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
| **businessKey** | **String** | | [optional] [default to null] |
| **nodes** | [**List**](NodeInstanceDTO.md) | | [default to null] |
| **error** | [**ProcessInstanceErrorDTO**](ProcessInstanceErrorDTO.md) | | [optional] [default to null] |
| **variables** | [**Object**](.md) | | [optional] [default to null] |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

5 changes: 0 additions & 5 deletions plugins/orchestrator-common/src/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,6 @@ components:
$ref: '#/components/schemas/NodeInstanceDTO'
error:
$ref: '#/components/schemas/ProcessInstanceErrorDTO'
variables:
$ref: '#/components/schemas/ProcessInstanceVariablesDTO'
required:
- id
- processId
Expand Down Expand Up @@ -595,6 +593,3 @@ components:
description: Error message (optional)
required:
- nodeDefinitionId
ProcessInstanceVariablesDTO:
type: object
additionalProperties: true

0 comments on commit 72050eb

Please sign in to comment.