Added
* `Pipeline` model, the new central component for building ETL pipelines
* `PipelineNode` model, the `Pipeline` sub-component defining each dataframe in a pipeline
* `FileDataSink` and `TableDataSink` sinks models
* `PipelineNodeDataSource` and `MemoryDataSource` sources model
* Future support for Polars and other types of dataframe
Updated
* Enabled CDC support for both `FileDataSource` and `TableDataSource`
Breaking changes
* Merged `DataEventHeader` into `DataEvent` model
* Renamed `EventDataSource` model to `FileDataSource`
* Renamed `name` attribute to `table_name` in `TableDataSource` model
* Removed `SparkChain` support in DataSources
* Renamed `Pipeline` model to `DLTPipeline` model
* Cloud resources moved under models.resources.{provider}.{resource_class} to avoid collisions with future classes.
* Removed `TableBuilder`. `PipelineNode` should be used instead