@lumeweb/portal-sdk 0.1.0 → 0.1.1

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.
Files changed (49) hide show
  1. package/dist/esm/account/generated/accountAPI.schemas.d.ts +427 -20
  2. package/dist/esm/account/generated/billing.d.ts +688 -0
  3. package/dist/esm/account/generated/billing.js +444 -0
  4. package/dist/esm/account/generated/billing.js.map +1 -0
  5. package/dist/esm/account/generated/default.d.ts +118 -97
  6. package/dist/esm/account/generated/default.js +181 -41
  7. package/dist/esm/account/generated/default.js.map +1 -1
  8. package/dist/esm/account/generated/index.d.ts +3 -3
  9. package/dist/esm/account/generated/index.js +2 -2
  10. package/dist/esm/account/generated/quota.d.ts +35 -0
  11. package/dist/esm/account/generated/quota.js +28 -0
  12. package/dist/esm/account/generated/quota.js.map +1 -0
  13. package/dist/esm/account.d.ts +0 -1
  14. package/dist/esm/account.js.map +1 -1
  15. package/dist/esm/http-utils.d.ts +0 -1
  16. package/dist/esm/http-utils.js.map +1 -1
  17. package/dist/esm/index.d.ts +5 -3
  18. package/dist/esm/index.js +4 -2
  19. package/dist/esm/openapi.d.ts +3 -3
  20. package/dist/esm/openapi.js +2 -2
  21. package/dist/esm/query-utils.d.ts +0 -1
  22. package/dist/esm/types.js.map +1 -1
  23. package/package.json +5 -5
  24. package/dist/cjs/account/generated/accountAPI.schemas.cjs +0 -0
  25. package/dist/cjs/account/generated/accountAPI.schemas.d.cts +0 -239
  26. package/dist/cjs/account/generated/default.cjs +0 -676
  27. package/dist/cjs/account/generated/default.cjs.map +0 -1
  28. package/dist/cjs/account/generated/default.d.cts +0 -923
  29. package/dist/cjs/account/generated/index.cjs +0 -58
  30. package/dist/cjs/account/generated/index.d.cts +0 -3
  31. package/dist/cjs/account.cjs +0 -348
  32. package/dist/cjs/account.cjs.map +0 -1
  33. package/dist/cjs/account.d.cts +0 -200
  34. package/dist/cjs/http-utils.cjs +0 -87
  35. package/dist/cjs/http-utils.cjs.map +0 -1
  36. package/dist/cjs/http-utils.d.cts +0 -54
  37. package/dist/cjs/index.cjs +0 -75
  38. package/dist/cjs/index.d.cts +0 -8
  39. package/dist/cjs/openapi.cjs +0 -58
  40. package/dist/cjs/openapi.d.cts +0 -3
  41. package/dist/cjs/query-utils.cjs +0 -44
  42. package/dist/cjs/query-utils.cjs.map +0 -1
  43. package/dist/cjs/query-utils.d.cts +0 -65
  44. package/dist/cjs/sdk.cjs +0 -20
  45. package/dist/cjs/sdk.cjs.map +0 -1
  46. package/dist/cjs/sdk.d.cts +0 -12
  47. package/dist/cjs/types.cjs +0 -116
  48. package/dist/cjs/types.cjs.map +0 -1
  49. package/dist/cjs/types.d.cts +0 -58
