diff --git a/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts b/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts index 0ed8a3a3d..2a9259506 100644 --- a/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts +++ b/packages_generated/qaas/src/v1alpha1/marshalling.gen.ts @@ -140,10 +140,13 @@ const unmarshalPlatformBookingRequirement = ( } return { + maxBookingPerDay: data.max_booking_per_day, + maxBookingPerWeek: data.max_booking_per_week, maxCancellationDuration: data.max_cancellation_duration, maxDuration: data.max_duration, maxPlanificationDuration: data.max_planification_duration, minDuration: data.min_duration, + minPlanificationDuration: data.min_planification_duration, } as PlatformBookingRequirement } diff --git a/packages_generated/qaas/src/v1alpha1/types.gen.ts b/packages_generated/qaas/src/v1alpha1/types.gen.ts index d74d97e78..c7c66b92f 100644 --- a/packages_generated/qaas/src/v1alpha1/types.gen.ts +++ b/packages_generated/qaas/src/v1alpha1/types.gen.ts @@ -150,6 +150,18 @@ export interface PlatformBookingRequirement { * Allowed planification time from now where the platform can be booked in the future. */ maxPlanificationDuration?: string + /** + * Minimum planification time before a platform can be booked. + */ + minPlanificationDuration?: string + /** + * Maximum amount of booking allowed for one organization per week. + */ + maxBookingPerWeek: number + /** + * Maximum amount of booking allowed for one organization per day. + */ + maxBookingPerDay: number } export interface PlatformHardware {