Added API key info to inverse client

Other APIs have duplicate implementation so adding just to inverse client
This commit is contained in:
Pranay Pratyush
2021-12-29 18:24:43 +05:30
committed by GitHub
parent d42cf8d1e0
commit fa7d7e0cec

View File

@@ -386,4 +386,10 @@ export class InverseClient extends SharedEndpoints {
}): GenericAPIResponse { }): GenericAPIResponse {
return this.requestWrapper.get('v2/private/account/lcp', params); return this.requestWrapper.get('v2/private/account/lcp', params);
} }
//API Key Info
getAPIKeyInfo(): GenericAPIResponse {
return this.requestWrapper.get('v2/private/account/api-key');
}
}; };