@@ -1 +0,0 @@
1
- {"version":3,"file":"default.cjs","names":[],"sources":["../../../../src/account/generated/default.ts"],"sourcesContent":["/**\n * Generated by orval v7.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: develop\n */\nimport type {\n APIKeyCreateRequest,\n APIKeyResponseResponse,\n AccountInfoResponse,\n AccountPermissionsResponse,\n CreateAPIKeyResponse,\n Error,\n ErrorResponse,\n GetApiAccountKeysParams,\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 RegisterRequest,\n ResendVerifyEmailRequest,\n UpdateEmailRequest,\n UpdatePasswordRequest,\n UpdateProfileRequest,\n UploadLimitResponse,\n Uuid,\n VerifyEmailRequest\n} from './accountAPI.schemas';\n\n\n\n/**\n * Initiates the process to delete the authenticated user's account.\n * @summary Request account deletion\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/api/account`\n}\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 const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n \n const data: deleteApiAccountResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as deleteApiAccountResponse\n}\n\n\n/**\n * Retrieves information about the authenticated user's account.\n * @summary Get account information\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/api/account`\n}\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 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\n/**\n * Updates the authenticated user's profile information. Email cannot be updated through this endpoint.\n * @summary Update profile information\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/api/account`\n}\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(\n updateProfileRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as patchApiAccountResponse\n}\n\n\n/**\n * Retrieves the authenticated user's profile picture\n * @summary Get Avatar\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/api/account/avatar`\n}\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 const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n \n const data: getApiAccountAvatarResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as getApiAccountAvatarResponse\n}\n\n\n/**\n * Uploads a profile picture/avatar\n * @summary Upload Avatar\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/api/account/avatar`\n}\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: \n formData,\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\n/**\n * Retrieves a list of API keys for the authenticated user.\n * @summary List API Keys\n */\nexport type getApiAccountKeysResponse200 = {\n data: APIKeyResponseResponse\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/api/account/keys?${stringifiedParams}` : `/api/api/account/keys`\n}\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 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\n/**\n * Creates a new API key for the authenticated user.\n * @summary Create API Key\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/api/account/keys`\n}\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(\n aPIKeyCreateRequest,)\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\n/**\n * Deletes a specific API key for the authenticated user.\n * @summary Delete API Key\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: Uuid,) => {\n\n\n \n\n return `/api/api/account/keys/${keyID}`\n}\n\nexport const deleteApiAccountKeysKeyID = async (keyID: Uuid, options?: RequestInit): Promise<deleteApiAccountKeysKeyIDResponse> => {\n \n const res = await fetch(getDeleteApiAccountKeysKeyIDUrl(keyID),\n { \n ...options,\n method: 'DELETE'\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) : {}\n return { data, status: res.status, headers: res.headers } as deleteApiAccountKeysKeyIDResponse\n}\n\n\n/**\n * Resets the user's password using a token received via email.\n * @summary Confirm password reset\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/api/account/password-reset/confirm`\n}\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(\n passwordResetVerifyRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountPasswordResetConfirmResponse\n}\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 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/api/account/password-reset/request`\n}\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(\n passwordResetRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountPasswordResetRequestResponse\n}\n\n\n/**\n * Retrieves the access control policies and model for the authenticated user.\n * @summary Get account permissions\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/api/account/permissions`\n}\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 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\n/**\n * Updates the authenticated user's email address.\n * @summary Update email address\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/api/account/update-email`\n}\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(\n updateEmailRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountUpdateEmailResponse\n}\n\n\n/**\n * Updates the authenticated user's password.\n * @summary Update password\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/api/account/update-password`\n}\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(\n updatePasswordRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountUpdatePasswordResponse\n}\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 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/api/account/verify-email?${stringifiedParams}` : `/api/api/account/verify-email`\n}\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(\n verifyEmailRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountVerifyEmailResponse\n}\n\n\n/**\n * Resends the email verification link to the user's email address.\n * @summary Resend email verification\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/api/account/verify-email/resend`\n}\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(\n resendVerifyEmailRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAccountVerifyEmailResendResponse\n}\n\n\n/**\n * Exchanges an API key for a JWT.\n * @summary Authenticate with API Key\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/api/auth/key`\n}\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 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\n/**\n * Authenticates a user using email and password.\n * @summary Login with email and password\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/api/auth/login`\n}\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(\n loginRequest,)\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\n/**\n * Logs out the current user by clearing the authentication cookie.\n * @summary Logout\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/api/auth/logout`\n}\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 const body = [204, 205, 304].includes(res.status) ? null : await res.text();\n \n const data: postApiAuthLogoutResponse['data'] = body ? JSON.parse(body) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthLogoutResponse\n}\n\n\n/**\n * Disables 2FA for the authenticated user.\n * @summary Disable OTP\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/api/auth/otp/disable`\n}\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(\n oTPDisableRequest,)\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\n/**\n * Generates a new OTP secret for the authenticated user.\n * @summary Generate OTP secret\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/api/auth/otp/generate`\n}\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 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\n/**\n * Validates an OTP code to complete 2FA login.\n * @summary Validate OTP code\n */\nexport type postApiAuthOtpValidateResponse200 = {\n data: ErrorResponse\n status: 200\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 \nexport type postApiAuthOtpValidateResponseSuccess = (postApiAuthOtpValidateResponse200) & {\n headers: Headers;\n};\nexport type postApiAuthOtpValidateResponseError = (postApiAuthOtpValidateResponse302 | postApiAuthOtpValidateResponse400 | postApiAuthOtpValidateResponse401 | postApiAuthOtpValidateResponse403 | postApiAuthOtpValidateResponse404 | postApiAuthOtpValidateResponse500) & {\n headers: Headers;\n};\n\nexport type postApiAuthOtpValidateResponse = (postApiAuthOtpValidateResponseSuccess | postApiAuthOtpValidateResponseError)\n\nexport const getPostApiAuthOtpValidateUrl = () => {\n\n\n \n\n return `/api/api/auth/otp/validate`\n}\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(\n oTPValidateRequest,)\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\n/**\n * Verifies an OTP code and enables 2FA for the authenticated user.\n * @summary Verify and enable OTP\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/api/auth/otp/verify`\n}\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(\n oTPVerifyRequest,)\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\n/**\n * Checks if the user is authenticated and returns a pong response.\n * @summary Ping authenticated endpoint\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/api/auth/ping`\n}\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 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\n/**\n * Creates a new user account with email and password.\n * @summary Register a new account\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/api/auth/register`\n}\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(\n registerRequest,)\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) : {}\n return { data, status: res.status, headers: res.headers } as postApiAuthRegisterResponse\n}\n\n\n/**\n * Retrieve a list of operations, with filtering, searching, and pagination support.\n * @summary List Operations\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/api/operations?${stringifiedParams}` : `/api/api/operations`\n}\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 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\n/**\n * Retrieve detailed information for a specific operation by its ID.\n * @summary Get Operation Details\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/api/operations/${id}`\n}\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 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\n/**\n * Retrieves distinct filter values for operations (statuses, operations, protocols)\n * @summary Get Operation Filters\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/api/operations/filters`\n}\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 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\n/**\n * Retrieves the maximum allowed upload size.\n * @summary Get upload limit\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/api/upload-limit`\n}\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 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"],"mappings":";;AA4EA,MAAa,+BAA+B;AAK1C,QAAO;;AAGT,MAAa,mBAAmB,OAAQ,YAA6D;CAEnG,MAAM,MAAM,MAAM,MAAM,wBAAwB,EAChD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADsC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC5D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,4BAA4B;AAKvC,QAAO;;AAGT,MAAa,gBAAgB,OAAQ,YAA0D;CAE7F,MAAM,MAAM,MAAM,MAAM,qBAAqB,EAC7C;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADmC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACzD,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,8BAA8B;AAKzC,QAAO;;AAGT,MAAa,kBAAkB,OAAO,sBAA4C,YAA4D;CAE5I,MAAM,MAAM,MAAM,MAAM,uBAAuB,EAC/C;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,qBAAsB;EACzB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADqC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC3D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,kCAAkC;AAK7C,QAAO;;AAGT,MAAa,sBAAsB,OAAQ,YAAgE;CAEzG,MAAM,MAAM,MAAM,MAAM,2BAA2B,EACnD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADyC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC/D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA0C3D,MAAa,mCAAmC;AAK9C,QAAO;;AAGT,MAAa,uBAAuB,OAAO,0BAAoD,YAAiE;CAC5J,MAAM,WAAW,IAAI,UAAU;AACnC,UAAS,OAAO,QAAQ,yBAAyB,KAAK;CAEpD,MAAM,MAAM,MAAM,MAAM,4BAA4B,EACpD;EACE,GAAG;EACH,QAAQ;EAER,MACE;EACH,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD0C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAChE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,2BAA2B,WAAsC;CAC5E,MAAM,mBAAmB,IAAI,iBAAiB;AAE9C,QAAO,QAAQ,UAAU,EAAE,CAAC,CAAC,SAAS,CAAC,KAAK,WAAW;AAErD,MAAI,UAAU,OACZ,kBAAiB,OAAO,KAAK,UAAU,OAAO,SAAS,MAAM,UAAU,CAAC;GAE1E;CAEF,MAAM,oBAAoB,iBAAiB,UAAU;AAErD,QAAO,kBAAkB,SAAS,IAAI,yBAAyB,sBAAsB;;AAGvF,MAAa,oBAAoB,OAAO,QAAkC,YAA8D;CAEtI,MAAM,MAAM,MAAM,MAAM,wBAAwB,OAAO,EACvD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADuC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC7D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,iCAAiC;AAK5C,QAAO;;AAGT,MAAa,qBAAqB,OAAO,qBAA0C,YAA+D;CAEhJ,MAAM,MAAM,MAAM,MAAM,0BAA0B,EAClD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,oBAAqB;EACxB,CACF;CAEC,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;;AAqC3D,MAAa,mCAAmC,UAAiB;AAK/D,QAAO,yBAAyB;;AAGlC,MAAa,4BAA4B,OAAO,OAAa,YAAsE;CAEjI,MAAM,MAAM,MAAM,MAAM,gCAAgC,MAAM,EAC9D;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD+C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACrE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,iDAAiD;AAK5D,QAAO;;AAGT,MAAa,qCAAqC,OAAO,4BAAwD,YAA+E;CAE9L,MAAM,MAAM,MAAM,MAAM,0CAA0C,EAClE;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,2BAA4B;EAC/B,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADwD,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC9E,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,iDAAiD;AAK5D,QAAO;;AAGT,MAAa,qCAAqC,OAAO,sBAA4C,YAA+E;CAElL,MAAM,MAAM,MAAM,MAAM,0CAA0C,EAClE;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,qBAAsB;EACzB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADwD,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC9E,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,uCAAuC;AAKlD,QAAO;;AAGT,MAAa,2BAA2B,OAAQ,YAAqE;CAEnH,MAAM,MAAM,MAAM,MAAM,gCAAgC,EACxD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD8C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACpE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,wCAAwC;AAKnD,QAAO;;AAGT,MAAa,4BAA4B,OAAO,oBAAwC,YAAsE;CAE5J,MAAM,MAAM,MAAM,MAAM,iCAAiC,EACzD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,mBAAoB;EACvB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD+C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACrE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,2CAA2C;AAKtD,QAAO;;AAGT,MAAa,+BAA+B,OAAO,uBAA8C,YAAyE;CAExK,MAAM,MAAM,MAAM,MAAM,oCAAoC,EAC5D;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,sBAAuB;EAC1B,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADkD,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACxE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,mCAAmC,WAA8C;CAC5F,MAAM,mBAAmB,IAAI,iBAAiB;AAE9C,QAAO,QAAQ,UAAU,EAAE,CAAC,CAAC,SAAS,CAAC,KAAK,WAAW;AAErD,MAAI,UAAU,OACZ,kBAAiB,OAAO,KAAK,UAAU,OAAO,SAAS,MAAM,UAAU,CAAC;GAE1E;CAEF,MAAM,oBAAoB,iBAAiB,UAAU;AAErD,QAAO,kBAAkB,SAAS,IAAI,iCAAiC,sBAAsB;;AAG/F,MAAa,4BAA4B,OAAO,oBAC5C,QAA0C,YAAsE;CAElH,MAAM,MAAM,MAAM,MAAM,gCAAgC,OAAO,EAC/D;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,mBAAoB;EACvB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD+C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACrE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,8CAA8C;AAKzD,QAAO;;AAGT,MAAa,kCAAkC,OAAO,0BAAoD,YAA4E;CAEpL,MAAM,MAAM,MAAM,MAAM,uCAAuC,EAC/D;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,yBAA0B;EAC7B,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADqD,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC3E,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,6BAA6B;AAKxC,QAAO;;AAGT,MAAa,iBAAiB,OAAQ,YAA2D;CAE/F,MAAM,MAAM,MAAM,MAAM,sBAAsB,EAC9C;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADoC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC1D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAoD3D,MAAa,+BAA+B;AAK1C,QAAO;;AAGT,MAAa,mBAAmB,OAAO,cAA4B,YAA6D;CAE9H,MAAM,MAAM,MAAM,MAAM,wBAAwB,EAChD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,aAAc;EACjB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADsC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC5D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,gCAAgC;AAK3C,QAAO;;AAGT,MAAa,oBAAoB,OAAQ,YAA8D;CAErG,MAAM,MAAM,MAAM,MAAM,yBAAyB,EACjD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADuC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC7D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA0C3D,MAAa,oCAAoC;AAK/C,QAAO;;AAGT,MAAa,wBAAwB,OAAO,mBAAsC,YAAkE;CAElJ,MAAM,MAAM,MAAM,MAAM,6BAA6B,EACrD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,kBAAmB;EACtB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD2C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACjE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,qCAAqC;AAKhD,QAAO;;AAGT,MAAa,yBAAyB,OAAQ,YAAmE;CAE/G,MAAM,MAAM,MAAM,MAAM,8BAA8B,EACtD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD4C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAClE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAoD3D,MAAa,qCAAqC;AAKhD,QAAO;;AAGT,MAAa,yBAAyB,OAAO,oBAAwC,YAAmE;CAEtJ,MAAM,MAAM,MAAM,MAAM,8BAA8B,EACtD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,mBAAoB;EACvB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD4C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAClE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA0C3D,MAAa,mCAAmC;AAK9C,QAAO;;AAGT,MAAa,uBAAuB,OAAO,kBAAoC,YAAiE;CAE9I,MAAM,MAAM,MAAM,MAAM,4BAA4B,EACpD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,iBAAkB;EACrB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD0C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAChE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AA+C3D,MAAa,8BAA8B;AAKzC,QAAO;;AAGT,MAAa,kBAAkB,OAAQ,YAA4D;CAEjG,MAAM,MAAM,MAAM,MAAM,uBAAuB,EAC/C;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADqC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC3D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAoD3D,MAAa,kCAAkC;AAK7C,QAAO;;AAGT,MAAa,sBAAsB,OAAO,iBAAkC,YAAgE;CAE1I,MAAM,MAAM,MAAM,MAAM,2BAA2B,EACnD;EACE,GAAG;EACH,QAAQ;EACR,SAAS;GAAE,gBAAgB;GAAoB,GAAG,SAAS;GAAS;EACpE,MAAM,KAAK,UACT,gBAAiB;EACpB,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADyC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC/D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,0BAA0B,WAAqC;CAC1E,MAAM,mBAAmB,IAAI,iBAAiB;AAE9C,QAAO,QAAQ,UAAU,EAAE,CAAC,CAAC,SAAS,CAAC,KAAK,WAAW;AAErD,MAAI,UAAU,OACZ,kBAAiB,OAAO,KAAK,UAAU,OAAO,SAAS,MAAM,UAAU,CAAC;GAE1E;CAEF,MAAM,oBAAoB,iBAAiB,UAAU;AAErD,QAAO,kBAAkB,SAAS,IAAI,uBAAuB,sBAAsB;;AAGrF,MAAa,mBAAmB,OAAO,QAAiC,YAA6D;CAEnI,MAAM,MAAM,MAAM,MAAM,uBAAuB,OAAO,EACtD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADsC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC5D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,4BAA4B,OAAgB;AAKvD,QAAO,uBAAuB;;AAGhC,MAAa,qBAAqB,OAAO,IAAY,YAA+D;CAElH,MAAM,MAAM,MAAM,MAAM,yBAAyB,GAAG,EACpD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,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;;AAqC3D,MAAa,sCAAsC;AAKjD,QAAO;;AAGT,MAAa,0BAA0B,OAAQ,YAAoE;CAEjH,MAAM,MAAM,MAAM,MAAM,+BAA+B,EACvD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MAD6C,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EACnE,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS;;AAqC3D,MAAa,gCAAgC;AAK3C,QAAO;;AAGT,MAAa,oBAAoB,OAAQ,YAA8D;CAErG,MAAM,MAAM,MAAM,MAAM,yBAAyB,EACjD;EACE,GAAG;EACH,QAAQ;EAGT,CACF;CAEC,MAAM,OAAO;EAAC;EAAK;EAAK;EAAI,CAAC,SAAS,IAAI,OAAO,GAAG,OAAO,MAAM,IAAI,MAAM;AAG3E,QAAO;EAAE,MADuC,OAAO,KAAK,MAAM,KAAK,GAAG,EAAE;EAC7D,QAAQ,IAAI;EAAQ,SAAS,IAAI;EAAS"}