Update prod managing url api
This commit is contained in:
@@ -3891,7 +3891,7 @@ export class WhitelistClient extends AuthorizedApiBase {
|
||||
}
|
||||
|
||||
whitelist_GetWhitelistAccounts(pageNumber: number | undefined, pageSize: number | undefined, searchExternalEthereumAccount: string | null | undefined, searchTwitterAccount: string | null | undefined): Promise<PaginatedWhitelistAccountsResponse> {
|
||||
let url_ = this.baseUrl + "/api/Whitelist?";
|
||||
let url_ = this.baseUrl + "/Whitelist?";
|
||||
if (pageNumber === null)
|
||||
throw new Error("The parameter 'pageNumber' cannot be null.");
|
||||
else if (pageNumber !== undefined)
|
||||
@@ -3938,7 +3938,7 @@ export class WhitelistClient extends AuthorizedApiBase {
|
||||
}
|
||||
|
||||
whitelist_SetWhitelisted(id: number): Promise<WhitelistAccount> {
|
||||
let url_ = this.baseUrl + "/api/Whitelist/{id}/whitelist";
|
||||
let url_ = this.baseUrl + "/Whitelist/{id}/whitelist";
|
||||
if (id === undefined || id === null)
|
||||
throw new Error("The parameter 'id' must be defined.");
|
||||
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
||||
@@ -3976,7 +3976,7 @@ export class WhitelistClient extends AuthorizedApiBase {
|
||||
}
|
||||
|
||||
whitelist_ProcessPrivyWebhook(webhook: PrivyWebhookDto): Promise<WhitelistAccount> {
|
||||
let url_ = this.baseUrl + "/api/Whitelist/webhook";
|
||||
let url_ = this.baseUrl + "/Whitelist/webhook";
|
||||
url_ = url_.replace(/[?&]$/, "");
|
||||
|
||||
const content_ = JSON.stringify(webhook);
|
||||
|
||||
Reference in New Issue
Block a user