mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-16 08:25:18 +02:00
chore: remove looptalk (#299)
* chore: remove looptalk Remove looptalk in the current version. We will be rethinking looptalk in a fresh way. * chore: formatting fix
This commit is contained in:
parent
0523dcb079
commit
45b00cd5d0
34 changed files with 214 additions and 4634 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -872,34 +872,6 @@ export type CreateCredentialRequest = {
|
|||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* CreateLoadTestRequest
|
||||
*/
|
||||
export type CreateLoadTestRequest = {
|
||||
/**
|
||||
* Name Prefix
|
||||
*/
|
||||
name_prefix: string;
|
||||
/**
|
||||
* Actor Workflow Id
|
||||
*/
|
||||
actor_workflow_id: number;
|
||||
/**
|
||||
* Adversary Workflow Id
|
||||
*/
|
||||
adversary_workflow_id: number;
|
||||
/**
|
||||
* Test Count
|
||||
*/
|
||||
test_count: number;
|
||||
/**
|
||||
* Config
|
||||
*/
|
||||
config?: {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* CreateServiceKeyRequest
|
||||
*/
|
||||
|
|
@ -940,30 +912,6 @@ export type CreateServiceKeyResponse = {
|
|||
expires_at?: string | null;
|
||||
};
|
||||
|
||||
/**
|
||||
* CreateTestSessionRequest
|
||||
*/
|
||||
export type CreateTestSessionRequest = {
|
||||
/**
|
||||
* Name
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Actor Workflow Id
|
||||
*/
|
||||
actor_workflow_id: number;
|
||||
/**
|
||||
* Adversary Workflow Id
|
||||
*/
|
||||
adversary_workflow_id: number;
|
||||
/**
|
||||
* Config
|
||||
*/
|
||||
config?: {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* CreateToolRequest
|
||||
*
|
||||
|
|
@ -2111,38 +2059,6 @@ export type LastCampaignSettingsResponse = {
|
|||
circuit_breaker?: CircuitBreakerConfigResponse | null;
|
||||
};
|
||||
|
||||
/**
|
||||
* LoadTestStatsResponse
|
||||
*/
|
||||
export type LoadTestStatsResponse = {
|
||||
/**
|
||||
* Total
|
||||
*/
|
||||
total: number;
|
||||
/**
|
||||
* Pending
|
||||
*/
|
||||
pending: number;
|
||||
/**
|
||||
* Running
|
||||
*/
|
||||
running: number;
|
||||
/**
|
||||
* Completed
|
||||
*/
|
||||
completed: number;
|
||||
/**
|
||||
* Failed
|
||||
*/
|
||||
failed: number;
|
||||
/**
|
||||
* Sessions
|
||||
*/
|
||||
sessions: Array<{
|
||||
[key: string]: unknown;
|
||||
}>;
|
||||
};
|
||||
|
||||
/**
|
||||
* LoginRequest
|
||||
*/
|
||||
|
|
@ -3498,68 +3414,6 @@ export type TelnyxConfigurationResponse = {
|
|||
from_numbers: Array<string>;
|
||||
};
|
||||
|
||||
/**
|
||||
* TestSessionResponse
|
||||
*/
|
||||
export type TestSessionResponse = {
|
||||
/**
|
||||
* Id
|
||||
*/
|
||||
id: number;
|
||||
/**
|
||||
* Name
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Status
|
||||
*/
|
||||
status: string;
|
||||
/**
|
||||
* Actor Workflow Id
|
||||
*/
|
||||
actor_workflow_id: number;
|
||||
/**
|
||||
* Adversary Workflow Id
|
||||
*/
|
||||
adversary_workflow_id: number;
|
||||
/**
|
||||
* Load Test Group Id
|
||||
*/
|
||||
load_test_group_id: string | null;
|
||||
/**
|
||||
* Test Index
|
||||
*/
|
||||
test_index: number | null;
|
||||
/**
|
||||
* Config
|
||||
*/
|
||||
config: {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
/**
|
||||
* Results
|
||||
*/
|
||||
results: {
|
||||
[key: string]: unknown;
|
||||
} | null;
|
||||
/**
|
||||
* Error
|
||||
*/
|
||||
error: string | null;
|
||||
/**
|
||||
* Created At
|
||||
*/
|
||||
created_at: string;
|
||||
/**
|
||||
* Started At
|
||||
*/
|
||||
started_at: string | null;
|
||||
/**
|
||||
* Completed At
|
||||
*/
|
||||
completed_at: string | null;
|
||||
};
|
||||
|
||||
/**
|
||||
* TimeSlotRequest
|
||||
*/
|
||||
|
|
@ -9139,397 +8993,6 @@ export type ReactivateServiceKeyApiV1UserServiceKeysServiceKeyIdReactivatePutRes
|
|||
200: unknown;
|
||||
};
|
||||
|
||||
export type ListTestSessionsApiV1LooptalkTestSessionsGetData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path?: never;
|
||||
query?: {
|
||||
/**
|
||||
* Status
|
||||
*/
|
||||
status?: string | null;
|
||||
/**
|
||||
* Load Test Group Id
|
||||
*/
|
||||
load_test_group_id?: string | null;
|
||||
/**
|
||||
* Limit
|
||||
*/
|
||||
limit?: number;
|
||||
/**
|
||||
* Offset
|
||||
*/
|
||||
offset?: number;
|
||||
};
|
||||
url: '/api/v1/looptalk/test-sessions';
|
||||
};
|
||||
|
||||
export type ListTestSessionsApiV1LooptalkTestSessionsGetErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type ListTestSessionsApiV1LooptalkTestSessionsGetError = ListTestSessionsApiV1LooptalkTestSessionsGetErrors[keyof ListTestSessionsApiV1LooptalkTestSessionsGetErrors];
|
||||
|
||||
export type ListTestSessionsApiV1LooptalkTestSessionsGetResponses = {
|
||||
/**
|
||||
* Response List Test Sessions Api V1 Looptalk Test Sessions Get
|
||||
*
|
||||
* Successful Response
|
||||
*/
|
||||
200: Array<TestSessionResponse>;
|
||||
};
|
||||
|
||||
export type ListTestSessionsApiV1LooptalkTestSessionsGetResponse = ListTestSessionsApiV1LooptalkTestSessionsGetResponses[keyof ListTestSessionsApiV1LooptalkTestSessionsGetResponses];
|
||||
|
||||
export type CreateTestSessionApiV1LooptalkTestSessionsPostData = {
|
||||
body: CreateTestSessionRequest;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path?: never;
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/test-sessions';
|
||||
};
|
||||
|
||||
export type CreateTestSessionApiV1LooptalkTestSessionsPostErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type CreateTestSessionApiV1LooptalkTestSessionsPostError = CreateTestSessionApiV1LooptalkTestSessionsPostErrors[keyof CreateTestSessionApiV1LooptalkTestSessionsPostErrors];
|
||||
|
||||
export type CreateTestSessionApiV1LooptalkTestSessionsPostResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: TestSessionResponse;
|
||||
};
|
||||
|
||||
export type CreateTestSessionApiV1LooptalkTestSessionsPostResponse = CreateTestSessionApiV1LooptalkTestSessionsPostResponses[keyof CreateTestSessionApiV1LooptalkTestSessionsPostResponses];
|
||||
|
||||
export type GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path: {
|
||||
/**
|
||||
* Test Session Id
|
||||
*/
|
||||
test_session_id: number;
|
||||
};
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/test-sessions/{test_session_id}';
|
||||
};
|
||||
|
||||
export type GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetError = GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetErrors[keyof GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetErrors];
|
||||
|
||||
export type GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: TestSessionResponse;
|
||||
};
|
||||
|
||||
export type GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetResponse = GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetResponses[keyof GetTestSessionApiV1LooptalkTestSessionsTestSessionIdGetResponses];
|
||||
|
||||
export type StartTestSessionApiV1LooptalkTestSessionsTestSessionIdStartPostData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path: {
|
||||
/**
|
||||
* Test Session Id
|
||||
*/
|
||||
test_session_id: number;
|
||||
};
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/test-sessions/{test_session_id}/start';
|
||||
};
|
||||
|
||||
export type StartTestSessionApiV1LooptalkTestSessionsTestSessionIdStartPostErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type StartTestSessionApiV1LooptalkTestSessionsTestSessionIdStartPostError = StartTestSessionApiV1LooptalkTestSessionsTestSessionIdStartPostErrors[keyof StartTestSessionApiV1LooptalkTestSessionsTestSessionIdStartPostErrors];
|
||||
|
||||
export type StartTestSessionApiV1LooptalkTestSessionsTestSessionIdStartPostResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: unknown;
|
||||
};
|
||||
|
||||
export type StopTestSessionApiV1LooptalkTestSessionsTestSessionIdStopPostData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path: {
|
||||
/**
|
||||
* Test Session Id
|
||||
*/
|
||||
test_session_id: number;
|
||||
};
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/test-sessions/{test_session_id}/stop';
|
||||
};
|
||||
|
||||
export type StopTestSessionApiV1LooptalkTestSessionsTestSessionIdStopPostErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type StopTestSessionApiV1LooptalkTestSessionsTestSessionIdStopPostError = StopTestSessionApiV1LooptalkTestSessionsTestSessionIdStopPostErrors[keyof StopTestSessionApiV1LooptalkTestSessionsTestSessionIdStopPostErrors];
|
||||
|
||||
export type StopTestSessionApiV1LooptalkTestSessionsTestSessionIdStopPostResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: unknown;
|
||||
};
|
||||
|
||||
export type GetTestSessionConversationApiV1LooptalkTestSessionsTestSessionIdConversationGetData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path: {
|
||||
/**
|
||||
* Test Session Id
|
||||
*/
|
||||
test_session_id: number;
|
||||
};
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/test-sessions/{test_session_id}/conversation';
|
||||
};
|
||||
|
||||
export type GetTestSessionConversationApiV1LooptalkTestSessionsTestSessionIdConversationGetErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type GetTestSessionConversationApiV1LooptalkTestSessionsTestSessionIdConversationGetError = GetTestSessionConversationApiV1LooptalkTestSessionsTestSessionIdConversationGetErrors[keyof GetTestSessionConversationApiV1LooptalkTestSessionsTestSessionIdConversationGetErrors];
|
||||
|
||||
export type GetTestSessionConversationApiV1LooptalkTestSessionsTestSessionIdConversationGetResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: unknown;
|
||||
};
|
||||
|
||||
export type CreateLoadTestApiV1LooptalkLoadTestsPostData = {
|
||||
body: CreateLoadTestRequest;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path?: never;
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/load-tests';
|
||||
};
|
||||
|
||||
export type CreateLoadTestApiV1LooptalkLoadTestsPostErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type CreateLoadTestApiV1LooptalkLoadTestsPostError = CreateLoadTestApiV1LooptalkLoadTestsPostErrors[keyof CreateLoadTestApiV1LooptalkLoadTestsPostErrors];
|
||||
|
||||
export type CreateLoadTestApiV1LooptalkLoadTestsPostResponses = {
|
||||
/**
|
||||
* Response Create Load Test Api V1 Looptalk Load Tests Post
|
||||
*
|
||||
* Successful Response
|
||||
*/
|
||||
200: {
|
||||
[key: string]: unknown;
|
||||
};
|
||||
};
|
||||
|
||||
export type CreateLoadTestApiV1LooptalkLoadTestsPostResponse = CreateLoadTestApiV1LooptalkLoadTestsPostResponses[keyof CreateLoadTestApiV1LooptalkLoadTestsPostResponses];
|
||||
|
||||
export type GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path: {
|
||||
/**
|
||||
* Load Test Group Id
|
||||
*/
|
||||
load_test_group_id: string;
|
||||
};
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/load-tests/{load_test_group_id}/stats';
|
||||
};
|
||||
|
||||
export type GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetError = GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetErrors[keyof GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetErrors];
|
||||
|
||||
export type GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: LoadTestStatsResponse;
|
||||
};
|
||||
|
||||
export type GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetResponse = GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetResponses[keyof GetLoadTestStatsApiV1LooptalkLoadTestsLoadTestGroupIdStatsGetResponses];
|
||||
|
||||
export type GetActiveTestsApiV1LooptalkActiveTestsGetData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
/**
|
||||
* Authorization
|
||||
*/
|
||||
authorization?: string | null;
|
||||
/**
|
||||
* X-Api-Key
|
||||
*/
|
||||
'X-API-Key'?: string | null;
|
||||
};
|
||||
path?: never;
|
||||
query?: never;
|
||||
url: '/api/v1/looptalk/active-tests';
|
||||
};
|
||||
|
||||
export type GetActiveTestsApiV1LooptalkActiveTestsGetErrors = {
|
||||
/**
|
||||
* Not found
|
||||
*/
|
||||
404: unknown;
|
||||
/**
|
||||
* Validation Error
|
||||
*/
|
||||
422: HttpValidationError;
|
||||
};
|
||||
|
||||
export type GetActiveTestsApiV1LooptalkActiveTestsGetError = GetActiveTestsApiV1LooptalkActiveTestsGetErrors[keyof GetActiveTestsApiV1LooptalkActiveTestsGetErrors];
|
||||
|
||||
export type GetActiveTestsApiV1LooptalkActiveTestsGetResponses = {
|
||||
/**
|
||||
* Successful Response
|
||||
*/
|
||||
200: unknown;
|
||||
};
|
||||
|
||||
export type GetCurrentPeriodUsageApiV1OrganizationsUsageCurrentPeriodGetData = {
|
||||
body?: never;
|
||||
headers?: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue