/** @internal Versioned auth endpoint root (legacy unversioned removed). */ export declare const AUTH_V1_ENDPOINT = "/api/auth/v1"; /** @internal */ export declare const SIGNUP_PATH = "/signup"; /** @internal OAuth2.1 password grant. */ export declare const TOKEN_PATH = "/token"; /** @internal */ export declare const SIGNOUT_PATH = "/signout"; /** @internal */ export declare const SIGNOUT_ALL_PATH = "/signout-all"; /** @internal */ export declare const SET_USER_ROLE_PATH = "/set-user-role"; /** @internal */ export declare const INTROSPECT_PATH = "/introspect"; /** @internal */ export declare const HEALTH_PATH = "/health"; /** @internal */ export declare const ANONYMOUS_TOKEN_PATH = "/anonymous-token"; /** @internal */ export declare const JWKS_PATH = "/.well-known/jwks.json"; /** @internal Currently health returns the feature list. */ export declare const FEATURES_PATH = "/health"; /** @internal */ export declare const VERIFY_EMAIL_PATH = "/verify-email"; /** @internal */ export declare const RESEND_VERIFICATION_EMAIL_PATH = "/resend-verification-email"; /** @internal */ export declare const REQUEST_PASSWORD_RESET_PATH = "/reset-password"; /** @internal */ export declare const COMPLETE_PASSWORD_RESET_PATH = "/reset-password/complete"; /** @internal */ export declare const MAGIC_LINK_SEND_PATH = "/passwordless/send"; /** @internal */ export declare const MAGIC_LINK_VERIFY_PATH = "/passwordless/verify"; /** @internal Project Settings endpoint (public, no auth required). */ export declare const PROJECT_RUNTIME_SETTINGS_PATH = "/api/projectRuntimeSettings"; /** @internal Functions endpoint base path (callers append `/${functionName}/invoke`). */ export declare const FUNCTIONS_BASE_PATH = "/functions"; /** * @internal Default request timeout (ms) for function invocations. * * Function execution can run far longer than a typical data request, so the * generic 30s `ApiClient` default is too aggressive. This mirrors the * server-side BaaS-invoke to UDF-invoke timeout, which forwards to the Azure * Function with a 250s budget (Azure Functions caps HTTP-triggered execution * at 230s; the backend buffers to 250s). Keeping the client aligned prevents * the SDK from aborting an invocation the backend is still willing to serve. */ export declare const FUNCTIONS_INVOKE_TIMEOUT_MS = 250000; export declare const CONNECTOR_INVOKE_BASE_PATH = "/connector-invoke"; export declare const CONNECTOR_GRAPHQL_RUNTIME_BASE_PATH = "/connectors"; //# sourceMappingURL=constants.d.ts.map