-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- APP-4601 - [pleb] add jmespath custom functions to pleb to centrali…
…ze that functionality to be used across apps. - APP-4604 - [transform] Add Processing Functions class to include pre-defined functions that can be used in transform builder and across TIE apps. - APP-4605 - [transform] normalize the way null/empty values are handled in transforms, and include empty string ''. - APP-4620 - [transform] Add structured/contextualized exceptions to transform to be able to deliver detailed error messages to users.
- Loading branch information
1 parent
f9db9e1
commit e35be4c
Showing
6 changed files
with
109 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""TcEx Framework Module""" | ||
|
||
__license__ = 'Apache-2.0' | ||
__version__ = '4.0.6' | ||
__version__ = '4.0.7' |
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 |
---|---|---|
@@ -1,6 +1,17 @@ | ||
"""TcEx Framework Module""" | ||
|
||
# first-party | ||
from tcex.api.tc.ti_transform.ti_predefined_functions import ( | ||
ProcessingFunctions, | ||
transform_builder_to_model, | ||
) | ||
from tcex.api.tc.ti_transform.ti_transform import TiTransform, TiTransforms | ||
from tcex.api.tc.ti_transform.transform_abc import TransformException | ||
|
||
__all__ = ['TiTransform', 'TiTransforms'] | ||
__all__ = [ | ||
'ProcessingFunctions', | ||
'TiTransform', | ||
'TiTransforms', | ||
'TransformException', | ||
'transform_builder_to_model', | ||
] |
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