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> {
|
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)
|
if (pageNumber === null)
|
||||||
throw new Error("The parameter 'pageNumber' cannot be null.");
|
throw new Error("The parameter 'pageNumber' cannot be null.");
|
||||||
else if (pageNumber !== undefined)
|
else if (pageNumber !== undefined)
|
||||||
@@ -3938,7 +3938,7 @@ export class WhitelistClient extends AuthorizedApiBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
whitelist_SetWhitelisted(id: number): Promise<WhitelistAccount> {
|
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)
|
if (id === undefined || id === null)
|
||||||
throw new Error("The parameter 'id' must be defined.");
|
throw new Error("The parameter 'id' must be defined.");
|
||||||
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
||||||
@@ -3976,7 +3976,7 @@ export class WhitelistClient extends AuthorizedApiBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
whitelist_ProcessPrivyWebhook(webhook: PrivyWebhookDto): Promise<WhitelistAccount> {
|
whitelist_ProcessPrivyWebhook(webhook: PrivyWebhookDto): Promise<WhitelistAccount> {
|
||||||
let url_ = this.baseUrl + "/api/Whitelist/webhook";
|
let url_ = this.baseUrl + "/Whitelist/webhook";
|
||||||
url_ = url_.replace(/[?&]$/, "");
|
url_ = url_.replace(/[?&]$/, "");
|
||||||
|
|
||||||
const content_ = JSON.stringify(webhook);
|
const content_ = JSON.stringify(webhook);
|
||||||
|
|||||||
Reference in New Issue
Block a user