Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ const unmarshalHostingSummary = (data: unknown): HostingSummary => {
}

return {
createdAt: unmarshalDate(data.created_at),
domain: data.domain,
id: data.id,
projectId: data.project_id,
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/webhosting/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ export interface HostingSummary {
id: string
/** ID of the Scaleway Project the Web Hosting plan belongs to. */
projectId: string
/** Date on which the Web Hosting plan was created. */
createdAt?: Date
/** Date on which the Web Hosting plan was last updated. */
updatedAt?: Date
/** Status of the Web Hosting plan. */
Expand Down
Loading