From 2046288d7070711a5bb7eb600bf0f1e87c0e8768 Mon Sep 17 00:00:00 2001 From: Lewis Daly Date: Fri, 17 Sep 2021 16:37:43 +0930 Subject: [PATCH] fix: change endpoint types to line up with enums (#863) --- seeds/endpointType.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seeds/endpointType.js b/seeds/endpointType.js index 7919af632..6ac12d99c 100644 --- a/seeds/endpointType.js +++ b/seeds/endpointType.js @@ -175,15 +175,15 @@ const endpointTypes = [ description: 'Participant callback URL where PUT /thirdpartyRequests/transactions/{ID}/authorizations/error error information can be sent' }, { - name: 'TP_CB_URL_VERIFICATION_REQUEST_POST', + name: 'TP_CB_URL_TRANSACTION_REQUEST_VERIFY_POST', description: 'Participant callback URL where POST /thirdpartyRequests/verifications can be sent' }, { - name: 'TP_CB_URL_VERIFICATION_REQUEST_PUT', + name: 'TP_CB_URL_TRANSACTION_REQUEST_VERIFY_PUT', description: 'Participant callback URL where PUT /thirdpartyRequests/verifications/{ID} can be sent' }, { - name: 'TP_CB_URL_VERIFICATION_REQUEST_PUT_ERROR', + name: 'TP_CB_URL_TRANSACTION_REQUEST_VERIFY_PUT_ERROR', description: 'Participant callback URL where PUT /thirdpartyRequests/verifications/{ID}/error can be sent' }, {