Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fdewas-aneo committed Feb 19, 2024
1 parent d534f25 commit f7fffb1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export {
export { ResultsClient } from './generated/results-service.pbsc'
export { SessionStatus } from './generated/session-status.pb'
export {
CancelSessionRequest, CancelSessionResponse,
CancelSessionRequest, CancelSessionResponse,
GetSessionRequest, GetSessionResponse,
ListSessionsRequest, ListSessionsResponse,
PauseSessionRequest, PauseSessionResponse,
Expand Down Expand Up @@ -121,7 +121,7 @@ export {
ListTasksRequest,
ListTasksResponse, TaskDetailed,
TaskSummary,
ListTasksDetailedResponse, SubmitTasksRequest, SubmitTasksResponse
ListTasksDetailedResponse, SubmitTasksRequest, SubmitTasksResponse,
} from './generated/tasks-common.pb'
export {
TaskField,
Expand Down
20 changes: 10 additions & 10 deletions packages/web/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ export {
ApplicationField,
ApplicationRawEnumField,
ApplicationRawField,
applicationRawEnumFieldFromJSON, applicationRawEnumFieldToJSON
applicationRawEnumFieldFromJSON, applicationRawEnumFieldToJSON,
} from './generated/applications_fields'
export {
FilterField as ApplicationFilterField,
Filters as ApplicationFilters,
FiltersAnd as ApplicationFiltersAnd,
} from './generated/applications_filters'
export { ApplicationsClientImpl as ApplicationsClient, ApplicationsServiceName, } from './generated/applications_service'
export { ApplicationsClientImpl as ApplicationsClient, ApplicationsServiceName } from './generated/applications_service'
export {
GetCurrentUserRequest,
GetCurrentUserResponse,
User,
} from './generated/auth_common'
export { AuthenticationClientImpl as AuthenticationClient, AuthenticationServiceName, } from './generated/auth_service'
export { AuthenticationClientImpl as AuthenticationClient, AuthenticationServiceName } from './generated/auth_service'
export {
EventSubscriptionRequest,
EventSubscriptionResponse,
Expand Down Expand Up @@ -52,7 +52,7 @@ export {
filterDurationOperatorFromJSON, filterDurationOperatorToJSON,
filterNumberOperatorFromJSON, filterNumberOperatorToJSON,
filterStatusOperatorFromJSON, filterStatusOperatorToJSON,
filterStringOperatorFromJSON, filterStringOperatorToJSON
filterStringOperatorFromJSON, filterStringOperatorToJSON,
} from './generated/filters_common'
export { StatusCount, TaskOptions } from './generated/objects'
export {
Expand All @@ -67,7 +67,7 @@ export {
export {
PartitionField, PartitionRawEnumField,
PartitionRawField,
partitionRawEnumFieldFromJSON, partitionRawEnumFieldToJSON
partitionRawEnumFieldFromJSON, partitionRawEnumFieldToJSON,
} from './generated/partitions_fields'
export {
FilterField as PartitionFilterField,
Expand Down Expand Up @@ -95,7 +95,7 @@ export {
export {
ResultField, ResultRawEnumField,
ResultRawField,
resultRawEnumFieldFromJSON, resultRawEnumFieldToJSON
resultRawEnumFieldFromJSON, resultRawEnumFieldToJSON,
} from './generated/results_fields'
export {
FilterField as ResultFilterField,
Expand All @@ -106,7 +106,7 @@ export {
export { ResultsClientImpl as ResultsClient, ResultsServiceName } from './generated/results_service'
export { SessionStatus, sessionStatusFromJSON, sessionStatusToJSON } from './generated/session_status'
export {
CancelSessionRequest, CancelSessionResponse,
CancelSessionRequest, CancelSessionResponse,
GetSessionRequest, GetSessionResponse,
ListSessionsRequest, ListSessionsResponse,
PauseSessionRequest, PauseSessionResponse,
Expand All @@ -126,7 +126,7 @@ export {
TaskOptionField as SessionTaskOptionField,
TaskOptionGenericField as SessionTaskOptionGenericField,
sessionRawEnumFieldFromJSON, sessionRawEnumFieldToJSON,
taskOptionEnumFieldFromJSON, taskOptionEnumFieldToJSON
taskOptionEnumFieldFromJSON, taskOptionEnumFieldToJSON,
} from './generated/sessions_fields'
export {
FilterField as SessionFilterField,
Expand Down Expand Up @@ -157,7 +157,7 @@ export {
TaskOptionEnumField, TaskOptionField,
TaskOptionGenericField, TaskSummaryEnumField,
TaskSummaryField,
taskSummaryEnumFieldFromJSON, taskSummaryEnumFieldToJSON
taskSummaryEnumFieldFromJSON, taskSummaryEnumFieldToJSON,
} from './generated/tasks_fields'
export {
FilterField as TaskFilterField,
Expand All @@ -172,6 +172,6 @@ export {
CheckHealthRequest,
CheckHealthResponse,
HealthStatusEnum,
healthStatusEnumFromJSON, healthStatusEnumToJSON
healthStatusEnumFromJSON, healthStatusEnumToJSON,
} from './generated/health_checks_common'
export { HealthChecksServiceClientImpl as HealthChecksServiceClient, HealthChecksServiceServiceName } from './generated/health_checks_service'

0 comments on commit f7fffb1

Please sign in to comment.