dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
18 lines (17 loc) • 1.06 kB
TypeScript
import { BusinessObjectBase } from "./business-object";
import { LiveLinkQueryAppArea } from './livelink/livelink-query-apparea';
export declare const appAreaServiceName = "$$apparea";
export declare class LiveLinkQuery<T extends BusinessObjectBase> extends LiveLinkQueryAppArea<BusinessObjectBase> {
executeCommand(parameters: {
commandId: '$raw' | string;
method?: 'GET' | 'POST' | 'PATCH' | 'DELETE';
targetAppCode?: string;
commandArguments: any;
}): Promise<any>;
executeMetadata<T extends BusinessObjectBase>(): Promise<any>;
executeSelect<T extends BusinessObjectBase>(): Promise<Array<any>>;
executeCount<T extends BusinessObjectBase>(): Promise<number>;
executeCreate(entity: BusinessObjectBase | BusinessObjectBase[]): Promise<Array<any>>;
executeUpdate(entity: BusinessObjectBase | BusinessObjectBase[], pkValues?: any[], pkFields?: any[]): Promise<Array<any>>;
executeDelete(entity: BusinessObjectBase | BusinessObjectBase[], pkValues?: any[], pkFields?: any[]): Promise<Array<any>>;
}