@lumeweb/portal-sdk 0.1.5 → 0.1.6

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":"default.js","names":[],"sources":["../../../../src/account/generated/default.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 APIKeyCreateRequest,\n APIKeyListResponse,\n AccountInfoResponse,\n AccountPermissionsResponse,\n CreateAPIKeyResponse,\n Error,\n ErrorResponse,\n GetApiAccountKeysParams,\n GetApiAccountQuotaHistoryParams,\n GetApiOperationsParams,\n LoginRequest,\n LoginResponse,\n OTPDisableRequest,\n OTPGenerateResponse,\n OTPValidateRequest,\n OTPVerifyRequest,\n OperationDetailResponse,\n OperationFiltersResponseResponse,\n OperationListItemResponse,\n PasswordResetRequest,\n PasswordResetVerifyRequest,\n PongResponse,\n PostApiAccountAvatarBody,\n PostApiAccountVerifyEmailParams,\n QuotaHistoryResponse,\n RegisterRequest,\n ResendVerifyEmailRequest,\n StringUUIDSchema,\n UpdateEmailRequest,\n UpdatePasswordRequest,\n UpdateProfileRequest,\n UploadLimitResponse,\n VerifyEmailRequest\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 deleteApiAccountResponse200 = {\n data: void\n status: 200\n}\n\nexport type deleteApiAccountResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type deleteApiAccountResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type deleteApiAccountResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type deleteApiAccountResponseSuccess = (deleteApiAccountResponse200) & {\n headers: Headers;\n};\nexport type deleteApiAccountResponseError = (deleteApiAccountResponse400 | deleteApiAccountResponse404 | deleteApiAccountResponse500) & {\n headers: Headers;\n};\n\nexport type deleteApiAccountResponse = (deleteApiAccountResponseSuccess | deleteApiAccountResponseError)\n\nexport const getDeleteApiAccountUrl = () => {\n\n\n\n\n return `/api/account`\n}\n\n/**\n * Initiates the process to delete the authenticated user's account.\n * @summary Request account deletion\n */\nexport const deleteApiAccount = async ( options?: RequestInit): Promise<deleteApiAccountResponse> => {\n\n const res = await fetch(getDeleteApiAccountUrl(),\n {\n ...options,\n method: 'DELETE'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: deleteApiAccountResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as deleteApiAccountResponse\n}\n\n\nexport type getApiAccountResponse200 = {\n data: AccountInfoResponse\n status: 200\n}\n\nexport type getApiAccountResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountResponseSuccess = (getApiAccountResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountResponseError = (getApiAccountResponse400 | getApiAccountResponse401 | getApiAccountResponse403 | getApiAccountResponse404 | getApiAccountResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountResponse = (getApiAccountResponseSuccess | getApiAccountResponseError)\n\nexport const getGetApiAccountUrl = () => {\n\n\n\n\n return `/api/account`\n}\n\n/**\n * Retrieves information about the authenticated user's account.\n * @summary Get account information\n */\nexport const getApiAccount = async ( options?: RequestInit): Promise<getApiAccountResponse> => {\n\n const res = await fetch(getGetApiAccountUrl(),\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: getApiAccountResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountResponse\n}\n\n\nexport type patchApiAccountResponse200 = {\n data: void\n status: 200\n}\n\nexport type patchApiAccountResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type patchApiAccountResponse401 = {\n data: Error\n status: 401\n}\n\nexport type patchApiAccountResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type patchApiAccountResponse404 = {\n data: Error\n status: 404\n}\n\nexport type patchApiAccountResponse500 = {\n data: Error\n status: 500\n}\n\nexport type patchApiAccountResponseSuccess = (patchApiAccountResponse200) & {\n headers: Headers;\n};\nexport type patchApiAccountResponseError = (patchApiAccountResponse400 | patchApiAccountResponse401 | patchApiAccountResponse403 | patchApiAccountResponse404 | patchApiAccountResponse500) & {\n headers: Headers;\n};\n\nexport type patchApiAccountResponse = (patchApiAccountResponseSuccess | patchApiAccountResponseError)\n\nexport const getPatchApiAccountUrl = () => {\n\n\n\n\n return `/api/account`\n}\n\n/**\n * Updates the authenticated user's profile information. Email cannot be updated through this endpoint.\n * @summary Update profile information\n */\nexport const patchApiAccount = async (updateProfileRequest: UpdateProfileRequest, options?: RequestInit): Promise<patchApiAccountResponse> => {\n\n const res = await fetch(getPatchApiAccountUrl(),\n {\n ...options,\n method: 'PATCH',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(updateProfileRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: patchApiAccountResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as patchApiAccountResponse\n}\n\n\nexport type getApiAccountAvatarResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiAccountAvatarResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountAvatarResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountAvatarResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountAvatarResponseSuccess = (getApiAccountAvatarResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountAvatarResponseError = (getApiAccountAvatarResponse400 | getApiAccountAvatarResponse404 | getApiAccountAvatarResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountAvatarResponse = (getApiAccountAvatarResponseSuccess | getApiAccountAvatarResponseError)\n\nexport const getGetApiAccountAvatarUrl = () => {\n\n\n\n\n return `/api/account/avatar`\n}\n\n/**\n * Retrieves the authenticated user's profile picture\n * @summary Get Avatar\n */\nexport const getApiAccountAvatar = async ( options?: RequestInit): Promise<getApiAccountAvatarResponse> => {\n\n const res = await fetch(getGetApiAccountAvatarUrl(),\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: getApiAccountAvatarResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiAccountAvatarResponse\n}\n\n\nexport type postApiAccountAvatarResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAccountAvatarResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAccountAvatarResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountAvatarResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountAvatarResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountAvatarResponseSuccess = (postApiAccountAvatarResponse200 | postApiAccountAvatarResponse204) & {\n headers: Headers;\n};\nexport type postApiAccountAvatarResponseError = (postApiAccountAvatarResponse400 | postApiAccountAvatarResponse404 | postApiAccountAvatarResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountAvatarResponse = (postApiAccountAvatarResponseSuccess | postApiAccountAvatarResponseError)\n\nexport const getPostApiAccountAvatarUrl = () => {\n\n\n\n\n return `/api/account/avatar`\n}\n\n/**\n * Uploads a profile picture/avatar\n * @summary Upload Avatar\n */\nexport const postApiAccountAvatar = async (postApiAccountAvatarBody: PostApiAccountAvatarBody, options?: RequestInit): Promise<postApiAccountAvatarResponse> => {\n const formData = new FormData();\nformData.append(`file`, postApiAccountAvatarBody.file);\n\n const res = await fetch(getPostApiAccountAvatarUrl(),\n {\n ...options,\n method: 'POST'\n ,\n body: formData\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountAvatarResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountAvatarResponse\n}\n\n\nexport type getApiAccountKeysResponse200 = {\n data: APIKeyListResponse\n status: 200\n}\n\nexport type getApiAccountKeysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountKeysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountKeysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountKeysResponseSuccess = (getApiAccountKeysResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountKeysResponseError = (getApiAccountKeysResponse400 | getApiAccountKeysResponse404 | getApiAccountKeysResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountKeysResponse = (getApiAccountKeysResponseSuccess | getApiAccountKeysResponseError)\n\nexport const getGetApiAccountKeysUrl = (params?: GetApiAccountKeysParams,) => {\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/keys?${stringifiedParams}` : `/api/account/keys`\n}\n\n/**\n * Retrieves a list of API keys for the authenticated user.\n * @summary List API Keys\n */\nexport const getApiAccountKeys = async (params?: GetApiAccountKeysParams, options?: RequestInit): Promise<getApiAccountKeysResponse> => {\n\n const res = await fetch(getGetApiAccountKeysUrl(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: getApiAccountKeysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountKeysResponse\n}\n\n\nexport type postApiAccountKeysResponse200 = {\n data: CreateAPIKeyResponse\n status: 200\n}\n\nexport type postApiAccountKeysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountKeysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountKeysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountKeysResponseSuccess = (postApiAccountKeysResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountKeysResponseError = (postApiAccountKeysResponse400 | postApiAccountKeysResponse404 | postApiAccountKeysResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountKeysResponse = (postApiAccountKeysResponseSuccess | postApiAccountKeysResponseError)\n\nexport const getPostApiAccountKeysUrl = () => {\n\n\n\n\n return `/api/account/keys`\n}\n\n/**\n * Creates a new API key for the authenticated user.\n * @summary Create API Key\n */\nexport const postApiAccountKeys = async (aPIKeyCreateRequest: APIKeyCreateRequest, options?: RequestInit): Promise<postApiAccountKeysResponse> => {\n\n const res = await fetch(getPostApiAccountKeysUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(aPIKeyCreateRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountKeysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountKeysResponse\n}\n\n\nexport type deleteApiAccountKeysKeyIDResponse200 = {\n data: void\n status: 200\n}\n\nexport type deleteApiAccountKeysKeyIDResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type deleteApiAccountKeysKeyIDResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type deleteApiAccountKeysKeyIDResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type deleteApiAccountKeysKeyIDResponseSuccess = (deleteApiAccountKeysKeyIDResponse200) & {\n headers: Headers;\n};\nexport type deleteApiAccountKeysKeyIDResponseError = (deleteApiAccountKeysKeyIDResponse400 | deleteApiAccountKeysKeyIDResponse404 | deleteApiAccountKeysKeyIDResponse500) & {\n headers: Headers;\n};\n\nexport type deleteApiAccountKeysKeyIDResponse = (deleteApiAccountKeysKeyIDResponseSuccess | deleteApiAccountKeysKeyIDResponseError)\n\nexport const getDeleteApiAccountKeysKeyIDUrl = (keyID: StringUUIDSchema,) => {\n\n\n\n\n return `/api/account/keys/${keyID}`\n}\n\n/**\n * Deletes a specific API key for the authenticated user.\n * @summary Delete API Key\n */\nexport const deleteApiAccountKeysKeyID = async (keyID: StringUUIDSchema, options?: RequestInit): Promise<deleteApiAccountKeysKeyIDResponse> => {\n\n const res = await fetch(getDeleteApiAccountKeysKeyIDUrl(keyID),\n {\n ...options,\n method: 'DELETE'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: deleteApiAccountKeysKeyIDResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as deleteApiAccountKeysKeyIDResponse\n}\n\n\nexport type postApiAccountPasswordResetConfirmResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountPasswordResetConfirmResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountPasswordResetConfirmResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountPasswordResetConfirmResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountPasswordResetConfirmResponseSuccess = (postApiAccountPasswordResetConfirmResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountPasswordResetConfirmResponseError = (postApiAccountPasswordResetConfirmResponse400 | postApiAccountPasswordResetConfirmResponse404 | postApiAccountPasswordResetConfirmResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountPasswordResetConfirmResponse = (postApiAccountPasswordResetConfirmResponseSuccess | postApiAccountPasswordResetConfirmResponseError)\n\nexport const getPostApiAccountPasswordResetConfirmUrl = () => {\n\n\n\n\n return `/api/account/password-reset/confirm`\n}\n\n/**\n * Resets the user's password using a token received via email.\n * @summary Confirm password reset\n */\nexport const postApiAccountPasswordResetConfirm = async (passwordResetVerifyRequest: PasswordResetVerifyRequest, options?: RequestInit): Promise<postApiAccountPasswordResetConfirmResponse> => {\n\n const res = await fetch(getPostApiAccountPasswordResetConfirmUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(passwordResetVerifyRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountPasswordResetConfirmResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountPasswordResetConfirmResponse\n}\n\n\nexport type postApiAccountPasswordResetRequestResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountPasswordResetRequestResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountPasswordResetRequestResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountPasswordResetRequestResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountPasswordResetRequestResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountPasswordResetRequestResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountPasswordResetRequestResponseSuccess = (postApiAccountPasswordResetRequestResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountPasswordResetRequestResponseError = (postApiAccountPasswordResetRequestResponse400 | postApiAccountPasswordResetRequestResponse401 | postApiAccountPasswordResetRequestResponse403 | postApiAccountPasswordResetRequestResponse404 | postApiAccountPasswordResetRequestResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountPasswordResetRequestResponse = (postApiAccountPasswordResetRequestResponseSuccess | postApiAccountPasswordResetRequestResponseError)\n\nexport const getPostApiAccountPasswordResetRequestUrl = () => {\n\n\n\n\n return `/api/account/password-reset/request`\n}\n\n/**\n * Initiates the password reset process by sending a reset link to the user's email.\n * @summary Request password reset\n */\nexport const postApiAccountPasswordResetRequest = async (passwordResetRequest: PasswordResetRequest, options?: RequestInit): Promise<postApiAccountPasswordResetRequestResponse> => {\n\n const res = await fetch(getPostApiAccountPasswordResetRequestUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(passwordResetRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountPasswordResetRequestResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountPasswordResetRequestResponse\n}\n\n\nexport type getApiAccountPermissionsResponse200 = {\n data: AccountPermissionsResponse\n status: 200\n}\n\nexport type getApiAccountPermissionsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountPermissionsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountPermissionsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountPermissionsResponseSuccess = (getApiAccountPermissionsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountPermissionsResponseError = (getApiAccountPermissionsResponse400 | getApiAccountPermissionsResponse404 | getApiAccountPermissionsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountPermissionsResponse = (getApiAccountPermissionsResponseSuccess | getApiAccountPermissionsResponseError)\n\nexport const getGetApiAccountPermissionsUrl = () => {\n\n\n\n\n return `/api/account/permissions`\n}\n\n/**\n * Retrieves the access control policies and model for the authenticated user.\n * @summary Get account permissions\n */\nexport const getApiAccountPermissions = async ( options?: RequestInit): Promise<getApiAccountPermissionsResponse> => {\n\n const res = await fetch(getGetApiAccountPermissionsUrl(),\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: getApiAccountPermissionsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountPermissionsResponse\n}\n\n\nexport type getApiAccountQuotaHistoryResponse200 = {\n data: QuotaHistoryResponse\n status: 200\n}\n\nexport type getApiAccountQuotaHistoryResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountQuotaHistoryResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountQuotaHistoryResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountQuotaHistoryResponseSuccess = (getApiAccountQuotaHistoryResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountQuotaHistoryResponseError = (getApiAccountQuotaHistoryResponse400 | getApiAccountQuotaHistoryResponse404 | getApiAccountQuotaHistoryResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountQuotaHistoryResponse = (getApiAccountQuotaHistoryResponseSuccess | getApiAccountQuotaHistoryResponseError)\n\nexport const getGetApiAccountQuotaHistoryUrl = (params?: GetApiAccountQuotaHistoryParams,) => {\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/quota/history?${stringifiedParams}` : `/api/account/quota/history`\n}\n\n/**\n * Retrieves historical quota usage data for charting and analytics.\n * @summary Get quota usage history\n */\nexport const getApiAccountQuotaHistory = async (params?: GetApiAccountQuotaHistoryParams, options?: RequestInit): Promise<getApiAccountQuotaHistoryResponse> => {\n\n const res = await fetch(getGetApiAccountQuotaHistoryUrl(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: getApiAccountQuotaHistoryResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountQuotaHistoryResponse\n}\n\n\nexport type postApiAccountUpdateEmailResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountUpdateEmailResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountUpdateEmailResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountUpdateEmailResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountUpdateEmailResponseSuccess = (postApiAccountUpdateEmailResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountUpdateEmailResponseError = (postApiAccountUpdateEmailResponse400 | postApiAccountUpdateEmailResponse404 | postApiAccountUpdateEmailResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountUpdateEmailResponse = (postApiAccountUpdateEmailResponseSuccess | postApiAccountUpdateEmailResponseError)\n\nexport const getPostApiAccountUpdateEmailUrl = () => {\n\n\n\n\n return `/api/account/update-email`\n}\n\n/**\n * Updates the authenticated user's email address.\n * @summary Update email address\n */\nexport const postApiAccountUpdateEmail = async (updateEmailRequest: UpdateEmailRequest, options?: RequestInit): Promise<postApiAccountUpdateEmailResponse> => {\n\n const res = await fetch(getPostApiAccountUpdateEmailUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(updateEmailRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountUpdateEmailResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountUpdateEmailResponse\n}\n\n\nexport type postApiAccountUpdatePasswordResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountUpdatePasswordResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountUpdatePasswordResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountUpdatePasswordResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountUpdatePasswordResponseSuccess = (postApiAccountUpdatePasswordResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountUpdatePasswordResponseError = (postApiAccountUpdatePasswordResponse400 | postApiAccountUpdatePasswordResponse404 | postApiAccountUpdatePasswordResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountUpdatePasswordResponse = (postApiAccountUpdatePasswordResponseSuccess | postApiAccountUpdatePasswordResponseError)\n\nexport const getPostApiAccountUpdatePasswordUrl = () => {\n\n\n\n\n return `/api/account/update-password`\n}\n\n/**\n * Updates the authenticated user's password.\n * @summary Update password\n */\nexport const postApiAccountUpdatePassword = async (updatePasswordRequest: UpdatePasswordRequest, options?: RequestInit): Promise<postApiAccountUpdatePasswordResponse> => {\n\n const res = await fetch(getPostApiAccountUpdatePasswordUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(updatePasswordRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountUpdatePasswordResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountUpdatePasswordResponse\n}\n\n\nexport type postApiAccountVerifyEmailResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountVerifyEmailResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountVerifyEmailResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountVerifyEmailResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountVerifyEmailResponseSuccess = (postApiAccountVerifyEmailResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountVerifyEmailResponseError = (postApiAccountVerifyEmailResponse400 | postApiAccountVerifyEmailResponse404 | postApiAccountVerifyEmailResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountVerifyEmailResponse = (postApiAccountVerifyEmailResponseSuccess | postApiAccountVerifyEmailResponseError)\n\nexport const getPostApiAccountVerifyEmailUrl = (params?: PostApiAccountVerifyEmailParams,) => {\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/verify-email?${stringifiedParams}` : `/api/account/verify-email`\n}\n\n/**\n * Verifies a user's email address using a token sent via email. Optionally auto-login user if they don't have 2FA enabled.\n * @summary Verify email address\n */\nexport const postApiAccountVerifyEmail = async (verifyEmailRequest: VerifyEmailRequest,\n params?: PostApiAccountVerifyEmailParams, options?: RequestInit): Promise<postApiAccountVerifyEmailResponse> => {\n\n const res = await fetch(getPostApiAccountVerifyEmailUrl(params),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(verifyEmailRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountVerifyEmailResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountVerifyEmailResponse\n}\n\n\nexport type postApiAccountVerifyEmailResendResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountVerifyEmailResendResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountVerifyEmailResendResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountVerifyEmailResendResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountVerifyEmailResendResponseSuccess = (postApiAccountVerifyEmailResendResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountVerifyEmailResendResponseError = (postApiAccountVerifyEmailResendResponse400 | postApiAccountVerifyEmailResendResponse404 | postApiAccountVerifyEmailResendResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountVerifyEmailResendResponse = (postApiAccountVerifyEmailResendResponseSuccess | postApiAccountVerifyEmailResendResponseError)\n\nexport const getPostApiAccountVerifyEmailResendUrl = () => {\n\n\n\n\n return `/api/account/verify-email/resend`\n}\n\n/**\n * Resends the email verification link to the user's email address.\n * @summary Resend email verification\n */\nexport const postApiAccountVerifyEmailResend = async (resendVerifyEmailRequest: ResendVerifyEmailRequest, options?: RequestInit): Promise<postApiAccountVerifyEmailResendResponse> => {\n\n const res = await fetch(getPostApiAccountVerifyEmailResendUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(resendVerifyEmailRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountVerifyEmailResendResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountVerifyEmailResendResponse\n}\n\n\nexport type postApiAuthKeyResponse200 = {\n data: LoginResponse\n status: 200\n}\n\nexport type postApiAuthKeyResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthKeyResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthKeyResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthKeyResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthKeyResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthKeyResponseSuccess = (postApiAuthKeyResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthKeyResponseError = (postApiAuthKeyResponse400 | postApiAuthKeyResponse401 | postApiAuthKeyResponse403 | postApiAuthKeyResponse404 | postApiAuthKeyResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthKeyResponse = (postApiAuthKeyResponseSuccess | postApiAuthKeyResponseError)\n\nexport const getPostApiAuthKeyUrl = () => {\n\n\n\n\n return `/api/auth/key`\n}\n\n/**\n * Exchanges an API key for a JWT.\n * @summary Authenticate with API Key\n */\nexport const postApiAuthKey = async ( options?: RequestInit): Promise<postApiAuthKeyResponse> => {\n\n const res = await fetch(getPostApiAuthKeyUrl(),\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: postApiAuthKeyResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthKeyResponse\n}\n\n\nexport type postApiAuthLoginResponse200 = {\n data: LoginResponse\n status: 200\n}\n\nexport type postApiAuthLoginResponse302 = {\n data: void\n status: 302\n}\n\nexport type postApiAuthLoginResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthLoginResponse401 = {\n data: Error\n status: 401\n}\n\nexport type postApiAuthLoginResponse403 = {\n data: Error\n status: 403\n}\n\nexport type postApiAuthLoginResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthLoginResponse500 = {\n data: Error\n status: 500\n}\n\nexport type postApiAuthLoginResponseSuccess = (postApiAuthLoginResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthLoginResponseError = (postApiAuthLoginResponse302 | postApiAuthLoginResponse400 | postApiAuthLoginResponse401 | postApiAuthLoginResponse403 | postApiAuthLoginResponse404 | postApiAuthLoginResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthLoginResponse = (postApiAuthLoginResponseSuccess | postApiAuthLoginResponseError)\n\nexport const getPostApiAuthLoginUrl = () => {\n\n\n\n\n return `/api/auth/login`\n}\n\n/**\n * Authenticates a user using email and password.\n * @summary Login with email and password\n */\nexport const postApiAuthLogin = async (loginRequest: LoginRequest, options?: RequestInit): Promise<postApiAuthLoginResponse> => {\n\n const res = await fetch(getPostApiAuthLoginUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(loginRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthLoginResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthLoginResponse\n}\n\n\nexport type postApiAuthLogoutResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAuthLogoutResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthLogoutResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthLogoutResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthLogoutResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthLogoutResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthLogoutResponseSuccess = (postApiAuthLogoutResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthLogoutResponseError = (postApiAuthLogoutResponse400 | postApiAuthLogoutResponse401 | postApiAuthLogoutResponse403 | postApiAuthLogoutResponse404 | postApiAuthLogoutResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthLogoutResponse = (postApiAuthLogoutResponseSuccess | postApiAuthLogoutResponseError)\n\nexport const getPostApiAuthLogoutUrl = () => {\n\n\n\n\n return `/api/auth/logout`\n}\n\n/**\n * Logs out the current user by clearing the authentication cookie.\n * @summary Logout\n */\nexport const postApiAuthLogout = async ( options?: RequestInit): Promise<postApiAuthLogoutResponse> => {\n\n const res = await fetch(getPostApiAuthLogoutUrl(),\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: postApiAuthLogoutResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAuthLogoutResponse\n}\n\n\nexport type postApiAuthOtpDisableResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAuthOtpDisableResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAuthOtpDisableResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpDisableResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpDisableResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthOtpDisableResponseSuccess = (postApiAuthOtpDisableResponse200 | postApiAuthOtpDisableResponse204) & {\n headers: Headers;\n};\nexport type postApiAuthOtpDisableResponseError = (postApiAuthOtpDisableResponse400 | postApiAuthOtpDisableResponse404 | postApiAuthOtpDisableResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpDisableResponse = (postApiAuthOtpDisableResponseSuccess | postApiAuthOtpDisableResponseError)\n\nexport const getPostApiAuthOtpDisableUrl = () => {\n\n\n\n\n return `/api/auth/otp/disable`\n}\n\n/**\n * Disables 2FA for the authenticated user.\n * @summary Disable OTP\n */\nexport const postApiAuthOtpDisable = async (oTPDisableRequest: OTPDisableRequest, options?: RequestInit): Promise<postApiAuthOtpDisableResponse> => {\n\n const res = await fetch(getPostApiAuthOtpDisableUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(oTPDisableRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthOtpDisableResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpDisableResponse\n}\n\n\nexport type postApiAuthOtpGenerateResponse200 = {\n data: OTPGenerateResponse\n status: 200\n}\n\nexport type postApiAuthOtpGenerateResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpGenerateResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthOtpGenerateResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthOtpGenerateResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpGenerateResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthOtpGenerateResponseSuccess = (postApiAuthOtpGenerateResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthOtpGenerateResponseError = (postApiAuthOtpGenerateResponse400 | postApiAuthOtpGenerateResponse401 | postApiAuthOtpGenerateResponse403 | postApiAuthOtpGenerateResponse404 | postApiAuthOtpGenerateResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpGenerateResponse = (postApiAuthOtpGenerateResponseSuccess | postApiAuthOtpGenerateResponseError)\n\nexport const getPostApiAuthOtpGenerateUrl = () => {\n\n\n\n\n return `/api/auth/otp/generate`\n}\n\n/**\n * Generates a new OTP secret for the authenticated user.\n * @summary Generate OTP secret\n */\nexport const postApiAuthOtpGenerate = async ( options?: RequestInit): Promise<postApiAuthOtpGenerateResponse> => {\n\n const res = await fetch(getPostApiAuthOtpGenerateUrl(),\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: postApiAuthOtpGenerateResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpGenerateResponse\n}\n\n\nexport type postApiAuthOtpValidateResponse302 = {\n data: void\n status: 302\n}\n\nexport type postApiAuthOtpValidateResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpValidateResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthOtpValidateResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthOtpValidateResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpValidateResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\n;\nexport type postApiAuthOtpValidateResponseError = (postApiAuthOtpValidateResponse302 | postApiAuthOtpValidateResponse400 | postApiAuthOtpValidateResponse401 | postApiAuthOtpValidateResponse403 | postApiAuthOtpValidateResponse404 | postApiAuthOtpValidateResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpValidateResponse = (postApiAuthOtpValidateResponseError)\n\nexport const getPostApiAuthOtpValidateUrl = () => {\n\n\n\n\n return `/api/auth/otp/validate`\n}\n\n/**\n * Validates an OTP code to complete 2FA login.\n * @summary Validate OTP code\n */\nexport const postApiAuthOtpValidate = async (oTPValidateRequest: OTPValidateRequest, options?: RequestInit): Promise<postApiAuthOtpValidateResponse> => {\n\n const res = await fetch(getPostApiAuthOtpValidateUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(oTPValidateRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthOtpValidateResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpValidateResponse\n}\n\n\nexport type postApiAuthOtpVerifyResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAuthOtpVerifyResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAuthOtpVerifyResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpVerifyResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpVerifyResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthOtpVerifyResponseSuccess = (postApiAuthOtpVerifyResponse200 | postApiAuthOtpVerifyResponse204) & {\n headers: Headers;\n};\nexport type postApiAuthOtpVerifyResponseError = (postApiAuthOtpVerifyResponse400 | postApiAuthOtpVerifyResponse404 | postApiAuthOtpVerifyResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpVerifyResponse = (postApiAuthOtpVerifyResponseSuccess | postApiAuthOtpVerifyResponseError)\n\nexport const getPostApiAuthOtpVerifyUrl = () => {\n\n\n\n\n return `/api/auth/otp/verify`\n}\n\n/**\n * Verifies an OTP code and enables 2FA for the authenticated user.\n * @summary Verify and enable OTP\n */\nexport const postApiAuthOtpVerify = async (oTPVerifyRequest: OTPVerifyRequest, options?: RequestInit): Promise<postApiAuthOtpVerifyResponse> => {\n\n const res = await fetch(getPostApiAuthOtpVerifyUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(oTPVerifyRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthOtpVerifyResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpVerifyResponse\n}\n\n\nexport type postApiAuthPingResponse200 = {\n data: PongResponse\n status: 200\n}\n\nexport type postApiAuthPingResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthPingResponse401 = {\n data: Error\n status: 401\n}\n\nexport type postApiAuthPingResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthPingResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthPingResponse500 = {\n data: Error\n status: 500\n}\n\nexport type postApiAuthPingResponseSuccess = (postApiAuthPingResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthPingResponseError = (postApiAuthPingResponse400 | postApiAuthPingResponse401 | postApiAuthPingResponse403 | postApiAuthPingResponse404 | postApiAuthPingResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthPingResponse = (postApiAuthPingResponseSuccess | postApiAuthPingResponseError)\n\nexport const getPostApiAuthPingUrl = () => {\n\n\n\n\n return `/api/auth/ping`\n}\n\n/**\n * Checks if the user is authenticated and returns a pong response.\n * @summary Ping authenticated endpoint\n */\nexport const postApiAuthPing = async ( options?: RequestInit): Promise<postApiAuthPingResponse> => {\n\n const res = await fetch(getPostApiAuthPingUrl(),\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: postApiAuthPingResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthPingResponse\n}\n\n\nexport type postApiAuthRegisterResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAuthRegisterResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthRegisterResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthRegisterResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthRegisterResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthRegisterResponse409 = {\n data: Error\n status: 409\n}\n\nexport type postApiAuthRegisterResponse500 = {\n data: Error\n status: 500\n}\n\nexport type postApiAuthRegisterResponseSuccess = (postApiAuthRegisterResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthRegisterResponseError = (postApiAuthRegisterResponse400 | postApiAuthRegisterResponse401 | postApiAuthRegisterResponse403 | postApiAuthRegisterResponse404 | postApiAuthRegisterResponse409 | postApiAuthRegisterResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthRegisterResponse = (postApiAuthRegisterResponseSuccess | postApiAuthRegisterResponseError)\n\nexport const getPostApiAuthRegisterUrl = () => {\n\n\n\n\n return `/api/auth/register`\n}\n\n/**\n * Creates a new user account with email and password.\n * @summary Register a new account\n */\nexport const postApiAuthRegister = async (registerRequest: RegisterRequest, options?: RequestInit): Promise<postApiAuthRegisterResponse> => {\n\n const res = await fetch(getPostApiAuthRegisterUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(registerRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthRegisterResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAuthRegisterResponse\n}\n\n\nexport type getApiOperationsResponse200 = {\n data: OperationListItemResponse\n status: 200\n}\n\nexport type getApiOperationsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiOperationsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiOperationsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiOperationsResponseSuccess = (getApiOperationsResponse200) & {\n headers: Headers;\n};\nexport type getApiOperationsResponseError = (getApiOperationsResponse400 | getApiOperationsResponse404 | getApiOperationsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiOperationsResponse = (getApiOperationsResponseSuccess | getApiOperationsResponseError)\n\nexport const getGetApiOperationsUrl = (params?: GetApiOperationsParams,) => {\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/operations?${stringifiedParams}` : `/api/operations`\n}\n\n/**\n * Retrieve a list of operations, with filtering, searching, and pagination support.\n * @summary List Operations\n */\nexport const getApiOperations = async (params?: GetApiOperationsParams, options?: RequestInit): Promise<getApiOperationsResponse> => {\n\n const res = await fetch(getGetApiOperationsUrl(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: getApiOperationsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiOperationsResponse\n}\n\n\nexport type getApiOperationsIdResponse200 = {\n data: OperationDetailResponse\n status: 200\n}\n\nexport type getApiOperationsIdResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiOperationsIdResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiOperationsIdResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiOperationsIdResponseSuccess = (getApiOperationsIdResponse200) & {\n headers: Headers;\n};\nexport type getApiOperationsIdResponseError = (getApiOperationsIdResponse400 | getApiOperationsIdResponse404 | getApiOperationsIdResponse500) & {\n headers: Headers;\n};\n\nexport type getApiOperationsIdResponse = (getApiOperationsIdResponseSuccess | getApiOperationsIdResponseError)\n\nexport const getGetApiOperationsIdUrl = (id: number,) => {\n\n\n\n\n return `/api/operations/${id}`\n}\n\n/**\n * Retrieve detailed information for a specific operation by its ID.\n * @summary Get Operation Details\n */\nexport const getApiOperationsId = async (id: number, options?: RequestInit): Promise<getApiOperationsIdResponse> => {\n\n const res = await fetch(getGetApiOperationsIdUrl(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: getApiOperationsIdResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiOperationsIdResponse\n}\n\n\nexport type getApiOperationsFiltersResponse200 = {\n data: OperationFiltersResponseResponse\n status: 200\n}\n\nexport type getApiOperationsFiltersResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiOperationsFiltersResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiOperationsFiltersResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiOperationsFiltersResponseSuccess = (getApiOperationsFiltersResponse200) & {\n headers: Headers;\n};\nexport type getApiOperationsFiltersResponseError = (getApiOperationsFiltersResponse400 | getApiOperationsFiltersResponse404 | getApiOperationsFiltersResponse500) & {\n headers: Headers;\n};\n\nexport type getApiOperationsFiltersResponse = (getApiOperationsFiltersResponseSuccess | getApiOperationsFiltersResponseError)\n\nexport const getGetApiOperationsFiltersUrl = () => {\n\n\n\n\n return `/api/operations/filters`\n}\n\n/**\n * Retrieves distinct filter values for operations (statuses, operations, protocols)\n * @summary Get Operation Filters\n */\nexport const getApiOperationsFilters = async ( options?: RequestInit): Promise<getApiOperationsFiltersResponse> => {\n\n const res = await fetch(getGetApiOperationsFiltersUrl(),\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: getApiOperationsFiltersResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiOperationsFiltersResponse\n}\n\n\nexport type getApiUploadLimitResponse200 = {\n data: UploadLimitResponse\n status: 200\n}\n\nexport type getApiUploadLimitResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiUploadLimitResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiUploadLimitResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiUploadLimitResponseSuccess = (getApiUploadLimitResponse200) & {\n headers: Headers;\n};\nexport type getApiUploadLimitResponseError = (getApiUploadLimitResponse400 | getApiUploadLimitResponse404 | getApiUploadLimitResponse500) & {\n headers: Headers;\n};\n\nexport type getApiUploadLimitResponse = (getApiUploadLimitResponseSuccess | getApiUploadLimitResponseError)\n\nexport const getGetApiUploadLimitUrl = () => {\n\n\n\n\n return `/api/upload-limit`\n}\n\n/**\n * Retrieves the maximum allowed upload size.\n * @summary Get upload limit\n */\nexport const getApiUploadLimit = async ( options?: RequestInit): Promise<getApiUploadLimitResponse> => {\n\n const res = await fetch(getGetApiUploadLimitUrl(),\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: getApiUploadLimitResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiUploadLimitResponse\n}\n\n\n\n\nexport const getGetApiAccountResponseMock = (overrideResponse: Partial<Extract<AccountInfoResponse, object>> = {}): AccountInfoResponse => ({avatar: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), created_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), email: faker.string.alpha({length: {min: 10, max: 20}}), first_name: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.number.int(), last_name: faker.string.alpha({length: {min: 10, max: 20}}), otp: faker.datatype.boolean(), verified: faker.datatype.boolean(), ...overrideResponse})\n\nexport const getPostApiAccountAvatarResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiAccountKeysResponseMock = (overrideResponse: Partial<Extract<APIKeyListResponse, object>> = {}): APIKeyListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({created_at: faker.date.past().toISOString().slice(0, 19) + 'Z', name: faker.string.alpha({length: {min: 10, max: 20}}), uuid: faker.string.uuid()})), total: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountKeysResponseMock = (overrideResponse: Partial<Extract<CreateAPIKeyResponse, object>> = {}): CreateAPIKeyResponse => ({name: faker.string.alpha({length: {min: 10, max: 20}}), token: faker.string.alpha({length: {min: 10, max: 20}}), uuid: faker.string.uuid(), ...overrideResponse})\n\nexport const getGetApiAccountPermissionsResponseMock = (overrideResponse: Partial<Extract<AccountPermissionsResponse, object>> = {}): AccountPermissionsResponse => ({model: {matchers: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, policy_definition: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, policy_effect: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, request_definition: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, role_definition: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}}, permissions: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({act: faker.string.alpha({length: {min: 10, max: 20}}), dom: faker.string.alpha({length: {min: 10, max: 20}}), obj: faker.string.alpha({length: {min: 10, max: 20}}), sub: faker.string.alpha({length: {min: 10, max: 20}})})), ...overrideResponse})\n\nexport const getGetApiAccountQuotaHistoryResponseMock = (overrideResponse: Partial<Extract<QuotaHistoryResponse, object>> = {}): QuotaHistoryResponse => ({points: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({bytes: faker.number.int(), date: faker.string.alpha({length: {min: 10, max: 20}})})), user_id: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAuthKeyResponseMock = (overrideResponse: Partial<Extract<LoginResponse, object>> = {}): LoginResponse => ({otp: faker.helpers.arrayElement([faker.datatype.boolean(), undefined]), token: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthLoginResponseMock = (overrideResponse: Partial<Extract<LoginResponse, object>> = {}): LoginResponse => ({otp: faker.helpers.arrayElement([faker.datatype.boolean(), undefined]), token: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthOtpDisableResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthOtpGenerateResponseMock = (overrideResponse: Partial<Extract<OTPGenerateResponse, object>> = {}): OTPGenerateResponse => ({otp: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthOtpVerifyResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthPingResponseMock = (overrideResponse: Partial<Extract<PongResponse, object>> = {}): PongResponse => ({ping: faker.string.alpha({length: {min: 10, max: 20}}), token: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiOperationsResponseMock = (overrideResponse: Partial<Extract<OperationListItemResponse, object>> = {}): OperationListItemResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({cid: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), current_step: faker.helpers.arrayElement([faker.number.int(), undefined]), error: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), estimated_completion_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), id: faker.number.int(), operation: faker.string.alpha({length: {min: 10, max: 20}}), operation_display_name: faker.string.alpha({length: {min: 10, max: 20}}), progress_percent: faker.number.float({fractionDigits: 2}), protocol: faker.string.alpha({length: {min: 10, max: 20}}), protocol_display_name: faker.string.alpha({length: {min: 10, max: 20}}), started_at: faker.date.past().toISOString().slice(0, 19) + 'Z', status: faker.string.alpha({length: {min: 10, max: 20}}), status_display_name: faker.string.alpha({length: {min: 10, max: 20}}), status_message: faker.string.alpha({length: {min: 10, max: 20}}), total_steps: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.date.past().toISOString().slice(0, 19) + 'Z'})), total: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiOperationsIdResponseMock = (overrideResponse: Partial<Extract<OperationDetailResponse, object>> = {}): OperationDetailResponse => ({cid: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), current_step: faker.helpers.arrayElement([faker.number.int(), undefined]), error: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), estimated_completion_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), id: faker.number.int(), operation: faker.string.alpha({length: {min: 10, max: 20}}), operation_display_name: faker.string.alpha({length: {min: 10, max: 20}}), progress_percent: faker.number.float({fractionDigits: 2}), protocol: faker.string.alpha({length: {min: 10, max: 20}}), protocol_display_name: faker.string.alpha({length: {min: 10, max: 20}}), started_at: faker.date.past().toISOString().slice(0, 19) + 'Z', status: faker.string.alpha({length: {min: 10, max: 20}}), status_display_name: faker.string.alpha({length: {min: 10, max: 20}}), status_message: faker.string.alpha({length: {min: 10, max: 20}}), total_steps: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.date.past().toISOString().slice(0, 19) + 'Z', ...overrideResponse})\n\nexport const getGetApiOperationsFiltersResponseMock = (overrideResponse: Partial<Extract<OperationFiltersResponseResponse, object>> = {}): OperationFiltersResponseResponse => ({data: {data: {operations: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), name: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})})), protocols: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), name: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})})), statuses: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), name: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}))}}, total: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiUploadLimitResponseMock = (overrideResponse: Partial<Extract<UploadLimitResponse, object>> = {}): UploadLimitResponse => ({limit: faker.number.int(), ...overrideResponse})\n\n\nexport const getDeleteApiAccountMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.delete('*/api/account', async (info: Parameters<Parameters<typeof http.delete>[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 getGetApiAccountMockHandler = (overrideResponse?: AccountInfoResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<AccountInfoResponse> | AccountInfoResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account', 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 : getGetApiAccountResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPatchApiAccountMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.patch>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.patch('*/api/account', async (info: Parameters<Parameters<typeof http.patch>[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 getGetApiAccountAvatarMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/avatar', 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 getPostApiAccountAvatarMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/avatar', 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 : getPostApiAccountAvatarResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getGetApiAccountKeysMockHandler = (overrideResponse?: APIKeyListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<APIKeyListResponse> | APIKeyListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/keys', 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 : getGetApiAccountKeysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountKeysMockHandler = (overrideResponse?: CreateAPIKeyResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<CreateAPIKeyResponse> | CreateAPIKeyResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/keys', 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 : getPostApiAccountKeysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getDeleteApiAccountKeysKeyIDMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.delete('*/api/account/keys/:keyID', async (info: Parameters<Parameters<typeof http.delete>[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 getPostApiAccountPasswordResetConfirmMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/password-reset/confirm', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAccountPasswordResetRequestMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/password-reset/request', async (info: Parameters<Parameters<typeof http.post>[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 getGetApiAccountPermissionsMockHandler = (overrideResponse?: AccountPermissionsResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<AccountPermissionsResponse> | AccountPermissionsResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/permissions', 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 : getGetApiAccountPermissionsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountQuotaHistoryMockHandler = (overrideResponse?: QuotaHistoryResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<QuotaHistoryResponse> | QuotaHistoryResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/quota/history', 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 : getGetApiAccountQuotaHistoryResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountUpdateEmailMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/update-email', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAccountUpdatePasswordMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/update-password', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAccountVerifyEmailMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/verify-email', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAccountVerifyEmailResendMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/verify-email/resend', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAuthKeyMockHandler = (overrideResponse?: LoginResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<LoginResponse> | LoginResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/key', 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 : getPostApiAuthKeyResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthLoginMockHandler = (overrideResponse?: LoginResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<LoginResponse> | LoginResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/login', 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 : getPostApiAuthLoginResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthLogoutMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/logout', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAuthOtpDisableMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/disable', 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 : getPostApiAuthOtpDisableResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getPostApiAuthOtpGenerateMockHandler = (overrideResponse?: OTPGenerateResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<OTPGenerateResponse> | OTPGenerateResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/generate', 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 : getPostApiAuthOtpGenerateResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthOtpValidateMockHandler = (overrideResponse?: unknown | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<unknown> | unknown), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/validate', async (info: Parameters<Parameters<typeof http.post>[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 getPostApiAuthOtpVerifyMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/verify', 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 : getPostApiAuthOtpVerifyResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getPostApiAuthPingMockHandler = (overrideResponse?: PongResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<PongResponse> | PongResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/ping', 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 : getPostApiAuthPingResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthRegisterMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/register', async (info: Parameters<Parameters<typeof http.post>[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 getGetApiOperationsMockHandler = (overrideResponse?: OperationListItemResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationListItemResponse> | OperationListItemResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/operations', 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 : getGetApiOperationsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiOperationsIdMockHandler = (overrideResponse?: OperationDetailResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationDetailResponse> | OperationDetailResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/operations/:id', 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 : getGetApiOperationsIdResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiOperationsFiltersMockHandler = (overrideResponse?: OperationFiltersResponseResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationFiltersResponseResponse> | OperationFiltersResponseResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/operations/filters', 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 : getGetApiOperationsFiltersResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiUploadLimitMockHandler = (overrideResponse?: UploadLimitResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<UploadLimitResponse> | UploadLimitResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/upload-limit', 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 : getGetApiUploadLimitResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getDefaultMock = () => [\n getDeleteApiAccountMockHandler(),\n getGetApiAccountMockHandler(),\n getPatchApiAccountMockHandler(),\n getGetApiAccountAvatarMockHandler(),\n getPostApiAccountAvatarMockHandler(),\n getGetApiAccountKeysMockHandler(),\n getPostApiAccountKeysMockHandler(),\n getDeleteApiAccountKeysKeyIDMockHandler(),\n getPostApiAccountPasswordResetConfirmMockHandler(),\n getPostApiAccountPasswordResetRequestMockHandler(),\n getGetApiAccountPermissionsMockHandler(),\n getGetApiAccountQuotaHistoryMockHandler(),\n getPostApiAccountUpdateEmailMockHandler(),\n getPostApiAccountUpdatePasswordMockHandler(),\n getPostApiAccountVerifyEmailMockHandler(),\n getPostApiAccountVerifyEmailResendMockHandler(),\n getPostApiAuthKeyMockHandler(),\n getPostApiAuthLoginMockHandler(),\n getPostApiAuthLogoutMockHandler(),\n getPostApiAuthOtpDisableMockHandler(),\n getPostApiAuthOtpGenerateMockHandler(),\n getPostApiAuthOtpValidateMockHandler(),\n getPostApiAuthOtpVerifyMockHandler(),\n getPostApiAuthPingMockHandler(),\n getPostApiAuthRegisterMockHandler(),\n getGetApiOperationsMockHandler(),\n getGetApiOperationsIdMockHandler(),\n getGetApiOperationsFiltersMockHandler(),\n getGetApiUploadLimitMockHandler()\n]\n"],"mappings":"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"}
1
+ {"version":3,"file":"default.js","names":[],"sources":["../../../../src/account/generated/default.ts"],"sourcesContent":["/**\n * Generated by orval v8.18.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 APIKeyCreateRequest,\n APIKeyListResponse,\n AccountInfoResponse,\n AccountPermissionsResponse,\n CreateAPIKeyResponse,\n Error,\n ErrorResponse,\n GetApiAccountKeysParams,\n GetApiAccountQuotaHistoryParams,\n GetApiOperationsParams,\n LoginRequest,\n LoginResponse,\n OTPDisableRequest,\n OTPGenerateResponse,\n OTPValidateRequest,\n OTPVerifyRequest,\n OperationDetailResponse,\n OperationFiltersResponseResponse,\n OperationListItemResponse,\n PasswordResetRequest,\n PasswordResetVerifyRequest,\n PongResponse,\n PostApiAccountAvatarBody,\n PostApiAccountVerifyEmailParams,\n QuotaHistoryResponse,\n RegisterRequest,\n ResendVerifyEmailRequest,\n StringUUIDSchema,\n UpdateEmailRequest,\n UpdatePasswordRequest,\n UpdateProfileRequest,\n UploadLimitResponse,\n VerifyEmailRequest\n} from './accountAPI.schemas.ts';\n\nimport {\n faker\n} from '@faker-js/faker';\n\nimport {\n HttpResponse,\n http\n} from 'msw';\nimport type {\n RequestHandlerOptions\n} from 'msw';\n\n\n\nexport type deleteApiAccountResponse200 = {\n data: void\n status: 200\n}\n\nexport type deleteApiAccountResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type deleteApiAccountResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type deleteApiAccountResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type deleteApiAccountResponseSuccess = (deleteApiAccountResponse200) & {\n headers: Headers;\n};\nexport type deleteApiAccountResponseError = (deleteApiAccountResponse400 | deleteApiAccountResponse404 | deleteApiAccountResponse500) & {\n headers: Headers;\n};\n\nexport type deleteApiAccountResponse = (deleteApiAccountResponseSuccess | deleteApiAccountResponseError)\n\nexport const getDeleteApiAccountUrl = () => {\n\n\n\n\n return `/api/account`\n}\n\n/**\n * Initiates the process to delete the authenticated user's account.\n * @summary Request account deletion\n */\nexport const deleteApiAccount = async ( options?: RequestInit): Promise<deleteApiAccountResponse> => {\n\n const res = await fetch(getDeleteApiAccountUrl(),\n {\n ...options,\n method: 'DELETE'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: deleteApiAccountResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as deleteApiAccountResponse\n}\n\n\nexport type getApiAccountResponse200 = {\n data: AccountInfoResponse\n status: 200\n}\n\nexport type getApiAccountResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type getApiAccountResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type getApiAccountResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountResponseSuccess = (getApiAccountResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountResponseError = (getApiAccountResponse400 | getApiAccountResponse401 | getApiAccountResponse403 | getApiAccountResponse404 | getApiAccountResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountResponse = (getApiAccountResponseSuccess | getApiAccountResponseError)\n\nexport const getGetApiAccountUrl = () => {\n\n\n\n\n return `/api/account`\n}\n\n/**\n * Retrieves information about the authenticated user's account.\n * @summary Get account information\n */\nexport const getApiAccount = async ( options?: RequestInit): Promise<getApiAccountResponse> => {\n\n const res = await fetch(getGetApiAccountUrl(),\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: getApiAccountResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountResponse\n}\n\n\nexport type patchApiAccountResponse200 = {\n data: void\n status: 200\n}\n\nexport type patchApiAccountResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type patchApiAccountResponse401 = {\n data: Error\n status: 401\n}\n\nexport type patchApiAccountResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type patchApiAccountResponse404 = {\n data: Error\n status: 404\n}\n\nexport type patchApiAccountResponse500 = {\n data: Error\n status: 500\n}\n\nexport type patchApiAccountResponseSuccess = (patchApiAccountResponse200) & {\n headers: Headers;\n};\nexport type patchApiAccountResponseError = (patchApiAccountResponse400 | patchApiAccountResponse401 | patchApiAccountResponse403 | patchApiAccountResponse404 | patchApiAccountResponse500) & {\n headers: Headers;\n};\n\nexport type patchApiAccountResponse = (patchApiAccountResponseSuccess | patchApiAccountResponseError)\n\nexport const getPatchApiAccountUrl = () => {\n\n\n\n\n return `/api/account`\n}\n\n/**\n * Updates the authenticated user's profile information. Email cannot be updated through this endpoint.\n * @summary Update profile information\n */\nexport const patchApiAccount = async (updateProfileRequest: UpdateProfileRequest, options?: RequestInit): Promise<patchApiAccountResponse> => {\n\n const res = await fetch(getPatchApiAccountUrl(),\n {\n ...options,\n method: 'PATCH',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(updateProfileRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: patchApiAccountResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as patchApiAccountResponse\n}\n\n\nexport type getApiAccountAvatarResponse200 = {\n data: void\n status: 200\n}\n\nexport type getApiAccountAvatarResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountAvatarResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountAvatarResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountAvatarResponseSuccess = (getApiAccountAvatarResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountAvatarResponseError = (getApiAccountAvatarResponse400 | getApiAccountAvatarResponse404 | getApiAccountAvatarResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountAvatarResponse = (getApiAccountAvatarResponseSuccess | getApiAccountAvatarResponseError)\n\nexport const getGetApiAccountAvatarUrl = () => {\n\n\n\n\n return `/api/account/avatar`\n}\n\n/**\n * Retrieves the authenticated user's profile picture\n * @summary Get Avatar\n */\nexport const getApiAccountAvatar = async ( options?: RequestInit): Promise<getApiAccountAvatarResponse> => {\n\n const res = await fetch(getGetApiAccountAvatarUrl(),\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: getApiAccountAvatarResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as getApiAccountAvatarResponse\n}\n\n\nexport type postApiAccountAvatarResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAccountAvatarResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAccountAvatarResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountAvatarResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountAvatarResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountAvatarResponseSuccess = (postApiAccountAvatarResponse200 | postApiAccountAvatarResponse204) & {\n headers: Headers;\n};\nexport type postApiAccountAvatarResponseError = (postApiAccountAvatarResponse400 | postApiAccountAvatarResponse404 | postApiAccountAvatarResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountAvatarResponse = (postApiAccountAvatarResponseSuccess | postApiAccountAvatarResponseError)\n\nexport const getPostApiAccountAvatarUrl = () => {\n\n\n\n\n return `/api/account/avatar`\n}\n\n/**\n * Uploads a profile picture/avatar\n * @summary Upload Avatar\n */\nexport const postApiAccountAvatar = async (postApiAccountAvatarBody: PostApiAccountAvatarBody, options?: RequestInit): Promise<postApiAccountAvatarResponse> => {\n const formData = new FormData();\nformData.append(`file`, postApiAccountAvatarBody.file);\n\n const res = await fetch(getPostApiAccountAvatarUrl(),\n {\n ...options,\n method: 'POST'\n ,\n body: formData\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountAvatarResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountAvatarResponse\n}\n\n\nexport type getApiAccountKeysResponse200 = {\n data: APIKeyListResponse\n status: 200\n}\n\nexport type getApiAccountKeysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountKeysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountKeysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountKeysResponseSuccess = (getApiAccountKeysResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountKeysResponseError = (getApiAccountKeysResponse400 | getApiAccountKeysResponse404 | getApiAccountKeysResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountKeysResponse = (getApiAccountKeysResponseSuccess | getApiAccountKeysResponseError)\n\nexport const getGetApiAccountKeysUrl = (params?: GetApiAccountKeysParams,) => {\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' : String(value))\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/keys?${stringifiedParams}` : `/api/account/keys`\n}\n\n/**\n * Retrieves a list of API keys for the authenticated user.\n * @summary List API Keys\n */\nexport const getApiAccountKeys = async (params?: GetApiAccountKeysParams, options?: RequestInit): Promise<getApiAccountKeysResponse> => {\n\n const res = await fetch(getGetApiAccountKeysUrl(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: getApiAccountKeysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountKeysResponse\n}\n\n\nexport type postApiAccountKeysResponse200 = {\n data: CreateAPIKeyResponse\n status: 200\n}\n\nexport type postApiAccountKeysResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountKeysResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountKeysResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountKeysResponseSuccess = (postApiAccountKeysResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountKeysResponseError = (postApiAccountKeysResponse400 | postApiAccountKeysResponse404 | postApiAccountKeysResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountKeysResponse = (postApiAccountKeysResponseSuccess | postApiAccountKeysResponseError)\n\nexport const getPostApiAccountKeysUrl = () => {\n\n\n\n\n return `/api/account/keys`\n}\n\n/**\n * Creates a new API key for the authenticated user.\n * @summary Create API Key\n */\nexport const postApiAccountKeys = async (aPIKeyCreateRequest: APIKeyCreateRequest, options?: RequestInit): Promise<postApiAccountKeysResponse> => {\n\n const res = await fetch(getPostApiAccountKeysUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(aPIKeyCreateRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountKeysResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountKeysResponse\n}\n\n\nexport type deleteApiAccountKeysKeyIDResponse200 = {\n data: void\n status: 200\n}\n\nexport type deleteApiAccountKeysKeyIDResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type deleteApiAccountKeysKeyIDResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type deleteApiAccountKeysKeyIDResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type deleteApiAccountKeysKeyIDResponseSuccess = (deleteApiAccountKeysKeyIDResponse200) & {\n headers: Headers;\n};\nexport type deleteApiAccountKeysKeyIDResponseError = (deleteApiAccountKeysKeyIDResponse400 | deleteApiAccountKeysKeyIDResponse404 | deleteApiAccountKeysKeyIDResponse500) & {\n headers: Headers;\n};\n\nexport type deleteApiAccountKeysKeyIDResponse = (deleteApiAccountKeysKeyIDResponseSuccess | deleteApiAccountKeysKeyIDResponseError)\n\nexport const getDeleteApiAccountKeysKeyIDUrl = (keyID: StringUUIDSchema,) => {\n\n\n\n\n return `/api/account/keys/${keyID}`\n}\n\n/**\n * Deletes a specific API key for the authenticated user.\n * @summary Delete API Key\n */\nexport const deleteApiAccountKeysKeyID = async (keyID: StringUUIDSchema, options?: RequestInit): Promise<deleteApiAccountKeysKeyIDResponse> => {\n\n const res = await fetch(getDeleteApiAccountKeysKeyIDUrl(keyID),\n {\n ...options,\n method: 'DELETE'\n\n\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: deleteApiAccountKeysKeyIDResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as deleteApiAccountKeysKeyIDResponse\n}\n\n\nexport type postApiAccountPasswordResetConfirmResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountPasswordResetConfirmResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountPasswordResetConfirmResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountPasswordResetConfirmResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountPasswordResetConfirmResponseSuccess = (postApiAccountPasswordResetConfirmResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountPasswordResetConfirmResponseError = (postApiAccountPasswordResetConfirmResponse400 | postApiAccountPasswordResetConfirmResponse404 | postApiAccountPasswordResetConfirmResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountPasswordResetConfirmResponse = (postApiAccountPasswordResetConfirmResponseSuccess | postApiAccountPasswordResetConfirmResponseError)\n\nexport const getPostApiAccountPasswordResetConfirmUrl = () => {\n\n\n\n\n return `/api/account/password-reset/confirm`\n}\n\n/**\n * Resets the user's password using a token received via email.\n * @summary Confirm password reset\n */\nexport const postApiAccountPasswordResetConfirm = async (passwordResetVerifyRequest: PasswordResetVerifyRequest, options?: RequestInit): Promise<postApiAccountPasswordResetConfirmResponse> => {\n\n const res = await fetch(getPostApiAccountPasswordResetConfirmUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(passwordResetVerifyRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountPasswordResetConfirmResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountPasswordResetConfirmResponse\n}\n\n\nexport type postApiAccountPasswordResetRequestResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountPasswordResetRequestResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountPasswordResetRequestResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAccountPasswordResetRequestResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAccountPasswordResetRequestResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountPasswordResetRequestResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountPasswordResetRequestResponseSuccess = (postApiAccountPasswordResetRequestResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountPasswordResetRequestResponseError = (postApiAccountPasswordResetRequestResponse400 | postApiAccountPasswordResetRequestResponse401 | postApiAccountPasswordResetRequestResponse403 | postApiAccountPasswordResetRequestResponse404 | postApiAccountPasswordResetRequestResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountPasswordResetRequestResponse = (postApiAccountPasswordResetRequestResponseSuccess | postApiAccountPasswordResetRequestResponseError)\n\nexport const getPostApiAccountPasswordResetRequestUrl = () => {\n\n\n\n\n return `/api/account/password-reset/request`\n}\n\n/**\n * Initiates the password reset process by sending a reset link to the user's email.\n * @summary Request password reset\n */\nexport const postApiAccountPasswordResetRequest = async (passwordResetRequest: PasswordResetRequest, options?: RequestInit): Promise<postApiAccountPasswordResetRequestResponse> => {\n\n const res = await fetch(getPostApiAccountPasswordResetRequestUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(passwordResetRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountPasswordResetRequestResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountPasswordResetRequestResponse\n}\n\n\nexport type getApiAccountPermissionsResponse200 = {\n data: AccountPermissionsResponse\n status: 200\n}\n\nexport type getApiAccountPermissionsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountPermissionsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountPermissionsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountPermissionsResponseSuccess = (getApiAccountPermissionsResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountPermissionsResponseError = (getApiAccountPermissionsResponse400 | getApiAccountPermissionsResponse404 | getApiAccountPermissionsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountPermissionsResponse = (getApiAccountPermissionsResponseSuccess | getApiAccountPermissionsResponseError)\n\nexport const getGetApiAccountPermissionsUrl = () => {\n\n\n\n\n return `/api/account/permissions`\n}\n\n/**\n * Retrieves the access control policies and model for the authenticated user.\n * @summary Get account permissions\n */\nexport const getApiAccountPermissions = async ( options?: RequestInit): Promise<getApiAccountPermissionsResponse> => {\n\n const res = await fetch(getGetApiAccountPermissionsUrl(),\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: getApiAccountPermissionsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountPermissionsResponse\n}\n\n\nexport type getApiAccountQuotaHistoryResponse200 = {\n data: QuotaHistoryResponse\n status: 200\n}\n\nexport type getApiAccountQuotaHistoryResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountQuotaHistoryResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountQuotaHistoryResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountQuotaHistoryResponseSuccess = (getApiAccountQuotaHistoryResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountQuotaHistoryResponseError = (getApiAccountQuotaHistoryResponse400 | getApiAccountQuotaHistoryResponse404 | getApiAccountQuotaHistoryResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountQuotaHistoryResponse = (getApiAccountQuotaHistoryResponseSuccess | getApiAccountQuotaHistoryResponseError)\n\nexport const getGetApiAccountQuotaHistoryUrl = (params?: GetApiAccountQuotaHistoryParams,) => {\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' : String(value))\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/quota/history?${stringifiedParams}` : `/api/account/quota/history`\n}\n\n/**\n * Retrieves historical quota usage data for charting and analytics.\n * @summary Get quota usage history\n */\nexport const getApiAccountQuotaHistory = async (params?: GetApiAccountQuotaHistoryParams, options?: RequestInit): Promise<getApiAccountQuotaHistoryResponse> => {\n\n const res = await fetch(getGetApiAccountQuotaHistoryUrl(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: getApiAccountQuotaHistoryResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountQuotaHistoryResponse\n}\n\n\nexport type postApiAccountUpdateEmailResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountUpdateEmailResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountUpdateEmailResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountUpdateEmailResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountUpdateEmailResponseSuccess = (postApiAccountUpdateEmailResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountUpdateEmailResponseError = (postApiAccountUpdateEmailResponse400 | postApiAccountUpdateEmailResponse404 | postApiAccountUpdateEmailResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountUpdateEmailResponse = (postApiAccountUpdateEmailResponseSuccess | postApiAccountUpdateEmailResponseError)\n\nexport const getPostApiAccountUpdateEmailUrl = () => {\n\n\n\n\n return `/api/account/update-email`\n}\n\n/**\n * Updates the authenticated user's email address.\n * @summary Update email address\n */\nexport const postApiAccountUpdateEmail = async (updateEmailRequest: UpdateEmailRequest, options?: RequestInit): Promise<postApiAccountUpdateEmailResponse> => {\n\n const res = await fetch(getPostApiAccountUpdateEmailUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(updateEmailRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountUpdateEmailResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountUpdateEmailResponse\n}\n\n\nexport type postApiAccountUpdatePasswordResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountUpdatePasswordResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountUpdatePasswordResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountUpdatePasswordResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountUpdatePasswordResponseSuccess = (postApiAccountUpdatePasswordResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountUpdatePasswordResponseError = (postApiAccountUpdatePasswordResponse400 | postApiAccountUpdatePasswordResponse404 | postApiAccountUpdatePasswordResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountUpdatePasswordResponse = (postApiAccountUpdatePasswordResponseSuccess | postApiAccountUpdatePasswordResponseError)\n\nexport const getPostApiAccountUpdatePasswordUrl = () => {\n\n\n\n\n return `/api/account/update-password`\n}\n\n/**\n * Updates the authenticated user's password.\n * @summary Update password\n */\nexport const postApiAccountUpdatePassword = async (updatePasswordRequest: UpdatePasswordRequest, options?: RequestInit): Promise<postApiAccountUpdatePasswordResponse> => {\n\n const res = await fetch(getPostApiAccountUpdatePasswordUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(updatePasswordRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountUpdatePasswordResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountUpdatePasswordResponse\n}\n\n\nexport type postApiAccountVerifyEmailResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountVerifyEmailResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountVerifyEmailResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountVerifyEmailResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountVerifyEmailResponseSuccess = (postApiAccountVerifyEmailResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountVerifyEmailResponseError = (postApiAccountVerifyEmailResponse400 | postApiAccountVerifyEmailResponse404 | postApiAccountVerifyEmailResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountVerifyEmailResponse = (postApiAccountVerifyEmailResponseSuccess | postApiAccountVerifyEmailResponseError)\n\nexport const getPostApiAccountVerifyEmailUrl = (params?: PostApiAccountVerifyEmailParams,) => {\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' : String(value))\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/account/verify-email?${stringifiedParams}` : `/api/account/verify-email`\n}\n\n/**\n * Verifies a user's email address using a token sent via email. Optionally auto-login user if they don't have 2FA enabled.\n * @summary Verify email address\n */\nexport const postApiAccountVerifyEmail = async (verifyEmailRequest: VerifyEmailRequest,\n params?: PostApiAccountVerifyEmailParams, options?: RequestInit): Promise<postApiAccountVerifyEmailResponse> => {\n\n const res = await fetch(getPostApiAccountVerifyEmailUrl(params),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(verifyEmailRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountVerifyEmailResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountVerifyEmailResponse\n}\n\n\nexport type postApiAccountVerifyEmailResendResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAccountVerifyEmailResendResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAccountVerifyEmailResendResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAccountVerifyEmailResendResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAccountVerifyEmailResendResponseSuccess = (postApiAccountVerifyEmailResendResponse200) & {\n headers: Headers;\n};\nexport type postApiAccountVerifyEmailResendResponseError = (postApiAccountVerifyEmailResendResponse400 | postApiAccountVerifyEmailResendResponse404 | postApiAccountVerifyEmailResendResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAccountVerifyEmailResendResponse = (postApiAccountVerifyEmailResendResponseSuccess | postApiAccountVerifyEmailResendResponseError)\n\nexport const getPostApiAccountVerifyEmailResendUrl = () => {\n\n\n\n\n return `/api/account/verify-email/resend`\n}\n\n/**\n * Resends the email verification link to the user's email address.\n * @summary Resend email verification\n */\nexport const postApiAccountVerifyEmailResend = async (resendVerifyEmailRequest: ResendVerifyEmailRequest, options?: RequestInit): Promise<postApiAccountVerifyEmailResendResponse> => {\n\n const res = await fetch(getPostApiAccountVerifyEmailResendUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(resendVerifyEmailRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAccountVerifyEmailResendResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAccountVerifyEmailResendResponse\n}\n\n\nexport type postApiAuthKeyResponse200 = {\n data: LoginResponse\n status: 200\n}\n\nexport type postApiAuthKeyResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthKeyResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthKeyResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthKeyResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthKeyResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthKeyResponseSuccess = (postApiAuthKeyResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthKeyResponseError = (postApiAuthKeyResponse400 | postApiAuthKeyResponse401 | postApiAuthKeyResponse403 | postApiAuthKeyResponse404 | postApiAuthKeyResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthKeyResponse = (postApiAuthKeyResponseSuccess | postApiAuthKeyResponseError)\n\nexport const getPostApiAuthKeyUrl = () => {\n\n\n\n\n return `/api/auth/key`\n}\n\n/**\n * Exchanges an API key for a JWT.\n * @summary Authenticate with API Key\n */\nexport const postApiAuthKey = async ( options?: RequestInit): Promise<postApiAuthKeyResponse> => {\n\n const res = await fetch(getPostApiAuthKeyUrl(),\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: postApiAuthKeyResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthKeyResponse\n}\n\n\nexport type postApiAuthLoginResponse200 = {\n data: LoginResponse\n status: 200\n}\n\nexport type postApiAuthLoginResponse302 = {\n data: void\n status: 302\n}\n\nexport type postApiAuthLoginResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthLoginResponse401 = {\n data: Error\n status: 401\n}\n\nexport type postApiAuthLoginResponse403 = {\n data: Error\n status: 403\n}\n\nexport type postApiAuthLoginResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthLoginResponse500 = {\n data: Error\n status: 500\n}\n\nexport type postApiAuthLoginResponseSuccess = (postApiAuthLoginResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthLoginResponseError = (postApiAuthLoginResponse302 | postApiAuthLoginResponse400 | postApiAuthLoginResponse401 | postApiAuthLoginResponse403 | postApiAuthLoginResponse404 | postApiAuthLoginResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthLoginResponse = (postApiAuthLoginResponseSuccess | postApiAuthLoginResponseError)\n\nexport const getPostApiAuthLoginUrl = () => {\n\n\n\n\n return `/api/auth/login`\n}\n\n/**\n * Authenticates a user using email and password.\n * @summary Login with email and password\n */\nexport const postApiAuthLogin = async (loginRequest: LoginRequest, options?: RequestInit): Promise<postApiAuthLoginResponse> => {\n\n const res = await fetch(getPostApiAuthLoginUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(loginRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthLoginResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthLoginResponse\n}\n\n\nexport type postApiAuthLogoutResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAuthLogoutResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthLogoutResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthLogoutResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthLogoutResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthLogoutResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthLogoutResponseSuccess = (postApiAuthLogoutResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthLogoutResponseError = (postApiAuthLogoutResponse400 | postApiAuthLogoutResponse401 | postApiAuthLogoutResponse403 | postApiAuthLogoutResponse404 | postApiAuthLogoutResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthLogoutResponse = (postApiAuthLogoutResponseSuccess | postApiAuthLogoutResponseError)\n\nexport const getPostApiAuthLogoutUrl = () => {\n\n\n\n\n return `/api/auth/logout`\n}\n\n/**\n * Logs out the current user by clearing the authentication cookie.\n * @summary Logout\n */\nexport const postApiAuthLogout = async ( options?: RequestInit): Promise<postApiAuthLogoutResponse> => {\n\n const res = await fetch(getPostApiAuthLogoutUrl(),\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: postApiAuthLogoutResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAuthLogoutResponse\n}\n\n\nexport type postApiAuthOtpDisableResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAuthOtpDisableResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAuthOtpDisableResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpDisableResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpDisableResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthOtpDisableResponseSuccess = (postApiAuthOtpDisableResponse200 | postApiAuthOtpDisableResponse204) & {\n headers: Headers;\n};\nexport type postApiAuthOtpDisableResponseError = (postApiAuthOtpDisableResponse400 | postApiAuthOtpDisableResponse404 | postApiAuthOtpDisableResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpDisableResponse = (postApiAuthOtpDisableResponseSuccess | postApiAuthOtpDisableResponseError)\n\nexport const getPostApiAuthOtpDisableUrl = () => {\n\n\n\n\n return `/api/auth/otp/disable`\n}\n\n/**\n * Disables 2FA for the authenticated user.\n * @summary Disable OTP\n */\nexport const postApiAuthOtpDisable = async (oTPDisableRequest: OTPDisableRequest, options?: RequestInit): Promise<postApiAuthOtpDisableResponse> => {\n\n const res = await fetch(getPostApiAuthOtpDisableUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(oTPDisableRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthOtpDisableResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpDisableResponse\n}\n\n\nexport type postApiAuthOtpGenerateResponse200 = {\n data: OTPGenerateResponse\n status: 200\n}\n\nexport type postApiAuthOtpGenerateResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpGenerateResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthOtpGenerateResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthOtpGenerateResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpGenerateResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthOtpGenerateResponseSuccess = (postApiAuthOtpGenerateResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthOtpGenerateResponseError = (postApiAuthOtpGenerateResponse400 | postApiAuthOtpGenerateResponse401 | postApiAuthOtpGenerateResponse403 | postApiAuthOtpGenerateResponse404 | postApiAuthOtpGenerateResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpGenerateResponse = (postApiAuthOtpGenerateResponseSuccess | postApiAuthOtpGenerateResponseError)\n\nexport const getPostApiAuthOtpGenerateUrl = () => {\n\n\n\n\n return `/api/auth/otp/generate`\n}\n\n/**\n * Generates a new OTP secret for the authenticated user.\n * @summary Generate OTP secret\n */\nexport const postApiAuthOtpGenerate = async ( options?: RequestInit): Promise<postApiAuthOtpGenerateResponse> => {\n\n const res = await fetch(getPostApiAuthOtpGenerateUrl(),\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: postApiAuthOtpGenerateResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpGenerateResponse\n}\n\n\nexport type postApiAuthOtpValidateResponse302 = {\n data: void\n status: 302\n}\n\nexport type postApiAuthOtpValidateResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpValidateResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthOtpValidateResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthOtpValidateResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpValidateResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\n;\nexport type postApiAuthOtpValidateResponseError = (postApiAuthOtpValidateResponse302 | postApiAuthOtpValidateResponse400 | postApiAuthOtpValidateResponse401 | postApiAuthOtpValidateResponse403 | postApiAuthOtpValidateResponse404 | postApiAuthOtpValidateResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpValidateResponse = (postApiAuthOtpValidateResponseError)\n\nexport const getPostApiAuthOtpValidateUrl = () => {\n\n\n\n\n return `/api/auth/otp/validate`\n}\n\n/**\n * Validates an OTP code to complete 2FA login.\n * @summary Validate OTP code\n */\nexport const postApiAuthOtpValidate = async (oTPValidateRequest: OTPValidateRequest, options?: RequestInit): Promise<postApiAuthOtpValidateResponse> => {\n\n const res = await fetch(getPostApiAuthOtpValidateUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(oTPValidateRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthOtpValidateResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpValidateResponse\n}\n\n\nexport type postApiAuthOtpVerifyResponse200 = {\n data: ErrorResponse\n status: 200\n}\n\nexport type postApiAuthOtpVerifyResponse204 = {\n data: void\n status: 204\n}\n\nexport type postApiAuthOtpVerifyResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthOtpVerifyResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthOtpVerifyResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type postApiAuthOtpVerifyResponseSuccess = (postApiAuthOtpVerifyResponse200 | postApiAuthOtpVerifyResponse204) & {\n headers: Headers;\n};\nexport type postApiAuthOtpVerifyResponseError = (postApiAuthOtpVerifyResponse400 | postApiAuthOtpVerifyResponse404 | postApiAuthOtpVerifyResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpVerifyResponse = (postApiAuthOtpVerifyResponseSuccess | postApiAuthOtpVerifyResponseError)\n\nexport const getPostApiAuthOtpVerifyUrl = () => {\n\n\n\n\n return `/api/auth/otp/verify`\n}\n\n/**\n * Verifies an OTP code and enables 2FA for the authenticated user.\n * @summary Verify and enable OTP\n */\nexport const postApiAuthOtpVerify = async (oTPVerifyRequest: OTPVerifyRequest, options?: RequestInit): Promise<postApiAuthOtpVerifyResponse> => {\n\n const res = await fetch(getPostApiAuthOtpVerifyUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(oTPVerifyRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthOtpVerifyResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthOtpVerifyResponse\n}\n\n\nexport type postApiAuthPingResponse200 = {\n data: PongResponse\n status: 200\n}\n\nexport type postApiAuthPingResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthPingResponse401 = {\n data: Error\n status: 401\n}\n\nexport type postApiAuthPingResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthPingResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthPingResponse500 = {\n data: Error\n status: 500\n}\n\nexport type postApiAuthPingResponseSuccess = (postApiAuthPingResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthPingResponseError = (postApiAuthPingResponse400 | postApiAuthPingResponse401 | postApiAuthPingResponse403 | postApiAuthPingResponse404 | postApiAuthPingResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthPingResponse = (postApiAuthPingResponseSuccess | postApiAuthPingResponseError)\n\nexport const getPostApiAuthPingUrl = () => {\n\n\n\n\n return `/api/auth/ping`\n}\n\n/**\n * Checks if the user is authenticated and returns a pong response.\n * @summary Ping authenticated endpoint\n */\nexport const postApiAuthPing = async ( options?: RequestInit): Promise<postApiAuthPingResponse> => {\n\n const res = await fetch(getPostApiAuthPingUrl(),\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: postApiAuthPingResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthPingResponse\n}\n\n\nexport type postApiAuthRegisterResponse200 = {\n data: void\n status: 200\n}\n\nexport type postApiAuthRegisterResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type postApiAuthRegisterResponse401 = {\n data: ErrorResponse\n status: 401\n}\n\nexport type postApiAuthRegisterResponse403 = {\n data: ErrorResponse\n status: 403\n}\n\nexport type postApiAuthRegisterResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type postApiAuthRegisterResponse409 = {\n data: Error\n status: 409\n}\n\nexport type postApiAuthRegisterResponse500 = {\n data: Error\n status: 500\n}\n\nexport type postApiAuthRegisterResponseSuccess = (postApiAuthRegisterResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthRegisterResponseError = (postApiAuthRegisterResponse400 | postApiAuthRegisterResponse401 | postApiAuthRegisterResponse403 | postApiAuthRegisterResponse404 | postApiAuthRegisterResponse409 | postApiAuthRegisterResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthRegisterResponse = (postApiAuthRegisterResponseSuccess | postApiAuthRegisterResponseError)\n\nexport const getPostApiAuthRegisterUrl = () => {\n\n\n\n\n return `/api/auth/register`\n}\n\n/**\n * Creates a new user account with email and password.\n * @summary Register a new account\n */\nexport const postApiAuthRegister = async (registerRequest: RegisterRequest, options?: RequestInit): Promise<postApiAuthRegisterResponse> => {\n\n const res = await fetch(getPostApiAuthRegisterUrl(),\n {\n ...options,\n method: 'POST',\n headers: { 'Content-Type': 'application/json', ...options?.headers },\n body: JSON.stringify(registerRequest)\n }\n)\n\n\n const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n\n const data: postApiAuthRegisterResponse['data'] = body ? JSON.parse(body) : undefined\n return { data, status: res.status, headers: res.headers } as postApiAuthRegisterResponse\n}\n\n\nexport type getApiOperationsResponse200 = {\n data: OperationListItemResponse\n status: 200\n}\n\nexport type getApiOperationsResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiOperationsResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiOperationsResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiOperationsResponseSuccess = (getApiOperationsResponse200) & {\n headers: Headers;\n};\nexport type getApiOperationsResponseError = (getApiOperationsResponse400 | getApiOperationsResponse404 | getApiOperationsResponse500) & {\n headers: Headers;\n};\n\nexport type getApiOperationsResponse = (getApiOperationsResponseSuccess | getApiOperationsResponseError)\n\nexport const getGetApiOperationsUrl = (params?: GetApiOperationsParams,) => {\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' : String(value))\n }\n });\n\n const stringifiedParams = normalizedParams.toString();\n\n return stringifiedParams.length > 0 ? `/api/operations?${stringifiedParams}` : `/api/operations`\n}\n\n/**\n * Retrieve a list of operations, with filtering, searching, and pagination support.\n * @summary List Operations\n */\nexport const getApiOperations = async (params?: GetApiOperationsParams, options?: RequestInit): Promise<getApiOperationsResponse> => {\n\n const res = await fetch(getGetApiOperationsUrl(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: getApiOperationsResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiOperationsResponse\n}\n\n\nexport type getApiOperationsIdResponse200 = {\n data: OperationDetailResponse\n status: 200\n}\n\nexport type getApiOperationsIdResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiOperationsIdResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiOperationsIdResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiOperationsIdResponseSuccess = (getApiOperationsIdResponse200) & {\n headers: Headers;\n};\nexport type getApiOperationsIdResponseError = (getApiOperationsIdResponse400 | getApiOperationsIdResponse404 | getApiOperationsIdResponse500) & {\n headers: Headers;\n};\n\nexport type getApiOperationsIdResponse = (getApiOperationsIdResponseSuccess | getApiOperationsIdResponseError)\n\nexport const getGetApiOperationsIdUrl = (id: number,) => {\n\n\n\n\n return `/api/operations/${id}`\n}\n\n/**\n * Retrieve detailed information for a specific operation by its ID.\n * @summary Get Operation Details\n */\nexport const getApiOperationsId = async (id: number, options?: RequestInit): Promise<getApiOperationsIdResponse> => {\n\n const res = await fetch(getGetApiOperationsIdUrl(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: getApiOperationsIdResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiOperationsIdResponse\n}\n\n\nexport type getApiOperationsFiltersResponse200 = {\n data: OperationFiltersResponseResponse\n status: 200\n}\n\nexport type getApiOperationsFiltersResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiOperationsFiltersResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiOperationsFiltersResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiOperationsFiltersResponseSuccess = (getApiOperationsFiltersResponse200) & {\n headers: Headers;\n};\nexport type getApiOperationsFiltersResponseError = (getApiOperationsFiltersResponse400 | getApiOperationsFiltersResponse404 | getApiOperationsFiltersResponse500) & {\n headers: Headers;\n};\n\nexport type getApiOperationsFiltersResponse = (getApiOperationsFiltersResponseSuccess | getApiOperationsFiltersResponseError)\n\nexport const getGetApiOperationsFiltersUrl = () => {\n\n\n\n\n return `/api/operations/filters`\n}\n\n/**\n * Retrieves distinct filter values for operations (statuses, operations, protocols)\n * @summary Get Operation Filters\n */\nexport const getApiOperationsFilters = async ( options?: RequestInit): Promise<getApiOperationsFiltersResponse> => {\n\n const res = await fetch(getGetApiOperationsFiltersUrl(),\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: getApiOperationsFiltersResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiOperationsFiltersResponse\n}\n\n\nexport type getApiUploadLimitResponse200 = {\n data: UploadLimitResponse\n status: 200\n}\n\nexport type getApiUploadLimitResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiUploadLimitResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiUploadLimitResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiUploadLimitResponseSuccess = (getApiUploadLimitResponse200) & {\n headers: Headers;\n};\nexport type getApiUploadLimitResponseError = (getApiUploadLimitResponse400 | getApiUploadLimitResponse404 | getApiUploadLimitResponse500) & {\n headers: Headers;\n};\n\nexport type getApiUploadLimitResponse = (getApiUploadLimitResponseSuccess | getApiUploadLimitResponseError)\n\nexport const getGetApiUploadLimitUrl = () => {\n\n\n\n\n return `/api/upload-limit`\n}\n\n/**\n * Retrieves the maximum allowed upload size.\n * @summary Get upload limit\n */\nexport const getApiUploadLimit = async ( options?: RequestInit): Promise<getApiUploadLimitResponse> => {\n\n const res = await fetch(getGetApiUploadLimitUrl(),\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: getApiUploadLimitResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiUploadLimitResponse\n}\n\n\n\n\nexport const getGetApiAccountResponseMock = (overrideResponse: Partial<Extract<AccountInfoResponse, object>> = {}): AccountInfoResponse => ({avatar: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), created_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), email: faker.string.alpha({length: {min: 10, max: 20}}), first_name: faker.string.alpha({length: {min: 10, max: 20}}), id: faker.number.int(), last_name: faker.string.alpha({length: {min: 10, max: 20}}), otp: faker.datatype.boolean(), verified: faker.datatype.boolean(), ...overrideResponse})\n\nexport const getPostApiAccountAvatarResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiAccountKeysResponseMock = (overrideResponse: Partial<Extract<APIKeyListResponse, object>> = {}): APIKeyListResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({created_at: faker.date.past().toISOString().slice(0, 19) + 'Z', name: faker.string.alpha({length: {min: 10, max: 20}}), uuid: faker.string.uuid()})), total: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAccountKeysResponseMock = (overrideResponse: Partial<Extract<CreateAPIKeyResponse, object>> = {}): CreateAPIKeyResponse => ({name: faker.string.alpha({length: {min: 10, max: 20}}), token: faker.string.alpha({length: {min: 10, max: 20}}), uuid: faker.string.uuid(), ...overrideResponse})\n\nexport const getGetApiAccountPermissionsResponseMock = (overrideResponse: Partial<Extract<AccountPermissionsResponse, object>> = {}): AccountPermissionsResponse => ({model: {matchers: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, policy_definition: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, policy_effect: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, request_definition: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}, role_definition: {key: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}}, permissions: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({act: faker.string.alpha({length: {min: 10, max: 20}}), dom: faker.string.alpha({length: {min: 10, max: 20}}), obj: faker.string.alpha({length: {min: 10, max: 20}}), sub: faker.string.alpha({length: {min: 10, max: 20}})})), ...overrideResponse})\n\nexport const getGetApiAccountQuotaHistoryResponseMock = (overrideResponse: Partial<Extract<QuotaHistoryResponse, object>> = {}): QuotaHistoryResponse => ({points: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({bytes: faker.number.int(), date: faker.string.alpha({length: {min: 10, max: 20}})})), user_id: faker.number.int(), ...overrideResponse})\n\nexport const getPostApiAuthKeyResponseMock = (overrideResponse: Partial<Extract<LoginResponse, object>> = {}): LoginResponse => ({otp: faker.helpers.arrayElement([faker.datatype.boolean(), undefined]), token: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthLoginResponseMock = (overrideResponse: Partial<Extract<LoginResponse, object>> = {}): LoginResponse => ({otp: faker.helpers.arrayElement([faker.datatype.boolean(), undefined]), token: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthOtpDisableResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthOtpGenerateResponseMock = (overrideResponse: Partial<Extract<OTPGenerateResponse, object>> = {}): OTPGenerateResponse => ({otp: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthOtpVerifyResponseMock = (overrideResponse: Partial<Extract<ErrorResponse, object>> = {}): ErrorResponse => ({error: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getPostApiAuthPingResponseMock = (overrideResponse: Partial<Extract<PongResponse, object>> = {}): PongResponse => ({ping: faker.string.alpha({length: {min: 10, max: 20}}), token: faker.string.alpha({length: {min: 10, max: 20}}), ...overrideResponse})\n\nexport const getGetApiOperationsResponseMock = (overrideResponse: Partial<Extract<OperationListItemResponse, object>> = {}): OperationListItemResponse => ({data: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({cid: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), current_step: faker.helpers.arrayElement([faker.number.int(), undefined]), error: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), estimated_completion_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), id: faker.number.int(), operation: faker.string.alpha({length: {min: 10, max: 20}}), operation_display_name: faker.string.alpha({length: {min: 10, max: 20}}), progress_percent: faker.number.float({fractionDigits: 2}), protocol: faker.string.alpha({length: {min: 10, max: 20}}), protocol_display_name: faker.string.alpha({length: {min: 10, max: 20}}), started_at: faker.date.past().toISOString().slice(0, 19) + 'Z', status: faker.string.alpha({length: {min: 10, max: 20}}), status_display_name: faker.string.alpha({length: {min: 10, max: 20}}), status_message: faker.string.alpha({length: {min: 10, max: 20}}), total_steps: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.date.past().toISOString().slice(0, 19) + 'Z'})), total: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiOperationsIdResponseMock = (overrideResponse: Partial<Extract<OperationDetailResponse, object>> = {}): OperationDetailResponse => ({cid: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), current_step: faker.helpers.arrayElement([faker.number.int(), undefined]), error: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), estimated_completion_at: faker.helpers.arrayElement([faker.date.past().toISOString().slice(0, 19) + 'Z', undefined]), id: faker.number.int(), operation: faker.string.alpha({length: {min: 10, max: 20}}), operation_display_name: faker.string.alpha({length: {min: 10, max: 20}}), progress_percent: faker.number.float({fractionDigits: 2}), protocol: faker.string.alpha({length: {min: 10, max: 20}}), protocol_display_name: faker.string.alpha({length: {min: 10, max: 20}}), started_at: faker.date.past().toISOString().slice(0, 19) + 'Z', status: faker.string.alpha({length: {min: 10, max: 20}}), status_display_name: faker.string.alpha({length: {min: 10, max: 20}}), status_message: faker.string.alpha({length: {min: 10, max: 20}}), total_steps: faker.helpers.arrayElement([faker.number.int(), undefined]), updated_at: faker.date.past().toISOString().slice(0, 19) + 'Z', ...overrideResponse})\n\nexport const getGetApiOperationsFiltersResponseMock = (overrideResponse: Partial<Extract<OperationFiltersResponseResponse, object>> = {}): OperationFiltersResponseResponse => ({data: {data: {operations: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), name: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})})), protocols: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), name: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})})), statuses: Array.from({ length: faker.number.int({min: 1, max: 10}) }, (_, i) => i + 1).map(() => ({description: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), name: faker.string.alpha({length: {min: 10, max: 20}}), value: faker.string.alpha({length: {min: 10, max: 20}})}))}}, total: faker.number.int(), ...overrideResponse})\n\nexport const getGetApiUploadLimitResponseMock = (overrideResponse: Partial<Extract<UploadLimitResponse, object>> = {}): UploadLimitResponse => ({limit: faker.number.int(), ...overrideResponse})\n\n\nexport const getDeleteApiAccountMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.delete('*/api/account', async (info: Parameters<Parameters<typeof http.delete>[1]>[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 getGetApiAccountMockHandler = (overrideResponse?: AccountInfoResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<AccountInfoResponse> | AccountInfoResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPatchApiAccountMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.patch>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.patch('*/api/account', async (info: Parameters<Parameters<typeof http.patch>[1]>[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 getGetApiAccountAvatarMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/avatar', async (info: Parameters<Parameters<typeof http.get>[1]>[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 getPostApiAccountAvatarMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/avatar', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n const resolvedBody = overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountAvatarResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getGetApiAccountKeysMockHandler = (overrideResponse?: APIKeyListResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<APIKeyListResponse> | APIKeyListResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/keys', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountKeysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountKeysMockHandler = (overrideResponse?: CreateAPIKeyResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<CreateAPIKeyResponse> | CreateAPIKeyResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/keys', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAccountKeysResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getDeleteApiAccountKeysKeyIDMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.delete>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.delete('*/api/account/keys/:keyID', async (info: Parameters<Parameters<typeof http.delete>[1]>[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 getPostApiAccountPasswordResetConfirmMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/password-reset/confirm', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAccountPasswordResetRequestMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/password-reset/request', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getGetApiAccountPermissionsMockHandler = (overrideResponse?: AccountPermissionsResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<AccountPermissionsResponse> | AccountPermissionsResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/permissions', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountPermissionsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiAccountQuotaHistoryMockHandler = (overrideResponse?: QuotaHistoryResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<QuotaHistoryResponse> | QuotaHistoryResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/quota/history', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountQuotaHistoryResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAccountUpdateEmailMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/update-email', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAccountUpdatePasswordMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/update-password', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAccountVerifyEmailMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/verify-email', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAccountVerifyEmailResendMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/account/verify-email/resend', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAuthKeyMockHandler = (overrideResponse?: LoginResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<LoginResponse> | LoginResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/key', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAuthKeyResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthLoginMockHandler = (overrideResponse?: LoginResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<LoginResponse> | LoginResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/login', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAuthLoginResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthLogoutMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/logout', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAuthOtpDisableMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/disable', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n const resolvedBody = overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAuthOtpDisableResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getPostApiAuthOtpGenerateMockHandler = (overrideResponse?: OTPGenerateResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<OTPGenerateResponse> | OTPGenerateResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/generate', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAuthOtpGenerateResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthOtpValidateMockHandler = (overrideResponse?: unknown | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<unknown> | unknown), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/validate', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getPostApiAuthOtpVerifyMockHandler = (overrideResponse?: ErrorResponse | void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<ErrorResponse | void> | ErrorResponse | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/otp/verify', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n const resolvedBody = overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAuthOtpVerifyResponseMock();\n return resolvedBody === undefined\n ? new HttpResponse(null, { status: 204 })\n : HttpResponse.json(resolvedBody, { status: 200 })\n }, options)\n}\n\nexport const getPostApiAuthPingMockHandler = (overrideResponse?: PongResponse | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<PongResponse> | PongResponse), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/ping', async (info: Parameters<Parameters<typeof http.post>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getPostApiAuthPingResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getPostApiAuthRegisterMockHandler = (overrideResponse?: void | ((info: Parameters<Parameters<typeof http.post>[1]>[0]) => Promise<void> | void), options?: RequestHandlerOptions) => {\n return http.post('*/api/auth/register', async (info: Parameters<Parameters<typeof http.post>[1]>[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 getGetApiOperationsMockHandler = (overrideResponse?: OperationListItemResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationListItemResponse> | OperationListItemResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/operations', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiOperationsResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiOperationsIdMockHandler = (overrideResponse?: OperationDetailResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationDetailResponse> | OperationDetailResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/operations/:id', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiOperationsIdResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiOperationsFiltersMockHandler = (overrideResponse?: OperationFiltersResponseResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<OperationFiltersResponseResponse> | OperationFiltersResponseResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/operations/filters', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiOperationsFiltersResponseMock(),\n { status: 200\n })\n }, options)\n}\n\nexport const getGetApiUploadLimitMockHandler = (overrideResponse?: UploadLimitResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<UploadLimitResponse> | UploadLimitResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/upload-limit', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiUploadLimitResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getDefaultMock = () => [\n getDeleteApiAccountMockHandler(),\n getGetApiAccountMockHandler(),\n getPatchApiAccountMockHandler(),\n getGetApiAccountAvatarMockHandler(),\n getPostApiAccountAvatarMockHandler(),\n getGetApiAccountKeysMockHandler(),\n getPostApiAccountKeysMockHandler(),\n getDeleteApiAccountKeysKeyIDMockHandler(),\n getPostApiAccountPasswordResetConfirmMockHandler(),\n getPostApiAccountPasswordResetRequestMockHandler(),\n getGetApiAccountPermissionsMockHandler(),\n getGetApiAccountQuotaHistoryMockHandler(),\n getPostApiAccountUpdateEmailMockHandler(),\n getPostApiAccountUpdatePasswordMockHandler(),\n getPostApiAccountVerifyEmailMockHandler(),\n getPostApiAccountVerifyEmailResendMockHandler(),\n getPostApiAuthKeyMockHandler(),\n getPostApiAuthLoginMockHandler(),\n getPostApiAuthLogoutMockHandler(),\n getPostApiAuthOtpDisableMockHandler(),\n getPostApiAuthOtpGenerateMockHandler(),\n getPostApiAuthOtpValidateMockHandler(),\n getPostApiAuthOtpVerifyMockHandler(),\n getPostApiAuthPingMockHandler(),\n getPostApiAuthRegisterMockHandler(),\n getGetApiOperationsMockHandler(),\n getGetApiOperationsIdMockHandler(),\n getGetApiOperationsFiltersMockHandler(),\n getGetApiUploadLimitMockHandler()\n]\n"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  import { faker } from "@faker-js/faker";
2
- import { HttpResponse, delay, http } from "msw";
2
+ import { HttpResponse, http } from "msw";
3
3
 
4
4
  //#region src/account/generated/quota.ts
5
5
  const getGetApiAccountQuotaUrl = () => {
@@ -111,7 +111,6 @@ const getGetApiAccountQuotaResponseMock = (overrideResponse = {}) => ({
111
111
  });
112
112
  const getGetApiAccountQuotaMockHandler = (overrideResponse, options) => {
113
113
  return http.get("*/api/account/quota", async (info) => {
114
- await delay(0);
115
114
  return HttpResponse.json(overrideResponse !== void 0 ? typeof overrideResponse === "function" ? await overrideResponse(info) : overrideResponse : getGetApiAccountQuotaResponseMock(), { status: 200 });
116
115
  }, options);
117
116
  };
@@ -1 +1 @@
1
- {"version":3,"file":"quota.js","names":[],"sources":["../../../../src/account/generated/quota.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 ErrorResponse,\n QuotaStatusResponse\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 getApiAccountQuotaResponse200 = {\n data: QuotaStatusResponse\n status: 200\n}\n\nexport type getApiAccountQuotaResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountQuotaResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountQuotaResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountQuotaResponseSuccess = (getApiAccountQuotaResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountQuotaResponseError = (getApiAccountQuotaResponse400 | getApiAccountQuotaResponse404 | getApiAccountQuotaResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountQuotaResponse = (getApiAccountQuotaResponseSuccess | getApiAccountQuotaResponseError)\n\nexport const getGetApiAccountQuotaUrl = () => {\n\n\n\n\n return `/api/account/quota`\n}\n\n/**\n * Retrieve the current quota status including upload and download usage, limits, and remaining allowance for the authenticated user.\n * @summary Get current quota status\n */\nexport const getApiAccountQuota = async ( options?: RequestInit): Promise<getApiAccountQuotaResponse> => {\n\n const res = await fetch(getGetApiAccountQuotaUrl(),\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: getApiAccountQuotaResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountQuotaResponse\n}\n\n\n\n\nexport const getGetApiAccountQuotaResponseMock = (overrideResponse: Partial<Extract<QuotaStatusResponse, object>> = {}): QuotaStatusResponse => ({download: {limit: faker.helpers.arrayElement([faker.number.int(), undefined]), percentage: faker.number.int(), remaining: faker.helpers.arrayElement([faker.number.int(), undefined]), reserved: faker.helpers.arrayElement([faker.number.int(), undefined]), threshold: faker.helpers.arrayElement([faker.number.int(), undefined]), used: faker.number.int(), window: faker.helpers.arrayElement([{duration: faker.helpers.arrayElement([faker.number.int(), undefined]), end_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), start_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), timezone: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})}, undefined])}, storage: {limit: faker.helpers.arrayElement([faker.number.int(), undefined]), percentage: faker.number.int(), remaining: faker.helpers.arrayElement([faker.number.int(), undefined]), reserved: faker.helpers.arrayElement([faker.number.int(), undefined]), threshold: faker.helpers.arrayElement([faker.number.int(), undefined]), used: faker.number.int(), window: faker.helpers.arrayElement([{duration: faker.helpers.arrayElement([faker.number.int(), undefined]), end_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), start_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), timezone: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})}, undefined])}, upload: {limit: faker.helpers.arrayElement([faker.number.int(), undefined]), percentage: faker.number.int(), remaining: faker.helpers.arrayElement([faker.number.int(), undefined]), reserved: faker.helpers.arrayElement([faker.number.int(), undefined]), threshold: faker.helpers.arrayElement([faker.number.int(), undefined]), used: faker.number.int(), window: faker.helpers.arrayElement([{duration: faker.helpers.arrayElement([faker.number.int(), undefined]), end_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), start_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), timezone: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})}, undefined])}, ...overrideResponse})\n\n\nexport const getGetApiAccountQuotaMockHandler = (overrideResponse?: QuotaStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<QuotaStatusResponse> | QuotaStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/quota', 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 : getGetApiAccountQuotaResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getQuotaMock = () => [\n getGetApiAccountQuotaMockHandler()\n]\n"],"mappings":"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"}
1
+ {"version":3,"file":"quota.js","names":[],"sources":["../../../../src/account/generated/quota.ts"],"sourcesContent":["/**\n * Generated by orval v8.18.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 ErrorResponse,\n QuotaStatusResponse\n} from './accountAPI.schemas.ts';\n\nimport {\n faker\n} from '@faker-js/faker';\n\nimport {\n HttpResponse,\n http\n} from 'msw';\nimport type {\n RequestHandlerOptions\n} from 'msw';\n\n\n\nexport type getApiAccountQuotaResponse200 = {\n data: QuotaStatusResponse\n status: 200\n}\n\nexport type getApiAccountQuotaResponse400 = {\n data: ErrorResponse\n status: 400\n}\n\nexport type getApiAccountQuotaResponse404 = {\n data: ErrorResponse\n status: 404\n}\n\nexport type getApiAccountQuotaResponse500 = {\n data: ErrorResponse\n status: 500\n}\n\nexport type getApiAccountQuotaResponseSuccess = (getApiAccountQuotaResponse200) & {\n headers: Headers;\n};\nexport type getApiAccountQuotaResponseError = (getApiAccountQuotaResponse400 | getApiAccountQuotaResponse404 | getApiAccountQuotaResponse500) & {\n headers: Headers;\n};\n\nexport type getApiAccountQuotaResponse = (getApiAccountQuotaResponseSuccess | getApiAccountQuotaResponseError)\n\nexport const getGetApiAccountQuotaUrl = () => {\n\n\n\n\n return `/api/account/quota`\n}\n\n/**\n * Retrieve the current quota status including upload and download usage, limits, and remaining allowance for the authenticated user.\n * @summary Get current quota status\n */\nexport const getApiAccountQuota = async ( options?: RequestInit): Promise<getApiAccountQuotaResponse> => {\n\n const res = await fetch(getGetApiAccountQuotaUrl(),\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: getApiAccountQuotaResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountQuotaResponse\n}\n\n\n\n\nexport const getGetApiAccountQuotaResponseMock = (overrideResponse: Partial<Extract<QuotaStatusResponse, object>> = {}): QuotaStatusResponse => ({download: {limit: faker.helpers.arrayElement([faker.number.int(), undefined]), percentage: faker.number.int(), remaining: faker.helpers.arrayElement([faker.number.int(), undefined]), reserved: faker.helpers.arrayElement([faker.number.int(), undefined]), threshold: faker.helpers.arrayElement([faker.number.int(), undefined]), used: faker.number.int(), window: faker.helpers.arrayElement([{duration: faker.helpers.arrayElement([faker.number.int(), undefined]), end_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), start_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), timezone: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})}, undefined])}, storage: {limit: faker.helpers.arrayElement([faker.number.int(), undefined]), percentage: faker.number.int(), remaining: faker.helpers.arrayElement([faker.number.int(), undefined]), reserved: faker.helpers.arrayElement([faker.number.int(), undefined]), threshold: faker.helpers.arrayElement([faker.number.int(), undefined]), used: faker.number.int(), window: faker.helpers.arrayElement([{duration: faker.helpers.arrayElement([faker.number.int(), undefined]), end_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), start_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), timezone: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})}, undefined])}, upload: {limit: faker.helpers.arrayElement([faker.number.int(), undefined]), percentage: faker.number.int(), remaining: faker.helpers.arrayElement([faker.number.int(), undefined]), reserved: faker.helpers.arrayElement([faker.number.int(), undefined]), threshold: faker.helpers.arrayElement([faker.number.int(), undefined]), used: faker.number.int(), window: faker.helpers.arrayElement([{duration: faker.helpers.arrayElement([faker.number.int(), undefined]), end_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), start_date: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), timezone: faker.helpers.arrayElement([faker.string.alpha({length: {min: 10, max: 20}}), undefined]), type: faker.string.alpha({length: {min: 10, max: 20}})}, undefined])}, ...overrideResponse})\n\n\nexport const getGetApiAccountQuotaMockHandler = (overrideResponse?: QuotaStatusResponse | ((info: Parameters<Parameters<typeof http.get>[1]>[0]) => Promise<QuotaStatusResponse> | QuotaStatusResponse), options?: RequestHandlerOptions) => {\n return http.get('*/api/account/quota', async (info: Parameters<Parameters<typeof http.get>[1]>[0]) => {\n\n\n return HttpResponse.json(overrideResponse !== undefined\n ? (typeof overrideResponse === \"function\" ? await overrideResponse(info) : overrideResponse)\n : getGetApiAccountQuotaResponseMock(),\n { status: 200\n })\n }, options)\n}\nexport const getQuotaMock = () => [\n getGetApiAccountQuotaMockHandler()\n]\n"],"mappings":";;;;AAuDA,MAAa,iCAAiC;AAK5C,QAAO;;;;;;AAOT,MAAa,qBAAqB,OAAQ,YAA+D;CAEvG,MAAM,MAAM,MAAM,MAAM,0BAA0B,EAClD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAGC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADwC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC9D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAM3D,MAAa,qCAAqC,mBAAkE,EAAE,MAA2B;CAAC,UAAU;EAAC,OAAO,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,YAAY,MAAM,OAAO,KAAK;EAAE,WAAW,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,WAAW,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,MAAM,MAAM,OAAO,KAAK;EAAE,QAAQ,MAAM,QAAQ,aAAa,CAAC;GAAC,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;GAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,YAAY,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,MAAM,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC;GAAC,EAAE,OAAU,CAAC;EAAC;CAAE,SAAS;EAAC,OAAO,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,YAAY,MAAM,OAAO,KAAK;EAAE,WAAW,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,WAAW,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,MAAM,MAAM,OAAO,KAAK;EAAE,QAAQ,MAAM,QAAQ,aAAa,CAAC;GAAC,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;GAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,YAAY,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,MAAM,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC;GAAC,EAAE,OAAU,CAAC;EAAC;CAAE,QAAQ;EAAC,OAAO,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,YAAY,MAAM,OAAO,KAAK;EAAE,WAAW,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,WAAW,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;EAAE,MAAM,MAAM,OAAO,KAAK;EAAE,QAAQ,MAAM,QAAQ,aAAa,CAAC;GAAC,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,KAAK,EAAE,OAAU,CAAC;GAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,YAAY,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,UAAU,MAAM,QAAQ,aAAa,CAAC,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC,EAAE,OAAU,CAAC;GAAE,MAAM,MAAM,OAAO,MAAM,EAAC,QAAQ;IAAC,KAAK;IAAI,KAAK;IAAG,EAAC,CAAC;GAAC,EAAE,OAAU,CAAC;EAAC;CAAE,GAAG;CAAiB;AAG/mF,MAAa,oCAAoC,kBAAwJ,YAAoC;AAC3O,QAAO,KAAK,IAAI,uBAAuB,OAAO,SAAwD;AAGpG,SAAO,aAAa,KAAK,qBAAqB,SAC3C,OAAO,qBAAqB,aAAa,MAAM,iBAAiB,KAAK,GAAG,mBACzE,mCAAmC,EACnC,EAAE,QAAQ,KACT,CAAC;IACH,QAAQ;;AAEb,MAAa,qBAAqB,CAChC,kCAAkC,CACnC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumeweb/portal-sdk",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "files": [
@@ -34,10 +34,10 @@
34
34
  "@lumeweb/query-builder": "0.1.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@faker-js/faker": "^9.0.0",
38
- "@vitest/coverage-v8": "^4.1.6",
37
+ "@faker-js/faker": "^10.5.0",
38
+ "@vitest/coverage-v8": "^4.1.9",
39
39
  "msw": "^2.14.6",
40
- "orval": "^8.10.0",
40
+ "orval": "^8.18.0",
41
41
  "tsdown": "0.21.10",
42
42
  "@lumeweb/tsdown-config": "0.0.0"
43
43
  },