Comparing version 4.0.0-vaclavbohac-master-2017-09-27T13-31-14-155Z to 4.0.0-vaclavbohac-master-2017-09-27T13-44-54-349Z
@@ -24,3 +24,3 @@ export interface IAccountInfo { | ||
export function getFeatureFlags(): Promise<any>; | ||
}; | ||
} | ||
@@ -53,5 +53,5 @@ export interface IIdentifierUriPair { | ||
export function getObjectUsing<T>(projectId: string, uri: string, options: { types?: string[], nearest?: boolean } = {}): T; | ||
export function getObjectUsing<T>(projectId: string, uri: string, options?: { types?: string[], nearest?: boolean }): T; | ||
export function getObjectUsingMany<T>(projectId: string, uris: string[], options: { types?: string[], nearest?: boolean } = {}): T; | ||
export function getObjectUsingMany<T>(projectId: string, uris: string[], options?: { types?: string[], nearest?: boolean }): T; | ||
@@ -70,3 +70,3 @@ export function getAttribute(projectId: string): Promise<any>; | ||
export function getAvailableAttributes(projectId: string, metrics: string[]): Promies<any>; | ||
export function getAvailableAttributes(projectId: string, metrics: string[]): Promise<any>; | ||
@@ -87,3 +87,3 @@ export function getAvailableFacts(projectId: string, items: string[]): Promise<any>; | ||
export function translateElementLabelsToUris(projectId: string, labelUri: string, patterns: string[], mode = 'EXACT' | 'WILD'): Promise<any> | ||
export function translateElementLabelsToUris(projectId: string, labelUri: string, patterns: string[], mode: 'EXACT' | 'WILD'): Promise<any> | ||
@@ -96,10 +96,10 @@ export function getValidElements(projectId: string, id: string, options: IValidElementsOptions): Promise<IValidElementsResponse>; | ||
export function ldmManage(projectId: string, maql: string, options: { maxAttempts?: number, pollStep?: number } = {}): Promise<any>; | ||
export function ldmManage(projectId: string, maql: string, options: { maxAttempts?: number, pollStep?: number }): Promise<any>; | ||
export function etlPull(projectId: string, uploadsDir: string, options: { maxAttempts?: number, pollStep?: number } = {}): Promise<any>; | ||
}; | ||
export function etlPull(projectId: string, uploadsDir: string, options: { maxAttempts?: number, pollStep?: number }): Promise<any>; | ||
} | ||
export module config { | ||
export function setCustomDomain(d: string): void; | ||
}; | ||
} | ||
@@ -124,4 +124,4 @@ // TODO: Add complete list of options | ||
export function loadDateDataSets(projectId: string, options: ILoadDateDataSetsOptions): Promise<any>; | ||
}; | ||
export function loadDateDataSets(projectId: string, options: ILoadDateDataSetOptions): Promise<any>; | ||
} | ||
@@ -183,3 +183,3 @@ // TODO: Add complete list of options | ||
export function getData(projectId: string, columns: strings[], executionConfiguration: IExecutionConfiguration, settings: any): Promise<ISimpleExecutorResult>; | ||
export function getData(projectId: string, columns: string[], executionConfiguration: IExecutionConfiguration, settings: any): Promise<ISimpleExecutorResult>; | ||
} | ||
@@ -209,5 +209,5 @@ | ||
// TODO: Specify options | ||
export function createProject(title: string, authorizationToken: string, options: object = {}): Promise<any>; | ||
export function createProject(title: string, authorizationToken: string, options?: object): Promise<any>; | ||
export function deleteProject(projectId: string): Promise<void>; | ||
}; | ||
} |
{ | ||
"name": "gooddata", | ||
"version": "4.0.0-vaclavbohac-master-2017-09-27T13-31-14-155Z", | ||
"version": "4.0.0-vaclavbohac-master-2017-09-27T13-44-54-349Z", | ||
"author": "GoodData", | ||
@@ -5,0 +5,0 @@ "description": "GoodData JavaScript SDK", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1066158