File tree 2 files changed +6
-0
lines changed
packages/clients/src/api/webhosting/v1 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -377,8 +377,10 @@ const unmarshalHostingSummary = (data: unknown): HostingSummary => {
377
377
378
378
return {
379
379
createdAt : unmarshalDate ( data . created_at ) ,
380
+ dnsStatus : data . dns_status ,
380
381
domain : data . domain ,
381
382
id : data . id ,
383
+ offerName : data . offer_name ,
382
384
projectId : data . project_id ,
383
385
protected : data . protected ,
384
386
region : data . region ,
Original file line number Diff line number Diff line change @@ -243,6 +243,10 @@ export interface HostingSummary {
243
243
domain : string
244
244
/** Whether the hosting is protected or not. */
245
245
protected : boolean
246
+ /** DNS status of the Web Hosting plan. */
247
+ dnsStatus : DnsRecordsStatus
248
+ /** Name of the active offer for the Web Hosting plan. */
249
+ offerName : string
246
250
/** Region where the Web Hosting plan is hosted. */
247
251
region : Region
248
252
}
You can’t perform that action at this time.
0 commit comments