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

Commit 4cc8c50

Browse files
authored
Merge pull request #175 from Alfresco/dev-eromano-174
make AlfrescoApiConfig parameters optional
2 parents 0af7194 + bc54b70 commit 4cc8c50

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
Alfresco JS API
66

7+
<a name="1.1.1"></a>
8+
# [1.1.1](https://github.com/Alfresco/alfresco-js-api/releases/tag/1.1.1) (27-01-2017)
9+
## Fix
10+
- [AlfrescoApiConfig make optional parameters in the declaration file #174](https://github.com/Alfresco/alfresco-js-api/pull/174)
11+
712
_This project provides a JavaScript client API into the v1 Alfresco REST API_
813
<a name="1.1.0"></a>
914
# [1.1.0](https://github.com/Alfresco/alfresco-js-api/releases/tag/1.1.0) (26-01-2017)

index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -485,14 +485,14 @@ declare namespace AlfrescoApi {
485485
}
486486

487487
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;
488+
hostEcm?: string;
489+
hostBpm?: string;
490+
contextRoot?: string;
491+
contextRootBpm?: string;
492+
provider?: string;
493+
ticketEcm?: string;
494+
ticketBpm?: string;
495+
disableCsrf?: boolean;
496496
}
497497

498498
export interface ContentApi {

0 commit comments

Comments
 (0)