@newfold/huapi-js 2.2058.0 → 2.2067.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.js +1 -1
- package/src/index.msw.js +9 -9
- package/src/index.schemas.d.ts +669 -485
- package/src/index.schemas.js +1 -2
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.2067.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
/** SSH key algorithm from HAL for VPS/Dedicated keys (for example rsa, ed25519) */
|
|
@@ -357,10 +357,6 @@ export declare type BackupCreateV3Body = {
|
|
|
357
357
|
/** The type of the backup */
|
|
358
358
|
backup_type?: BackupCreateV3BodyBackupType;
|
|
359
359
|
};
|
|
360
|
-
export declare type SiteUsersV2200UsersItemMeta = {
|
|
361
|
-
maestro_web_pro?: string;
|
|
362
|
-
maestro_wpp_identifier?: string;
|
|
363
|
-
};
|
|
364
360
|
export declare type SiteUsersV2200UsersItem = {
|
|
365
361
|
display_name?: string;
|
|
366
362
|
id: number;
|
|
@@ -377,6 +373,10 @@ export declare type SiteUsersV2200 = {
|
|
|
377
373
|
total_users: number;
|
|
378
374
|
users: SiteUsersV2200UsersItem[];
|
|
379
375
|
};
|
|
376
|
+
export declare type SiteUsersV2200UsersItemMeta = {
|
|
377
|
+
maestro_web_pro?: string;
|
|
378
|
+
maestro_wpp_identifier?: string;
|
|
379
|
+
};
|
|
380
380
|
export declare type SiteUsersV2Params = {
|
|
381
381
|
limit?: number;
|
|
382
382
|
page?: number;
|
|
@@ -445,12 +445,6 @@ export declare type SiteMalwareStatusV2200 = {
|
|
|
445
445
|
*/
|
|
446
446
|
scanner_state?: string | null;
|
|
447
447
|
};
|
|
448
|
-
export declare type SitesDomainsV2200 = {
|
|
449
|
-
domains: SitesDomainsV2200DomainsItem[];
|
|
450
|
-
limit?: number;
|
|
451
|
-
page?: number;
|
|
452
|
-
total?: number;
|
|
453
|
-
};
|
|
454
448
|
/**
|
|
455
449
|
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
456
450
|
* @nullable
|
|
@@ -587,6 +581,12 @@ export declare type SitesDomainsV2200DomainsItem = {
|
|
|
587
581
|
*/
|
|
588
582
|
used_entri?: number | null;
|
|
589
583
|
};
|
|
584
|
+
export declare type SitesDomainsV2200 = {
|
|
585
|
+
domains: SitesDomainsV2200DomainsItem[];
|
|
586
|
+
limit?: number;
|
|
587
|
+
page?: number;
|
|
588
|
+
total?: number;
|
|
589
|
+
};
|
|
590
590
|
export declare type SitesDomainsV2Params = {
|
|
591
591
|
scan?: boolean;
|
|
592
592
|
};
|
|
@@ -617,6 +617,63 @@ export declare type SitesListV2200ItemsItemStaging = {
|
|
|
617
617
|
/** A list of staging sites of the current site */
|
|
618
618
|
sites?: number[];
|
|
619
619
|
} | null;
|
|
620
|
+
export declare type SitesListV2200ItemsItemResourcesStorage = {
|
|
621
|
+
/** @nullable */
|
|
622
|
+
available?: number | null;
|
|
623
|
+
/** @nullable */
|
|
624
|
+
total?: number | null;
|
|
625
|
+
unit?: string;
|
|
626
|
+
/** @nullable */
|
|
627
|
+
used?: number | null;
|
|
628
|
+
};
|
|
629
|
+
export declare type SitesListV2200ItemsItemResources = {
|
|
630
|
+
storage?: SitesListV2200ItemsItemResourcesStorage;
|
|
631
|
+
/** @nullable */
|
|
632
|
+
workers?: number | null;
|
|
633
|
+
};
|
|
634
|
+
/**
|
|
635
|
+
* @nullable
|
|
636
|
+
*/
|
|
637
|
+
export declare type SitesListV2200ItemsItemPendingUrlData = {
|
|
638
|
+
/**
|
|
639
|
+
* The root domain name
|
|
640
|
+
* @nullable
|
|
641
|
+
*/
|
|
642
|
+
base_domain?: string | null;
|
|
643
|
+
/**
|
|
644
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
645
|
+
* @nullable
|
|
646
|
+
*/
|
|
647
|
+
domain?: string | null;
|
|
648
|
+
/**
|
|
649
|
+
* The current pending_url's HAL Domain ID
|
|
650
|
+
* @nullable
|
|
651
|
+
*/
|
|
652
|
+
domain_id?: number | null;
|
|
653
|
+
/** @nullable */
|
|
654
|
+
error?: string | null;
|
|
655
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
656
|
+
is_temp?: boolean;
|
|
657
|
+
/**
|
|
658
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
659
|
+
* @nullable
|
|
660
|
+
*/
|
|
661
|
+
job_failed?: boolean | null;
|
|
662
|
+
/** @nullable */
|
|
663
|
+
stage?: string | null;
|
|
664
|
+
/**
|
|
665
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
666
|
+
* @nullable
|
|
667
|
+
*/
|
|
668
|
+
wp_session?: string | null;
|
|
669
|
+
} | null;
|
|
670
|
+
/**
|
|
671
|
+
* Job ids for the site
|
|
672
|
+
* @nullable
|
|
673
|
+
*/
|
|
674
|
+
export declare type SitesListV2200ItemsItemJobs = {
|
|
675
|
+
[key: string]: unknown;
|
|
676
|
+
} | null;
|
|
620
677
|
export declare type SitesListV2200ItemsItem = {
|
|
621
678
|
/** @nullable */
|
|
622
679
|
account_back_ref?: string | null;
|
|
@@ -706,63 +763,16 @@ export declare type SitesListV2200 = {
|
|
|
706
763
|
/** total number of sites returned */
|
|
707
764
|
total?: number;
|
|
708
765
|
};
|
|
709
|
-
export declare type
|
|
710
|
-
/**
|
|
711
|
-
|
|
712
|
-
/**
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
export declare type SitesListV2200ItemsItemResources = {
|
|
719
|
-
storage?: SitesListV2200ItemsItemResourcesStorage;
|
|
720
|
-
/** @nullable */
|
|
721
|
-
workers?: number | null;
|
|
766
|
+
export declare type PublicImagesV2200 = {
|
|
767
|
+
/** Limit the number of images returned */
|
|
768
|
+
limit?: PublicImagesV2200Limit;
|
|
769
|
+
/** Number of images returned */
|
|
770
|
+
n_rows?: PublicImagesV2200NRows;
|
|
771
|
+
/** Page number */
|
|
772
|
+
page?: PublicImagesV2200Page;
|
|
773
|
+
/** List of images */
|
|
774
|
+
rows?: PublicImagesV2200RowsItem[];
|
|
722
775
|
};
|
|
723
|
-
/**
|
|
724
|
-
* @nullable
|
|
725
|
-
*/
|
|
726
|
-
export declare type SitesListV2200ItemsItemPendingUrlData = {
|
|
727
|
-
/**
|
|
728
|
-
* The root domain name
|
|
729
|
-
* @nullable
|
|
730
|
-
*/
|
|
731
|
-
base_domain?: string | null;
|
|
732
|
-
/**
|
|
733
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
734
|
-
* @nullable
|
|
735
|
-
*/
|
|
736
|
-
domain?: string | null;
|
|
737
|
-
/**
|
|
738
|
-
* The current pending_url's HAL Domain ID
|
|
739
|
-
* @nullable
|
|
740
|
-
*/
|
|
741
|
-
domain_id?: number | null;
|
|
742
|
-
/** @nullable */
|
|
743
|
-
error?: string | null;
|
|
744
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
745
|
-
is_temp?: boolean;
|
|
746
|
-
/**
|
|
747
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
748
|
-
* @nullable
|
|
749
|
-
*/
|
|
750
|
-
job_failed?: boolean | null;
|
|
751
|
-
/** @nullable */
|
|
752
|
-
stage?: string | null;
|
|
753
|
-
/**
|
|
754
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
755
|
-
* @nullable
|
|
756
|
-
*/
|
|
757
|
-
wp_session?: string | null;
|
|
758
|
-
} | null;
|
|
759
|
-
/**
|
|
760
|
-
* Job ids for the site
|
|
761
|
-
* @nullable
|
|
762
|
-
*/
|
|
763
|
-
export declare type SitesListV2200ItemsItemJobs = {
|
|
764
|
-
[key: string]: unknown;
|
|
765
|
-
} | null;
|
|
766
776
|
/**
|
|
767
777
|
* User image
|
|
768
778
|
* @nullable
|
|
@@ -923,16 +933,6 @@ export declare type PublicImagesV2200NRows = string | number;
|
|
|
923
933
|
* Limit the number of images returned
|
|
924
934
|
*/
|
|
925
935
|
export declare type PublicImagesV2200Limit = string | number;
|
|
926
|
-
export declare type PublicImagesV2200 = {
|
|
927
|
-
/** Limit the number of images returned */
|
|
928
|
-
limit?: PublicImagesV2200Limit;
|
|
929
|
-
/** Number of images returned */
|
|
930
|
-
n_rows?: PublicImagesV2200NRows;
|
|
931
|
-
/** Page number */
|
|
932
|
-
page?: PublicImagesV2200Page;
|
|
933
|
-
/** List of images */
|
|
934
|
-
rows?: PublicImagesV2200RowsItem[];
|
|
935
|
-
};
|
|
936
936
|
export declare type PublicImagesV2Params = {
|
|
937
937
|
/**
|
|
938
938
|
* Brand identifier (e.g. bluehost).
|
|
@@ -1062,6 +1062,30 @@ export declare type HostingSitesV2200UsedSitesDetails = {
|
|
|
1062
1062
|
/** Count of staging sites on specified hosting account */
|
|
1063
1063
|
staging_sites?: number;
|
|
1064
1064
|
};
|
|
1065
|
+
export declare type HostingSitesV2200 = {
|
|
1066
|
+
/**
|
|
1067
|
+
* Remaining number of sites the customer can create. Max sites - used sites. Null means 'unlimited'.
|
|
1068
|
+
* @nullable
|
|
1069
|
+
*/
|
|
1070
|
+
available_sites?: number | null;
|
|
1071
|
+
items?: HostingSitesV2200ItemsItem[];
|
|
1072
|
+
/** page size */
|
|
1073
|
+
limit?: number;
|
|
1074
|
+
/**
|
|
1075
|
+
* Maximum number of sites the customer can have. Null means 'unlimited'.
|
|
1076
|
+
* @nullable
|
|
1077
|
+
*/
|
|
1078
|
+
max_sites?: number | null;
|
|
1079
|
+
/** current page number */
|
|
1080
|
+
page?: number;
|
|
1081
|
+
/** total number of pages */
|
|
1082
|
+
pages?: number;
|
|
1083
|
+
/** total number of sites returned */
|
|
1084
|
+
total?: number;
|
|
1085
|
+
/** 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. */
|
|
1086
|
+
used_sites?: number;
|
|
1087
|
+
used_sites_details?: HostingSitesV2200UsedSitesDetails;
|
|
1088
|
+
};
|
|
1065
1089
|
/**
|
|
1066
1090
|
* @nullable
|
|
1067
1091
|
*/
|
|
@@ -1096,6 +1120,63 @@ export declare type HostingSitesV2200ItemsItemStaging = {
|
|
|
1096
1120
|
/** A list of staging sites of the current site */
|
|
1097
1121
|
sites?: number[];
|
|
1098
1122
|
} | null;
|
|
1123
|
+
export declare type HostingSitesV2200ItemsItemResourcesStorage = {
|
|
1124
|
+
/** @nullable */
|
|
1125
|
+
available?: number | null;
|
|
1126
|
+
/** @nullable */
|
|
1127
|
+
total?: number | null;
|
|
1128
|
+
unit?: string;
|
|
1129
|
+
/** @nullable */
|
|
1130
|
+
used?: number | null;
|
|
1131
|
+
};
|
|
1132
|
+
export declare type HostingSitesV2200ItemsItemResources = {
|
|
1133
|
+
storage?: HostingSitesV2200ItemsItemResourcesStorage;
|
|
1134
|
+
/** @nullable */
|
|
1135
|
+
workers?: number | null;
|
|
1136
|
+
};
|
|
1137
|
+
/**
|
|
1138
|
+
* @nullable
|
|
1139
|
+
*/
|
|
1140
|
+
export declare type HostingSitesV2200ItemsItemPendingUrlData = {
|
|
1141
|
+
/**
|
|
1142
|
+
* The root domain name
|
|
1143
|
+
* @nullable
|
|
1144
|
+
*/
|
|
1145
|
+
base_domain?: string | null;
|
|
1146
|
+
/**
|
|
1147
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
1148
|
+
* @nullable
|
|
1149
|
+
*/
|
|
1150
|
+
domain?: string | null;
|
|
1151
|
+
/**
|
|
1152
|
+
* The current pending_url's HAL Domain ID
|
|
1153
|
+
* @nullable
|
|
1154
|
+
*/
|
|
1155
|
+
domain_id?: number | null;
|
|
1156
|
+
/** @nullable */
|
|
1157
|
+
error?: string | null;
|
|
1158
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
1159
|
+
is_temp?: boolean;
|
|
1160
|
+
/**
|
|
1161
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
1162
|
+
* @nullable
|
|
1163
|
+
*/
|
|
1164
|
+
job_failed?: boolean | null;
|
|
1165
|
+
/** @nullable */
|
|
1166
|
+
stage?: string | null;
|
|
1167
|
+
/**
|
|
1168
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
1169
|
+
* @nullable
|
|
1170
|
+
*/
|
|
1171
|
+
wp_session?: string | null;
|
|
1172
|
+
} | null;
|
|
1173
|
+
/**
|
|
1174
|
+
* Job ids for the site
|
|
1175
|
+
* @nullable
|
|
1176
|
+
*/
|
|
1177
|
+
export declare type HostingSitesV2200ItemsItemJobs = {
|
|
1178
|
+
[key: string]: unknown;
|
|
1179
|
+
} | null;
|
|
1099
1180
|
export declare type HostingSitesV2200ItemsItem = {
|
|
1100
1181
|
/** @nullable */
|
|
1101
1182
|
account_back_ref?: string | null;
|
|
@@ -1135,7 +1216,7 @@ export declare type HostingSitesV2200ItemsItem = {
|
|
|
1135
1216
|
* Whether Blu AI store is enabled for the site
|
|
1136
1217
|
* @nullable
|
|
1137
1218
|
*/
|
|
1138
|
-
install_blu_ai_store?:
|
|
1219
|
+
install_blu_ai_store?: string | null;
|
|
1139
1220
|
/** @nullable */
|
|
1140
1221
|
installed_id?: string | null;
|
|
1141
1222
|
/** True if docpath is public_html, otherwise False */
|
|
@@ -1179,99 +1260,18 @@ export declare type HostingSitesV2200ItemsItem = {
|
|
|
1179
1260
|
type?: string;
|
|
1180
1261
|
/** @nullable */
|
|
1181
1262
|
url?: string | null;
|
|
1182
|
-
/** @nullable */
|
|
1183
|
-
url_is_provisional?: boolean | null;
|
|
1184
|
-
/** @nullable */
|
|
1185
|
-
version?: string | null;
|
|
1186
|
-
/**
|
|
1187
|
-
* The WP Version
|
|
1188
|
-
* @nullable
|
|
1189
|
-
*/
|
|
1190
|
-
version_ptr?: string | null;
|
|
1191
|
-
/** @nullable */
|
|
1192
|
-
wp_multi_site?: HostingSitesV2200ItemsItemWpMultiSite;
|
|
1193
|
-
};
|
|
1194
|
-
export declare type HostingSitesV2200 = {
|
|
1195
|
-
/**
|
|
1196
|
-
* Remaining number of sites the customer can create. Max sites - used sites. Null means 'unlimited'.
|
|
1197
|
-
* @nullable
|
|
1198
|
-
*/
|
|
1199
|
-
available_sites?: number | null;
|
|
1200
|
-
items?: HostingSitesV2200ItemsItem[];
|
|
1201
|
-
/** page size */
|
|
1202
|
-
limit?: number;
|
|
1203
|
-
/**
|
|
1204
|
-
* Maximum number of sites the customer can have. Null means 'unlimited'.
|
|
1205
|
-
* @nullable
|
|
1206
|
-
*/
|
|
1207
|
-
max_sites?: number | null;
|
|
1208
|
-
/** current page number */
|
|
1209
|
-
page?: number;
|
|
1210
|
-
/** total number of pages */
|
|
1211
|
-
pages?: number;
|
|
1212
|
-
/** total number of sites returned */
|
|
1213
|
-
total?: number;
|
|
1214
|
-
/** 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. */
|
|
1215
|
-
used_sites?: number;
|
|
1216
|
-
used_sites_details?: HostingSitesV2200UsedSitesDetails;
|
|
1217
|
-
};
|
|
1218
|
-
export declare type HostingSitesV2200ItemsItemResourcesStorage = {
|
|
1219
|
-
/** @nullable */
|
|
1220
|
-
available?: number | null;
|
|
1221
|
-
/** @nullable */
|
|
1222
|
-
total?: number | null;
|
|
1223
|
-
unit?: string;
|
|
1224
|
-
/** @nullable */
|
|
1225
|
-
used?: number | null;
|
|
1226
|
-
};
|
|
1227
|
-
export declare type HostingSitesV2200ItemsItemResources = {
|
|
1228
|
-
storage?: HostingSitesV2200ItemsItemResourcesStorage;
|
|
1229
|
-
/** @nullable */
|
|
1230
|
-
workers?: number | null;
|
|
1231
|
-
};
|
|
1232
|
-
/**
|
|
1233
|
-
* @nullable
|
|
1234
|
-
*/
|
|
1235
|
-
export declare type HostingSitesV2200ItemsItemPendingUrlData = {
|
|
1236
|
-
/**
|
|
1237
|
-
* The root domain name
|
|
1238
|
-
* @nullable
|
|
1239
|
-
*/
|
|
1240
|
-
base_domain?: string | null;
|
|
1241
|
-
/**
|
|
1242
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
1243
|
-
* @nullable
|
|
1244
|
-
*/
|
|
1245
|
-
domain?: string | null;
|
|
1246
|
-
/**
|
|
1247
|
-
* The current pending_url's HAL Domain ID
|
|
1248
|
-
* @nullable
|
|
1249
|
-
*/
|
|
1250
|
-
domain_id?: number | null;
|
|
1251
|
-
/** @nullable */
|
|
1252
|
-
error?: string | null;
|
|
1253
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
1254
|
-
is_temp?: boolean;
|
|
1255
|
-
/**
|
|
1256
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
1257
|
-
* @nullable
|
|
1258
|
-
*/
|
|
1259
|
-
job_failed?: boolean | null;
|
|
1260
|
-
/** @nullable */
|
|
1261
|
-
stage?: string | null;
|
|
1262
|
-
/**
|
|
1263
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
1264
|
-
* @nullable
|
|
1265
|
-
*/
|
|
1266
|
-
wp_session?: string | null;
|
|
1267
|
-
} | null;
|
|
1268
|
-
/**
|
|
1269
|
-
* Job ids for the site
|
|
1270
|
-
* @nullable
|
|
1271
|
-
*/
|
|
1272
|
-
export declare type HostingSitesV2200ItemsItemJobs = {
|
|
1273
|
-
[key: string]: unknown;
|
|
1274
|
-
} | null;
|
|
1263
|
+
/** @nullable */
|
|
1264
|
+
url_is_provisional?: boolean | null;
|
|
1265
|
+
/** @nullable */
|
|
1266
|
+
version?: string | null;
|
|
1267
|
+
/**
|
|
1268
|
+
* The WP Version
|
|
1269
|
+
* @nullable
|
|
1270
|
+
*/
|
|
1271
|
+
version_ptr?: string | null;
|
|
1272
|
+
/** @nullable */
|
|
1273
|
+
wp_multi_site?: HostingSitesV2200ItemsItemWpMultiSite;
|
|
1274
|
+
};
|
|
1275
1275
|
export declare type HostingSitesV2Params = {
|
|
1276
1276
|
limit?: number;
|
|
1277
1277
|
page?: number;
|
|
@@ -2076,6 +2076,11 @@ export declare type AllUserMonarxDetails200RowsItem = {
|
|
|
2076
2076
|
* @nullable
|
|
2077
2077
|
*/
|
|
2078
2078
|
plan?: string | null;
|
|
2079
|
+
/**
|
|
2080
|
+
* Monarx product instance ID
|
|
2081
|
+
* @nullable
|
|
2082
|
+
*/
|
|
2083
|
+
prod_inst_id?: string | null;
|
|
2079
2084
|
/**
|
|
2080
2085
|
* Hosting product name
|
|
2081
2086
|
* @nullable
|
|
@@ -2629,9 +2634,6 @@ export declare type SitesVersion200 = {
|
|
|
2629
2634
|
latest?: string;
|
|
2630
2635
|
update?: boolean;
|
|
2631
2636
|
};
|
|
2632
|
-
export declare type SiteUsers200 = {
|
|
2633
|
-
users: SiteUsers200UsersItem[];
|
|
2634
|
-
};
|
|
2635
2637
|
export declare type SiteUsers200UsersItemMeta = {
|
|
2636
2638
|
maestro_web_pro?: string;
|
|
2637
2639
|
maestro_wpp_identifier?: string;
|
|
@@ -2647,6 +2649,9 @@ export declare type SiteUsers200UsersItem = {
|
|
|
2647
2649
|
user_login: string;
|
|
2648
2650
|
user_nicename: string;
|
|
2649
2651
|
};
|
|
2652
|
+
export declare type SiteUsers200 = {
|
|
2653
|
+
users: SiteUsers200UsersItem[];
|
|
2654
|
+
};
|
|
2650
2655
|
export declare type SiteStatus200 = {
|
|
2651
2656
|
/** @nullable */
|
|
2652
2657
|
cloudflare_ready?: boolean | null;
|
|
@@ -2985,9 +2990,6 @@ export declare type SiteQualityMetrics200Audits = {
|
|
|
2985
2990
|
export declare type SiteQualityMetrics200AspectScores = {
|
|
2986
2991
|
performance?: number;
|
|
2987
2992
|
};
|
|
2988
|
-
export declare type SiteQualityMetrics200AspectDetails = {
|
|
2989
|
-
performance?: SiteQualityMetrics200AspectDetailsPerformance;
|
|
2990
|
-
};
|
|
2991
2993
|
export declare type SiteQualityMetrics200 = {
|
|
2992
2994
|
aspect_details: SiteQualityMetrics200AspectDetails;
|
|
2993
2995
|
aspect_scores: SiteQualityMetrics200AspectScores;
|
|
@@ -2999,6 +3001,16 @@ export declare type SiteQualityMetrics200 = {
|
|
|
2999
3001
|
export declare type SiteQualityMetrics200AspectDetailsPerformanceTotalBlockingTime = {
|
|
3000
3002
|
[key: string]: unknown;
|
|
3001
3003
|
};
|
|
3004
|
+
export declare type SiteQualityMetrics200AspectDetailsPerformance = {
|
|
3005
|
+
'cumulative-layout-shift'?: SiteQualityMetrics200AspectDetailsPerformanceCumulativeLayoutShift;
|
|
3006
|
+
'first-contentful-paint'?: SiteQualityMetrics200AspectDetailsPerformanceFirstContentfulPaint;
|
|
3007
|
+
'largest-contentful-paint'?: SiteQualityMetrics200AspectDetailsPerformanceLargestContentfulPaint;
|
|
3008
|
+
'speed-index'?: SiteQualityMetrics200AspectDetailsPerformanceSpeedIndex;
|
|
3009
|
+
'total-blocking-time'?: SiteQualityMetrics200AspectDetailsPerformanceTotalBlockingTime;
|
|
3010
|
+
};
|
|
3011
|
+
export declare type SiteQualityMetrics200AspectDetails = {
|
|
3012
|
+
performance?: SiteQualityMetrics200AspectDetailsPerformance;
|
|
3013
|
+
};
|
|
3002
3014
|
export declare type SiteQualityMetrics200AspectDetailsPerformanceSpeedIndex = {
|
|
3003
3015
|
[key: string]: unknown;
|
|
3004
3016
|
};
|
|
@@ -3011,13 +3023,6 @@ export declare type SiteQualityMetrics200AspectDetailsPerformanceFirstContentful
|
|
|
3011
3023
|
export declare type SiteQualityMetrics200AspectDetailsPerformanceCumulativeLayoutShift = {
|
|
3012
3024
|
[key: string]: unknown;
|
|
3013
3025
|
};
|
|
3014
|
-
export declare type SiteQualityMetrics200AspectDetailsPerformance = {
|
|
3015
|
-
'cumulative-layout-shift'?: SiteQualityMetrics200AspectDetailsPerformanceCumulativeLayoutShift;
|
|
3016
|
-
'first-contentful-paint'?: SiteQualityMetrics200AspectDetailsPerformanceFirstContentfulPaint;
|
|
3017
|
-
'largest-contentful-paint'?: SiteQualityMetrics200AspectDetailsPerformanceLargestContentfulPaint;
|
|
3018
|
-
'speed-index'?: SiteQualityMetrics200AspectDetailsPerformanceSpeedIndex;
|
|
3019
|
-
'total-blocking-time'?: SiteQualityMetrics200AspectDetailsPerformanceTotalBlockingTime;
|
|
3020
|
-
};
|
|
3021
3026
|
export declare type SiteQualityMetricsStrategy = typeof SiteQualityMetricsStrategy[keyof typeof SiteQualityMetricsStrategy];
|
|
3022
3027
|
export declare const SiteQualityMetricsStrategy: {
|
|
3023
3028
|
readonly MOBILE: "MOBILE";
|
|
@@ -3236,6 +3241,18 @@ export declare type SitesMetricDimensions200DimensionsVisitorAsnItem = {
|
|
|
3236
3241
|
dimension?: SitesMetricDimensions200DimensionsVisitorAsnItemDimension;
|
|
3237
3242
|
timestamp?: number;
|
|
3238
3243
|
};
|
|
3244
|
+
export declare type SitesMetricDimensions200Dimensions = {
|
|
3245
|
+
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
3246
|
+
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
3247
|
+
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
3248
|
+
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
3249
|
+
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
3250
|
+
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
3251
|
+
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
3252
|
+
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
3253
|
+
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
3254
|
+
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
3255
|
+
};
|
|
3239
3256
|
export declare type SitesMetricDimensions200DimensionsPageRendererItemDimension = {
|
|
3240
3257
|
[key: string]: number;
|
|
3241
3258
|
};
|
|
@@ -3278,18 +3295,6 @@ export declare type SitesMetricDimensions200DimensionsHttpHostItem = {
|
|
|
3278
3295
|
dimension?: SitesMetricDimensions200DimensionsHttpHostItemDimension;
|
|
3279
3296
|
timestamp?: number;
|
|
3280
3297
|
};
|
|
3281
|
-
export declare type SitesMetricDimensions200Dimensions = {
|
|
3282
|
-
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
3283
|
-
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
3284
|
-
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
3285
|
-
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
3286
|
-
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
3287
|
-
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
3288
|
-
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
3289
|
-
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
3290
|
-
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
3291
|
-
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
3292
|
-
};
|
|
3293
3298
|
export declare type SitesMetricDimensionsParams = {
|
|
3294
3299
|
start?: string;
|
|
3295
3300
|
end?: string;
|
|
@@ -3726,10 +3731,6 @@ export declare type SitesAtomicMetrics200Views = {
|
|
|
3726
3731
|
last_n_days?: SitesAtomicMetrics200ViewsLastNDaysItem[];
|
|
3727
3732
|
total_hits?: number;
|
|
3728
3733
|
};
|
|
3729
|
-
export declare type SitesAtomicMetrics200 = {
|
|
3730
|
-
raw?: SitesAtomicMetrics200Raw;
|
|
3731
|
-
views?: SitesAtomicMetrics200Views;
|
|
3732
|
-
};
|
|
3733
3734
|
export declare type SitesAtomicMetrics200RawPeriodsItemDimension = {
|
|
3734
3735
|
[key: string]: string | number | number;
|
|
3735
3736
|
};
|
|
@@ -3747,6 +3748,10 @@ export declare type SitesAtomicMetrics200Raw = {
|
|
|
3747
3748
|
periods?: SitesAtomicMetrics200RawPeriodsItem[];
|
|
3748
3749
|
resolution?: number;
|
|
3749
3750
|
};
|
|
3751
|
+
export declare type SitesAtomicMetrics200 = {
|
|
3752
|
+
raw?: SitesAtomicMetrics200Raw;
|
|
3753
|
+
views?: SitesAtomicMetrics200Views;
|
|
3754
|
+
};
|
|
3750
3755
|
export declare type SitesAtomicMetricsParams = {
|
|
3751
3756
|
metric?: string[];
|
|
3752
3757
|
dimension?: string[];
|
|
@@ -3839,6 +3844,71 @@ export declare type SitesInfo200Staging = {
|
|
|
3839
3844
|
/** A list of staging sites of the current site */
|
|
3840
3845
|
sites?: number[];
|
|
3841
3846
|
} | null;
|
|
3847
|
+
export declare type SitesInfo200ResourcesStorage = {
|
|
3848
|
+
/** @nullable */
|
|
3849
|
+
available?: number | null;
|
|
3850
|
+
/** @nullable */
|
|
3851
|
+
total?: number | null;
|
|
3852
|
+
unit?: string;
|
|
3853
|
+
/** @nullable */
|
|
3854
|
+
used?: number | null;
|
|
3855
|
+
};
|
|
3856
|
+
export declare type SitesInfo200Resources = {
|
|
3857
|
+
storage?: SitesInfo200ResourcesStorage;
|
|
3858
|
+
/** @nullable */
|
|
3859
|
+
workers?: number | null;
|
|
3860
|
+
};
|
|
3861
|
+
/**
|
|
3862
|
+
* @nullable
|
|
3863
|
+
*/
|
|
3864
|
+
export declare type SitesInfo200PendingUrlData = {
|
|
3865
|
+
/**
|
|
3866
|
+
* The root domain name
|
|
3867
|
+
* @nullable
|
|
3868
|
+
*/
|
|
3869
|
+
base_domain?: string | null;
|
|
3870
|
+
/**
|
|
3871
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
3872
|
+
* @nullable
|
|
3873
|
+
*/
|
|
3874
|
+
domain?: string | null;
|
|
3875
|
+
/**
|
|
3876
|
+
* The current pending_url's HAL Domain ID
|
|
3877
|
+
* @nullable
|
|
3878
|
+
*/
|
|
3879
|
+
domain_id?: number | null;
|
|
3880
|
+
/** @nullable */
|
|
3881
|
+
error?: string | null;
|
|
3882
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
3883
|
+
is_temp?: boolean;
|
|
3884
|
+
/**
|
|
3885
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
3886
|
+
* @nullable
|
|
3887
|
+
*/
|
|
3888
|
+
job_failed?: boolean | null;
|
|
3889
|
+
/** @nullable */
|
|
3890
|
+
stage?: string | null;
|
|
3891
|
+
/**
|
|
3892
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
3893
|
+
* @nullable
|
|
3894
|
+
*/
|
|
3895
|
+
wp_session?: string | null;
|
|
3896
|
+
} | null;
|
|
3897
|
+
/**
|
|
3898
|
+
* @nullable
|
|
3899
|
+
*/
|
|
3900
|
+
export declare type SitesInfo200Pagespeed = {
|
|
3901
|
+
lastrun?: string;
|
|
3902
|
+
performance?: string;
|
|
3903
|
+
strategy?: string;
|
|
3904
|
+
} | null;
|
|
3905
|
+
/**
|
|
3906
|
+
* Job ids for the site
|
|
3907
|
+
* @nullable
|
|
3908
|
+
*/
|
|
3909
|
+
export declare type SitesInfo200Jobs = {
|
|
3910
|
+
[key: string]: unknown;
|
|
3911
|
+
} | null;
|
|
3842
3912
|
export declare type SitesInfo200 = {
|
|
3843
3913
|
/** @nullable */
|
|
3844
3914
|
account_back_ref?: string | null;
|
|
@@ -3879,7 +3949,7 @@ export declare type SitesInfo200 = {
|
|
|
3879
3949
|
* Whether Blu AI store is enabled for the site
|
|
3880
3950
|
* @nullable
|
|
3881
3951
|
*/
|
|
3882
|
-
install_blu_ai_store?:
|
|
3952
|
+
install_blu_ai_store?: string | null;
|
|
3883
3953
|
/** @nullable */
|
|
3884
3954
|
installed_id?: string | null;
|
|
3885
3955
|
/** True if docpath is public_html, otherwise False */
|
|
@@ -3937,71 +4007,6 @@ export declare type SitesInfo200 = {
|
|
|
3937
4007
|
/** @nullable */
|
|
3938
4008
|
wp_multi_site?: SitesInfo200WpMultiSite;
|
|
3939
4009
|
};
|
|
3940
|
-
export declare type SitesInfo200ResourcesStorage = {
|
|
3941
|
-
/** @nullable */
|
|
3942
|
-
available?: number | null;
|
|
3943
|
-
/** @nullable */
|
|
3944
|
-
total?: number | null;
|
|
3945
|
-
unit?: string;
|
|
3946
|
-
/** @nullable */
|
|
3947
|
-
used?: number | null;
|
|
3948
|
-
};
|
|
3949
|
-
export declare type SitesInfo200Resources = {
|
|
3950
|
-
storage?: SitesInfo200ResourcesStorage;
|
|
3951
|
-
/** @nullable */
|
|
3952
|
-
workers?: number | null;
|
|
3953
|
-
};
|
|
3954
|
-
/**
|
|
3955
|
-
* @nullable
|
|
3956
|
-
*/
|
|
3957
|
-
export declare type SitesInfo200PendingUrlData = {
|
|
3958
|
-
/**
|
|
3959
|
-
* The root domain name
|
|
3960
|
-
* @nullable
|
|
3961
|
-
*/
|
|
3962
|
-
base_domain?: string | null;
|
|
3963
|
-
/**
|
|
3964
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
3965
|
-
* @nullable
|
|
3966
|
-
*/
|
|
3967
|
-
domain?: string | null;
|
|
3968
|
-
/**
|
|
3969
|
-
* The current pending_url's HAL Domain ID
|
|
3970
|
-
* @nullable
|
|
3971
|
-
*/
|
|
3972
|
-
domain_id?: number | null;
|
|
3973
|
-
/** @nullable */
|
|
3974
|
-
error?: string | null;
|
|
3975
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
3976
|
-
is_temp?: boolean;
|
|
3977
|
-
/**
|
|
3978
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
3979
|
-
* @nullable
|
|
3980
|
-
*/
|
|
3981
|
-
job_failed?: boolean | null;
|
|
3982
|
-
/** @nullable */
|
|
3983
|
-
stage?: string | null;
|
|
3984
|
-
/**
|
|
3985
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
3986
|
-
* @nullable
|
|
3987
|
-
*/
|
|
3988
|
-
wp_session?: string | null;
|
|
3989
|
-
} | null;
|
|
3990
|
-
/**
|
|
3991
|
-
* @nullable
|
|
3992
|
-
*/
|
|
3993
|
-
export declare type SitesInfo200Pagespeed = {
|
|
3994
|
-
lastrun?: string;
|
|
3995
|
-
performance?: string;
|
|
3996
|
-
strategy?: string;
|
|
3997
|
-
} | null;
|
|
3998
|
-
/**
|
|
3999
|
-
* Job ids for the site
|
|
4000
|
-
* @nullable
|
|
4001
|
-
*/
|
|
4002
|
-
export declare type SitesInfo200Jobs = {
|
|
4003
|
-
[key: string]: unknown;
|
|
4004
|
-
} | null;
|
|
4005
4010
|
export declare type AccountPurchaseOrder404 = {
|
|
4006
4011
|
/** Customer error code */
|
|
4007
4012
|
error?: string;
|
|
@@ -4135,6 +4140,9 @@ export declare type AccountPurchaseProducts400 = {
|
|
|
4135
4140
|
/** Customer error code */
|
|
4136
4141
|
error?: string;
|
|
4137
4142
|
};
|
|
4143
|
+
export declare type AccountPurchaseProducts200 = {
|
|
4144
|
+
products?: AccountPurchaseProducts200ProductsItem[];
|
|
4145
|
+
};
|
|
4138
4146
|
export declare type AccountPurchaseProducts200ProductsItemTermsItem = {
|
|
4139
4147
|
base_price?: string;
|
|
4140
4148
|
final_price?: string;
|
|
@@ -4170,9 +4178,6 @@ export declare type AccountPurchaseProducts200ProductsItem = {
|
|
|
4170
4178
|
specs?: AccountPurchaseProducts200ProductsItemSpecs;
|
|
4171
4179
|
terms?: AccountPurchaseProducts200ProductsItemTermsItem[];
|
|
4172
4180
|
};
|
|
4173
|
-
export declare type AccountPurchaseProducts200 = {
|
|
4174
|
-
products?: AccountPurchaseProducts200ProductsItem[];
|
|
4175
|
-
};
|
|
4176
4181
|
export declare type PublicRegions200RowsItem = {
|
|
4177
4182
|
/**
|
|
4178
4183
|
* Hosting region city
|
|
@@ -4239,16 +4244,6 @@ export declare type PublicRegions200 = {
|
|
|
4239
4244
|
/** List of regions */
|
|
4240
4245
|
rows?: PublicRegions200RowsItem[];
|
|
4241
4246
|
};
|
|
4242
|
-
export declare type PublicImages200 = {
|
|
4243
|
-
/** Limit the number of images returned */
|
|
4244
|
-
limit?: PublicImages200Limit;
|
|
4245
|
-
/** Number of images returned */
|
|
4246
|
-
n_rows?: PublicImages200NRows;
|
|
4247
|
-
/** Page number */
|
|
4248
|
-
page?: PublicImages200Page;
|
|
4249
|
-
/** List of images */
|
|
4250
|
-
rows?: PublicImages200RowsItem[];
|
|
4251
|
-
};
|
|
4252
4247
|
/**
|
|
4253
4248
|
* Links
|
|
4254
4249
|
* @nullable
|
|
@@ -4404,6 +4399,16 @@ export declare type PublicImages200NRows = string | number;
|
|
|
4404
4399
|
* Limit the number of images returned
|
|
4405
4400
|
*/
|
|
4406
4401
|
export declare type PublicImages200Limit = string | number;
|
|
4402
|
+
export declare type PublicImages200 = {
|
|
4403
|
+
/** Limit the number of images returned */
|
|
4404
|
+
limit?: PublicImages200Limit;
|
|
4405
|
+
/** Number of images returned */
|
|
4406
|
+
n_rows?: PublicImages200NRows;
|
|
4407
|
+
/** Page number */
|
|
4408
|
+
page?: PublicImages200Page;
|
|
4409
|
+
/** List of images */
|
|
4410
|
+
rows?: PublicImages200RowsItem[];
|
|
4411
|
+
};
|
|
4407
4412
|
export declare type PublicImagesParams = {
|
|
4408
4413
|
/**
|
|
4409
4414
|
* Brand identifier (e.g. bluehost).
|
|
@@ -4424,6 +4429,17 @@ export declare type HostingVisitors200VisitorsItem = {
|
|
|
4424
4429
|
unique_visitors?: number;
|
|
4425
4430
|
visitors?: number;
|
|
4426
4431
|
};
|
|
4432
|
+
export declare type HostingVisitors200 = {
|
|
4433
|
+
daily?: HostingVisitors200Daily;
|
|
4434
|
+
is_linked_domain?: boolean;
|
|
4435
|
+
linked_domain?: string;
|
|
4436
|
+
total_bandwidth?: number;
|
|
4437
|
+
total_hits?: number;
|
|
4438
|
+
total_pages?: number;
|
|
4439
|
+
total_unique_visitors?: number;
|
|
4440
|
+
total_visitors?: number;
|
|
4441
|
+
visitors?: HostingVisitors200VisitorsItem[];
|
|
4442
|
+
};
|
|
4427
4443
|
export declare type HostingVisitors200DailyTotal = {
|
|
4428
4444
|
total_bandwidth?: number;
|
|
4429
4445
|
total_hits?: number;
|
|
@@ -4439,21 +4455,10 @@ export declare type HostingVisitors200DailyDataItem = {
|
|
|
4439
4455
|
pages?: number;
|
|
4440
4456
|
visits?: number;
|
|
4441
4457
|
};
|
|
4442
|
-
export declare type HostingVisitors200Daily = {
|
|
4443
|
-
data?: HostingVisitors200DailyDataItem[];
|
|
4444
|
-
total?: HostingVisitors200DailyTotal;
|
|
4445
|
-
};
|
|
4446
|
-
export declare type HostingVisitors200 = {
|
|
4447
|
-
daily?: HostingVisitors200Daily;
|
|
4448
|
-
is_linked_domain?: boolean;
|
|
4449
|
-
linked_domain?: string;
|
|
4450
|
-
total_bandwidth?: number;
|
|
4451
|
-
total_hits?: number;
|
|
4452
|
-
total_pages?: number;
|
|
4453
|
-
total_unique_visitors?: number;
|
|
4454
|
-
total_visitors?: number;
|
|
4455
|
-
visitors?: HostingVisitors200VisitorsItem[];
|
|
4456
|
-
};
|
|
4458
|
+
export declare type HostingVisitors200Daily = {
|
|
4459
|
+
data?: HostingVisitors200DailyDataItem[];
|
|
4460
|
+
total?: HostingVisitors200DailyTotal;
|
|
4461
|
+
};
|
|
4457
4462
|
export declare type HostingVisitorsSource = typeof HostingVisitorsSource[keyof typeof HostingVisitorsSource];
|
|
4458
4463
|
export declare const HostingVisitorsSource: {
|
|
4459
4464
|
readonly http: "http";
|
|
@@ -4783,6 +4788,9 @@ export declare type HostingRedirects200Item = {
|
|
|
4783
4788
|
url?: string;
|
|
4784
4789
|
wildcard?: boolean;
|
|
4785
4790
|
};
|
|
4791
|
+
export declare type ProductLicenseDetails200 = {
|
|
4792
|
+
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
4793
|
+
};
|
|
4786
4794
|
export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
|
|
4787
4795
|
expirationDate?: string;
|
|
4788
4796
|
prodInstId?: string;
|
|
@@ -4796,9 +4804,6 @@ export declare type ProductLicenseDetails200Wpsolution = {
|
|
|
4796
4804
|
creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
|
|
4797
4805
|
total?: number;
|
|
4798
4806
|
};
|
|
4799
|
-
export declare type ProductLicenseDetails200 = {
|
|
4800
|
-
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
4801
|
-
};
|
|
4802
4807
|
export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
|
|
4803
4808
|
export declare const ProductLicenseDetailsProductName: {
|
|
4804
4809
|
readonly wpsolution: "wpsolution";
|
|
@@ -7025,9 +7030,6 @@ export declare const HostingAdvancedConsoleProtocol: {
|
|
|
7025
7030
|
export declare type HostingAdvancedConsoleParams = {
|
|
7026
7031
|
protocol?: HostingAdvancedConsoleProtocol;
|
|
7027
7032
|
};
|
|
7028
|
-
export declare type HostingAddons200 = {
|
|
7029
|
-
rows?: HostingAddons200RowsItem[];
|
|
7030
|
-
};
|
|
7031
7033
|
export declare type HostingAddons200RowsItemMeta = {
|
|
7032
7034
|
[key: string]: string | number | boolean;
|
|
7033
7035
|
};
|
|
@@ -7043,6 +7045,9 @@ export declare type HostingAddons200RowsItem = {
|
|
|
7043
7045
|
subtype?: string;
|
|
7044
7046
|
type?: string;
|
|
7045
7047
|
};
|
|
7048
|
+
export declare type HostingAddons200 = {
|
|
7049
|
+
rows?: HostingAddons200RowsItem[];
|
|
7050
|
+
};
|
|
7046
7051
|
export declare type HostingAddonsParams = {
|
|
7047
7052
|
status?: string;
|
|
7048
7053
|
subtype?: string;
|
|
@@ -7114,28 +7119,6 @@ export declare type HostingAccount200Resources = {
|
|
|
7114
7119
|
used?: HostingAccount200ResourcesUsed;
|
|
7115
7120
|
workers?: HostingAccount200ResourcesWorkers;
|
|
7116
7121
|
} | null;
|
|
7117
|
-
export declare type HostingAccount200 = {
|
|
7118
|
-
account_id?: string;
|
|
7119
|
-
account_limits?: HostingAccount200AccountLimits;
|
|
7120
|
-
/** The timestamp that the hosting addon was created */
|
|
7121
|
-
addon_date_added?: string;
|
|
7122
|
-
advanced?: boolean;
|
|
7123
|
-
billing?: HostingAccount200Billing;
|
|
7124
|
-
brand?: string;
|
|
7125
|
-
id?: string;
|
|
7126
|
-
panel?: string;
|
|
7127
|
-
plan_key?: string;
|
|
7128
|
-
platform?: string;
|
|
7129
|
-
/** @nullable */
|
|
7130
|
-
resources?: HostingAccount200Resources;
|
|
7131
|
-
/** @nullable */
|
|
7132
|
-
server_status?: string | null;
|
|
7133
|
-
/** @nullable */
|
|
7134
|
-
ssh_hostname?: string | null;
|
|
7135
|
-
status?: string;
|
|
7136
|
-
type?: string;
|
|
7137
|
-
username?: string;
|
|
7138
|
-
};
|
|
7139
7122
|
export declare type HostingAccount200ResourcesStagingWorkers = {
|
|
7140
7123
|
/** @nullable */
|
|
7141
7124
|
available?: number | null;
|
|
@@ -7179,6 +7162,28 @@ export declare type HostingAccount200AccountLimits = {
|
|
|
7179
7162
|
*/
|
|
7180
7163
|
sites?: number | null;
|
|
7181
7164
|
};
|
|
7165
|
+
export declare type HostingAccount200 = {
|
|
7166
|
+
account_id?: string;
|
|
7167
|
+
account_limits?: HostingAccount200AccountLimits;
|
|
7168
|
+
/** The timestamp that the hosting addon was created */
|
|
7169
|
+
addon_date_added?: string;
|
|
7170
|
+
advanced?: boolean;
|
|
7171
|
+
billing?: HostingAccount200Billing;
|
|
7172
|
+
brand?: string;
|
|
7173
|
+
id?: string;
|
|
7174
|
+
panel?: string;
|
|
7175
|
+
plan_key?: string;
|
|
7176
|
+
platform?: string;
|
|
7177
|
+
/** @nullable */
|
|
7178
|
+
resources?: HostingAccount200Resources;
|
|
7179
|
+
/** @nullable */
|
|
7180
|
+
server_status?: string | null;
|
|
7181
|
+
/** @nullable */
|
|
7182
|
+
ssh_hostname?: string | null;
|
|
7183
|
+
status?: string;
|
|
7184
|
+
type?: string;
|
|
7185
|
+
username?: string;
|
|
7186
|
+
};
|
|
7182
7187
|
export declare type EntriJwt200 = {
|
|
7183
7188
|
/** Entri authentication token for client-side domain setup. */
|
|
7184
7189
|
token: string;
|
|
@@ -7221,49 +7226,6 @@ export declare type AccessLogsParams = {
|
|
|
7221
7226
|
*/
|
|
7222
7227
|
type?: AccessLogsType;
|
|
7223
7228
|
};
|
|
7224
|
-
export declare type DomainHealth200 = {
|
|
7225
|
-
/**
|
|
7226
|
-
* The alignment status: aligned , misaligned , partial , propagating , unknown , error
|
|
7227
|
-
* @nullable
|
|
7228
|
-
*/
|
|
7229
|
-
alignment_status?: string | null;
|
|
7230
|
-
/** @nullable */
|
|
7231
|
-
cache?: DomainHealth200Cache;
|
|
7232
|
-
/**
|
|
7233
|
-
* Per-record A/NS checks with observed layers. Empty on cache hit.
|
|
7234
|
-
* @nullable
|
|
7235
|
-
*/
|
|
7236
|
-
checks?: DomainHealth200ChecksItem[] | null;
|
|
7237
|
-
/** @nullable */
|
|
7238
|
-
context?: DomainHealth200Context;
|
|
7239
|
-
/** @nullable */
|
|
7240
|
-
execution_ms?: number | null;
|
|
7241
|
-
/** @nullable */
|
|
7242
|
-
expected_source_order?: string[] | null;
|
|
7243
|
-
/** @nullable */
|
|
7244
|
-
layers?: DomainHealth200Layers;
|
|
7245
|
-
/**
|
|
7246
|
-
* Highest-severity issue code when not aligned.
|
|
7247
|
-
* @nullable
|
|
7248
|
-
*/
|
|
7249
|
-
primary_issue_code?: string | null;
|
|
7250
|
-
/**
|
|
7251
|
-
* The schema version: 1.1
|
|
7252
|
-
* @nullable
|
|
7253
|
-
*/
|
|
7254
|
-
schema_version?: string | null;
|
|
7255
|
-
/**
|
|
7256
|
-
* Severity: critical , high , medium , low , info
|
|
7257
|
-
* @nullable
|
|
7258
|
-
*/
|
|
7259
|
-
severity?: string | null;
|
|
7260
|
-
/** @nullable */
|
|
7261
|
-
source_timings?: DomainHealth200SourceTimings;
|
|
7262
|
-
/** @nullable */
|
|
7263
|
-
sources?: DomainHealth200Sources;
|
|
7264
|
-
/** @nullable */
|
|
7265
|
-
ssl?: DomainHealth200Ssl;
|
|
7266
|
-
};
|
|
7267
7229
|
/**
|
|
7268
7230
|
* @nullable
|
|
7269
7231
|
*/
|
|
@@ -7347,56 +7309,272 @@ export declare type DomainHealth200Ssl = {
|
|
|
7347
7309
|
*/
|
|
7348
7310
|
skip_reason?: string | null;
|
|
7349
7311
|
/**
|
|
7350
|
-
* Whether SSL check was skipped
|
|
7312
|
+
* Whether SSL check was skipped
|
|
7313
|
+
* @nullable
|
|
7314
|
+
*/
|
|
7315
|
+
skipped?: boolean | null;
|
|
7316
|
+
} | null;
|
|
7317
|
+
export declare type DomainHealth200 = {
|
|
7318
|
+
/**
|
|
7319
|
+
* The alignment status: aligned , misaligned , partial , propagating , unknown , error
|
|
7320
|
+
* @nullable
|
|
7321
|
+
*/
|
|
7322
|
+
alignment_status?: string | null;
|
|
7323
|
+
/** @nullable */
|
|
7324
|
+
cache?: DomainHealth200Cache;
|
|
7325
|
+
/**
|
|
7326
|
+
* Per-record A/NS checks with observed layers. Empty on cache hit.
|
|
7327
|
+
* @nullable
|
|
7328
|
+
*/
|
|
7329
|
+
checks?: DomainHealth200ChecksItem[] | null;
|
|
7330
|
+
/** @nullable */
|
|
7331
|
+
context?: DomainHealth200Context;
|
|
7332
|
+
/**
|
|
7333
|
+
* Email diagnosis when checks includes email; includes checks and email_deliverability
|
|
7334
|
+
* @nullable
|
|
7335
|
+
*/
|
|
7336
|
+
email?: DomainHealth200Email;
|
|
7337
|
+
/** @nullable */
|
|
7338
|
+
execution_ms?: number | null;
|
|
7339
|
+
/** @nullable */
|
|
7340
|
+
expected_source_order?: string[] | null;
|
|
7341
|
+
/** @nullable */
|
|
7342
|
+
layers?: DomainHealth200Layers;
|
|
7343
|
+
/**
|
|
7344
|
+
* Highest-severity issue code when not aligned.
|
|
7345
|
+
* @nullable
|
|
7346
|
+
*/
|
|
7347
|
+
primary_issue_code?: string | null;
|
|
7348
|
+
/**
|
|
7349
|
+
* The schema version: 1.1
|
|
7350
|
+
* @nullable
|
|
7351
|
+
*/
|
|
7352
|
+
schema_version?: string | null;
|
|
7353
|
+
/**
|
|
7354
|
+
* Severity: critical , high , medium , low , info
|
|
7355
|
+
* @nullable
|
|
7356
|
+
*/
|
|
7357
|
+
severity?: string | null;
|
|
7358
|
+
/**
|
|
7359
|
+
* Site-layer diagnosis when checks includes site
|
|
7360
|
+
* @nullable
|
|
7361
|
+
*/
|
|
7362
|
+
site?: DomainHealth200Site;
|
|
7363
|
+
/** @nullable */
|
|
7364
|
+
source_timings?: DomainHealth200SourceTimings;
|
|
7365
|
+
/** @nullable */
|
|
7366
|
+
sources?: DomainHealth200Sources;
|
|
7367
|
+
/** @nullable */
|
|
7368
|
+
ssl?: DomainHealth200Ssl;
|
|
7369
|
+
};
|
|
7370
|
+
export declare type DomainHealth200SourcesZoneXns = {
|
|
7371
|
+
[key: string]: unknown;
|
|
7372
|
+
};
|
|
7373
|
+
export declare type DomainHealth200SourcesZoneRegistrar = {
|
|
7374
|
+
[key: string]: unknown;
|
|
7375
|
+
};
|
|
7376
|
+
export declare type DomainHealth200SourcesZoneBox = {
|
|
7377
|
+
[key: string]: unknown;
|
|
7378
|
+
};
|
|
7379
|
+
export declare type DomainHealth200SourcesDnsStatus = {
|
|
7380
|
+
[key: string]: unknown;
|
|
7381
|
+
};
|
|
7382
|
+
export declare type DomainHealth200SourcesDeliverability = {
|
|
7383
|
+
[key: string]: unknown;
|
|
7384
|
+
};
|
|
7385
|
+
/**
|
|
7386
|
+
* @nullable
|
|
7387
|
+
*/
|
|
7388
|
+
export declare type DomainHealth200Sources = {
|
|
7389
|
+
deliverability?: DomainHealth200SourcesDeliverability;
|
|
7390
|
+
dns_status?: DomainHealth200SourcesDnsStatus;
|
|
7391
|
+
zone_box?: DomainHealth200SourcesZoneBox;
|
|
7392
|
+
zone_registrar?: DomainHealth200SourcesZoneRegistrar;
|
|
7393
|
+
zone_xns?: DomainHealth200SourcesZoneXns;
|
|
7394
|
+
} | null;
|
|
7395
|
+
/**
|
|
7396
|
+
* @nullable
|
|
7397
|
+
*/
|
|
7398
|
+
export declare type DomainHealth200SourceTimings = {
|
|
7399
|
+
deliverability?: number;
|
|
7400
|
+
dns_status?: number;
|
|
7401
|
+
zone_box?: number;
|
|
7402
|
+
zone_registrar?: number;
|
|
7403
|
+
zone_xns?: number;
|
|
7404
|
+
} | null;
|
|
7405
|
+
/**
|
|
7406
|
+
* @nullable
|
|
7407
|
+
*/
|
|
7408
|
+
export declare type DomainHealth200SiteContext = {
|
|
7409
|
+
account_id?: number;
|
|
7410
|
+
docpath?: string;
|
|
7411
|
+
docroot?: string;
|
|
7412
|
+
domain?: string;
|
|
7413
|
+
domain_id?: number;
|
|
7414
|
+
domain_type?: string;
|
|
7415
|
+
pending_url?: string;
|
|
7416
|
+
pending_url_error?: string;
|
|
7417
|
+
pending_url_stage?: string;
|
|
7418
|
+
requested_site_id?: number;
|
|
7419
|
+
site_id?: number;
|
|
7420
|
+
site_status?: string;
|
|
7421
|
+
site_type?: string;
|
|
7422
|
+
url?: string;
|
|
7423
|
+
url_is_provisional?: boolean;
|
|
7424
|
+
} | null;
|
|
7425
|
+
/**
|
|
7426
|
+
* @nullable
|
|
7427
|
+
*/
|
|
7428
|
+
export declare type DomainHealth200SiteChecksItemObserved = {
|
|
7429
|
+
[key: string]: unknown;
|
|
7430
|
+
} | null;
|
|
7431
|
+
export declare type DomainHealth200SiteChecksItem = {
|
|
7432
|
+
code?: string;
|
|
7433
|
+
expected?: string[];
|
|
7434
|
+
layer?: string;
|
|
7435
|
+
name?: string;
|
|
7436
|
+
/** @nullable */
|
|
7437
|
+
observed?: DomainHealth200SiteChecksItemObserved;
|
|
7438
|
+
reason?: string;
|
|
7439
|
+
severity?: string;
|
|
7440
|
+
status?: string;
|
|
7441
|
+
suggested_fix?: string;
|
|
7442
|
+
support_category?: string;
|
|
7443
|
+
};
|
|
7444
|
+
/**
|
|
7445
|
+
* Site-layer diagnosis when checks includes site
|
|
7446
|
+
* @nullable
|
|
7447
|
+
*/
|
|
7448
|
+
export declare type DomainHealth200Site = {
|
|
7449
|
+
/**
|
|
7450
|
+
* Site alignment status: aligned, misaligned, partial, propagating, unknown, error
|
|
7451
|
+
* @nullable
|
|
7452
|
+
*/
|
|
7453
|
+
alignment_status?: string | null;
|
|
7454
|
+
/** @nullable */
|
|
7455
|
+
checked?: boolean | null;
|
|
7456
|
+
/** @nullable */
|
|
7457
|
+
checks?: DomainHealth200SiteChecksItem[] | null;
|
|
7458
|
+
/** @nullable */
|
|
7459
|
+
context?: DomainHealth200SiteContext;
|
|
7460
|
+
/** @nullable */
|
|
7461
|
+
primary_issue_code?: string | null;
|
|
7462
|
+
/** @nullable */
|
|
7463
|
+
severity?: string | null;
|
|
7464
|
+
/** @nullable */
|
|
7465
|
+
site_id?: number | null;
|
|
7466
|
+
/** @nullable */
|
|
7467
|
+
skip_reason?: string | null;
|
|
7468
|
+
/** @nullable */
|
|
7469
|
+
skipped?: boolean | null;
|
|
7470
|
+
/** @nullable */
|
|
7471
|
+
success?: boolean | null;
|
|
7472
|
+
} | null;
|
|
7473
|
+
export declare type DomainHealth200LayersLabels = {
|
|
7474
|
+
[key: string]: unknown;
|
|
7475
|
+
};
|
|
7476
|
+
/**
|
|
7477
|
+
* @nullable
|
|
7478
|
+
*/
|
|
7479
|
+
export declare type DomainHealth200Layers = {
|
|
7480
|
+
labels?: DomainHealth200LayersLabels;
|
|
7481
|
+
order?: string[];
|
|
7482
|
+
} | null;
|
|
7483
|
+
/**
|
|
7484
|
+
* Email diagnosis when checks includes email; includes checks and email_deliverability
|
|
7485
|
+
* @nullable
|
|
7486
|
+
*/
|
|
7487
|
+
export declare type DomainHealth200Email = {
|
|
7488
|
+
/** @nullable */
|
|
7489
|
+
checked?: boolean | null;
|
|
7490
|
+
/** @nullable */
|
|
7491
|
+
checks?: DomainHealth200EmailChecksItem[] | null;
|
|
7492
|
+
/**
|
|
7493
|
+
* Sanitized deliverability_check payload when checks includes email
|
|
7351
7494
|
* @nullable
|
|
7352
7495
|
*/
|
|
7496
|
+
email_deliverability?: DomainHealth200EmailEmailDeliverability;
|
|
7497
|
+
/** @nullable */
|
|
7498
|
+
primary_issue_code?: string | null;
|
|
7499
|
+
/** @nullable */
|
|
7500
|
+
propagation_related?: boolean | null;
|
|
7501
|
+
/** @nullable */
|
|
7502
|
+
severity?: string | null;
|
|
7503
|
+
/** @nullable */
|
|
7504
|
+
skip_reason?: string | null;
|
|
7505
|
+
/** @nullable */
|
|
7353
7506
|
skipped?: boolean | null;
|
|
7507
|
+
/** @nullable */
|
|
7508
|
+
success?: boolean | null;
|
|
7354
7509
|
} | null;
|
|
7355
|
-
export declare type DomainHealth200SourcesZoneXns = {
|
|
7356
|
-
[key: string]: unknown;
|
|
7357
|
-
};
|
|
7358
|
-
export declare type DomainHealth200SourcesZoneRegistrar = {
|
|
7359
|
-
[key: string]: unknown;
|
|
7360
|
-
};
|
|
7361
|
-
export declare type DomainHealth200SourcesZoneBox = {
|
|
7362
|
-
[key: string]: unknown;
|
|
7363
|
-
};
|
|
7364
|
-
export declare type DomainHealth200SourcesDnsStatus = {
|
|
7365
|
-
[key: string]: unknown;
|
|
7366
|
-
};
|
|
7367
|
-
export declare type DomainHealth200SourcesDeliverability = {
|
|
7368
|
-
[key: string]: unknown;
|
|
7369
|
-
};
|
|
7370
7510
|
/**
|
|
7371
7511
|
* @nullable
|
|
7372
7512
|
*/
|
|
7373
|
-
export declare type
|
|
7374
|
-
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
zone_xns?: DomainHealth200SourcesZoneXns;
|
|
7513
|
+
export declare type DomainHealth200EmailEmailDeliverabilitySpfCheck = {
|
|
7514
|
+
box_spf?: string;
|
|
7515
|
+
record_name?: string;
|
|
7516
|
+
spf_match?: boolean;
|
|
7517
|
+
xns_spf?: string;
|
|
7379
7518
|
} | null;
|
|
7380
7519
|
/**
|
|
7381
7520
|
* @nullable
|
|
7382
7521
|
*/
|
|
7383
|
-
export declare type
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
zone_registrar?: number;
|
|
7388
|
-
zone_xns?: number;
|
|
7522
|
+
export declare type DomainHealth200EmailEmailDeliverabilityPtrCheck = {
|
|
7523
|
+
helo_hostname?: string;
|
|
7524
|
+
ptr_name?: string;
|
|
7525
|
+
ptr_value?: string;
|
|
7389
7526
|
} | null;
|
|
7390
|
-
export declare type DomainHealth200LayersLabels = {
|
|
7391
|
-
[key: string]: unknown;
|
|
7392
|
-
};
|
|
7393
7527
|
/**
|
|
7394
7528
|
* @nullable
|
|
7395
7529
|
*/
|
|
7396
|
-
export declare type
|
|
7397
|
-
|
|
7398
|
-
|
|
7530
|
+
export declare type DomainHealth200EmailEmailDeliverabilityMxCheck = {
|
|
7531
|
+
box_mx?: string;
|
|
7532
|
+
mx_match?: boolean;
|
|
7533
|
+
xns_mx?: string;
|
|
7534
|
+
} | null;
|
|
7535
|
+
/**
|
|
7536
|
+
* @nullable
|
|
7537
|
+
*/
|
|
7538
|
+
export declare type DomainHealth200EmailEmailDeliverabilityDkimCheck = {
|
|
7539
|
+
dkim_record?: string;
|
|
7540
|
+
pubkeys_match?: boolean;
|
|
7541
|
+
record_name?: string;
|
|
7542
|
+
record_pubkey?: string;
|
|
7543
|
+
server_pubkey?: string;
|
|
7544
|
+
} | null;
|
|
7545
|
+
/**
|
|
7546
|
+
* @nullable
|
|
7547
|
+
*/
|
|
7548
|
+
export declare type DomainHealth200EmailEmailDeliverabilityARecordCheck = {
|
|
7549
|
+
a_match?: boolean;
|
|
7550
|
+
box?: string;
|
|
7551
|
+
detected?: string;
|
|
7552
|
+
xns?: string;
|
|
7553
|
+
} | null;
|
|
7554
|
+
/**
|
|
7555
|
+
* Sanitized deliverability_check payload when checks includes email
|
|
7556
|
+
* @nullable
|
|
7557
|
+
*/
|
|
7558
|
+
export declare type DomainHealth200EmailEmailDeliverability = {
|
|
7559
|
+
/** @nullable */
|
|
7560
|
+
a_record_check?: DomainHealth200EmailEmailDeliverabilityARecordCheck;
|
|
7561
|
+
/** @nullable */
|
|
7562
|
+
dkim_check?: DomainHealth200EmailEmailDeliverabilityDkimCheck;
|
|
7563
|
+
/** @nullable */
|
|
7564
|
+
mx_check?: DomainHealth200EmailEmailDeliverabilityMxCheck;
|
|
7565
|
+
/** @nullable */
|
|
7566
|
+
ptr_check?: DomainHealth200EmailEmailDeliverabilityPtrCheck;
|
|
7567
|
+
/** @nullable */
|
|
7568
|
+
spf_check?: DomainHealth200EmailEmailDeliverabilitySpfCheck;
|
|
7569
|
+
/** @nullable */
|
|
7570
|
+
success?: boolean | null;
|
|
7399
7571
|
} | null;
|
|
7572
|
+
export declare type DomainHealth200EmailChecksItem = {
|
|
7573
|
+
code?: string;
|
|
7574
|
+
label?: string;
|
|
7575
|
+
severity?: string;
|
|
7576
|
+
status?: string;
|
|
7577
|
+
};
|
|
7400
7578
|
/**
|
|
7401
7579
|
* @nullable
|
|
7402
7580
|
*/
|
|
@@ -7406,6 +7584,9 @@ export declare type DomainHealth200Context = {
|
|
|
7406
7584
|
domain?: string;
|
|
7407
7585
|
domain_id?: string;
|
|
7408
7586
|
parent_zone_domain?: string;
|
|
7587
|
+
pending_url?: string;
|
|
7588
|
+
site_id?: number;
|
|
7589
|
+
url_is_provisional?: boolean;
|
|
7409
7590
|
} | null;
|
|
7410
7591
|
export declare type DomainHealth200ChecksItemObserved = {
|
|
7411
7592
|
cpanel?: string[];
|
|
@@ -7457,9 +7638,8 @@ export declare type DomainHealthChecksItem = typeof DomainHealthChecksItem[keyof
|
|
|
7457
7638
|
export declare const DomainHealthChecksItem: {
|
|
7458
7639
|
readonly hosting: "hosting";
|
|
7459
7640
|
readonly email: "email";
|
|
7460
|
-
readonly ssl_prereq: "ssl_prereq";
|
|
7461
|
-
readonly cdn: "cdn";
|
|
7462
7641
|
readonly ssl: "ssl";
|
|
7642
|
+
readonly site: "site";
|
|
7463
7643
|
};
|
|
7464
7644
|
export declare type DomainHealthParams = {
|
|
7465
7645
|
/**
|
|
@@ -7486,6 +7666,10 @@ export declare type DomainHealthParams = {
|
|
|
7486
7666
|
* Include raw_records in response only; does not change alignment logic
|
|
7487
7667
|
*/
|
|
7488
7668
|
raw_records?: boolean;
|
|
7669
|
+
/**
|
|
7670
|
+
* Optional HAL site id for provisional URL context during site alignment. Ignored when the site is not on the same hosting account as the domain; site alignment for that site_id is omitted.
|
|
7671
|
+
*/
|
|
7672
|
+
site_id?: number;
|
|
7489
7673
|
};
|
|
7490
7674
|
export declare type DomainsUnsetEntriUsed200 = {
|
|
7491
7675
|
[key: string]: unknown;
|
|
@@ -8255,16 +8439,6 @@ export declare type BackupCreateOndemandV1Body = {
|
|
|
8255
8439
|
/** Snapshot date */
|
|
8256
8440
|
snapshot_date: number;
|
|
8257
8441
|
};
|
|
8258
|
-
export declare type BackupMeta200Site = {
|
|
8259
|
-
/** @nullable */
|
|
8260
|
-
cbs_backup_delete_data?: BackupMeta200SiteCbsBackupDeleteData;
|
|
8261
|
-
/** @nullable */
|
|
8262
|
-
cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
|
|
8263
|
-
/** @nullable */
|
|
8264
|
-
cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
|
|
8265
|
-
/** @nullable */
|
|
8266
|
-
restored_from_backup_id?: string | null;
|
|
8267
|
-
};
|
|
8268
8442
|
export declare type BackupMeta200 = {
|
|
8269
8443
|
account?: BackupMeta200Account;
|
|
8270
8444
|
site?: BackupMeta200Site;
|
|
@@ -8326,6 +8500,16 @@ export declare type BackupMeta200SiteCbsDownloadablesItem = {
|
|
|
8326
8500
|
/** @nullable */
|
|
8327
8501
|
url?: string | null;
|
|
8328
8502
|
};
|
|
8503
|
+
export declare type BackupMeta200Site = {
|
|
8504
|
+
/** @nullable */
|
|
8505
|
+
cbs_backup_delete_data?: BackupMeta200SiteCbsBackupDeleteData;
|
|
8506
|
+
/** @nullable */
|
|
8507
|
+
cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
|
|
8508
|
+
/** @nullable */
|
|
8509
|
+
cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
|
|
8510
|
+
/** @nullable */
|
|
8511
|
+
restored_from_backup_id?: string | null;
|
|
8512
|
+
};
|
|
8329
8513
|
/**
|
|
8330
8514
|
* Backup plan type for deletion metadata.
|
|
8331
8515
|
* @nullable
|
|
@@ -8778,6 +8962,12 @@ export declare type CodeguardBackupCreateBody = {
|
|
|
8778
8962
|
/** The id of the website the given database is associated with. */
|
|
8779
8963
|
website_id?: number;
|
|
8780
8964
|
};
|
|
8965
|
+
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
8966
|
+
commit_id?: string;
|
|
8967
|
+
event_time?: string;
|
|
8968
|
+
id?: number;
|
|
8969
|
+
recommended?: boolean;
|
|
8970
|
+
};
|
|
8781
8971
|
export declare type CodeguardBackupList200BackupsItem = {
|
|
8782
8972
|
database_backups?: CodeguardBackupList200BackupsItemDatabaseBackupsItem[];
|
|
8783
8973
|
event_time?: string;
|
|
@@ -8786,12 +8976,6 @@ export declare type CodeguardBackupList200BackupsItem = {
|
|
|
8786
8976
|
export declare type CodeguardBackupList200 = {
|
|
8787
8977
|
backups?: CodeguardBackupList200BackupsItem[];
|
|
8788
8978
|
};
|
|
8789
|
-
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
8790
|
-
commit_id?: string;
|
|
8791
|
-
event_time?: string;
|
|
8792
|
-
id?: number;
|
|
8793
|
-
recommended?: boolean;
|
|
8794
|
-
};
|
|
8795
8979
|
export declare type CodeguardBackupListParams = {
|
|
8796
8980
|
website_id: number;
|
|
8797
8981
|
};
|
|
@@ -8971,6 +9155,12 @@ export declare type AccountHostingListParams = {
|
|
|
8971
9155
|
*/
|
|
8972
9156
|
server_type?: string[];
|
|
8973
9157
|
};
|
|
9158
|
+
export declare type AccountFeatures200 = {
|
|
9159
|
+
/** Feature information for the paginated product instances */
|
|
9160
|
+
rows?: AccountFeatures200RowsItem[];
|
|
9161
|
+
/** Total number of product instance IDs available to that account */
|
|
9162
|
+
total_count?: number;
|
|
9163
|
+
};
|
|
8974
9164
|
/**
|
|
8975
9165
|
* Usage statistics
|
|
8976
9166
|
* @nullable
|
|
@@ -9034,73 +9224,6 @@ export declare type AccountFeatures200RowsItemLimit = {
|
|
|
9034
9224
|
*/
|
|
9035
9225
|
workers?: number | null;
|
|
9036
9226
|
} | null;
|
|
9037
|
-
/**
|
|
9038
|
-
* Feature details from HAL account_feature_info_list
|
|
9039
|
-
*/
|
|
9040
|
-
export declare type AccountFeatures200RowsItem = {
|
|
9041
|
-
/**
|
|
9042
|
-
* Product auto-renew flag
|
|
9043
|
-
* @nullable
|
|
9044
|
-
*/
|
|
9045
|
-
autoRenewFlag?: boolean | null;
|
|
9046
|
-
/** HAL Account back_reference, used to link to the product instance */
|
|
9047
|
-
back_reference?: string;
|
|
9048
|
-
/**
|
|
9049
|
-
* Product expiration date
|
|
9050
|
-
* @nullable
|
|
9051
|
-
*/
|
|
9052
|
-
expirationDate?: string | null;
|
|
9053
|
-
/** Feature set name ex: hosting_40s */
|
|
9054
|
-
feature_set?: string;
|
|
9055
|
-
/** Additional information about the account */
|
|
9056
|
-
info?: AccountFeatures200RowsItemInfo;
|
|
9057
|
-
/**
|
|
9058
|
-
* Account limits
|
|
9059
|
-
* @nullable
|
|
9060
|
-
*/
|
|
9061
|
-
limit?: AccountFeatures200RowsItemLimit;
|
|
9062
|
-
/**
|
|
9063
|
-
* Remote limits for the account
|
|
9064
|
-
* @nullable
|
|
9065
|
-
*/
|
|
9066
|
-
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
9067
|
-
/**
|
|
9068
|
-
* Package name
|
|
9069
|
-
* @nullable
|
|
9070
|
-
*/
|
|
9071
|
-
package?: string | null;
|
|
9072
|
-
/**
|
|
9073
|
-
* Control panel type
|
|
9074
|
-
* @nullable
|
|
9075
|
-
*/
|
|
9076
|
-
panel?: string | null;
|
|
9077
|
-
/**
|
|
9078
|
-
* Product code
|
|
9079
|
-
* @nullable
|
|
9080
|
-
*/
|
|
9081
|
-
prodCode?: string | null;
|
|
9082
|
-
/**
|
|
9083
|
-
* Product name
|
|
9084
|
-
* @nullable
|
|
9085
|
-
*/
|
|
9086
|
-
prodName?: string | null;
|
|
9087
|
-
/**
|
|
9088
|
-
* Number of sites
|
|
9089
|
-
* @nullable
|
|
9090
|
-
*/
|
|
9091
|
-
sites?: number | null;
|
|
9092
|
-
/**
|
|
9093
|
-
* Usage statistics
|
|
9094
|
-
* @nullable
|
|
9095
|
-
*/
|
|
9096
|
-
used?: AccountFeatures200RowsItemUsed;
|
|
9097
|
-
};
|
|
9098
|
-
export declare type AccountFeatures200 = {
|
|
9099
|
-
/** Feature information for the paginated product instances */
|
|
9100
|
-
rows?: AccountFeatures200RowsItem[];
|
|
9101
|
-
/** Total number of product instance IDs available to that account */
|
|
9102
|
-
total_count?: number;
|
|
9103
|
-
};
|
|
9104
9227
|
/**
|
|
9105
9228
|
* Region information for the account
|
|
9106
9229
|
* @nullable
|
|
@@ -9237,6 +9360,67 @@ export declare type AccountFeatures200RowsItemInfo = {
|
|
|
9237
9360
|
*/
|
|
9238
9361
|
username?: string | null;
|
|
9239
9362
|
};
|
|
9363
|
+
/**
|
|
9364
|
+
* Feature details from HAL account_feature_info_list
|
|
9365
|
+
*/
|
|
9366
|
+
export declare type AccountFeatures200RowsItem = {
|
|
9367
|
+
/**
|
|
9368
|
+
* Product auto-renew flag
|
|
9369
|
+
* @nullable
|
|
9370
|
+
*/
|
|
9371
|
+
autoRenewFlag?: boolean | null;
|
|
9372
|
+
/** HAL Account back_reference, used to link to the product instance */
|
|
9373
|
+
back_reference?: string;
|
|
9374
|
+
/**
|
|
9375
|
+
* Product expiration date
|
|
9376
|
+
* @nullable
|
|
9377
|
+
*/
|
|
9378
|
+
expirationDate?: string | null;
|
|
9379
|
+
/** Feature set name ex: hosting_40s */
|
|
9380
|
+
feature_set?: string;
|
|
9381
|
+
/** Additional information about the account */
|
|
9382
|
+
info?: AccountFeatures200RowsItemInfo;
|
|
9383
|
+
/**
|
|
9384
|
+
* Account limits
|
|
9385
|
+
* @nullable
|
|
9386
|
+
*/
|
|
9387
|
+
limit?: AccountFeatures200RowsItemLimit;
|
|
9388
|
+
/**
|
|
9389
|
+
* Remote limits for the account
|
|
9390
|
+
* @nullable
|
|
9391
|
+
*/
|
|
9392
|
+
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
9393
|
+
/**
|
|
9394
|
+
* Package name
|
|
9395
|
+
* @nullable
|
|
9396
|
+
*/
|
|
9397
|
+
package?: string | null;
|
|
9398
|
+
/**
|
|
9399
|
+
* Control panel type
|
|
9400
|
+
* @nullable
|
|
9401
|
+
*/
|
|
9402
|
+
panel?: string | null;
|
|
9403
|
+
/**
|
|
9404
|
+
* Product code
|
|
9405
|
+
* @nullable
|
|
9406
|
+
*/
|
|
9407
|
+
prodCode?: string | null;
|
|
9408
|
+
/**
|
|
9409
|
+
* Product name
|
|
9410
|
+
* @nullable
|
|
9411
|
+
*/
|
|
9412
|
+
prodName?: string | null;
|
|
9413
|
+
/**
|
|
9414
|
+
* Number of sites
|
|
9415
|
+
* @nullable
|
|
9416
|
+
*/
|
|
9417
|
+
sites?: number | null;
|
|
9418
|
+
/**
|
|
9419
|
+
* Usage statistics
|
|
9420
|
+
* @nullable
|
|
9421
|
+
*/
|
|
9422
|
+
used?: AccountFeatures200RowsItemUsed;
|
|
9423
|
+
};
|
|
9240
9424
|
export declare type AccountFeaturesParams = {
|
|
9241
9425
|
/**
|
|
9242
9426
|
* Starting index for pagination (default: 0)
|
|
@@ -11738,7 +11922,7 @@ export interface SiteInfoResponseModelV2 {
|
|
|
11738
11922
|
* Whether Blu AI store is enabled for the site
|
|
11739
11923
|
* @nullable
|
|
11740
11924
|
*/
|
|
11741
|
-
install_blu_ai_store?:
|
|
11925
|
+
install_blu_ai_store?: string | null;
|
|
11742
11926
|
/** @nullable */
|
|
11743
11927
|
installed_id?: string | null;
|
|
11744
11928
|
/**
|