diff --git a/l18n b/l18n index 4f8dab7..a8a30a8 160000 --- a/l18n +++ b/l18n @@ -1 +1 @@ -Subproject commit 4f8dab7948b4154b356e054bf3be6c09a178d1dd +Subproject commit a8a30a85639aa4981344c19b750aed86aa1619c8 diff --git a/src/enums/MDMeasurementType.php b/src/enums/MDMeasurementType.php index ef1c976..d42502e 100644 --- a/src/enums/MDMeasurementType.php +++ b/src/enums/MDMeasurementType.php @@ -71,6 +71,14 @@ enum MDMeasurementType implements MDValueEnumInterface, JsonSerializable { case width_of_base; case diameter_of_base; + case height_image_mount_inner; + case height_image_mount_outer; + case width_image_mount_inner; + case width_image_mount_outer; + + case height_plate; + case width_plate; + /** * Returns a value of this type based on a string. * @@ -132,6 +140,10 @@ enum MDMeasurementType implements MDValueEnumInterface, JsonSerializable { 'height_of_base' => self::height_of_base, 'width_of_base' => self::width_of_base, 'diameter_of_base' => self::diameter_of_base, + 'height_image_mount_inner' => self::height_image_mount_inner, + 'height_image_mount_outer' => self::height_image_mount_outer, + 'width_image_mount_inner' => self::width_image_mount_inner, + 'width_image_mount_outer' => self::width_image_mount_outer, default => throw new MDpageParameterNotFromListException("Unknown measurement type"), }; @@ -198,6 +210,10 @@ enum MDMeasurementType implements MDValueEnumInterface, JsonSerializable { 49 => self::length_label, 50 => self::height_label, 51 => self::width_label, + 52 => self::height_image_mount_inner, + 53 => self::height_image_mount_outer, + 54 => self::width_image_mount_inner, + 55 => self::width_image_mount_outer, default => throw new MDpageParameterNotFromListException("Unknown measurement type"), }; @@ -284,6 +300,10 @@ enum MDMeasurementType implements MDValueEnumInterface, JsonSerializable { self::length_label => self::length, self::height_label => self::height, self::width_label => self::width, + self::height_image_mount_inner => self::height, + self::height_image_mount_outer => self::height, + self::width_image_mount_inner => self::width, + self::width_image_mount_outer => self::width, # default => throw new MDpageParameterNotFromListException("Unknown measurement type"), }; @@ -348,6 +368,10 @@ enum MDMeasurementType implements MDValueEnumInterface, JsonSerializable { self::length_label => 49, self::height_label => 50, self::width_label => 51, + self::height_image_mount_inner => 52, + self::height_image_mount_outer => 53, + self::width_image_mount_inner => 54, + self::width_image_mount_outer => 55, # default => throw new MDpageParameterNotFromListException("Unknown measurement type"), };