Skip to content

Commit f2c6d4a

Browse files
authored
feat(webhosting): add addon domains limit to Product (#868)
1 parent 5fe712c commit f2c6d4a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ const unmarshalOfferProduct = (data: unknown) => {
5757
emailAccountsQuota: data.email_accounts_quota,
5858
emailStorageQuota: data.email_storage_quota,
5959
hostingStorageQuota: data.hosting_storage_quota,
60+
maxAddonDomains: data.max_addon_domains,
6061
name: data.name,
6162
option: data.option,
6263
ram: data.ram,

packages/clients/src/api/webhosting/v1alpha1/types.gen.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,13 +168,22 @@ export interface OfferProduct {
168168
name: string
169169
/** Product option. */
170170
option: boolean
171+
/** Limit number of email accounts. */
171172
emailAccountsQuota: number
173+
/** Limit quantity of email storage in gigabytes. */
172174
emailStorageQuota: number
175+
/** Limit number of databases. */
173176
databasesQuota: number
177+
/** Limit quantity of hosting storage in gigabytes. */
174178
hostingStorageQuota: number
179+
/** Whether or not support is included. */
175180
supportIncluded: boolean
181+
/** Limit number of virtual CPU. */
176182
vCpu: number
183+
/** Limit quantity of memory in gigabytes. */
177184
ram: number
185+
/** Limit number of add-on domains. */
186+
maxAddonDomains: number
178187
}
179188

180189
export type CreateHostingRequest = {

0 commit comments

Comments
 (0)