Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages_generated/qaas/src/v1alpha1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export const unmarshalBooking = (data: unknown): Booking => {
progressMessage: data.progress_message,
startedAt: unmarshalDate(data.started_at),
status: data.status,
timeZone: data.time_zone,
updatedAt: unmarshalDate(data.updated_at),
} as Booking
}
Expand Down Expand Up @@ -498,6 +499,7 @@ const marshalCreateSessionRequestBookingDemand = (
description: request.description,
finished_at: request.finishedAt,
started_at: request.startedAt,
time_zone: request.timeZone,
})

export const marshalCreateSessionRequest = (
Expand Down
5 changes: 5 additions & 0 deletions packages_generated/qaas/src/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ export interface CreateSessionRequestBookingDemand {
startedAt?: Date
finishedAt?: Date
description?: string
timeZone?: string
}

export interface Application {
Expand Down Expand Up @@ -268,6 +269,10 @@ export interface Booking {
* Any progress message of the booking.
*/
progressMessage: string
/**
* Time zone for the booking schedule, in tz database format (e.g. 'Europe/Paris').
*/
timeZone?: string
}

export interface JobResult {
Expand Down
Loading