diff --git a/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts b/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts index 8b94f6bdf..4c95c120d 100644 --- a/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts +++ b/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts @@ -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 } @@ -498,6 +499,7 @@ const marshalCreateSessionRequestBookingDemand = ( description: request.description, finished_at: request.finishedAt, started_at: request.startedAt, + time_zone: request.timeZone, }) export const marshalCreateSessionRequest = ( diff --git a/packages_generated/qaas/src/v1alpha1/types.gen.ts b/packages_generated/qaas/src/v1alpha1/types.gen.ts index c7c66b92f..b7e6f50d8 100644 --- a/packages_generated/qaas/src/v1alpha1/types.gen.ts +++ b/packages_generated/qaas/src/v1alpha1/types.gen.ts @@ -210,6 +210,7 @@ export interface CreateSessionRequestBookingDemand { startedAt?: Date finishedAt?: Date description?: string + timeZone?: string } export interface Application { @@ -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 {