Fix types

This commit is contained in:
Fang-Pen Lin
2025-10-31 16:36:12 -07:00
parent 9314348b31
commit 8aa7594f03
2 changed files with 3 additions and 3 deletions

View File

@@ -421,7 +421,7 @@ export const registerPkiAcmeRouter = async (server: FastifyZodProvider) => {
}
});
// POST /api/v1/pki/acme/profiles/<profile_id>/authorizations/<authz_id>/challenges/http-01
// POST /api/v1/pki/acme/profiles/<profile_id>/authorizations/<authz_id>/challenges/<challenge_id>
// Respond to Challenge (RFC 8555 Section 7.5.1)
server.route({
method: "POST",

View File

@@ -388,7 +388,7 @@ export const pkiAcmeServiceFactory = ({
// if we do, return the existing order
const order = await acmeOrderDAL.transaction(async (tx) => {
const account = await acmeAccountDAL.findByProjectIdAndAccountId(profileId, accountId)!;
const account = (await acmeAccountDAL.findByProjectIdAndAccountId(profileId, accountId))!;
const createdOrder = await acmeOrderDAL.create(
{
accountId: account.id,
@@ -585,7 +585,7 @@ export const pkiAcmeServiceFactory = ({
type: challenge.type,
url: buildUrl(profileId, `/authorizations/${authzId}/challenges/${challenge.id}`),
status: challenge.status,
token: auth.token
token: auth.token!
};
})
},