@@ -203,16 +203,23 @@ declare namespace AlfrescoApi {
203203 export interface NodesApi {
204204 new ( client : ApiClient ) : NodesApi ;
205205
206- getNodeInfo ( nodeId : string , opts ?: any ) : Promise < MinimalNodeEntryEntity > ;
206+ addNode ( nodeId : string , nodeBody : any , opts ?: any ) : Promise < MinimalNodeEntity > ;
207+ copyNode ( nodeId : string , copyBody : any , opts ?: any ) : Promise < MinimalNodeEntity > ;
208+ deleteNode ( nodeId : string ) : Promise < void > ;
209+ getDeletedNode ( nodeId : string , opts ?: any ) : Promise < DeletedNodeEntity > ;
210+ getDeletedNodes ( opts ?: any ) : Promise < DeletedNodesPaging > ;
211+ getFileContent ( nodeId : string , opts ?: any ) : Promise < any > ;
212+ getNode ( nodeId : string , opts ?: any ) : Promise < MinimalNodeEntity > ;
207213 getNodeChildren ( nodeId : string , opts ?: any ) : Promise < NodePaging > ;
208- deleteNode ( nodeId : string ) : Promise < any > ;
209- createFolder ( name : string , relativePath : string , nodeId ?: string , opts ?: any ) : Promise < MinimalNodeEntryEntity > ;
210- getNode ( nodeId : string , opts : any ) : Promise < MinimalNodeEntity > ;
211- getDeletedNodes ( opts : any ) : Promise < DeletedNodesPaging > ;
212- purgeDeletedNode ( nodeId : string ) : Promise < any > ;
213- getDeletedNode ( nodeId : string , opts : any ) : Promise < DeletedNodeEntity > ;
214+ moveNode ( nodeId : string , moveBody : any , opts ?: any ) : Promise < MinimalNodeEntity > ;
215+ purgeDeletedNode ( nodeId : string ) : Promise < void > ;
214216 restoreNode ( nodeId : string ) : Promise < MinimalNodeEntity > ;
215- addNode ( nodeId : string , nodeBody : any , opts : any ) : any ;
217+ updateFileContent ( nodeId : string , contentBody : string , opts ?: any ) : Promise < MinimalNodeEntity > ;
218+ updateNode ( nodeId : string , nodeBody : any , opts ?: any ) : Promise < MinimalNodeEntity > ;
219+ getNodeInfo ( nodeId : string , opts ?: any ) : Promise < MinimalNodeEntryEntity > ;
220+ deleteNodePermanent ( nodeId : string ) : Promise < void > ;
221+ createFolder ( name : string , relativePath : string , nodeId ?: string , opts ?: any ) : Promise < MinimalNodeEntity > ;
222+ createFolderAutoRename ( name : string , relativePath : string , nodeId : string , opts ) : Promise < MinimalNodeEntity > ;
216223 }
217224
218225 export interface ApiClient {
@@ -485,14 +492,14 @@ declare namespace AlfrescoApi {
485492 }
486493
487494 export interface AlfrescoApiConfig {
488- hostEcm : string ;
489- hostBpm : string ;
490- contextRoot : string ;
491- contextRootBpm : string ;
492- provider : string ;
493- ticketEcm : string ;
494- ticketBpm : string ;
495- disableCsrf : boolean ;
495+ hostEcm ? : string ;
496+ hostBpm ? : string ;
497+ contextRoot ? : string ;
498+ contextRootBpm ? : string ;
499+ provider ? : string ;
500+ ticketEcm ? : string ;
501+ ticketBpm ? : string ;
502+ disableCsrf ? : boolean ;
496503 }
497504
498505 export interface ContentApi {
0 commit comments