@newfold/huapi-js 2.2048.0 → 2.2063.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 +39 -9
- package/src/index.js +34 -12
- package/src/index.msw.d.ts +3 -1
- package/src/index.msw.js +16 -4
- package/src/index.schemas.d.ts +663 -437
- package/src/index.schemas.js +6 -2
package/src/index.schemas.d.ts
CHANGED
|
@@ -3,17 +3,32 @@
|
|
|
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.2063.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
|
+
/** SSH key algorithm from HAL for VPS/Dedicated keys (for example rsa, ed25519) */
|
|
10
|
+
alg_type?: string;
|
|
9
11
|
authorize?: boolean;
|
|
10
12
|
created_at?: string;
|
|
13
|
+
/** server_pubkey row id for advanced hosting */
|
|
14
|
+
id?: number;
|
|
11
15
|
name?: string;
|
|
16
|
+
/** SSH public key content for advanced hosting */
|
|
17
|
+
pubkey?: string;
|
|
18
|
+
/** Present when scan=true; whether the key exists on the server only (remote) */
|
|
19
|
+
remote?: boolean;
|
|
20
|
+
/** Always public for listed keys */
|
|
12
21
|
type?: string;
|
|
13
22
|
};
|
|
14
23
|
export declare type SshKeyListV4200 = {
|
|
15
24
|
rows?: SshKeyListV4200RowsItem[];
|
|
16
25
|
};
|
|
26
|
+
export declare type SshKeyListV4Params = {
|
|
27
|
+
/**
|
|
28
|
+
* When true, calls server_pubkey_scan to compare stored keys against keys installed on the server and returns remote. VPS/Dedicated only.
|
|
29
|
+
*/
|
|
30
|
+
scan?: boolean;
|
|
31
|
+
};
|
|
17
32
|
/**
|
|
18
33
|
* @nullable
|
|
19
34
|
*/
|
|
@@ -59,12 +74,12 @@ export declare type SshKeyImportV3200 = {
|
|
|
59
74
|
public_key_name?: string | null;
|
|
60
75
|
};
|
|
61
76
|
export declare type SshKeyImportV3Body = {
|
|
62
|
-
/** The SSH key's filename */
|
|
63
|
-
name
|
|
77
|
+
/** The SSH key's filename. Required for non-advanced hosting; optional for advanced (VPS/dedicated) hosting. */
|
|
78
|
+
name?: string;
|
|
64
79
|
/** A note to log alongside the secure_action_log entry. */
|
|
65
80
|
note?: string;
|
|
66
81
|
/** A Valid SSH public key */
|
|
67
|
-
pubkey
|
|
82
|
+
pubkey: string;
|
|
68
83
|
/** The entity that initiated the GAP call */
|
|
69
84
|
source?: string;
|
|
70
85
|
};
|
|
@@ -207,13 +222,6 @@ export declare type BackupStatusV3Params = {
|
|
|
207
222
|
*/
|
|
208
223
|
client_tracking_id: string;
|
|
209
224
|
};
|
|
210
|
-
export declare type BackupListV3200 = {
|
|
211
|
-
has_more?: boolean;
|
|
212
|
-
items?: BackupListV3200ItemsItem[];
|
|
213
|
-
limit?: number;
|
|
214
|
-
offset?: number;
|
|
215
|
-
total?: number;
|
|
216
|
-
};
|
|
217
225
|
/**
|
|
218
226
|
* @nullable
|
|
219
227
|
*/
|
|
@@ -248,6 +256,13 @@ export declare type BackupListV3200ItemsItem = {
|
|
|
248
256
|
timezone?: string;
|
|
249
257
|
type?: string;
|
|
250
258
|
};
|
|
259
|
+
export declare type BackupListV3200 = {
|
|
260
|
+
has_more?: boolean;
|
|
261
|
+
items?: BackupListV3200ItemsItem[];
|
|
262
|
+
limit?: number;
|
|
263
|
+
offset?: number;
|
|
264
|
+
total?: number;
|
|
265
|
+
};
|
|
251
266
|
export declare type BackupListV3Params = {
|
|
252
267
|
page?: number;
|
|
253
268
|
limit?: number;
|
|
@@ -342,10 +357,6 @@ export declare type BackupCreateV3Body = {
|
|
|
342
357
|
/** The type of the backup */
|
|
343
358
|
backup_type?: BackupCreateV3BodyBackupType;
|
|
344
359
|
};
|
|
345
|
-
export declare type SiteUsersV2200UsersItemMeta = {
|
|
346
|
-
maestro_web_pro?: string;
|
|
347
|
-
maestro_wpp_identifier?: string;
|
|
348
|
-
};
|
|
349
360
|
export declare type SiteUsersV2200UsersItem = {
|
|
350
361
|
display_name?: string;
|
|
351
362
|
id: number;
|
|
@@ -362,6 +373,10 @@ export declare type SiteUsersV2200 = {
|
|
|
362
373
|
total_users: number;
|
|
363
374
|
users: SiteUsersV2200UsersItem[];
|
|
364
375
|
};
|
|
376
|
+
export declare type SiteUsersV2200UsersItemMeta = {
|
|
377
|
+
maestro_web_pro?: string;
|
|
378
|
+
maestro_wpp_identifier?: string;
|
|
379
|
+
};
|
|
365
380
|
export declare type SiteUsersV2Params = {
|
|
366
381
|
limit?: number;
|
|
367
382
|
page?: number;
|
|
@@ -575,17 +590,6 @@ export declare type SitesDomainsV2200 = {
|
|
|
575
590
|
export declare type SitesDomainsV2Params = {
|
|
576
591
|
scan?: boolean;
|
|
577
592
|
};
|
|
578
|
-
export declare type SitesListV2200 = {
|
|
579
|
-
items?: SitesListV2200ItemsItem[];
|
|
580
|
-
/** page size */
|
|
581
|
-
limit?: number;
|
|
582
|
-
/** current page number */
|
|
583
|
-
page?: number;
|
|
584
|
-
/** total number of pages */
|
|
585
|
-
pages?: number;
|
|
586
|
-
/** total number of sites returned */
|
|
587
|
-
total?: number;
|
|
588
|
-
};
|
|
589
593
|
/**
|
|
590
594
|
* @nullable
|
|
591
595
|
*/
|
|
@@ -748,6 +752,17 @@ export declare type SitesListV2200ItemsItem = {
|
|
|
748
752
|
*/
|
|
749
753
|
version_ptr?: string | null;
|
|
750
754
|
};
|
|
755
|
+
export declare type SitesListV2200 = {
|
|
756
|
+
items?: SitesListV2200ItemsItem[];
|
|
757
|
+
/** page size */
|
|
758
|
+
limit?: number;
|
|
759
|
+
/** current page number */
|
|
760
|
+
page?: number;
|
|
761
|
+
/** total number of pages */
|
|
762
|
+
pages?: number;
|
|
763
|
+
/** total number of sites returned */
|
|
764
|
+
total?: number;
|
|
765
|
+
};
|
|
751
766
|
export declare type PublicImagesV2200 = {
|
|
752
767
|
/** Limit the number of images returned */
|
|
753
768
|
limit?: PublicImagesV2200Limit;
|
|
@@ -926,12 +941,25 @@ export declare type PublicImagesV2Params = {
|
|
|
926
941
|
};
|
|
927
942
|
export declare type SshKeyV2200 = {
|
|
928
943
|
deleted?: number;
|
|
944
|
+
/** Shared hosting only; key name from request or GAP */
|
|
929
945
|
key_name?: string;
|
|
930
946
|
};
|
|
947
|
+
/**
|
|
948
|
+
* VPS/dedicated optional: 1 = deauthorize + DB; omit or 0 = DB only
|
|
949
|
+
*/
|
|
950
|
+
export declare type SshKeyV2BodyRemote = typeof SshKeyV2BodyRemote[keyof typeof SshKeyV2BodyRemote];
|
|
951
|
+
export declare const SshKeyV2BodyRemote: {
|
|
952
|
+
readonly NUMBER_0: 0;
|
|
953
|
+
readonly NUMBER_1: 1;
|
|
954
|
+
};
|
|
931
955
|
export declare type SshKeyV2Body = {
|
|
932
|
-
authorize
|
|
933
|
-
|
|
956
|
+
authorize?: boolean;
|
|
957
|
+
/** server_pubkey row id (VPS/dedicated) */
|
|
958
|
+
id?: number;
|
|
959
|
+
name?: string;
|
|
934
960
|
note?: string;
|
|
961
|
+
/** VPS/dedicated optional: 1 = deauthorize + DB; omit or 0 = DB only */
|
|
962
|
+
remote?: SshKeyV2BodyRemote;
|
|
935
963
|
source?: string;
|
|
936
964
|
};
|
|
937
965
|
export declare type SshKeyListV2200RowsItem = {
|
|
@@ -1092,6 +1120,63 @@ export declare type HostingSitesV2200ItemsItemStaging = {
|
|
|
1092
1120
|
/** A list of staging sites of the current site */
|
|
1093
1121
|
sites?: number[];
|
|
1094
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;
|
|
1095
1180
|
export declare type HostingSitesV2200ItemsItem = {
|
|
1096
1181
|
/** @nullable */
|
|
1097
1182
|
account_back_ref?: string | null;
|
|
@@ -1187,63 +1272,6 @@ export declare type HostingSitesV2200ItemsItem = {
|
|
|
1187
1272
|
/** @nullable */
|
|
1188
1273
|
wp_multi_site?: HostingSitesV2200ItemsItemWpMultiSite;
|
|
1189
1274
|
};
|
|
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 = {
|
|
1208
|
-
/**
|
|
1209
|
-
* The root domain name
|
|
1210
|
-
* @nullable
|
|
1211
|
-
*/
|
|
1212
|
-
base_domain?: string | null;
|
|
1213
|
-
/**
|
|
1214
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
1215
|
-
* @nullable
|
|
1216
|
-
*/
|
|
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
1275
|
export declare type HostingSitesV2Params = {
|
|
1248
1276
|
limit?: number;
|
|
1249
1277
|
page?: number;
|
|
@@ -1853,6 +1881,12 @@ export declare type UserServersParams = {
|
|
|
1853
1881
|
*/
|
|
1854
1882
|
prod_inst_id?: string | null;
|
|
1855
1883
|
};
|
|
1884
|
+
export declare type UserProservices200 = {
|
|
1885
|
+
/** Pro-services products from FG */
|
|
1886
|
+
products?: UserProservices200ProductsItem[];
|
|
1887
|
+
/** Number of pro-services products returned */
|
|
1888
|
+
total?: number;
|
|
1889
|
+
};
|
|
1856
1890
|
export declare type UserProservices200ProductsItemProductProfileOptionsItem = {
|
|
1857
1891
|
/** @nullable */
|
|
1858
1892
|
profile_option?: number | null;
|
|
@@ -1911,12 +1945,6 @@ export declare type UserProservices200ProductsItem = {
|
|
|
1911
1945
|
/** Pro-services status: Active or Completed */
|
|
1912
1946
|
status?: string;
|
|
1913
1947
|
};
|
|
1914
|
-
export declare type UserProservices200 = {
|
|
1915
|
-
/** Pro-services products from FG */
|
|
1916
|
-
products?: UserProservices200ProductsItem[];
|
|
1917
|
-
/** Number of pro-services products returned */
|
|
1918
|
-
total?: number;
|
|
1919
|
-
};
|
|
1920
1948
|
export declare type UserProducts502 = {
|
|
1921
1949
|
/** Error code */
|
|
1922
1950
|
error?: string;
|
|
@@ -2048,6 +2076,11 @@ export declare type AllUserMonarxDetails200RowsItem = {
|
|
|
2048
2076
|
* @nullable
|
|
2049
2077
|
*/
|
|
2050
2078
|
plan?: string | null;
|
|
2079
|
+
/**
|
|
2080
|
+
* Monarx product instance ID
|
|
2081
|
+
* @nullable
|
|
2082
|
+
*/
|
|
2083
|
+
prod_inst_id?: string | null;
|
|
2051
2084
|
/**
|
|
2052
2085
|
* Hosting product name
|
|
2053
2086
|
* @nullable
|
|
@@ -2072,6 +2105,10 @@ export declare type UserHostingOverviewParams = {
|
|
|
2072
2105
|
*/
|
|
2073
2106
|
limit?: number;
|
|
2074
2107
|
};
|
|
2108
|
+
export declare type UserHosting200 = {
|
|
2109
|
+
/** Information for the paginated hosting accounts */
|
|
2110
|
+
rows?: UserHosting200RowsItem[];
|
|
2111
|
+
};
|
|
2075
2112
|
/**
|
|
2076
2113
|
* Usage statistics for staging sites
|
|
2077
2114
|
* @nullable
|
|
@@ -2301,10 +2338,6 @@ export declare type UserHosting200RowsItem = {
|
|
|
2301
2338
|
*/
|
|
2302
2339
|
used_stage?: UserHosting200RowsItemUsedStage;
|
|
2303
2340
|
};
|
|
2304
|
-
export declare type UserHosting200 = {
|
|
2305
|
-
/** Information for the paginated hosting accounts */
|
|
2306
|
-
rows?: UserHosting200RowsItem[];
|
|
2307
|
-
};
|
|
2308
2341
|
/**
|
|
2309
2342
|
* Region information for the account
|
|
2310
2343
|
* @nullable
|
|
@@ -2968,6 +3001,16 @@ export declare type SiteQualityMetrics200 = {
|
|
|
2968
3001
|
export declare type SiteQualityMetrics200AspectDetailsPerformanceTotalBlockingTime = {
|
|
2969
3002
|
[key: string]: unknown;
|
|
2970
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
|
+
};
|
|
2971
3014
|
export declare type SiteQualityMetrics200AspectDetailsPerformanceSpeedIndex = {
|
|
2972
3015
|
[key: string]: unknown;
|
|
2973
3016
|
};
|
|
@@ -2980,16 +3023,6 @@ export declare type SiteQualityMetrics200AspectDetailsPerformanceFirstContentful
|
|
|
2980
3023
|
export declare type SiteQualityMetrics200AspectDetailsPerformanceCumulativeLayoutShift = {
|
|
2981
3024
|
[key: string]: unknown;
|
|
2982
3025
|
};
|
|
2983
|
-
export declare type SiteQualityMetrics200AspectDetailsPerformance = {
|
|
2984
|
-
'cumulative-layout-shift'?: SiteQualityMetrics200AspectDetailsPerformanceCumulativeLayoutShift;
|
|
2985
|
-
'first-contentful-paint'?: SiteQualityMetrics200AspectDetailsPerformanceFirstContentfulPaint;
|
|
2986
|
-
'largest-contentful-paint'?: SiteQualityMetrics200AspectDetailsPerformanceLargestContentfulPaint;
|
|
2987
|
-
'speed-index'?: SiteQualityMetrics200AspectDetailsPerformanceSpeedIndex;
|
|
2988
|
-
'total-blocking-time'?: SiteQualityMetrics200AspectDetailsPerformanceTotalBlockingTime;
|
|
2989
|
-
};
|
|
2990
|
-
export declare type SiteQualityMetrics200AspectDetails = {
|
|
2991
|
-
performance?: SiteQualityMetrics200AspectDetailsPerformance;
|
|
2992
|
-
};
|
|
2993
3026
|
export declare type SiteQualityMetricsStrategy = typeof SiteQualityMetricsStrategy[keyof typeof SiteQualityMetricsStrategy];
|
|
2994
3027
|
export declare const SiteQualityMetricsStrategy: {
|
|
2995
3028
|
readonly MOBILE: "MOBILE";
|
|
@@ -3173,6 +3206,13 @@ export declare type SitePendingDomainDelete200 = {
|
|
|
3173
3206
|
export declare type SitesOnboardingSteps200 = {
|
|
3174
3207
|
steps?: SiteOnboardingStepModel[];
|
|
3175
3208
|
};
|
|
3209
|
+
export declare type SitesMetricDimensions200 = {
|
|
3210
|
+
date_end?: string;
|
|
3211
|
+
date_start?: string;
|
|
3212
|
+
dimensions?: SitesMetricDimensions200Dimensions;
|
|
3213
|
+
elapsed?: number;
|
|
3214
|
+
metric?: string;
|
|
3215
|
+
};
|
|
3176
3216
|
export declare type SitesMetricDimensions200DimensionsWpAdminAjaxActionItemDimension = {
|
|
3177
3217
|
[key: string]: number;
|
|
3178
3218
|
};
|
|
@@ -3201,6 +3241,18 @@ export declare type SitesMetricDimensions200DimensionsVisitorAsnItem = {
|
|
|
3201
3241
|
dimension?: SitesMetricDimensions200DimensionsVisitorAsnItemDimension;
|
|
3202
3242
|
timestamp?: number;
|
|
3203
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
|
+
};
|
|
3204
3256
|
export declare type SitesMetricDimensions200DimensionsPageRendererItemDimension = {
|
|
3205
3257
|
[key: string]: number;
|
|
3206
3258
|
};
|
|
@@ -3222,27 +3274,8 @@ export declare type SitesMetricDimensions200DimensionsHttpVersionItem = {
|
|
|
3222
3274
|
dimension?: SitesMetricDimensions200DimensionsHttpVersionItemDimension;
|
|
3223
3275
|
timestamp?: number;
|
|
3224
3276
|
};
|
|
3225
|
-
export declare type
|
|
3226
|
-
|
|
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
|
-
};
|
|
3244
|
-
export declare type SitesMetricDimensions200DimensionsHttpVerbItemDimension = {
|
|
3245
|
-
[key: string]: number;
|
|
3277
|
+
export declare type SitesMetricDimensions200DimensionsHttpVerbItemDimension = {
|
|
3278
|
+
[key: string]: number;
|
|
3246
3279
|
};
|
|
3247
3280
|
export declare type SitesMetricDimensions200DimensionsHttpVerbItem = {
|
|
3248
3281
|
dimension?: SitesMetricDimensions200DimensionsHttpVerbItemDimension;
|
|
@@ -3698,10 +3731,6 @@ export declare type SitesAtomicMetrics200Views = {
|
|
|
3698
3731
|
last_n_days?: SitesAtomicMetrics200ViewsLastNDaysItem[];
|
|
3699
3732
|
total_hits?: number;
|
|
3700
3733
|
};
|
|
3701
|
-
export declare type SitesAtomicMetrics200 = {
|
|
3702
|
-
raw?: SitesAtomicMetrics200Raw;
|
|
3703
|
-
views?: SitesAtomicMetrics200Views;
|
|
3704
|
-
};
|
|
3705
3734
|
export declare type SitesAtomicMetrics200RawPeriodsItemDimension = {
|
|
3706
3735
|
[key: string]: string | number | number;
|
|
3707
3736
|
};
|
|
@@ -3719,6 +3748,10 @@ export declare type SitesAtomicMetrics200Raw = {
|
|
|
3719
3748
|
periods?: SitesAtomicMetrics200RawPeriodsItem[];
|
|
3720
3749
|
resolution?: number;
|
|
3721
3750
|
};
|
|
3751
|
+
export declare type SitesAtomicMetrics200 = {
|
|
3752
|
+
raw?: SitesAtomicMetrics200Raw;
|
|
3753
|
+
views?: SitesAtomicMetrics200Views;
|
|
3754
|
+
};
|
|
3722
3755
|
export declare type SitesAtomicMetricsParams = {
|
|
3723
3756
|
metric?: string[];
|
|
3724
3757
|
dimension?: string[];
|
|
@@ -3811,6 +3844,71 @@ export declare type SitesInfo200Staging = {
|
|
|
3811
3844
|
/** A list of staging sites of the current site */
|
|
3812
3845
|
sites?: number[];
|
|
3813
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;
|
|
3814
3912
|
export declare type SitesInfo200 = {
|
|
3815
3913
|
/** @nullable */
|
|
3816
3914
|
account_back_ref?: string | null;
|
|
@@ -3909,71 +4007,6 @@ export declare type SitesInfo200 = {
|
|
|
3909
4007
|
/** @nullable */
|
|
3910
4008
|
wp_multi_site?: SitesInfo200WpMultiSite;
|
|
3911
4009
|
};
|
|
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
4010
|
export declare type AccountPurchaseOrder404 = {
|
|
3978
4011
|
/** Customer error code */
|
|
3979
4012
|
error?: string;
|
|
@@ -4211,6 +4244,46 @@ export declare type PublicRegions200 = {
|
|
|
4211
4244
|
/** List of regions */
|
|
4212
4245
|
rows?: PublicRegions200RowsItem[];
|
|
4213
4246
|
};
|
|
4247
|
+
/**
|
|
4248
|
+
* Links
|
|
4249
|
+
* @nullable
|
|
4250
|
+
*/
|
|
4251
|
+
export declare type PublicImages200RowsItemLinks = {
|
|
4252
|
+
/**
|
|
4253
|
+
* Community URL
|
|
4254
|
+
* @nullable
|
|
4255
|
+
*/
|
|
4256
|
+
community?: string | null;
|
|
4257
|
+
/**
|
|
4258
|
+
* Documentation URL
|
|
4259
|
+
* @nullable
|
|
4260
|
+
*/
|
|
4261
|
+
doc?: string | null;
|
|
4262
|
+
/**
|
|
4263
|
+
* Forums URL
|
|
4264
|
+
* @nullable
|
|
4265
|
+
*/
|
|
4266
|
+
forums?: string | null;
|
|
4267
|
+
} | null;
|
|
4268
|
+
/**
|
|
4269
|
+
* Image ID
|
|
4270
|
+
*/
|
|
4271
|
+
export declare type PublicImages200RowsItemId = string | number;
|
|
4272
|
+
/**
|
|
4273
|
+
* Docker default
|
|
4274
|
+
* @nullable
|
|
4275
|
+
*/
|
|
4276
|
+
export declare type PublicImages200RowsItemDockerDefault = string | number | null;
|
|
4277
|
+
/**
|
|
4278
|
+
* Current
|
|
4279
|
+
* @nullable
|
|
4280
|
+
*/
|
|
4281
|
+
export declare type PublicImages200RowsItemCurrent = string | number | null;
|
|
4282
|
+
/**
|
|
4283
|
+
* Cpanel default
|
|
4284
|
+
* @nullable
|
|
4285
|
+
*/
|
|
4286
|
+
export declare type PublicImages200RowsItemCpanelDefault = string | number | null;
|
|
4214
4287
|
export declare type PublicImages200RowsItem = {
|
|
4215
4288
|
/**
|
|
4216
4289
|
* Whether the image supports third-party AI vendor API keys
|
|
@@ -4314,56 +4387,6 @@ export declare type PublicImages200RowsItem = {
|
|
|
4314
4387
|
*/
|
|
4315
4388
|
user_image?: string | null;
|
|
4316
4389
|
};
|
|
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;
|
|
4367
4390
|
/**
|
|
4368
4391
|
* Page number
|
|
4369
4392
|
*/
|
|
@@ -4376,6 +4399,16 @@ export declare type PublicImages200NRows = string | number;
|
|
|
4376
4399
|
* Limit the number of images returned
|
|
4377
4400
|
*/
|
|
4378
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
|
+
};
|
|
4379
4412
|
export declare type PublicImagesParams = {
|
|
4380
4413
|
/**
|
|
4381
4414
|
* Brand identifier (e.g. bluehost).
|
|
@@ -4485,6 +4518,20 @@ export declare type SsoParams = {
|
|
|
4485
4518
|
ssl_status?: number;
|
|
4486
4519
|
bounce?: string;
|
|
4487
4520
|
};
|
|
4521
|
+
export declare type HostingVpsSshKeySync500 = {
|
|
4522
|
+
error?: string;
|
|
4523
|
+
};
|
|
4524
|
+
export declare type HostingVpsSshKeySync404 = {
|
|
4525
|
+
error?: string;
|
|
4526
|
+
};
|
|
4527
|
+
export declare type HostingVpsSshKeySync200 = {
|
|
4528
|
+
/** The server_pubkey row id */
|
|
4529
|
+
id?: number;
|
|
4530
|
+
/** The SSH public key name */
|
|
4531
|
+
name?: string;
|
|
4532
|
+
/** The server account username the key was installed for */
|
|
4533
|
+
username?: string;
|
|
4534
|
+
};
|
|
4488
4535
|
export declare type SshKeyGenerate200 = {
|
|
4489
4536
|
key_name?: string;
|
|
4490
4537
|
private_key_path?: string;
|
|
@@ -4741,6 +4788,9 @@ export declare type HostingRedirects200Item = {
|
|
|
4741
4788
|
url?: string;
|
|
4742
4789
|
wildcard?: boolean;
|
|
4743
4790
|
};
|
|
4791
|
+
export declare type ProductLicenseDetails200 = {
|
|
4792
|
+
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
4793
|
+
};
|
|
4744
4794
|
export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
|
|
4745
4795
|
expirationDate?: string;
|
|
4746
4796
|
prodInstId?: string;
|
|
@@ -4754,9 +4804,6 @@ export declare type ProductLicenseDetails200Wpsolution = {
|
|
|
4754
4804
|
creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
|
|
4755
4805
|
total?: number;
|
|
4756
4806
|
};
|
|
4757
|
-
export declare type ProductLicenseDetails200 = {
|
|
4758
|
-
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
4759
|
-
};
|
|
4760
4807
|
export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
|
|
4761
4808
|
export declare const ProductLicenseDetailsProductName: {
|
|
4762
4809
|
readonly wpsolution: "wpsolution";
|
|
@@ -6983,9 +7030,6 @@ export declare const HostingAdvancedConsoleProtocol: {
|
|
|
6983
7030
|
export declare type HostingAdvancedConsoleParams = {
|
|
6984
7031
|
protocol?: HostingAdvancedConsoleProtocol;
|
|
6985
7032
|
};
|
|
6986
|
-
export declare type HostingAddons200 = {
|
|
6987
|
-
rows?: HostingAddons200RowsItem[];
|
|
6988
|
-
};
|
|
6989
7033
|
export declare type HostingAddons200RowsItemMeta = {
|
|
6990
7034
|
[key: string]: string | number | boolean;
|
|
6991
7035
|
};
|
|
@@ -7001,6 +7045,9 @@ export declare type HostingAddons200RowsItem = {
|
|
|
7001
7045
|
subtype?: string;
|
|
7002
7046
|
type?: string;
|
|
7003
7047
|
};
|
|
7048
|
+
export declare type HostingAddons200 = {
|
|
7049
|
+
rows?: HostingAddons200RowsItem[];
|
|
7050
|
+
};
|
|
7004
7051
|
export declare type HostingAddonsParams = {
|
|
7005
7052
|
status?: string;
|
|
7006
7053
|
subtype?: string;
|
|
@@ -7072,28 +7119,6 @@ export declare type HostingAccount200Resources = {
|
|
|
7072
7119
|
used?: HostingAccount200ResourcesUsed;
|
|
7073
7120
|
workers?: HostingAccount200ResourcesWorkers;
|
|
7074
7121
|
} | 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
|
-
};
|
|
7097
7122
|
export declare type HostingAccount200ResourcesStagingWorkers = {
|
|
7098
7123
|
/** @nullable */
|
|
7099
7124
|
available?: number | null;
|
|
@@ -7137,6 +7162,28 @@ export declare type HostingAccount200AccountLimits = {
|
|
|
7137
7162
|
*/
|
|
7138
7163
|
sites?: number | null;
|
|
7139
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
|
+
};
|
|
7140
7187
|
export declare type EntriJwt200 = {
|
|
7141
7188
|
/** Entri authentication token for client-side domain setup. */
|
|
7142
7189
|
token: string;
|
|
@@ -7179,49 +7226,6 @@ export declare type AccessLogsParams = {
|
|
|
7179
7226
|
*/
|
|
7180
7227
|
type?: AccessLogsType;
|
|
7181
7228
|
};
|
|
7182
|
-
export declare type DomainHealth200 = {
|
|
7183
|
-
/**
|
|
7184
|
-
* The alignment status: aligned , misaligned , partial , propagating , unknown , error
|
|
7185
|
-
* @nullable
|
|
7186
|
-
*/
|
|
7187
|
-
alignment_status?: string | null;
|
|
7188
|
-
/** @nullable */
|
|
7189
|
-
cache?: DomainHealth200Cache;
|
|
7190
|
-
/**
|
|
7191
|
-
* Per-record A/NS checks with observed layers. Empty on cache hit.
|
|
7192
|
-
* @nullable
|
|
7193
|
-
*/
|
|
7194
|
-
checks?: DomainHealth200ChecksItem[] | null;
|
|
7195
|
-
/** @nullable */
|
|
7196
|
-
context?: DomainHealth200Context;
|
|
7197
|
-
/** @nullable */
|
|
7198
|
-
execution_ms?: number | null;
|
|
7199
|
-
/** @nullable */
|
|
7200
|
-
expected_source_order?: string[] | null;
|
|
7201
|
-
/** @nullable */
|
|
7202
|
-
layers?: DomainHealth200Layers;
|
|
7203
|
-
/**
|
|
7204
|
-
* Highest-severity issue code when not aligned.
|
|
7205
|
-
* @nullable
|
|
7206
|
-
*/
|
|
7207
|
-
primary_issue_code?: string | null;
|
|
7208
|
-
/**
|
|
7209
|
-
* The schema version: 1.1
|
|
7210
|
-
* @nullable
|
|
7211
|
-
*/
|
|
7212
|
-
schema_version?: string | null;
|
|
7213
|
-
/**
|
|
7214
|
-
* Severity: critical , high , medium , low , info
|
|
7215
|
-
* @nullable
|
|
7216
|
-
*/
|
|
7217
|
-
severity?: string | null;
|
|
7218
|
-
/** @nullable */
|
|
7219
|
-
source_timings?: DomainHealth200SourceTimings;
|
|
7220
|
-
/** @nullable */
|
|
7221
|
-
sources?: DomainHealth200Sources;
|
|
7222
|
-
/** @nullable */
|
|
7223
|
-
ssl?: DomainHealth200Ssl;
|
|
7224
|
-
};
|
|
7225
7229
|
/**
|
|
7226
7230
|
* @nullable
|
|
7227
7231
|
*/
|
|
@@ -7305,56 +7309,272 @@ export declare type DomainHealth200Ssl = {
|
|
|
7305
7309
|
*/
|
|
7306
7310
|
skip_reason?: string | null;
|
|
7307
7311
|
/**
|
|
7308
|
-
* 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
|
|
7309
7494
|
* @nullable
|
|
7310
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 */
|
|
7311
7506
|
skipped?: boolean | null;
|
|
7507
|
+
/** @nullable */
|
|
7508
|
+
success?: boolean | null;
|
|
7312
7509
|
} | null;
|
|
7313
|
-
export declare type DomainHealth200SourcesZoneXns = {
|
|
7314
|
-
[key: string]: unknown;
|
|
7315
|
-
};
|
|
7316
|
-
export declare type DomainHealth200SourcesZoneRegistrar = {
|
|
7317
|
-
[key: string]: unknown;
|
|
7318
|
-
};
|
|
7319
|
-
export declare type DomainHealth200SourcesZoneBox = {
|
|
7320
|
-
[key: string]: unknown;
|
|
7321
|
-
};
|
|
7322
|
-
export declare type DomainHealth200SourcesDnsStatus = {
|
|
7323
|
-
[key: string]: unknown;
|
|
7324
|
-
};
|
|
7325
|
-
export declare type DomainHealth200SourcesDeliverability = {
|
|
7326
|
-
[key: string]: unknown;
|
|
7327
|
-
};
|
|
7328
7510
|
/**
|
|
7329
7511
|
* @nullable
|
|
7330
7512
|
*/
|
|
7331
|
-
export declare type
|
|
7332
|
-
|
|
7333
|
-
|
|
7334
|
-
|
|
7335
|
-
|
|
7336
|
-
zone_xns?: DomainHealth200SourcesZoneXns;
|
|
7513
|
+
export declare type DomainHealth200EmailEmailDeliverabilitySpfCheck = {
|
|
7514
|
+
box_spf?: string;
|
|
7515
|
+
record_name?: string;
|
|
7516
|
+
spf_match?: boolean;
|
|
7517
|
+
xns_spf?: string;
|
|
7337
7518
|
} | null;
|
|
7338
7519
|
/**
|
|
7339
7520
|
* @nullable
|
|
7340
7521
|
*/
|
|
7341
|
-
export declare type
|
|
7342
|
-
|
|
7343
|
-
|
|
7344
|
-
|
|
7345
|
-
zone_registrar?: number;
|
|
7346
|
-
zone_xns?: number;
|
|
7522
|
+
export declare type DomainHealth200EmailEmailDeliverabilityPtrCheck = {
|
|
7523
|
+
helo_hostname?: string;
|
|
7524
|
+
ptr_name?: string;
|
|
7525
|
+
ptr_value?: string;
|
|
7347
7526
|
} | null;
|
|
7348
|
-
export declare type DomainHealth200LayersLabels = {
|
|
7349
|
-
[key: string]: unknown;
|
|
7350
|
-
};
|
|
7351
7527
|
/**
|
|
7352
7528
|
* @nullable
|
|
7353
7529
|
*/
|
|
7354
|
-
export declare type
|
|
7355
|
-
|
|
7356
|
-
|
|
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;
|
|
7357
7571
|
} | null;
|
|
7572
|
+
export declare type DomainHealth200EmailChecksItem = {
|
|
7573
|
+
code?: string;
|
|
7574
|
+
label?: string;
|
|
7575
|
+
severity?: string;
|
|
7576
|
+
status?: string;
|
|
7577
|
+
};
|
|
7358
7578
|
/**
|
|
7359
7579
|
* @nullable
|
|
7360
7580
|
*/
|
|
@@ -7364,6 +7584,9 @@ export declare type DomainHealth200Context = {
|
|
|
7364
7584
|
domain?: string;
|
|
7365
7585
|
domain_id?: string;
|
|
7366
7586
|
parent_zone_domain?: string;
|
|
7587
|
+
pending_url?: string;
|
|
7588
|
+
site_id?: number;
|
|
7589
|
+
url_is_provisional?: boolean;
|
|
7367
7590
|
} | null;
|
|
7368
7591
|
export declare type DomainHealth200ChecksItemObserved = {
|
|
7369
7592
|
cpanel?: string[];
|
|
@@ -7415,9 +7638,8 @@ export declare type DomainHealthChecksItem = typeof DomainHealthChecksItem[keyof
|
|
|
7415
7638
|
export declare const DomainHealthChecksItem: {
|
|
7416
7639
|
readonly hosting: "hosting";
|
|
7417
7640
|
readonly email: "email";
|
|
7418
|
-
readonly ssl_prereq: "ssl_prereq";
|
|
7419
|
-
readonly cdn: "cdn";
|
|
7420
7641
|
readonly ssl: "ssl";
|
|
7642
|
+
readonly site: "site";
|
|
7421
7643
|
};
|
|
7422
7644
|
export declare type DomainHealthParams = {
|
|
7423
7645
|
/**
|
|
@@ -7444,6 +7666,10 @@ export declare type DomainHealthParams = {
|
|
|
7444
7666
|
* Include raw_records in response only; does not change alignment logic
|
|
7445
7667
|
*/
|
|
7446
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;
|
|
7447
7673
|
};
|
|
7448
7674
|
export declare type DomainsUnsetEntriUsed200 = {
|
|
7449
7675
|
[key: string]: unknown;
|
|
@@ -7917,7 +8143,7 @@ export declare type AddonsLlmKeysDelete200 = {
|
|
|
7917
8143
|
[key: string]: unknown;
|
|
7918
8144
|
};
|
|
7919
8145
|
export declare type AddonsLlmKeysDeleteBody = {
|
|
7920
|
-
/** the name of the key to be deleted */
|
|
8146
|
+
/** the name of the key to be deleted - must be at least 1 character */
|
|
7921
8147
|
key_name: string;
|
|
7922
8148
|
};
|
|
7923
8149
|
export declare type AddonsLlmKeysCreate200 = {
|
|
@@ -7927,7 +8153,7 @@ export declare type AddonsLlmKeysCreate200 = {
|
|
|
7927
8153
|
virtual_key?: string;
|
|
7928
8154
|
};
|
|
7929
8155
|
export declare type AddonsLlmKeysCreateBody = {
|
|
7930
|
-
/** the name of the key to be added */
|
|
8156
|
+
/** the name of the key to be added - must be at least 1 character */
|
|
7931
8157
|
key_name: string;
|
|
7932
8158
|
};
|
|
7933
8159
|
export declare type AddonsLlmKeys200 = {
|
|
@@ -8213,16 +8439,6 @@ export declare type BackupCreateOndemandV1Body = {
|
|
|
8213
8439
|
/** Snapshot date */
|
|
8214
8440
|
snapshot_date: number;
|
|
8215
8441
|
};
|
|
8216
|
-
export declare type BackupMeta200Site = {
|
|
8217
|
-
/** @nullable */
|
|
8218
|
-
cbs_backup_delete_data?: BackupMeta200SiteCbsBackupDeleteData;
|
|
8219
|
-
/** @nullable */
|
|
8220
|
-
cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
|
|
8221
|
-
/** @nullable */
|
|
8222
|
-
cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
|
|
8223
|
-
/** @nullable */
|
|
8224
|
-
restored_from_backup_id?: string | null;
|
|
8225
|
-
};
|
|
8226
8442
|
export declare type BackupMeta200 = {
|
|
8227
8443
|
account?: BackupMeta200Account;
|
|
8228
8444
|
site?: BackupMeta200Site;
|
|
@@ -8284,6 +8500,16 @@ export declare type BackupMeta200SiteCbsDownloadablesItem = {
|
|
|
8284
8500
|
/** @nullable */
|
|
8285
8501
|
url?: string | null;
|
|
8286
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
|
+
};
|
|
8287
8513
|
/**
|
|
8288
8514
|
* Backup plan type for deletion metadata.
|
|
8289
8515
|
* @nullable
|
|
@@ -8736,6 +8962,12 @@ export declare type CodeguardBackupCreateBody = {
|
|
|
8736
8962
|
/** The id of the website the given database is associated with. */
|
|
8737
8963
|
website_id?: number;
|
|
8738
8964
|
};
|
|
8965
|
+
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
8966
|
+
commit_id?: string;
|
|
8967
|
+
event_time?: string;
|
|
8968
|
+
id?: number;
|
|
8969
|
+
recommended?: boolean;
|
|
8970
|
+
};
|
|
8739
8971
|
export declare type CodeguardBackupList200BackupsItem = {
|
|
8740
8972
|
database_backups?: CodeguardBackupList200BackupsItemDatabaseBackupsItem[];
|
|
8741
8973
|
event_time?: string;
|
|
@@ -8744,12 +8976,6 @@ export declare type CodeguardBackupList200BackupsItem = {
|
|
|
8744
8976
|
export declare type CodeguardBackupList200 = {
|
|
8745
8977
|
backups?: CodeguardBackupList200BackupsItem[];
|
|
8746
8978
|
};
|
|
8747
|
-
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
8748
|
-
commit_id?: string;
|
|
8749
|
-
event_time?: string;
|
|
8750
|
-
id?: number;
|
|
8751
|
-
recommended?: boolean;
|
|
8752
|
-
};
|
|
8753
8979
|
export declare type CodeguardBackupListParams = {
|
|
8754
8980
|
website_id: number;
|
|
8755
8981
|
};
|
|
@@ -8929,6 +9155,12 @@ export declare type AccountHostingListParams = {
|
|
|
8929
9155
|
*/
|
|
8930
9156
|
server_type?: string[];
|
|
8931
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
|
+
};
|
|
8932
9164
|
/**
|
|
8933
9165
|
* Usage statistics
|
|
8934
9166
|
* @nullable
|
|
@@ -8992,73 +9224,6 @@ export declare type AccountFeatures200RowsItemLimit = {
|
|
|
8992
9224
|
*/
|
|
8993
9225
|
workers?: number | null;
|
|
8994
9226
|
} | null;
|
|
8995
|
-
/**
|
|
8996
|
-
* Feature details from HAL account_feature_info_list
|
|
8997
|
-
*/
|
|
8998
|
-
export declare type AccountFeatures200RowsItem = {
|
|
8999
|
-
/**
|
|
9000
|
-
* Product auto-renew flag
|
|
9001
|
-
* @nullable
|
|
9002
|
-
*/
|
|
9003
|
-
autoRenewFlag?: boolean | null;
|
|
9004
|
-
/** HAL Account back_reference, used to link to the product instance */
|
|
9005
|
-
back_reference?: string;
|
|
9006
|
-
/**
|
|
9007
|
-
* Product expiration date
|
|
9008
|
-
* @nullable
|
|
9009
|
-
*/
|
|
9010
|
-
expirationDate?: string | null;
|
|
9011
|
-
/** Feature set name ex: hosting_40s */
|
|
9012
|
-
feature_set?: string;
|
|
9013
|
-
/** Additional information about the account */
|
|
9014
|
-
info?: AccountFeatures200RowsItemInfo;
|
|
9015
|
-
/**
|
|
9016
|
-
* Account limits
|
|
9017
|
-
* @nullable
|
|
9018
|
-
*/
|
|
9019
|
-
limit?: AccountFeatures200RowsItemLimit;
|
|
9020
|
-
/**
|
|
9021
|
-
* Remote limits for the account
|
|
9022
|
-
* @nullable
|
|
9023
|
-
*/
|
|
9024
|
-
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
9025
|
-
/**
|
|
9026
|
-
* Package name
|
|
9027
|
-
* @nullable
|
|
9028
|
-
*/
|
|
9029
|
-
package?: string | null;
|
|
9030
|
-
/**
|
|
9031
|
-
* Control panel type
|
|
9032
|
-
* @nullable
|
|
9033
|
-
*/
|
|
9034
|
-
panel?: string | null;
|
|
9035
|
-
/**
|
|
9036
|
-
* Product code
|
|
9037
|
-
* @nullable
|
|
9038
|
-
*/
|
|
9039
|
-
prodCode?: string | null;
|
|
9040
|
-
/**
|
|
9041
|
-
* Product name
|
|
9042
|
-
* @nullable
|
|
9043
|
-
*/
|
|
9044
|
-
prodName?: string | null;
|
|
9045
|
-
/**
|
|
9046
|
-
* Number of sites
|
|
9047
|
-
* @nullable
|
|
9048
|
-
*/
|
|
9049
|
-
sites?: number | null;
|
|
9050
|
-
/**
|
|
9051
|
-
* Usage statistics
|
|
9052
|
-
* @nullable
|
|
9053
|
-
*/
|
|
9054
|
-
used?: AccountFeatures200RowsItemUsed;
|
|
9055
|
-
};
|
|
9056
|
-
export declare type AccountFeatures200 = {
|
|
9057
|
-
/** Feature information for the paginated product instances */
|
|
9058
|
-
rows?: AccountFeatures200RowsItem[];
|
|
9059
|
-
/** Total number of product instance IDs available to that account */
|
|
9060
|
-
total_count?: number;
|
|
9061
|
-
};
|
|
9062
9227
|
/**
|
|
9063
9228
|
* Region information for the account
|
|
9064
9229
|
* @nullable
|
|
@@ -9195,6 +9360,67 @@ export declare type AccountFeatures200RowsItemInfo = {
|
|
|
9195
9360
|
*/
|
|
9196
9361
|
username?: string | null;
|
|
9197
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
|
+
};
|
|
9198
9424
|
export declare type AccountFeaturesParams = {
|
|
9199
9425
|
/**
|
|
9200
9426
|
* Starting index for pagination (default: 0)
|