diff --git a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts index d9bf11b80..b7bb27d13 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts @@ -97,6 +97,7 @@ export const unmarshalHosting = (data: unknown) => { dnsStatus: data.dns_status, domain: data.domain, id: data.id, + offerEndOfLife: data.offer_end_of_life, offerId: data.offer_id, offerName: data.offer_name, options: unmarshalArrayOfObject(data.options, unmarshalHostingOption), @@ -136,6 +137,7 @@ const unmarshalOffer = (data: unknown) => { return { available: data.available, billingOperationPath: data.billing_operation_path, + endOfLife: data.end_of_life, id: data.id, price: data.price ? unmarshalMoney(data.price) : undefined, product: data.product ? unmarshalOfferProduct(data.product) : undefined, diff --git a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts index 5bca7f520..68d2ad441 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts @@ -98,6 +98,8 @@ export interface Hosting { cpanelUrls?: HostingCpanelUrls /** Main Web Hosting cPanel username. */ username: string + /** Indicates if the hosting offer has reached its end of life. */ + offerEndOfLife: boolean /** Region where the Web Hosting plan is hosted. */ region: Region } @@ -156,6 +158,8 @@ export interface Offer { available: boolean /** Quota warnings, if the offer is not available for the specified hosting_id. */ quotaWarnings: OfferQuotaWarning[] + /** Indicates if the offer has reached its end of life. */ + endOfLife: boolean } /** Offer. product. */