@@ -721,7 +721,7 @@ declare namespace AlfrescoApi {
721721 }
722722
723723 export interface NodeAssocMinimalEntry {
724- entry ?:NodeAssocMinimal ;
724+ entry ?: NodeAssocMinimal ;
725725 }
726726
727727 export interface NodeAssocMinimal {
@@ -732,15 +732,15 @@ declare namespace AlfrescoApi {
732732 isFolder ?: Boolean ;
733733 isFile ?: Boolean ;
734734 modifiedAt ?: Date ;
735- modifiedByUser ?:UserInfo ;
735+ modifiedByUser ?: UserInfo ;
736736 createdAt ?: Date ;
737737 createdByUser ?: UserInfo ;
738738 content ?: ContentInfo ;
739739 association ?: AssocInfo ;
740740 }
741741
742742 export interface AssocInfo {
743- assocType ?:String ;
743+ assocType ?: String ;
744744 }
745745
746746 export interface TagsApi {
@@ -2186,7 +2186,7 @@ declare namespace AlfrescoApi {
21862186 export interface ContentApi {
21872187 new ( client ?: ApiClient ) : ContentApi ;
21882188
2189- createRelatedContentOnProcessInstance ( processInstanceId ?: string , relatedContent ?: RelatedContentRepresentation , opts ?:any ) : Promise < RelatedContentRepresentation > ;
2189+ createRelatedContentOnProcessInstance ( processInstanceId ?: string , relatedContent ?: RelatedContentRepresentation , opts ?: any ) : Promise < RelatedContentRepresentation > ;
21902190
21912191 createRelatedContentOnTask ( taskId ?: string , relatedContent ?: RelatedContentRepresentation , opts ?: { isRelatedContent ?: boolean } ) : Promise < RelatedContentRepresentation > ;
21922192
@@ -2201,6 +2201,7 @@ declare namespace AlfrescoApi {
22012201 getProcessInstanceContent ( processInstanceId ?: string ) : Promise < any > ;
22022202
22032203 getRawContent ( contentId ?: number ) : Promise < any > ;
2204+
22042205 getContentPreview ( contentId ?: number ) : Promise < any > ;
22052206
22062207 getRawContentUrl ( contentId ?: number ) : string ;
0 commit comments