@@ -149,6 +149,7 @@ export type MediaDto = {
149149 photographer : string | null ;
150150 createdByUserName : string | null ;
151151 profileImageScale : number | null ;
152+ profileImagePosition : Record < string , any > | null ;
152153} ;
153154
154155export type ImpactStoryLightDto = {
@@ -640,6 +641,10 @@ export type MediaRequestBulkAttributes = {
640641 * The profile image scale
641642 */
642643 profileImageScale : number | null ;
644+ /**
645+ * The profile image position
646+ */
647+ profileImagePosition : Record < string , any > | null ;
643648} ;
644649
645650export type MediaRequestBulkData = {
@@ -678,6 +683,10 @@ export type MediaRequestAttributes = {
678683 * Whether the media is a cover
679684 */
680685 isCover : boolean | null ;
686+ /**
687+ * The profile image position
688+ */
689+ profileImagePosition : Record < string , any > | null ;
681690} ;
682691
683692export type MediaRequestData = {
@@ -718,6 +727,10 @@ export type MediaUpdateAttributes = {
718727 * The profile image scale
719728 */
720729 profileImageScale : number | null ;
730+ /**
731+ * The profile image position
732+ */
733+ profileImagePosition : Record < string , any > | null ;
721734} ;
722735
723736export type MediaData = {
@@ -1978,6 +1991,7 @@ export type EmbeddedMediaDto = {
19781991 description : string | null ;
19791992 photographer : string | null ;
19801993 profileImageScale : number | null ;
1994+ profileImagePosition : Record < string , any > | null ;
19811995} ;
19821996
19831997export type FinancialIndicatorDto = {
0 commit comments