testapi
Table of contents
Enumerations
Classes
Interfaces
- ConfigurationParameters
- FunctionDescription
- IHistoryMessage
- IHistoryMessageListOptionalValue
- IMessage
- MessageWithTime
- ProblemDetails
- PromptCreateDTO
- PromptData
- PromptDataOptionalValue
- PromptPatchDTO
- PromptVersionCreateDTO
- PromptVersionDTO
- TestCaseCreateDTO
- TestCaseDTO
- TestCasePatchDTO
- TestCaseResultDTO
- TestCaseResultData
- TestCaseResultStatusDTO
- TestCaseRunCreateDTO
- TestCaseRunResponseDTO
- TestOptions
- TestOptionsOptionalValue
- TestPrompt
- TestPromptDTO
Functions
PromptApiAxiosParamCreator
▸ Const
PromptApiAxiosParamCreator(configuration?
: Configuration): object
PromptApi - axios parameter creator
export
Parameters:
Name | Type |
---|---|
configuration? | Configuration |
Returns: object
Name | Type |
---|---|
apiV1PromptGet | (skip? : number, take? : number, options : any) => Promise<RequestArgs> |
apiV1PromptIdDelete | (id : string, options : any) => Promise<RequestArgs> |
apiV1PromptIdGet | (id : string, options : any) => Promise<RequestArgs> |
apiV1PromptIdPatch | (id : string, promptPatchDTO? : PromptPatchDTO, options : any) => Promise<RequestArgs> |
apiV1PromptPost | (promptCreateDTO? : PromptCreateDTO, options : any) => Promise<RequestArgs> |
apiV1PromptPromptIdVersionsGet | (promptId : string, skip? : number, take? : number, options : any) => Promise<RequestArgs> |
apiV1PromptPromptIdVersionsPost | (promptId : string, promptVersionCreateDTO? : PromptVersionCreateDTO, options : any) => Promise<RequestArgs> |
apiV1PromptVersionIdGet | (id : string, options : any) => Promise<RequestArgs> |
apiV1PromptVersionsIdDelete | (id : string, options : any) => Promise<RequestArgs> |
PromptApiFactory
▸ Const
PromptApiFactory(configuration?
: Configuration, basePath?
: string, axios?
: AxiosInstance): object
PromptApi - factory interface
export
Parameters:
Name | Type |
---|---|
configuration? | Configuration |
basePath? | string |
axios? | AxiosInstance |
Returns: object
Name | Type |
---|---|
apiV1PromptGet | (skip? : number, take? : number, options? : any) => AxiosPromise<TestPromptDTO[]> |
apiV1PromptIdDelete | (id : string, options? : any) => AxiosPromise<TestPromptDTO> |
apiV1PromptIdGet | (id : string, options? : any) => AxiosPromise<TestPromptDTO> |
apiV1PromptIdPatch | (id : string, promptPatchDTO? : PromptPatchDTO, options? : any) => AxiosPromise<TestPrompt> |
apiV1PromptPost | (promptCreateDTO? : PromptCreateDTO, options? : any) => AxiosPromise<TestPrompt> |
apiV1PromptPromptIdVersionsGet | (promptId : string, skip? : number, take? : number, options? : any) => AxiosPromise<PromptVersionDTO[]> |
apiV1PromptPromptIdVersionsPost | (promptId : string, promptVersionCreateDTO? : PromptVersionCreateDTO, options? : any) => AxiosPromise<PromptVersionDTO> |
apiV1PromptVersionIdGet | (id : string, options? : any) => AxiosPromise<PromptVersionDTO> |
apiV1PromptVersionsIdDelete | (id : string, options? : any) => AxiosPromise<PromptVersionDTO> |
PromptApiFp
▸ Const
PromptApiFp(configuration?
: Configuration): object
PromptApi - functional programming interface
export
Parameters:
Name | Type |
---|---|
configuration? | Configuration |
Returns: object
Name | Type |
---|---|
apiV1PromptGet | (skip? : number, take? : number, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestPromptDTO[]>> |
apiV1PromptIdDelete | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestPromptDTO>> |
apiV1PromptIdGet | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestPromptDTO>> |
apiV1PromptIdPatch | (id : string, promptPatchDTO? : PromptPatchDTO, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestPrompt>> |
apiV1PromptPost | (promptCreateDTO? : PromptCreateDTO, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestPrompt>> |
apiV1PromptPromptIdVersionsGet | (promptId : string, skip? : number, take? : number, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<PromptVersionDTO[]>> |
apiV1PromptPromptIdVersionsPost | (promptId : string, promptVersionCreateDTO? : PromptVersionCreateDTO, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<PromptVersionDTO>> |
apiV1PromptVersionIdGet | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<PromptVersionDTO>> |
apiV1PromptVersionsIdDelete | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<PromptVersionDTO>> |
TestCaseApiAxiosParamCreator
▸ Const
TestCaseApiAxiosParamCreator(configuration?
: Configuration): object
TestCaseApi - axios parameter creator
export
Parameters:
Name | Type |
---|---|
configuration? | Configuration |
Returns: object
Name | Type |
---|---|
apiV1TestcaseIdDelete | (id : string, options : any) => Promise<RequestArgs> |
apiV1TestcaseIdGet | (id : string, options : any) => Promise<RequestArgs> |
apiV1TestcaseIdPatch | (id : string, testCasePatchDTO? : TestCasePatchDTO, options : any) => Promise<RequestArgs> |
apiV1TestcaseIdResultsGet | (id : string, skip? : number, take? : number, options : any) => Promise<RequestArgs> |
apiV1TestcaseListGet | (skip? : number, take? : number, promptId? : string, options : any) => Promise<RequestArgs> |
apiV1TestcasePost | (testCaseCreateDTO? : TestCaseCreateDTO, options : any) => Promise<RequestArgs> |
apiV1TestcaseResultIdGet | (id : string, options : any) => Promise<RequestArgs> |
apiV1TestcaseRunPost | (testCaseRunCreateDTO? : TestCaseRunCreateDTO, options : any) => Promise<RequestArgs> |
apiV1TestcaseRunsIdListGet | (id : string, skip? : number, take? : number, options : any) => Promise<RequestArgs> |
apiV1TestcaseRunsIdStatusGet | (id : string, options : any) => Promise<RequestArgs> |
TestCaseApiFactory
▸ Const
TestCaseApiFactory(configuration?
: Configuration, basePath?
: string, axios?
: AxiosInstance): object
TestCaseApi - factory interface
export
Parameters:
Name | Type |
---|---|
configuration? | Configuration |
basePath? | string |
axios? | AxiosInstance |
Returns: object
Name | Type |
---|---|
apiV1TestcaseIdDelete | (id : string, options? : any) => AxiosPromise<TestCaseDTO> |
apiV1TestcaseIdGet | (id : string, options? : any) => AxiosPromise<TestCaseDTO> |
apiV1TestcaseIdPatch | (id : string, testCasePatchDTO? : TestCasePatchDTO, options? : any) => AxiosPromise<TestCaseDTO> |
apiV1TestcaseIdResultsGet | (id : string, skip? : number, take? : number, options? : any) => AxiosPromise<TestCaseResultDTO[]> |
apiV1TestcaseListGet | (skip? : number, take? : number, promptId? : string, options? : any) => AxiosPromise<TestCaseDTO[]> |
apiV1TestcasePost | (testCaseCreateDTO? : TestCaseCreateDTO, options? : any) => AxiosPromise<TestCaseDTO> |
apiV1TestcaseResultIdGet | (id : string, options? : any) => AxiosPromise<TestCaseResultDTO> |
apiV1TestcaseRunPost | (testCaseRunCreateDTO? : TestCaseRunCreateDTO, options? : any) => AxiosPromise<TestCaseRunResponseDTO> |
apiV1TestcaseRunsIdListGet | (id : string, skip? : number, take? : number, options? : any) => AxiosPromise<TestCaseResultDTO[]> |
apiV1TestcaseRunsIdStatusGet | (id : string, options? : any) => AxiosPromise<TestCaseResultStatusDTO[]> |
TestCaseApiFp
▸ Const
TestCaseApiFp(configuration?
: Configuration): object
TestCaseApi - functional programming interface
export
Parameters:
Name | Type |
---|---|
configuration? | Configuration |
Returns: object
Name | Type |
---|---|
apiV1TestcaseIdDelete | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseDTO>> |
apiV1TestcaseIdGet | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseDTO>> |
apiV1TestcaseIdPatch | (id : string, testCasePatchDTO? : TestCasePatchDTO, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseDTO>> |
apiV1TestcaseIdResultsGet | (id : string, skip? : number, take? : number, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseResultDTO[]>> |
apiV1TestcaseListGet | (skip? : number, take? : number, promptId? : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseDTO[]>> |
apiV1TestcasePost | (testCaseCreateDTO? : TestCaseCreateDTO, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseDTO>> |
apiV1TestcaseResultIdGet | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseResultDTO>> |
apiV1TestcaseRunPost | (testCaseRunCreateDTO? : TestCaseRunCreateDTO, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseRunResponseDTO>> |
apiV1TestcaseRunsIdListGet | (id : string, skip? : number, take? : number, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseResultDTO[]>> |
apiV1TestcaseRunsIdStatusGet | (id : string, options? : any) => Promise<(axios? : AxiosInstance, basePath? : string) => AxiosPromise<TestCaseResultStatusDTO[]>> |