@newfold/huapi-js 2.2038.0 → 2.2048.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +33 -1
- package/src/index.js +27 -1
- package/src/index.msw.d.ts +3 -1
- package/src/index.msw.js +14 -2
- package/src/index.schemas.d.ts +543 -452
- package/src/index.schemas.js +1 -0
package/src/index.schemas.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* Hosting UAPI
|
|
5
5
|
* Hosting UAPI is an API to expose Hosting, Addons, and Site functionality to a customer-facing Front End such as (Account Manager).
|
|
6
|
-
* OpenAPI spec version: 1.
|
|
6
|
+
* OpenAPI spec version: 1.2048.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -430,6 +430,70 @@ export declare type SiteMalwareStatusV2200 = {
|
|
|
430
430
|
*/
|
|
431
431
|
scanner_state?: string | null;
|
|
432
432
|
};
|
|
433
|
+
/**
|
|
434
|
+
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
435
|
+
* @nullable
|
|
436
|
+
*/
|
|
437
|
+
export declare type SitesDomainsV2200DomainsItemSetupProgressValidateSslErrorTable = {
|
|
438
|
+
[key: string]: unknown;
|
|
439
|
+
} | null;
|
|
440
|
+
/**
|
|
441
|
+
* @nullable
|
|
442
|
+
*/
|
|
443
|
+
export declare type SitesDomainsV2200DomainsItemSetupProgress = {
|
|
444
|
+
/**
|
|
445
|
+
* Result of domain cdn validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
446
|
+
* @nullable
|
|
447
|
+
*/
|
|
448
|
+
validate_cdn?: number | null;
|
|
449
|
+
/**
|
|
450
|
+
* Most recent error logged during domain cdn validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
451
|
+
* @nullable
|
|
452
|
+
*/
|
|
453
|
+
validate_cdn_error?: string | null;
|
|
454
|
+
/**
|
|
455
|
+
* Result of domain dns validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
456
|
+
* @nullable
|
|
457
|
+
*/
|
|
458
|
+
validate_dns?: number | null;
|
|
459
|
+
/**
|
|
460
|
+
* Whether dns_auto_repair was run on this domain (1=true)
|
|
461
|
+
* @nullable
|
|
462
|
+
*/
|
|
463
|
+
validate_dns_auto_repair?: number | null;
|
|
464
|
+
/**
|
|
465
|
+
* Most recent error logged during domain dns validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
466
|
+
* @nullable
|
|
467
|
+
*/
|
|
468
|
+
validate_dns_error?: string | null;
|
|
469
|
+
/**
|
|
470
|
+
* Most recent error logged during domain validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
471
|
+
* @nullable
|
|
472
|
+
*/
|
|
473
|
+
validate_error?: string | null;
|
|
474
|
+
/**
|
|
475
|
+
* Result of domain ssl validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
476
|
+
* @nullable
|
|
477
|
+
*/
|
|
478
|
+
validate_ssl?: number | null;
|
|
479
|
+
/**
|
|
480
|
+
* Most recent error logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
481
|
+
* @nullable
|
|
482
|
+
*/
|
|
483
|
+
validate_ssl_error?: string | null;
|
|
484
|
+
/**
|
|
485
|
+
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
486
|
+
* @nullable
|
|
487
|
+
*/
|
|
488
|
+
validate_ssl_error_table?: SitesDomainsV2200DomainsItemSetupProgressValidateSslErrorTable;
|
|
489
|
+
} | null;
|
|
490
|
+
/**
|
|
491
|
+
* Job ids and names currently running on the domain
|
|
492
|
+
* @nullable
|
|
493
|
+
*/
|
|
494
|
+
export declare type SitesDomainsV2200DomainsItemJobs = {
|
|
495
|
+
[key: string]: unknown;
|
|
496
|
+
} | null;
|
|
433
497
|
export declare type SitesDomainsV2200DomainsItem = {
|
|
434
498
|
/** @nullable */
|
|
435
499
|
account_back_ref?: string | null;
|
|
@@ -508,70 +572,6 @@ export declare type SitesDomainsV2200 = {
|
|
|
508
572
|
page?: number;
|
|
509
573
|
total?: number;
|
|
510
574
|
};
|
|
511
|
-
/**
|
|
512
|
-
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
513
|
-
* @nullable
|
|
514
|
-
*/
|
|
515
|
-
export declare type SitesDomainsV2200DomainsItemSetupProgressValidateSslErrorTable = {
|
|
516
|
-
[key: string]: unknown;
|
|
517
|
-
} | null;
|
|
518
|
-
/**
|
|
519
|
-
* @nullable
|
|
520
|
-
*/
|
|
521
|
-
export declare type SitesDomainsV2200DomainsItemSetupProgress = {
|
|
522
|
-
/**
|
|
523
|
-
* Result of domain cdn validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
524
|
-
* @nullable
|
|
525
|
-
*/
|
|
526
|
-
validate_cdn?: number | null;
|
|
527
|
-
/**
|
|
528
|
-
* Most recent error logged during domain cdn validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
529
|
-
* @nullable
|
|
530
|
-
*/
|
|
531
|
-
validate_cdn_error?: string | null;
|
|
532
|
-
/**
|
|
533
|
-
* Result of domain dns validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
534
|
-
* @nullable
|
|
535
|
-
*/
|
|
536
|
-
validate_dns?: number | null;
|
|
537
|
-
/**
|
|
538
|
-
* Whether dns_auto_repair was run on this domain (1=true)
|
|
539
|
-
* @nullable
|
|
540
|
-
*/
|
|
541
|
-
validate_dns_auto_repair?: number | null;
|
|
542
|
-
/**
|
|
543
|
-
* Most recent error logged during domain dns validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
544
|
-
* @nullable
|
|
545
|
-
*/
|
|
546
|
-
validate_dns_error?: string | null;
|
|
547
|
-
/**
|
|
548
|
-
* Most recent error logged during domain validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
549
|
-
* @nullable
|
|
550
|
-
*/
|
|
551
|
-
validate_error?: string | null;
|
|
552
|
-
/**
|
|
553
|
-
* Result of domain ssl validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
554
|
-
* @nullable
|
|
555
|
-
*/
|
|
556
|
-
validate_ssl?: number | null;
|
|
557
|
-
/**
|
|
558
|
-
* Most recent error logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
559
|
-
* @nullable
|
|
560
|
-
*/
|
|
561
|
-
validate_ssl_error?: string | null;
|
|
562
|
-
/**
|
|
563
|
-
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
564
|
-
* @nullable
|
|
565
|
-
*/
|
|
566
|
-
validate_ssl_error_table?: SitesDomainsV2200DomainsItemSetupProgressValidateSslErrorTable;
|
|
567
|
-
} | null;
|
|
568
|
-
/**
|
|
569
|
-
* Job ids and names currently running on the domain
|
|
570
|
-
* @nullable
|
|
571
|
-
*/
|
|
572
|
-
export declare type SitesDomainsV2200DomainsItemJobs = {
|
|
573
|
-
[key: string]: unknown;
|
|
574
|
-
} | null;
|
|
575
575
|
export declare type SitesDomainsV2Params = {
|
|
576
576
|
scan?: boolean;
|
|
577
577
|
};
|
|
@@ -748,6 +748,16 @@ export declare type SitesListV2200ItemsItem = {
|
|
|
748
748
|
*/
|
|
749
749
|
version_ptr?: string | null;
|
|
750
750
|
};
|
|
751
|
+
export declare type PublicImagesV2200 = {
|
|
752
|
+
/** Limit the number of images returned */
|
|
753
|
+
limit?: PublicImagesV2200Limit;
|
|
754
|
+
/** Number of images returned */
|
|
755
|
+
n_rows?: PublicImagesV2200NRows;
|
|
756
|
+
/** Page number */
|
|
757
|
+
page?: PublicImagesV2200Page;
|
|
758
|
+
/** List of images */
|
|
759
|
+
rows?: PublicImagesV2200RowsItem[];
|
|
760
|
+
};
|
|
751
761
|
/**
|
|
752
762
|
* User image
|
|
753
763
|
* @nullable
|
|
@@ -908,16 +918,6 @@ export declare type PublicImagesV2200NRows = string | number;
|
|
|
908
918
|
* Limit the number of images returned
|
|
909
919
|
*/
|
|
910
920
|
export declare type PublicImagesV2200Limit = string | number;
|
|
911
|
-
export declare type PublicImagesV2200 = {
|
|
912
|
-
/** Limit the number of images returned */
|
|
913
|
-
limit?: PublicImagesV2200Limit;
|
|
914
|
-
/** Number of images returned */
|
|
915
|
-
n_rows?: PublicImagesV2200NRows;
|
|
916
|
-
/** Page number */
|
|
917
|
-
page?: PublicImagesV2200Page;
|
|
918
|
-
/** List of images */
|
|
919
|
-
rows?: PublicImagesV2200RowsItem[];
|
|
920
|
-
};
|
|
921
921
|
export declare type PublicImagesV2Params = {
|
|
922
922
|
/**
|
|
923
923
|
* Brand identifier (e.g. bluehost).
|
|
@@ -1034,6 +1034,30 @@ export declare type HostingSitesV2200UsedSitesDetails = {
|
|
|
1034
1034
|
/** Count of staging sites on specified hosting account */
|
|
1035
1035
|
staging_sites?: number;
|
|
1036
1036
|
};
|
|
1037
|
+
export declare type HostingSitesV2200 = {
|
|
1038
|
+
/**
|
|
1039
|
+
* Remaining number of sites the customer can create. Max sites - used sites. Null means 'unlimited'.
|
|
1040
|
+
* @nullable
|
|
1041
|
+
*/
|
|
1042
|
+
available_sites?: number | null;
|
|
1043
|
+
items?: HostingSitesV2200ItemsItem[];
|
|
1044
|
+
/** page size */
|
|
1045
|
+
limit?: number;
|
|
1046
|
+
/**
|
|
1047
|
+
* Maximum number of sites the customer can have. Null means 'unlimited'.
|
|
1048
|
+
* @nullable
|
|
1049
|
+
*/
|
|
1050
|
+
max_sites?: number | null;
|
|
1051
|
+
/** current page number */
|
|
1052
|
+
page?: number;
|
|
1053
|
+
/** total number of pages */
|
|
1054
|
+
pages?: number;
|
|
1055
|
+
/** total number of sites returned */
|
|
1056
|
+
total?: number;
|
|
1057
|
+
/** Current number of sites in use by the customer. its normal for this value to be different than the total number of sites in the list. */
|
|
1058
|
+
used_sites?: number;
|
|
1059
|
+
used_sites_details?: HostingSitesV2200UsedSitesDetails;
|
|
1060
|
+
};
|
|
1037
1061
|
/**
|
|
1038
1062
|
* @nullable
|
|
1039
1063
|
*/
|
|
@@ -1068,63 +1092,6 @@ export declare type HostingSitesV2200ItemsItemStaging = {
|
|
|
1068
1092
|
/** A list of staging sites of the current site */
|
|
1069
1093
|
sites?: number[];
|
|
1070
1094
|
} | null;
|
|
1071
|
-
export declare type HostingSitesV2200ItemsItemResourcesStorage = {
|
|
1072
|
-
/** @nullable */
|
|
1073
|
-
available?: number | null;
|
|
1074
|
-
/** @nullable */
|
|
1075
|
-
total?: number | null;
|
|
1076
|
-
unit?: string;
|
|
1077
|
-
/** @nullable */
|
|
1078
|
-
used?: number | null;
|
|
1079
|
-
};
|
|
1080
|
-
export declare type HostingSitesV2200ItemsItemResources = {
|
|
1081
|
-
storage?: HostingSitesV2200ItemsItemResourcesStorage;
|
|
1082
|
-
/** @nullable */
|
|
1083
|
-
workers?: number | null;
|
|
1084
|
-
};
|
|
1085
|
-
/**
|
|
1086
|
-
* @nullable
|
|
1087
|
-
*/
|
|
1088
|
-
export declare type HostingSitesV2200ItemsItemPendingUrlData = {
|
|
1089
|
-
/**
|
|
1090
|
-
* The root domain name
|
|
1091
|
-
* @nullable
|
|
1092
|
-
*/
|
|
1093
|
-
base_domain?: string | null;
|
|
1094
|
-
/**
|
|
1095
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
1096
|
-
* @nullable
|
|
1097
|
-
*/
|
|
1098
|
-
domain?: string | null;
|
|
1099
|
-
/**
|
|
1100
|
-
* The current pending_url's HAL Domain ID
|
|
1101
|
-
* @nullable
|
|
1102
|
-
*/
|
|
1103
|
-
domain_id?: number | null;
|
|
1104
|
-
/** @nullable */
|
|
1105
|
-
error?: string | null;
|
|
1106
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
1107
|
-
is_temp?: boolean;
|
|
1108
|
-
/**
|
|
1109
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
1110
|
-
* @nullable
|
|
1111
|
-
*/
|
|
1112
|
-
job_failed?: boolean | null;
|
|
1113
|
-
/** @nullable */
|
|
1114
|
-
stage?: string | null;
|
|
1115
|
-
/**
|
|
1116
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
1117
|
-
* @nullable
|
|
1118
|
-
*/
|
|
1119
|
-
wp_session?: string | null;
|
|
1120
|
-
} | null;
|
|
1121
|
-
/**
|
|
1122
|
-
* Job ids for the site
|
|
1123
|
-
* @nullable
|
|
1124
|
-
*/
|
|
1125
|
-
export declare type HostingSitesV2200ItemsItemJobs = {
|
|
1126
|
-
[key: string]: unknown;
|
|
1127
|
-
} | null;
|
|
1128
1095
|
export declare type HostingSitesV2200ItemsItem = {
|
|
1129
1096
|
/** @nullable */
|
|
1130
1097
|
account_back_ref?: string | null;
|
|
@@ -1220,30 +1187,63 @@ export declare type HostingSitesV2200ItemsItem = {
|
|
|
1220
1187
|
/** @nullable */
|
|
1221
1188
|
wp_multi_site?: HostingSitesV2200ItemsItemWpMultiSite;
|
|
1222
1189
|
};
|
|
1223
|
-
export declare type
|
|
1190
|
+
export declare type HostingSitesV2200ItemsItemResourcesStorage = {
|
|
1191
|
+
/** @nullable */
|
|
1192
|
+
available?: number | null;
|
|
1193
|
+
/** @nullable */
|
|
1194
|
+
total?: number | null;
|
|
1195
|
+
unit?: string;
|
|
1196
|
+
/** @nullable */
|
|
1197
|
+
used?: number | null;
|
|
1198
|
+
};
|
|
1199
|
+
export declare type HostingSitesV2200ItemsItemResources = {
|
|
1200
|
+
storage?: HostingSitesV2200ItemsItemResourcesStorage;
|
|
1201
|
+
/** @nullable */
|
|
1202
|
+
workers?: number | null;
|
|
1203
|
+
};
|
|
1204
|
+
/**
|
|
1205
|
+
* @nullable
|
|
1206
|
+
*/
|
|
1207
|
+
export declare type HostingSitesV2200ItemsItemPendingUrlData = {
|
|
1224
1208
|
/**
|
|
1225
|
-
*
|
|
1209
|
+
* The root domain name
|
|
1226
1210
|
* @nullable
|
|
1227
1211
|
*/
|
|
1228
|
-
|
|
1229
|
-
items?: HostingSitesV2200ItemsItem[];
|
|
1230
|
-
/** page size */
|
|
1231
|
-
limit?: number;
|
|
1212
|
+
base_domain?: string | null;
|
|
1232
1213
|
/**
|
|
1233
|
-
*
|
|
1214
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
1234
1215
|
* @nullable
|
|
1235
1216
|
*/
|
|
1236
|
-
|
|
1237
|
-
/**
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1217
|
+
domain?: string | null;
|
|
1218
|
+
/**
|
|
1219
|
+
* The current pending_url's HAL Domain ID
|
|
1220
|
+
* @nullable
|
|
1221
|
+
*/
|
|
1222
|
+
domain_id?: number | null;
|
|
1223
|
+
/** @nullable */
|
|
1224
|
+
error?: string | null;
|
|
1225
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
1226
|
+
is_temp?: boolean;
|
|
1227
|
+
/**
|
|
1228
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
1229
|
+
* @nullable
|
|
1230
|
+
*/
|
|
1231
|
+
job_failed?: boolean | null;
|
|
1232
|
+
/** @nullable */
|
|
1233
|
+
stage?: string | null;
|
|
1234
|
+
/**
|
|
1235
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
1236
|
+
* @nullable
|
|
1237
|
+
*/
|
|
1238
|
+
wp_session?: string | null;
|
|
1239
|
+
} | null;
|
|
1240
|
+
/**
|
|
1241
|
+
* Job ids for the site
|
|
1242
|
+
* @nullable
|
|
1243
|
+
*/
|
|
1244
|
+
export declare type HostingSitesV2200ItemsItemJobs = {
|
|
1245
|
+
[key: string]: unknown;
|
|
1246
|
+
} | null;
|
|
1247
1247
|
export declare type HostingSitesV2Params = {
|
|
1248
1248
|
limit?: number;
|
|
1249
1249
|
page?: number;
|
|
@@ -1295,6 +1295,12 @@ export declare type HostingDomainsUnassignV2Body = {
|
|
|
1295
1295
|
/** The site id to be unassigned */
|
|
1296
1296
|
site_id: number;
|
|
1297
1297
|
};
|
|
1298
|
+
export declare type HostingDomainsV2200 = {
|
|
1299
|
+
domains: HostingDomainsV2200DomainsItem[];
|
|
1300
|
+
limit?: number;
|
|
1301
|
+
page?: number;
|
|
1302
|
+
total?: number;
|
|
1303
|
+
};
|
|
1298
1304
|
/**
|
|
1299
1305
|
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
1300
1306
|
* @nullable
|
|
@@ -1431,12 +1437,6 @@ export declare type HostingDomainsV2200DomainsItem = {
|
|
|
1431
1437
|
*/
|
|
1432
1438
|
used_entri?: number | null;
|
|
1433
1439
|
};
|
|
1434
|
-
export declare type HostingDomainsV2200 = {
|
|
1435
|
-
domains: HostingDomainsV2200DomainsItem[];
|
|
1436
|
-
limit?: number;
|
|
1437
|
-
page?: number;
|
|
1438
|
-
total?: number;
|
|
1439
|
-
};
|
|
1440
1440
|
export declare type HostingDomainsV2TypesItem = typeof HostingDomainsV2TypesItem[keyof typeof HostingDomainsV2TypesItem];
|
|
1441
1441
|
export declare const HostingDomainsV2TypesItem: {
|
|
1442
1442
|
readonly addon: "addon";
|
|
@@ -2233,6 +2233,78 @@ export declare type UserHosting200RowsItemBilling = {
|
|
|
2233
2233
|
*/
|
|
2234
2234
|
prod_name?: string | null;
|
|
2235
2235
|
} | null;
|
|
2236
|
+
export declare type UserHosting200RowsItem = {
|
|
2237
|
+
/** Additional information about the account */
|
|
2238
|
+
account_info?: UserHosting200RowsItemAccountInfo;
|
|
2239
|
+
/**
|
|
2240
|
+
* HAL Account back_reference, used to link to the product instance
|
|
2241
|
+
* @nullable
|
|
2242
|
+
*/
|
|
2243
|
+
back_reference?: string | null;
|
|
2244
|
+
/**
|
|
2245
|
+
* Information from the billing system about this hosting account
|
|
2246
|
+
* @nullable
|
|
2247
|
+
*/
|
|
2248
|
+
billing?: UserHosting200RowsItemBilling;
|
|
2249
|
+
/**
|
|
2250
|
+
* Capability sites associated with the account
|
|
2251
|
+
* @nullable
|
|
2252
|
+
*/
|
|
2253
|
+
capability_sites?: string | null;
|
|
2254
|
+
/**
|
|
2255
|
+
* Feature set name ex: hosting_40s
|
|
2256
|
+
* @nullable
|
|
2257
|
+
*/
|
|
2258
|
+
feature_set?: string | null;
|
|
2259
|
+
/** Whether the product associated with this hosting account has panel mail (True) or not (False) */
|
|
2260
|
+
has_panel_mail?: boolean;
|
|
2261
|
+
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
2262
|
+
is_upgradeable?: boolean;
|
|
2263
|
+
/**
|
|
2264
|
+
* Account limits
|
|
2265
|
+
* @nullable
|
|
2266
|
+
*/
|
|
2267
|
+
limit?: UserHosting200RowsItemLimit;
|
|
2268
|
+
/**
|
|
2269
|
+
* Remote limits for the account
|
|
2270
|
+
* @nullable
|
|
2271
|
+
*/
|
|
2272
|
+
limit_remote?: UserHosting200RowsItemLimitRemote;
|
|
2273
|
+
/**
|
|
2274
|
+
* Package name
|
|
2275
|
+
* @nullable
|
|
2276
|
+
*/
|
|
2277
|
+
package?: string | null;
|
|
2278
|
+
/**
|
|
2279
|
+
* Control panel type
|
|
2280
|
+
* @nullable
|
|
2281
|
+
*/
|
|
2282
|
+
panel?: string | null;
|
|
2283
|
+
/**
|
|
2284
|
+
* Active panelemail purchase on this hosting account, if any
|
|
2285
|
+
* @nullable
|
|
2286
|
+
*/
|
|
2287
|
+
panel_mail_addon?: UserHosting200RowsItemPanelMailAddon;
|
|
2288
|
+
/**
|
|
2289
|
+
* Number of sites
|
|
2290
|
+
* @nullable
|
|
2291
|
+
*/
|
|
2292
|
+
sites?: number | null;
|
|
2293
|
+
/**
|
|
2294
|
+
* Usage statistics for non-staging sites
|
|
2295
|
+
* @nullable
|
|
2296
|
+
*/
|
|
2297
|
+
used?: UserHosting200RowsItemUsed;
|
|
2298
|
+
/**
|
|
2299
|
+
* Usage statistics for staging sites
|
|
2300
|
+
* @nullable
|
|
2301
|
+
*/
|
|
2302
|
+
used_stage?: UserHosting200RowsItemUsedStage;
|
|
2303
|
+
};
|
|
2304
|
+
export declare type UserHosting200 = {
|
|
2305
|
+
/** Information for the paginated hosting accounts */
|
|
2306
|
+
rows?: UserHosting200RowsItem[];
|
|
2307
|
+
};
|
|
2236
2308
|
/**
|
|
2237
2309
|
* Region information for the account
|
|
2238
2310
|
* @nullable
|
|
@@ -2392,132 +2464,60 @@ export declare type UserHosting200RowsItemAccountInfo = {
|
|
|
2392
2464
|
*/
|
|
2393
2465
|
region?: UserHosting200RowsItemAccountInfoRegion;
|
|
2394
2466
|
/**
|
|
2395
|
-
* Server ID
|
|
2396
|
-
* @nullable
|
|
2397
|
-
*/
|
|
2398
|
-
server_id?: string | null;
|
|
2399
|
-
/**
|
|
2400
|
-
* Server status
|
|
2401
|
-
* @nullable
|
|
2402
|
-
*/
|
|
2403
|
-
server_status?: string | null;
|
|
2404
|
-
/**
|
|
2405
|
-
* Server subtype
|
|
2406
|
-
* @nullable
|
|
2407
|
-
*/
|
|
2408
|
-
server_subtype?: string | null;
|
|
2409
|
-
/**
|
|
2410
|
-
* Server type
|
|
2411
|
-
* @nullable
|
|
2412
|
-
*/
|
|
2413
|
-
server_type?: string | null;
|
|
2414
|
-
/**
|
|
2415
|
-
* The software installed on the server, if applicable
|
|
2416
|
-
* @nullable
|
|
2417
|
-
*/
|
|
2418
|
-
software?: string | null;
|
|
2419
|
-
/**
|
|
2420
|
-
* SSH hostname
|
|
2421
|
-
* @nullable
|
|
2422
|
-
*/
|
|
2423
|
-
ssh_hostname?: string | null;
|
|
2424
|
-
/**
|
|
2425
|
-
* Account status
|
|
2426
|
-
* @nullable
|
|
2427
|
-
*/
|
|
2428
|
-
status?: string | null;
|
|
2429
|
-
/**
|
|
2430
|
-
* HAL Tenant back_reference, used to link to the product instance
|
|
2431
|
-
* @nullable
|
|
2432
|
-
*/
|
|
2433
|
-
tenant_back_ref?: string | null;
|
|
2434
|
-
/**
|
|
2435
|
-
* HAL Tenant ID, used to link to the product instance
|
|
2436
|
-
* @nullable
|
|
2437
|
-
*/
|
|
2438
|
-
tenant_id?: string | null;
|
|
2439
|
-
/**
|
|
2440
|
-
* Type of account, e.g., 'shared_cpanel'
|
|
2441
|
-
* @nullable
|
|
2442
|
-
*/
|
|
2443
|
-
type?: string | null;
|
|
2444
|
-
/**
|
|
2445
|
-
* Username associated with the account
|
|
2446
|
-
* @nullable
|
|
2447
|
-
*/
|
|
2448
|
-
username?: string | null;
|
|
2449
|
-
};
|
|
2450
|
-
export declare type UserHosting200RowsItem = {
|
|
2451
|
-
/** Additional information about the account */
|
|
2452
|
-
account_info?: UserHosting200RowsItemAccountInfo;
|
|
2453
|
-
/**
|
|
2454
|
-
* HAL Account back_reference, used to link to the product instance
|
|
2455
|
-
* @nullable
|
|
2456
|
-
*/
|
|
2457
|
-
back_reference?: string | null;
|
|
2458
|
-
/**
|
|
2459
|
-
* Information from the billing system about this hosting account
|
|
2467
|
+
* Server ID
|
|
2460
2468
|
* @nullable
|
|
2461
2469
|
*/
|
|
2462
|
-
|
|
2470
|
+
server_id?: string | null;
|
|
2463
2471
|
/**
|
|
2464
|
-
*
|
|
2472
|
+
* Server status
|
|
2465
2473
|
* @nullable
|
|
2466
2474
|
*/
|
|
2467
|
-
|
|
2475
|
+
server_status?: string | null;
|
|
2468
2476
|
/**
|
|
2469
|
-
*
|
|
2477
|
+
* Server subtype
|
|
2470
2478
|
* @nullable
|
|
2471
2479
|
*/
|
|
2472
|
-
|
|
2473
|
-
/** Whether the product associated with this hosting account has panel mail (True) or not (False) */
|
|
2474
|
-
has_panel_mail?: boolean;
|
|
2475
|
-
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
2476
|
-
is_upgradeable?: boolean;
|
|
2480
|
+
server_subtype?: string | null;
|
|
2477
2481
|
/**
|
|
2478
|
-
*
|
|
2482
|
+
* Server type
|
|
2479
2483
|
* @nullable
|
|
2480
2484
|
*/
|
|
2481
|
-
|
|
2485
|
+
server_type?: string | null;
|
|
2482
2486
|
/**
|
|
2483
|
-
*
|
|
2487
|
+
* The software installed on the server, if applicable
|
|
2484
2488
|
* @nullable
|
|
2485
2489
|
*/
|
|
2486
|
-
|
|
2490
|
+
software?: string | null;
|
|
2487
2491
|
/**
|
|
2488
|
-
*
|
|
2492
|
+
* SSH hostname
|
|
2489
2493
|
* @nullable
|
|
2490
2494
|
*/
|
|
2491
|
-
|
|
2495
|
+
ssh_hostname?: string | null;
|
|
2492
2496
|
/**
|
|
2493
|
-
*
|
|
2497
|
+
* Account status
|
|
2494
2498
|
* @nullable
|
|
2495
2499
|
*/
|
|
2496
|
-
|
|
2500
|
+
status?: string | null;
|
|
2497
2501
|
/**
|
|
2498
|
-
*
|
|
2502
|
+
* HAL Tenant back_reference, used to link to the product instance
|
|
2499
2503
|
* @nullable
|
|
2500
2504
|
*/
|
|
2501
|
-
|
|
2505
|
+
tenant_back_ref?: string | null;
|
|
2502
2506
|
/**
|
|
2503
|
-
*
|
|
2507
|
+
* HAL Tenant ID, used to link to the product instance
|
|
2504
2508
|
* @nullable
|
|
2505
2509
|
*/
|
|
2506
|
-
|
|
2510
|
+
tenant_id?: string | null;
|
|
2507
2511
|
/**
|
|
2508
|
-
*
|
|
2512
|
+
* Type of account, e.g., 'shared_cpanel'
|
|
2509
2513
|
* @nullable
|
|
2510
2514
|
*/
|
|
2511
|
-
|
|
2515
|
+
type?: string | null;
|
|
2512
2516
|
/**
|
|
2513
|
-
*
|
|
2517
|
+
* Username associated with the account
|
|
2514
2518
|
* @nullable
|
|
2515
2519
|
*/
|
|
2516
|
-
|
|
2517
|
-
};
|
|
2518
|
-
export declare type UserHosting200 = {
|
|
2519
|
-
/** Information for the paginated hosting accounts */
|
|
2520
|
-
rows?: UserHosting200RowsItem[];
|
|
2520
|
+
username?: string | null;
|
|
2521
2521
|
};
|
|
2522
2522
|
export declare type UserHostingParams = {
|
|
2523
2523
|
/**
|
|
@@ -2957,9 +2957,6 @@ export declare type SiteQualityMetrics200Audits = {
|
|
|
2957
2957
|
export declare type SiteQualityMetrics200AspectScores = {
|
|
2958
2958
|
performance?: number;
|
|
2959
2959
|
};
|
|
2960
|
-
export declare type SiteQualityMetrics200AspectDetails = {
|
|
2961
|
-
performance?: SiteQualityMetrics200AspectDetailsPerformance;
|
|
2962
|
-
};
|
|
2963
2960
|
export declare type SiteQualityMetrics200 = {
|
|
2964
2961
|
aspect_details: SiteQualityMetrics200AspectDetails;
|
|
2965
2962
|
aspect_scores: SiteQualityMetrics200AspectScores;
|
|
@@ -2990,6 +2987,9 @@ export declare type SiteQualityMetrics200AspectDetailsPerformance = {
|
|
|
2990
2987
|
'speed-index'?: SiteQualityMetrics200AspectDetailsPerformanceSpeedIndex;
|
|
2991
2988
|
'total-blocking-time'?: SiteQualityMetrics200AspectDetailsPerformanceTotalBlockingTime;
|
|
2992
2989
|
};
|
|
2990
|
+
export declare type SiteQualityMetrics200AspectDetails = {
|
|
2991
|
+
performance?: SiteQualityMetrics200AspectDetailsPerformance;
|
|
2992
|
+
};
|
|
2993
2993
|
export declare type SiteQualityMetricsStrategy = typeof SiteQualityMetricsStrategy[keyof typeof SiteQualityMetricsStrategy];
|
|
2994
2994
|
export declare const SiteQualityMetricsStrategy: {
|
|
2995
2995
|
readonly MOBILE: "MOBILE";
|
|
@@ -3173,13 +3173,6 @@ export declare type SitePendingDomainDelete200 = {
|
|
|
3173
3173
|
export declare type SitesOnboardingSteps200 = {
|
|
3174
3174
|
steps?: SiteOnboardingStepModel[];
|
|
3175
3175
|
};
|
|
3176
|
-
export declare type SitesMetricDimensions200 = {
|
|
3177
|
-
date_end?: string;
|
|
3178
|
-
date_start?: string;
|
|
3179
|
-
dimensions?: SitesMetricDimensions200Dimensions;
|
|
3180
|
-
elapsed?: number;
|
|
3181
|
-
metric?: string;
|
|
3182
|
-
};
|
|
3183
3176
|
export declare type SitesMetricDimensions200DimensionsWpAdminAjaxActionItemDimension = {
|
|
3184
3177
|
[key: string]: number;
|
|
3185
3178
|
};
|
|
@@ -3229,6 +3222,25 @@ export declare type SitesMetricDimensions200DimensionsHttpVersionItem = {
|
|
|
3229
3222
|
dimension?: SitesMetricDimensions200DimensionsHttpVersionItemDimension;
|
|
3230
3223
|
timestamp?: number;
|
|
3231
3224
|
};
|
|
3225
|
+
export declare type SitesMetricDimensions200Dimensions = {
|
|
3226
|
+
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
3227
|
+
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
3228
|
+
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
3229
|
+
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
3230
|
+
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
3231
|
+
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
3232
|
+
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
3233
|
+
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
3234
|
+
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
3235
|
+
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
3236
|
+
};
|
|
3237
|
+
export declare type SitesMetricDimensions200 = {
|
|
3238
|
+
date_end?: string;
|
|
3239
|
+
date_start?: string;
|
|
3240
|
+
dimensions?: SitesMetricDimensions200Dimensions;
|
|
3241
|
+
elapsed?: number;
|
|
3242
|
+
metric?: string;
|
|
3243
|
+
};
|
|
3232
3244
|
export declare type SitesMetricDimensions200DimensionsHttpVerbItemDimension = {
|
|
3233
3245
|
[key: string]: number;
|
|
3234
3246
|
};
|
|
@@ -3250,18 +3262,6 @@ export declare type SitesMetricDimensions200DimensionsHttpHostItem = {
|
|
|
3250
3262
|
dimension?: SitesMetricDimensions200DimensionsHttpHostItemDimension;
|
|
3251
3263
|
timestamp?: number;
|
|
3252
3264
|
};
|
|
3253
|
-
export declare type SitesMetricDimensions200Dimensions = {
|
|
3254
|
-
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
3255
|
-
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
3256
|
-
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
3257
|
-
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
3258
|
-
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
3259
|
-
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
3260
|
-
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
3261
|
-
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
3262
|
-
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
3263
|
-
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
3264
|
-
};
|
|
3265
3265
|
export declare type SitesMetricDimensionsParams = {
|
|
3266
3266
|
start?: string;
|
|
3267
3267
|
end?: string;
|
|
@@ -3698,6 +3698,10 @@ export declare type SitesAtomicMetrics200Views = {
|
|
|
3698
3698
|
last_n_days?: SitesAtomicMetrics200ViewsLastNDaysItem[];
|
|
3699
3699
|
total_hits?: number;
|
|
3700
3700
|
};
|
|
3701
|
+
export declare type SitesAtomicMetrics200 = {
|
|
3702
|
+
raw?: SitesAtomicMetrics200Raw;
|
|
3703
|
+
views?: SitesAtomicMetrics200Views;
|
|
3704
|
+
};
|
|
3701
3705
|
export declare type SitesAtomicMetrics200RawPeriodsItemDimension = {
|
|
3702
3706
|
[key: string]: string | number | number;
|
|
3703
3707
|
};
|
|
@@ -3715,10 +3719,6 @@ export declare type SitesAtomicMetrics200Raw = {
|
|
|
3715
3719
|
periods?: SitesAtomicMetrics200RawPeriodsItem[];
|
|
3716
3720
|
resolution?: number;
|
|
3717
3721
|
};
|
|
3718
|
-
export declare type SitesAtomicMetrics200 = {
|
|
3719
|
-
raw?: SitesAtomicMetrics200Raw;
|
|
3720
|
-
views?: SitesAtomicMetrics200Views;
|
|
3721
|
-
};
|
|
3722
3722
|
export declare type SitesAtomicMetricsParams = {
|
|
3723
3723
|
metric?: string[];
|
|
3724
3724
|
dimension?: string[];
|
|
@@ -3811,71 +3811,6 @@ export declare type SitesInfo200Staging = {
|
|
|
3811
3811
|
/** A list of staging sites of the current site */
|
|
3812
3812
|
sites?: number[];
|
|
3813
3813
|
} | null;
|
|
3814
|
-
export declare type SitesInfo200ResourcesStorage = {
|
|
3815
|
-
/** @nullable */
|
|
3816
|
-
available?: number | null;
|
|
3817
|
-
/** @nullable */
|
|
3818
|
-
total?: number | null;
|
|
3819
|
-
unit?: string;
|
|
3820
|
-
/** @nullable */
|
|
3821
|
-
used?: number | null;
|
|
3822
|
-
};
|
|
3823
|
-
export declare type SitesInfo200Resources = {
|
|
3824
|
-
storage?: SitesInfo200ResourcesStorage;
|
|
3825
|
-
/** @nullable */
|
|
3826
|
-
workers?: number | null;
|
|
3827
|
-
};
|
|
3828
|
-
/**
|
|
3829
|
-
* @nullable
|
|
3830
|
-
*/
|
|
3831
|
-
export declare type SitesInfo200PendingUrlData = {
|
|
3832
|
-
/**
|
|
3833
|
-
* The root domain name
|
|
3834
|
-
* @nullable
|
|
3835
|
-
*/
|
|
3836
|
-
base_domain?: string | null;
|
|
3837
|
-
/**
|
|
3838
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
3839
|
-
* @nullable
|
|
3840
|
-
*/
|
|
3841
|
-
domain?: string | null;
|
|
3842
|
-
/**
|
|
3843
|
-
* The current pending_url's HAL Domain ID
|
|
3844
|
-
* @nullable
|
|
3845
|
-
*/
|
|
3846
|
-
domain_id?: number | null;
|
|
3847
|
-
/** @nullable */
|
|
3848
|
-
error?: string | null;
|
|
3849
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
3850
|
-
is_temp?: boolean;
|
|
3851
|
-
/**
|
|
3852
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
3853
|
-
* @nullable
|
|
3854
|
-
*/
|
|
3855
|
-
job_failed?: boolean | null;
|
|
3856
|
-
/** @nullable */
|
|
3857
|
-
stage?: string | null;
|
|
3858
|
-
/**
|
|
3859
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
3860
|
-
* @nullable
|
|
3861
|
-
*/
|
|
3862
|
-
wp_session?: string | null;
|
|
3863
|
-
} | null;
|
|
3864
|
-
/**
|
|
3865
|
-
* @nullable
|
|
3866
|
-
*/
|
|
3867
|
-
export declare type SitesInfo200Pagespeed = {
|
|
3868
|
-
lastrun?: string;
|
|
3869
|
-
performance?: string;
|
|
3870
|
-
strategy?: string;
|
|
3871
|
-
} | null;
|
|
3872
|
-
/**
|
|
3873
|
-
* Job ids for the site
|
|
3874
|
-
* @nullable
|
|
3875
|
-
*/
|
|
3876
|
-
export declare type SitesInfo200Jobs = {
|
|
3877
|
-
[key: string]: unknown;
|
|
3878
|
-
} | null;
|
|
3879
3814
|
export declare type SitesInfo200 = {
|
|
3880
3815
|
/** @nullable */
|
|
3881
3816
|
account_back_ref?: string | null;
|
|
@@ -3974,6 +3909,71 @@ export declare type SitesInfo200 = {
|
|
|
3974
3909
|
/** @nullable */
|
|
3975
3910
|
wp_multi_site?: SitesInfo200WpMultiSite;
|
|
3976
3911
|
};
|
|
3912
|
+
export declare type SitesInfo200ResourcesStorage = {
|
|
3913
|
+
/** @nullable */
|
|
3914
|
+
available?: number | null;
|
|
3915
|
+
/** @nullable */
|
|
3916
|
+
total?: number | null;
|
|
3917
|
+
unit?: string;
|
|
3918
|
+
/** @nullable */
|
|
3919
|
+
used?: number | null;
|
|
3920
|
+
};
|
|
3921
|
+
export declare type SitesInfo200Resources = {
|
|
3922
|
+
storage?: SitesInfo200ResourcesStorage;
|
|
3923
|
+
/** @nullable */
|
|
3924
|
+
workers?: number | null;
|
|
3925
|
+
};
|
|
3926
|
+
/**
|
|
3927
|
+
* @nullable
|
|
3928
|
+
*/
|
|
3929
|
+
export declare type SitesInfo200PendingUrlData = {
|
|
3930
|
+
/**
|
|
3931
|
+
* The root domain name
|
|
3932
|
+
* @nullable
|
|
3933
|
+
*/
|
|
3934
|
+
base_domain?: string | null;
|
|
3935
|
+
/**
|
|
3936
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
3937
|
+
* @nullable
|
|
3938
|
+
*/
|
|
3939
|
+
domain?: string | null;
|
|
3940
|
+
/**
|
|
3941
|
+
* The current pending_url's HAL Domain ID
|
|
3942
|
+
* @nullable
|
|
3943
|
+
*/
|
|
3944
|
+
domain_id?: number | null;
|
|
3945
|
+
/** @nullable */
|
|
3946
|
+
error?: string | null;
|
|
3947
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
3948
|
+
is_temp?: boolean;
|
|
3949
|
+
/**
|
|
3950
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
3951
|
+
* @nullable
|
|
3952
|
+
*/
|
|
3953
|
+
job_failed?: boolean | null;
|
|
3954
|
+
/** @nullable */
|
|
3955
|
+
stage?: string | null;
|
|
3956
|
+
/**
|
|
3957
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
3958
|
+
* @nullable
|
|
3959
|
+
*/
|
|
3960
|
+
wp_session?: string | null;
|
|
3961
|
+
} | null;
|
|
3962
|
+
/**
|
|
3963
|
+
* @nullable
|
|
3964
|
+
*/
|
|
3965
|
+
export declare type SitesInfo200Pagespeed = {
|
|
3966
|
+
lastrun?: string;
|
|
3967
|
+
performance?: string;
|
|
3968
|
+
strategy?: string;
|
|
3969
|
+
} | null;
|
|
3970
|
+
/**
|
|
3971
|
+
* Job ids for the site
|
|
3972
|
+
* @nullable
|
|
3973
|
+
*/
|
|
3974
|
+
export declare type SitesInfo200Jobs = {
|
|
3975
|
+
[key: string]: unknown;
|
|
3976
|
+
} | null;
|
|
3977
3977
|
export declare type AccountPurchaseOrder404 = {
|
|
3978
3978
|
/** Customer error code */
|
|
3979
3979
|
error?: string;
|
|
@@ -4107,6 +4107,9 @@ export declare type AccountPurchaseProducts400 = {
|
|
|
4107
4107
|
/** Customer error code */
|
|
4108
4108
|
error?: string;
|
|
4109
4109
|
};
|
|
4110
|
+
export declare type AccountPurchaseProducts200 = {
|
|
4111
|
+
products?: AccountPurchaseProducts200ProductsItem[];
|
|
4112
|
+
};
|
|
4110
4113
|
export declare type AccountPurchaseProducts200ProductsItemTermsItem = {
|
|
4111
4114
|
base_price?: string;
|
|
4112
4115
|
final_price?: string;
|
|
@@ -4117,6 +4120,7 @@ export declare type AccountPurchaseProducts200ProductsItemTermsItem = {
|
|
|
4117
4120
|
tax_amount?: string | null;
|
|
4118
4121
|
term_quantity?: number;
|
|
4119
4122
|
term_unit?: number;
|
|
4123
|
+
/** Human-readable billing term unit (e.g. month, year) */
|
|
4120
4124
|
term_unit_description?: string;
|
|
4121
4125
|
/**
|
|
4122
4126
|
* Tax-inclusive total (discounted price + tax_amount), from live PG pricing
|
|
@@ -4124,18 +4128,6 @@ export declare type AccountPurchaseProducts200ProductsItemTermsItem = {
|
|
|
4124
4128
|
*/
|
|
4125
4129
|
total_price?: string | null;
|
|
4126
4130
|
};
|
|
4127
|
-
export declare type AccountPurchaseProducts200ProductsItem = {
|
|
4128
|
-
currency_code?: string;
|
|
4129
|
-
currency_symbol?: string;
|
|
4130
|
-
name?: string;
|
|
4131
|
-
quantity?: number;
|
|
4132
|
-
sku?: string;
|
|
4133
|
-
specs?: AccountPurchaseProducts200ProductsItemSpecs;
|
|
4134
|
-
terms?: AccountPurchaseProducts200ProductsItemTermsItem[];
|
|
4135
|
-
};
|
|
4136
|
-
export declare type AccountPurchaseProducts200 = {
|
|
4137
|
-
products?: AccountPurchaseProducts200ProductsItem[];
|
|
4138
|
-
};
|
|
4139
4131
|
export declare type AccountPurchaseProducts200ProductsItemSpecs = {
|
|
4140
4132
|
/** Bandwidth allocation (e.g. unmetered) */
|
|
4141
4133
|
bandwidth?: string;
|
|
@@ -4144,6 +4136,15 @@ export declare type AccountPurchaseProducts200ProductsItemSpecs = {
|
|
|
4144
4136
|
ram_type?: string;
|
|
4145
4137
|
vcpu_cores?: number;
|
|
4146
4138
|
};
|
|
4139
|
+
export declare type AccountPurchaseProducts200ProductsItem = {
|
|
4140
|
+
currency_code?: string;
|
|
4141
|
+
currency_symbol?: string;
|
|
4142
|
+
name?: string;
|
|
4143
|
+
quantity?: number;
|
|
4144
|
+
sku?: string;
|
|
4145
|
+
specs?: AccountPurchaseProducts200ProductsItemSpecs;
|
|
4146
|
+
terms?: AccountPurchaseProducts200ProductsItemTermsItem[];
|
|
4147
|
+
};
|
|
4147
4148
|
export declare type PublicRegions200RowsItem = {
|
|
4148
4149
|
/**
|
|
4149
4150
|
* Hosting region city
|
|
@@ -4210,46 +4211,6 @@ export declare type PublicRegions200 = {
|
|
|
4210
4211
|
/** List of regions */
|
|
4211
4212
|
rows?: PublicRegions200RowsItem[];
|
|
4212
4213
|
};
|
|
4213
|
-
/**
|
|
4214
|
-
* Links
|
|
4215
|
-
* @nullable
|
|
4216
|
-
*/
|
|
4217
|
-
export declare type PublicImages200RowsItemLinks = {
|
|
4218
|
-
/**
|
|
4219
|
-
* Community URL
|
|
4220
|
-
* @nullable
|
|
4221
|
-
*/
|
|
4222
|
-
community?: string | null;
|
|
4223
|
-
/**
|
|
4224
|
-
* Documentation URL
|
|
4225
|
-
* @nullable
|
|
4226
|
-
*/
|
|
4227
|
-
doc?: string | null;
|
|
4228
|
-
/**
|
|
4229
|
-
* Forums URL
|
|
4230
|
-
* @nullable
|
|
4231
|
-
*/
|
|
4232
|
-
forums?: string | null;
|
|
4233
|
-
} | null;
|
|
4234
|
-
/**
|
|
4235
|
-
* Image ID
|
|
4236
|
-
*/
|
|
4237
|
-
export declare type PublicImages200RowsItemId = string | number;
|
|
4238
|
-
/**
|
|
4239
|
-
* Docker default
|
|
4240
|
-
* @nullable
|
|
4241
|
-
*/
|
|
4242
|
-
export declare type PublicImages200RowsItemDockerDefault = string | number | null;
|
|
4243
|
-
/**
|
|
4244
|
-
* Current
|
|
4245
|
-
* @nullable
|
|
4246
|
-
*/
|
|
4247
|
-
export declare type PublicImages200RowsItemCurrent = string | number | null;
|
|
4248
|
-
/**
|
|
4249
|
-
* Cpanel default
|
|
4250
|
-
* @nullable
|
|
4251
|
-
*/
|
|
4252
|
-
export declare type PublicImages200RowsItemCpanelDefault = string | number | null;
|
|
4253
4214
|
export declare type PublicImages200RowsItem = {
|
|
4254
4215
|
/**
|
|
4255
4216
|
* Whether the image supports third-party AI vendor API keys
|
|
@@ -4353,6 +4314,56 @@ export declare type PublicImages200RowsItem = {
|
|
|
4353
4314
|
*/
|
|
4354
4315
|
user_image?: string | null;
|
|
4355
4316
|
};
|
|
4317
|
+
export declare type PublicImages200 = {
|
|
4318
|
+
/** Limit the number of images returned */
|
|
4319
|
+
limit?: PublicImages200Limit;
|
|
4320
|
+
/** Number of images returned */
|
|
4321
|
+
n_rows?: PublicImages200NRows;
|
|
4322
|
+
/** Page number */
|
|
4323
|
+
page?: PublicImages200Page;
|
|
4324
|
+
/** List of images */
|
|
4325
|
+
rows?: PublicImages200RowsItem[];
|
|
4326
|
+
};
|
|
4327
|
+
/**
|
|
4328
|
+
* Links
|
|
4329
|
+
* @nullable
|
|
4330
|
+
*/
|
|
4331
|
+
export declare type PublicImages200RowsItemLinks = {
|
|
4332
|
+
/**
|
|
4333
|
+
* Community URL
|
|
4334
|
+
* @nullable
|
|
4335
|
+
*/
|
|
4336
|
+
community?: string | null;
|
|
4337
|
+
/**
|
|
4338
|
+
* Documentation URL
|
|
4339
|
+
* @nullable
|
|
4340
|
+
*/
|
|
4341
|
+
doc?: string | null;
|
|
4342
|
+
/**
|
|
4343
|
+
* Forums URL
|
|
4344
|
+
* @nullable
|
|
4345
|
+
*/
|
|
4346
|
+
forums?: string | null;
|
|
4347
|
+
} | null;
|
|
4348
|
+
/**
|
|
4349
|
+
* Image ID
|
|
4350
|
+
*/
|
|
4351
|
+
export declare type PublicImages200RowsItemId = string | number;
|
|
4352
|
+
/**
|
|
4353
|
+
* Docker default
|
|
4354
|
+
* @nullable
|
|
4355
|
+
*/
|
|
4356
|
+
export declare type PublicImages200RowsItemDockerDefault = string | number | null;
|
|
4357
|
+
/**
|
|
4358
|
+
* Current
|
|
4359
|
+
* @nullable
|
|
4360
|
+
*/
|
|
4361
|
+
export declare type PublicImages200RowsItemCurrent = string | number | null;
|
|
4362
|
+
/**
|
|
4363
|
+
* Cpanel default
|
|
4364
|
+
* @nullable
|
|
4365
|
+
*/
|
|
4366
|
+
export declare type PublicImages200RowsItemCpanelDefault = string | number | null;
|
|
4356
4367
|
/**
|
|
4357
4368
|
* Page number
|
|
4358
4369
|
*/
|
|
@@ -4365,16 +4376,6 @@ export declare type PublicImages200NRows = string | number;
|
|
|
4365
4376
|
* Limit the number of images returned
|
|
4366
4377
|
*/
|
|
4367
4378
|
export declare type PublicImages200Limit = string | number;
|
|
4368
|
-
export declare type PublicImages200 = {
|
|
4369
|
-
/** Limit the number of images returned */
|
|
4370
|
-
limit?: PublicImages200Limit;
|
|
4371
|
-
/** Number of images returned */
|
|
4372
|
-
n_rows?: PublicImages200NRows;
|
|
4373
|
-
/** Page number */
|
|
4374
|
-
page?: PublicImages200Page;
|
|
4375
|
-
/** List of images */
|
|
4376
|
-
rows?: PublicImages200RowsItem[];
|
|
4377
|
-
};
|
|
4378
4379
|
export declare type PublicImagesParams = {
|
|
4379
4380
|
/**
|
|
4380
4381
|
* Brand identifier (e.g. bluehost).
|
|
@@ -4740,9 +4741,6 @@ export declare type HostingRedirects200Item = {
|
|
|
4740
4741
|
url?: string;
|
|
4741
4742
|
wildcard?: boolean;
|
|
4742
4743
|
};
|
|
4743
|
-
export declare type ProductLicenseDetails200 = {
|
|
4744
|
-
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
4745
|
-
};
|
|
4746
4744
|
export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
|
|
4747
4745
|
expirationDate?: string;
|
|
4748
4746
|
prodInstId?: string;
|
|
@@ -4756,6 +4754,9 @@ export declare type ProductLicenseDetails200Wpsolution = {
|
|
|
4756
4754
|
creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
|
|
4757
4755
|
total?: number;
|
|
4758
4756
|
};
|
|
4757
|
+
export declare type ProductLicenseDetails200 = {
|
|
4758
|
+
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
4759
|
+
};
|
|
4759
4760
|
export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
|
|
4760
4761
|
export declare const ProductLicenseDetailsProductName: {
|
|
4761
4762
|
readonly wpsolution: "wpsolution";
|
|
@@ -5711,6 +5712,12 @@ export declare type HostingEmailFiltersAddBody = {
|
|
|
5711
5712
|
/** list of rules to be applied to the filter */
|
|
5712
5713
|
rules?: HostingEmailFiltersAddBodyRulesItem[];
|
|
5713
5714
|
};
|
|
5715
|
+
export declare type HostingEmailFiltersList200 = {
|
|
5716
|
+
/** The number of filters */
|
|
5717
|
+
count?: number;
|
|
5718
|
+
/** List of filters */
|
|
5719
|
+
filters?: HostingEmailFiltersList200FiltersItem[];
|
|
5720
|
+
};
|
|
5714
5721
|
export declare type HostingEmailFiltersList200FiltersItemRulesItem = {
|
|
5715
5722
|
match?: FilterRuleMatch;
|
|
5716
5723
|
opt?: FilterRuleOpt;
|
|
@@ -5741,12 +5748,6 @@ export declare type HostingEmailFiltersList200FiltersItem = {
|
|
|
5741
5748
|
/** Whether the filter is unescaped */
|
|
5742
5749
|
unescaped?: boolean;
|
|
5743
5750
|
};
|
|
5744
|
-
export declare type HostingEmailFiltersList200 = {
|
|
5745
|
-
/** The number of filters */
|
|
5746
|
-
count?: number;
|
|
5747
|
-
/** List of filters */
|
|
5748
|
-
filters?: HostingEmailFiltersList200FiltersItem[];
|
|
5749
|
-
};
|
|
5750
5751
|
export declare type HostingEmailFiltersListParams = {
|
|
5751
5752
|
/**
|
|
5752
5753
|
* The email account address to query filters by
|
|
@@ -6982,6 +6983,9 @@ export declare const HostingAdvancedConsoleProtocol: {
|
|
|
6982
6983
|
export declare type HostingAdvancedConsoleParams = {
|
|
6983
6984
|
protocol?: HostingAdvancedConsoleProtocol;
|
|
6984
6985
|
};
|
|
6986
|
+
export declare type HostingAddons200 = {
|
|
6987
|
+
rows?: HostingAddons200RowsItem[];
|
|
6988
|
+
};
|
|
6985
6989
|
export declare type HostingAddons200RowsItemMeta = {
|
|
6986
6990
|
[key: string]: string | number | boolean;
|
|
6987
6991
|
};
|
|
@@ -6997,9 +7001,6 @@ export declare type HostingAddons200RowsItem = {
|
|
|
6997
7001
|
subtype?: string;
|
|
6998
7002
|
type?: string;
|
|
6999
7003
|
};
|
|
7000
|
-
export declare type HostingAddons200 = {
|
|
7001
|
-
rows?: HostingAddons200RowsItem[];
|
|
7002
|
-
};
|
|
7003
7004
|
export declare type HostingAddonsParams = {
|
|
7004
7005
|
status?: string;
|
|
7005
7006
|
subtype?: string;
|
|
@@ -7025,28 +7026,6 @@ export declare type ActivityLog200 = {
|
|
|
7025
7026
|
export declare type ActivityLogParams = {
|
|
7026
7027
|
days?: number;
|
|
7027
7028
|
};
|
|
7028
|
-
export declare type HostingAccount200 = {
|
|
7029
|
-
account_id?: string;
|
|
7030
|
-
account_limits?: HostingAccount200AccountLimits;
|
|
7031
|
-
/** The timestamp that the hosting addon was created */
|
|
7032
|
-
addon_date_added?: string;
|
|
7033
|
-
advanced?: boolean;
|
|
7034
|
-
billing?: HostingAccount200Billing;
|
|
7035
|
-
brand?: string;
|
|
7036
|
-
id?: string;
|
|
7037
|
-
panel?: string;
|
|
7038
|
-
plan_key?: string;
|
|
7039
|
-
platform?: string;
|
|
7040
|
-
/** @nullable */
|
|
7041
|
-
resources?: HostingAccount200Resources;
|
|
7042
|
-
/** @nullable */
|
|
7043
|
-
server_status?: string | null;
|
|
7044
|
-
/** @nullable */
|
|
7045
|
-
ssh_hostname?: string | null;
|
|
7046
|
-
status?: string;
|
|
7047
|
-
type?: string;
|
|
7048
|
-
username?: string;
|
|
7049
|
-
};
|
|
7050
7029
|
export declare type HostingAccount200ResourcesWorkers = {
|
|
7051
7030
|
/** @nullable */
|
|
7052
7031
|
available?: number | null;
|
|
@@ -7080,6 +7059,41 @@ export declare type HostingAccount200ResourcesStorage = {
|
|
|
7080
7059
|
/** @nullable */
|
|
7081
7060
|
used?: number | null;
|
|
7082
7061
|
};
|
|
7062
|
+
/**
|
|
7063
|
+
* @nullable
|
|
7064
|
+
*/
|
|
7065
|
+
export declare type HostingAccount200Resources = {
|
|
7066
|
+
staging?: HostingAccount200ResourcesStaging;
|
|
7067
|
+
storage?: HostingAccount200ResourcesStorage;
|
|
7068
|
+
/**
|
|
7069
|
+
* Usage statistics for non-staging sites
|
|
7070
|
+
* @nullable
|
|
7071
|
+
*/
|
|
7072
|
+
used?: HostingAccount200ResourcesUsed;
|
|
7073
|
+
workers?: HostingAccount200ResourcesWorkers;
|
|
7074
|
+
} | null;
|
|
7075
|
+
export declare type HostingAccount200 = {
|
|
7076
|
+
account_id?: string;
|
|
7077
|
+
account_limits?: HostingAccount200AccountLimits;
|
|
7078
|
+
/** The timestamp that the hosting addon was created */
|
|
7079
|
+
addon_date_added?: string;
|
|
7080
|
+
advanced?: boolean;
|
|
7081
|
+
billing?: HostingAccount200Billing;
|
|
7082
|
+
brand?: string;
|
|
7083
|
+
id?: string;
|
|
7084
|
+
panel?: string;
|
|
7085
|
+
plan_key?: string;
|
|
7086
|
+
platform?: string;
|
|
7087
|
+
/** @nullable */
|
|
7088
|
+
resources?: HostingAccount200Resources;
|
|
7089
|
+
/** @nullable */
|
|
7090
|
+
server_status?: string | null;
|
|
7091
|
+
/** @nullable */
|
|
7092
|
+
ssh_hostname?: string | null;
|
|
7093
|
+
status?: string;
|
|
7094
|
+
type?: string;
|
|
7095
|
+
username?: string;
|
|
7096
|
+
};
|
|
7083
7097
|
export declare type HostingAccount200ResourcesStagingWorkers = {
|
|
7084
7098
|
/** @nullable */
|
|
7085
7099
|
available?: number | null;
|
|
@@ -7101,19 +7115,6 @@ export declare type HostingAccount200ResourcesStaging = {
|
|
|
7101
7115
|
storage?: HostingAccount200ResourcesStagingStorage;
|
|
7102
7116
|
workers?: HostingAccount200ResourcesStagingWorkers;
|
|
7103
7117
|
};
|
|
7104
|
-
/**
|
|
7105
|
-
* @nullable
|
|
7106
|
-
*/
|
|
7107
|
-
export declare type HostingAccount200Resources = {
|
|
7108
|
-
staging?: HostingAccount200ResourcesStaging;
|
|
7109
|
-
storage?: HostingAccount200ResourcesStorage;
|
|
7110
|
-
/**
|
|
7111
|
-
* Usage statistics for non-staging sites
|
|
7112
|
-
* @nullable
|
|
7113
|
-
*/
|
|
7114
|
-
used?: HostingAccount200ResourcesUsed;
|
|
7115
|
-
workers?: HostingAccount200ResourcesWorkers;
|
|
7116
|
-
} | null;
|
|
7117
7118
|
export declare type HostingAccount200Billing = {
|
|
7118
7119
|
prod_code?: string;
|
|
7119
7120
|
product_name?: string;
|
|
@@ -7136,6 +7137,10 @@ export declare type HostingAccount200AccountLimits = {
|
|
|
7136
7137
|
*/
|
|
7137
7138
|
sites?: number | null;
|
|
7138
7139
|
};
|
|
7140
|
+
export declare type EntriJwt200 = {
|
|
7141
|
+
/** Entri authentication token for client-side domain setup. */
|
|
7142
|
+
token: string;
|
|
7143
|
+
};
|
|
7139
7144
|
export declare type DomainZoneeditorUrl200 = {
|
|
7140
7145
|
url: string;
|
|
7141
7146
|
};
|
|
@@ -7214,12 +7219,97 @@ export declare type DomainHealth200 = {
|
|
|
7214
7219
|
source_timings?: DomainHealth200SourceTimings;
|
|
7215
7220
|
/** @nullable */
|
|
7216
7221
|
sources?: DomainHealth200Sources;
|
|
7222
|
+
/** @nullable */
|
|
7223
|
+
ssl?: DomainHealth200Ssl;
|
|
7224
|
+
};
|
|
7225
|
+
/**
|
|
7226
|
+
* @nullable
|
|
7227
|
+
*/
|
|
7228
|
+
export declare type DomainHealth200SslChecksItemObserved = {
|
|
7229
|
+
/**
|
|
7230
|
+
* HTTP status code observed during check
|
|
7231
|
+
* @nullable
|
|
7232
|
+
*/
|
|
7233
|
+
http_status?: string | null;
|
|
7217
7234
|
/**
|
|
7218
|
-
*
|
|
7235
|
+
* Certificate expiry datetime observed during check
|
|
7219
7236
|
* @nullable
|
|
7220
7237
|
*/
|
|
7221
|
-
|
|
7238
|
+
not_after?: string | null;
|
|
7239
|
+
} | null;
|
|
7240
|
+
export declare type DomainHealth200SslChecksItem = {
|
|
7241
|
+
code?: string;
|
|
7242
|
+
hostname?: string;
|
|
7243
|
+
name?: string;
|
|
7244
|
+
/** @nullable */
|
|
7245
|
+
observed?: DomainHealth200SslChecksItemObserved;
|
|
7246
|
+
severity?: string;
|
|
7247
|
+
status?: string;
|
|
7222
7248
|
};
|
|
7249
|
+
/**
|
|
7250
|
+
* @nullable
|
|
7251
|
+
*/
|
|
7252
|
+
export declare type DomainHealth200SslCertificate = {
|
|
7253
|
+
/**
|
|
7254
|
+
* SSL certificate issuer
|
|
7255
|
+
* @nullable
|
|
7256
|
+
*/
|
|
7257
|
+
issuer?: string | null;
|
|
7258
|
+
/**
|
|
7259
|
+
* SSL certificate expiry datetime
|
|
7260
|
+
* @nullable
|
|
7261
|
+
*/
|
|
7262
|
+
not_after?: string | null;
|
|
7263
|
+
/**
|
|
7264
|
+
* Whether an SSL certificate is present
|
|
7265
|
+
* @nullable
|
|
7266
|
+
*/
|
|
7267
|
+
present?: boolean | null;
|
|
7268
|
+
/**
|
|
7269
|
+
* SSL certificate type
|
|
7270
|
+
* @nullable
|
|
7271
|
+
*/
|
|
7272
|
+
ssl_type?: string | null;
|
|
7273
|
+
} | null;
|
|
7274
|
+
/**
|
|
7275
|
+
* @nullable
|
|
7276
|
+
*/
|
|
7277
|
+
export declare type DomainHealth200Ssl = {
|
|
7278
|
+
/**
|
|
7279
|
+
* SSL alignment status: aligned, misaligned, partial, propagating, unknown, error
|
|
7280
|
+
* @nullable
|
|
7281
|
+
*/
|
|
7282
|
+
alignment_status?: string | null;
|
|
7283
|
+
/** @nullable */
|
|
7284
|
+
certificate?: DomainHealth200SslCertificate;
|
|
7285
|
+
/**
|
|
7286
|
+
* Whether SSL was checked
|
|
7287
|
+
* @nullable
|
|
7288
|
+
*/
|
|
7289
|
+
checked?: boolean | null;
|
|
7290
|
+
/** @nullable */
|
|
7291
|
+
checks?: DomainHealth200SslChecksItem[] | null;
|
|
7292
|
+
/**
|
|
7293
|
+
* SSL primary issue code
|
|
7294
|
+
* @nullable
|
|
7295
|
+
*/
|
|
7296
|
+
primary_issue_code?: string | null;
|
|
7297
|
+
/**
|
|
7298
|
+
* SSL severity: critical, high, medium, low, info
|
|
7299
|
+
* @nullable
|
|
7300
|
+
*/
|
|
7301
|
+
severity?: string | null;
|
|
7302
|
+
/**
|
|
7303
|
+
* Reason SSL check was skipped
|
|
7304
|
+
* @nullable
|
|
7305
|
+
*/
|
|
7306
|
+
skip_reason?: string | null;
|
|
7307
|
+
/**
|
|
7308
|
+
* Whether SSL check was skipped
|
|
7309
|
+
* @nullable
|
|
7310
|
+
*/
|
|
7311
|
+
skipped?: boolean | null;
|
|
7312
|
+
} | null;
|
|
7223
7313
|
export declare type DomainHealth200SourcesZoneXns = {
|
|
7224
7314
|
[key: string]: unknown;
|
|
7225
7315
|
};
|
|
@@ -7327,6 +7417,7 @@ export declare const DomainHealthChecksItem: {
|
|
|
7327
7417
|
readonly email: "email";
|
|
7328
7418
|
readonly ssl_prereq: "ssl_prereq";
|
|
7329
7419
|
readonly cdn: "cdn";
|
|
7420
|
+
readonly ssl: "ssl";
|
|
7330
7421
|
};
|
|
7331
7422
|
export declare type DomainHealthParams = {
|
|
7332
7423
|
/**
|