Method name for PRE interceptorKnownMethodsExtensionsPre and POST interceptorKnownMethodsExtensions
This is a special variable which you can use if you need to export variables from your interceptor code that do not fulfill to standard naming conventions.
Example: export const interceptorKnownMethodsExtensions = ['unusualMethodName1', 'unusualMethodName2'];
Example: (Basic)
exportconstinterceptorKnownMethodsExtensions = async ({ api }) => { // TODO: Add your code return; }
Method name for PRE
interceptorKnownMethodsExtensionsPre
and POSTinterceptorKnownMethodsExtensions
This is a special variable which you can use if you need to export variables from your interceptor code that do not fulfill to standard naming conventions. Example:
export const interceptorKnownMethodsExtensions = ['unusualMethodName1', 'unusualMethodName2'];