repo_name
string
dataset
string
owner
string
lang
string
func_name
string
code
string
docstring
string
url
string
sha
string
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.deleteUserWithHttpInfo
public deleteUserWithHttpInfo(username: string, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.deleteUserWithHttpInfo(username, _options); return result.toPromise(); }
/** * Delete user by username. * Delete User * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L698-L701
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.deleteUser
public deleteUser(username: string, _options?: Configuration): Promise<boolean> { const result = this.api.deleteUser(username, _options); return result.toPromise(); }
/** * Delete user by username. * Delete User * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L708-L711
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.disableTokenForUserWithHttpInfo
public disableTokenForUserWithHttpInfo(token: string, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.disableTokenForUserWithHttpInfo(token, _options); return result.toPromise(); }
/** * Disable the specified API Token. * Disable API Token * @param token API Token */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L718-L721
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.disableTokenForUser
public disableTokenForUser(token: string, _options?: Configuration): Promise<boolean> { const result = this.api.disableTokenForUser(token, _options); return result.toPromise(); }
/** * Disable the specified API Token. * Disable API Token * @param token API Token */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L728-L731
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.getDetailsOfUserWithHttpInfo
public getDetailsOfUserWithHttpInfo(username: string, _options?: Configuration): Promise<HttpInfo<UserDetailsDTO>> { const result = this.api.getDetailsOfUserWithHttpInfo(username, _options); return result.toPromise(); }
/** * Return detailed user information. * Get User Details * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L738-L741
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.getDetailsOfUser
public getDetailsOfUser(username: string, _options?: Configuration): Promise<UserDetailsDTO> { const result = this.api.getDetailsOfUser(username, _options); return result.toPromise(); }
/** * Return detailed user information. * Get User Details * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L748-L751
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.getUserByTokenWithHttpInfo
public getUserByTokenWithHttpInfo(token: string, _options?: Configuration): Promise<HttpInfo<UserDetailsDTO>> { const result = this.api.getUserByTokenWithHttpInfo(token, _options); return result.toPromise(); }
/** * Get the detailed user information corresponding to the API Token. * Get User by API Token * @param token API Token */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L758-L761
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.getUserByToken
public getUserByToken(token: string, _options?: Configuration): Promise<UserDetailsDTO> { const result = this.api.getUserByToken(token, _options); return result.toPromise(); }
/** * Get the detailed user information corresponding to the API Token. * Get User by API Token * @param token API Token */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L768-L771
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listAuthoritiesOfUserWithHttpInfo
public listAuthoritiesOfUserWithHttpInfo(username: string, _options?: Configuration): Promise<HttpInfo<Set<string>>> { const result = this.api.listAuthoritiesOfUserWithHttpInfo(username, _options); return result.toPromise(); }
/** * List the user\'s permissions. * List User Permissions * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L778-L781
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listAuthoritiesOfUser
public listAuthoritiesOfUser(username: string, _options?: Configuration): Promise<Set<string>> { const result = this.api.listAuthoritiesOfUser(username, _options); return result.toPromise(); }
/** * List the user\'s permissions. * List User Permissions * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L788-L791
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listTokensOfUserWithHttpInfo
public listTokensOfUserWithHttpInfo(username: string, _options?: Configuration): Promise<HttpInfo<Array<ApiTokenInfoDTO>>> { const result = this.api.listTokensOfUserWithHttpInfo(username, _options); return result.toPromise(); }
/** * Get the list of API Tokens of the user. * Get API Token of User * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L798-L801
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listTokensOfUser
public listTokensOfUser(username: string, _options?: Configuration): Promise<Array<ApiTokenInfoDTO>> { const result = this.api.listTokensOfUser(username, _options); return result.toPromise(); }
/** * Get the list of API Tokens of the user. * Get API Token of User * @param username Username */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L808-L811
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listUsersWithHttpInfo
public listUsersWithHttpInfo(pageSize: number, pageNum: number, _options?: Configuration): Promise<HttpInfo<Array<UserBasicInfoDTO>>> { const result = this.api.listUsersWithHttpInfo(pageSize, pageNum, _options); return result.toPromise(); }
/** * Return user information by page, return the pageNum page, up to pageSize user information. * List User Information * @param pageSize Maximum quantity * @param pageNum Current page number */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L819-L822
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listUsers
public listUsers(pageSize: number, pageNum: number, _options?: Configuration): Promise<Array<UserBasicInfoDTO>> { const result = this.api.listUsers(pageSize, pageNum, _options); return result.toPromise(); }
/** * Return user information by page, return the pageNum page, up to pageSize user information. * List User Information * @param pageSize Maximum quantity * @param pageNum Current page number */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L830-L833
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listUsers1WithHttpInfo
public listUsers1WithHttpInfo(_options?: Configuration): Promise<HttpInfo<Array<UserBasicInfoDTO>>> { const result = this.api.listUsers1WithHttpInfo(_options); return result.toPromise(); }
/** * Return user information by page, return the pageNum page, up to pageSize user information. * List User Information */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L839-L842
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listUsers1
public listUsers1(_options?: Configuration): Promise<Array<UserBasicInfoDTO>> { const result = this.api.listUsers1(_options); return result.toPromise(); }
/** * Return user information by page, return the pageNum page, up to pageSize user information. * List User Information */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L848-L851
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listUsers2WithHttpInfo
public listUsers2WithHttpInfo(pageSize: number, _options?: Configuration): Promise<HttpInfo<Array<UserBasicInfoDTO>>> { const result = this.api.listUsers2WithHttpInfo(pageSize, _options); return result.toPromise(); }
/** * Return user information by page, return the pageNum page, up to pageSize user information. * List User Information * @param pageSize Maximum quantity */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L858-L861
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.listUsers2
public listUsers2(pageSize: number, _options?: Configuration): Promise<Array<UserBasicInfoDTO>> { const result = this.api.listUsers2(pageSize, _options); return result.toPromise(); }
/** * Return user information by page, return the pageNum page, up to pageSize user information. * List User Information * @param pageSize Maximum quantity */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L868-L871
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.updateAuthoritiesOfUserWithHttpInfo
public updateAuthoritiesOfUserWithHttpInfo(username: string, requestBody: Set<string>, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.updateAuthoritiesOfUserWithHttpInfo(username, requestBody, _options); return result.toPromise(); }
/** * Update the user\'s permission list. * Update User Permissions * @param username Username * @param requestBody Permission list */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L879-L882
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.updateAuthoritiesOfUser
public updateAuthoritiesOfUser(username: string, requestBody: Set<string>, _options?: Configuration): Promise<boolean> { const result = this.api.updateAuthoritiesOfUser(username, requestBody, _options); return result.toPromise(); }
/** * Update the user\'s permission list. * Update User Permissions * @param username Username * @param requestBody Permission list */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L890-L893
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.updateUserWithHttpInfo
public updateUserWithHttpInfo(userFullDetailsDTO: UserFullDetailsDTO, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.updateUserWithHttpInfo(userFullDetailsDTO, _options); return result.toPromise(); }
/** * Update user information. * Update User * @param userFullDetailsDTO User information */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L900-L903
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAccountManagerForAdminApi.updateUser
public updateUser(userFullDetailsDTO: UserFullDetailsDTO, _options?: Configuration): Promise<boolean> { const result = this.api.updateUser(userFullDetailsDTO, _options); return result.toPromise(); }
/** * Update user information. * Update User * @param userFullDetailsDTO User information */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L910-L913
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.batchSearchAgentDetailsWithHttpInfo
public batchSearchAgentDetailsWithHttpInfo(agentQueryDTO: Array<AgentQueryDTO>, _options?: Configuration): Promise<HttpInfo<Array<Array<AgentDetailsDTO>>>> { const result = this.api.batchSearchAgentDetailsWithHttpInfo(agentQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/agent/details/search. * Batch Search Agent Details * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L939-L942
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.batchSearchAgentDetails
public batchSearchAgentDetails(agentQueryDTO: Array<AgentQueryDTO>, _options?: Configuration): Promise<Array<Array<AgentDetailsDTO>>> { const result = this.api.batchSearchAgentDetails(agentQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/agent/details/search. * Batch Search Agent Details * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L949-L952
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.batchSearchAgentSummaryWithHttpInfo
public batchSearchAgentSummaryWithHttpInfo(agentQueryDTO: Array<AgentQueryDTO>, _options?: Configuration): Promise<HttpInfo<Array<Array<AgentSummaryDTO>>>> { const result = this.api.batchSearchAgentSummaryWithHttpInfo(agentQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/agent/search. * Batch Search Agent Summaries * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L959-L962
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.batchSearchAgentSummary
public batchSearchAgentSummary(agentQueryDTO: Array<AgentQueryDTO>, _options?: Configuration): Promise<Array<Array<AgentSummaryDTO>>> { const result = this.api.batchSearchAgentSummary(agentQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/agent/search. * Batch Search Agent Summaries * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L969-L972
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.cloneAgentWithHttpInfo
public cloneAgentWithHttpInfo(agentId: number, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.cloneAgentWithHttpInfo(agentId, _options); return result.toPromise(); }
/** * Enter the agentId, generate a new record, the content is basically the same as the original agent, but the following fields are different: - Version number is 1 - Visibility is private - The parent agent is the source agentId - The creation time is the current moment. - All statistical indicators are zeroed. Return the new agentId. * Clone Agent * @param agentId The referenced agentId */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L979-L982
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.cloneAgent
public cloneAgent(agentId: number, _options?: Configuration): Promise<number> { const result = this.api.cloneAgent(agentId, _options); return result.toPromise(); }
/** * Enter the agentId, generate a new record, the content is basically the same as the original agent, but the following fields are different: - Version number is 1 - Visibility is private - The parent agent is the source agentId - The creation time is the current moment. - All statistical indicators are zeroed. Return the new agentId. * Clone Agent * @param agentId The referenced agentId */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L989-L992
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.cloneAgentsWithHttpInfo
public cloneAgentsWithHttpInfo(requestBody: Array<number>, _options?: Configuration): Promise<HttpInfo<Array<number>>> { const result = this.api.cloneAgentsWithHttpInfo(requestBody, _options); return result.toPromise(); }
/** * Batch clone multiple agents. Ensure transactionality, return the agentId list after success. * Batch Clone Agents * @param requestBody List of agent information to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L999-L1002
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.cloneAgents
public cloneAgents(requestBody: Array<number>, _options?: Configuration): Promise<Array<number>> { const result = this.api.cloneAgents(requestBody, _options); return result.toPromise(); }
/** * Batch clone multiple agents. Ensure transactionality, return the agentId list after success. * Batch Clone Agents * @param requestBody List of agent information to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1009-L1012
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.countAgentsWithHttpInfo
public countAgentsWithHttpInfo(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.countAgentsWithHttpInfo(agentQueryDTO, _options); return result.toPromise(); }
/** * Calculate the number of agents according to the specified query conditions. * Calculate Number of Agents * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1019-L1022
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.countAgents
public countAgents(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise<number> { const result = this.api.countAgents(agentQueryDTO, _options); return result.toPromise(); }
/** * Calculate the number of agents according to the specified query conditions. * Calculate Number of Agents * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1029-L1032
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.createAgentWithHttpInfo
public createAgentWithHttpInfo(agentCreateDTO: AgentCreateDTO, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.createAgentWithHttpInfo(agentCreateDTO, _options); return result.toPromise(); }
/** * Create a agent, ignore required fields: - Agent name - Agent configuration Limitations: - Description: 300 characters - Configuration: 2000 characters - Example: 2000 characters - Tags: 5 - Parameters: 10 * Create Agent * @param agentCreateDTO Information of the agent to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1039-L1042
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.createAgent
public createAgent(agentCreateDTO: AgentCreateDTO, _options?: Configuration): Promise<number> { const result = this.api.createAgent(agentCreateDTO, _options); return result.toPromise(); }
/** * Create a agent, ignore required fields: - Agent name - Agent configuration Limitations: - Description: 300 characters - Configuration: 2000 characters - Example: 2000 characters - Tags: 5 - Parameters: 10 * Create Agent * @param agentCreateDTO Information of the agent to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1049-L1052
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.createAgentsWithHttpInfo
public createAgentsWithHttpInfo(agentCreateDTO: Array<AgentCreateDTO>, _options?: Configuration): Promise<HttpInfo<Array<number>>> { const result = this.api.createAgentsWithHttpInfo(agentCreateDTO, _options); return result.toPromise(); }
/** * Batch create multiple agents. Ensure transactionality, return the agentId list after success. * Batch Create Agents * @param agentCreateDTO List of agent information to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1059-L1062
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.createAgents
public createAgents(agentCreateDTO: Array<AgentCreateDTO>, _options?: Configuration): Promise<Array<number>> { const result = this.api.createAgents(agentCreateDTO, _options); return result.toPromise(); }
/** * Batch create multiple agents. Ensure transactionality, return the agentId list after success. * Batch Create Agents * @param agentCreateDTO List of agent information to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1069-L1072
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.deleteAgentWithHttpInfo
public deleteAgentWithHttpInfo(agentId: number, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.deleteAgentWithHttpInfo(agentId, _options); return result.toPromise(); }
/** * Delete agent. Return success or failure. * Delete Agent * @param agentId AgentId to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1079-L1082
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.deleteAgent
public deleteAgent(agentId: number, _options?: Configuration): Promise<boolean> { const result = this.api.deleteAgent(agentId, _options); return result.toPromise(); }
/** * Delete agent. Return success or failure. * Delete Agent * @param agentId AgentId to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1089-L1092
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.deleteAgentsWithHttpInfo
public deleteAgentsWithHttpInfo(requestBody: Array<number>, _options?: Configuration): Promise<HttpInfo<Array<number>>> { const result = this.api.deleteAgentsWithHttpInfo(requestBody, _options); return result.toPromise(); }
/** * Delete multiple agents. Ensure transactionality, return the list of successfully deleted agentId. * Batch Delete Agents * @param requestBody List of agentId to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1099-L1102
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.deleteAgents
public deleteAgents(requestBody: Array<number>, _options?: Configuration): Promise<Array<number>> { const result = this.api.deleteAgents(requestBody, _options); return result.toPromise(); }
/** * Delete multiple agents. Ensure transactionality, return the list of successfully deleted agentId. * Batch Delete Agents * @param requestBody List of agentId to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1109-L1112
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.getAgentDetailsWithHttpInfo
public getAgentDetailsWithHttpInfo(agentId: number, _options?: Configuration): Promise<HttpInfo<AgentDetailsDTO>> { const result = this.api.getAgentDetailsWithHttpInfo(agentId, _options); return result.toPromise(); }
/** * Get agent detailed information. * Get Agent Details * @param agentId AgentId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1119-L1122
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.getAgentDetails
public getAgentDetails(agentId: number, _options?: Configuration): Promise<AgentDetailsDTO> { const result = this.api.getAgentDetails(agentId, _options); return result.toPromise(); }
/** * Get agent detailed information. * Get Agent Details * @param agentId AgentId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1129-L1132
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.getAgentSummaryWithHttpInfo
public getAgentSummaryWithHttpInfo(agentId: number, _options?: Configuration): Promise<HttpInfo<AgentSummaryDTO>> { const result = this.api.getAgentSummaryWithHttpInfo(agentId, _options); return result.toPromise(); }
/** * Get agent summary information. * Get Agent Summary * @param agentId agentId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1139-L1142
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.getAgentSummary
public getAgentSummary(agentId: number, _options?: Configuration): Promise<AgentSummaryDTO> { const result = this.api.getAgentSummary(agentId, _options); return result.toPromise(); }
/** * Get agent summary information. * Get Agent Summary * @param agentId agentId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1149-L1152
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.listAgentVersionsByNameWithHttpInfo
public listAgentVersionsByNameWithHttpInfo(name: string, _options?: Configuration): Promise<HttpInfo<Array<AgentItemForNameDTO>>> { const result = this.api.listAgentVersionsByNameWithHttpInfo(name, _options); return result.toPromise(); }
/** * List the versions and corresponding agentIds by agent name. * List Versions by Agent Name * @param name Agent name */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1159-L1162
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.listAgentVersionsByName
public listAgentVersionsByName(name: string, _options?: Configuration): Promise<Array<AgentItemForNameDTO>> { const result = this.api.listAgentVersionsByName(name, _options); return result.toPromise(); }
/** * List the versions and corresponding agentIds by agent name. * List Versions by Agent Name * @param name Agent name */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1169-L1172
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.publishAgentWithHttpInfo
public publishAgentWithHttpInfo(agentId: number, visibility: string, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.publishAgentWithHttpInfo(agentId, visibility, _options); return result.toPromise(); }
/** * Publish agent, draft content becomes formal content, version number increases by 1. After successful publication, a new agentId will be generated and returned. You need to specify the visibility for publication. * Publish Agent * @param agentId The agentId to be published * @param visibility Visibility: public | private | ... */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1180-L1183
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.publishAgent
public publishAgent(agentId: number, visibility: string, _options?: Configuration): Promise<number> { const result = this.api.publishAgent(agentId, visibility, _options); return result.toPromise(); }
/** * Publish agent, draft content becomes formal content, version number increases by 1. After successful publication, a new agentId will be generated and returned. You need to specify the visibility for publication. * Publish Agent * @param agentId The agentId to be published * @param visibility Visibility: public | private | ... */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1191-L1194
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.searchAgentDetailsWithHttpInfo
public searchAgentDetailsWithHttpInfo(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise<HttpInfo<Array<AgentDetailsDTO>>> { const result = this.api.searchAgentDetailsWithHttpInfo(agentQueryDTO, _options); return result.toPromise(); }
/** * Same as /api/v2/agent/search, but returns detailed information of the agent. * Search Agent Details * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1201-L1204
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.searchAgentDetails
public searchAgentDetails(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise<Array<AgentDetailsDTO>> { const result = this.api.searchAgentDetails(agentQueryDTO, _options); return result.toPromise(); }
/** * Same as /api/v2/agent/search, but returns detailed information of the agent. * Search Agent Details * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1211-L1214
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.searchAgentSummaryWithHttpInfo
public searchAgentSummaryWithHttpInfo(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise<HttpInfo<Array<AgentSummaryDTO>>> { const result = this.api.searchAgentSummaryWithHttpInfo(agentQueryDTO, _options); return result.toPromise(); }
/** * Search agents: - Specifiable query fields, and relationship: - Scope: private, public_org or public. Private can only search this account. - Username: exact match, only valid when searching public, public_org. If not specified, search all users. - Format: exact match, currently supported: langflow - Tags: exact match (support and, or logic). - Model type: exact match (support and, or logic). - Name: left match. - General: name, description, example, fuzzy match, one hit is enough; public scope + all user\'s general search does not guarantee timeliness. - A certain sorting rule can be specified, such as view count, reference count, rating, time, descending or ascending. - The search result is the agent summary content. - Support pagination. * Search Agent Summary * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1221-L1224
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.searchAgentSummary
public searchAgentSummary(agentQueryDTO: AgentQueryDTO, _options?: Configuration): Promise<Array<AgentSummaryDTO>> { const result = this.api.searchAgentSummary(agentQueryDTO, _options); return result.toPromise(); }
/** * Search agents: - Specifiable query fields, and relationship: - Scope: private, public_org or public. Private can only search this account. - Username: exact match, only valid when searching public, public_org. If not specified, search all users. - Format: exact match, currently supported: langflow - Tags: exact match (support and, or logic). - Model type: exact match (support and, or logic). - Name: left match. - General: name, description, example, fuzzy match, one hit is enough; public scope + all user\'s general search does not guarantee timeliness. - A certain sorting rule can be specified, such as view count, reference count, rating, time, descending or ascending. - The search result is the agent summary content. - Support pagination. * Search Agent Summary * @param agentQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1231-L1234
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.updateAgentWithHttpInfo
public updateAgentWithHttpInfo(agentId: number, agentUpdateDTO: AgentUpdateDTO, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.updateAgentWithHttpInfo(agentId, agentUpdateDTO, _options); return result.toPromise(); }
/** * Update agent, refer to /api/v2/agent/create, required field: agentId. Return success or failure. * Update Agent * @param agentId AgentId to be updated * @param agentUpdateDTO Agent information to be updated */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1242-L1245
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAgentApi.updateAgent
public updateAgent(agentId: number, agentUpdateDTO: AgentUpdateDTO, _options?: Configuration): Promise<boolean> { const result = this.api.updateAgent(agentId, agentUpdateDTO, _options); return result.toPromise(); }
/** * Update agent, refer to /api/v2/agent/create, required field: agentId. Return success or failure. * Update Agent * @param agentId AgentId to be updated * @param agentUpdateDTO Agent information to be updated */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1253-L1256
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAppConfigForAdminApi.getDefaultConfigWithHttpInfo
public getDefaultConfigWithHttpInfo(_options?: Configuration): Promise<HttpInfo<string>> { const result = this.api.getDefaultConfigWithHttpInfo(_options); return result.toPromise(); }
/** * Get default configuration information of the application. * Get Default Config */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1281-L1284
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAppConfigForAdminApi.getDefaultConfig
public getDefaultConfig(_options?: Configuration): Promise<string> { const result = this.api.getDefaultConfig(_options); return result.toPromise(); }
/** * Get default configuration information of the application. * Get Default Config */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1290-L1293
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAppMetaForAdminApi.getAppMetaWithHttpInfo
public getAppMetaWithHttpInfo(_options?: Configuration): Promise<HttpInfo<AppMetaDTO>> { const result = this.api.getAppMetaWithHttpInfo(_options); return result.toPromise(); }
/** * Get application information to accurately locate the corresponding project version. * Get Application Information */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1318-L1321
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseAppMetaForAdminApi.getAppMeta
public getAppMeta(_options?: Configuration): Promise<AppMetaDTO> { const result = this.api.getAppMeta(_options); return result.toPromise(); }
/** * Get application information to accurately locate the corresponding project version. * Get Application Information */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1327-L1330
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.addCharacterBackendWithHttpInfo
public addCharacterBackendWithHttpInfo(characterUid: string, characterBackendDTO: CharacterBackendDTO, _options?: Configuration): Promise<HttpInfo<string>> { const result = this.api.addCharacterBackendWithHttpInfo(characterUid, characterBackendDTO, _options); return result.toPromise(); }
/** * Add a backend configuration for a character. * Add Character Backend * @param characterUid The characterUid to be added a backend * @param characterBackendDTO The character backend to be added */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1357-L1360
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.addCharacterBackend
public addCharacterBackend(characterUid: string, characterBackendDTO: CharacterBackendDTO, _options?: Configuration): Promise<string> { const result = this.api.addCharacterBackend(characterUid, characterBackendDTO, _options); return result.toPromise(); }
/** * Add a backend configuration for a character. * Add Character Backend * @param characterUid The characterUid to be added a backend * @param characterBackendDTO The character backend to be added */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1368-L1371
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.batchSearchCharacterDetailsWithHttpInfo
public batchSearchCharacterDetailsWithHttpInfo(characterQueryDTO: Array<CharacterQueryDTO>, _options?: Configuration): Promise<HttpInfo<Array<Array<CharacterDetailsDTO>>>> { const result = this.api.batchSearchCharacterDetailsWithHttpInfo(characterQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/character/details/search. * Batch Search Character Details * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1378-L1381
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.batchSearchCharacterDetails
public batchSearchCharacterDetails(characterQueryDTO: Array<CharacterQueryDTO>, _options?: Configuration): Promise<Array<Array<CharacterDetailsDTO>>> { const result = this.api.batchSearchCharacterDetails(characterQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/character/details/search. * Batch Search Character Details * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1388-L1391
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.batchSearchCharacterSummaryWithHttpInfo
public batchSearchCharacterSummaryWithHttpInfo(characterQueryDTO: Array<CharacterQueryDTO>, _options?: Configuration): Promise<HttpInfo<Array<Array<CharacterSummaryDTO>>>> { const result = this.api.batchSearchCharacterSummaryWithHttpInfo(characterQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/character/search. * Batch Search Character Summaries * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1398-L1401
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.batchSearchCharacterSummary
public batchSearchCharacterSummary(characterQueryDTO: Array<CharacterQueryDTO>, _options?: Configuration): Promise<Array<Array<CharacterSummaryDTO>>> { const result = this.api.batchSearchCharacterSummary(characterQueryDTO, _options); return result.toPromise(); }
/** * Batch call shortcut for /api/v2/character/search. * Batch Search Character Summaries * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1408-L1411
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.cloneCharacterWithHttpInfo
public cloneCharacterWithHttpInfo(characterId: number, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.cloneCharacterWithHttpInfo(characterId, _options); return result.toPromise(); }
/** * Enter the characterId, generate a new record, the content is basically the same as the original character, but the following fields are different: - Version number is 1 - Visibility is private - The parent character is the source characterId - The creation time is the current moment. - All statistical indicators are zeroed. Return the new characterId. * Clone Character * @param characterId The referenced characterId */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1418-L1421
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.cloneCharacter
public cloneCharacter(characterId: number, _options?: Configuration): Promise<number> { const result = this.api.cloneCharacter(characterId, _options); return result.toPromise(); }
/** * Enter the characterId, generate a new record, the content is basically the same as the original character, but the following fields are different: - Version number is 1 - Visibility is private - The parent character is the source characterId - The creation time is the current moment. - All statistical indicators are zeroed. Return the new characterId. * Clone Character * @param characterId The referenced characterId */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1428-L1431
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.countCharactersWithHttpInfo
public countCharactersWithHttpInfo(characterQueryDTO: CharacterQueryDTO, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.countCharactersWithHttpInfo(characterQueryDTO, _options); return result.toPromise(); }
/** * Calculate the number of characters according to the specified query conditions. * Calculate Number of Characters * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1438-L1441
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.countCharacters
public countCharacters(characterQueryDTO: CharacterQueryDTO, _options?: Configuration): Promise<number> { const result = this.api.countCharacters(characterQueryDTO, _options); return result.toPromise(); }
/** * Calculate the number of characters according to the specified query conditions. * Calculate Number of Characters * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1448-L1451
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.countPublicCharactersWithHttpInfo
public countPublicCharactersWithHttpInfo(characterQueryDTO: CharacterQueryDTO, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.countPublicCharactersWithHttpInfo(characterQueryDTO, _options); return result.toPromise(); }
/** * Calculate the number of characters according to the specified query conditions. * Calculate Number of Public Characters * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1458-L1461
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.countPublicCharacters
public countPublicCharacters(characterQueryDTO: CharacterQueryDTO, _options?: Configuration): Promise<number> { const result = this.api.countPublicCharacters(characterQueryDTO, _options); return result.toPromise(); }
/** * Calculate the number of characters according to the specified query conditions. * Calculate Number of Public Characters * @param characterQueryDTO Query conditions */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1468-L1471
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.createCharacterWithHttpInfo
public createCharacterWithHttpInfo(characterCreateDTO: CharacterCreateDTO, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.createCharacterWithHttpInfo(characterCreateDTO, _options); return result.toPromise(); }
/** * Create a character. * Create Character * @param characterCreateDTO Information of the character to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1478-L1481
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.createCharacter
public createCharacter(characterCreateDTO: CharacterCreateDTO, _options?: Configuration): Promise<number> { const result = this.api.createCharacter(characterCreateDTO, _options); return result.toPromise(); }
/** * Create a character. * Create Character * @param characterCreateDTO Information of the character to be created */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1488-L1491
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterWithHttpInfo
public deleteCharacterWithHttpInfo(characterId: number, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.deleteCharacterWithHttpInfo(characterId, _options); return result.toPromise(); }
/** * Delete character. Returns success or failure. * Delete Character * @param characterId The characterId to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1498-L1501
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacter
public deleteCharacter(characterId: number, _options?: Configuration): Promise<boolean> { const result = this.api.deleteCharacter(characterId, _options); return result.toPromise(); }
/** * Delete character. Returns success or failure. * Delete Character * @param characterId The characterId to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1508-L1511
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterByNameWithHttpInfo
public deleteCharacterByNameWithHttpInfo(name: string, _options?: Configuration): Promise<HttpInfo<Array<number>>> { const result = this.api.deleteCharacterByNameWithHttpInfo(name, _options); return result.toPromise(); }
/** * Delete character by name. return the list of successfully deleted characterIds. * Delete Character by Name * @param name The character name to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1518-L1521
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterByName
public deleteCharacterByName(name: string, _options?: Configuration): Promise<Array<number>> { const result = this.api.deleteCharacterByName(name, _options); return result.toPromise(); }
/** * Delete character by name. return the list of successfully deleted characterIds. * Delete Character by Name * @param name The character name to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1528-L1531
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterByUidWithHttpInfo
public deleteCharacterByUidWithHttpInfo(characterUid: string, _options?: Configuration): Promise<HttpInfo<Array<number>>> { const result = this.api.deleteCharacterByUidWithHttpInfo(characterUid, _options); return result.toPromise(); }
/** * Delete character by uid. return the list of successfully deleted characterIds. * Delete Character by Uid * @param characterUid The character uid to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1538-L1541
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterByUid
public deleteCharacterByUid(characterUid: string, _options?: Configuration): Promise<Array<number>> { const result = this.api.deleteCharacterByUid(characterUid, _options); return result.toPromise(); }
/** * Delete character by uid. return the list of successfully deleted characterIds. * Delete Character by Uid * @param characterUid The character uid to be deleted */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1548-L1551
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterDocumentWithHttpInfo
public deleteCharacterDocumentWithHttpInfo(key: string, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.deleteCharacterDocumentWithHttpInfo(key, _options); return result.toPromise(); }
/** * Delete a document of the character by key. * Delete Character Document * @param key Document key */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1558-L1561
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterDocument
public deleteCharacterDocument(key: string, _options?: Configuration): Promise<boolean> { const result = this.api.deleteCharacterDocument(key, _options); return result.toPromise(); }
/** * Delete a document of the character by key. * Delete Character Document * @param key Document key */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1568-L1571
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterPictureWithHttpInfo
public deleteCharacterPictureWithHttpInfo(key: string, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.deleteCharacterPictureWithHttpInfo(key, _options); return result.toPromise(); }
/** * Delete a picture of the character by key. * Delete Character Picture * @param key Image key */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1578-L1581
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterPicture
public deleteCharacterPicture(key: string, _options?: Configuration): Promise<boolean> { const result = this.api.deleteCharacterPicture(key, _options); return result.toPromise(); }
/** * Delete a picture of the character by key. * Delete Character Picture * @param key Image key */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1588-L1591
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterVoiceWithHttpInfo
public deleteCharacterVoiceWithHttpInfo(characterBackendId: string, key: string, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.deleteCharacterVoiceWithHttpInfo(characterBackendId, key, _options); return result.toPromise(); }
/** * Delete a voice of the character by key. * Delete Character Voice * @param characterBackendId The characterBackendId * @param key Voice key */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1599-L1602
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.deleteCharacterVoice
public deleteCharacterVoice(characterBackendId: string, key: string, _options?: Configuration): Promise<boolean> { const result = this.api.deleteCharacterVoice(characterBackendId, key, _options); return result.toPromise(); }
/** * Delete a voice of the character by key. * Delete Character Voice * @param characterBackendId The characterBackendId * @param key Voice key */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1610-L1613
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.existsCharacterNameWithHttpInfo
public existsCharacterNameWithHttpInfo(name: string, _options?: Configuration): Promise<HttpInfo<boolean>> { const result = this.api.existsCharacterNameWithHttpInfo(name, _options); return result.toPromise(); }
/** * Check if the character name already exists. * Check If Character Name Exists * @param name Name */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1620-L1623
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.existsCharacterName
public existsCharacterName(name: string, _options?: Configuration): Promise<boolean> { const result = this.api.existsCharacterName(name, _options); return result.toPromise(); }
/** * Check if the character name already exists. * Check If Character Name Exists * @param name Name */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1630-L1633
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.exportCharacterWithHttpInfo
public exportCharacterWithHttpInfo(characterId: number, _options?: Configuration): Promise<HttpInfo<void>> { const result = this.api.exportCharacterWithHttpInfo(characterId, _options); return result.toPromise(); }
/** * Export character configuration in tar.gz format, including settings, documents and pictures. * Export Character Configuration * @param characterId Character identifier */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1640-L1643
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.exportCharacter
public exportCharacter(characterId: number, _options?: Configuration): Promise<void> { const result = this.api.exportCharacter(characterId, _options); return result.toPromise(); }
/** * Export character configuration in tar.gz format, including settings, documents and pictures. * Export Character Configuration * @param characterId Character identifier */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1650-L1653
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getCharacterDetailsWithHttpInfo
public getCharacterDetailsWithHttpInfo(characterId: number, _options?: Configuration): Promise<HttpInfo<CharacterDetailsDTO>> { const result = this.api.getCharacterDetailsWithHttpInfo(characterId, _options); return result.toPromise(); }
/** * Get character detailed information. * Get Character Details * @param characterId CharacterId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1660-L1663
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getCharacterDetails
public getCharacterDetails(characterId: number, _options?: Configuration): Promise<CharacterDetailsDTO> { const result = this.api.getCharacterDetails(characterId, _options); return result.toPromise(); }
/** * Get character detailed information. * Get Character Details * @param characterId CharacterId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1670-L1673
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getCharacterLatestIdByNameWithHttpInfo
public getCharacterLatestIdByNameWithHttpInfo(name: string, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.getCharacterLatestIdByNameWithHttpInfo(name, _options); return result.toPromise(); }
/** * Get latest characterId by character name. * Get Latest Character Id by Name * @param name Character name */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1680-L1683
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getCharacterLatestIdByName
public getCharacterLatestIdByName(name: string, _options?: Configuration): Promise<number> { const result = this.api.getCharacterLatestIdByName(name, _options); return result.toPromise(); }
/** * Get latest characterId by character name. * Get Latest Character Id by Name * @param name Character name */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1690-L1693
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getCharacterSummaryWithHttpInfo
public getCharacterSummaryWithHttpInfo(characterId: number, _options?: Configuration): Promise<HttpInfo<CharacterSummaryDTO>> { const result = this.api.getCharacterSummaryWithHttpInfo(characterId, _options); return result.toPromise(); }
/** * Get character summary information. * Get Character Summary * @param characterId CharacterId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1700-L1703
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getCharacterSummary
public getCharacterSummary(characterId: number, _options?: Configuration): Promise<CharacterSummaryDTO> { const result = this.api.getCharacterSummary(characterId, _options); return result.toPromise(); }
/** * Get character summary information. * Get Character Summary * @param characterId CharacterId to be obtained */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1710-L1713
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getDefaultCharacterBackendWithHttpInfo
public getDefaultCharacterBackendWithHttpInfo(characterUid: string, _options?: Configuration): Promise<HttpInfo<CharacterBackendDetailsDTO>> { const result = this.api.getDefaultCharacterBackendWithHttpInfo(characterUid, _options); return result.toPromise(); }
/** * Get the default backend configuration. * Get Default Character Backend * @param characterUid The characterUid to be queried */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1720-L1723
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.getDefaultCharacterBackend
public getDefaultCharacterBackend(characterUid: string, _options?: Configuration): Promise<CharacterBackendDetailsDTO> { const result = this.api.getDefaultCharacterBackend(characterUid, _options); return result.toPromise(); }
/** * Get the default backend configuration. * Get Default Character Backend * @param characterUid The characterUid to be queried */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1730-L1733
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.importCharacterWithHttpInfo
public importCharacterWithHttpInfo(file: HttpFile, _options?: Configuration): Promise<HttpInfo<number>> { const result = this.api.importCharacterWithHttpInfo(file, _options); return result.toPromise(); }
/** * Import character configuration from a tar.gz file. * Import Character Configuration * @param file Character avatar */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1740-L1743
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.importCharacter
public importCharacter(file: HttpFile, _options?: Configuration): Promise<number> { const result = this.api.importCharacter(file, _options); return result.toPromise(); }
/** * Import character configuration from a tar.gz file. * Import Character Configuration * @param file Character avatar */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1750-L1753
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.listCharacterBackendIdsWithHttpInfo
public listCharacterBackendIdsWithHttpInfo(characterUid: string, _options?: Configuration): Promise<HttpInfo<Array<string>>> { const result = this.api.listCharacterBackendIdsWithHttpInfo(characterUid, _options); return result.toPromise(); }
/** * List character backend identifiers. * List Character Backend ids * @param characterUid The characterUid to be queried */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1760-L1763
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db
freechat
github_2023
freechat-fun
typescript
PromiseCharacterApi.listCharacterBackendIds
public listCharacterBackendIds(characterUid: string, _options?: Configuration): Promise<Array<string>> { const result = this.api.listCharacterBackendIds(characterUid, _options); return result.toPromise(); }
/** * List character backend identifiers. * List Character Backend ids * @param characterUid The characterUid to be queried */
https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/PromiseAPI.ts#L1770-L1773
cb80c3708b85cf52c02a91bdc0c9e9ddc14856db