-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(api): Resolve circular import issue for workflow update validation (
#7151) Co-authored-by: Richard Fontein <[email protected]> Co-authored-by: George Desipris <[email protected]> Co-authored-by: Dima Grossman <[email protected]> Co-authored-by: Pawan Jain <[email protected]> Co-authored-by: Sokratis Vidros <[email protected]>
- Loading branch information
1 parent
3fe3c28
commit 98bc719
Showing
6 changed files
with
43 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
libs/application-generic/src/usecases/workflow/update-workflow/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './upsert-validation-constants'; | ||
export * from './update-workflow.command'; | ||
export * from './update-workflow.usecase'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
.../application-generic/src/usecases/workflow/update-workflow/upsert-validation-constants.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export const MAX_TAG_ELEMENTS = 16; | ||
export const MAX_TAG_LENGTH = 32; | ||
export const MAX_NAME_LENGTH = 64; | ||
export const MAX_DESCRIPTION_LENGTH = 256; |