From e0d1aa9c63d3cbe5cd9892cbac989d03d5e782c3 Mon Sep 17 00:00:00 2001 From: Kevin Leyow Date: Wed, 7 Oct 2020 01:38:14 -0500 Subject: [PATCH] chore: add generate challenge endpoints (#790) * chore: add generate challenge endpoints * chore: fix description --- seeds/endpointType.js | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/seeds/endpointType.js b/seeds/endpointType.js index 7d87c57d3..8e8676502 100644 --- a/seeds/endpointType.js +++ b/seeds/endpointType.js @@ -152,7 +152,7 @@ const endpointTypes = [ }, { name: 'TP_CB_URL_TRANSACTION_REQUEST_PUT_ERROR', - description: 'Participant callback URL to which PUT /thirdpartyRequests/transactions/{ID}/error can be sent error information can be sent' + description: 'Participant callback URL to which PUT /thirdpartyRequests/transactions/{ID}/error error information can be sent' }, { name: 'TP_CB_URL_TRANSACTION_REQUEST_PATCH', @@ -180,7 +180,7 @@ const endpointTypes = [ }, { name: 'TP_CB_URL_CONSENT_REQUEST_PUT_ERROR', - description: 'Participant callback URL where PUT /consentRequests/{ID}/error can be sent error information can be sent' + description: 'Participant callback URL where PUT /consentRequests/{ID}/error error information can be sent' }, { name: 'TP_CB_URL_CREATE_CREDENTIAL_POST', @@ -192,15 +192,23 @@ const endpointTypes = [ }, { name: 'TP_CB_URL_CONSENT_GET', - description: 'Participant callback URL where GET /consent/{ID} can be sent' + description: 'Participant callback URL where GET /consents/{ID} can be sent' }, { name: 'TP_CB_URL_CONSENT_PUT', - description: 'Participant callback URL where PUT /consent/{ID} can be sent' + description: 'Participant callback URL where PUT /consents/{ID} can be sent' }, { name: 'TP_CB_URL_CONSENT_PUT_ERROR', - description: 'Participant callback URL where PUT consent/{ID}/error can be sent error information can be sent' + description: 'Participant callback URL where PUT /consents/{ID}/error error information can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_GENERATE_CHALLENGE_POST', + description: 'Participant callback URL where POST /consents/{ID}/generateChallenge can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_GENERATE_CHALLENGE_PUT_ERROR', + description: 'Participant callback URL where PUT /consents/{ID}/generateChallenge/error error information can be sent' } ]