UNPKG

quickbooks-api

Version:

A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.

15 lines (14 loc) 657 B
/** * The Avaialble Endpoints for the Auth Provider */ export declare enum APIUrls { Issuer = "https://oauth.platform.intuit.com/op/v1", UserAuth = "https://appcenter.intuit.com", OAuth2 = "https://oauth.platform.intuit.com/oauth2/v1", OAuthDeveloper = "https://developer.api.intuit.com/v2/oauth2", JWKS = "https://oauth.platform.intuit.com/op/v1/jwks", SandboxPlatform = "https://sandbox-accounts.platform.intuit.com/v1", ProductionPlatform = "https://accounts.platform.intuit.com/v1", SandboxApiBaseUrl = "https://sandbox-quickbooks.api.intuit.com/v3", ProductionApiBaseUrl = "https://quickbooks.api.intuit.com/v3" }