Minor Changes
-
ff3ca07: Introduce new extensionPoint naming conventions with full backward compatibility
New Features:
- Added
AllowedExtensionPoints
type alias forAllowedTouchpoints
enum - Added
ApplicationExtensionPointContext
interface as the new standard (replacesApplicationTouchpointContext
) - Added
ApplicationExtensionPointMetaContext
interface as the new standard (replacesApplicationTouchpointMetaContext
) - Added
extensionPoints
property toApplicationContext
andApplicationRuntimeContext
interfaces - Updated
resourceAccess
property naming (replaces deprecatedresources
)
Backward Compatibility:
This is a fully backward-compatible change. All existing code will continue to work without modifications:
AllowedTouchpoints
enum remains unchanged and fully functionalApplicationTouchpointContext
andApplicationTouchpointMetaContext
interfaces remain functional but are marked as deprecatedtouchpoints
andresources
properties continue to work but show deprecation warnings
What changed:
- Added new
extensionPoints
property alongside deprecatedtouchpoints
- Added new extension point interfaces with cleaner naming
- Added type alias for better API consistency
- Maintained full backward compatibility with automatic property mapping
- Added