@newfold/huapi-js 2.1655.0 → 2.1671.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 +66 -1
- package/src/index.js +51 -1
- package/src/index.msw.d.ts +5 -1
- package/src/index.msw.js +31 -7
- package/src/index.schemas.d.ts +425 -237
- package/src/index.schemas.js +26 -0
package/src/index.schemas.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
* Hosting UAPI
|
|
5
5
|
* Hosting UAPI is an API to expose Hosting, Addons, and Site functionality to a customer-facing Front End such as (Account Manager).
|
|
6
|
-
* OpenAPI spec version: 1.
|
|
6
|
+
* OpenAPI spec version: 1.1671.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -115,6 +115,51 @@ export declare type HostingSiteAddV3Body = {
|
|
|
115
115
|
/** Number of PHP workers */
|
|
116
116
|
workers?: number;
|
|
117
117
|
};
|
|
118
|
+
export declare type BackupRestoreV3200 = {
|
|
119
|
+
message?: string;
|
|
120
|
+
tracking_id?: number;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* User consent to restore (0/1)
|
|
124
|
+
*/
|
|
125
|
+
export declare type BackupRestoreV3BodyUserConsent = typeof BackupRestoreV3BodyUserConsent[keyof typeof BackupRestoreV3BodyUserConsent];
|
|
126
|
+
export declare const BackupRestoreV3BodyUserConsent: {
|
|
127
|
+
readonly NUMBER_0: 0;
|
|
128
|
+
readonly NUMBER_1: 1;
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* Backup type
|
|
132
|
+
*/
|
|
133
|
+
export declare type BackupRestoreV3BodyBackupType = typeof BackupRestoreV3BodyBackupType[keyof typeof BackupRestoreV3BodyBackupType];
|
|
134
|
+
export declare const BackupRestoreV3BodyBackupType: {
|
|
135
|
+
readonly home: "home";
|
|
136
|
+
readonly db: "db";
|
|
137
|
+
readonly home_db: "home_db";
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Create realtime backup before restoration (0/1)
|
|
141
|
+
*/
|
|
142
|
+
export declare type BackupRestoreV3BodyBackupPreRestore = typeof BackupRestoreV3BodyBackupPreRestore[keyof typeof BackupRestoreV3BodyBackupPreRestore];
|
|
143
|
+
export declare const BackupRestoreV3BodyBackupPreRestore: {
|
|
144
|
+
readonly NUMBER_0: 0;
|
|
145
|
+
readonly NUMBER_1: 1;
|
|
146
|
+
};
|
|
147
|
+
export declare type BackupRestoreV3Body = {
|
|
148
|
+
/** Backup Volume store ID to restore from */
|
|
149
|
+
backup_id: string;
|
|
150
|
+
/** Create realtime backup before restoration (0/1) */
|
|
151
|
+
backup_pre_restore: BackupRestoreV3BodyBackupPreRestore;
|
|
152
|
+
/** Backup type */
|
|
153
|
+
backup_type?: BackupRestoreV3BodyBackupType;
|
|
154
|
+
/** Databases to backup/restore (when applicable) */
|
|
155
|
+
databases?: string[];
|
|
156
|
+
/** Site id */
|
|
157
|
+
site_id: number;
|
|
158
|
+
/** Snapshot date (epoch) */
|
|
159
|
+
snapshot_date: number;
|
|
160
|
+
/** User consent to restore (0/1) */
|
|
161
|
+
user_consent: BackupRestoreV3BodyUserConsent;
|
|
162
|
+
};
|
|
118
163
|
export declare type BackupCreateV3200 = {
|
|
119
164
|
message?: string;
|
|
120
165
|
tracking_id?: number;
|
|
@@ -220,6 +265,12 @@ export declare type SiteMalwareStatusV2200 = {
|
|
|
220
265
|
*/
|
|
221
266
|
scanner_state?: string | null;
|
|
222
267
|
};
|
|
268
|
+
export declare type SitesDomainsV2200 = {
|
|
269
|
+
domains: SitesDomainsV2200DomainsItem[];
|
|
270
|
+
limit?: number;
|
|
271
|
+
page?: number;
|
|
272
|
+
total?: number;
|
|
273
|
+
};
|
|
223
274
|
/**
|
|
224
275
|
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
225
276
|
* @nullable
|
|
@@ -277,6 +328,13 @@ export declare type SitesDomainsV2200DomainsItemSetupProgress = {
|
|
|
277
328
|
*/
|
|
278
329
|
validate_ssl_error_table?: SitesDomainsV2200DomainsItemSetupProgressValidateSslErrorTable;
|
|
279
330
|
} | null;
|
|
331
|
+
/**
|
|
332
|
+
* Job ids and names currently running on the domain
|
|
333
|
+
* @nullable
|
|
334
|
+
*/
|
|
335
|
+
export declare type SitesDomainsV2200DomainsItemJobs = {
|
|
336
|
+
[key: string]: unknown;
|
|
337
|
+
} | null;
|
|
280
338
|
export declare type SitesDomainsV2200DomainsItem = {
|
|
281
339
|
/** @nullable */
|
|
282
340
|
account_back_ref?: string | null;
|
|
@@ -309,6 +367,11 @@ export declare type SitesDomainsV2200DomainsItem = {
|
|
|
309
367
|
* @nullable
|
|
310
368
|
*/
|
|
311
369
|
is_internal?: boolean | null;
|
|
370
|
+
/**
|
|
371
|
+
* Job ids and names currently running on the domain
|
|
372
|
+
* @nullable
|
|
373
|
+
*/
|
|
374
|
+
jobs?: SitesDomainsV2200DomainsItemJobs;
|
|
312
375
|
/** @nullable */
|
|
313
376
|
nameservers?: string[] | null;
|
|
314
377
|
/** @nullable */
|
|
@@ -338,12 +401,11 @@ export declare type SitesDomainsV2200DomainsItem = {
|
|
|
338
401
|
/** @nullable */
|
|
339
402
|
third_party_dns?: boolean | null;
|
|
340
403
|
type: string;
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
total?: number;
|
|
404
|
+
/**
|
|
405
|
+
* Whether the external Entri connection process has been initiated for this domain
|
|
406
|
+
* @nullable
|
|
407
|
+
*/
|
|
408
|
+
used_entri?: number | null;
|
|
347
409
|
};
|
|
348
410
|
export declare type SitesDomainsV2Params = {
|
|
349
411
|
scan?: boolean;
|
|
@@ -375,63 +437,6 @@ export declare type SitesListV2200ItemsItemStaging = {
|
|
|
375
437
|
/** A list of staging sites of the current site */
|
|
376
438
|
sites?: number[];
|
|
377
439
|
} | null;
|
|
378
|
-
export declare type SitesListV2200ItemsItemResourcesStorage = {
|
|
379
|
-
/** @nullable */
|
|
380
|
-
available?: number | null;
|
|
381
|
-
/** @nullable */
|
|
382
|
-
total?: number | null;
|
|
383
|
-
unit?: string;
|
|
384
|
-
/** @nullable */
|
|
385
|
-
used?: number | null;
|
|
386
|
-
};
|
|
387
|
-
export declare type SitesListV2200ItemsItemResources = {
|
|
388
|
-
storage?: SitesListV2200ItemsItemResourcesStorage;
|
|
389
|
-
/** @nullable */
|
|
390
|
-
workers?: number | null;
|
|
391
|
-
};
|
|
392
|
-
/**
|
|
393
|
-
* @nullable
|
|
394
|
-
*/
|
|
395
|
-
export declare type SitesListV2200ItemsItemPendingUrlData = {
|
|
396
|
-
/**
|
|
397
|
-
* The root domain name
|
|
398
|
-
* @nullable
|
|
399
|
-
*/
|
|
400
|
-
base_domain?: string | null;
|
|
401
|
-
/**
|
|
402
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
403
|
-
* @nullable
|
|
404
|
-
*/
|
|
405
|
-
domain?: string | null;
|
|
406
|
-
/**
|
|
407
|
-
* The current pending_url's HAL Domain ID
|
|
408
|
-
* @nullable
|
|
409
|
-
*/
|
|
410
|
-
domain_id?: number | null;
|
|
411
|
-
/** @nullable */
|
|
412
|
-
error?: string | null;
|
|
413
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
414
|
-
is_temp?: boolean;
|
|
415
|
-
/**
|
|
416
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
417
|
-
* @nullable
|
|
418
|
-
*/
|
|
419
|
-
job_failed?: boolean | null;
|
|
420
|
-
/** @nullable */
|
|
421
|
-
stage?: string | null;
|
|
422
|
-
/**
|
|
423
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
424
|
-
* @nullable
|
|
425
|
-
*/
|
|
426
|
-
wp_session?: string | null;
|
|
427
|
-
} | null;
|
|
428
|
-
/**
|
|
429
|
-
* Job ids for the site
|
|
430
|
-
* @nullable
|
|
431
|
-
*/
|
|
432
|
-
export declare type SitesListV2200ItemsItemJobs = {
|
|
433
|
-
[key: string]: unknown;
|
|
434
|
-
} | null;
|
|
435
440
|
export declare type SitesListV2200ItemsItem = {
|
|
436
441
|
/** @nullable */
|
|
437
442
|
account_back_ref?: string | null;
|
|
@@ -521,6 +526,63 @@ export declare type SitesListV2200 = {
|
|
|
521
526
|
/** total number of sites returned */
|
|
522
527
|
total?: number;
|
|
523
528
|
};
|
|
529
|
+
export declare type SitesListV2200ItemsItemResourcesStorage = {
|
|
530
|
+
/** @nullable */
|
|
531
|
+
available?: number | null;
|
|
532
|
+
/** @nullable */
|
|
533
|
+
total?: number | null;
|
|
534
|
+
unit?: string;
|
|
535
|
+
/** @nullable */
|
|
536
|
+
used?: number | null;
|
|
537
|
+
};
|
|
538
|
+
export declare type SitesListV2200ItemsItemResources = {
|
|
539
|
+
storage?: SitesListV2200ItemsItemResourcesStorage;
|
|
540
|
+
/** @nullable */
|
|
541
|
+
workers?: number | null;
|
|
542
|
+
};
|
|
543
|
+
/**
|
|
544
|
+
* @nullable
|
|
545
|
+
*/
|
|
546
|
+
export declare type SitesListV2200ItemsItemPendingUrlData = {
|
|
547
|
+
/**
|
|
548
|
+
* The root domain name
|
|
549
|
+
* @nullable
|
|
550
|
+
*/
|
|
551
|
+
base_domain?: string | null;
|
|
552
|
+
/**
|
|
553
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
554
|
+
* @nullable
|
|
555
|
+
*/
|
|
556
|
+
domain?: string | null;
|
|
557
|
+
/**
|
|
558
|
+
* The current pending_url's HAL Domain ID
|
|
559
|
+
* @nullable
|
|
560
|
+
*/
|
|
561
|
+
domain_id?: number | null;
|
|
562
|
+
/** @nullable */
|
|
563
|
+
error?: string | null;
|
|
564
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
565
|
+
is_temp?: boolean;
|
|
566
|
+
/**
|
|
567
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
568
|
+
* @nullable
|
|
569
|
+
*/
|
|
570
|
+
job_failed?: boolean | null;
|
|
571
|
+
/** @nullable */
|
|
572
|
+
stage?: string | null;
|
|
573
|
+
/**
|
|
574
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
575
|
+
* @nullable
|
|
576
|
+
*/
|
|
577
|
+
wp_session?: string | null;
|
|
578
|
+
} | null;
|
|
579
|
+
/**
|
|
580
|
+
* Job ids for the site
|
|
581
|
+
* @nullable
|
|
582
|
+
*/
|
|
583
|
+
export declare type SitesListV2200ItemsItemJobs = {
|
|
584
|
+
[key: string]: unknown;
|
|
585
|
+
} | null;
|
|
524
586
|
export declare type SshKeyV2200 = {
|
|
525
587
|
deleted?: number;
|
|
526
588
|
key_name?: string;
|
|
@@ -924,6 +986,13 @@ export declare type HostingDomainsV2200DomainsItemSetupProgress = {
|
|
|
924
986
|
*/
|
|
925
987
|
validate_ssl_error_table?: HostingDomainsV2200DomainsItemSetupProgressValidateSslErrorTable;
|
|
926
988
|
} | null;
|
|
989
|
+
/**
|
|
990
|
+
* Job ids and names currently running on the domain
|
|
991
|
+
* @nullable
|
|
992
|
+
*/
|
|
993
|
+
export declare type HostingDomainsV2200DomainsItemJobs = {
|
|
994
|
+
[key: string]: unknown;
|
|
995
|
+
} | null;
|
|
927
996
|
export declare type HostingDomainsV2200DomainsItem = {
|
|
928
997
|
/** @nullable */
|
|
929
998
|
account_back_ref?: string | null;
|
|
@@ -956,6 +1025,11 @@ export declare type HostingDomainsV2200DomainsItem = {
|
|
|
956
1025
|
* @nullable
|
|
957
1026
|
*/
|
|
958
1027
|
is_internal?: boolean | null;
|
|
1028
|
+
/**
|
|
1029
|
+
* Job ids and names currently running on the domain
|
|
1030
|
+
* @nullable
|
|
1031
|
+
*/
|
|
1032
|
+
jobs?: HostingDomainsV2200DomainsItemJobs;
|
|
959
1033
|
/** @nullable */
|
|
960
1034
|
nameservers?: string[] | null;
|
|
961
1035
|
/** @nullable */
|
|
@@ -985,6 +1059,11 @@ export declare type HostingDomainsV2200DomainsItem = {
|
|
|
985
1059
|
/** @nullable */
|
|
986
1060
|
third_party_dns?: boolean | null;
|
|
987
1061
|
type: string;
|
|
1062
|
+
/**
|
|
1063
|
+
* Whether the external Entri connection process has been initiated for this domain
|
|
1064
|
+
* @nullable
|
|
1065
|
+
*/
|
|
1066
|
+
used_entri?: number | null;
|
|
988
1067
|
};
|
|
989
1068
|
export declare type HostingDomainsV2TypesItem = typeof HostingDomainsV2TypesItem[keyof typeof HostingDomainsV2TypesItem];
|
|
990
1069
|
export declare const HostingDomainsV2TypesItem: {
|
|
@@ -1021,9 +1100,28 @@ export declare type DbListV2200DatabasesItem = {
|
|
|
1021
1100
|
export declare type DbListV2200 = {
|
|
1022
1101
|
databases?: DbListV2200DatabasesItem[];
|
|
1023
1102
|
};
|
|
1103
|
+
/**
|
|
1104
|
+
* @nullable
|
|
1105
|
+
*/
|
|
1106
|
+
export declare type BackupStatusV2200CbsEventProcessing = {
|
|
1107
|
+
/** @nullable */
|
|
1108
|
+
action?: string | null;
|
|
1109
|
+
/** @nullable */
|
|
1110
|
+
backup_id?: string | null;
|
|
1111
|
+
/** @nullable */
|
|
1112
|
+
site_id?: number | null;
|
|
1113
|
+
/** @nullable */
|
|
1114
|
+
snapshot_date?: number | null;
|
|
1115
|
+
/** @nullable */
|
|
1116
|
+
type?: string | null;
|
|
1117
|
+
} | null;
|
|
1024
1118
|
export declare type BackupStatusV2200 = {
|
|
1025
1119
|
/** @nullable */
|
|
1026
1120
|
backup_download_url?: string | null;
|
|
1121
|
+
/** @nullable */
|
|
1122
|
+
cbs_event_processing?: BackupStatusV2200CbsEventProcessing;
|
|
1123
|
+
/** @nullable */
|
|
1124
|
+
progress_percentage?: number | null;
|
|
1027
1125
|
status?: string;
|
|
1028
1126
|
};
|
|
1029
1127
|
export declare type BackupStatusV2Params = {
|
|
@@ -1094,9 +1192,19 @@ export declare type AddonsSitelockSsoV2Params = {
|
|
|
1094
1192
|
*/
|
|
1095
1193
|
source?: string;
|
|
1096
1194
|
};
|
|
1097
|
-
export declare type
|
|
1098
|
-
/**
|
|
1099
|
-
|
|
1195
|
+
export declare type UserHostingOverview200 = {
|
|
1196
|
+
/** Whether one (or more) of the hosting accounts manageable by this user allows unlimited sites */
|
|
1197
|
+
has_unlimited_sites?: boolean;
|
|
1198
|
+
/** Number of active hosting accounts across all billing accounts that the user can manage */
|
|
1199
|
+
hosting_accounts?: number;
|
|
1200
|
+
/** Number of sites able to be created across all hosting accounts that the user can manage */
|
|
1201
|
+
max_sites?: number;
|
|
1202
|
+
};
|
|
1203
|
+
export declare type UserHostingOverviewParams = {
|
|
1204
|
+
/**
|
|
1205
|
+
* Max number of hosting packages to include in the count
|
|
1206
|
+
*/
|
|
1207
|
+
limit?: number;
|
|
1100
1208
|
};
|
|
1101
1209
|
/**
|
|
1102
1210
|
* Usage statistics for staging sites
|
|
@@ -1207,12 +1315,74 @@ export declare type UserHosting200RowsItemBilling = {
|
|
|
1207
1315
|
* @nullable
|
|
1208
1316
|
*/
|
|
1209
1317
|
prod_code?: string | null;
|
|
1318
|
+
/**
|
|
1319
|
+
* Hosting domain name from billing/FG integration
|
|
1320
|
+
* @nullable
|
|
1321
|
+
*/
|
|
1322
|
+
prod_inst_name?: string | null;
|
|
1210
1323
|
/**
|
|
1211
1324
|
* Product name
|
|
1212
1325
|
* @nullable
|
|
1213
1326
|
*/
|
|
1214
1327
|
prod_name?: string | null;
|
|
1215
1328
|
} | null;
|
|
1329
|
+
export declare type UserHosting200RowsItem = {
|
|
1330
|
+
/** Additional information about the account */
|
|
1331
|
+
account_info?: UserHosting200RowsItemAccountInfo;
|
|
1332
|
+
/** HAL Account back_reference, used to link to the product instance */
|
|
1333
|
+
back_reference?: string;
|
|
1334
|
+
/**
|
|
1335
|
+
* Information from the billing system about this hosting account
|
|
1336
|
+
* @nullable
|
|
1337
|
+
*/
|
|
1338
|
+
billing?: UserHosting200RowsItemBilling;
|
|
1339
|
+
/**
|
|
1340
|
+
* Feature set name ex: hosting_40s
|
|
1341
|
+
* @nullable
|
|
1342
|
+
*/
|
|
1343
|
+
feature_set?: string | null;
|
|
1344
|
+
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
1345
|
+
is_upgradeable?: boolean;
|
|
1346
|
+
/**
|
|
1347
|
+
* Account limits
|
|
1348
|
+
* @nullable
|
|
1349
|
+
*/
|
|
1350
|
+
limit?: UserHosting200RowsItemLimit;
|
|
1351
|
+
/**
|
|
1352
|
+
* Remote limits for the account
|
|
1353
|
+
* @nullable
|
|
1354
|
+
*/
|
|
1355
|
+
limit_remote?: UserHosting200RowsItemLimitRemote;
|
|
1356
|
+
/**
|
|
1357
|
+
* Package name
|
|
1358
|
+
* @nullable
|
|
1359
|
+
*/
|
|
1360
|
+
package?: string | null;
|
|
1361
|
+
/**
|
|
1362
|
+
* Control panel type
|
|
1363
|
+
* @nullable
|
|
1364
|
+
*/
|
|
1365
|
+
panel?: string | null;
|
|
1366
|
+
/**
|
|
1367
|
+
* Number of sites
|
|
1368
|
+
* @nullable
|
|
1369
|
+
*/
|
|
1370
|
+
sites?: number | null;
|
|
1371
|
+
/**
|
|
1372
|
+
* Usage statistics for non-staging sites
|
|
1373
|
+
* @nullable
|
|
1374
|
+
*/
|
|
1375
|
+
used?: UserHosting200RowsItemUsed;
|
|
1376
|
+
/**
|
|
1377
|
+
* Usage statistics for staging sites
|
|
1378
|
+
* @nullable
|
|
1379
|
+
*/
|
|
1380
|
+
used_stage?: UserHosting200RowsItemUsedStage;
|
|
1381
|
+
};
|
|
1382
|
+
export declare type UserHosting200 = {
|
|
1383
|
+
/** Information for the paginated hosting accounts */
|
|
1384
|
+
rows?: UserHosting200RowsItem[];
|
|
1385
|
+
};
|
|
1216
1386
|
/**
|
|
1217
1387
|
* Region information for the account
|
|
1218
1388
|
* @nullable
|
|
@@ -1334,6 +1504,11 @@ export declare type UserHosting200RowsItemAccountInfo = {
|
|
|
1334
1504
|
* @nullable
|
|
1335
1505
|
*/
|
|
1336
1506
|
server_status?: string | null;
|
|
1507
|
+
/**
|
|
1508
|
+
* Server subtype
|
|
1509
|
+
* @nullable
|
|
1510
|
+
*/
|
|
1511
|
+
server_subtype?: string | null;
|
|
1337
1512
|
/**
|
|
1338
1513
|
* Server type
|
|
1339
1514
|
* @nullable
|
|
@@ -1370,59 +1545,6 @@ export declare type UserHosting200RowsItemAccountInfo = {
|
|
|
1370
1545
|
*/
|
|
1371
1546
|
username?: string | null;
|
|
1372
1547
|
};
|
|
1373
|
-
export declare type UserHosting200RowsItem = {
|
|
1374
|
-
/** Additional information about the account */
|
|
1375
|
-
account_info?: UserHosting200RowsItemAccountInfo;
|
|
1376
|
-
/** HAL Account back_reference, used to link to the product instance */
|
|
1377
|
-
back_reference?: string;
|
|
1378
|
-
/**
|
|
1379
|
-
* Information from the billing system about this hosting account
|
|
1380
|
-
* @nullable
|
|
1381
|
-
*/
|
|
1382
|
-
billing?: UserHosting200RowsItemBilling;
|
|
1383
|
-
/**
|
|
1384
|
-
* Feature set name ex: hosting_40s
|
|
1385
|
-
* @nullable
|
|
1386
|
-
*/
|
|
1387
|
-
feature_set?: string | null;
|
|
1388
|
-
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
1389
|
-
is_upgradeable?: boolean;
|
|
1390
|
-
/**
|
|
1391
|
-
* Account limits
|
|
1392
|
-
* @nullable
|
|
1393
|
-
*/
|
|
1394
|
-
limit?: UserHosting200RowsItemLimit;
|
|
1395
|
-
/**
|
|
1396
|
-
* Remote limits for the account
|
|
1397
|
-
* @nullable
|
|
1398
|
-
*/
|
|
1399
|
-
limit_remote?: UserHosting200RowsItemLimitRemote;
|
|
1400
|
-
/**
|
|
1401
|
-
* Package name
|
|
1402
|
-
* @nullable
|
|
1403
|
-
*/
|
|
1404
|
-
package?: string | null;
|
|
1405
|
-
/**
|
|
1406
|
-
* Control panel type
|
|
1407
|
-
* @nullable
|
|
1408
|
-
*/
|
|
1409
|
-
panel?: string | null;
|
|
1410
|
-
/**
|
|
1411
|
-
* Number of sites
|
|
1412
|
-
* @nullable
|
|
1413
|
-
*/
|
|
1414
|
-
sites?: number | null;
|
|
1415
|
-
/**
|
|
1416
|
-
* Usage statistics for non-staging sites
|
|
1417
|
-
* @nullable
|
|
1418
|
-
*/
|
|
1419
|
-
used?: UserHosting200RowsItemUsed;
|
|
1420
|
-
/**
|
|
1421
|
-
* Usage statistics for staging sites
|
|
1422
|
-
* @nullable
|
|
1423
|
-
*/
|
|
1424
|
-
used_stage?: UserHosting200RowsItemUsedStage;
|
|
1425
|
-
};
|
|
1426
1548
|
export declare type UserHostingParams = {
|
|
1427
1549
|
/**
|
|
1428
1550
|
* Starting page for pagination (default: 1)
|
|
@@ -1946,25 +2068,9 @@ export declare type SitesPerformanceCachepurgeBody = {
|
|
|
1946
2068
|
/** */
|
|
1947
2069
|
hosts: string[];
|
|
1948
2070
|
};
|
|
1949
|
-
export declare type SitePendingDomainDelete200 = {
|
|
1950
|
-
[key: string]: unknown;
|
|
1951
|
-
};
|
|
1952
|
-
export declare type SitesMetricDimensions200DimensionsWpAdminAjaxActionItem = {
|
|
1953
|
-
dimension?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItemDimension;
|
|
1954
|
-
timestamp?: number;
|
|
1955
|
-
};
|
|
1956
|
-
export declare type SitesMetricDimensions200Dimensions = {
|
|
1957
|
-
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
1958
|
-
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
1959
|
-
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
1960
|
-
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
1961
|
-
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
1962
|
-
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
1963
|
-
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
1964
|
-
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
1965
|
-
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
1966
|
-
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
1967
|
-
};
|
|
2071
|
+
export declare type SitePendingDomainDelete200 = {
|
|
2072
|
+
[key: string]: unknown;
|
|
2073
|
+
};
|
|
1968
2074
|
export declare type SitesMetricDimensions200 = {
|
|
1969
2075
|
date_end?: string;
|
|
1970
2076
|
date_start?: string;
|
|
@@ -1975,6 +2081,10 @@ export declare type SitesMetricDimensions200 = {
|
|
|
1975
2081
|
export declare type SitesMetricDimensions200DimensionsWpAdminAjaxActionItemDimension = {
|
|
1976
2082
|
[key: string]: number;
|
|
1977
2083
|
};
|
|
2084
|
+
export declare type SitesMetricDimensions200DimensionsWpAdminAjaxActionItem = {
|
|
2085
|
+
dimension?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItemDimension;
|
|
2086
|
+
timestamp?: number;
|
|
2087
|
+
};
|
|
1978
2088
|
export declare type SitesMetricDimensions200DimensionsVisitorIsCrawlerItemDimension = {
|
|
1979
2089
|
[key: string]: number;
|
|
1980
2090
|
};
|
|
@@ -1996,6 +2106,18 @@ export declare type SitesMetricDimensions200DimensionsVisitorAsnItem = {
|
|
|
1996
2106
|
dimension?: SitesMetricDimensions200DimensionsVisitorAsnItemDimension;
|
|
1997
2107
|
timestamp?: number;
|
|
1998
2108
|
};
|
|
2109
|
+
export declare type SitesMetricDimensions200Dimensions = {
|
|
2110
|
+
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
2111
|
+
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
2112
|
+
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
2113
|
+
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
2114
|
+
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
2115
|
+
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
2116
|
+
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
2117
|
+
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
2118
|
+
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
2119
|
+
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
2120
|
+
};
|
|
1999
2121
|
export declare type SitesMetricDimensions200DimensionsPageRendererItemDimension = {
|
|
2000
2122
|
[key: string]: number;
|
|
2001
2123
|
};
|
|
@@ -2547,71 +2669,6 @@ export declare type SitesInfo200Staging = {
|
|
|
2547
2669
|
/** A list of staging sites of the current site */
|
|
2548
2670
|
sites?: number[];
|
|
2549
2671
|
} | null;
|
|
2550
|
-
export declare type SitesInfo200ResourcesStorage = {
|
|
2551
|
-
/** @nullable */
|
|
2552
|
-
available?: number | null;
|
|
2553
|
-
/** @nullable */
|
|
2554
|
-
total?: number | null;
|
|
2555
|
-
unit?: string;
|
|
2556
|
-
/** @nullable */
|
|
2557
|
-
used?: number | null;
|
|
2558
|
-
};
|
|
2559
|
-
export declare type SitesInfo200Resources = {
|
|
2560
|
-
storage?: SitesInfo200ResourcesStorage;
|
|
2561
|
-
/** @nullable */
|
|
2562
|
-
workers?: number | null;
|
|
2563
|
-
};
|
|
2564
|
-
/**
|
|
2565
|
-
* @nullable
|
|
2566
|
-
*/
|
|
2567
|
-
export declare type SitesInfo200PendingUrlData = {
|
|
2568
|
-
/**
|
|
2569
|
-
* The root domain name
|
|
2570
|
-
* @nullable
|
|
2571
|
-
*/
|
|
2572
|
-
base_domain?: string | null;
|
|
2573
|
-
/**
|
|
2574
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
2575
|
-
* @nullable
|
|
2576
|
-
*/
|
|
2577
|
-
domain?: string | null;
|
|
2578
|
-
/**
|
|
2579
|
-
* The current pending_url's HAL Domain ID
|
|
2580
|
-
* @nullable
|
|
2581
|
-
*/
|
|
2582
|
-
domain_id?: number | null;
|
|
2583
|
-
/** @nullable */
|
|
2584
|
-
error?: string | null;
|
|
2585
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
2586
|
-
is_temp?: boolean;
|
|
2587
|
-
/**
|
|
2588
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
2589
|
-
* @nullable
|
|
2590
|
-
*/
|
|
2591
|
-
job_failed?: boolean | null;
|
|
2592
|
-
/** @nullable */
|
|
2593
|
-
stage?: string | null;
|
|
2594
|
-
/**
|
|
2595
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
2596
|
-
* @nullable
|
|
2597
|
-
*/
|
|
2598
|
-
wp_session?: string | null;
|
|
2599
|
-
} | null;
|
|
2600
|
-
/**
|
|
2601
|
-
* @nullable
|
|
2602
|
-
*/
|
|
2603
|
-
export declare type SitesInfo200Pagespeed = {
|
|
2604
|
-
lastrun?: string;
|
|
2605
|
-
performance?: string;
|
|
2606
|
-
strategy?: string;
|
|
2607
|
-
} | null;
|
|
2608
|
-
/**
|
|
2609
|
-
* Job ids for the site
|
|
2610
|
-
* @nullable
|
|
2611
|
-
*/
|
|
2612
|
-
export declare type SitesInfo200Jobs = {
|
|
2613
|
-
[key: string]: unknown;
|
|
2614
|
-
} | null;
|
|
2615
2672
|
export declare type SitesInfo200 = {
|
|
2616
2673
|
/** @nullable */
|
|
2617
2674
|
account_back_ref?: string | null;
|
|
@@ -2693,6 +2750,71 @@ export declare type SitesInfo200 = {
|
|
|
2693
2750
|
*/
|
|
2694
2751
|
version_ptr?: string | null;
|
|
2695
2752
|
};
|
|
2753
|
+
export declare type SitesInfo200ResourcesStorage = {
|
|
2754
|
+
/** @nullable */
|
|
2755
|
+
available?: number | null;
|
|
2756
|
+
/** @nullable */
|
|
2757
|
+
total?: number | null;
|
|
2758
|
+
unit?: string;
|
|
2759
|
+
/** @nullable */
|
|
2760
|
+
used?: number | null;
|
|
2761
|
+
};
|
|
2762
|
+
export declare type SitesInfo200Resources = {
|
|
2763
|
+
storage?: SitesInfo200ResourcesStorage;
|
|
2764
|
+
/** @nullable */
|
|
2765
|
+
workers?: number | null;
|
|
2766
|
+
};
|
|
2767
|
+
/**
|
|
2768
|
+
* @nullable
|
|
2769
|
+
*/
|
|
2770
|
+
export declare type SitesInfo200PendingUrlData = {
|
|
2771
|
+
/**
|
|
2772
|
+
* The root domain name
|
|
2773
|
+
* @nullable
|
|
2774
|
+
*/
|
|
2775
|
+
base_domain?: string | null;
|
|
2776
|
+
/**
|
|
2777
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
2778
|
+
* @nullable
|
|
2779
|
+
*/
|
|
2780
|
+
domain?: string | null;
|
|
2781
|
+
/**
|
|
2782
|
+
* The current pending_url's HAL Domain ID
|
|
2783
|
+
* @nullable
|
|
2784
|
+
*/
|
|
2785
|
+
domain_id?: number | null;
|
|
2786
|
+
/** @nullable */
|
|
2787
|
+
error?: string | null;
|
|
2788
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
2789
|
+
is_temp?: boolean;
|
|
2790
|
+
/**
|
|
2791
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
2792
|
+
* @nullable
|
|
2793
|
+
*/
|
|
2794
|
+
job_failed?: boolean | null;
|
|
2795
|
+
/** @nullable */
|
|
2796
|
+
stage?: string | null;
|
|
2797
|
+
/**
|
|
2798
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
2799
|
+
* @nullable
|
|
2800
|
+
*/
|
|
2801
|
+
wp_session?: string | null;
|
|
2802
|
+
} | null;
|
|
2803
|
+
/**
|
|
2804
|
+
* @nullable
|
|
2805
|
+
*/
|
|
2806
|
+
export declare type SitesInfo200Pagespeed = {
|
|
2807
|
+
lastrun?: string;
|
|
2808
|
+
performance?: string;
|
|
2809
|
+
strategy?: string;
|
|
2810
|
+
} | null;
|
|
2811
|
+
/**
|
|
2812
|
+
* Job ids for the site
|
|
2813
|
+
* @nullable
|
|
2814
|
+
*/
|
|
2815
|
+
export declare type SitesInfo200Jobs = {
|
|
2816
|
+
[key: string]: unknown;
|
|
2817
|
+
} | null;
|
|
2696
2818
|
export declare type HostingVisitors200VisitorsItem = {
|
|
2697
2819
|
bandwidth?: number;
|
|
2698
2820
|
hits?: number;
|
|
@@ -3030,6 +3152,9 @@ export declare type HostingRedirects200Item = {
|
|
|
3030
3152
|
url?: string;
|
|
3031
3153
|
wildcard?: boolean;
|
|
3032
3154
|
};
|
|
3155
|
+
export declare type ProductLicenseDetails200 = {
|
|
3156
|
+
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
3157
|
+
};
|
|
3033
3158
|
export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
|
|
3034
3159
|
expirationDate?: string;
|
|
3035
3160
|
prodInstId?: string;
|
|
@@ -3043,9 +3168,6 @@ export declare type ProductLicenseDetails200Wpsolution = {
|
|
|
3043
3168
|
creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
|
|
3044
3169
|
total?: number;
|
|
3045
3170
|
};
|
|
3046
|
-
export declare type ProductLicenseDetails200 = {
|
|
3047
|
-
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
3048
|
-
};
|
|
3049
3171
|
export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
|
|
3050
3172
|
export declare const ProductLicenseDetailsProductName: {
|
|
3051
3173
|
readonly wpsolution: "wpsolution";
|
|
@@ -3961,14 +4083,6 @@ export declare type HostingEmailFiltersList200FiltersItemRulesItem = {
|
|
|
3961
4083
|
*/
|
|
3962
4084
|
val?: string | null;
|
|
3963
4085
|
};
|
|
3964
|
-
export declare type HostingEmailFiltersList200FiltersItemActionsItem = {
|
|
3965
|
-
action?: FilterAction;
|
|
3966
|
-
/**
|
|
3967
|
-
* The destination for the action (e.g., folder name, email address, script path, etc)
|
|
3968
|
-
* @nullable
|
|
3969
|
-
*/
|
|
3970
|
-
dest?: string | null;
|
|
3971
|
-
};
|
|
3972
4086
|
export declare type HostingEmailFiltersList200FiltersItem = {
|
|
3973
4087
|
/** Where the email will be forwarded to */
|
|
3974
4088
|
actions?: HostingEmailFiltersList200FiltersItemActionsItem[];
|
|
@@ -3987,6 +4101,14 @@ export declare type HostingEmailFiltersList200 = {
|
|
|
3987
4101
|
/** List of filters */
|
|
3988
4102
|
filters?: HostingEmailFiltersList200FiltersItem[];
|
|
3989
4103
|
};
|
|
4104
|
+
export declare type HostingEmailFiltersList200FiltersItemActionsItem = {
|
|
4105
|
+
action?: FilterAction;
|
|
4106
|
+
/**
|
|
4107
|
+
* The destination for the action (e.g., folder name, email address, script path, etc)
|
|
4108
|
+
* @nullable
|
|
4109
|
+
*/
|
|
4110
|
+
dest?: string | null;
|
|
4111
|
+
};
|
|
3990
4112
|
export declare type HostingEmailFiltersListParams = {
|
|
3991
4113
|
/**
|
|
3992
4114
|
* The email account address to query filters by
|
|
@@ -4959,24 +5081,6 @@ export declare type ActivityLog200 = {
|
|
|
4959
5081
|
export declare type ActivityLogParams = {
|
|
4960
5082
|
days?: number;
|
|
4961
5083
|
};
|
|
4962
|
-
export declare type HostingAccount200 = {
|
|
4963
|
-
account_id?: string;
|
|
4964
|
-
account_limits?: HostingAccount200AccountLimits;
|
|
4965
|
-
advanced?: boolean;
|
|
4966
|
-
billing?: HostingAccount200Billing;
|
|
4967
|
-
brand?: string;
|
|
4968
|
-
id?: string;
|
|
4969
|
-
panel?: string;
|
|
4970
|
-
plan_key?: string;
|
|
4971
|
-
platform?: string;
|
|
4972
|
-
/** @nullable */
|
|
4973
|
-
resources?: HostingAccount200Resources;
|
|
4974
|
-
/** @nullable */
|
|
4975
|
-
ssh_hostname?: string | null;
|
|
4976
|
-
status?: string;
|
|
4977
|
-
type?: string;
|
|
4978
|
-
username?: string;
|
|
4979
|
-
};
|
|
4980
5084
|
export declare type HostingAccount200ResourcesWorkers = {
|
|
4981
5085
|
/** @nullable */
|
|
4982
5086
|
available?: number | null;
|
|
@@ -5002,6 +5106,24 @@ export declare type HostingAccount200Resources = {
|
|
|
5002
5106
|
storage?: HostingAccount200ResourcesStorage;
|
|
5003
5107
|
workers?: HostingAccount200ResourcesWorkers;
|
|
5004
5108
|
} | null;
|
|
5109
|
+
export declare type HostingAccount200 = {
|
|
5110
|
+
account_id?: string;
|
|
5111
|
+
account_limits?: HostingAccount200AccountLimits;
|
|
5112
|
+
advanced?: boolean;
|
|
5113
|
+
billing?: HostingAccount200Billing;
|
|
5114
|
+
brand?: string;
|
|
5115
|
+
id?: string;
|
|
5116
|
+
panel?: string;
|
|
5117
|
+
plan_key?: string;
|
|
5118
|
+
platform?: string;
|
|
5119
|
+
/** @nullable */
|
|
5120
|
+
resources?: HostingAccount200Resources;
|
|
5121
|
+
/** @nullable */
|
|
5122
|
+
ssh_hostname?: string | null;
|
|
5123
|
+
status?: string;
|
|
5124
|
+
type?: string;
|
|
5125
|
+
username?: string;
|
|
5126
|
+
};
|
|
5005
5127
|
export declare type HostingAccount200ResourcesStagingWorkers = {
|
|
5006
5128
|
/** @nullable */
|
|
5007
5129
|
available?: number | null;
|
|
@@ -5390,6 +5512,13 @@ export declare type DomainInfo200SetupProgress = {
|
|
|
5390
5512
|
*/
|
|
5391
5513
|
validate_ssl_error_table?: DomainInfo200SetupProgressValidateSslErrorTable;
|
|
5392
5514
|
} | null;
|
|
5515
|
+
/**
|
|
5516
|
+
* Job ids and names currently running on the domain
|
|
5517
|
+
* @nullable
|
|
5518
|
+
*/
|
|
5519
|
+
export declare type DomainInfo200Jobs = {
|
|
5520
|
+
[key: string]: unknown;
|
|
5521
|
+
} | null;
|
|
5393
5522
|
export declare type DomainInfo200 = {
|
|
5394
5523
|
/** @nullable */
|
|
5395
5524
|
account_back_ref?: string | null;
|
|
@@ -5422,6 +5551,11 @@ export declare type DomainInfo200 = {
|
|
|
5422
5551
|
* @nullable
|
|
5423
5552
|
*/
|
|
5424
5553
|
is_internal?: boolean | null;
|
|
5554
|
+
/**
|
|
5555
|
+
* Job ids and names currently running on the domain
|
|
5556
|
+
* @nullable
|
|
5557
|
+
*/
|
|
5558
|
+
jobs?: DomainInfo200Jobs;
|
|
5425
5559
|
/** @nullable */
|
|
5426
5560
|
nameservers?: string[] | null;
|
|
5427
5561
|
/** @nullable */
|
|
@@ -5451,6 +5585,11 @@ export declare type DomainInfo200 = {
|
|
|
5451
5585
|
/** @nullable */
|
|
5452
5586
|
third_party_dns?: boolean | null;
|
|
5453
5587
|
type: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* Whether the external Entri connection process has been initiated for this domain
|
|
5590
|
+
* @nullable
|
|
5591
|
+
*/
|
|
5592
|
+
used_entri?: number | null;
|
|
5454
5593
|
};
|
|
5455
5594
|
export declare type WeeblySso200 = {
|
|
5456
5595
|
sso?: string;
|
|
@@ -5474,6 +5613,53 @@ export declare type AddonsInfo200 = {
|
|
|
5474
5613
|
export declare type AddonsCloudflare200 = {
|
|
5475
5614
|
status?: string;
|
|
5476
5615
|
};
|
|
5616
|
+
export declare type BackupMeta200 = {
|
|
5617
|
+
account?: BackupMeta200Account;
|
|
5618
|
+
site?: BackupMeta200Site;
|
|
5619
|
+
};
|
|
5620
|
+
/**
|
|
5621
|
+
* @nullable
|
|
5622
|
+
*/
|
|
5623
|
+
export declare type BackupMeta200SiteCbsRestoreConsentInfoUserConsent = typeof BackupMeta200SiteCbsRestoreConsentInfoUserConsent[keyof typeof BackupMeta200SiteCbsRestoreConsentInfoUserConsent] | null;
|
|
5624
|
+
export declare const BackupMeta200SiteCbsRestoreConsentInfoUserConsent: {
|
|
5625
|
+
readonly NUMBER_0: 0;
|
|
5626
|
+
readonly NUMBER_1: 1;
|
|
5627
|
+
};
|
|
5628
|
+
/**
|
|
5629
|
+
* @nullable
|
|
5630
|
+
*/
|
|
5631
|
+
export declare type BackupMeta200SiteCbsRestoreConsentInfoBackupPreRestore = typeof BackupMeta200SiteCbsRestoreConsentInfoBackupPreRestore[keyof typeof BackupMeta200SiteCbsRestoreConsentInfoBackupPreRestore] | null;
|
|
5632
|
+
export declare const BackupMeta200SiteCbsRestoreConsentInfoBackupPreRestore: {
|
|
5633
|
+
readonly NUMBER_0: 0;
|
|
5634
|
+
readonly NUMBER_1: 1;
|
|
5635
|
+
};
|
|
5636
|
+
/**
|
|
5637
|
+
* @nullable
|
|
5638
|
+
*/
|
|
5639
|
+
export declare type BackupMeta200SiteCbsRestoreConsentInfo = {
|
|
5640
|
+
/** @nullable */
|
|
5641
|
+
action_type?: string | null;
|
|
5642
|
+
/** @nullable */
|
|
5643
|
+
backup_id?: string | null;
|
|
5644
|
+
/** @nullable */
|
|
5645
|
+
backup_pre_restore?: BackupMeta200SiteCbsRestoreConsentInfoBackupPreRestore;
|
|
5646
|
+
/** @nullable */
|
|
5647
|
+
backup_type?: string | null;
|
|
5648
|
+
/** @nullable */
|
|
5649
|
+
client_tracking_id?: string | null;
|
|
5650
|
+
/** @nullable */
|
|
5651
|
+
consent_date?: number | null;
|
|
5652
|
+
/** @nullable */
|
|
5653
|
+
internal_tracking_id?: number | null;
|
|
5654
|
+
/** @nullable */
|
|
5655
|
+
restore_status?: string | null;
|
|
5656
|
+
/** @nullable */
|
|
5657
|
+
snapshot_date?: number | null;
|
|
5658
|
+
/** @nullable */
|
|
5659
|
+
user_consent?: BackupMeta200SiteCbsRestoreConsentInfoUserConsent;
|
|
5660
|
+
/** @nullable */
|
|
5661
|
+
users_ip?: string | null;
|
|
5662
|
+
} | null;
|
|
5477
5663
|
export declare type BackupMeta200SiteCbsDownloadablesItem = {
|
|
5478
5664
|
/** @nullable */
|
|
5479
5665
|
snapshot_date?: number | null;
|
|
@@ -5489,10 +5675,8 @@ export declare type BackupMeta200SiteCbsDownloadablesItem = {
|
|
|
5489
5675
|
export declare type BackupMeta200Site = {
|
|
5490
5676
|
/** @nullable */
|
|
5491
5677
|
cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
|
|
5492
|
-
|
|
5493
|
-
|
|
5494
|
-
account?: BackupMeta200Account;
|
|
5495
|
-
site?: BackupMeta200Site;
|
|
5678
|
+
/** @nullable */
|
|
5679
|
+
cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
|
|
5496
5680
|
};
|
|
5497
5681
|
/**
|
|
5498
5682
|
* @nullable
|
|
@@ -5501,8 +5685,12 @@ export declare type BackupMeta200AccountCbsEventProcessing = {
|
|
|
5501
5685
|
/** @nullable */
|
|
5502
5686
|
action?: string | null;
|
|
5503
5687
|
/** @nullable */
|
|
5688
|
+
backup_id?: string | null;
|
|
5689
|
+
/** @nullable */
|
|
5504
5690
|
client_tracking_id?: string | null;
|
|
5505
5691
|
/** @nullable */
|
|
5692
|
+
internal_tracking_id?: number | null;
|
|
5693
|
+
/** @nullable */
|
|
5506
5694
|
site_id?: number | null;
|
|
5507
5695
|
/** @nullable */
|
|
5508
5696
|
snapshot_date?: number | null;
|