mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Typescript definition to use Azure Mobile Services Client HTML/JS library You need an Azure subcription (even 3-month trial) to get valid applicationUrl and applicationKey to use the library
95 lines
4.6 KiB
TypeScript
95 lines
4.6 KiB
TypeScript
// Type definitions for Microsoft.Windows.Azure.MobileService.Web-1.0.0
|
|
// Project: https://<your-azure-mobileservice-project>.azure-mobile.net/client/MobileServices.Web-1.0.0.min.js
|
|
// Definitions by: Morosinotto Daniele <https://github.com/dmorosinotto/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
module Microsoft.WindowsAzure {
|
|
|
|
// MobileServiceClient object based on Microsoft Azure documentation: http://msdn.microsoft.com/en-us/library/windowsazure/jj554219.aspx
|
|
interface MobileServiceClient {
|
|
new (applicationUrl: string, applicationKey: string): MobileServiceClient;
|
|
applicationUrl: string;
|
|
applicationKey: string;
|
|
currentUser: User;
|
|
//for provider:string use one of ProviderEnum: 'microsoftaccount', 'facebook', 'twitter', 'google'
|
|
login(provider: string, token: string, callback: (error: any, user: User) => void ): void;
|
|
login(provider: string, token: string): asyncPromise;
|
|
login(provider: string, callback: (error: any, user: User) => void ): void;
|
|
login(provider: string): asyncPromise;
|
|
logout(): void;
|
|
getTable(tableName: string): MobileServiceTable;
|
|
withFilter(serviceFilter: (request: any, next: (request: any, callback: (error:any, response: any) => void ) => void, callback: (error: any, response: any) => void ) => void ) : MobileServiceClient;
|
|
}
|
|
|
|
// User object based on Microsoft Azure documentation: http://msdn.microsoft.com/en-us/library/windowsazure/jj554220.aspx
|
|
interface User {
|
|
getIdentities(): any;// { [providerName: string]: { userId: string, accessToken: string, accessTokenSecret?: string }; };
|
|
accessTokens: any; // { [providerName: string]: string; }
|
|
level: string; //for level:string use one of LevelEnum: 'admin','anonymous','authenticated'
|
|
userId: string;
|
|
}
|
|
|
|
|
|
// Interface to Platform.async(func) => Platform.Promise based on code MobileServices.Web-1.0.0.js
|
|
interface asyncPromise {
|
|
then(onSuccess: (result: any) => any, onError?: (error: any) => any): asyncPromise;
|
|
done(onSuccess?: (result: any) => void , onError?: (error: any) => void ): void;
|
|
}
|
|
|
|
// MobileServiceTable object based on Microsoft Azure documentation: http://msdn.microsoft.com/en-us/library/windowsazure/jj554239.aspx
|
|
interface MobileServiceTable extends IQuery {
|
|
new (tableName: string, client: MobileServiceClient): MobileServiceTable;
|
|
getTableName(): string;
|
|
getMobileServiceClient(): MobileServiceClient;
|
|
|
|
insert(istance: any, paramsQS: Object, callback: (error: any, retInserted: any) => any): void;
|
|
insert(istance: any, paramsQS: Object): asyncPromise;
|
|
insert(istance: any): asyncPromise;
|
|
|
|
update(istance: any, paramsQS: Object, callback: (error: any, retUpdated: any) => any): void;
|
|
update(istance: any, paramsQS: Object): asyncPromise;
|
|
update(istance: any): asyncPromise;
|
|
|
|
lookup(id: number, paramsQS: Object, callback: (error: any, retValue: any) => any): void;
|
|
lookup(id: number, paramsQS: Object): asyncPromise;
|
|
lookup(id: number): asyncPromise;
|
|
|
|
del(istance: any, paramsQS: Object, callback: (error?: any) => void ): void;
|
|
del(istance: any, paramsQS: Object): asyncPromise;
|
|
del(istance: any): asyncPromise;
|
|
|
|
|
|
read(query: IQuery, paramsQS: Object, callback: (error: any, retValues: any) => any): void;
|
|
read(query: IQuery, paramsQS: Object): asyncPromise;
|
|
read(query: IQuery): asyncPromise;
|
|
read(): asyncPromise;
|
|
}
|
|
|
|
|
|
// Interface to describe Query object fluent creation based on Microsoft Azure documentation: http://msdn.microsoft.com/en-us/library/windowsazure/jj613353.aspx
|
|
interface IQuery {
|
|
read(paramsQS?: Object): asyncPromise;
|
|
|
|
orderBy(...propName: string[]): IQuery;
|
|
orderByDescending(...propName: string[]): IQuery;
|
|
select(...propNameSelected: string[]): IQuery;
|
|
select(funcProjectionFromThis: () => any): IQuery;
|
|
where(mapObjFilterCriteria: any): IQuery;
|
|
where(funcPredicateOnThis: (...qParams: any[]) => bool, ...qValues: any[]): IQuery;
|
|
skip(n: number): IQuery;
|
|
take(n: number): IQuery;
|
|
includeTotalCount(): IQuery;
|
|
|
|
//internals found looking into code MobileServices.Web-1.0.0.js
|
|
//new (tableName: string, context: any): IQuery;
|
|
//getComponents(): any;
|
|
//toOData(): string;
|
|
}
|
|
|
|
interface WindowsAzureStatic {
|
|
MobileServiceClient: MobileServiceClient;
|
|
}
|
|
}
|
|
|
|
declare var WindowsAzure: Microsoft.WindowsAzure.WindowsAzureStatic;
|