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 | ObjectAccountManagerForAdminApi.deleteUserWithHttpInfo | public deleteUserWithHttpInfo(param: AccountManagerForAdminApiDeleteUserRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.deleteUserWithHttpInfo(param.username, options).toPromise();
} | /**
* Delete user by username.
* Delete User
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L995-L997 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.deleteUser | public deleteUser(param: AccountManagerForAdminApiDeleteUserRequest, options?: Configuration): Promise<boolean> {
return this.api.deleteUser(param.username, options).toPromise();
} | /**
* Delete user by username.
* Delete User
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1004-L1006 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.disableTokenForUserWithHttpInfo | public disableTokenForUserWithHttpInfo(param: AccountManagerForAdminApiDisableTokenForUserRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.disableTokenForUserWithHttpInfo(param.token, options).toPromise();
} | /**
* Disable the specified API Token.
* Disable API Token
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1013-L1015 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.disableTokenForUser | public disableTokenForUser(param: AccountManagerForAdminApiDisableTokenForUserRequest, options?: Configuration): Promise<boolean> {
return this.api.disableTokenForUser(param.token, options).toPromise();
} | /**
* Disable the specified API Token.
* Disable API Token
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1022-L1024 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.getDetailsOfUserWithHttpInfo | public getDetailsOfUserWithHttpInfo(param: AccountManagerForAdminApiGetDetailsOfUserRequest, options?: Configuration): Promise<HttpInfo<UserDetailsDTO>> {
return this.api.getDetailsOfUserWithHttpInfo(param.username, options).toPromise();
} | /**
* Return detailed user information.
* Get User Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1031-L1033 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.getDetailsOfUser | public getDetailsOfUser(param: AccountManagerForAdminApiGetDetailsOfUserRequest, options?: Configuration): Promise<UserDetailsDTO> {
return this.api.getDetailsOfUser(param.username, options).toPromise();
} | /**
* Return detailed user information.
* Get User Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1040-L1042 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.getUserByTokenWithHttpInfo | public getUserByTokenWithHttpInfo(param: AccountManagerForAdminApiGetUserByTokenRequest, options?: Configuration): Promise<HttpInfo<UserDetailsDTO>> {
return this.api.getUserByTokenWithHttpInfo(param.token, options).toPromise();
} | /**
* Get the detailed user information corresponding to the API Token.
* Get User by API Token
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1049-L1051 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.getUserByToken | public getUserByToken(param: AccountManagerForAdminApiGetUserByTokenRequest, options?: Configuration): Promise<UserDetailsDTO> {
return this.api.getUserByToken(param.token, options).toPromise();
} | /**
* Get the detailed user information corresponding to the API Token.
* Get User by API Token
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1058-L1060 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listAuthoritiesOfUserWithHttpInfo | public listAuthoritiesOfUserWithHttpInfo(param: AccountManagerForAdminApiListAuthoritiesOfUserRequest, options?: Configuration): Promise<HttpInfo<Set<string>>> {
return this.api.listAuthoritiesOfUserWithHttpInfo(param.username, options).toPromise();
} | /**
* List the user\'s permissions.
* List User Permissions
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1067-L1069 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listAuthoritiesOfUser | public listAuthoritiesOfUser(param: AccountManagerForAdminApiListAuthoritiesOfUserRequest, options?: Configuration): Promise<Set<string>> {
return this.api.listAuthoritiesOfUser(param.username, options).toPromise();
} | /**
* List the user\'s permissions.
* List User Permissions
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1076-L1078 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listTokensOfUserWithHttpInfo | public listTokensOfUserWithHttpInfo(param: AccountManagerForAdminApiListTokensOfUserRequest, options?: Configuration): Promise<HttpInfo<Array<ApiTokenInfoDTO>>> {
return this.api.listTokensOfUserWithHttpInfo(param.username, options).toPromise();
} | /**
* Get the list of API Tokens of the user.
* Get API Token of User
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1085-L1087 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listTokensOfUser | public listTokensOfUser(param: AccountManagerForAdminApiListTokensOfUserRequest, options?: Configuration): Promise<Array<ApiTokenInfoDTO>> {
return this.api.listTokensOfUser(param.username, options).toPromise();
} | /**
* Get the list of API Tokens of the user.
* Get API Token of User
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1094-L1096 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listUsersWithHttpInfo | public listUsersWithHttpInfo(param: AccountManagerForAdminApiListUsersRequest, options?: Configuration): Promise<HttpInfo<Array<UserBasicInfoDTO>>> {
return this.api.listUsersWithHttpInfo(param.pageSize, param.pageNum, options).toPromise();
} | /**
* Return user information by page, return the pageNum page, up to pageSize user information.
* List User Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1103-L1105 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listUsers | public listUsers(param: AccountManagerForAdminApiListUsersRequest, options?: Configuration): Promise<Array<UserBasicInfoDTO>> {
return this.api.listUsers(param.pageSize, param.pageNum, options).toPromise();
} | /**
* Return user information by page, return the pageNum page, up to pageSize user information.
* List User Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1112-L1114 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listUsers1WithHttpInfo | public listUsers1WithHttpInfo(param: AccountManagerForAdminApiListUsers1Request = {}, options?: Configuration): Promise<HttpInfo<Array<UserBasicInfoDTO>>> {
return this.api.listUsers1WithHttpInfo( options).toPromise();
} | /**
* Return user information by page, return the pageNum page, up to pageSize user information.
* List User Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1121-L1123 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listUsers1 | public listUsers1(param: AccountManagerForAdminApiListUsers1Request = {}, options?: Configuration): Promise<Array<UserBasicInfoDTO>> {
return this.api.listUsers1( options).toPromise();
} | /**
* Return user information by page, return the pageNum page, up to pageSize user information.
* List User Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1130-L1132 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listUsers2WithHttpInfo | public listUsers2WithHttpInfo(param: AccountManagerForAdminApiListUsers2Request, options?: Configuration): Promise<HttpInfo<Array<UserBasicInfoDTO>>> {
return this.api.listUsers2WithHttpInfo(param.pageSize, options).toPromise();
} | /**
* Return user information by page, return the pageNum page, up to pageSize user information.
* List User Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1139-L1141 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.listUsers2 | public listUsers2(param: AccountManagerForAdminApiListUsers2Request, options?: Configuration): Promise<Array<UserBasicInfoDTO>> {
return this.api.listUsers2(param.pageSize, options).toPromise();
} | /**
* Return user information by page, return the pageNum page, up to pageSize user information.
* List User Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1148-L1150 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.updateAuthoritiesOfUserWithHttpInfo | public updateAuthoritiesOfUserWithHttpInfo(param: AccountManagerForAdminApiUpdateAuthoritiesOfUserRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.updateAuthoritiesOfUserWithHttpInfo(param.username, param.requestBody, options).toPromise();
} | /**
* Update the user\'s permission list.
* Update User Permissions
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1157-L1159 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.updateAuthoritiesOfUser | public updateAuthoritiesOfUser(param: AccountManagerForAdminApiUpdateAuthoritiesOfUserRequest, options?: Configuration): Promise<boolean> {
return this.api.updateAuthoritiesOfUser(param.username, param.requestBody, options).toPromise();
} | /**
* Update the user\'s permission list.
* Update User Permissions
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1166-L1168 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.updateUserWithHttpInfo | public updateUserWithHttpInfo(param: AccountManagerForAdminApiUpdateUserRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.updateUserWithHttpInfo(param.userFullDetailsDTO, options).toPromise();
} | /**
* Update user information.
* Update User
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1175-L1177 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAccountManagerForAdminApi.updateUser | public updateUser(param: AccountManagerForAdminApiUpdateUserRequest, options?: Configuration): Promise<boolean> {
return this.api.updateUser(param.userFullDetailsDTO, options).toPromise();
} | /**
* Update user information.
* Update User
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1184-L1186 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.batchSearchAgentDetailsWithHttpInfo | public batchSearchAgentDetailsWithHttpInfo(param: AgentApiBatchSearchAgentDetailsRequest, options?: Configuration): Promise<HttpInfo<Array<Array<AgentDetailsDTO>>>> {
return this.api.batchSearchAgentDetailsWithHttpInfo(param.agentQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/agent/details/search.
* Batch Search Agent Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1369-L1371 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.batchSearchAgentDetails | public batchSearchAgentDetails(param: AgentApiBatchSearchAgentDetailsRequest, options?: Configuration): Promise<Array<Array<AgentDetailsDTO>>> {
return this.api.batchSearchAgentDetails(param.agentQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/agent/details/search.
* Batch Search Agent Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1378-L1380 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.batchSearchAgentSummaryWithHttpInfo | public batchSearchAgentSummaryWithHttpInfo(param: AgentApiBatchSearchAgentSummaryRequest, options?: Configuration): Promise<HttpInfo<Array<Array<AgentSummaryDTO>>>> {
return this.api.batchSearchAgentSummaryWithHttpInfo(param.agentQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/agent/search.
* Batch Search Agent Summaries
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1387-L1389 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.batchSearchAgentSummary | public batchSearchAgentSummary(param: AgentApiBatchSearchAgentSummaryRequest, options?: Configuration): Promise<Array<Array<AgentSummaryDTO>>> {
return this.api.batchSearchAgentSummary(param.agentQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/agent/search.
* Batch Search Agent Summaries
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1396-L1398 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.cloneAgentWithHttpInfo | public cloneAgentWithHttpInfo(param: AgentApiCloneAgentRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.cloneAgentWithHttpInfo(param.agentId, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1405-L1407 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.cloneAgent | public cloneAgent(param: AgentApiCloneAgentRequest, options?: Configuration): Promise<number> {
return this.api.cloneAgent(param.agentId, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1414-L1416 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.cloneAgentsWithHttpInfo | public cloneAgentsWithHttpInfo(param: AgentApiCloneAgentsRequest, options?: Configuration): Promise<HttpInfo<Array<number>>> {
return this.api.cloneAgentsWithHttpInfo(param.requestBody, options).toPromise();
} | /**
* Batch clone multiple agents. Ensure transactionality, return the agentId list after success.
* Batch Clone Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1423-L1425 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.cloneAgents | public cloneAgents(param: AgentApiCloneAgentsRequest, options?: Configuration): Promise<Array<number>> {
return this.api.cloneAgents(param.requestBody, options).toPromise();
} | /**
* Batch clone multiple agents. Ensure transactionality, return the agentId list after success.
* Batch Clone Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1432-L1434 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.countAgentsWithHttpInfo | public countAgentsWithHttpInfo(param: AgentApiCountAgentsRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.countAgentsWithHttpInfo(param.agentQueryDTO, options).toPromise();
} | /**
* Calculate the number of agents according to the specified query conditions.
* Calculate Number of Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1441-L1443 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.countAgents | public countAgents(param: AgentApiCountAgentsRequest, options?: Configuration): Promise<number> {
return this.api.countAgents(param.agentQueryDTO, options).toPromise();
} | /**
* Calculate the number of agents according to the specified query conditions.
* Calculate Number of Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1450-L1452 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.createAgentWithHttpInfo | public createAgentWithHttpInfo(param: AgentApiCreateAgentRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.createAgentWithHttpInfo(param.agentCreateDTO, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1459-L1461 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.createAgent | public createAgent(param: AgentApiCreateAgentRequest, options?: Configuration): Promise<number> {
return this.api.createAgent(param.agentCreateDTO, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1468-L1470 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.createAgentsWithHttpInfo | public createAgentsWithHttpInfo(param: AgentApiCreateAgentsRequest, options?: Configuration): Promise<HttpInfo<Array<number>>> {
return this.api.createAgentsWithHttpInfo(param.agentCreateDTO, options).toPromise();
} | /**
* Batch create multiple agents. Ensure transactionality, return the agentId list after success.
* Batch Create Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1477-L1479 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.createAgents | public createAgents(param: AgentApiCreateAgentsRequest, options?: Configuration): Promise<Array<number>> {
return this.api.createAgents(param.agentCreateDTO, options).toPromise();
} | /**
* Batch create multiple agents. Ensure transactionality, return the agentId list after success.
* Batch Create Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1486-L1488 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.deleteAgentWithHttpInfo | public deleteAgentWithHttpInfo(param: AgentApiDeleteAgentRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.deleteAgentWithHttpInfo(param.agentId, options).toPromise();
} | /**
* Delete agent. Return success or failure.
* Delete Agent
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1495-L1497 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.deleteAgent | public deleteAgent(param: AgentApiDeleteAgentRequest, options?: Configuration): Promise<boolean> {
return this.api.deleteAgent(param.agentId, options).toPromise();
} | /**
* Delete agent. Return success or failure.
* Delete Agent
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1504-L1506 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.deleteAgentsWithHttpInfo | public deleteAgentsWithHttpInfo(param: AgentApiDeleteAgentsRequest, options?: Configuration): Promise<HttpInfo<Array<number>>> {
return this.api.deleteAgentsWithHttpInfo(param.requestBody, options).toPromise();
} | /**
* Delete multiple agents. Ensure transactionality, return the list of successfully deleted agentId.
* Batch Delete Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1513-L1515 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.deleteAgents | public deleteAgents(param: AgentApiDeleteAgentsRequest, options?: Configuration): Promise<Array<number>> {
return this.api.deleteAgents(param.requestBody, options).toPromise();
} | /**
* Delete multiple agents. Ensure transactionality, return the list of successfully deleted agentId.
* Batch Delete Agents
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1522-L1524 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.getAgentDetailsWithHttpInfo | public getAgentDetailsWithHttpInfo(param: AgentApiGetAgentDetailsRequest, options?: Configuration): Promise<HttpInfo<AgentDetailsDTO>> {
return this.api.getAgentDetailsWithHttpInfo(param.agentId, options).toPromise();
} | /**
* Get agent detailed information.
* Get Agent Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1531-L1533 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.getAgentDetails | public getAgentDetails(param: AgentApiGetAgentDetailsRequest, options?: Configuration): Promise<AgentDetailsDTO> {
return this.api.getAgentDetails(param.agentId, options).toPromise();
} | /**
* Get agent detailed information.
* Get Agent Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1540-L1542 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.getAgentSummaryWithHttpInfo | public getAgentSummaryWithHttpInfo(param: AgentApiGetAgentSummaryRequest, options?: Configuration): Promise<HttpInfo<AgentSummaryDTO>> {
return this.api.getAgentSummaryWithHttpInfo(param.agentId, options).toPromise();
} | /**
* Get agent summary information.
* Get Agent Summary
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1549-L1551 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.getAgentSummary | public getAgentSummary(param: AgentApiGetAgentSummaryRequest, options?: Configuration): Promise<AgentSummaryDTO> {
return this.api.getAgentSummary(param.agentId, options).toPromise();
} | /**
* Get agent summary information.
* Get Agent Summary
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1558-L1560 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.listAgentVersionsByNameWithHttpInfo | public listAgentVersionsByNameWithHttpInfo(param: AgentApiListAgentVersionsByNameRequest, options?: Configuration): Promise<HttpInfo<Array<AgentItemForNameDTO>>> {
return this.api.listAgentVersionsByNameWithHttpInfo(param.name, options).toPromise();
} | /**
* List the versions and corresponding agentIds by agent name.
* List Versions by Agent Name
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1567-L1569 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.listAgentVersionsByName | public listAgentVersionsByName(param: AgentApiListAgentVersionsByNameRequest, options?: Configuration): Promise<Array<AgentItemForNameDTO>> {
return this.api.listAgentVersionsByName(param.name, options).toPromise();
} | /**
* List the versions and corresponding agentIds by agent name.
* List Versions by Agent Name
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1576-L1578 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.publishAgentWithHttpInfo | public publishAgentWithHttpInfo(param: AgentApiPublishAgentRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.publishAgentWithHttpInfo(param.agentId, param.visibility, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1585-L1587 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.publishAgent | public publishAgent(param: AgentApiPublishAgentRequest, options?: Configuration): Promise<number> {
return this.api.publishAgent(param.agentId, param.visibility, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1594-L1596 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.searchAgentDetailsWithHttpInfo | public searchAgentDetailsWithHttpInfo(param: AgentApiSearchAgentDetailsRequest, options?: Configuration): Promise<HttpInfo<Array<AgentDetailsDTO>>> {
return this.api.searchAgentDetailsWithHttpInfo(param.agentQueryDTO, options).toPromise();
} | /**
* Same as /api/v2/agent/search, but returns detailed information of the agent.
* Search Agent Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1603-L1605 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.searchAgentDetails | public searchAgentDetails(param: AgentApiSearchAgentDetailsRequest, options?: Configuration): Promise<Array<AgentDetailsDTO>> {
return this.api.searchAgentDetails(param.agentQueryDTO, options).toPromise();
} | /**
* Same as /api/v2/agent/search, but returns detailed information of the agent.
* Search Agent Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1612-L1614 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.searchAgentSummaryWithHttpInfo | public searchAgentSummaryWithHttpInfo(param: AgentApiSearchAgentSummaryRequest, options?: Configuration): Promise<HttpInfo<Array<AgentSummaryDTO>>> {
return this.api.searchAgentSummaryWithHttpInfo(param.agentQueryDTO, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1621-L1623 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.searchAgentSummary | public searchAgentSummary(param: AgentApiSearchAgentSummaryRequest, options?: Configuration): Promise<Array<AgentSummaryDTO>> {
return this.api.searchAgentSummary(param.agentQueryDTO, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1630-L1632 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.updateAgentWithHttpInfo | public updateAgentWithHttpInfo(param: AgentApiUpdateAgentRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.updateAgentWithHttpInfo(param.agentId, param.agentUpdateDTO, options).toPromise();
} | /**
* Update agent, refer to /api/v2/agent/create, required field: agentId. Return success or failure.
* Update Agent
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1639-L1641 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAgentApi.updateAgent | public updateAgent(param: AgentApiUpdateAgentRequest, options?: Configuration): Promise<boolean> {
return this.api.updateAgent(param.agentId, param.agentUpdateDTO, options).toPromise();
} | /**
* Update agent, refer to /api/v2/agent/create, required field: agentId. Return success or failure.
* Update Agent
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1648-L1650 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAppConfigForAdminApi.getDefaultConfigWithHttpInfo | public getDefaultConfigWithHttpInfo(param: AppConfigForAdminApiGetDefaultConfigRequest = {}, options?: Configuration): Promise<HttpInfo<string>> {
return this.api.getDefaultConfigWithHttpInfo( options).toPromise();
} | /**
* Get default configuration information of the application.
* Get Default Config
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1672-L1674 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAppConfigForAdminApi.getDefaultConfig | public getDefaultConfig(param: AppConfigForAdminApiGetDefaultConfigRequest = {}, options?: Configuration): Promise<string> {
return this.api.getDefaultConfig( options).toPromise();
} | /**
* Get default configuration information of the application.
* Get Default Config
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1681-L1683 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAppMetaForAdminApi.getAppMetaWithHttpInfo | public getAppMetaWithHttpInfo(param: AppMetaForAdminApiGetAppMetaRequest = {}, options?: Configuration): Promise<HttpInfo<AppMetaDTO>> {
return this.api.getAppMetaWithHttpInfo( options).toPromise();
} | /**
* Get application information to accurately locate the corresponding project version.
* Get Application Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1705-L1707 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectAppMetaForAdminApi.getAppMeta | public getAppMeta(param: AppMetaForAdminApiGetAppMetaRequest = {}, options?: Configuration): Promise<AppMetaDTO> {
return this.api.getAppMeta( options).toPromise();
} | /**
* Get application information to accurately locate the corresponding project version.
* Get Application Information
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L1714-L1716 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.addCharacterBackendWithHttpInfo | public addCharacterBackendWithHttpInfo(param: CharacterApiAddCharacterBackendRequest, options?: Configuration): Promise<HttpInfo<string>> {
return this.api.addCharacterBackendWithHttpInfo(param.characterUid, param.characterBackendDTO, options).toPromise();
} | /**
* Add a backend configuration for a character.
* Add Character Backend
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2187-L2189 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.addCharacterBackend | public addCharacterBackend(param: CharacterApiAddCharacterBackendRequest, options?: Configuration): Promise<string> {
return this.api.addCharacterBackend(param.characterUid, param.characterBackendDTO, options).toPromise();
} | /**
* Add a backend configuration for a character.
* Add Character Backend
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2196-L2198 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.batchSearchCharacterDetailsWithHttpInfo | public batchSearchCharacterDetailsWithHttpInfo(param: CharacterApiBatchSearchCharacterDetailsRequest, options?: Configuration): Promise<HttpInfo<Array<Array<CharacterDetailsDTO>>>> {
return this.api.batchSearchCharacterDetailsWithHttpInfo(param.characterQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/character/details/search.
* Batch Search Character Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2205-L2207 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.batchSearchCharacterDetails | public batchSearchCharacterDetails(param: CharacterApiBatchSearchCharacterDetailsRequest, options?: Configuration): Promise<Array<Array<CharacterDetailsDTO>>> {
return this.api.batchSearchCharacterDetails(param.characterQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/character/details/search.
* Batch Search Character Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2214-L2216 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.batchSearchCharacterSummaryWithHttpInfo | public batchSearchCharacterSummaryWithHttpInfo(param: CharacterApiBatchSearchCharacterSummaryRequest, options?: Configuration): Promise<HttpInfo<Array<Array<CharacterSummaryDTO>>>> {
return this.api.batchSearchCharacterSummaryWithHttpInfo(param.characterQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/character/search.
* Batch Search Character Summaries
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2223-L2225 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.batchSearchCharacterSummary | public batchSearchCharacterSummary(param: CharacterApiBatchSearchCharacterSummaryRequest, options?: Configuration): Promise<Array<Array<CharacterSummaryDTO>>> {
return this.api.batchSearchCharacterSummary(param.characterQueryDTO, options).toPromise();
} | /**
* Batch call shortcut for /api/v2/character/search.
* Batch Search Character Summaries
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2232-L2234 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.cloneCharacterWithHttpInfo | public cloneCharacterWithHttpInfo(param: CharacterApiCloneCharacterRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.cloneCharacterWithHttpInfo(param.characterId, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2241-L2243 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.cloneCharacter | public cloneCharacter(param: CharacterApiCloneCharacterRequest, options?: Configuration): Promise<number> {
return this.api.cloneCharacter(param.characterId, options).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 param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2250-L2252 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.countCharactersWithHttpInfo | public countCharactersWithHttpInfo(param: CharacterApiCountCharactersRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.countCharactersWithHttpInfo(param.characterQueryDTO, options).toPromise();
} | /**
* Calculate the number of characters according to the specified query conditions.
* Calculate Number of Characters
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2259-L2261 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.countCharacters | public countCharacters(param: CharacterApiCountCharactersRequest, options?: Configuration): Promise<number> {
return this.api.countCharacters(param.characterQueryDTO, options).toPromise();
} | /**
* Calculate the number of characters according to the specified query conditions.
* Calculate Number of Characters
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2268-L2270 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.countPublicCharactersWithHttpInfo | public countPublicCharactersWithHttpInfo(param: CharacterApiCountPublicCharactersRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.countPublicCharactersWithHttpInfo(param.characterQueryDTO, options).toPromise();
} | /**
* Calculate the number of characters according to the specified query conditions.
* Calculate Number of Public Characters
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2277-L2279 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.countPublicCharacters | public countPublicCharacters(param: CharacterApiCountPublicCharactersRequest, options?: Configuration): Promise<number> {
return this.api.countPublicCharacters(param.characterQueryDTO, options).toPromise();
} | /**
* Calculate the number of characters according to the specified query conditions.
* Calculate Number of Public Characters
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2286-L2288 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.createCharacterWithHttpInfo | public createCharacterWithHttpInfo(param: CharacterApiCreateCharacterRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.createCharacterWithHttpInfo(param.characterCreateDTO, options).toPromise();
} | /**
* Create a character.
* Create Character
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2295-L2297 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.createCharacter | public createCharacter(param: CharacterApiCreateCharacterRequest, options?: Configuration): Promise<number> {
return this.api.createCharacter(param.characterCreateDTO, options).toPromise();
} | /**
* Create a character.
* Create Character
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2304-L2306 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterWithHttpInfo | public deleteCharacterWithHttpInfo(param: CharacterApiDeleteCharacterRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.deleteCharacterWithHttpInfo(param.characterId, options).toPromise();
} | /**
* Delete character. Returns success or failure.
* Delete Character
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2313-L2315 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacter | public deleteCharacter(param: CharacterApiDeleteCharacterRequest, options?: Configuration): Promise<boolean> {
return this.api.deleteCharacter(param.characterId, options).toPromise();
} | /**
* Delete character. Returns success or failure.
* Delete Character
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2322-L2324 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterByNameWithHttpInfo | public deleteCharacterByNameWithHttpInfo(param: CharacterApiDeleteCharacterByNameRequest, options?: Configuration): Promise<HttpInfo<Array<number>>> {
return this.api.deleteCharacterByNameWithHttpInfo(param.name, options).toPromise();
} | /**
* Delete character by name. return the list of successfully deleted characterIds.
* Delete Character by Name
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2331-L2333 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterByName | public deleteCharacterByName(param: CharacterApiDeleteCharacterByNameRequest, options?: Configuration): Promise<Array<number>> {
return this.api.deleteCharacterByName(param.name, options).toPromise();
} | /**
* Delete character by name. return the list of successfully deleted characterIds.
* Delete Character by Name
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2340-L2342 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterByUidWithHttpInfo | public deleteCharacterByUidWithHttpInfo(param: CharacterApiDeleteCharacterByUidRequest, options?: Configuration): Promise<HttpInfo<Array<number>>> {
return this.api.deleteCharacterByUidWithHttpInfo(param.characterUid, options).toPromise();
} | /**
* Delete character by uid. return the list of successfully deleted characterIds.
* Delete Character by Uid
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2349-L2351 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterByUid | public deleteCharacterByUid(param: CharacterApiDeleteCharacterByUidRequest, options?: Configuration): Promise<Array<number>> {
return this.api.deleteCharacterByUid(param.characterUid, options).toPromise();
} | /**
* Delete character by uid. return the list of successfully deleted characterIds.
* Delete Character by Uid
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2358-L2360 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterDocumentWithHttpInfo | public deleteCharacterDocumentWithHttpInfo(param: CharacterApiDeleteCharacterDocumentRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.deleteCharacterDocumentWithHttpInfo(param.key, options).toPromise();
} | /**
* Delete a document of the character by key.
* Delete Character Document
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2367-L2369 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterDocument | public deleteCharacterDocument(param: CharacterApiDeleteCharacterDocumentRequest, options?: Configuration): Promise<boolean> {
return this.api.deleteCharacterDocument(param.key, options).toPromise();
} | /**
* Delete a document of the character by key.
* Delete Character Document
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2376-L2378 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterPictureWithHttpInfo | public deleteCharacterPictureWithHttpInfo(param: CharacterApiDeleteCharacterPictureRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.deleteCharacterPictureWithHttpInfo(param.key, options).toPromise();
} | /**
* Delete a picture of the character by key.
* Delete Character Picture
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2385-L2387 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterPicture | public deleteCharacterPicture(param: CharacterApiDeleteCharacterPictureRequest, options?: Configuration): Promise<boolean> {
return this.api.deleteCharacterPicture(param.key, options).toPromise();
} | /**
* Delete a picture of the character by key.
* Delete Character Picture
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2394-L2396 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterVoiceWithHttpInfo | public deleteCharacterVoiceWithHttpInfo(param: CharacterApiDeleteCharacterVoiceRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.deleteCharacterVoiceWithHttpInfo(param.characterBackendId, param.key, options).toPromise();
} | /**
* Delete a voice of the character by key.
* Delete Character Voice
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2403-L2405 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.deleteCharacterVoice | public deleteCharacterVoice(param: CharacterApiDeleteCharacterVoiceRequest, options?: Configuration): Promise<boolean> {
return this.api.deleteCharacterVoice(param.characterBackendId, param.key, options).toPromise();
} | /**
* Delete a voice of the character by key.
* Delete Character Voice
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2412-L2414 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.existsCharacterNameWithHttpInfo | public existsCharacterNameWithHttpInfo(param: CharacterApiExistsCharacterNameRequest, options?: Configuration): Promise<HttpInfo<boolean>> {
return this.api.existsCharacterNameWithHttpInfo(param.name, options).toPromise();
} | /**
* Check if the character name already exists.
* Check If Character Name Exists
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2421-L2423 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.existsCharacterName | public existsCharacterName(param: CharacterApiExistsCharacterNameRequest, options?: Configuration): Promise<boolean> {
return this.api.existsCharacterName(param.name, options).toPromise();
} | /**
* Check if the character name already exists.
* Check If Character Name Exists
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2430-L2432 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.exportCharacterWithHttpInfo | public exportCharacterWithHttpInfo(param: CharacterApiExportCharacterRequest, options?: Configuration): Promise<HttpInfo<void>> {
return this.api.exportCharacterWithHttpInfo(param.characterId, options).toPromise();
} | /**
* Export character configuration in tar.gz format, including settings, documents and pictures.
* Export Character Configuration
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2439-L2441 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.exportCharacter | public exportCharacter(param: CharacterApiExportCharacterRequest, options?: Configuration): Promise<void> {
return this.api.exportCharacter(param.characterId, options).toPromise();
} | /**
* Export character configuration in tar.gz format, including settings, documents and pictures.
* Export Character Configuration
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2448-L2450 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getCharacterDetailsWithHttpInfo | public getCharacterDetailsWithHttpInfo(param: CharacterApiGetCharacterDetailsRequest, options?: Configuration): Promise<HttpInfo<CharacterDetailsDTO>> {
return this.api.getCharacterDetailsWithHttpInfo(param.characterId, options).toPromise();
} | /**
* Get character detailed information.
* Get Character Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2457-L2459 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getCharacterDetails | public getCharacterDetails(param: CharacterApiGetCharacterDetailsRequest, options?: Configuration): Promise<CharacterDetailsDTO> {
return this.api.getCharacterDetails(param.characterId, options).toPromise();
} | /**
* Get character detailed information.
* Get Character Details
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2466-L2468 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getCharacterLatestIdByNameWithHttpInfo | public getCharacterLatestIdByNameWithHttpInfo(param: CharacterApiGetCharacterLatestIdByNameRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.getCharacterLatestIdByNameWithHttpInfo(param.name, options).toPromise();
} | /**
* Get latest characterId by character name.
* Get Latest Character Id by Name
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2475-L2477 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getCharacterLatestIdByName | public getCharacterLatestIdByName(param: CharacterApiGetCharacterLatestIdByNameRequest, options?: Configuration): Promise<number> {
return this.api.getCharacterLatestIdByName(param.name, options).toPromise();
} | /**
* Get latest characterId by character name.
* Get Latest Character Id by Name
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2484-L2486 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getCharacterSummaryWithHttpInfo | public getCharacterSummaryWithHttpInfo(param: CharacterApiGetCharacterSummaryRequest, options?: Configuration): Promise<HttpInfo<CharacterSummaryDTO>> {
return this.api.getCharacterSummaryWithHttpInfo(param.characterId, options).toPromise();
} | /**
* Get character summary information.
* Get Character Summary
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2493-L2495 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getCharacterSummary | public getCharacterSummary(param: CharacterApiGetCharacterSummaryRequest, options?: Configuration): Promise<CharacterSummaryDTO> {
return this.api.getCharacterSummary(param.characterId, options).toPromise();
} | /**
* Get character summary information.
* Get Character Summary
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2502-L2504 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getDefaultCharacterBackendWithHttpInfo | public getDefaultCharacterBackendWithHttpInfo(param: CharacterApiGetDefaultCharacterBackendRequest, options?: Configuration): Promise<HttpInfo<CharacterBackendDetailsDTO>> {
return this.api.getDefaultCharacterBackendWithHttpInfo(param.characterUid, options).toPromise();
} | /**
* Get the default backend configuration.
* Get Default Character Backend
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2511-L2513 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.getDefaultCharacterBackend | public getDefaultCharacterBackend(param: CharacterApiGetDefaultCharacterBackendRequest, options?: Configuration): Promise<CharacterBackendDetailsDTO> {
return this.api.getDefaultCharacterBackend(param.characterUid, options).toPromise();
} | /**
* Get the default backend configuration.
* Get Default Character Backend
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2520-L2522 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.importCharacterWithHttpInfo | public importCharacterWithHttpInfo(param: CharacterApiImportCharacterRequest, options?: Configuration): Promise<HttpInfo<number>> {
return this.api.importCharacterWithHttpInfo(param.file, options).toPromise();
} | /**
* Import character configuration from a tar.gz file.
* Import Character Configuration
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2529-L2531 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.importCharacter | public importCharacter(param: CharacterApiImportCharacterRequest, options?: Configuration): Promise<number> {
return this.api.importCharacter(param.file, options).toPromise();
} | /**
* Import character configuration from a tar.gz file.
* Import Character Configuration
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2538-L2540 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.listCharacterBackendIdsWithHttpInfo | public listCharacterBackendIdsWithHttpInfo(param: CharacterApiListCharacterBackendIdsRequest, options?: Configuration): Promise<HttpInfo<Array<string>>> {
return this.api.listCharacterBackendIdsWithHttpInfo(param.characterUid, options).toPromise();
} | /**
* List character backend identifiers.
* List Character Backend ids
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2547-L2549 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
freechat | github_2023 | freechat-fun | typescript | ObjectCharacterApi.listCharacterBackendIds | public listCharacterBackendIds(param: CharacterApiListCharacterBackendIdsRequest, options?: Configuration): Promise<Array<string>> {
return this.api.listCharacterBackendIds(param.characterUid, options).toPromise();
} | /**
* List character backend identifiers.
* List Character Backend ids
* @param param the request object
*/ | https://github.com/freechat-fun/freechat/blob/cb80c3708b85cf52c02a91bdc0c9e9ddc14856db/freechat-sdk/typescript/types/ObjectParamAPI.ts#L2556-L2558 | cb80c3708b85cf52c02a91bdc0c9e9ddc14856db |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.