Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit 787fdda

Browse files
committed
superagent 3.4.1
1 parent 0e4cd9f commit 787fdda

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

index.d.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"url": "https://github.com/Alfresco/alfresco-js-api/issues"
2929
},
3030
"dependencies": {
31-
"superagent": "3.7.0",
31+
"superagent": "3.4.1",
3232
"event-emitter": "0.3.4"
3333
},
3434
"devDependencies": {

0 commit comments

Comments
 (0)