@lumeweb/portal-sdk 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"billing.js","names":[],"sources":["../../../../src/account/generated/billing.ts"],"sourcesContent":["/**\n * Generated by orval v8.10.0 🍺\n * Do not edit manually.\n * Account API\n * API endpoints for managing user accounts, authentication, and API keys.\n * OpenAPI spec version: v0.2.7-0.20260418132608-572560c6efd0\n */\nimport type {\n BalanceResponse,\n ChangePlanRequest,\n CheckoutSessionStatusResponse,\n CheckoutUIResponse,\n ErrorResponse,\n GatewayListResponse,\n GetApiAccountBillingCheckoutSessionSessionIdStatusParams,\n GetApiAccountBillingCheckoutUiPlanIdParams,\n ManagementCapabilitiesResponse,\n ManagementRequest,\n ManagementResultResponse,\n PostApiAccountBillingWebhooksGatewayTypeBody,\n PublicPricingPlansListResponse,\n SubscriptionStatusResponse,\n UserCreditsListResponse\n} from './accountAPI.schemas';\n\n\n\nexport type getApiAccountBillingBalanceResponse200 = {\n data: BalanceResponse\n status: 200\n}\n\nexport type getApiAccountBillingBalanceResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingBalanceResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingBalanceResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingBalanceResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingBalanceResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingBalanceResponseSuccess = (getApiAccountBillingBalanceResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingBalanceResponseError = (getApiAccountBillingBalanceResponse400 | getApiAccountBillingBalanceResponse401 | getApiAccountBillingBalanceResponse403 | getApiAccountBillingBalanceResponse404 | getApiAccountBillingBalanceResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingBalanceResponse = (getApiAccountBillingBalanceResponseSuccess | getApiAccountBillingBalanceResponseError)\n\nexport const getGetApiAccountBillingBalanceUrl = () => {\n\n\n\n\n return `/api/account/billing/balance`\n}\n\n/**\n * Returns the authenticated user's current credit balance. Positive balance indicates available credits, negative balance indicates outstanding dues.\n * @summary Get Current User's Credit Balance\n */\nexport const getApiAccountBillingBalance = async ( options?: RequestInit): Promise<getApiAccountBillingBalanceResponse> => {\n\n const res = await fetch(getGetApiAccountBillingBalanceUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingBalanceResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingBalanceResponse\n}\n\n\nexport type postApiAccountBillingCancelResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelResponseSuccess = (postApiAccountBillingCancelResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelResponseError = (postApiAccountBillingCancelResponse400 | postApiAccountBillingCancelResponse401 | postApiAccountBillingCancelResponse403 | postApiAccountBillingCancelResponse404 | postApiAccountBillingCancelResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelResponse = (postApiAccountBillingCancelResponseSuccess | postApiAccountBillingCancelResponseError)\n\nexport const getPostApiAccountBillingCancelUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel`\n}\n\n/**\n * Executes the cancel operation on the current subscription. Validates that the gateway supports cancellation and returns the appropriate action\n * @summary Cancel subscription\n */\nexport const postApiAccountBillingCancel = async ( options?: RequestInit): Promise<postApiAccountBillingCancelResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelResponse\n}\n\n\nexport type postApiAccountBillingCancelAbortResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelAbortResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelAbortResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelAbortResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelAbortResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelAbortResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelAbortResponseSuccess = (postApiAccountBillingCancelAbortResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelAbortResponseError = (postApiAccountBillingCancelAbortResponse400 | postApiAccountBillingCancelAbortResponse401 | postApiAccountBillingCancelAbortResponse403 | postApiAccountBillingCancelAbortResponse404 | postApiAccountBillingCancelAbortResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelAbortResponse = (postApiAccountBillingCancelAbortResponseSuccess | postApiAccountBillingCancelAbortResponseError)\n\nexport const getPostApiAccountBillingCancelAbortUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel/abort`\n}\n\n/**\n * Cancels a scheduled subscription cancellation, restoring the subscription to active status\n * @summary Abort scheduled cancellation\n */\nexport const postApiAccountBillingCancelAbort = async ( options?: RequestInit): Promise<postApiAccountBillingCancelAbortResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelAbortUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelAbortResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelAbortResponse\n}\n\n\nexport type postApiAccountBillingChangePlanResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingChangePlanResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingChangePlanResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingChangePlanResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingChangePlanResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingChangePlanResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingChangePlanResponseSuccess = (postApiAccountBillingChangePlanResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingChangePlanResponseError = (postApiAccountBillingChangePlanResponse400 | postApiAccountBillingChangePlanResponse401 | postApiAccountBillingChangePlanResponse403 | postApiAccountBillingChangePlanResponse404 | postApiAccountBillingChangePlanResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingChangePlanResponse = (postApiAccountBillingChangePlanResponseSuccess | postApiAccountBillingChangePlanResponseError)\n\nexport const getPostApiAccountBillingChangePlanUrl = () => {\n\n\n\n\n return `/api/account/billing/change-plan`\n}\n\n/**\n * Executes the change plan operation on the current subscription. Validates that the gateway supports plan changes and returns the appropriate action\n * @summary Change subscription plan\n */\nexport const postApiAccountBillingChangePlan = async (changePlanRequest: ChangePlanRequest, options?: RequestInit): Promise<postApiAccountBillingChangePlanResponse> => {\n\n const res = await fetch(getPostApiAccountBillingChangePlanUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(changePlanRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingChangePlanResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingChangePlanResponse\n}\n\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse200 = {\n data: CheckoutSessionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse501 = {\n data: ErrorResponse\n status: 501\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseError = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse501) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse = (getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess | getApiAccountBillingCheckoutSessionSessionIdStatusResponseError)\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl = (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : value.toString())\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/session/${sessionId}/status?${stringifiedParams}` : `/api/account/billing/checkout/session/${sessionId}/status`\n}\n\n/**\n * Returns the status of a checkout session. Used by embedded checkout return pages to verify payment completion and retrieve customer information. Returns 501 if the gateway does not support session status retrieval.\n * @summary Get Checkout Session Status\n */\nexport const getApiAccountBillingCheckoutSessionSessionIdStatus = async (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutSessionSessionIdStatusResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl(sessionId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutSessionSessionIdStatusResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutSessionSessionIdStatusResponse\n}\n\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse200 = {\n data: CheckoutUIResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse409 = {\n data: ErrorResponse\n status: 409\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponseSuccess = (getApiAccountBillingCheckoutUiPlanIdResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutUiPlanIdResponseError = (getApiAccountBillingCheckoutUiPlanIdResponse400 | getApiAccountBillingCheckoutUiPlanIdResponse401 | getApiAccountBillingCheckoutUiPlanIdResponse403 | getApiAccountBillingCheckoutUiPlanIdResponse404 | getApiAccountBillingCheckoutUiPlanIdResponse409 | getApiAccountBillingCheckoutUiPlanIdResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse = (getApiAccountBillingCheckoutUiPlanIdResponseSuccess | getApiAccountBillingCheckoutUiPlanIdResponseError)\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdUrl = (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : value.toString())\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/ui/${planId}?${stringifiedParams}` : `/api/account/billing/checkout/ui/${planId}`\n}\n\n/**\n * Returns platform-agnostic UI fragments for checkout. Response format varies by gateway but always contains fragments of type link, html, script, iframe, modal, button, or form\n * @summary Get Checkout UI Fragments\n */\nexport const getApiAccountBillingCheckoutUiPlanId = async (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutUiPlanIdResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutUiPlanIdUrl(planId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutUiPlanIdResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutUiPlanIdResponse\n}\n\n\nexport type getApiAccountBillingCreditsResponse200 = {\n data: UserCreditsListResponse\n status: 200\n}\n\nexport type getApiAccountBillingCreditsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCreditsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCreditsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCreditsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCreditsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCreditsResponseSuccess = (getApiAccountBillingCreditsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCreditsResponseError = (getApiAccountBillingCreditsResponse400 | getApiAccountBillingCreditsResponse401 | getApiAccountBillingCreditsResponse403 | getApiAccountBillingCreditsResponse404 | getApiAccountBillingCreditsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCreditsResponse = (getApiAccountBillingCreditsResponseSuccess | getApiAccountBillingCreditsResponseError)\n\nexport const getGetApiAccountBillingCreditsUrl = () => {\n\n\n\n\n return `/api/account/billing/credits`\n}\n\n/**\n * Returns the authenticated user's credit transaction history with support for filtering by transaction type, direction, and date range. Results are paginated.\n * @summary Get Current User's Credit History\n */\nexport const getApiAccountBillingCredits = async ( options?: RequestInit): Promise<getApiAccountBillingCreditsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCreditsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCreditsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCreditsResponse\n}\n\n\nexport type postApiAccountBillingCustomerPortalResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCustomerPortalResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCustomerPortalResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCustomerPortalResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCustomerPortalResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCustomerPortalResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCustomerPortalResponseSuccess = (postApiAccountBillingCustomerPortalResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCustomerPortalResponseError = (postApiAccountBillingCustomerPortalResponse400 | postApiAccountBillingCustomerPortalResponse401 | postApiAccountBillingCustomerPortalResponse403 | postApiAccountBillingCustomerPortalResponse404 | postApiAccountBillingCustomerPortalResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCustomerPortalResponse = (postApiAccountBillingCustomerPortalResponseSuccess | postApiAccountBillingCustomerPortalResponseError)\n\nexport const getPostApiAccountBillingCustomerPortalUrl = () => {\n\n\n\n\n return `/api/account/billing/customer-portal`\n}\n\n/**\n * Returns a URL to access the generic customer portal for managing subscription\n * @summary Access Customer Portal\n */\nexport const postApiAccountBillingCustomerPortal = async ( options?: RequestInit): Promise<postApiAccountBillingCustomerPortalResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCustomerPortalUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCustomerPortalResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCustomerPortalResponse\n}\n\n\nexport type postApiAccountBillingManagementResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingManagementResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingManagementResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingManagementResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingManagementResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingManagementResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingManagementResponseSuccess = (postApiAccountBillingManagementResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingManagementResponseError = (postApiAccountBillingManagementResponse400 | postApiAccountBillingManagementResponse401 | postApiAccountBillingManagementResponse403 | postApiAccountBillingManagementResponse404 | postApiAccountBillingManagementResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingManagementResponse = (postApiAccountBillingManagementResponseSuccess | postApiAccountBillingManagementResponseError)\n\nexport const getPostApiAccountBillingManagementUrl = () => {\n\n\n\n\n return `/api/account/billing/management`\n}\n\n/**\n * Returns the action and configuration for a specific management operation\n * @summary Get subscription management operation details\n */\nexport const postApiAccountBillingManagement = async (managementRequest: ManagementRequest, options?: RequestInit): Promise<postApiAccountBillingManagementResponse> => {\n\n const res = await fetch(getPostApiAccountBillingManagementUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(managementRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingManagementResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingManagementResponse\n}\n\n\nexport type getApiAccountBillingManagementCapabilitiesResponse200 = {\n data: ManagementCapabilitiesResponse\n status: 200\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponseSuccess = (getApiAccountBillingManagementCapabilitiesResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingManagementCapabilitiesResponseError = (getApiAccountBillingManagementCapabilitiesResponse400 | getApiAccountBillingManagementCapabilitiesResponse401 | getApiAccountBillingManagementCapabilitiesResponse403 | getApiAccountBillingManagementCapabilitiesResponse404 | getApiAccountBillingManagementCapabilitiesResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingManagementCapabilitiesResponse = (getApiAccountBillingManagementCapabilitiesResponseSuccess | getApiAccountBillingManagementCapabilitiesResponseError)\n\nexport const getGetApiAccountBillingManagementCapabilitiesUrl = () => {\n\n\n\n\n return `/api/account/billing/management/capabilities`\n}\n\n/**\n * Returns the subscription management capabilities for the current user's gateway\n * @summary Get subscription management capabilities\n */\nexport const getApiAccountBillingManagementCapabilities = async ( options?: RequestInit): Promise<getApiAccountBillingManagementCapabilitiesResponse> => {\n\n const res = await fetch(getGetApiAccountBillingManagementCapabilitiesUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingManagementCapabilitiesResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingManagementCapabilitiesResponse\n}\n\n\nexport type postApiAccountBillingPauseResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingPauseResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingPauseResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingPauseResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingPauseResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingPauseResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingPauseResponseSuccess = (postApiAccountBillingPauseResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingPauseResponseError = (postApiAccountBillingPauseResponse400 | postApiAccountBillingPauseResponse401 | postApiAccountBillingPauseResponse403 | postApiAccountBillingPauseResponse404 | postApiAccountBillingPauseResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingPauseResponse = (postApiAccountBillingPauseResponseSuccess | postApiAccountBillingPauseResponseError)\n\nexport const getPostApiAccountBillingPauseUrl = () => {\n\n\n\n\n return `/api/account/billing/pause`\n}\n\n/**\n * Executes the pause operation on the current subscription. Validates that the gateway supports pausing and returns the appropriate action\n * @summary Pause subscription\n */\nexport const postApiAccountBillingPause = async ( options?: RequestInit): Promise<postApiAccountBillingPauseResponse> => {\n\n const res = await fetch(getPostApiAccountBillingPauseUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingPauseResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingPauseResponse\n}\n\n\nexport type postApiAccountBillingResumeResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingResumeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingResumeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingResumeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingResumeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingResumeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingResumeResponseSuccess = (postApiAccountBillingResumeResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingResumeResponseError = (postApiAccountBillingResumeResponse400 | postApiAccountBillingResumeResponse401 | postApiAccountBillingResumeResponse403 | postApiAccountBillingResumeResponse404 | postApiAccountBillingResumeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingResumeResponse = (postApiAccountBillingResumeResponseSuccess | postApiAccountBillingResumeResponseError)\n\nexport const getPostApiAccountBillingResumeUrl = () => {\n\n\n\n\n return `/api/account/billing/resume`\n}\n\n/**\n * Executes the resume operation on the current subscription. Validates that the gateway supports resuming and returns the appropriate action\n * @summary Resume subscription\n */\nexport const postApiAccountBillingResume = async ( options?: RequestInit): Promise<postApiAccountBillingResumeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingResumeUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingResumeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingResumeResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionResponse200 = {\n data: SubscriptionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionResponseSuccess = (getApiAccountBillingSubscriptionResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionResponseError = (getApiAccountBillingSubscriptionResponse400 | getApiAccountBillingSubscriptionResponse401 | getApiAccountBillingSubscriptionResponse403 | getApiAccountBillingSubscriptionResponse404 | getApiAccountBillingSubscriptionResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionResponse = (getApiAccountBillingSubscriptionResponseSuccess | getApiAccountBillingSubscriptionResponseError)\n\nexport const getGetApiAccountBillingSubscriptionUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription`\n}\n\n/**\n * Returns the subscription status for the authenticated user\n * @summary Get subscription status\n */\nexport const getApiAccountBillingSubscription = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionEventsResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponseSuccess = (getApiAccountBillingSubscriptionEventsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionEventsResponseError = (getApiAccountBillingSubscriptionEventsResponse400 | getApiAccountBillingSubscriptionEventsResponse401 | getApiAccountBillingSubscriptionEventsResponse403 | getApiAccountBillingSubscriptionEventsResponse404 | getApiAccountBillingSubscriptionEventsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionEventsResponse = (getApiAccountBillingSubscriptionEventsResponseSuccess | getApiAccountBillingSubscriptionEventsResponseError)\n\nexport const getGetApiAccountBillingSubscriptionEventsUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription/events`\n}\n\n/**\n * Establishes a Server-Sent Events (SSE) connection for real-time subscription updates including payment completions, subscription activations, and plan changes\n * @summary Subscribe to subscription events via SSE\n */\nexport const getApiAccountBillingSubscriptionEvents = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionEventsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionEventsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionEventsResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionEventsResponse\n}\n\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse413 = {\n data: ErrorResponse\n status: 413\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponseSuccess = (postApiAccountBillingWebhooksGatewayTypeResponse200 | postApiAccountBillingWebhooksGatewayTypeResponse204) & {\n headers: Headers;\n};\nexport type postApiAccountBillingWebhooksGatewayTypeResponseError = (postApiAccountBillingWebhooksGatewayTypeResponse400 | postApiAccountBillingWebhooksGatewayTypeResponse401 | postApiAccountBillingWebhooksGatewayTypeResponse403 | postApiAccountBillingWebhooksGatewayTypeResponse404 | postApiAccountBillingWebhooksGatewayTypeResponse413 | postApiAccountBillingWebhooksGatewayTypeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse = (postApiAccountBillingWebhooksGatewayTypeResponseSuccess | postApiAccountBillingWebhooksGatewayTypeResponseError)\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeUrl = (gatewayType: string,) => {\n\n\n\n\n return `/api/account/billing/webhooks/${gatewayType}`\n}\n\n/**\n * Handles incoming webhooks from payment gateways such as Stripe, PayPal, etc.\n * @summary Process payment gateway webhook\n */\nexport const postApiAccountBillingWebhooksGatewayType = async (gatewayType: string,\n postApiAccountBillingWebhooksGatewayTypeBody: PostApiAccountBillingWebhooksGatewayTypeBody, options?: RequestInit): Promise<postApiAccountBillingWebhooksGatewayTypeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingWebhooksGatewayTypeUrl(gatewayType),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(postApiAccountBillingWebhooksGatewayTypeBody)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingWebhooksGatewayTypeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingWebhooksGatewayTypeResponse\n}\n\n\nexport type getApiBillingGatewaysResponse200 = {\n data: GatewayListResponse\n status: 200\n}\n\nexport type getApiBillingGatewaysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysResponseSuccess = (getApiBillingGatewaysResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysResponseError = (getApiBillingGatewaysResponse400 | getApiBillingGatewaysResponse401 | getApiBillingGatewaysResponse403 | getApiBillingGatewaysResponse404 | getApiBillingGatewaysResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysResponse = (getApiBillingGatewaysResponseSuccess | getApiBillingGatewaysResponseError)\n\nexport const getGetApiBillingGatewaysUrl = () => {\n\n\n\n\n return `/api/billing/gateways`\n}\n\n/**\n * Returns list of available payment gateways with metadata\n * @summary List Available Payment Gateways\n */\nexport const getApiBillingGateways = async ( options?: RequestInit): Promise<getApiBillingGatewaysResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysResponse\n}\n\n\nexport type getApiBillingGatewaysIdLogoResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiBillingGatewaysIdLogoResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysIdLogoResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysIdLogoResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysIdLogoResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysIdLogoResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysIdLogoResponseSuccess = (getApiBillingGatewaysIdLogoResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysIdLogoResponseError = (getApiBillingGatewaysIdLogoResponse400 | getApiBillingGatewaysIdLogoResponse401 | getApiBillingGatewaysIdLogoResponse403 | getApiBillingGatewaysIdLogoResponse404 | getApiBillingGatewaysIdLogoResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysIdLogoResponse = (getApiBillingGatewaysIdLogoResponseSuccess | getApiBillingGatewaysIdLogoResponseError)\n\nexport const getGetApiBillingGatewaysIdLogoUrl = (id: string,) => {\n\n\n\n\n return `/api/billing/gateways/${id}/logo`\n}\n\n/**\n * Returns embedded logo image for payment gateway\n * @summary Get Gateway Logo\n */\nexport const getApiBillingGatewaysIdLogo = async (id: string, options?: RequestInit): Promise<getApiBillingGatewaysIdLogoResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysIdLogoUrl(id),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysIdLogoResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysIdLogoResponse\n}\n\n\nexport type getApiBillingPlansResponse200 = {\n data: PublicPricingPlansListResponse\n status: 200\n}\n\nexport type getApiBillingPlansResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingPlansResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingPlansResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingPlansResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingPlansResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingPlansResponseSuccess = (getApiBillingPlansResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingPlansResponseError = (getApiBillingPlansResponse400 | getApiBillingPlansResponse401 | getApiBillingPlansResponse403 | getApiBillingPlansResponse404 | getApiBillingPlansResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingPlansResponse = (getApiBillingPlansResponseSuccess | getApiBillingPlansResponseError)\n\nexport const getGetApiBillingPlansUrl = () => {\n\n\n\n\n return `/api/billing/plans`\n}\n\n/**\n * Returns pricing plans with their periods for user's effective price line\n * @summary List Pricing Plans\n */\nexport const getApiBillingPlans = async ( options?: RequestInit): Promise<getApiBillingPlansResponse> => {\n\n const res = await fetch(getGetApiBillingPlansUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingPlansResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingPlansResponse\n}\n\n\n"],"mappings":"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"}
1
+ {"version":3,"file":"billing.js","names":[],"sources":["../../../../src/account/generated/billing.ts"],"sourcesContent":["/**\n * Generated by orval v8.10.0 🍺\n * Do not edit manually.\n * Account API\n * API endpoints for managing user accounts, authentication, and API keys.\n * OpenAPI spec version: v0.2.7-0.20260418132608-572560c6efd0\n */\nimport type {\n BalanceResponse,\n ChangePlanRequest,\n CheckoutSessionStatusResponse,\n CheckoutUIResponse,\n ErrorResponse,\n GatewayListResponse,\n GetApiAccountBillingCheckoutSessionSessionIdStatusParams,\n GetApiAccountBillingCheckoutUiPlanIdParams,\n ManagementCapabilitiesResponse,\n ManagementRequest,\n ManagementResultResponse,\n PostApiAccountBillingWebhooksGatewayTypeBody,\n PublicPricingPlansListResponse,\n SubscriptionStatusResponse,\n UserCreditsListResponse\n} from './accountAPI.schemas';\n\nimport {\n faker\n} from '@faker-js/faker';\n\nimport {\n HttpResponse,\n delay,\n http\n} from 'msw';\nimport type {\n RequestHandlerOptions\n} from 'msw';\n\n\n\nexport type getApiAccountBillingBalanceResponse200 = {\n data: BalanceResponse\n status: 200\n}\n\nexport type getApiAccountBillingBalanceResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingBalanceResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingBalanceResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingBalanceResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingBalanceResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingBalanceResponseSuccess = (getApiAccountBillingBalanceResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingBalanceResponseError = (getApiAccountBillingBalanceResponse400 | getApiAccountBillingBalanceResponse401 | getApiAccountBillingBalanceResponse403 | getApiAccountBillingBalanceResponse404 | getApiAccountBillingBalanceResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingBalanceResponse = (getApiAccountBillingBalanceResponseSuccess | getApiAccountBillingBalanceResponseError)\n\nexport const getGetApiAccountBillingBalanceUrl = () => {\n\n\n\n\n return `/api/account/billing/balance`\n}\n\n/**\n * Returns the authenticated user's current credit balance. Positive balance indicates available credits, negative balance indicates outstanding dues.\n * @summary Get Current User's Credit Balance\n */\nexport const getApiAccountBillingBalance = async ( options?: RequestInit): Promise<getApiAccountBillingBalanceResponse> => {\n\n const res = await fetch(getGetApiAccountBillingBalanceUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingBalanceResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingBalanceResponse\n}\n\n\nexport type postApiAccountBillingCancelResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelResponseSuccess = (postApiAccountBillingCancelResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelResponseError = (postApiAccountBillingCancelResponse400 | postApiAccountBillingCancelResponse401 | postApiAccountBillingCancelResponse403 | postApiAccountBillingCancelResponse404 | postApiAccountBillingCancelResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelResponse = (postApiAccountBillingCancelResponseSuccess | postApiAccountBillingCancelResponseError)\n\nexport const getPostApiAccountBillingCancelUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel`\n}\n\n/**\n * Executes the cancel operation on the current subscription. Validates that the gateway supports cancellation and returns the appropriate action\n * @summary Cancel subscription\n */\nexport const postApiAccountBillingCancel = async ( options?: RequestInit): Promise<postApiAccountBillingCancelResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelResponse\n}\n\n\nexport type postApiAccountBillingCancelAbortResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCancelAbortResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCancelAbortResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCancelAbortResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCancelAbortResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCancelAbortResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCancelAbortResponseSuccess = (postApiAccountBillingCancelAbortResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCancelAbortResponseError = (postApiAccountBillingCancelAbortResponse400 | postApiAccountBillingCancelAbortResponse401 | postApiAccountBillingCancelAbortResponse403 | postApiAccountBillingCancelAbortResponse404 | postApiAccountBillingCancelAbortResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCancelAbortResponse = (postApiAccountBillingCancelAbortResponseSuccess | postApiAccountBillingCancelAbortResponseError)\n\nexport const getPostApiAccountBillingCancelAbortUrl = () => {\n\n\n\n\n return `/api/account/billing/cancel/abort`\n}\n\n/**\n * Cancels a scheduled subscription cancellation, restoring the subscription to active status\n * @summary Abort scheduled cancellation\n */\nexport const postApiAccountBillingCancelAbort = async ( options?: RequestInit): Promise<postApiAccountBillingCancelAbortResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCancelAbortUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCancelAbortResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCancelAbortResponse\n}\n\n\nexport type postApiAccountBillingChangePlanResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingChangePlanResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingChangePlanResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingChangePlanResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingChangePlanResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingChangePlanResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingChangePlanResponseSuccess = (postApiAccountBillingChangePlanResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingChangePlanResponseError = (postApiAccountBillingChangePlanResponse400 | postApiAccountBillingChangePlanResponse401 | postApiAccountBillingChangePlanResponse403 | postApiAccountBillingChangePlanResponse404 | postApiAccountBillingChangePlanResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingChangePlanResponse = (postApiAccountBillingChangePlanResponseSuccess | postApiAccountBillingChangePlanResponseError)\n\nexport const getPostApiAccountBillingChangePlanUrl = () => {\n\n\n\n\n return `/api/account/billing/change-plan`\n}\n\n/**\n * Executes the change plan operation on the current subscription. Validates that the gateway supports plan changes and returns the appropriate action\n * @summary Change subscription plan\n */\nexport const postApiAccountBillingChangePlan = async (changePlanRequest: ChangePlanRequest, options?: RequestInit): Promise<postApiAccountBillingChangePlanResponse> => {\n\n const res = await fetch(getPostApiAccountBillingChangePlanUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(changePlanRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingChangePlanResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingChangePlanResponse\n}\n\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse200 = {\n data: CheckoutSessionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse501 = {\n data: ErrorResponse\n status: 501\n}\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponseError = (getApiAccountBillingCheckoutSessionSessionIdStatusResponse400 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse401 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse403 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse404 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse500 | getApiAccountBillingCheckoutSessionSessionIdStatusResponse501) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutSessionSessionIdStatusResponse = (getApiAccountBillingCheckoutSessionSessionIdStatusResponseSuccess | getApiAccountBillingCheckoutSessionSessionIdStatusResponseError)\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl = (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : value.toString())\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/session/${sessionId}/status?${stringifiedParams}` : `/api/account/billing/checkout/session/${sessionId}/status`\n}\n\n/**\n * Returns the status of a checkout session. Used by embedded checkout return pages to verify payment completion and retrieve customer information. Returns 501 if the gateway does not support session status retrieval.\n * @summary Get Checkout Session Status\n */\nexport const getApiAccountBillingCheckoutSessionSessionIdStatus = async (sessionId: string,\n params?: GetApiAccountBillingCheckoutSessionSessionIdStatusParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutSessionSessionIdStatusResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutSessionSessionIdStatusUrl(sessionId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutSessionSessionIdStatusResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutSessionSessionIdStatusResponse\n}\n\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse200 = {\n data: CheckoutUIResponse\n status: 200\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse409 = {\n data: ErrorResponse\n status: 409\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponseSuccess = (getApiAccountBillingCheckoutUiPlanIdResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCheckoutUiPlanIdResponseError = (getApiAccountBillingCheckoutUiPlanIdResponse400 | getApiAccountBillingCheckoutUiPlanIdResponse401 | getApiAccountBillingCheckoutUiPlanIdResponse403 | getApiAccountBillingCheckoutUiPlanIdResponse404 | getApiAccountBillingCheckoutUiPlanIdResponse409 | getApiAccountBillingCheckoutUiPlanIdResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCheckoutUiPlanIdResponse = (getApiAccountBillingCheckoutUiPlanIdResponseSuccess | getApiAccountBillingCheckoutUiPlanIdResponseError)\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdUrl = (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams,) => {\n const normalizedParams = new URLSearchParams();\n\n Object.entries(params || {}).forEach(([key, value]) => {\n\n if (value !== undefined) {\n normalizedParams.append(key, value === null ? 'null' : value.toString())\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/billing/checkout/ui/${planId}?${stringifiedParams}` : `/api/account/billing/checkout/ui/${planId}`\n}\n\n/**\n * Returns platform-agnostic UI fragments for checkout. Response format varies by gateway but always contains fragments of type link, html, script, iframe, modal, button, or form\n * @summary Get Checkout UI Fragments\n */\nexport const getApiAccountBillingCheckoutUiPlanId = async (planId: string,\n params?: GetApiAccountBillingCheckoutUiPlanIdParams, options?: RequestInit): Promise<getApiAccountBillingCheckoutUiPlanIdResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCheckoutUiPlanIdUrl(planId,params),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCheckoutUiPlanIdResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCheckoutUiPlanIdResponse\n}\n\n\nexport type getApiAccountBillingCreditsResponse200 = {\n data: UserCreditsListResponse\n status: 200\n}\n\nexport type getApiAccountBillingCreditsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingCreditsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingCreditsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingCreditsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingCreditsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingCreditsResponseSuccess = (getApiAccountBillingCreditsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingCreditsResponseError = (getApiAccountBillingCreditsResponse400 | getApiAccountBillingCreditsResponse401 | getApiAccountBillingCreditsResponse403 | getApiAccountBillingCreditsResponse404 | getApiAccountBillingCreditsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingCreditsResponse = (getApiAccountBillingCreditsResponseSuccess | getApiAccountBillingCreditsResponseError)\n\nexport const getGetApiAccountBillingCreditsUrl = () => {\n\n\n\n\n return `/api/account/billing/credits`\n}\n\n/**\n * Returns the authenticated user's credit transaction history with support for filtering by transaction type, direction, and date range. Results are paginated.\n * @summary Get Current User's Credit History\n */\nexport const getApiAccountBillingCredits = async ( options?: RequestInit): Promise<getApiAccountBillingCreditsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingCreditsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingCreditsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingCreditsResponse\n}\n\n\nexport type postApiAccountBillingCustomerPortalResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingCustomerPortalResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingCustomerPortalResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingCustomerPortalResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingCustomerPortalResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingCustomerPortalResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingCustomerPortalResponseSuccess = (postApiAccountBillingCustomerPortalResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingCustomerPortalResponseError = (postApiAccountBillingCustomerPortalResponse400 | postApiAccountBillingCustomerPortalResponse401 | postApiAccountBillingCustomerPortalResponse403 | postApiAccountBillingCustomerPortalResponse404 | postApiAccountBillingCustomerPortalResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingCustomerPortalResponse = (postApiAccountBillingCustomerPortalResponseSuccess | postApiAccountBillingCustomerPortalResponseError)\n\nexport const getPostApiAccountBillingCustomerPortalUrl = () => {\n\n\n\n\n return `/api/account/billing/customer-portal`\n}\n\n/**\n * Returns a URL to access the generic customer portal for managing subscription\n * @summary Access Customer Portal\n */\nexport const postApiAccountBillingCustomerPortal = async ( options?: RequestInit): Promise<postApiAccountBillingCustomerPortalResponse> => {\n\n const res = await fetch(getPostApiAccountBillingCustomerPortalUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingCustomerPortalResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingCustomerPortalResponse\n}\n\n\nexport type postApiAccountBillingManagementResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingManagementResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingManagementResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingManagementResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingManagementResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingManagementResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingManagementResponseSuccess = (postApiAccountBillingManagementResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingManagementResponseError = (postApiAccountBillingManagementResponse400 | postApiAccountBillingManagementResponse401 | postApiAccountBillingManagementResponse403 | postApiAccountBillingManagementResponse404 | postApiAccountBillingManagementResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingManagementResponse = (postApiAccountBillingManagementResponseSuccess | postApiAccountBillingManagementResponseError)\n\nexport const getPostApiAccountBillingManagementUrl = () => {\n\n\n\n\n return `/api/account/billing/management`\n}\n\n/**\n * Returns the action and configuration for a specific management operation\n * @summary Get subscription management operation details\n */\nexport const postApiAccountBillingManagement = async (managementRequest: ManagementRequest, options?: RequestInit): Promise<postApiAccountBillingManagementResponse> => {\n\n const res = await fetch(getPostApiAccountBillingManagementUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(managementRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingManagementResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingManagementResponse\n}\n\n\nexport type getApiAccountBillingManagementCapabilitiesResponse200 = {\n data: ManagementCapabilitiesResponse\n status: 200\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingManagementCapabilitiesResponseSuccess = (getApiAccountBillingManagementCapabilitiesResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingManagementCapabilitiesResponseError = (getApiAccountBillingManagementCapabilitiesResponse400 | getApiAccountBillingManagementCapabilitiesResponse401 | getApiAccountBillingManagementCapabilitiesResponse403 | getApiAccountBillingManagementCapabilitiesResponse404 | getApiAccountBillingManagementCapabilitiesResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingManagementCapabilitiesResponse = (getApiAccountBillingManagementCapabilitiesResponseSuccess | getApiAccountBillingManagementCapabilitiesResponseError)\n\nexport const getGetApiAccountBillingManagementCapabilitiesUrl = () => {\n\n\n\n\n return `/api/account/billing/management/capabilities`\n}\n\n/**\n * Returns the subscription management capabilities for the current user's gateway\n * @summary Get subscription management capabilities\n */\nexport const getApiAccountBillingManagementCapabilities = async ( options?: RequestInit): Promise<getApiAccountBillingManagementCapabilitiesResponse> => {\n\n const res = await fetch(getGetApiAccountBillingManagementCapabilitiesUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingManagementCapabilitiesResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingManagementCapabilitiesResponse\n}\n\n\nexport type postApiAccountBillingPauseResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingPauseResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingPauseResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingPauseResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingPauseResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingPauseResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingPauseResponseSuccess = (postApiAccountBillingPauseResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingPauseResponseError = (postApiAccountBillingPauseResponse400 | postApiAccountBillingPauseResponse401 | postApiAccountBillingPauseResponse403 | postApiAccountBillingPauseResponse404 | postApiAccountBillingPauseResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingPauseResponse = (postApiAccountBillingPauseResponseSuccess | postApiAccountBillingPauseResponseError)\n\nexport const getPostApiAccountBillingPauseUrl = () => {\n\n\n\n\n return `/api/account/billing/pause`\n}\n\n/**\n * Executes the pause operation on the current subscription. Validates that the gateway supports pausing and returns the appropriate action\n * @summary Pause subscription\n */\nexport const postApiAccountBillingPause = async ( options?: RequestInit): Promise<postApiAccountBillingPauseResponse> => {\n\n const res = await fetch(getPostApiAccountBillingPauseUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingPauseResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingPauseResponse\n}\n\n\nexport type postApiAccountBillingResumeResponse200 = {\n data: ManagementResultResponse\n status: 200\n}\n\nexport type postApiAccountBillingResumeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingResumeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingResumeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingResumeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingResumeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingResumeResponseSuccess = (postApiAccountBillingResumeResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountBillingResumeResponseError = (postApiAccountBillingResumeResponse400 | postApiAccountBillingResumeResponse401 | postApiAccountBillingResumeResponse403 | postApiAccountBillingResumeResponse404 | postApiAccountBillingResumeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingResumeResponse = (postApiAccountBillingResumeResponseSuccess | postApiAccountBillingResumeResponseError)\n\nexport const getPostApiAccountBillingResumeUrl = () => {\n\n\n\n\n return `/api/account/billing/resume`\n}\n\n/**\n * Executes the resume operation on the current subscription. Validates that the gateway supports resuming and returns the appropriate action\n * @summary Resume subscription\n */\nexport const postApiAccountBillingResume = async ( options?: RequestInit): Promise<postApiAccountBillingResumeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingResumeUrl(),\n {\n ...options,\n method: 'POST'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingResumeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingResumeResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionResponse200 = {\n data: SubscriptionStatusResponse\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionResponseSuccess = (getApiAccountBillingSubscriptionResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionResponseError = (getApiAccountBillingSubscriptionResponse400 | getApiAccountBillingSubscriptionResponse401 | getApiAccountBillingSubscriptionResponse403 | getApiAccountBillingSubscriptionResponse404 | getApiAccountBillingSubscriptionResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionResponse = (getApiAccountBillingSubscriptionResponseSuccess | getApiAccountBillingSubscriptionResponseError)\n\nexport const getGetApiAccountBillingSubscriptionUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription`\n}\n\n/**\n * Returns the subscription status for the authenticated user\n * @summary Get subscription status\n */\nexport const getApiAccountBillingSubscription = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionResponse\n}\n\n\nexport type getApiAccountBillingSubscriptionEventsResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountBillingSubscriptionEventsResponseSuccess = (getApiAccountBillingSubscriptionEventsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountBillingSubscriptionEventsResponseError = (getApiAccountBillingSubscriptionEventsResponse400 | getApiAccountBillingSubscriptionEventsResponse401 | getApiAccountBillingSubscriptionEventsResponse403 | getApiAccountBillingSubscriptionEventsResponse404 | getApiAccountBillingSubscriptionEventsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountBillingSubscriptionEventsResponse = (getApiAccountBillingSubscriptionEventsResponseSuccess | getApiAccountBillingSubscriptionEventsResponseError)\n\nexport const getGetApiAccountBillingSubscriptionEventsUrl = () => {\n\n\n\n\n return `/api/account/billing/subscription/events`\n}\n\n/**\n * Establishes a Server-Sent Events (SSE) connection for real-time subscription updates including payment completions, subscription activations, and plan changes\n * @summary Subscribe to subscription events via SSE\n */\nexport const getApiAccountBillingSubscriptionEvents = async ( options?: RequestInit): Promise<getApiAccountBillingSubscriptionEventsResponse> => {\n\n const res = await fetch(getGetApiAccountBillingSubscriptionEventsUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiAccountBillingSubscriptionEventsResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiAccountBillingSubscriptionEventsResponse\n}\n\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse413 = {\n data: ErrorResponse\n status: 413\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponseSuccess = (postApiAccountBillingWebhooksGatewayTypeResponse200 | postApiAccountBillingWebhooksGatewayTypeResponse204) & {\n headers: Headers;\n};\nexport type postApiAccountBillingWebhooksGatewayTypeResponseError = (postApiAccountBillingWebhooksGatewayTypeResponse400 | postApiAccountBillingWebhooksGatewayTypeResponse401 | postApiAccountBillingWebhooksGatewayTypeResponse403 | postApiAccountBillingWebhooksGatewayTypeResponse404 | postApiAccountBillingWebhooksGatewayTypeResponse413 | postApiAccountBillingWebhooksGatewayTypeResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountBillingWebhooksGatewayTypeResponse = (postApiAccountBillingWebhooksGatewayTypeResponseSuccess | postApiAccountBillingWebhooksGatewayTypeResponseError)\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeUrl = (gatewayType: string,) => {\n\n\n\n\n return `/api/account/billing/webhooks/${gatewayType}`\n}\n\n/**\n * Handles incoming webhooks from payment gateways such as Stripe, PayPal, etc.\n * @summary Process payment gateway webhook\n */\nexport const postApiAccountBillingWebhooksGatewayType = async (gatewayType: string,\n postApiAccountBillingWebhooksGatewayTypeBody: PostApiAccountBillingWebhooksGatewayTypeBody, options?: RequestInit): Promise<postApiAccountBillingWebhooksGatewayTypeResponse> => {\n\n const res = await fetch(getPostApiAccountBillingWebhooksGatewayTypeUrl(gatewayType),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(postApiAccountBillingWebhooksGatewayTypeBody)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountBillingWebhooksGatewayTypeResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountBillingWebhooksGatewayTypeResponse\n}\n\n\nexport type getApiBillingGatewaysResponse200 = {\n data: GatewayListResponse\n status: 200\n}\n\nexport type getApiBillingGatewaysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysResponseSuccess = (getApiBillingGatewaysResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysResponseError = (getApiBillingGatewaysResponse400 | getApiBillingGatewaysResponse401 | getApiBillingGatewaysResponse403 | getApiBillingGatewaysResponse404 | getApiBillingGatewaysResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysResponse = (getApiBillingGatewaysResponseSuccess | getApiBillingGatewaysResponseError)\n\nexport const getGetApiBillingGatewaysUrl = () => {\n\n\n\n\n return `/api/billing/gateways`\n}\n\n/**\n * Returns list of available payment gateways with metadata\n * @summary List Available Payment Gateways\n */\nexport const getApiBillingGateways = async ( options?: RequestInit): Promise<getApiBillingGatewaysResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysResponse\n}\n\n\nexport type getApiBillingGatewaysIdLogoResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiBillingGatewaysIdLogoResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingGatewaysIdLogoResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingGatewaysIdLogoResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingGatewaysIdLogoResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingGatewaysIdLogoResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingGatewaysIdLogoResponseSuccess = (getApiBillingGatewaysIdLogoResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingGatewaysIdLogoResponseError = (getApiBillingGatewaysIdLogoResponse400 | getApiBillingGatewaysIdLogoResponse401 | getApiBillingGatewaysIdLogoResponse403 | getApiBillingGatewaysIdLogoResponse404 | getApiBillingGatewaysIdLogoResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingGatewaysIdLogoResponse = (getApiBillingGatewaysIdLogoResponseSuccess | getApiBillingGatewaysIdLogoResponseError)\n\nexport const getGetApiBillingGatewaysIdLogoUrl = (id: string,) => {\n\n\n\n\n return `/api/billing/gateways/${id}/logo`\n}\n\n/**\n * Returns embedded logo image for payment gateway\n * @summary Get Gateway Logo\n */\nexport const getApiBillingGatewaysIdLogo = async (id: string, options?: RequestInit): Promise<getApiBillingGatewaysIdLogoResponse> => {\n\n const res = await fetch(getGetApiBillingGatewaysIdLogoUrl(id),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingGatewaysIdLogoResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiBillingGatewaysIdLogoResponse\n}\n\n\nexport type getApiBillingPlansResponse200 = {\n data: PublicPricingPlansListResponse\n status: 200\n}\n\nexport type getApiBillingPlansResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiBillingPlansResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiBillingPlansResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiBillingPlansResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiBillingPlansResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiBillingPlansResponseSuccess = (getApiBillingPlansResponse200) & {\n headers: Headers;\n};\nexport type getApiBillingPlansResponseError = (getApiBillingPlansResponse400 | getApiBillingPlansResponse401 | getApiBillingPlansResponse403 | getApiBillingPlansResponse404 | getApiBillingPlansResponse500) & {\n headers: Headers;\n};\n\nexport type getApiBillingPlansResponse = (getApiBillingPlansResponseSuccess | getApiBillingPlansResponseError)\n\nexport const getGetApiBillingPlansUrl = () => {\n\n\n\n\n return `/api/billing/plans`\n}\n\n/**\n * Returns pricing plans with their periods for user's effective price line\n * @summary List Pricing Plans\n */\nexport const getApiBillingPlans = async ( options?: RequestInit): Promise<getApiBillingPlansResponse> => {\n\n const res = await fetch(getGetApiBillingPlansUrl(),\n {\n ...options,\n method: 'GET'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: getApiBillingPlansResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiBillingPlansResponse\n}\n\n\n\n\nexport const getGetApiAccountBillingBalanceResponseMock = (overrideResponse: Partial<Extract<BalanceResponse, object>> = {}): BalanceResponse => ({balance: {}, user_id: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountBillingCancelResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingCancelAbortResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingChangePlanResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock = (overrideResponse: Partial<Extract<CheckoutSessionStatusResponse, object>> = {}): CheckoutSessionStatusResponse => ({customer_email: faker.string.alpha({length: {min: 10, max: 20}}), session_id: faker.string.alpha({length: {min: 10, max: 20}}), status: faker.string.alpha({length: {min: 10, max: 20}}), user_id: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdResponseMock = (overrideResponse: Partial<Extract<CheckoutUIResponse, object>> = {}): CheckoutUIResponse => ({expires_at: faker.date.past().toISOString().slice(0, 19) + 'Z', fragments: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({css: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), html: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), link: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), metadata: faker.helpers.arrayElement([{}, undefined]), script: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})})), metadata: faker.helpers.arrayElement([{}, undefined]), session_id: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingCreditsResponseMock = (overrideResponse: Partial<Extract<UserCreditsListResponse, object>> = {}): UserCreditsListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({amount: {}, created_at: faker.date.past().toISOString().slice(0, 19) + 'Z', description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), direction: faker.string.alpha({length: {min: 10, max: 20}}), id: Array.from({ length: faker.number.int({min: 16, max: 16}) }, (_, i) => i + 1).map(() => (faker.number.int())), type: faker.string.alpha({length: {min: 10, max: 20}})})), total: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountBillingCustomerPortalResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingManagementResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingManagementCapabilitiesResponseMock = (overrideResponse: Partial<Extract<ManagementCapabilitiesResponse, object>> = {}): ManagementCapabilitiesResponse => ({admin_operations: {\n [faker.string.alphanumeric(5)]: faker.datatype.boolean()\n }, management_mode: faker.string.alpha({length: {min: 10, max: 20}}), operations: {\n [faker.string.alphanumeric(5)]: faker.datatype.boolean()\n }, ...overrideResponse})\n\nexport const getPostApiAccountBillingPauseResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingResumeResponseMock = (overrideResponse: Partial<Extract<ManagementResultResponse, object>> = {}): ManagementResultResponse => ({action: faker.string.alpha({length: {min: 10, max: 20}}), api_endpoint: faker.helpers.arrayElement([{method: faker.string.alpha({length: {min: 10, max: 20}}), path: faker.string.alpha({length: {min: 10, max: 20}})}, undefined]), can_abort: faker.datatype.boolean(), confirmation_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), effective_time: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), error_message: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), requires_confirmation: faker.datatype.boolean(), status: faker.string.alpha({length: {min: 10, max: 20}}), url: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), ...overrideResponse})\n\nexport const getGetApiAccountBillingSubscriptionResponseMock = (overrideResponse: Partial<Extract<SubscriptionStatusResponse, object>> = {}): SubscriptionStatusResponse => ({created_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), gateway_type: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), is_subscribed: faker.datatype.boolean(), paused_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), pricing_plan_period_id: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), will_cancel_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), ...overrideResponse})\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiBillingGatewaysResponseMock = (): GatewayListResponse => (Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({abilities: {checkout: faker.datatype.boolean(), customer_portal: faker.datatype.boolean(), session_status: faker.datatype.boolean()}, description: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.string.alpha({length: {min: 10, max: 20}}), is_active: faker.datatype.boolean(), logo_url: faker.string.alpha({length: {min: 10, max: 20}}), name: faker.string.alpha({length: {min: 10, max: 20}})})))\n\nexport const getGetApiBillingPlansResponseMock = (overrideResponse: Partial<Extract<PublicPricingPlansListResponse, object>> = {}): PublicPricingPlansListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({currency: faker.string.alpha({length: {min: 10, max: 20}}), description: faker.string.alpha({length: {min: 10, max: 20}}), features: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => (faker.string.alpha({length: {min: 10, max: 20}}))), id: faker.number.int(), name: faker.string.alpha({length: {min: 10, max: 20}}), pricing_periods: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({cadence: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.number.int(), price_usd: faker.number.float({fractionDigits: 2}), quota_plan_id: faker.number.int(), rolling_days: faker.helpers.arrayElement([faker.number.int(), undefined])}))})), total: faker.number.int(), ...overrideResponse})\n\n\nexport const getGetApiAccountBillingBalanceMockHandler = (overrideResponse?: BalanceResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<BalanceResponse> | BalanceResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/balance', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingBalanceResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCancelMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/cancel', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCancelResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCancelAbortMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/cancel/abort', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCancelAbortResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingChangePlanMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/change-plan', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingChangePlanResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler = (overrideResponse?: CheckoutSessionStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<CheckoutSessionStatusResponse> | CheckoutSessionStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/checkout/session/:sessionId/status', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCheckoutSessionSessionIdStatusResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCheckoutUiPlanIdMockHandler = (overrideResponse?: CheckoutUIResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<CheckoutUIResponse> | CheckoutUIResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/checkout/ui/:planId', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCheckoutUiPlanIdResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingCreditsMockHandler = (overrideResponse?: UserCreditsListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<UserCreditsListResponse> | UserCreditsListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/credits', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingCreditsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingCustomerPortalMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/customer-portal', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingCustomerPortalResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingManagementMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/management', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingManagementResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingManagementCapabilitiesMockHandler = (overrideResponse?: ManagementCapabilitiesResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<ManagementCapabilitiesResponse> | ManagementCapabilitiesResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/management/capabilities', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingManagementCapabilitiesResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingPauseMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/pause', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingPauseResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingResumeMockHandler = (overrideResponse?: ManagementResultResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ManagementResultResponse> | ManagementResultResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/resume', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingResumeResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingSubscriptionMockHandler = (overrideResponse?: SubscriptionStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<SubscriptionStatusResponse> | SubscriptionStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/subscription', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountBillingSubscriptionResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountBillingSubscriptionEventsMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/billing/subscription/events', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n if (typeof overrideResponse === 'function') {await overrideResponse(info); }\n\n return new HttpResponse(null,\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountBillingWebhooksGatewayTypeMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/billing/webhooks/:gatewayType', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {await delay(0);\n\n const resolvedBody = overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountBillingWebhooksGatewayTypeResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getGetApiBillingGatewaysMockHandler = (overrideResponse?: GatewayListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<GatewayListResponse> | GatewayListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/gateways', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiBillingGatewaysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiBillingGatewaysIdLogoMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/gateways/:id/logo', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n if (typeof overrideResponse === 'function') {await overrideResponse(info); }\n\n return new HttpResponse(null,\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiBillingPlansMockHandler = (overrideResponse?: PublicPricingPlansListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<PublicPricingPlansListResponse> | PublicPricingPlansListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/billing/plans', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {await delay(0);\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiBillingPlansResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getBillingMock = () => [\n getGetApiAccountBillingBalanceMockHandler(),\n getPostApiAccountBillingCancelMockHandler(),\n getPostApiAccountBillingCancelAbortMockHandler(),\n getPostApiAccountBillingChangePlanMockHandler(),\n getGetApiAccountBillingCheckoutSessionSessionIdStatusMockHandler(),\n getGetApiAccountBillingCheckoutUiPlanIdMockHandler(),\n getGetApiAccountBillingCreditsMockHandler(),\n getPostApiAccountBillingCustomerPortalMockHandler(),\n getPostApiAccountBillingManagementMockHandler(),\n getGetApiAccountBillingManagementCapabilitiesMockHandler(),\n getPostApiAccountBillingPauseMockHandler(),\n getPostApiAccountBillingResumeMockHandler(),\n getGetApiAccountBillingSubscriptionMockHandler(),\n getGetApiAccountBillingSubscriptionEventsMockHandler(),\n getPostApiAccountBillingWebhooksGatewayTypeMockHandler(),\n getGetApiBillingGatewaysMockHandler(),\n getGetApiBillingGatewaysIdLogoMockHandler(),\n getGetApiBillingPlansMockHandler()\n]\n"],"mappings":"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"}
@@ -1,4 +1,6 @@
1
1
  import { APIKeyCreateRequest, APIKeyListResponse, AccountInfoResponse, AccountPermissionsResponse, CreateAPIKeyResponse, Error, ErrorResponse, GetApiAccountKeysParams, GetApiAccountQuotaHistoryParams, GetApiOperationsParams, LoginRequest, LoginResponse, OTPDisableRequest, OTPGenerateResponse, OTPValidateRequest, OTPVerifyRequest, OperationDetailResponse, OperationFiltersResponseResponse, OperationListItemResponse, PasswordResetRequest, PasswordResetVerifyRequest, PongResponse, PostApiAccountAvatarBody, PostApiAccountVerifyEmailParams, QuotaHistoryResponse, RegisterRequest, ResendVerifyEmailRequest, StringUUIDSchema, UpdateEmailRequest, UpdatePasswordRequest, UpdateProfileRequest, UploadLimitResponse, VerifyEmailRequest } from "./accountAPI.schemas.js";
