@@ -161,7 +161,7 @@ export interface PlatformControlPanel {
161161 */
162162 name : string
163163 /**
164- * URL to connect to cPanel dashboard and to Webmail interface.
164+ * URL to connect to control panel dashboard and to Webmail interface.
165165 */
166166 urls ?: PlatformControlPanelUrls
167167}
@@ -265,17 +265,21 @@ export interface Nameserver {
265265
266266export interface HostingUser {
267267 /**
268- * Main Web Hosting cPanel username.
268+ * Main Web Hosting control panel username.
269269 */
270270 username : string
271271 /**
272- * One-time-password used for the first login or reset password, empty after first use.
272+ * @deprecated One-time-password used for the first login to the control panel, cleared after first use (deprecated, use password_b64 instead) .
273273 */
274274 oneTimePassword ?: string
275275 /**
276276 * Contact email used for the hosting.
277277 */
278278 contactEmail : string
279+ /**
280+ * One-time-password used for the first login to the control panel, cleared after first use, encoded in base64.
281+ */
282+ oneTimePasswordB64 ?: string
279283}
280284
281285export interface Offer {
@@ -1400,9 +1404,13 @@ export type OfferApiListOffersRequest = {
14001404
14011405export interface ResetHostingPasswordResponse {
14021406 /**
1403- * New temporary password.
1407+ * @deprecated New temporary password (deprecated, use password_b64 instead).
1408+ */
1409+ oneTimePassword ?: string
1410+ /**
1411+ * New temporary password, encoded in base64.
14041412 */
1405- oneTimePassword : string
1413+ oneTimePasswordB64 : string
14061414}
14071415
14081416export interface ResourceSummary {
0 commit comments