UNPKG

@primno/dataverse-client

Version:

Dataverse / Dynamics 365 CE (on-premises) client for Node.JS. Use @primno/dataverse-auth to authenticate using a connection string or OAuth 2.0.

11 lines (10 loc) 220 B
export type ApiVersion = "9.0" | "9.1" | "9.2"; /** * Configuration of Dataverse-Client. */ export interface DataverseClientOptions { /** * WebAPI version. Default: 9.0. */ apiVersion?: ApiVersion; }