2
+ import * as _$msw from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
3
+ import { RequestHandlerOptions, http } from "/home/runner/work/web/web/node_modules/.pnpm/msw@2.14.6_@types+node@25.9.1_typescript@6.0.3/node_modules/msw/lib/core/index.mjs";
2
4
 
3
5
  //#region src/account/generated/default.d.ts
4
6
  type deleteApiAccountResponse200 = {
@@ -939,6 +941,52 @@ declare const getGetApiUploadLimitUrl: () => string;
939
941
  * @summary Get upload limit
940
942
  */
941
943
  declare const getApiUploadLimit: (options?: RequestInit) => Promise<getApiUploadLimitResponse>;
944
+ declare const getGetApiAccountResponseMock: (overrideResponse?: Partial<Extract<AccountInfoResponse, object>>) => AccountInfoResponse;
945
+ declare const getPostApiAccountAvatarResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
946
+ declare const getGetApiAccountKeysResponseMock: (overrideResponse?: Partial<Extract<APIKeyListResponse, object>>) => APIKeyListResponse;
947
+ declare const getPostApiAccountKeysResponseMock: (overrideResponse?: Partial<Extract<CreateAPIKeyResponse, object>>) => CreateAPIKeyResponse;
948
+ declare const getGetApiAccountPermissionsResponseMock: (overrideResponse?: Partial<Extract<AccountPermissionsResponse, object>>) => AccountPermissionsResponse;
949
+ declare const getGetApiAccountQuotaHistoryResponseMock: (overrideResponse?: Partial<Extract<QuotaHistoryResponse, object>>) => QuotaHistoryResponse;
950
+ declare const getPostApiAuthKeyResponseMock: (overrideResponse?: Partial<Extract<LoginResponse, object>>) => LoginResponse;
951
+ declare const getPostApiAuthLoginResponseMock: (overrideResponse?: Partial<Extract<LoginResponse, object>>) => LoginResponse;
952
+ declare const getPostApiAuthOtpDisableResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
953
+ declare const getPostApiAuthOtpGenerateResponseMock: (overrideResponse?: Partial<Extract<OTPGenerateResponse, object>>) => OTPGenerateResponse;
954
+ declare const getPostApiAuthOtpVerifyResponseMock: (overrideResponse?: Partial<Extract<ErrorResponse, object>>) => ErrorResponse;
955
+ declare const getPostApiAuthPingResponseMock: (overrideResponse?: Partial<Extract<PongResponse, object>>) => PongResponse;
956
+ declare const getGetApiOperationsResponseMock: (overrideResponse?: Partial<Extract<OperationListItemResponse, object>>) => OperationListItemResponse;
957
+ declare const getGetApiOperationsIdResponseMock: (overrideResponse?: Partial<Extract<OperationDetailResponse, object>>) => OperationDetailResponse;
958
+ declare const getGetApiOperationsFiltersResponseMock: (overrideResponse?: Partial<Extract<OperationFiltersResponseResponse, object>>) => OperationFiltersResponseResponse;
959
+ declare const getGetApiUploadLimitResponseMock: (overrideResponse?: Partial<Extract<UploadLimitResponse, object>>) => UploadLimitResponse;
960
+ declare const getDeleteApiAccountMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
961
+ declare const getGetApiAccountMockHandler: (overrideResponse?: AccountInfoResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<AccountInfoResponse> | AccountInfoResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
962
+ declare const getPatchApiAccountMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.patch>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
963
+ declare const getGetApiAccountAvatarMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
964
+ declare const getPostApiAccountAvatarMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
965
+ declare const getGetApiAccountKeysMockHandler: (overrideResponse?: APIKeyListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<APIKeyListResponse> | APIKeyListResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
966
+ declare const getPostApiAccountKeysMockHandler: (overrideResponse?: CreateAPIKeyResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<CreateAPIKeyResponse> | CreateAPIKeyResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
967
+ declare const getDeleteApiAccountKeysKeyIDMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
968
+ declare const getPostApiAccountPasswordResetConfirmMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
969
+ declare const getPostApiAccountPasswordResetRequestMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
970
+ declare const getGetApiAccountPermissionsMockHandler: (overrideResponse?: AccountPermissionsResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<AccountPermissionsResponse> | AccountPermissionsResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
971
+ declare const getGetApiAccountQuotaHistoryMockHandler: (overrideResponse?: QuotaHistoryResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<QuotaHistoryResponse> | QuotaHistoryResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
972
+ declare const getPostApiAccountUpdateEmailMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
973
+ declare const getPostApiAccountUpdatePasswordMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
974
+ declare const getPostApiAccountVerifyEmailMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
975
+ declare const getPostApiAccountVerifyEmailResendMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
976
+ declare const getPostApiAuthKeyMockHandler: (overrideResponse?: LoginResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<LoginResponse> | LoginResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
977
+ declare const getPostApiAuthLoginMockHandler: (overrideResponse?: LoginResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<LoginResponse> | LoginResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
978
+ declare const getPostApiAuthLogoutMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
979
+ declare const getPostApiAuthOtpDisableMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
980
+ declare const getPostApiAuthOtpGenerateMockHandler: (overrideResponse?: OTPGenerateResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<OTPGenerateResponse> | OTPGenerateResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
981
+ declare const getPostApiAuthOtpValidateMockHandler: (overrideResponse?: unknown | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<unknown> | unknown), options?: RequestHandlerOptions) => _$msw.HttpHandler;
982
+ declare const getPostApiAuthOtpVerifyMockHandler: (overrideResponse?: void | ErrorResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
983
+ declare const getPostApiAuthPingMockHandler: (overrideResponse?: PongResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<PongResponse> | PongResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
984
+ declare const getPostApiAuthRegisterMockHandler: (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void) | undefined, options?: RequestHandlerOptions) => _$msw.HttpHandler;
985
+ declare const getGetApiOperationsMockHandler: (overrideResponse?: OperationListItemResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationListItemResponse> | OperationListItemResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
986
+ declare const getGetApiOperationsIdMockHandler: (overrideResponse?: OperationDetailResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationDetailResponse> | OperationDetailResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
987
+ declare const getGetApiOperationsFiltersMockHandler: (overrideResponse?: OperationFiltersResponseResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationFiltersResponseResponse> | OperationFiltersResponseResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
988
+ declare const getGetApiUploadLimitMockHandler: (overrideResponse?: UploadLimitResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<UploadLimitResponse> | UploadLimitResponse), options?: RequestHandlerOptions) => _$msw.HttpHandler;
989
+ declare const getDefaultMock: () => _$msw.HttpHandler[];
942
990
  //#endregion
943
- export { deleteApiAccount, deleteApiAccountKeysKeyID, deleteApiAccountKeysKeyIDResponse, deleteApiAccountKeysKeyIDResponse200, deleteApiAccountKeysKeyIDResponse400, deleteApiAccountKeysKeyIDResponse404, deleteApiAccountKeysKeyIDResponse500, deleteApiAccountKeysKeyIDResponseError, deleteApiAccountKeysKeyIDResponseSuccess, deleteApiAccountResponse, deleteApiAccountResponse200, deleteApiAccountResponse400, deleteApiAccountResponse404, deleteApiAccountResponse500, deleteApiAccountResponseError, deleteApiAccountResponseSuccess, getApiAccount, getApiAccountAvatar, getApiAccountAvatarResponse, getApiAccountAvatarResponse200, getApiAccountAvatarResponse400, getApiAccountAvatarResponse404, getApiAccountAvatarResponse500, getApiAccountAvatarResponseError, getApiAccountAvatarResponseSuccess, getApiAccountKeys, getApiAccountKeysResponse, getApiAccountKeysResponse200, getApiAccountKeysResponse400, getApiAccountKeysResponse404, getApiAccountKeysResponse500, getApiAccountKeysResponseError, getApiAccountKeysResponseSuccess, getApiAccountPermissions, getApiAccountPermissionsResponse, getApiAccountPermissionsResponse200, getApiAccountPermissionsResponse400, getApiAccountPermissionsResponse404, getApiAccountPermissionsResponse500, getApiAccountPermissionsResponseError, getApiAccountPermissionsResponseSuccess, getApiAccountQuotaHistory, getApiAccountQuotaHistoryResponse, getApiAccountQuotaHistoryResponse200, getApiAccountQuotaHistoryResponse400, getApiAccountQuotaHistoryResponse404, getApiAccountQuotaHistoryResponse500, getApiAccountQuotaHistoryResponseError, getApiAccountQuotaHistoryResponseSuccess, getApiAccountResponse, getApiAccountResponse200, getApiAccountResponse400, getApiAccountResponse401, getApiAccountResponse403, getApiAccountResponse404, getApiAccountResponse500, getApiAccountResponseError, getApiAccountResponseSuccess, getApiOperations, getApiOperationsFilters, getApiOperationsFiltersResponse, getApiOperationsFiltersResponse200, getApiOperationsFiltersResponse400, getApiOperationsFiltersResponse404, getApiOperationsFiltersResponse500, getApiOperationsFiltersResponseError, getApiOperationsFiltersResponseSuccess, getApiOperationsId, getApiOperationsIdResponse, getApiOperationsIdResponse200, getApiOperationsIdResponse400, getApiOperationsIdResponse404, getApiOperationsIdResponse500, getApiOperationsIdResponseError, getApiOperationsIdResponseSuccess, getApiOperationsResponse, getApiOperationsResponse200, getApiOperationsResponse400, getApiOperationsResponse404, getApiOperationsResponse500, getApiOperationsResponseError, getApiOperationsResponseSuccess, getApiUploadLimit, getApiUploadLimitResponse, getApiUploadLimitResponse200, getApiUploadLimitResponse400, getApiUploadLimitResponse404, getApiUploadLimitResponse500, getApiUploadLimitResponseError, getApiUploadLimitResponseSuccess, getDeleteApiAccountKeysKeyIDUrl, getDeleteApiAccountUrl, getGetApiAccountAvatarUrl, getGetApiAccountKeysUrl, getGetApiAccountPermissionsUrl, getGetApiAccountQuotaHistoryUrl, getGetApiAccountUrl, getGetApiOperationsFiltersUrl, getGetApiOperationsIdUrl, getGetApiOperationsUrl, getGetApiUploadLimitUrl, getPatchApiAccountUrl, getPostApiAccountAvatarUrl, getPostApiAccountKeysUrl, getPostApiAccountPasswordResetConfirmUrl, getPostApiAccountPasswordResetRequestUrl, getPostApiAccountUpdateEmailUrl, getPostApiAccountUpdatePasswordUrl, getPostApiAccountVerifyEmailResendUrl, getPostApiAccountVerifyEmailUrl, getPostApiAuthKeyUrl, getPostApiAuthLoginUrl, getPostApiAuthLogoutUrl, getPostApiAuthOtpDisableUrl, getPostApiAuthOtpGenerateUrl, getPostApiAuthOtpValidateUrl, getPostApiAuthOtpVerifyUrl, getPostApiAuthPingUrl, getPostApiAuthRegisterUrl, patchApiAccount, patchApiAccountResponse, patchApiAccountResponse200, patchApiAccountResponse400, patchApiAccountResponse401, patchApiAccountResponse403, patchApiAccountResponse404, patchApiAccountResponse500, patchApiAccountResponseError, patchApiAccountResponseSuccess, postApiAccountAvatar, postApiAccountAvatarResponse, postApiAccountAvatarResponse200, postApiAccountAvatarResponse204, postApiAccountAvatarResponse400, postApiAccountAvatarResponse404, postApiAccountAvatarResponse500, postApiAccountAvatarResponseError, postApiAccountAvatarResponseSuccess, postApiAccountKeys, postApiAccountKeysResponse, postApiAccountKeysResponse200, postApiAccountKeysResponse400, postApiAccountKeysResponse404, postApiAccountKeysResponse500, postApiAccountKeysResponseError, postApiAccountKeysResponseSuccess, postApiAccountPasswordResetConfirm, postApiAccountPasswordResetConfirmResponse, postApiAccountPasswordResetConfirmResponse200, postApiAccountPasswordResetConfirmResponse400, postApiAccountPasswordResetConfirmResponse404, postApiAccountPasswordResetConfirmResponse500, postApiAccountPasswordResetConfirmResponseError, postApiAccountPasswordResetConfirmResponseSuccess, postApiAccountPasswordResetRequest, postApiAccountPasswordResetRequestResponse, postApiAccountPasswordResetRequestResponse200, postApiAccountPasswordResetRequestResponse400, postApiAccountPasswordResetRequestResponse401, postApiAccountPasswordResetRequestResponse403, postApiAccountPasswordResetRequestResponse404, postApiAccountPasswordResetRequestResponse500, postApiAccountPasswordResetRequestResponseError, postApiAccountPasswordResetRequestResponseSuccess, postApiAccountUpdateEmail, postApiAccountUpdateEmailResponse, postApiAccountUpdateEmailResponse200, postApiAccountUpdateEmailResponse400, postApiAccountUpdateEmailResponse404, postApiAccountUpdateEmailResponse500, postApiAccountUpdateEmailResponseError, postApiAccountUpdateEmailResponseSuccess, postApiAccountUpdatePassword, postApiAccountUpdatePasswordResponse, postApiAccountUpdatePasswordResponse200, postApiAccountUpdatePasswordResponse400, postApiAccountUpdatePasswordResponse404, postApiAccountUpdatePasswordResponse500, postApiAccountUpdatePasswordResponseError, postApiAccountUpdatePasswordResponseSuccess, postApiAccountVerifyEmail, postApiAccountVerifyEmailResend, postApiAccountVerifyEmailResendResponse, postApiAccountVerifyEmailResendResponse200, postApiAccountVerifyEmailResendResponse400, postApiAccountVerifyEmailResendResponse404, postApiAccountVerifyEmailResendResponse500, postApiAccountVerifyEmailResendResponseError, postApiAccountVerifyEmailResendResponseSuccess, postApiAccountVerifyEmailResponse, postApiAccountVerifyEmailResponse200, postApiAccountVerifyEmailResponse400, postApiAccountVerifyEmailResponse404, postApiAccountVerifyEmailResponse500, postApiAccountVerifyEmailResponseError, postApiAccountVerifyEmailResponseSuccess, postApiAuthKey, postApiAuthKeyResponse, postApiAuthKeyResponse200, postApiAuthKeyResponse400, postApiAuthKeyResponse401, postApiAuthKeyResponse403, postApiAuthKeyResponse404, postApiAuthKeyResponse500, postApiAuthKeyResponseError, postApiAuthKeyResponseSuccess, postApiAuthLogin, postApiAuthLoginResponse, postApiAuthLoginResponse200, postApiAuthLoginResponse302, postApiAuthLoginResponse400, postApiAuthLoginResponse401, postApiAuthLoginResponse403, postApiAuthLoginResponse404, postApiAuthLoginResponse500, postApiAuthLoginResponseError, postApiAuthLoginResponseSuccess, postApiAuthLogout, postApiAuthLogoutResponse, postApiAuthLogoutResponse200, postApiAuthLogoutResponse400, postApiAuthLogoutResponse401, postApiAuthLogoutResponse403, postApiAuthLogoutResponse404, postApiAuthLogoutResponse500, postApiAuthLogoutResponseError, postApiAuthLogoutResponseSuccess, postApiAuthOtpDisable, postApiAuthOtpDisableResponse, postApiAuthOtpDisableResponse200, postApiAuthOtpDisableResponse204, postApiAuthOtpDisableResponse400, postApiAuthOtpDisableResponse404, postApiAuthOtpDisableResponse500, postApiAuthOtpDisableResponseError, postApiAuthOtpDisableResponseSuccess, postApiAuthOtpGenerate, postApiAuthOtpGenerateResponse, postApiAuthOtpGenerateResponse200, postApiAuthOtpGenerateResponse400, postApiAuthOtpGenerateResponse401, postApiAuthOtpGenerateResponse403, postApiAuthOtpGenerateResponse404, postApiAuthOtpGenerateResponse500, postApiAuthOtpGenerateResponseError, postApiAuthOtpGenerateResponseSuccess, postApiAuthOtpValidate, postApiAuthOtpValidateResponse, postApiAuthOtpValidateResponse302, postApiAuthOtpValidateResponse400, postApiAuthOtpValidateResponse401, postApiAuthOtpValidateResponse403, postApiAuthOtpValidateResponse404, postApiAuthOtpValidateResponse500, postApiAuthOtpValidateResponseError, postApiAuthOtpVerify, postApiAuthOtpVerifyResponse, postApiAuthOtpVerifyResponse200, postApiAuthOtpVerifyResponse204, postApiAuthOtpVerifyResponse400, postApiAuthOtpVerifyResponse404, postApiAuthOtpVerifyResponse500, postApiAuthOtpVerifyResponseError, postApiAuthOtpVerifyResponseSuccess, postApiAuthPing, postApiAuthPingResponse, postApiAuthPingResponse200, postApiAuthPingResponse400, postApiAuthPingResponse401, postApiAuthPingResponse403, postApiAuthPingResponse404, postApiAuthPingResponse500, postApiAuthPingResponseError, postApiAuthPingResponseSuccess, postApiAuthRegister, postApiAuthRegisterResponse, postApiAuthRegisterResponse200, postApiAuthRegisterResponse400, postApiAuthRegisterResponse401, postApiAuthRegisterResponse403, postApiAuthRegisterResponse404, postApiAuthRegisterResponse409, postApiAuthRegisterResponse500, postApiAuthRegisterResponseError, postApiAuthRegisterResponseSuccess };
991
+ export { deleteApiAccount, deleteApiAccountKeysKeyID, deleteApiAccountKeysKeyIDResponse, deleteApiAccountKeysKeyIDResponse200, deleteApiAccountKeysKeyIDResponse400, deleteApiAccountKeysKeyIDResponse404, deleteApiAccountKeysKeyIDResponse500, deleteApiAccountKeysKeyIDResponseError, deleteApiAccountKeysKeyIDResponseSuccess, deleteApiAccountResponse, deleteApiAccountResponse200, deleteApiAccountResponse400, deleteApiAccountResponse404, deleteApiAccountResponse500, deleteApiAccountResponseError, deleteApiAccountResponseSuccess, getApiAccount, getApiAccountAvatar, getApiAccountAvatarResponse, getApiAccountAvatarResponse200, getApiAccountAvatarResponse400, getApiAccountAvatarResponse404, getApiAccountAvatarResponse500, getApiAccountAvatarResponseError, getApiAccountAvatarResponseSuccess, getApiAccountKeys, getApiAccountKeysResponse, getApiAccountKeysResponse200, getApiAccountKeysResponse400, getApiAccountKeysResponse404, getApiAccountKeysResponse500, getApiAccountKeysResponseError, getApiAccountKeysResponseSuccess, getApiAccountPermissions, getApiAccountPermissionsResponse, getApiAccountPermissionsResponse200, getApiAccountPermissionsResponse400, getApiAccountPermissionsResponse404, getApiAccountPermissionsResponse500, getApiAccountPermissionsResponseError, getApiAccountPermissionsResponseSuccess, getApiAccountQuotaHistory, getApiAccountQuotaHistoryResponse, getApiAccountQuotaHistoryResponse200, getApiAccountQuotaHistoryResponse400, getApiAccountQuotaHistoryResponse404, getApiAccountQuotaHistoryResponse500, getApiAccountQuotaHistoryResponseError, getApiAccountQuotaHistoryResponseSuccess, getApiAccountResponse, getApiAccountResponse200, getApiAccountResponse400, getApiAccountResponse401, getApiAccountResponse403, getApiAccountResponse404, getApiAccountResponse500, getApiAccountResponseError, getApiAccountResponseSuccess, getApiOperations, getApiOperationsFilters, getApiOperationsFiltersResponse, getApiOperationsFiltersResponse200, getApiOperationsFiltersResponse400, getApiOperationsFiltersResponse404, getApiOperationsFiltersResponse500, getApiOperationsFiltersResponseError, getApiOperationsFiltersResponseSuccess, getApiOperationsId, getApiOperationsIdResponse, getApiOperationsIdResponse200, getApiOperationsIdResponse400, getApiOperationsIdResponse404, getApiOperationsIdResponse500, getApiOperationsIdResponseError, getApiOperationsIdResponseSuccess, getApiOperationsResponse, getApiOperationsResponse200, getApiOperationsResponse400, getApiOperationsResponse404, getApiOperationsResponse500, getApiOperationsResponseError, getApiOperationsResponseSuccess, getApiUploadLimit, getApiUploadLimitResponse, getApiUploadLimitResponse200, getApiUploadLimitResponse400, getApiUploadLimitResponse404, getApiUploadLimitResponse500, getApiUploadLimitResponseError, getApiUploadLimitResponseSuccess, getDefaultMock, getDeleteApiAccountKeysKeyIDMockHandler, getDeleteApiAccountKeysKeyIDUrl, getDeleteApiAccountMockHandler, getDeleteApiAccountUrl, getGetApiAccountAvatarMockHandler, getGetApiAccountAvatarUrl, getGetApiAccountKeysMockHandler, getGetApiAccountKeysResponseMock, getGetApiAccountKeysUrl, getGetApiAccountMockHandler, getGetApiAccountPermissionsMockHandler, getGetApiAccountPermissionsResponseMock, getGetApiAccountPermissionsUrl, getGetApiAccountQuotaHistoryMockHandler, getGetApiAccountQuotaHistoryResponseMock, getGetApiAccountQuotaHistoryUrl, getGetApiAccountResponseMock, getGetApiAccountUrl, getGetApiOperationsFiltersMockHandler, getGetApiOperationsFiltersResponseMock, getGetApiOperationsFiltersUrl, getGetApiOperationsIdMockHandler, getGetApiOperationsIdResponseMock, getGetApiOperationsIdUrl, getGetApiOperationsMockHandler, getGetApiOperationsResponseMock, getGetApiOperationsUrl, getGetApiUploadLimitMockHandler, getGetApiUploadLimitResponseMock, getGetApiUploadLimitUrl, getPatchApiAccountMockHandler, getPatchApiAccountUrl, getPostApiAccountAvatarMockHandler, getPostApiAccountAvatarResponseMock, getPostApiAccountAvatarUrl, getPostApiAccountKeysMockHandler, getPostApiAccountKeysResponseMock, getPostApiAccountKeysUrl, getPostApiAccountPasswordResetConfirmMockHandler, getPostApiAccountPasswordResetConfirmUrl, getPostApiAccountPasswordResetRequestMockHandler, getPostApiAccountPasswordResetRequestUrl, getPostApiAccountUpdateEmailMockHandler, getPostApiAccountUpdateEmailUrl, getPostApiAccountUpdatePasswordMockHandler, getPostApiAccountUpdatePasswordUrl, getPostApiAccountVerifyEmailMockHandler, getPostApiAccountVerifyEmailResendMockHandler, getPostApiAccountVerifyEmailResendUrl, getPostApiAccountVerifyEmailUrl, getPostApiAuthKeyMockHandler, getPostApiAuthKeyResponseMock, getPostApiAuthKeyUrl, getPostApiAuthLoginMockHandler, getPostApiAuthLoginResponseMock, getPostApiAuthLoginUrl, getPostApiAuthLogoutMockHandler, getPostApiAuthLogoutUrl, getPostApiAuthOtpDisableMockHandler, getPostApiAuthOtpDisableResponseMock, getPostApiAuthOtpDisableUrl, getPostApiAuthOtpGenerateMockHandler, getPostApiAuthOtpGenerateResponseMock, getPostApiAuthOtpGenerateUrl, getPostApiAuthOtpValidateMockHandler, getPostApiAuthOtpValidateUrl, getPostApiAuthOtpVerifyMockHandler, getPostApiAuthOtpVerifyResponseMock, getPostApiAuthOtpVerifyUrl, getPostApiAuthPingMockHandler, getPostApiAuthPingResponseMock, getPostApiAuthPingUrl, getPostApiAuthRegisterMockHandler, getPostApiAuthRegisterUrl, patchApiAccount, patchApiAccountResponse, patchApiAccountResponse200, patchApiAccountResponse400, patchApiAccountResponse401, patchApiAccountResponse403, patchApiAccountResponse404, patchApiAccountResponse500, patchApiAccountResponseError, patchApiAccountResponseSuccess, postApiAccountAvatar, postApiAccountAvatarResponse, postApiAccountAvatarResponse200, postApiAccountAvatarResponse204, postApiAccountAvatarResponse400, postApiAccountAvatarResponse404, postApiAccountAvatarResponse500, postApiAccountAvatarResponseError, postApiAccountAvatarResponseSuccess, postApiAccountKeys, postApiAccountKeysResponse, postApiAccountKeysResponse200, postApiAccountKeysResponse400, postApiAccountKeysResponse404, postApiAccountKeysResponse500, postApiAccountKeysResponseError, postApiAccountKeysResponseSuccess, postApiAccountPasswordResetConfirm, postApiAccountPasswordResetConfirmResponse, postApiAccountPasswordResetConfirmResponse200, postApiAccountPasswordResetConfirmResponse400, postApiAccountPasswordResetConfirmResponse404, postApiAccountPasswordResetConfirmResponse500, postApiAccountPasswordResetConfirmResponseError, postApiAccountPasswordResetConfirmResponseSuccess, postApiAccountPasswordResetRequest, postApiAccountPasswordResetRequestResponse, postApiAccountPasswordResetRequestResponse200, postApiAccountPasswordResetRequestResponse400, postApiAccountPasswordResetRequestResponse401, postApiAccountPasswordResetRequestResponse403, postApiAccountPasswordResetRequestResponse404, postApiAccountPasswordResetRequestResponse500, postApiAccountPasswordResetRequestResponseError, postApiAccountPasswordResetRequestResponseSuccess, postApiAccountUpdateEmail, postApiAccountUpdateEmailResponse, postApiAccountUpdateEmailResponse200, postApiAccountUpdateEmailResponse400, postApiAccountUpdateEmailResponse404, postApiAccountUpdateEmailResponse500, postApiAccountUpdateEmailResponseError, postApiAccountUpdateEmailResponseSuccess, postApiAccountUpdatePassword, postApiAccountUpdatePasswordResponse, postApiAccountUpdatePasswordResponse200, postApiAccountUpdatePasswordResponse400, postApiAccountUpdatePasswordResponse404, postApiAccountUpdatePasswordResponse500, postApiAccountUpdatePasswordResponseError, postApiAccountUpdatePasswordResponseSuccess, postApiAccountVerifyEmail, postApiAccountVerifyEmailResend, postApiAccountVerifyEmailResendResponse, postApiAccountVerifyEmailResendResponse200, postApiAccountVerifyEmailResendResponse400, postApiAccountVerifyEmailResendResponse404, postApiAccountVerifyEmailResendResponse500, postApiAccountVerifyEmailResendResponseError, postApiAccountVerifyEmailResendResponseSuccess, postApiAccountVerifyEmailResponse, postApiAccountVerifyEmailResponse200, postApiAccountVerifyEmailResponse400, postApiAccountVerifyEmailResponse404, postApiAccountVerifyEmailResponse500, postApiAccountVerifyEmailResponseError, postApiAccountVerifyEmailResponseSuccess, postApiAuthKey, postApiAuthKeyResponse, postApiAuthKeyResponse200, postApiAuthKeyResponse400, postApiAuthKeyResponse401, postApiAuthKeyResponse403, postApiAuthKeyResponse404, postApiAuthKeyResponse500, postApiAuthKeyResponseError, postApiAuthKeyResponseSuccess, postApiAuthLogin, postApiAuthLoginResponse, postApiAuthLoginResponse200, postApiAuthLoginResponse302, postApiAuthLoginResponse400, postApiAuthLoginResponse401, postApiAuthLoginResponse403, postApiAuthLoginResponse404, postApiAuthLoginResponse500, postApiAuthLoginResponseError, postApiAuthLoginResponseSuccess, postApiAuthLogout, postApiAuthLogoutResponse, postApiAuthLogoutResponse200, postApiAuthLogoutResponse400, postApiAuthLogoutResponse401, postApiAuthLogoutResponse403, postApiAuthLogoutResponse404, postApiAuthLogoutResponse500, postApiAuthLogoutResponseError, postApiAuthLogoutResponseSuccess, postApiAuthOtpDisable, postApiAuthOtpDisableResponse, postApiAuthOtpDisableResponse200, postApiAuthOtpDisableResponse204, postApiAuthOtpDisableResponse400, postApiAuthOtpDisableResponse404, postApiAuthOtpDisableResponse500, postApiAuthOtpDisableResponseError, postApiAuthOtpDisableResponseSuccess, postApiAuthOtpGenerate, postApiAuthOtpGenerateResponse, postApiAuthOtpGenerateResponse200, postApiAuthOtpGenerateResponse400, postApiAuthOtpGenerateResponse401, postApiAuthOtpGenerateResponse403, postApiAuthOtpGenerateResponse404, postApiAuthOtpGenerateResponse500, postApiAuthOtpGenerateResponseError, postApiAuthOtpGenerateResponseSuccess, postApiAuthOtpValidate, postApiAuthOtpValidateResponse, postApiAuthOtpValidateResponse302, postApiAuthOtpValidateResponse400, postApiAuthOtpValidateResponse401, postApiAuthOtpValidateResponse403, postApiAuthOtpValidateResponse404, postApiAuthOtpValidateResponse500, postApiAuthOtpValidateResponseError, postApiAuthOtpVerify, postApiAuthOtpVerifyResponse, postApiAuthOtpVerifyResponse200, postApiAuthOtpVerifyResponse204, postApiAuthOtpVerifyResponse400, postApiAuthOtpVerifyResponse404, postApiAuthOtpVerifyResponse500, postApiAuthOtpVerifyResponseError, postApiAuthOtpVerifyResponseSuccess, postApiAuthPing, postApiAuthPingResponse, postApiAuthPingResponse200, postApiAuthPingResponse400, postApiAuthPingResponse401, postApiAuthPingResponse403, postApiAuthPingResponse404, postApiAuthPingResponse500, postApiAuthPingResponseError, postApiAuthPingResponseSuccess, postApiAuthRegister, postApiAuthRegisterResponse, postApiAuthRegisterResponse200, postApiAuthRegisterResponse400, postApiAuthRegisterResponse401, postApiAuthRegisterResponse403, postApiAuthRegisterResponse404, postApiAuthRegisterResponse409, postApiAuthRegisterResponse500, postApiAuthRegisterResponseError, postApiAuthRegisterResponseSuccess };
944
992
  //# sourceMappingURL=default.d.ts.map