mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
134 lines
6.7 KiB
TypeScript
134 lines
6.7 KiB
TypeScript
// Type definitions for Restangular v1.4.0
|
|
// Project: https://github.com/mgonto/restangular
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
|
|
/// <reference path="../angularjs/angular.d.ts" />
|
|
|
|
|
|
declare module restangular {
|
|
|
|
interface IPromise<T> extends ng.IPromise<T> {
|
|
call(methodName: string, params?: any): IPromise<T>;
|
|
get(fieldName: string): IPromise<T>;
|
|
$object: T;
|
|
}
|
|
|
|
interface ICollectionPromise<T> extends ng.IPromise<T> {
|
|
push(object: any): ICollectionPromise<T>;
|
|
call(methodName: string, params?: any): ICollectionPromise<T>;
|
|
get(fieldName: string): ICollectionPromise<T>;
|
|
$object: T[];
|
|
}
|
|
|
|
interface IRequestConfig {
|
|
params?: any;
|
|
headers?: any;
|
|
cache?: any;
|
|
withCredentials?: boolean;
|
|
data?: any;
|
|
transformRequest?: any;
|
|
transformResponse?: any;
|
|
timeout?: any; // number | promise
|
|
}
|
|
|
|
interface IResponse {
|
|
status: number;
|
|
data: any;
|
|
config: {
|
|
method: string;
|
|
url: string;
|
|
params: any;
|
|
}
|
|
}
|
|
|
|
interface IProvider {
|
|
setBaseUrl(baseUrl: string): void;
|
|
setExtraFields(fields: string[]): void;
|
|
setParentless(parentless: boolean, routes: string[]): void;
|
|
setDefaultHttpFields(httpFields: any): void;
|
|
addElementTransformer(route: string, transformer: Function): void;
|
|
addElementTransformer(route: string, isCollection: boolean, transformer: Function): void;
|
|
setTransformOnlyServerElements(active: boolean): void;
|
|
setOnElemRestangularized(callback: (elem: any, isCollection: boolean, what: string, restangular: IService) => any): void;
|
|
setResponseInterceptor(responseInterceptor: (data: any, operation: string, what: string, url: string, response: IResponse, deferred: ng.IDeferred<any>) => any): void;
|
|
setResponseExtractor(responseInterceptor: (data: any, operation: string, what: string, url: string, response: IResponse, deferred: ng.IDeferred<any>) => any): void;
|
|
addResponseInterceptor(responseInterceptor: (data: any, operation: string, what: string, url: string, response: IResponse, deferred: ng.IDeferred<any>) => any): void;
|
|
setRequestInterceptor(requestInterceptor: (element: any, operation: string, what: string, url: string) => any): void;
|
|
addRequestInterceptor(requestInterceptor: (element: any, operation: string, what: string, url: string) => any): void;
|
|
setFullRequestInterceptor(fullRequestInterceptor: (element: any, operation: string, what: string, url: string, headers: any, params: any, httpConfig: IRequestConfig) => {element: any; headers: any; params: any}): void;
|
|
addFullRequestInterceptor(requestInterceptor: (element: any, operation: string, what: string, url: string, headers: any, params: any, httpConfig: IRequestConfig) => {headers: any; params: any; element: any; httpConfig: IRequestConfig}): void;
|
|
setErrorInterceptor(errorInterceptor: (response: IResponse, deferred: ng.IDeferred<any>) => any): void;
|
|
setRestangularFields(fields: {[fieldName: string]: string}): void;
|
|
setMethodOverriders(overriders: string[]): void;
|
|
setJsonp(jsonp: boolean): void;
|
|
setDefaultRequestParams(params: any): void;
|
|
setDefaultRequestParams(method: string, params: any): void;
|
|
setDefaultRequestParams(methods: string[], params: any): void;
|
|
setFullResponse(fullResponse: boolean): void;
|
|
setDefaultHeaders(headers: any): void;
|
|
setRequestSuffix(suffix: string): void;
|
|
setUseCannonicalId(useCannonicalId: boolean): void;
|
|
setEncodeIds(encode: boolean): void;
|
|
}
|
|
|
|
interface ICustom {
|
|
customGET(path: string, params?: any, headers?: any): IPromise<any>;
|
|
customGETLIST(path: string, params?: any, headers?: any): ICollectionPromise<any>;
|
|
customDELETE(path: string, params?: any, headers?: any): IPromise<any>;
|
|
customPOST(elem?: any, path?: string, params?: any, headers?: any): IPromise<any>;
|
|
customPUT(elem?: any, path?: string, params?: any, headers?: any): IPromise<any>;
|
|
customOperation(operation: string, path: string, params?: any, headers?: any, elem?: any): IPromise<any>;
|
|
addRestangularMethod(name: string, operation: string, path?: string, params?: any, headers?: any, elem?: any): IPromise<any>;
|
|
}
|
|
|
|
interface IService extends ICustom {
|
|
one(route: string, id?: number): IElement;
|
|
one(route: string, id?: string): IElement;
|
|
oneUrl(route: string, url: string): IElement;
|
|
all(route: string): IElement;
|
|
allUrl(route: string, url: string): IElement;
|
|
copy(fromElement: any): IElement;
|
|
withConfig(configurer: (RestangularProvider: IProvider) => any): IService;
|
|
restangularizeElement(parent: any, element: any, route: string, collection?: any, reqParams?: any): IElement;
|
|
restangularizeCollection(parent: any, element: any, route: string): ICollection;
|
|
service(route: string, parent: any): IService;
|
|
stripRestangular(element: any): any;
|
|
}
|
|
|
|
interface IElement extends IService {
|
|
get(queryParams?: any, headers?: any): IPromise<any>;
|
|
get<T>(queryParams?: any, headers?: any): IPromise<T>;
|
|
getList(subElement?: any, queryParams?: any, headers?: any): ICollectionPromise<any>;
|
|
getList<T>(subElement?: any, queryParams?: any, headers?: any): ICollectionPromise<T>;
|
|
put(queryParams?: any, headers?: any): IPromise<any>;
|
|
post(subElement: any, elementToPost: any, queryParams?: any, headers?: any): IPromise<any>;
|
|
post<T>(subElement: any, elementToPost: T, queryParams?: any, headers?: any): IPromise<T>;
|
|
post(elementToPost: any, queryParams?: any, headers?: any): IPromise<any>;
|
|
post<T>(elementToPost: T, queryParams?: any, headers?: any): IPromise<T>;
|
|
remove(queryParams?: any, headers?: any): IPromise<any>;
|
|
head(queryParams?: any, headers?: any): IPromise<any>;
|
|
trace(queryParams?: any, headers?: any): IPromise<any>;
|
|
options(queryParams?: any, headers?: any): IPromise<any>;
|
|
patch(queryParams?: any, headers?: any): IPromise<any>;
|
|
withHttpConfig(httpConfig: IRequestConfig): IElement;
|
|
save(queryParams?: any, headers?: any): IPromise<any>;
|
|
getRestangularUrl(): string;
|
|
}
|
|
|
|
interface ICollection extends IService {
|
|
getList(queryParams?: any, headers?: any): ICollectionPromise<any>;
|
|
getList<T>(queryParams?: any, headers?: any): ICollectionPromise<T>;
|
|
post(elementToPost: any, queryParams?: any, headers?: any): IPromise<any>;
|
|
post<T>(elementToPost: T, queryParams?: any, headers?: any): IPromise<T>;
|
|
head(queryParams?: any, headers?: any): IPromise<any>;
|
|
trace(queryParams?: any, headers?: any): IPromise<any>;
|
|
options(queryParams?: any, headers?: any): IPromise<any>;
|
|
patch(queryParams?: any, headers?: any): IPromise<any>;
|
|
putElement(idx: any, params: any, headers: any): IPromise<any>;
|
|
withHttpConfig(httpConfig: IRequestConfig): ICollection;
|
|
getRestangularUrl(): string;
|
|
}
|
|
}
|