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 @@ -162,6 +162,7 @@ const unmarshalPublicCatalogProductPropertiesAppleSilicon = (

return {
range: data.range,
serverType: data.server_type,
} as PublicCatalogProductPropertiesAppleSilicon
}

Expand Down Expand Up @@ -190,6 +191,7 @@ const unmarshalPublicCatalogProductPropertiesDedibox = (
}

return {
offerId: data.offer_id,
range: data.range,
} as PublicCatalogProductPropertiesDedibox
}
Expand All @@ -204,6 +206,7 @@ const unmarshalPublicCatalogProductPropertiesElasticMetal = (
}

return {
offerId: data.offer_id,
range: data.range,
} as PublicCatalogProductPropertiesElasticMetal
}
Expand Down
12 changes: 12 additions & 0 deletions packages_generated/product_catalog/src/v2alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ export interface PublicCatalogProductPropertiesAppleSilicon {
* The range of the Apple Silicon server.
*/
range: string
/**
* The server type of the Apple Silicon server.
*/
serverType: string
}

export interface PublicCatalogProductPropertiesBlockStorage {
Expand All @@ -203,13 +207,21 @@ export interface PublicCatalogProductPropertiesDedibox {
* The range of the Dedibox server.
*/
range: string
/**
* The offer ID of the Dedibox server.
*/
offerId: number
}

export interface PublicCatalogProductPropertiesElasticMetal {
/**
* The range of the Elastic Metal server.
*/
range: string
/**
* The offer ID of the Elastic Metal server.
*/
offerId: string
}

export interface PublicCatalogProductPropertiesHardware {
Expand Down
Loading