@newfold/huapi-js 2.1799.0 → 2.1805.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 +161 -1
- package/src/index.js +131 -1
- package/src/index.msw.d.ts +11 -1
- package/src/index.msw.js +63 -3
- package/src/index.schemas.d.ts +318 -161
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.1805.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -268,12 +268,6 @@ export declare type SiteMalwareStatusV2200 = {
|
|
|
268
268
|
*/
|
|
269
269
|
scanner_state?: string | null;
|
|
270
270
|
};
|
|
271
|
-
export declare type SitesDomainsV2200 = {
|
|
272
|
-
domains: SitesDomainsV2200DomainsItem[];
|
|
273
|
-
limit?: number;
|
|
274
|
-
page?: number;
|
|
275
|
-
total?: number;
|
|
276
|
-
};
|
|
277
271
|
/**
|
|
278
272
|
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
279
273
|
* @nullable
|
|
@@ -410,9 +404,26 @@ export declare type SitesDomainsV2200DomainsItem = {
|
|
|
410
404
|
*/
|
|
411
405
|
used_entri?: number | null;
|
|
412
406
|
};
|
|
407
|
+
export declare type SitesDomainsV2200 = {
|
|
408
|
+
domains: SitesDomainsV2200DomainsItem[];
|
|
409
|
+
limit?: number;
|
|
410
|
+
page?: number;
|
|
411
|
+
total?: number;
|
|
412
|
+
};
|
|
413
413
|
export declare type SitesDomainsV2Params = {
|
|
414
414
|
scan?: boolean;
|
|
415
415
|
};
|
|
416
|
+
export declare type SitesListV2200 = {
|
|
417
|
+
items?: SitesListV2200ItemsItem[];
|
|
418
|
+
/** page size */
|
|
419
|
+
limit?: number;
|
|
420
|
+
/** current page number */
|
|
421
|
+
page?: number;
|
|
422
|
+
/** total number of pages */
|
|
423
|
+
pages?: number;
|
|
424
|
+
/** total number of sites returned */
|
|
425
|
+
total?: number;
|
|
426
|
+
};
|
|
416
427
|
/**
|
|
417
428
|
* @nullable
|
|
418
429
|
*/
|
|
@@ -575,17 +586,6 @@ export declare type SitesListV2200ItemsItem = {
|
|
|
575
586
|
*/
|
|
576
587
|
version_ptr?: string | null;
|
|
577
588
|
};
|
|
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
589
|
export declare type SshKeyV2200 = {
|
|
590
590
|
deleted?: number;
|
|
591
591
|
key_name?: string;
|
|
@@ -1230,6 +1230,43 @@ export declare type AddonsSitelockSsoV2Params = {
|
|
|
1230
1230
|
*/
|
|
1231
1231
|
source?: string;
|
|
1232
1232
|
};
|
|
1233
|
+
export declare type AllUserMonarxDetails200RowsItem = {
|
|
1234
|
+
/** Addon ID of the Monarx addon */
|
|
1235
|
+
addon_id: number;
|
|
1236
|
+
/**
|
|
1237
|
+
* Domain ID registered with Monarx
|
|
1238
|
+
* @nullable
|
|
1239
|
+
*/
|
|
1240
|
+
domain_id?: number | null;
|
|
1241
|
+
/** Domain name registered with Monarx */
|
|
1242
|
+
domain_name: string;
|
|
1243
|
+
/**
|
|
1244
|
+
* Malware signal health status
|
|
1245
|
+
* @nullable
|
|
1246
|
+
*/
|
|
1247
|
+
health_status?: string | null;
|
|
1248
|
+
/** Hosting ID of the account */
|
|
1249
|
+
hosting_id: string;
|
|
1250
|
+
/**
|
|
1251
|
+
* Timestamp of last completed scan
|
|
1252
|
+
* @nullable
|
|
1253
|
+
*/
|
|
1254
|
+
last_scan_completed_at?: string | null;
|
|
1255
|
+
/**
|
|
1256
|
+
* Monarx plan purchased
|
|
1257
|
+
* @nullable
|
|
1258
|
+
*/
|
|
1259
|
+
plan?: string | null;
|
|
1260
|
+
/**
|
|
1261
|
+
* Hosting product name
|
|
1262
|
+
* @nullable
|
|
1263
|
+
*/
|
|
1264
|
+
prod_name?: string | null;
|
|
1265
|
+
};
|
|
1266
|
+
export declare type AllUserMonarxDetails200 = {
|
|
1267
|
+
/** Flattened list of Monarx addon records per domain */
|
|
1268
|
+
rows: AllUserMonarxDetails200RowsItem[];
|
|
1269
|
+
};
|
|
1233
1270
|
export declare type UserHostingOverview200 = {
|
|
1234
1271
|
/** Whether one (or more) of the hosting accounts manageable by this user allows unlimited sites */
|
|
1235
1272
|
has_unlimited_sites?: boolean;
|
|
@@ -1244,6 +1281,10 @@ export declare type UserHostingOverviewParams = {
|
|
|
1244
1281
|
*/
|
|
1245
1282
|
limit?: number;
|
|
1246
1283
|
};
|
|
1284
|
+
export declare type UserHosting200 = {
|
|
1285
|
+
/** Information for the paginated hosting accounts */
|
|
1286
|
+
rows?: UserHosting200RowsItem[];
|
|
1287
|
+
};
|
|
1247
1288
|
/**
|
|
1248
1289
|
* Usage statistics for staging sites
|
|
1249
1290
|
* @nullable
|
|
@@ -1265,70 +1306,6 @@ export declare type UserHosting200RowsItemUsedStage = {
|
|
|
1265
1306
|
*/
|
|
1266
1307
|
workers?: number | null;
|
|
1267
1308
|
} | null;
|
|
1268
|
-
export declare type UserHosting200RowsItem = {
|
|
1269
|
-
/** Additional information about the account */
|
|
1270
|
-
account_info?: UserHosting200RowsItemAccountInfo;
|
|
1271
|
-
/** HAL Account back_reference, used to link to the product instance */
|
|
1272
|
-
back_reference?: string;
|
|
1273
|
-
/**
|
|
1274
|
-
* Information from the billing system about this hosting account
|
|
1275
|
-
* @nullable
|
|
1276
|
-
*/
|
|
1277
|
-
billing?: UserHosting200RowsItemBilling;
|
|
1278
|
-
/**
|
|
1279
|
-
* Capability sites associated with the account
|
|
1280
|
-
* @nullable
|
|
1281
|
-
*/
|
|
1282
|
-
capability_sites?: string | null;
|
|
1283
|
-
/**
|
|
1284
|
-
* Feature set name ex: hosting_40s
|
|
1285
|
-
* @nullable
|
|
1286
|
-
*/
|
|
1287
|
-
feature_set?: string | null;
|
|
1288
|
-
/** Whether the product associated with this hosting account has panel mail (True) or not (False) */
|
|
1289
|
-
has_panel_mail?: boolean;
|
|
1290
|
-
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
1291
|
-
is_upgradeable?: boolean;
|
|
1292
|
-
/**
|
|
1293
|
-
* Account limits
|
|
1294
|
-
* @nullable
|
|
1295
|
-
*/
|
|
1296
|
-
limit?: UserHosting200RowsItemLimit;
|
|
1297
|
-
/**
|
|
1298
|
-
* Remote limits for the account
|
|
1299
|
-
* @nullable
|
|
1300
|
-
*/
|
|
1301
|
-
limit_remote?: UserHosting200RowsItemLimitRemote;
|
|
1302
|
-
/**
|
|
1303
|
-
* Package name
|
|
1304
|
-
* @nullable
|
|
1305
|
-
*/
|
|
1306
|
-
package?: string | null;
|
|
1307
|
-
/**
|
|
1308
|
-
* Control panel type
|
|
1309
|
-
* @nullable
|
|
1310
|
-
*/
|
|
1311
|
-
panel?: string | null;
|
|
1312
|
-
/**
|
|
1313
|
-
* Number of sites
|
|
1314
|
-
* @nullable
|
|
1315
|
-
*/
|
|
1316
|
-
sites?: number | null;
|
|
1317
|
-
/**
|
|
1318
|
-
* Usage statistics for non-staging sites
|
|
1319
|
-
* @nullable
|
|
1320
|
-
*/
|
|
1321
|
-
used?: UserHosting200RowsItemUsed;
|
|
1322
|
-
/**
|
|
1323
|
-
* Usage statistics for staging sites
|
|
1324
|
-
* @nullable
|
|
1325
|
-
*/
|
|
1326
|
-
used_stage?: UserHosting200RowsItemUsedStage;
|
|
1327
|
-
};
|
|
1328
|
-
export declare type UserHosting200 = {
|
|
1329
|
-
/** Information for the paginated hosting accounts */
|
|
1330
|
-
rows?: UserHosting200RowsItem[];
|
|
1331
|
-
};
|
|
1332
1309
|
/**
|
|
1333
1310
|
* Usage statistics for non-staging sites
|
|
1334
1311
|
* @nullable
|
|
@@ -1443,6 +1420,66 @@ export declare type UserHosting200RowsItemBilling = {
|
|
|
1443
1420
|
*/
|
|
1444
1421
|
prod_name?: string | null;
|
|
1445
1422
|
} | null;
|
|
1423
|
+
export declare type UserHosting200RowsItem = {
|
|
1424
|
+
/** Additional information about the account */
|
|
1425
|
+
account_info?: UserHosting200RowsItemAccountInfo;
|
|
1426
|
+
/** HAL Account back_reference, used to link to the product instance */
|
|
1427
|
+
back_reference?: string;
|
|
1428
|
+
/**
|
|
1429
|
+
* Information from the billing system about this hosting account
|
|
1430
|
+
* @nullable
|
|
1431
|
+
*/
|
|
1432
|
+
billing?: UserHosting200RowsItemBilling;
|
|
1433
|
+
/**
|
|
1434
|
+
* Capability sites associated with the account
|
|
1435
|
+
* @nullable
|
|
1436
|
+
*/
|
|
1437
|
+
capability_sites?: string | null;
|
|
1438
|
+
/**
|
|
1439
|
+
* Feature set name ex: hosting_40s
|
|
1440
|
+
* @nullable
|
|
1441
|
+
*/
|
|
1442
|
+
feature_set?: string | null;
|
|
1443
|
+
/** Whether the product associated with this hosting account has panel mail (True) or not (False) */
|
|
1444
|
+
has_panel_mail?: boolean;
|
|
1445
|
+
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
1446
|
+
is_upgradeable?: boolean;
|
|
1447
|
+
/**
|
|
1448
|
+
* Account limits
|
|
1449
|
+
* @nullable
|
|
1450
|
+
*/
|
|
1451
|
+
limit?: UserHosting200RowsItemLimit;
|
|
1452
|
+
/**
|
|
1453
|
+
* Remote limits for the account
|
|
1454
|
+
* @nullable
|
|
1455
|
+
*/
|
|
1456
|
+
limit_remote?: UserHosting200RowsItemLimitRemote;
|
|
1457
|
+
/**
|
|
1458
|
+
* Package name
|
|
1459
|
+
* @nullable
|
|
1460
|
+
*/
|
|
1461
|
+
package?: string | null;
|
|
1462
|
+
/**
|
|
1463
|
+
* Control panel type
|
|
1464
|
+
* @nullable
|
|
1465
|
+
*/
|
|
1466
|
+
panel?: string | null;
|
|
1467
|
+
/**
|
|
1468
|
+
* Number of sites
|
|
1469
|
+
* @nullable
|
|
1470
|
+
*/
|
|
1471
|
+
sites?: number | null;
|
|
1472
|
+
/**
|
|
1473
|
+
* Usage statistics for non-staging sites
|
|
1474
|
+
* @nullable
|
|
1475
|
+
*/
|
|
1476
|
+
used?: UserHosting200RowsItemUsed;
|
|
1477
|
+
/**
|
|
1478
|
+
* Usage statistics for staging sites
|
|
1479
|
+
* @nullable
|
|
1480
|
+
*/
|
|
1481
|
+
used_stage?: UserHosting200RowsItemUsedStage;
|
|
1482
|
+
};
|
|
1446
1483
|
/**
|
|
1447
1484
|
* Region information for the account
|
|
1448
1485
|
* @nullable
|
|
@@ -3340,6 +3377,9 @@ export declare type HostingRedirects200Item = {
|
|
|
3340
3377
|
url?: string;
|
|
3341
3378
|
wildcard?: boolean;
|
|
3342
3379
|
};
|
|
3380
|
+
export declare type ProductLicenseDetails200 = {
|
|
3381
|
+
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
3382
|
+
};
|
|
3343
3383
|
export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
|
|
3344
3384
|
expirationDate?: string;
|
|
3345
3385
|
prodInstId?: string;
|
|
@@ -3353,9 +3393,6 @@ export declare type ProductLicenseDetails200Wpsolution = {
|
|
|
3353
3393
|
creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
|
|
3354
3394
|
total?: number;
|
|
3355
3395
|
};
|
|
3356
|
-
export declare type ProductLicenseDetails200 = {
|
|
3357
|
-
wpsolution?: ProductLicenseDetails200Wpsolution;
|
|
3358
|
-
};
|
|
3359
3396
|
export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
|
|
3360
3397
|
export declare const ProductLicenseDetailsProductName: {
|
|
3361
3398
|
readonly wpsolution: "wpsolution";
|
|
@@ -3404,6 +3441,41 @@ export declare type HostingOnboardingData200 = {
|
|
|
3404
3441
|
export declare type HostingNameservers200 = {
|
|
3405
3442
|
nameservers: string[];
|
|
3406
3443
|
};
|
|
3444
|
+
export declare type HostingMonarxAddonsList200RowsItem = {
|
|
3445
|
+
/** Addon ID of the Monarx addon */
|
|
3446
|
+
addon_id: number;
|
|
3447
|
+
/** Domain registered with Monarx */
|
|
3448
|
+
domain_name: string;
|
|
3449
|
+
/**
|
|
3450
|
+
* Malware signal health status
|
|
3451
|
+
* @nullable
|
|
3452
|
+
*/
|
|
3453
|
+
health_status?: string | null;
|
|
3454
|
+
/** Hosting ID of the account */
|
|
3455
|
+
hosting_id: string;
|
|
3456
|
+
/**
|
|
3457
|
+
* Monarx plan purchased for the domain
|
|
3458
|
+
* @nullable
|
|
3459
|
+
*/
|
|
3460
|
+
plan?: string | null;
|
|
3461
|
+
};
|
|
3462
|
+
export declare type HostingMonarxAddonsList200 = {
|
|
3463
|
+
rows: HostingMonarxAddonsList200RowsItem[];
|
|
3464
|
+
};
|
|
3465
|
+
export declare type HostingMonarxAddonsListParams = {
|
|
3466
|
+
/**
|
|
3467
|
+
* HAL site id. At most one of site_id, domain_id, domain_name may be provided.
|
|
3468
|
+
*/
|
|
3469
|
+
site_id?: number;
|
|
3470
|
+
/**
|
|
3471
|
+
* HAL domain id. At most one of site_id, domain_id, domain_name may be provided.
|
|
3472
|
+
*/
|
|
3473
|
+
domain_id?: number;
|
|
3474
|
+
/**
|
|
3475
|
+
* Domain name associated with the account. At most one of site_id, domain_id, domain_name may be provided.
|
|
3476
|
+
*/
|
|
3477
|
+
domain_name?: string;
|
|
3478
|
+
};
|
|
3407
3479
|
export declare type HostingMigrationSiteScanStatus200 = {
|
|
3408
3480
|
callback_url?: string;
|
|
3409
3481
|
transferable?: boolean;
|
|
@@ -3460,6 +3532,12 @@ export declare type HostingMigrationStatus200RowsItem = {
|
|
|
3460
3532
|
export declare type HostingMigrationStatus200 = {
|
|
3461
3533
|
rows?: HostingMigrationStatus200RowsItem[];
|
|
3462
3534
|
};
|
|
3535
|
+
export declare type HostingLicenseInfo200 = {
|
|
3536
|
+
licenses?: HostingLicenseModel[];
|
|
3537
|
+
};
|
|
3538
|
+
export declare type HostingLicenseInfoParams = {
|
|
3539
|
+
subtype?: string[];
|
|
3540
|
+
};
|
|
3463
3541
|
export declare type HostingLead400 = {
|
|
3464
3542
|
[key: string]: unknown;
|
|
3465
3543
|
};
|
|
@@ -5861,6 +5939,44 @@ export declare type AddonsSync200 = {
|
|
|
5861
5939
|
export declare type AddonsSpamexpertsSso200 = {
|
|
5862
5940
|
url?: string;
|
|
5863
5941
|
};
|
|
5942
|
+
export declare type MonarxAddonReportUrl200 = {
|
|
5943
|
+
/** Tokenized Monarx iframe URL */
|
|
5944
|
+
report_url: string;
|
|
5945
|
+
};
|
|
5946
|
+
export declare type MonarxAddonReportUrlParams = {
|
|
5947
|
+
/**
|
|
5948
|
+
* HAL site id. Exactly one of site_id, domain_id, domain_name must be provided.
|
|
5949
|
+
*/
|
|
5950
|
+
site_id?: number;
|
|
5951
|
+
/**
|
|
5952
|
+
* HAL domain id. Exactly one of site_id, domain_id, domain_name must be provided.
|
|
5953
|
+
*/
|
|
5954
|
+
domain_id?: number;
|
|
5955
|
+
/**
|
|
5956
|
+
* Domain name associated with the account. Exactly one of site_id, domain_id, domain_name must be provided.
|
|
5957
|
+
*/
|
|
5958
|
+
domain_name?: string;
|
|
5959
|
+
};
|
|
5960
|
+
export declare type MonarxAddonSealGeneration200 = {
|
|
5961
|
+
/** HTML snippet for displaying the Monarx verification seal */
|
|
5962
|
+
monarx_seal: string;
|
|
5963
|
+
/** Monarx site registration identifier */
|
|
5964
|
+
site_registration_id: string;
|
|
5965
|
+
};
|
|
5966
|
+
export declare type MonarxAddonSealGenerationParams = {
|
|
5967
|
+
/**
|
|
5968
|
+
* HAL site id. Exactly one of site_id, domain_id, domain_name must be provided.
|
|
5969
|
+
*/
|
|
5970
|
+
site_id?: number;
|
|
5971
|
+
/**
|
|
5972
|
+
* HAL domain id. Exactly one of site_id, domain_id, domain_name must be provided.
|
|
5973
|
+
*/
|
|
5974
|
+
domain_id?: number;
|
|
5975
|
+
/**
|
|
5976
|
+
* Domain name associated with the account. Exactly one of site_id, domain_id, domain_name must be provided.
|
|
5977
|
+
*/
|
|
5978
|
+
domain_name?: string;
|
|
5979
|
+
};
|
|
5864
5980
|
export declare type AddonsJetpackValidate200 = {
|
|
5865
5981
|
is_connected?: boolean;
|
|
5866
5982
|
};
|
|
@@ -5903,6 +6019,10 @@ export declare type AddonsCloudflareExternalNsCheckParams = {
|
|
|
5903
6019
|
export declare type AddonsCloudflare200 = {
|
|
5904
6020
|
status?: string;
|
|
5905
6021
|
};
|
|
6022
|
+
export declare type BackupMeta200 = {
|
|
6023
|
+
account?: BackupMeta200Account;
|
|
6024
|
+
site?: BackupMeta200Site;
|
|
6025
|
+
};
|
|
5906
6026
|
/**
|
|
5907
6027
|
* @nullable
|
|
5908
6028
|
*/
|
|
@@ -5973,10 +6093,6 @@ export declare type BackupMeta200Account = {
|
|
|
5973
6093
|
/** @nullable */
|
|
5974
6094
|
cbs_last_restore_timestamp?: string | null;
|
|
5975
6095
|
};
|
|
5976
|
-
export declare type BackupMeta200 = {
|
|
5977
|
-
account?: BackupMeta200Account;
|
|
5978
|
-
site?: BackupMeta200Site;
|
|
5979
|
-
};
|
|
5980
6096
|
export declare type BackupMetaParams = {
|
|
5981
6097
|
site_id?: number;
|
|
5982
6098
|
};
|
|
@@ -6179,6 +6295,9 @@ export declare type CodeguardBackupCreateBody = {
|
|
|
6179
6295
|
/** The id of the website the given database is associated with. */
|
|
6180
6296
|
website_id?: number;
|
|
6181
6297
|
};
|
|
6298
|
+
export declare type CodeguardBackupList200 = {
|
|
6299
|
+
backups?: CodeguardBackupList200BackupsItem[];
|
|
6300
|
+
};
|
|
6182
6301
|
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
6183
6302
|
commit_id?: string;
|
|
6184
6303
|
event_time?: string;
|
|
@@ -6190,9 +6309,6 @@ export declare type CodeguardBackupList200BackupsItem = {
|
|
|
6190
6309
|
event_time?: string;
|
|
6191
6310
|
website_commit_id?: string;
|
|
6192
6311
|
};
|
|
6193
|
-
export declare type CodeguardBackupList200 = {
|
|
6194
|
-
backups?: CodeguardBackupList200BackupsItem[];
|
|
6195
|
-
};
|
|
6196
6312
|
export declare type CodeguardBackupListParams = {
|
|
6197
6313
|
website_id: number;
|
|
6198
6314
|
};
|
|
@@ -6294,6 +6410,8 @@ export declare type AccountHostingList200AccountsItem = {
|
|
|
6294
6410
|
region_desc?: string;
|
|
6295
6411
|
/** Returns type of accounts where the hosting plan's data center is located */
|
|
6296
6412
|
region_type?: string;
|
|
6413
|
+
/** Returns type of server the hosting account is installed on */
|
|
6414
|
+
server_type?: string;
|
|
6297
6415
|
status?: string;
|
|
6298
6416
|
};
|
|
6299
6417
|
export declare type AccountHostingList200 = {
|
|
@@ -6304,6 +6422,24 @@ export declare type AccountHostingListParams = {
|
|
|
6304
6422
|
* Flag to exclude atomic site accounts from the response
|
|
6305
6423
|
*/
|
|
6306
6424
|
exclude_atomic_sites?: boolean;
|
|
6425
|
+
/**
|
|
6426
|
+
* Whether to prevent the site_list call which populates the current_sites value per account - pass true to prevent it
|
|
6427
|
+
*/
|
|
6428
|
+
bypass_sites?: boolean;
|
|
6429
|
+
/**
|
|
6430
|
+
* A list of statuses to query for - e.g. active, disabled
|
|
6431
|
+
*/
|
|
6432
|
+
status?: string[];
|
|
6433
|
+
/**
|
|
6434
|
+
* A list of server types to query for - e.g. shared_cpanel, shared
|
|
6435
|
+
*/
|
|
6436
|
+
server_type?: string[];
|
|
6437
|
+
};
|
|
6438
|
+
export declare type AccountFeatures200 = {
|
|
6439
|
+
/** Feature information for the paginated product instances */
|
|
6440
|
+
rows?: AccountFeatures200RowsItem[];
|
|
6441
|
+
/** Total number of product instance IDs available to that account */
|
|
6442
|
+
total_count?: number;
|
|
6307
6443
|
};
|
|
6308
6444
|
/**
|
|
6309
6445
|
* Usage statistics
|
|
@@ -6368,73 +6504,6 @@ export declare type AccountFeatures200RowsItemLimit = {
|
|
|
6368
6504
|
*/
|
|
6369
6505
|
workers?: number | null;
|
|
6370
6506
|
} | null;
|
|
6371
|
-
/**
|
|
6372
|
-
* Feature details from HAL account_feature_info_list
|
|
6373
|
-
*/
|
|
6374
|
-
export declare type AccountFeatures200RowsItem = {
|
|
6375
|
-
/**
|
|
6376
|
-
* Product auto-renew flag
|
|
6377
|
-
* @nullable
|
|
6378
|
-
*/
|
|
6379
|
-
autoRenewFlag?: boolean | null;
|
|
6380
|
-
/** HAL Account back_reference, used to link to the product instance */
|
|
6381
|
-
back_reference?: string;
|
|
6382
|
-
/**
|
|
6383
|
-
* Product expiration date
|
|
6384
|
-
* @nullable
|
|
6385
|
-
*/
|
|
6386
|
-
expirationDate?: string | null;
|
|
6387
|
-
/** Feature set name ex: hosting_40s */
|
|
6388
|
-
feature_set?: string;
|
|
6389
|
-
/** Additional information about the account */
|
|
6390
|
-
info?: AccountFeatures200RowsItemInfo;
|
|
6391
|
-
/**
|
|
6392
|
-
* Account limits
|
|
6393
|
-
* @nullable
|
|
6394
|
-
*/
|
|
6395
|
-
limit?: AccountFeatures200RowsItemLimit;
|
|
6396
|
-
/**
|
|
6397
|
-
* Remote limits for the account
|
|
6398
|
-
* @nullable
|
|
6399
|
-
*/
|
|
6400
|
-
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
6401
|
-
/**
|
|
6402
|
-
* Package name
|
|
6403
|
-
* @nullable
|
|
6404
|
-
*/
|
|
6405
|
-
package?: string | null;
|
|
6406
|
-
/**
|
|
6407
|
-
* Control panel type
|
|
6408
|
-
* @nullable
|
|
6409
|
-
*/
|
|
6410
|
-
panel?: string | null;
|
|
6411
|
-
/**
|
|
6412
|
-
* Product code
|
|
6413
|
-
* @nullable
|
|
6414
|
-
*/
|
|
6415
|
-
prodCode?: string | null;
|
|
6416
|
-
/**
|
|
6417
|
-
* Product name
|
|
6418
|
-
* @nullable
|
|
6419
|
-
*/
|
|
6420
|
-
prodName?: string | null;
|
|
6421
|
-
/**
|
|
6422
|
-
* Number of sites
|
|
6423
|
-
* @nullable
|
|
6424
|
-
*/
|
|
6425
|
-
sites?: number | null;
|
|
6426
|
-
/**
|
|
6427
|
-
* Usage statistics
|
|
6428
|
-
* @nullable
|
|
6429
|
-
*/
|
|
6430
|
-
used?: AccountFeatures200RowsItemUsed;
|
|
6431
|
-
};
|
|
6432
|
-
export declare type AccountFeatures200 = {
|
|
6433
|
-
/** Feature information for the paginated product instances */
|
|
6434
|
-
rows?: AccountFeatures200RowsItem[];
|
|
6435
|
-
/** Total number of product instance IDs available to that account */
|
|
6436
|
-
total_count?: number;
|
|
6437
|
-
};
|
|
6438
6507
|
/**
|
|
6439
6508
|
* Region information for the account
|
|
6440
6509
|
* @nullable
|
|
@@ -6571,6 +6640,67 @@ export declare type AccountFeatures200RowsItemInfo = {
|
|
|
6571
6640
|
*/
|
|
6572
6641
|
username?: string | null;
|
|
6573
6642
|
};
|
|
6643
|
+
/**
|
|
6644
|
+
* Feature details from HAL account_feature_info_list
|
|
6645
|
+
*/
|
|
6646
|
+
export declare type AccountFeatures200RowsItem = {
|
|
6647
|
+
/**
|
|
6648
|
+
* Product auto-renew flag
|
|
6649
|
+
* @nullable
|
|
6650
|
+
*/
|
|
6651
|
+
autoRenewFlag?: boolean | null;
|
|
6652
|
+
/** HAL Account back_reference, used to link to the product instance */
|
|
6653
|
+
back_reference?: string;
|
|
6654
|
+
/**
|
|
6655
|
+
* Product expiration date
|
|
6656
|
+
* @nullable
|
|
6657
|
+
*/
|
|
6658
|
+
expirationDate?: string | null;
|
|
6659
|
+
/** Feature set name ex: hosting_40s */
|
|
6660
|
+
feature_set?: string;
|
|
6661
|
+
/** Additional information about the account */
|
|
6662
|
+
info?: AccountFeatures200RowsItemInfo;
|
|
6663
|
+
/**
|
|
6664
|
+
* Account limits
|
|
6665
|
+
* @nullable
|
|
6666
|
+
*/
|
|
6667
|
+
limit?: AccountFeatures200RowsItemLimit;
|
|
6668
|
+
/**
|
|
6669
|
+
* Remote limits for the account
|
|
6670
|
+
* @nullable
|
|
6671
|
+
*/
|
|
6672
|
+
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
6673
|
+
/**
|
|
6674
|
+
* Package name
|
|
6675
|
+
* @nullable
|
|
6676
|
+
*/
|
|
6677
|
+
package?: string | null;
|
|
6678
|
+
/**
|
|
6679
|
+
* Control panel type
|
|
6680
|
+
* @nullable
|
|
6681
|
+
*/
|
|
6682
|
+
panel?: string | null;
|
|
6683
|
+
/**
|
|
6684
|
+
* Product code
|
|
6685
|
+
* @nullable
|
|
6686
|
+
*/
|
|
6687
|
+
prodCode?: string | null;
|
|
6688
|
+
/**
|
|
6689
|
+
* Product name
|
|
6690
|
+
* @nullable
|
|
6691
|
+
*/
|
|
6692
|
+
prodName?: string | null;
|
|
6693
|
+
/**
|
|
6694
|
+
* Number of sites
|
|
6695
|
+
* @nullable
|
|
6696
|
+
*/
|
|
6697
|
+
sites?: number | null;
|
|
6698
|
+
/**
|
|
6699
|
+
* Usage statistics
|
|
6700
|
+
* @nullable
|
|
6701
|
+
*/
|
|
6702
|
+
used?: AccountFeatures200RowsItemUsed;
|
|
6703
|
+
};
|
|
6574
6704
|
export declare type AccountFeaturesParams = {
|
|
6575
6705
|
/**
|
|
6576
6706
|
* Starting index for pagination (default: 0)
|
|
@@ -8729,6 +8859,28 @@ export interface SpamCustomScore {
|
|
|
8729
8859
|
/** The value for the corresponding score subtype */
|
|
8730
8860
|
value?: number;
|
|
8731
8861
|
}
|
|
8862
|
+
/**
|
|
8863
|
+
* @nullable
|
|
8864
|
+
*/
|
|
8865
|
+
export declare type HostingLicenseModelDetails = {
|
|
8866
|
+
/**
|
|
8867
|
+
* The number of seats provided by this license
|
|
8868
|
+
* @nullable
|
|
8869
|
+
*/
|
|
8870
|
+
seats?: number | null;
|
|
8871
|
+
} | null;
|
|
8872
|
+
export interface HostingLicenseModel {
|
|
8873
|
+
/** @nullable */
|
|
8874
|
+
details?: HostingLicenseModelDetails;
|
|
8875
|
+
/** Whether the license is eligible be upgraded */
|
|
8876
|
+
is_upgradeable?: boolean;
|
|
8877
|
+
/** The name of the level of license */
|
|
8878
|
+
name?: string;
|
|
8879
|
+
/** The status of the license addon */
|
|
8880
|
+
status?: string;
|
|
8881
|
+
/** The subtype of the license */
|
|
8882
|
+
subtype?: string;
|
|
8883
|
+
}
|
|
8732
8884
|
/**
|
|
8733
8885
|
* @nullable
|
|
8734
8886
|
*/
|
|
@@ -8955,6 +9107,11 @@ export declare type SiteOnboardingStepModelAction = {
|
|
|
8955
9107
|
* @nullable
|
|
8956
9108
|
*/
|
|
8957
9109
|
redirect?: string | null;
|
|
9110
|
+
/**
|
|
9111
|
+
* Which meta value to set after this step's action has been taken
|
|
9112
|
+
* @nullable
|
|
9113
|
+
*/
|
|
9114
|
+
set_meta?: string | null;
|
|
8958
9115
|
/**
|
|
8959
9116
|
* Which app or type of SSO should be used for this step, if type=sso
|
|
8960
9117
|
* @nullable
|
|
@@ -8967,10 +9124,10 @@ export declare type SiteOnboardingStepModelAction = {
|
|
|
8967
9124
|
};
|
|
8968
9125
|
export interface SiteOnboardingStepModel {
|
|
8969
9126
|
action?: SiteOnboardingStepModelAction;
|
|
8970
|
-
/** Whether this step should be marked completed */
|
|
8971
|
-
completed?: boolean;
|
|
8972
9127
|
/** Order in which this step should be displayed relative to the rest of the list (ascending) */
|
|
8973
9128
|
order?: number;
|
|
9129
|
+
/** The status of this step - not_started, in_progress, completed */
|
|
9130
|
+
status?: string;
|
|
8974
9131
|
/** Text to show for this step */
|
|
8975
9132
|
text?: string;
|
|
8976
9133
|
}
|