feat(): Added all missing examples

This commit is contained in:
Jerko J
2024-06-20 13:51:58 +02:00
parent 6ecc0bd34d
commit 6b6b6f5e13
28 changed files with 548 additions and 0 deletions

View File

@@ -1460,6 +1460,17 @@ export class RestClientV5 extends BaseRestClient {
return this.getPrivate('/v5/user/query-api');
}
getUIDWalletType(params: { memberIds: string }): Promise<
APIResponseV3WithTime<{
accounts: {
uid: string;
accountType: string[];
}[];
}>
> {
return this.getPrivate('/v5/user/query-api', params);
}
/**
* Modify the settings of a master API key. Use the API key pending to be modified to call the endpoint. Use master user's API key only.
*