MoviePipelineSetting_BlueprintBase

Hi, I am using a MoviePipelineSetting_BlueprintBase to add a custom render setting.
This works correctly with local rendering but when trying to render remotely using Deadline I have a problem with a Saved\MovieRenderPipeline\TempManifests\TempManifest{ID}.utxt. It seems like my custom setting get incorrectly written to the manifest and when loading render job it errors.

Log message:

Script Stack (1 frames) :
/Script/MovieRenderPipelineCore.MoviePipelineBlueprintLibrary.LoadManifestFileFromString

[2025.06.23-10.00.19:480][ 1]LogWindows: Error: appError called: Assertion failed: Export.ScriptSerializationStartOffset == (Tell() - Export.SerialOffset) [File:D:\build++UE5\Sync\Engine\Source\Runtime\CoreUObject\Private\UObject\LinkerLoad.cpp] [Line: 6295]
Serialized script property start offset does not match offset during deserialization

[2025.06.23-10.00.19:480][ 1]LogWindows: Windows GetLastError: The operation completed successfully. (0)

here is a look at my custom setting and antialiasing setting in the QueueManifest.utxt
You can see that autogenerated manifest of the custom settings seems wrong.
It has Data in Base64 in it and the properties are inside packageMetaData and not filled.

"MoviePipelineQueue_9:MoviePipelineDeadlineExecutorJob_0.DefaultConfig.Kitsu_publisher_C_1": {
			"Data": "Base64:AAAAAAAAAAAA",
			"Names": [
				"None"
			]
		},
		"PackageMetaData": {
			"Properties": {
				"__SerializationControlExtensions": 0,
				"__Value": {}
			},
			"ObjectMetaDataMap": [],
			"RootMetaDataMap": [
				[
					"PackageLocalizationNamespace",
					"1FE1443DA8F32F528FB06E6EB4ADEBBB"
				]
			]
		},
		"MoviePipelineQueue_9:MoviePipelineDeadlineExecutorJob_0.DefaultConfig.MoviePipelineAntiAliasingSetting_0": {
			"Properties": {
				"__SerializationControlExtensions": 0,
				"__Value": {
					"RenderWarmUpCount": {
						"__Type": "IntProperty",
						"__PropertyExtensions": 0,
						"__Value": 5
					},
					"EngineWarmUpCount": {
						"__Type": "IntProperty",
						"__PropertyExtensions": 0,
						"__Value": 5
					},
					"bRenderWarmUpFrames": {
						"__Type": "BoolProperty",
						"__PropertyExtensions": 0,
						"__Value": 1
					}
				}
			}
		},