diff --git a/api/@ohos.file.PhotoPickerComponent.d.ets b/api/@ohos.file.PhotoPickerComponent.d.ets index 52885ab0e0a6ceaf1110393a097b0ce687f9727d..48727f3b484f02554ae17069572a0f56dcce7fbd 100644 --- a/api/@ohos.file.PhotoPickerComponent.d.ets +++ b/api/@ohos.file.PhotoPickerComponent.d.ets @@ -559,6 +559,37 @@ export declare class BaseItemInfo { * @since 12 */ duration?: number; + + /** + * PhotoSubtype. Asset subtype, non-special type images default to DEFAULT(0). + * + * @type { ?photoAccessHelper.PhotoSubtype } + * @syscap SystemCapability.FileManagement.PhotoAccessHelper.Core + * @atomicservice + * @since 21 + */ + photoSubType?: photoAccessHelper.PhotoSubtype; + + /** + * DynamicRangeType. Dynamic range type of media files. + * For movingPhoto, this specifically refers to the dynamic range type of the cover image. + * + * @type { ?photoAccessHelper.DynamicRangeType } + * @syscap SystemCapability.FileManagement.PhotoAccessHelper.Core + * @atomicservice + * @since 21 + */ + dynamicRangeType?: photoAccessHelper.DynamicRangeType; + + /** + * Orientation. Image/Video orientation information. + * + * @type { ?number } + * @syscap SystemCapability.FileManagement.PhotoAccessHelper.Core + * @atomicservice + * @since 21 + */ + orientation?: number; } /**