@newfold/huapi-js 2.2018.0 → 2.2028.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 +383 -2
- package/src/index.js +303 -3
- package/src/index.msw.d.ts +25 -1
- package/src/index.msw.js +149 -5
- package/src/index.schemas.d.ts +978 -359
- package/src/index.schemas.js +12 -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.2028.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -207,6 +207,13 @@ export declare type BackupStatusV3Params = {
|
|
|
207
207
|
*/
|
|
208
208
|
client_tracking_id: string;
|
|
209
209
|
};
|
|
210
|
+
export declare type BackupListV3200 = {
|
|
211
|
+
has_more?: boolean;
|
|
212
|
+
items?: BackupListV3200ItemsItem[];
|
|
213
|
+
limit?: number;
|
|
214
|
+
offset?: number;
|
|
215
|
+
total?: number;
|
|
216
|
+
};
|
|
210
217
|
/**
|
|
211
218
|
* @nullable
|
|
212
219
|
*/
|
|
@@ -241,13 +248,6 @@ export declare type BackupListV3200ItemsItem = {
|
|
|
241
248
|
timezone?: string;
|
|
242
249
|
type?: string;
|
|
243
250
|
};
|
|
244
|
-
export declare type BackupListV3200 = {
|
|
245
|
-
has_more?: boolean;
|
|
246
|
-
items?: BackupListV3200ItemsItem[];
|
|
247
|
-
limit?: number;
|
|
248
|
-
offset?: number;
|
|
249
|
-
total?: number;
|
|
250
|
-
};
|
|
251
251
|
export declare type BackupListV3Params = {
|
|
252
252
|
page?: number;
|
|
253
253
|
limit?: number;
|
|
@@ -748,6 +748,182 @@ export declare type SitesListV2200ItemsItem = {
|
|
|
748
748
|
*/
|
|
749
749
|
version_ptr?: string | null;
|
|
750
750
|
};
|
|
751
|
+
/**
|
|
752
|
+
* User image
|
|
753
|
+
* @nullable
|
|
754
|
+
*/
|
|
755
|
+
export declare type PublicImagesV2200RowsItemUserImage = string | number | null;
|
|
756
|
+
/**
|
|
757
|
+
* Image LTS
|
|
758
|
+
* @nullable
|
|
759
|
+
*/
|
|
760
|
+
export declare type PublicImagesV2200RowsItemLts = string | number | null;
|
|
761
|
+
/**
|
|
762
|
+
* Links
|
|
763
|
+
* @nullable
|
|
764
|
+
*/
|
|
765
|
+
export declare type PublicImagesV2200RowsItemLinks = {
|
|
766
|
+
/**
|
|
767
|
+
* Community URL
|
|
768
|
+
* @nullable
|
|
769
|
+
*/
|
|
770
|
+
community?: string | null;
|
|
771
|
+
/**
|
|
772
|
+
* Documentation URL
|
|
773
|
+
* @nullable
|
|
774
|
+
*/
|
|
775
|
+
doc?: string | null;
|
|
776
|
+
/**
|
|
777
|
+
* Forums URL
|
|
778
|
+
* @nullable
|
|
779
|
+
*/
|
|
780
|
+
forums?: string | null;
|
|
781
|
+
} | null;
|
|
782
|
+
/**
|
|
783
|
+
* Image ID
|
|
784
|
+
*/
|
|
785
|
+
export declare type PublicImagesV2200RowsItemId = string | number;
|
|
786
|
+
/**
|
|
787
|
+
* Docker default
|
|
788
|
+
* @nullable
|
|
789
|
+
*/
|
|
790
|
+
export declare type PublicImagesV2200RowsItemDockerDefault = string | number | null;
|
|
791
|
+
/**
|
|
792
|
+
* Current
|
|
793
|
+
* @nullable
|
|
794
|
+
*/
|
|
795
|
+
export declare type PublicImagesV2200RowsItemCurrent = string | number | null;
|
|
796
|
+
/**
|
|
797
|
+
* Cpanel default
|
|
798
|
+
* @nullable
|
|
799
|
+
*/
|
|
800
|
+
export declare type PublicImagesV2200RowsItemCpanelDefault = string | number | null;
|
|
801
|
+
export declare type PublicImagesV2200RowsItem = {
|
|
802
|
+
/**
|
|
803
|
+
* Application name
|
|
804
|
+
* @nullable
|
|
805
|
+
*/
|
|
806
|
+
app?: string | null;
|
|
807
|
+
/**
|
|
808
|
+
* Architecture name
|
|
809
|
+
* @nullable
|
|
810
|
+
*/
|
|
811
|
+
arch_name?: string | null;
|
|
812
|
+
/**
|
|
813
|
+
* Cpanel default
|
|
814
|
+
* @nullable
|
|
815
|
+
*/
|
|
816
|
+
cpanel_default?: PublicImagesV2200RowsItemCpanelDefault;
|
|
817
|
+
/**
|
|
818
|
+
* Current
|
|
819
|
+
* @nullable
|
|
820
|
+
*/
|
|
821
|
+
current?: PublicImagesV2200RowsItemCurrent;
|
|
822
|
+
/** Date added */
|
|
823
|
+
date_added?: string;
|
|
824
|
+
/**
|
|
825
|
+
* Docker default
|
|
826
|
+
* @nullable
|
|
827
|
+
*/
|
|
828
|
+
docker_default?: PublicImagesV2200RowsItemDockerDefault;
|
|
829
|
+
/** Image ID */
|
|
830
|
+
id?: PublicImagesV2200RowsItemId;
|
|
831
|
+
/**
|
|
832
|
+
* Links
|
|
833
|
+
* @nullable
|
|
834
|
+
*/
|
|
835
|
+
links?: PublicImagesV2200RowsItemLinks;
|
|
836
|
+
/**
|
|
837
|
+
* Image LTS
|
|
838
|
+
* @nullable
|
|
839
|
+
*/
|
|
840
|
+
lts?: PublicImagesV2200RowsItemLts;
|
|
841
|
+
/**
|
|
842
|
+
* Image Link
|
|
843
|
+
* @nullable
|
|
844
|
+
*/
|
|
845
|
+
manage_link?: string | null;
|
|
846
|
+
/**
|
|
847
|
+
* Minimum cpus required to build on this image
|
|
848
|
+
* @nullable
|
|
849
|
+
*/
|
|
850
|
+
min_cpus?: string | null;
|
|
851
|
+
/**
|
|
852
|
+
* Minimum disk space (in Gb) required to build on this image
|
|
853
|
+
* @nullable
|
|
854
|
+
*/
|
|
855
|
+
min_disk?: string | null;
|
|
856
|
+
/**
|
|
857
|
+
* Minimum ram (in Gb) required to build on this image
|
|
858
|
+
* @nullable
|
|
859
|
+
*/
|
|
860
|
+
min_ram?: string | null;
|
|
861
|
+
/** Image Name */
|
|
862
|
+
name?: string;
|
|
863
|
+
/**
|
|
864
|
+
* Image OS name
|
|
865
|
+
* @nullable
|
|
866
|
+
*/
|
|
867
|
+
os_name?: string | null;
|
|
868
|
+
/**
|
|
869
|
+
* Image OS version
|
|
870
|
+
* @nullable
|
|
871
|
+
*/
|
|
872
|
+
os_version?: string | null;
|
|
873
|
+
/**
|
|
874
|
+
* The readme associated with the image
|
|
875
|
+
* @nullable
|
|
876
|
+
*/
|
|
877
|
+
readme?: string | null;
|
|
878
|
+
/**
|
|
879
|
+
* Image Software
|
|
880
|
+
* @nullable
|
|
881
|
+
*/
|
|
882
|
+
software?: string | null;
|
|
883
|
+
/**
|
|
884
|
+
* Image Title
|
|
885
|
+
* @nullable
|
|
886
|
+
*/
|
|
887
|
+
title?: string | null;
|
|
888
|
+
/**
|
|
889
|
+
* Image Type
|
|
890
|
+
* @nullable
|
|
891
|
+
*/
|
|
892
|
+
type?: string | null;
|
|
893
|
+
/**
|
|
894
|
+
* User image
|
|
895
|
+
* @nullable
|
|
896
|
+
*/
|
|
897
|
+
user_image?: PublicImagesV2200RowsItemUserImage;
|
|
898
|
+
};
|
|
899
|
+
/**
|
|
900
|
+
* Page number
|
|
901
|
+
*/
|
|
902
|
+
export declare type PublicImagesV2200Page = string | number;
|
|
903
|
+
/**
|
|
904
|
+
* Number of images returned
|
|
905
|
+
*/
|
|
906
|
+
export declare type PublicImagesV2200NRows = string | number;
|
|
907
|
+
/**
|
|
908
|
+
* Limit the number of images returned
|
|
909
|
+
*/
|
|
910
|
+
export declare type PublicImagesV2200Limit = string | number;
|
|
911
|
+
export declare type PublicImagesV2200 = {
|
|
912
|
+
/** Limit the number of images returned */
|
|
913
|
+
limit?: PublicImagesV2200Limit;
|
|
914
|
+
/** Number of images returned */
|
|
915
|
+
n_rows?: PublicImagesV2200NRows;
|
|
916
|
+
/** Page number */
|
|
917
|
+
page?: PublicImagesV2200Page;
|
|
918
|
+
/** List of images */
|
|
919
|
+
rows?: PublicImagesV2200RowsItem[];
|
|
920
|
+
};
|
|
921
|
+
export declare type PublicImagesV2Params = {
|
|
922
|
+
/**
|
|
923
|
+
* Brand identifier (e.g. bluehost).
|
|
924
|
+
*/
|
|
925
|
+
brand?: string;
|
|
926
|
+
};
|
|
751
927
|
export declare type SshKeyV2200 = {
|
|
752
928
|
deleted?: number;
|
|
753
929
|
key_name?: string;
|
|
@@ -1296,6 +1472,34 @@ export declare type DbListV2200DatabasesItem = {
|
|
|
1296
1472
|
export declare type DbListV2200 = {
|
|
1297
1473
|
databases?: DbListV2200DatabasesItem[];
|
|
1298
1474
|
};
|
|
1475
|
+
export declare type HostingAdvancedServerV2200Ips = {
|
|
1476
|
+
/** @nullable */
|
|
1477
|
+
other_ips?: (string | null)[] | null;
|
|
1478
|
+
/**
|
|
1479
|
+
* primary IP of server
|
|
1480
|
+
* @nullable
|
|
1481
|
+
*/
|
|
1482
|
+
primary_ip?: string | null;
|
|
1483
|
+
};
|
|
1484
|
+
export declare type HostingAdvancedServerV2200Actions = {
|
|
1485
|
+
[key: string]: unknown;
|
|
1486
|
+
};
|
|
1487
|
+
export declare type HostingAdvancedServerV2200 = {
|
|
1488
|
+
actions?: HostingAdvancedServerV2200Actions;
|
|
1489
|
+
/**
|
|
1490
|
+
* hostname of server
|
|
1491
|
+
* @nullable
|
|
1492
|
+
*/
|
|
1493
|
+
hostname?: string | null;
|
|
1494
|
+
ips?: HostingAdvancedServerV2200Ips;
|
|
1495
|
+
/** Operating system name */
|
|
1496
|
+
os_name?: string;
|
|
1497
|
+
/** Operating system version */
|
|
1498
|
+
os_version?: string;
|
|
1499
|
+
status?: string;
|
|
1500
|
+
uptime?: string;
|
|
1501
|
+
uptime_seconds?: number;
|
|
1502
|
+
};
|
|
1299
1503
|
/**
|
|
1300
1504
|
* @nullable
|
|
1301
1505
|
*/
|
|
@@ -1466,6 +1670,84 @@ export declare type AddonsSitelockSsoV2Params = {
|
|
|
1466
1670
|
*/
|
|
1467
1671
|
source?: string;
|
|
1468
1672
|
};
|
|
1673
|
+
export declare type AccountHostingListV2200AccountsItem = {
|
|
1674
|
+
/**
|
|
1675
|
+
* Account identifier (tenant reference)
|
|
1676
|
+
* @nullable
|
|
1677
|
+
*/
|
|
1678
|
+
account_id?: string | null;
|
|
1679
|
+
/**
|
|
1680
|
+
* Billing account identifier parsed from account_id
|
|
1681
|
+
* @nullable
|
|
1682
|
+
*/
|
|
1683
|
+
billing_account_id?: number | null;
|
|
1684
|
+
current_sites?: number;
|
|
1685
|
+
/** @nullable */
|
|
1686
|
+
feature_set?: string | null;
|
|
1687
|
+
/**
|
|
1688
|
+
* Status of the hosting addon on this account
|
|
1689
|
+
* @nullable
|
|
1690
|
+
*/
|
|
1691
|
+
hosting_addon_status?: string | null;
|
|
1692
|
+
/** Hosting resource identifier */
|
|
1693
|
+
hosting_id?: string;
|
|
1694
|
+
max_sites?: string;
|
|
1695
|
+
/**
|
|
1696
|
+
* Parent hosting identifier for atomic accounts, account id for non-atomic accounts
|
|
1697
|
+
* @nullable
|
|
1698
|
+
*/
|
|
1699
|
+
parent_id?: string | null;
|
|
1700
|
+
/** @nullable */
|
|
1701
|
+
platform?: string | null;
|
|
1702
|
+
/** Returns type of the platform the hosting account is on */
|
|
1703
|
+
platform_type?: string;
|
|
1704
|
+
/**
|
|
1705
|
+
* Product instance identifier
|
|
1706
|
+
* @nullable
|
|
1707
|
+
*/
|
|
1708
|
+
prod_inst_id?: string | null;
|
|
1709
|
+
/** Returns preferred Data center location for their hosting plan */
|
|
1710
|
+
region_desc?: string;
|
|
1711
|
+
/** Returns type of accounts where the hosting plan's data center is located */
|
|
1712
|
+
region_type?: string;
|
|
1713
|
+
/**
|
|
1714
|
+
* Primary server IP address when available
|
|
1715
|
+
* @nullable
|
|
1716
|
+
*/
|
|
1717
|
+
server_ip?: string | null;
|
|
1718
|
+
/**
|
|
1719
|
+
* Returns status of the server the hosting account is installed on
|
|
1720
|
+
* @nullable
|
|
1721
|
+
*/
|
|
1722
|
+
server_status?: string | null;
|
|
1723
|
+
/**
|
|
1724
|
+
* Returns type of server the hosting account is installed on
|
|
1725
|
+
* @nullable
|
|
1726
|
+
*/
|
|
1727
|
+
server_type?: string | null;
|
|
1728
|
+
status?: string;
|
|
1729
|
+
};
|
|
1730
|
+
export declare type AccountHostingListV2200 = {
|
|
1731
|
+
accounts?: AccountHostingListV2200AccountsItem[];
|
|
1732
|
+
};
|
|
1733
|
+
export declare type AccountHostingListV2Params = {
|
|
1734
|
+
/**
|
|
1735
|
+
* Flag to exclude atomic site accounts from the response
|
|
1736
|
+
*/
|
|
1737
|
+
exclude_atomic_sites?: boolean;
|
|
1738
|
+
/**
|
|
1739
|
+
* Whether to prevent the site_list call which populates the current_sites value per account - pass true to prevent it
|
|
1740
|
+
*/
|
|
1741
|
+
bypass_sites?: boolean;
|
|
1742
|
+
/**
|
|
1743
|
+
* A list of statuses to query for - e.g. active, disabled
|
|
1744
|
+
*/
|
|
1745
|
+
status?: string[];
|
|
1746
|
+
/**
|
|
1747
|
+
* A list of server types to query for - e.g. shared_cpanel, shared
|
|
1748
|
+
*/
|
|
1749
|
+
server_type?: string[];
|
|
1750
|
+
};
|
|
1469
1751
|
export declare type WaldaiSso502 = {
|
|
1470
1752
|
/** Error code */
|
|
1471
1753
|
error?: string;
|
|
@@ -1478,9 +1760,6 @@ export declare type WaldaiSso200 = {
|
|
|
1478
1760
|
/** SSO redirect URL for WaldAI dashboard */
|
|
1479
1761
|
redirect_url: string;
|
|
1480
1762
|
};
|
|
1481
|
-
export declare type UserSpamexperts200 = {
|
|
1482
|
-
rows: UserSpamexperts200RowsItem[];
|
|
1483
|
-
};
|
|
1484
1763
|
export declare type UserSpamexperts200RowsItemMeta = {
|
|
1485
1764
|
/** @nullable */
|
|
1486
1765
|
domain?: string | null;
|
|
@@ -1502,11 +1781,8 @@ export declare type UserSpamexperts200RowsItem = {
|
|
|
1502
1781
|
meta: UserSpamexperts200RowsItemMeta;
|
|
1503
1782
|
status: string;
|
|
1504
1783
|
};
|
|
1505
|
-
export declare type
|
|
1506
|
-
|
|
1507
|
-
products?: UserProservices200ProductsItem[];
|
|
1508
|
-
/** Number of pro-services products returned */
|
|
1509
|
-
total?: number;
|
|
1784
|
+
export declare type UserSpamexperts200 = {
|
|
1785
|
+
rows: UserSpamexperts200RowsItem[];
|
|
1510
1786
|
};
|
|
1511
1787
|
export declare type UserProservices200ProductsItemProductProfileOptionsItem = {
|
|
1512
1788
|
/** @nullable */
|
|
@@ -1566,6 +1842,12 @@ export declare type UserProservices200ProductsItem = {
|
|
|
1566
1842
|
/** Pro-services status: Active or Completed */
|
|
1567
1843
|
status?: string;
|
|
1568
1844
|
};
|
|
1845
|
+
export declare type UserProservices200 = {
|
|
1846
|
+
/** Pro-services products from FG */
|
|
1847
|
+
products?: UserProservices200ProductsItem[];
|
|
1848
|
+
/** Number of pro-services products returned */
|
|
1849
|
+
total?: number;
|
|
1850
|
+
};
|
|
1569
1851
|
export declare type UserProducts502 = {
|
|
1570
1852
|
/** Error code */
|
|
1571
1853
|
error?: string;
|
|
@@ -1721,10 +2003,6 @@ export declare type UserHostingOverviewParams = {
|
|
|
1721
2003
|
*/
|
|
1722
2004
|
limit?: number;
|
|
1723
2005
|
};
|
|
1724
|
-
export declare type UserHosting200 = {
|
|
1725
|
-
/** Information for the paginated hosting accounts */
|
|
1726
|
-
rows?: UserHosting200RowsItem[];
|
|
1727
|
-
};
|
|
1728
2006
|
/**
|
|
1729
2007
|
* Usage statistics for staging sites
|
|
1730
2008
|
* @nullable
|
|
@@ -1817,138 +2095,70 @@ export declare type UserHosting200RowsItemPanelMailAddon = {
|
|
|
1817
2095
|
* Remote limits for the account
|
|
1818
2096
|
* @nullable
|
|
1819
2097
|
*/
|
|
1820
|
-
export declare type UserHosting200RowsItemLimitRemote = {
|
|
1821
|
-
/**
|
|
1822
|
-
* Total Number of files (inodes) on the hosting account
|
|
1823
|
-
* @nullable
|
|
1824
|
-
*/
|
|
1825
|
-
inodes?: number | null;
|
|
1826
|
-
/**
|
|
1827
|
-
* Quota in KB associated with the account
|
|
1828
|
-
* @nullable
|
|
1829
|
-
*/
|
|
1830
|
-
quota_kib?: string | null;
|
|
1831
|
-
} | null;
|
|
1832
|
-
/**
|
|
1833
|
-
* Account limits
|
|
1834
|
-
* @nullable
|
|
1835
|
-
*/
|
|
1836
|
-
export declare type UserHosting200RowsItemLimit = {
|
|
1837
|
-
/**
|
|
1838
|
-
* Disk space limit in GiB
|
|
1839
|
-
* @nullable
|
|
1840
|
-
*/
|
|
1841
|
-
disk_limit_gib?: string | null;
|
|
1842
|
-
/**
|
|
1843
|
-
* Maximum number of sites allowed
|
|
1844
|
-
* @nullable
|
|
1845
|
-
*/
|
|
1846
|
-
sites?: string | null;
|
|
1847
|
-
/**
|
|
1848
|
-
* Number of workers
|
|
1849
|
-
* @nullable
|
|
1850
|
-
*/
|
|
1851
|
-
workers?: number | null;
|
|
1852
|
-
} | null;
|
|
1853
|
-
/**
|
|
1854
|
-
* Information from the billing system about this hosting account
|
|
1855
|
-
* @nullable
|
|
1856
|
-
*/
|
|
1857
|
-
export declare type UserHosting200RowsItemBilling = {
|
|
1858
|
-
/**
|
|
1859
|
-
* Product auto-renew flag
|
|
1860
|
-
* @nullable
|
|
1861
|
-
*/
|
|
1862
|
-
auto_renew_flag?: boolean | null;
|
|
1863
|
-
/**
|
|
1864
|
-
* Product expiration date
|
|
1865
|
-
* @nullable
|
|
1866
|
-
*/
|
|
1867
|
-
expiration_date?: string | null;
|
|
1868
|
-
/**
|
|
1869
|
-
* Product code
|
|
1870
|
-
* @nullable
|
|
1871
|
-
*/
|
|
1872
|
-
prod_code?: string | null;
|
|
1873
|
-
/**
|
|
1874
|
-
* Hosting domain name from billing/FG integration
|
|
1875
|
-
* @nullable
|
|
1876
|
-
*/
|
|
1877
|
-
prod_inst_name?: string | null;
|
|
1878
|
-
/**
|
|
1879
|
-
* Product name
|
|
1880
|
-
* @nullable
|
|
1881
|
-
*/
|
|
1882
|
-
prod_name?: string | null;
|
|
1883
|
-
} | null;
|
|
1884
|
-
export declare type UserHosting200RowsItem = {
|
|
1885
|
-
/** Additional information about the account */
|
|
1886
|
-
account_info?: UserHosting200RowsItemAccountInfo;
|
|
1887
|
-
/**
|
|
1888
|
-
* HAL Account back_reference, used to link to the product instance
|
|
1889
|
-
* @nullable
|
|
1890
|
-
*/
|
|
1891
|
-
back_reference?: string | null;
|
|
1892
|
-
/**
|
|
1893
|
-
* Information from the billing system about this hosting account
|
|
1894
|
-
* @nullable
|
|
1895
|
-
*/
|
|
1896
|
-
billing?: UserHosting200RowsItemBilling;
|
|
2098
|
+
export declare type UserHosting200RowsItemLimitRemote = {
|
|
1897
2099
|
/**
|
|
1898
|
-
*
|
|
2100
|
+
* Total Number of files (inodes) on the hosting account
|
|
1899
2101
|
* @nullable
|
|
1900
2102
|
*/
|
|
1901
|
-
|
|
2103
|
+
inodes?: number | null;
|
|
1902
2104
|
/**
|
|
1903
|
-
*
|
|
2105
|
+
* Quota in KB associated with the account
|
|
1904
2106
|
* @nullable
|
|
1905
2107
|
*/
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
2108
|
+
quota_kib?: string | null;
|
|
2109
|
+
} | null;
|
|
2110
|
+
/**
|
|
2111
|
+
* Account limits
|
|
2112
|
+
* @nullable
|
|
2113
|
+
*/
|
|
2114
|
+
export declare type UserHosting200RowsItemLimit = {
|
|
1911
2115
|
/**
|
|
1912
|
-
*
|
|
2116
|
+
* Disk space limit in GiB
|
|
1913
2117
|
* @nullable
|
|
1914
2118
|
*/
|
|
1915
|
-
|
|
2119
|
+
disk_limit_gib?: string | null;
|
|
1916
2120
|
/**
|
|
1917
|
-
*
|
|
2121
|
+
* Maximum number of sites allowed
|
|
1918
2122
|
* @nullable
|
|
1919
2123
|
*/
|
|
1920
|
-
|
|
2124
|
+
sites?: string | null;
|
|
1921
2125
|
/**
|
|
1922
|
-
*
|
|
2126
|
+
* Number of workers
|
|
1923
2127
|
* @nullable
|
|
1924
2128
|
*/
|
|
1925
|
-
|
|
2129
|
+
workers?: number | null;
|
|
2130
|
+
} | null;
|
|
2131
|
+
/**
|
|
2132
|
+
* Information from the billing system about this hosting account
|
|
2133
|
+
* @nullable
|
|
2134
|
+
*/
|
|
2135
|
+
export declare type UserHosting200RowsItemBilling = {
|
|
1926
2136
|
/**
|
|
1927
|
-
*
|
|
2137
|
+
* Product auto-renew flag
|
|
1928
2138
|
* @nullable
|
|
1929
2139
|
*/
|
|
1930
|
-
|
|
2140
|
+
auto_renew_flag?: boolean | null;
|
|
1931
2141
|
/**
|
|
1932
|
-
*
|
|
2142
|
+
* Product expiration date
|
|
1933
2143
|
* @nullable
|
|
1934
2144
|
*/
|
|
1935
|
-
|
|
2145
|
+
expiration_date?: string | null;
|
|
1936
2146
|
/**
|
|
1937
|
-
*
|
|
2147
|
+
* Product code
|
|
1938
2148
|
* @nullable
|
|
1939
2149
|
*/
|
|
1940
|
-
|
|
2150
|
+
prod_code?: string | null;
|
|
1941
2151
|
/**
|
|
1942
|
-
*
|
|
2152
|
+
* Hosting domain name from billing/FG integration
|
|
1943
2153
|
* @nullable
|
|
1944
2154
|
*/
|
|
1945
|
-
|
|
2155
|
+
prod_inst_name?: string | null;
|
|
1946
2156
|
/**
|
|
1947
|
-
*
|
|
2157
|
+
* Product name
|
|
1948
2158
|
* @nullable
|
|
1949
2159
|
*/
|
|
1950
|
-
|
|
1951
|
-
};
|
|
2160
|
+
prod_name?: string | null;
|
|
2161
|
+
} | null;
|
|
1952
2162
|
/**
|
|
1953
2163
|
* Region information for the account
|
|
1954
2164
|
* @nullable
|
|
@@ -2035,6 +2245,11 @@ export declare type UserHosting200RowsItemAccountInfo = {
|
|
|
2035
2245
|
* @nullable
|
|
2036
2246
|
*/
|
|
2037
2247
|
application?: string | null;
|
|
2248
|
+
/**
|
|
2249
|
+
* FG/Jarvis billing account id; alias of tenant_back_ref
|
|
2250
|
+
* @nullable
|
|
2251
|
+
*/
|
|
2252
|
+
billing_account_id?: string | null;
|
|
2038
2253
|
/**
|
|
2039
2254
|
* Brand name associated with the account
|
|
2040
2255
|
* @nullable
|
|
@@ -2158,6 +2373,78 @@ export declare type UserHosting200RowsItemAccountInfo = {
|
|
|
2158
2373
|
*/
|
|
2159
2374
|
username?: string | null;
|
|
2160
2375
|
};
|
|
2376
|
+
export declare type UserHosting200RowsItem = {
|
|
2377
|
+
/** Additional information about the account */
|
|
2378
|
+
account_info?: UserHosting200RowsItemAccountInfo;
|
|
2379
|
+
/**
|
|
2380
|
+
* HAL Account back_reference, used to link to the product instance
|
|
2381
|
+
* @nullable
|
|
2382
|
+
*/
|
|
2383
|
+
back_reference?: string | null;
|
|
2384
|
+
/**
|
|
2385
|
+
* Information from the billing system about this hosting account
|
|
2386
|
+
* @nullable
|
|
2387
|
+
*/
|
|
2388
|
+
billing?: UserHosting200RowsItemBilling;
|
|
2389
|
+
/**
|
|
2390
|
+
* Capability sites associated with the account
|
|
2391
|
+
* @nullable
|
|
2392
|
+
*/
|
|
2393
|
+
capability_sites?: string | null;
|
|
2394
|
+
/**
|
|
2395
|
+
* Feature set name ex: hosting_40s
|
|
2396
|
+
* @nullable
|
|
2397
|
+
*/
|
|
2398
|
+
feature_set?: string | null;
|
|
2399
|
+
/** Whether the product associated with this hosting account has panel mail (True) or not (False) */
|
|
2400
|
+
has_panel_mail?: boolean;
|
|
2401
|
+
/** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
|
|
2402
|
+
is_upgradeable?: boolean;
|
|
2403
|
+
/**
|
|
2404
|
+
* Account limits
|
|
2405
|
+
* @nullable
|
|
2406
|
+
*/
|
|
2407
|
+
limit?: UserHosting200RowsItemLimit;
|
|
2408
|
+
/**
|
|
2409
|
+
* Remote limits for the account
|
|
2410
|
+
* @nullable
|
|
2411
|
+
*/
|
|
2412
|
+
limit_remote?: UserHosting200RowsItemLimitRemote;
|
|
2413
|
+
/**
|
|
2414
|
+
* Package name
|
|
2415
|
+
* @nullable
|
|
2416
|
+
*/
|
|
2417
|
+
package?: string | null;
|
|
2418
|
+
/**
|
|
2419
|
+
* Control panel type
|
|
2420
|
+
* @nullable
|
|
2421
|
+
*/
|
|
2422
|
+
panel?: string | null;
|
|
2423
|
+
/**
|
|
2424
|
+
* Active panelemail purchase on this hosting account, if any
|
|
2425
|
+
* @nullable
|
|
2426
|
+
*/
|
|
2427
|
+
panel_mail_addon?: UserHosting200RowsItemPanelMailAddon;
|
|
2428
|
+
/**
|
|
2429
|
+
* Number of sites
|
|
2430
|
+
* @nullable
|
|
2431
|
+
*/
|
|
2432
|
+
sites?: number | null;
|
|
2433
|
+
/**
|
|
2434
|
+
* Usage statistics for non-staging sites
|
|
2435
|
+
* @nullable
|
|
2436
|
+
*/
|
|
2437
|
+
used?: UserHosting200RowsItemUsed;
|
|
2438
|
+
/**
|
|
2439
|
+
* Usage statistics for staging sites
|
|
2440
|
+
* @nullable
|
|
2441
|
+
*/
|
|
2442
|
+
used_stage?: UserHosting200RowsItemUsedStage;
|
|
2443
|
+
};
|
|
2444
|
+
export declare type UserHosting200 = {
|
|
2445
|
+
/** Information for the paginated hosting accounts */
|
|
2446
|
+
rows?: UserHosting200RowsItem[];
|
|
2447
|
+
};
|
|
2161
2448
|
export declare type UserHostingParams = {
|
|
2162
2449
|
/**
|
|
2163
2450
|
* Starting page for pagination (default: 1)
|
|
@@ -2172,6 +2459,19 @@ export declare type UserHostingParams = {
|
|
|
2172
2459
|
*/
|
|
2173
2460
|
remote?: boolean;
|
|
2174
2461
|
};
|
|
2462
|
+
export declare type UserBillingAccounts502 = {
|
|
2463
|
+
error?: string;
|
|
2464
|
+
};
|
|
2465
|
+
export declare type UserBillingAccounts401 = {
|
|
2466
|
+
error?: string;
|
|
2467
|
+
};
|
|
2468
|
+
export declare type UserBillingAccounts200AccountsItem = {
|
|
2469
|
+
/** Billing account identifier */
|
|
2470
|
+
billing_account_id: number;
|
|
2471
|
+
};
|
|
2472
|
+
export declare type UserBillingAccounts200 = {
|
|
2473
|
+
accounts: UserBillingAccounts200AccountsItem[];
|
|
2474
|
+
};
|
|
2175
2475
|
export declare type SiteAddonWpsolution400 = {
|
|
2176
2476
|
error?: string;
|
|
2177
2477
|
};
|
|
@@ -2834,18 +3134,6 @@ export declare type SitesMetricDimensions200DimensionsVisitorAsnItem = {
|
|
|
2834
3134
|
dimension?: SitesMetricDimensions200DimensionsVisitorAsnItemDimension;
|
|
2835
3135
|
timestamp?: number;
|
|
2836
3136
|
};
|
|
2837
|
-
export declare type SitesMetricDimensions200Dimensions = {
|
|
2838
|
-
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
2839
|
-
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
2840
|
-
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
2841
|
-
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
2842
|
-
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
2843
|
-
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
2844
|
-
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
2845
|
-
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
2846
|
-
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
2847
|
-
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
2848
|
-
};
|
|
2849
3137
|
export declare type SitesMetricDimensions200DimensionsPageRendererItemDimension = {
|
|
2850
3138
|
[key: string]: number;
|
|
2851
3139
|
};
|
|
@@ -2888,6 +3176,18 @@ export declare type SitesMetricDimensions200DimensionsHttpHostItem = {
|
|
|
2888
3176
|
dimension?: SitesMetricDimensions200DimensionsHttpHostItemDimension;
|
|
2889
3177
|
timestamp?: number;
|
|
2890
3178
|
};
|
|
3179
|
+
export declare type SitesMetricDimensions200Dimensions = {
|
|
3180
|
+
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
3181
|
+
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
3182
|
+
http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
|
|
3183
|
+
http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
|
|
3184
|
+
page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
|
|
3185
|
+
page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
|
|
3186
|
+
visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
|
|
3187
|
+
visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
|
|
3188
|
+
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
3189
|
+
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
3190
|
+
};
|
|
2891
3191
|
export declare type SitesMetricDimensionsParams = {
|
|
2892
3192
|
start?: string;
|
|
2893
3193
|
end?: string;
|
|
@@ -3600,7 +3900,187 @@ export declare type SitesInfo200 = {
|
|
|
3600
3900
|
/** @nullable */
|
|
3601
3901
|
wp_multi_site?: SitesInfo200WpMultiSite;
|
|
3602
3902
|
};
|
|
3903
|
+
export declare type AccountPurchaseOrder404 = {
|
|
3904
|
+
/** Customer error code */
|
|
3905
|
+
error?: string;
|
|
3906
|
+
};
|
|
3907
|
+
export declare type AccountPurchaseOrder403 = {
|
|
3908
|
+
/** Customer error code */
|
|
3909
|
+
error?: string;
|
|
3910
|
+
};
|
|
3911
|
+
export declare type AccountPurchaseOrder401 = {
|
|
3912
|
+
/** Customer error code */
|
|
3913
|
+
error?: string;
|
|
3914
|
+
};
|
|
3915
|
+
export declare type AccountPurchaseOrder400 = {
|
|
3916
|
+
/** Customer error code */
|
|
3917
|
+
error?: string;
|
|
3918
|
+
};
|
|
3919
|
+
export declare type AccountPurchaseOrder200OrderStatus = typeof AccountPurchaseOrder200OrderStatus[keyof typeof AccountPurchaseOrder200OrderStatus];
|
|
3920
|
+
export declare const AccountPurchaseOrder200OrderStatus: {
|
|
3921
|
+
readonly pending: "pending";
|
|
3922
|
+
readonly completed: "completed";
|
|
3923
|
+
readonly failed: "failed";
|
|
3924
|
+
};
|
|
3925
|
+
/**
|
|
3926
|
+
* HAL hosting addon status when FG order fulfillment is completed
|
|
3927
|
+
* @nullable
|
|
3928
|
+
*/
|
|
3929
|
+
export declare type AccountPurchaseOrder200HostingStatus = typeof AccountPurchaseOrder200HostingStatus[keyof typeof AccountPurchaseOrder200HostingStatus] | null;
|
|
3930
|
+
export declare const AccountPurchaseOrder200HostingStatus: {
|
|
3931
|
+
readonly pending: "pending";
|
|
3932
|
+
readonly active: "active";
|
|
3933
|
+
readonly failed: "failed";
|
|
3934
|
+
};
|
|
3935
|
+
export declare type AccountPurchaseOrder200 = {
|
|
3936
|
+
/**
|
|
3937
|
+
* Product instance id for the provisioned hosting product (e.g. WN.HP.123456)
|
|
3938
|
+
* @nullable
|
|
3939
|
+
*/
|
|
3940
|
+
hosting_id?: string | null;
|
|
3941
|
+
/**
|
|
3942
|
+
* HAL hosting addon status when FG order fulfillment is completed
|
|
3943
|
+
* @nullable
|
|
3944
|
+
*/
|
|
3945
|
+
hosting_status?: AccountPurchaseOrder200HostingStatus;
|
|
3946
|
+
/**
|
|
3947
|
+
* Primary server IP address when the hosting addon is active
|
|
3948
|
+
* @nullable
|
|
3949
|
+
*/
|
|
3950
|
+
ip_address?: string | null;
|
|
3951
|
+
order_id?: number;
|
|
3952
|
+
order_status?: AccountPurchaseOrder200OrderStatus;
|
|
3953
|
+
product_instance_id?: string;
|
|
3954
|
+
/**
|
|
3955
|
+
* SSH command to connect (root@ for Linux, Administrator@ for Windows) when IP is available
|
|
3956
|
+
* @nullable
|
|
3957
|
+
*/
|
|
3958
|
+
ssh_command?: string | null;
|
|
3959
|
+
};
|
|
3960
|
+
export declare type AccountPurchaseHosting502 = {
|
|
3961
|
+
/** Customer error code */
|
|
3962
|
+
error?: string;
|
|
3963
|
+
};
|
|
3964
|
+
export declare type AccountPurchaseHosting404 = {
|
|
3965
|
+
/** Customer error code */
|
|
3966
|
+
error?: string;
|
|
3967
|
+
};
|
|
3968
|
+
export declare type AccountPurchaseHosting403 = {
|
|
3969
|
+
/** Customer error code */
|
|
3970
|
+
error?: string;
|
|
3971
|
+
};
|
|
3972
|
+
export declare type AccountPurchaseHosting401 = {
|
|
3973
|
+
/** Customer error code */
|
|
3974
|
+
error?: string;
|
|
3975
|
+
};
|
|
3976
|
+
export declare type AccountPurchaseHosting400 = {
|
|
3977
|
+
/** Customer error code */
|
|
3978
|
+
error?: string;
|
|
3979
|
+
};
|
|
3980
|
+
export declare type AccountPurchaseHosting200 = {
|
|
3981
|
+
order_id?: number;
|
|
3982
|
+
product_instance_id?: string;
|
|
3983
|
+
};
|
|
3984
|
+
/**
|
|
3985
|
+
* Optional image id from the hosting image catalog. The image must exist and its minimum CPU, RAM, and disk requirements must be met by the selected SKU.
|
|
3986
|
+
*/
|
|
3987
|
+
export declare type AccountPurchaseHostingBodyGenericPropertiesImageId = string | number;
|
|
3988
|
+
/**
|
|
3989
|
+
* Optional order configuration overrides
|
|
3990
|
+
* @nullable
|
|
3991
|
+
*/
|
|
3992
|
+
export declare type AccountPurchaseHostingBodyGenericProperties = {
|
|
3993
|
+
/** Optional image id from the hosting image catalog. The image must exist and its minimum CPU, RAM, and disk requirements must be met by the selected SKU. */
|
|
3994
|
+
image_id?: AccountPurchaseHostingBodyGenericPropertiesImageId;
|
|
3995
|
+
/** Friendly hosting region name (e.g. Ashburn, United States). Resolved to region_code before submit. */
|
|
3996
|
+
region?: string;
|
|
3997
|
+
/** Optional region code override (e.g. OCIIAD1) */
|
|
3998
|
+
region_code?: string;
|
|
3999
|
+
} | null;
|
|
4000
|
+
export declare type AccountPurchaseHostingBody = {
|
|
4001
|
+
/** Optional order line item description */
|
|
4002
|
+
description?: string;
|
|
4003
|
+
/**
|
|
4004
|
+
* Optional order configuration overrides
|
|
4005
|
+
* @nullable
|
|
4006
|
+
*/
|
|
4007
|
+
generic_properties?: AccountPurchaseHostingBodyGenericProperties;
|
|
4008
|
+
/** SKU from the product catalog (e.g. BH_VPS_NVME_4) */
|
|
4009
|
+
sku_id: string;
|
|
4010
|
+
/**
|
|
4011
|
+
* SSH public key to install after provisioning completes
|
|
4012
|
+
* @nullable
|
|
4013
|
+
*/
|
|
4014
|
+
ssh_pubkey?: string | null;
|
|
4015
|
+
/** Billing term quantity from catalog terms */
|
|
4016
|
+
term_quantity?: number;
|
|
4017
|
+
/** Billing term unit from catalog terms */
|
|
4018
|
+
term_unit?: number;
|
|
4019
|
+
};
|
|
4020
|
+
export declare type AccountPurchaseProducts502 = {
|
|
4021
|
+
/** Customer error code */
|
|
4022
|
+
error?: string;
|
|
4023
|
+
};
|
|
4024
|
+
export declare type AccountPurchaseProducts403 = {
|
|
4025
|
+
/** Customer error code */
|
|
4026
|
+
error?: string;
|
|
4027
|
+
};
|
|
4028
|
+
export declare type AccountPurchaseProducts401 = {
|
|
4029
|
+
/** Customer error code */
|
|
4030
|
+
error?: string;
|
|
4031
|
+
};
|
|
4032
|
+
export declare type AccountPurchaseProducts400 = {
|
|
4033
|
+
/** Customer error code */
|
|
4034
|
+
error?: string;
|
|
4035
|
+
};
|
|
4036
|
+
export declare type AccountPurchaseProducts200ProductsItemTermsItem = {
|
|
4037
|
+
base_price?: string;
|
|
4038
|
+
final_price?: string;
|
|
4039
|
+
/**
|
|
4040
|
+
* Tax on the discounted price, from live PG pricing when a billing address is on file
|
|
4041
|
+
* @nullable
|
|
4042
|
+
*/
|
|
4043
|
+
tax_amount?: string | null;
|
|
4044
|
+
term_quantity?: number;
|
|
4045
|
+
term_unit?: number;
|
|
4046
|
+
term_unit_description?: string;
|
|
4047
|
+
/**
|
|
4048
|
+
* Tax-inclusive total (discounted price + tax_amount), from live PG pricing
|
|
4049
|
+
* @nullable
|
|
4050
|
+
*/
|
|
4051
|
+
total_price?: string | null;
|
|
4052
|
+
};
|
|
4053
|
+
export declare type AccountPurchaseProducts200ProductsItem = {
|
|
4054
|
+
currency_code?: string;
|
|
4055
|
+
currency_symbol?: string;
|
|
4056
|
+
name?: string;
|
|
4057
|
+
quantity?: number;
|
|
4058
|
+
sku?: string;
|
|
4059
|
+
specs?: AccountPurchaseProducts200ProductsItemSpecs;
|
|
4060
|
+
terms?: AccountPurchaseProducts200ProductsItemTermsItem[];
|
|
4061
|
+
};
|
|
4062
|
+
export declare type AccountPurchaseProducts200 = {
|
|
4063
|
+
products?: AccountPurchaseProducts200ProductsItem[];
|
|
4064
|
+
};
|
|
4065
|
+
export declare type AccountPurchaseProducts200ProductsItemSpecs = {
|
|
4066
|
+
/** Bandwidth allocation (e.g. unmetered) */
|
|
4067
|
+
bandwidth?: string;
|
|
4068
|
+
nvme_storage_gb?: number;
|
|
4069
|
+
ram_gb?: number;
|
|
4070
|
+
ram_type?: string;
|
|
4071
|
+
vcpu_cores?: number;
|
|
4072
|
+
};
|
|
3603
4073
|
export declare type PublicRegions200RowsItem = {
|
|
4074
|
+
/**
|
|
4075
|
+
* Hosting region city
|
|
4076
|
+
* @nullable
|
|
4077
|
+
*/
|
|
4078
|
+
city?: string | null;
|
|
4079
|
+
/**
|
|
4080
|
+
* Hosting region country
|
|
4081
|
+
* @nullable
|
|
4082
|
+
*/
|
|
4083
|
+
country?: string | null;
|
|
3604
4084
|
/**
|
|
3605
4085
|
* Whether dedicated configurator is active for this region
|
|
3606
4086
|
* @nullable
|
|
@@ -3616,6 +4096,11 @@ export declare type PublicRegions200RowsItem = {
|
|
|
3616
4096
|
* @nullable
|
|
3617
4097
|
*/
|
|
3618
4098
|
description?: string | null;
|
|
4099
|
+
/**
|
|
4100
|
+
* Friendly region name for purchase (typically matches description)
|
|
4101
|
+
* @nullable
|
|
4102
|
+
*/
|
|
4103
|
+
display_name?: string | null;
|
|
3619
4104
|
/** Region ID */
|
|
3620
4105
|
id: number;
|
|
3621
4106
|
/**
|
|
@@ -3672,6 +4157,25 @@ export declare type PublicImages200RowsItemLinks = {
|
|
|
3672
4157
|
*/
|
|
3673
4158
|
forums?: string | null;
|
|
3674
4159
|
} | null;
|
|
4160
|
+
/**
|
|
4161
|
+
* Image ID
|
|
4162
|
+
*/
|
|
4163
|
+
export declare type PublicImages200RowsItemId = string | number;
|
|
4164
|
+
/**
|
|
4165
|
+
* Docker default
|
|
4166
|
+
* @nullable
|
|
4167
|
+
*/
|
|
4168
|
+
export declare type PublicImages200RowsItemDockerDefault = string | number | null;
|
|
4169
|
+
/**
|
|
4170
|
+
* Current
|
|
4171
|
+
* @nullable
|
|
4172
|
+
*/
|
|
4173
|
+
export declare type PublicImages200RowsItemCurrent = string | number | null;
|
|
4174
|
+
/**
|
|
4175
|
+
* Cpanel default
|
|
4176
|
+
* @nullable
|
|
4177
|
+
*/
|
|
4178
|
+
export declare type PublicImages200RowsItemCpanelDefault = string | number | null;
|
|
3675
4179
|
export declare type PublicImages200RowsItem = {
|
|
3676
4180
|
/**
|
|
3677
4181
|
* Whether the image supports third-party AI vendor API keys
|
|
@@ -3749,8 +4253,11 @@ export declare type PublicImages200RowsItem = {
|
|
|
3749
4253
|
* @nullable
|
|
3750
4254
|
*/
|
|
3751
4255
|
os_version?: string | null;
|
|
3752
|
-
/**
|
|
3753
|
-
|
|
4256
|
+
/**
|
|
4257
|
+
* The readme associated with the image
|
|
4258
|
+
* @nullable
|
|
4259
|
+
*/
|
|
4260
|
+
readme?: string | null;
|
|
3754
4261
|
/**
|
|
3755
4262
|
* Image Software
|
|
3756
4263
|
* @nullable
|
|
@@ -3772,35 +4279,6 @@ export declare type PublicImages200RowsItem = {
|
|
|
3772
4279
|
*/
|
|
3773
4280
|
user_image?: string | null;
|
|
3774
4281
|
};
|
|
3775
|
-
export declare type PublicImages200 = {
|
|
3776
|
-
/** Limit the number of images returned */
|
|
3777
|
-
limit?: PublicImages200Limit;
|
|
3778
|
-
/** Number of images returned */
|
|
3779
|
-
n_rows?: PublicImages200NRows;
|
|
3780
|
-
/** Page number */
|
|
3781
|
-
page?: PublicImages200Page;
|
|
3782
|
-
/** List of images */
|
|
3783
|
-
rows?: PublicImages200RowsItem[];
|
|
3784
|
-
};
|
|
3785
|
-
/**
|
|
3786
|
-
* Image ID
|
|
3787
|
-
*/
|
|
3788
|
-
export declare type PublicImages200RowsItemId = string | number;
|
|
3789
|
-
/**
|
|
3790
|
-
* Docker default
|
|
3791
|
-
* @nullable
|
|
3792
|
-
*/
|
|
3793
|
-
export declare type PublicImages200RowsItemDockerDefault = string | number | null;
|
|
3794
|
-
/**
|
|
3795
|
-
* Current
|
|
3796
|
-
* @nullable
|
|
3797
|
-
*/
|
|
3798
|
-
export declare type PublicImages200RowsItemCurrent = string | number | null;
|
|
3799
|
-
/**
|
|
3800
|
-
* Cpanel default
|
|
3801
|
-
* @nullable
|
|
3802
|
-
*/
|
|
3803
|
-
export declare type PublicImages200RowsItemCpanelDefault = string | number | null;
|
|
3804
4282
|
/**
|
|
3805
4283
|
* Page number
|
|
3806
4284
|
*/
|
|
@@ -3813,9 +4291,19 @@ export declare type PublicImages200NRows = string | number;
|
|
|
3813
4291
|
* Limit the number of images returned
|
|
3814
4292
|
*/
|
|
3815
4293
|
export declare type PublicImages200Limit = string | number;
|
|
4294
|
+
export declare type PublicImages200 = {
|
|
4295
|
+
/** Limit the number of images returned */
|
|
4296
|
+
limit?: PublicImages200Limit;
|
|
4297
|
+
/** Number of images returned */
|
|
4298
|
+
n_rows?: PublicImages200NRows;
|
|
4299
|
+
/** Page number */
|
|
4300
|
+
page?: PublicImages200Page;
|
|
4301
|
+
/** List of images */
|
|
4302
|
+
rows?: PublicImages200RowsItem[];
|
|
4303
|
+
};
|
|
3816
4304
|
export declare type PublicImagesParams = {
|
|
3817
4305
|
/**
|
|
3818
|
-
* Brand identifier
|
|
4306
|
+
* Brand identifier (e.g. bluehost).
|
|
3819
4307
|
*/
|
|
3820
4308
|
brand?: string;
|
|
3821
4309
|
/**
|
|
@@ -3833,6 +4321,17 @@ export declare type HostingVisitors200VisitorsItem = {
|
|
|
3833
4321
|
unique_visitors?: number;
|
|
3834
4322
|
visitors?: number;
|
|
3835
4323
|
};
|
|
4324
|
+
export declare type HostingVisitors200 = {
|
|
4325
|
+
daily?: HostingVisitors200Daily;
|
|
4326
|
+
is_linked_domain?: boolean;
|
|
4327
|
+
linked_domain?: string;
|
|
4328
|
+
total_bandwidth?: number;
|
|
4329
|
+
total_hits?: number;
|
|
4330
|
+
total_pages?: number;
|
|
4331
|
+
total_unique_visitors?: number;
|
|
4332
|
+
total_visitors?: number;
|
|
4333
|
+
visitors?: HostingVisitors200VisitorsItem[];
|
|
4334
|
+
};
|
|
3836
4335
|
export declare type HostingVisitors200DailyTotal = {
|
|
3837
4336
|
total_bandwidth?: number;
|
|
3838
4337
|
total_hits?: number;
|
|
@@ -3852,17 +4351,6 @@ export declare type HostingVisitors200Daily = {
|
|
|
3852
4351
|
data?: HostingVisitors200DailyDataItem[];
|
|
3853
4352
|
total?: HostingVisitors200DailyTotal;
|
|
3854
4353
|
};
|
|
3855
|
-
export declare type HostingVisitors200 = {
|
|
3856
|
-
daily?: HostingVisitors200Daily;
|
|
3857
|
-
is_linked_domain?: boolean;
|
|
3858
|
-
linked_domain?: string;
|
|
3859
|
-
total_bandwidth?: number;
|
|
3860
|
-
total_hits?: number;
|
|
3861
|
-
total_pages?: number;
|
|
3862
|
-
total_unique_visitors?: number;
|
|
3863
|
-
total_visitors?: number;
|
|
3864
|
-
visitors?: HostingVisitors200VisitorsItem[];
|
|
3865
|
-
};
|
|
3866
4354
|
export declare type HostingVisitorsSource = typeof HostingVisitorsSource[keyof typeof HostingVisitorsSource];
|
|
3867
4355
|
export declare const HostingVisitorsSource: {
|
|
3868
4356
|
readonly http: "http";
|
|
@@ -5361,6 +5849,10 @@ export declare type HostingEmailUpdateBody = {
|
|
|
5361
5849
|
/** The password for the email */
|
|
5362
5850
|
password?: string;
|
|
5363
5851
|
};
|
|
5852
|
+
export declare type HostingEmailList200 = {
|
|
5853
|
+
/** List of email resources */
|
|
5854
|
+
rows?: HostingEmailList200RowsItem[];
|
|
5855
|
+
};
|
|
5364
5856
|
/**
|
|
5365
5857
|
* List of suspensions that affect the entire user account
|
|
5366
5858
|
* @nullable
|
|
@@ -5450,10 +5942,6 @@ export declare type HostingEmailList200RowsItem = {
|
|
|
5450
5942
|
*/
|
|
5451
5943
|
utf8_folders?: boolean | null;
|
|
5452
5944
|
};
|
|
5453
|
-
export declare type HostingEmailList200 = {
|
|
5454
|
-
/** List of email resources */
|
|
5455
|
-
rows?: HostingEmailList200RowsItem[];
|
|
5456
|
-
};
|
|
5457
5945
|
export declare type HostingEmailDelete200 = {
|
|
5458
5946
|
[key: string]: unknown;
|
|
5459
5947
|
};
|
|
@@ -6463,6 +6951,28 @@ export declare type ActivityLog200 = {
|
|
|
6463
6951
|
export declare type ActivityLogParams = {
|
|
6464
6952
|
days?: number;
|
|
6465
6953
|
};
|
|
6954
|
+
export declare type HostingAccount200 = {
|
|
6955
|
+
account_id?: string;
|
|
6956
|
+
account_limits?: HostingAccount200AccountLimits;
|
|
6957
|
+
/** The timestamp that the hosting addon was created */
|
|
6958
|
+
addon_date_added?: string;
|
|
6959
|
+
advanced?: boolean;
|
|
6960
|
+
billing?: HostingAccount200Billing;
|
|
6961
|
+
brand?: string;
|
|
6962
|
+
id?: string;
|
|
6963
|
+
panel?: string;
|
|
6964
|
+
plan_key?: string;
|
|
6965
|
+
platform?: string;
|
|
6966
|
+
/** @nullable */
|
|
6967
|
+
resources?: HostingAccount200Resources;
|
|
6968
|
+
/** @nullable */
|
|
6969
|
+
server_status?: string | null;
|
|
6970
|
+
/** @nullable */
|
|
6971
|
+
ssh_hostname?: string | null;
|
|
6972
|
+
status?: string;
|
|
6973
|
+
type?: string;
|
|
6974
|
+
username?: string;
|
|
6975
|
+
};
|
|
6466
6976
|
export declare type HostingAccount200ResourcesWorkers = {
|
|
6467
6977
|
/** @nullable */
|
|
6468
6978
|
available?: number | null;
|
|
@@ -6491,19 +7001,6 @@ export declare type HostingAccount200ResourcesStorage = {
|
|
|
6491
7001
|
/** @nullable */
|
|
6492
7002
|
used?: number | null;
|
|
6493
7003
|
};
|
|
6494
|
-
/**
|
|
6495
|
-
* @nullable
|
|
6496
|
-
*/
|
|
6497
|
-
export declare type HostingAccount200Resources = {
|
|
6498
|
-
staging?: HostingAccount200ResourcesStaging;
|
|
6499
|
-
storage?: HostingAccount200ResourcesStorage;
|
|
6500
|
-
/**
|
|
6501
|
-
* Usage statistics for non-staging sites
|
|
6502
|
-
* @nullable
|
|
6503
|
-
*/
|
|
6504
|
-
used?: HostingAccount200ResourcesUsed;
|
|
6505
|
-
workers?: HostingAccount200ResourcesWorkers;
|
|
6506
|
-
} | null;
|
|
6507
7004
|
export declare type HostingAccount200ResourcesStagingWorkers = {
|
|
6508
7005
|
/** @nullable */
|
|
6509
7006
|
available?: number | null;
|
|
@@ -6525,6 +7022,19 @@ export declare type HostingAccount200ResourcesStaging = {
|
|
|
6525
7022
|
storage?: HostingAccount200ResourcesStagingStorage;
|
|
6526
7023
|
workers?: HostingAccount200ResourcesStagingWorkers;
|
|
6527
7024
|
};
|
|
7025
|
+
/**
|
|
7026
|
+
* @nullable
|
|
7027
|
+
*/
|
|
7028
|
+
export declare type HostingAccount200Resources = {
|
|
7029
|
+
staging?: HostingAccount200ResourcesStaging;
|
|
7030
|
+
storage?: HostingAccount200ResourcesStorage;
|
|
7031
|
+
/**
|
|
7032
|
+
* Usage statistics for non-staging sites
|
|
7033
|
+
* @nullable
|
|
7034
|
+
*/
|
|
7035
|
+
used?: HostingAccount200ResourcesUsed;
|
|
7036
|
+
workers?: HostingAccount200ResourcesWorkers;
|
|
7037
|
+
} | null;
|
|
6528
7038
|
export declare type HostingAccount200Billing = {
|
|
6529
7039
|
prod_code?: string;
|
|
6530
7040
|
product_name?: string;
|
|
@@ -6547,28 +7057,6 @@ export declare type HostingAccount200AccountLimits = {
|
|
|
6547
7057
|
*/
|
|
6548
7058
|
sites?: number | null;
|
|
6549
7059
|
};
|
|
6550
|
-
export declare type HostingAccount200 = {
|
|
6551
|
-
account_id?: string;
|
|
6552
|
-
account_limits?: HostingAccount200AccountLimits;
|
|
6553
|
-
/** The timestamp that the hosting addon was created */
|
|
6554
|
-
addon_date_added?: string;
|
|
6555
|
-
advanced?: boolean;
|
|
6556
|
-
billing?: HostingAccount200Billing;
|
|
6557
|
-
brand?: string;
|
|
6558
|
-
id?: string;
|
|
6559
|
-
panel?: string;
|
|
6560
|
-
plan_key?: string;
|
|
6561
|
-
platform?: string;
|
|
6562
|
-
/** @nullable */
|
|
6563
|
-
resources?: HostingAccount200Resources;
|
|
6564
|
-
/** @nullable */
|
|
6565
|
-
server_status?: string | null;
|
|
6566
|
-
/** @nullable */
|
|
6567
|
-
ssh_hostname?: string | null;
|
|
6568
|
-
status?: string;
|
|
6569
|
-
type?: string;
|
|
6570
|
-
username?: string;
|
|
6571
|
-
};
|
|
6572
7060
|
export declare type DomainZoneeditorUrl200 = {
|
|
6573
7061
|
url: string;
|
|
6574
7062
|
};
|
|
@@ -6607,6 +7095,52 @@ export declare type AccessLogsParams = {
|
|
|
6607
7095
|
*/
|
|
6608
7096
|
type?: AccessLogsType;
|
|
6609
7097
|
};
|
|
7098
|
+
export declare type DomainHealth200 = {
|
|
7099
|
+
/**
|
|
7100
|
+
* The alignment status: aligned , misaligned , partial , propagating , unknown , error
|
|
7101
|
+
* @nullable
|
|
7102
|
+
*/
|
|
7103
|
+
alignment_status?: string | null;
|
|
7104
|
+
/** @nullable */
|
|
7105
|
+
cache?: DomainHealth200Cache;
|
|
7106
|
+
/**
|
|
7107
|
+
* Per-record A/NS checks with observed layers. Empty on cache hit.
|
|
7108
|
+
* @nullable
|
|
7109
|
+
*/
|
|
7110
|
+
checks?: DomainHealth200ChecksItem[] | null;
|
|
7111
|
+
/** @nullable */
|
|
7112
|
+
context?: DomainHealth200Context;
|
|
7113
|
+
/** @nullable */
|
|
7114
|
+
execution_ms?: number | null;
|
|
7115
|
+
/** @nullable */
|
|
7116
|
+
expected_source_order?: string[] | null;
|
|
7117
|
+
/** @nullable */
|
|
7118
|
+
layers?: DomainHealth200Layers;
|
|
7119
|
+
/**
|
|
7120
|
+
* Highest-severity issue code when not aligned.
|
|
7121
|
+
* @nullable
|
|
7122
|
+
*/
|
|
7123
|
+
primary_issue_code?: string | null;
|
|
7124
|
+
/**
|
|
7125
|
+
* The schema version: 1.1
|
|
7126
|
+
* @nullable
|
|
7127
|
+
*/
|
|
7128
|
+
schema_version?: string | null;
|
|
7129
|
+
/**
|
|
7130
|
+
* Severity: critical , high , medium , low , info
|
|
7131
|
+
* @nullable
|
|
7132
|
+
*/
|
|
7133
|
+
severity?: string | null;
|
|
7134
|
+
/** @nullable */
|
|
7135
|
+
source_timings?: DomainHealth200SourceTimings;
|
|
7136
|
+
/** @nullable */
|
|
7137
|
+
sources?: DomainHealth200Sources;
|
|
7138
|
+
/**
|
|
7139
|
+
* The success status: 1 when aligned; 0 otherwise.
|
|
7140
|
+
* @nullable
|
|
7141
|
+
*/
|
|
7142
|
+
success?: number | null;
|
|
7143
|
+
};
|
|
6610
7144
|
export declare type DomainHealth200SourcesZoneXns = {
|
|
6611
7145
|
[key: string]: unknown;
|
|
6612
7146
|
};
|
|
@@ -6659,55 +7193,9 @@ export declare type DomainHealth200Context = {
|
|
|
6659
7193
|
account_id?: number;
|
|
6660
7194
|
back_reference?: string;
|
|
6661
7195
|
domain?: string;
|
|
6662
|
-
domain_id?: string;
|
|
6663
|
-
parent_zone_domain?: string;
|
|
6664
|
-
} | null;
|
|
6665
|
-
export declare type DomainHealth200 = {
|
|
6666
|
-
/**
|
|
6667
|
-
* The alignment status: aligned , misaligned , partial , propagating , unknown , error
|
|
6668
|
-
* @nullable
|
|
6669
|
-
*/
|
|
6670
|
-
alignment_status?: string | null;
|
|
6671
|
-
/** @nullable */
|
|
6672
|
-
cache?: DomainHealth200Cache;
|
|
6673
|
-
/**
|
|
6674
|
-
* Per-record A/NS checks with observed layers. Empty on cache hit.
|
|
6675
|
-
* @nullable
|
|
6676
|
-
*/
|
|
6677
|
-
checks?: DomainHealth200ChecksItem[] | null;
|
|
6678
|
-
/** @nullable */
|
|
6679
|
-
context?: DomainHealth200Context;
|
|
6680
|
-
/** @nullable */
|
|
6681
|
-
execution_ms?: number | null;
|
|
6682
|
-
/** @nullable */
|
|
6683
|
-
expected_source_order?: string[] | null;
|
|
6684
|
-
/** @nullable */
|
|
6685
|
-
layers?: DomainHealth200Layers;
|
|
6686
|
-
/**
|
|
6687
|
-
* Highest-severity issue code when not aligned.
|
|
6688
|
-
* @nullable
|
|
6689
|
-
*/
|
|
6690
|
-
primary_issue_code?: string | null;
|
|
6691
|
-
/**
|
|
6692
|
-
* The schema version: 1.1
|
|
6693
|
-
* @nullable
|
|
6694
|
-
*/
|
|
6695
|
-
schema_version?: string | null;
|
|
6696
|
-
/**
|
|
6697
|
-
* Severity: critical , high , medium , low , info
|
|
6698
|
-
* @nullable
|
|
6699
|
-
*/
|
|
6700
|
-
severity?: string | null;
|
|
6701
|
-
/** @nullable */
|
|
6702
|
-
source_timings?: DomainHealth200SourceTimings;
|
|
6703
|
-
/** @nullable */
|
|
6704
|
-
sources?: DomainHealth200Sources;
|
|
6705
|
-
/**
|
|
6706
|
-
* The success status: 1 when aligned; 0 otherwise.
|
|
6707
|
-
* @nullable
|
|
6708
|
-
*/
|
|
6709
|
-
success?: number | null;
|
|
6710
|
-
};
|
|
7196
|
+
domain_id?: string;
|
|
7197
|
+
parent_zone_domain?: string;
|
|
7198
|
+
} | null;
|
|
6711
7199
|
export declare type DomainHealth200ChecksItemObserved = {
|
|
6712
7200
|
cpanel?: string[];
|
|
6713
7201
|
hosting_zone?: string[];
|
|
@@ -7255,6 +7743,59 @@ export declare type MonarxAddonSealGenerationParams = {
|
|
|
7255
7743
|
*/
|
|
7256
7744
|
domain_name?: string;
|
|
7257
7745
|
};
|
|
7746
|
+
export declare type AddonsLlmKeysDelete200 = {
|
|
7747
|
+
[key: string]: unknown;
|
|
7748
|
+
};
|
|
7749
|
+
export declare type AddonsLlmKeysDeleteBody = {
|
|
7750
|
+
/** the name of the key to be deleted */
|
|
7751
|
+
key_name: string;
|
|
7752
|
+
};
|
|
7753
|
+
export declare type AddonsLlmKeysCreate200 = {
|
|
7754
|
+
/** URL to be used in conjunction with a key to communicate with the LLM Gateway */
|
|
7755
|
+
inference_base_url?: string;
|
|
7756
|
+
/** The key that was created */
|
|
7757
|
+
virtual_key?: string;
|
|
7758
|
+
};
|
|
7759
|
+
export declare type AddonsLlmKeysCreateBody = {
|
|
7760
|
+
/** the name of the key to be added */
|
|
7761
|
+
key_name: string;
|
|
7762
|
+
};
|
|
7763
|
+
export declare type AddonsLlmKeys200 = {
|
|
7764
|
+
/** URL to be used in conjunction with a key to communicate with the LLM Gateway */
|
|
7765
|
+
inference_base_url?: string;
|
|
7766
|
+
keys?: AddonsLlmKeyResponseModel[];
|
|
7767
|
+
/** page size */
|
|
7768
|
+
limit?: number;
|
|
7769
|
+
/** total number of pages */
|
|
7770
|
+
n_pages?: number;
|
|
7771
|
+
/** total number of keys */
|
|
7772
|
+
n_rows?: number;
|
|
7773
|
+
/** current page number */
|
|
7774
|
+
page?: number;
|
|
7775
|
+
};
|
|
7776
|
+
export declare type AddonsLlmKeysParams = {
|
|
7777
|
+
/**
|
|
7778
|
+
* How many results to limit each page of responses to
|
|
7779
|
+
*/
|
|
7780
|
+
limit?: number;
|
|
7781
|
+
/**
|
|
7782
|
+
* Which page to query results for
|
|
7783
|
+
*/
|
|
7784
|
+
page?: number;
|
|
7785
|
+
/**
|
|
7786
|
+
* The name of the specific key to query for
|
|
7787
|
+
*/
|
|
7788
|
+
key_name?: string;
|
|
7789
|
+
};
|
|
7790
|
+
export declare type AddonsLlmBalance200 = {
|
|
7791
|
+
/** Amount of credits available in the LLM account tied to the addon */
|
|
7792
|
+
credit_balance?: number;
|
|
7793
|
+
/**
|
|
7794
|
+
* Timestamp of when the credits will expire
|
|
7795
|
+
* @nullable
|
|
7796
|
+
*/
|
|
7797
|
+
credit_expires_at?: string | null;
|
|
7798
|
+
};
|
|
7258
7799
|
export declare type AddonsJetpackValidate200 = {
|
|
7259
7800
|
is_connected?: boolean;
|
|
7260
7801
|
};
|
|
@@ -7502,6 +8043,16 @@ export declare type BackupCreateOndemandV1Body = {
|
|
|
7502
8043
|
/** Snapshot date */
|
|
7503
8044
|
snapshot_date: number;
|
|
7504
8045
|
};
|
|
8046
|
+
export declare type BackupMeta200Site = {
|
|
8047
|
+
/** @nullable */
|
|
8048
|
+
cbs_backup_delete_data?: BackupMeta200SiteCbsBackupDeleteData;
|
|
8049
|
+
/** @nullable */
|
|
8050
|
+
cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
|
|
8051
|
+
/** @nullable */
|
|
8052
|
+
cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
|
|
8053
|
+
/** @nullable */
|
|
8054
|
+
restored_from_backup_id?: string | null;
|
|
8055
|
+
};
|
|
7505
8056
|
export declare type BackupMeta200 = {
|
|
7506
8057
|
account?: BackupMeta200Account;
|
|
7507
8058
|
site?: BackupMeta200Site;
|
|
@@ -7572,6 +8123,12 @@ export declare const BackupMeta200SiteCbsBackupDeleteDataPlanType: {
|
|
|
7572
8123
|
readonly free: "free";
|
|
7573
8124
|
readonly premium: "premium";
|
|
7574
8125
|
};
|
|
8126
|
+
/**
|
|
8127
|
+
* @nullable
|
|
8128
|
+
*/
|
|
8129
|
+
export declare type BackupMeta200SiteCbsBackupDeleteDataBackupsDeletionStatus = {
|
|
8130
|
+
[key: string]: unknown;
|
|
8131
|
+
} | null;
|
|
7575
8132
|
/**
|
|
7576
8133
|
* @nullable
|
|
7577
8134
|
*/
|
|
@@ -7586,22 +8143,6 @@ export declare type BackupMeta200SiteCbsBackupDeleteData = {
|
|
|
7586
8143
|
*/
|
|
7587
8144
|
plan_type?: BackupMeta200SiteCbsBackupDeleteDataPlanType;
|
|
7588
8145
|
} | null;
|
|
7589
|
-
export declare type BackupMeta200Site = {
|
|
7590
|
-
/** @nullable */
|
|
7591
|
-
cbs_backup_delete_data?: BackupMeta200SiteCbsBackupDeleteData;
|
|
7592
|
-
/** @nullable */
|
|
7593
|
-
cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
|
|
7594
|
-
/** @nullable */
|
|
7595
|
-
cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
|
|
7596
|
-
/** @nullable */
|
|
7597
|
-
restored_from_backup_id?: string | null;
|
|
7598
|
-
};
|
|
7599
|
-
/**
|
|
7600
|
-
* @nullable
|
|
7601
|
-
*/
|
|
7602
|
-
export declare type BackupMeta200SiteCbsBackupDeleteDataBackupsDeletionStatus = {
|
|
7603
|
-
[key: string]: unknown;
|
|
7604
|
-
} | null;
|
|
7605
8146
|
/**
|
|
7606
8147
|
* Backup plan type for the current account event processing context.
|
|
7607
8148
|
* @nullable
|
|
@@ -8025,12 +8566,6 @@ export declare type CodeguardBackupCreateBody = {
|
|
|
8025
8566
|
/** The id of the website the given database is associated with. */
|
|
8026
8567
|
website_id?: number;
|
|
8027
8568
|
};
|
|
8028
|
-
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
8029
|
-
commit_id?: string;
|
|
8030
|
-
event_time?: string;
|
|
8031
|
-
id?: number;
|
|
8032
|
-
recommended?: boolean;
|
|
8033
|
-
};
|
|
8034
8569
|
export declare type CodeguardBackupList200BackupsItem = {
|
|
8035
8570
|
database_backups?: CodeguardBackupList200BackupsItemDatabaseBackupsItem[];
|
|
8036
8571
|
event_time?: string;
|
|
@@ -8039,9 +8574,46 @@ export declare type CodeguardBackupList200BackupsItem = {
|
|
|
8039
8574
|
export declare type CodeguardBackupList200 = {
|
|
8040
8575
|
backups?: CodeguardBackupList200BackupsItem[];
|
|
8041
8576
|
};
|
|
8577
|
+
export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
|
|
8578
|
+
commit_id?: string;
|
|
8579
|
+
event_time?: string;
|
|
8580
|
+
id?: number;
|
|
8581
|
+
recommended?: boolean;
|
|
8582
|
+
};
|
|
8042
8583
|
export declare type CodeguardBackupListParams = {
|
|
8043
8584
|
website_id: number;
|
|
8044
8585
|
};
|
|
8586
|
+
export declare type AccountAddonList200 = {
|
|
8587
|
+
addons?: AccountAddonResponseModel[];
|
|
8588
|
+
/** page size */
|
|
8589
|
+
limit?: number;
|
|
8590
|
+
/** total number of keys */
|
|
8591
|
+
n_rows?: number;
|
|
8592
|
+
/** current page number */
|
|
8593
|
+
page?: number;
|
|
8594
|
+
};
|
|
8595
|
+
export declare type AccountAddonListParams = {
|
|
8596
|
+
/**
|
|
8597
|
+
* How many results to limit each page of responses to
|
|
8598
|
+
*/
|
|
8599
|
+
limit?: number;
|
|
8600
|
+
/**
|
|
8601
|
+
* Which page to query results for
|
|
8602
|
+
*/
|
|
8603
|
+
page?: number;
|
|
8604
|
+
/**
|
|
8605
|
+
* Flag to query only for tenant-level addons, disregarding hosting-level addons
|
|
8606
|
+
*/
|
|
8607
|
+
tenant_only?: boolean;
|
|
8608
|
+
/**
|
|
8609
|
+
* A list of types to query for - e.g. llm
|
|
8610
|
+
*/
|
|
8611
|
+
type?: string[];
|
|
8612
|
+
/**
|
|
8613
|
+
* A list of subtypes to query for - e.g. credits
|
|
8614
|
+
*/
|
|
8615
|
+
subtype?: string[];
|
|
8616
|
+
};
|
|
8045
8617
|
export declare type AccountPublicKeyDelete404 = {
|
|
8046
8618
|
error?: string;
|
|
8047
8619
|
};
|
|
@@ -8121,32 +8693,47 @@ export declare type AccountPublicKeys200 = {
|
|
|
8121
8693
|
public_keys?: AccountPublicKeys200PublicKeysItem[];
|
|
8122
8694
|
};
|
|
8123
8695
|
export declare type AccountHostingList200AccountsItem = {
|
|
8124
|
-
/**
|
|
8696
|
+
/** Account identifier (tenant reference) */
|
|
8125
8697
|
account_id?: string;
|
|
8698
|
+
/**
|
|
8699
|
+
* Billing account identifier parsed from account_id
|
|
8700
|
+
* @nullable
|
|
8701
|
+
*/
|
|
8702
|
+
billing_account_id?: number | null;
|
|
8126
8703
|
current_sites?: number;
|
|
8127
8704
|
feature_set?: string;
|
|
8128
8705
|
/**
|
|
8129
|
-
* Status of the
|
|
8706
|
+
* Status of the hosting addon on this account
|
|
8130
8707
|
* @nullable
|
|
8131
8708
|
*/
|
|
8132
8709
|
hosting_addon_status?: string | null;
|
|
8133
|
-
/**
|
|
8710
|
+
/** Hosting resource identifier */
|
|
8134
8711
|
hosting_id?: string;
|
|
8135
8712
|
max_sites?: string;
|
|
8136
8713
|
/**
|
|
8137
|
-
*
|
|
8714
|
+
* Parent hosting identifier for atomic accounts, account id for non-atomic accounts
|
|
8138
8715
|
* @nullable
|
|
8139
8716
|
*/
|
|
8140
8717
|
parent_id?: string | null;
|
|
8141
8718
|
platform?: string;
|
|
8142
8719
|
/** Returns type of the platform the hosting account is on */
|
|
8143
8720
|
platform_type?: string;
|
|
8144
|
-
/**
|
|
8721
|
+
/** Product instance identifier */
|
|
8145
8722
|
prod_inst_id?: string;
|
|
8146
8723
|
/** Returns preferred Data center location for their hosting plan */
|
|
8147
8724
|
region_desc?: string;
|
|
8148
8725
|
/** Returns type of accounts where the hosting plan's data center is located */
|
|
8149
8726
|
region_type?: string;
|
|
8727
|
+
/**
|
|
8728
|
+
* Primary server IP address when available
|
|
8729
|
+
* @nullable
|
|
8730
|
+
*/
|
|
8731
|
+
server_ip?: string | null;
|
|
8732
|
+
/**
|
|
8733
|
+
* Returns status of the server the hosting account is installed on
|
|
8734
|
+
* @nullable
|
|
8735
|
+
*/
|
|
8736
|
+
server_status?: string | null;
|
|
8150
8737
|
/** Returns type of server the hosting account is installed on */
|
|
8151
8738
|
server_type?: string;
|
|
8152
8739
|
status?: string;
|
|
@@ -8235,6 +8822,73 @@ export declare type AccountFeatures200RowsItemLimit = {
|
|
|
8235
8822
|
*/
|
|
8236
8823
|
workers?: number | null;
|
|
8237
8824
|
} | null;
|
|
8825
|
+
/**
|
|
8826
|
+
* Feature details from HAL account_feature_info_list
|
|
8827
|
+
*/
|
|
8828
|
+
export declare type AccountFeatures200RowsItem = {
|
|
8829
|
+
/**
|
|
8830
|
+
* Product auto-renew flag
|
|
8831
|
+
* @nullable
|
|
8832
|
+
*/
|
|
8833
|
+
autoRenewFlag?: boolean | null;
|
|
8834
|
+
/** HAL Account back_reference, used to link to the product instance */
|
|
8835
|
+
back_reference?: string;
|
|
8836
|
+
/**
|
|
8837
|
+
* Product expiration date
|
|
8838
|
+
* @nullable
|
|
8839
|
+
*/
|
|
8840
|
+
expirationDate?: string | null;
|
|
8841
|
+
/** Feature set name ex: hosting_40s */
|
|
8842
|
+
feature_set?: string;
|
|
8843
|
+
/** Additional information about the account */
|
|
8844
|
+
info?: AccountFeatures200RowsItemInfo;
|
|
8845
|
+
/**
|
|
8846
|
+
* Account limits
|
|
8847
|
+
* @nullable
|
|
8848
|
+
*/
|
|
8849
|
+
limit?: AccountFeatures200RowsItemLimit;
|
|
8850
|
+
/**
|
|
8851
|
+
* Remote limits for the account
|
|
8852
|
+
* @nullable
|
|
8853
|
+
*/
|
|
8854
|
+
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
8855
|
+
/**
|
|
8856
|
+
* Package name
|
|
8857
|
+
* @nullable
|
|
8858
|
+
*/
|
|
8859
|
+
package?: string | null;
|
|
8860
|
+
/**
|
|
8861
|
+
* Control panel type
|
|
8862
|
+
* @nullable
|
|
8863
|
+
*/
|
|
8864
|
+
panel?: string | null;
|
|
8865
|
+
/**
|
|
8866
|
+
* Product code
|
|
8867
|
+
* @nullable
|
|
8868
|
+
*/
|
|
8869
|
+
prodCode?: string | null;
|
|
8870
|
+
/**
|
|
8871
|
+
* Product name
|
|
8872
|
+
* @nullable
|
|
8873
|
+
*/
|
|
8874
|
+
prodName?: string | null;
|
|
8875
|
+
/**
|
|
8876
|
+
* Number of sites
|
|
8877
|
+
* @nullable
|
|
8878
|
+
*/
|
|
8879
|
+
sites?: number | null;
|
|
8880
|
+
/**
|
|
8881
|
+
* Usage statistics
|
|
8882
|
+
* @nullable
|
|
8883
|
+
*/
|
|
8884
|
+
used?: AccountFeatures200RowsItemUsed;
|
|
8885
|
+
};
|
|
8886
|
+
export declare type AccountFeatures200 = {
|
|
8887
|
+
/** Feature information for the paginated product instances */
|
|
8888
|
+
rows?: AccountFeatures200RowsItem[];
|
|
8889
|
+
/** Total number of product instance IDs available to that account */
|
|
8890
|
+
total_count?: number;
|
|
8891
|
+
};
|
|
8238
8892
|
/**
|
|
8239
8893
|
* Region information for the account
|
|
8240
8894
|
* @nullable
|
|
@@ -8371,73 +9025,6 @@ export declare type AccountFeatures200RowsItemInfo = {
|
|
|
8371
9025
|
*/
|
|
8372
9026
|
username?: string | null;
|
|
8373
9027
|
};
|
|
8374
|
-
/**
|
|
8375
|
-
* Feature details from HAL account_feature_info_list
|
|
8376
|
-
*/
|
|
8377
|
-
export declare type AccountFeatures200RowsItem = {
|
|
8378
|
-
/**
|
|
8379
|
-
* Product auto-renew flag
|
|
8380
|
-
* @nullable
|
|
8381
|
-
*/
|
|
8382
|
-
autoRenewFlag?: boolean | null;
|
|
8383
|
-
/** HAL Account back_reference, used to link to the product instance */
|
|
8384
|
-
back_reference?: string;
|
|
8385
|
-
/**
|
|
8386
|
-
* Product expiration date
|
|
8387
|
-
* @nullable
|
|
8388
|
-
*/
|
|
8389
|
-
expirationDate?: string | null;
|
|
8390
|
-
/** Feature set name ex: hosting_40s */
|
|
8391
|
-
feature_set?: string;
|
|
8392
|
-
/** Additional information about the account */
|
|
8393
|
-
info?: AccountFeatures200RowsItemInfo;
|
|
8394
|
-
/**
|
|
8395
|
-
* Account limits
|
|
8396
|
-
* @nullable
|
|
8397
|
-
*/
|
|
8398
|
-
limit?: AccountFeatures200RowsItemLimit;
|
|
8399
|
-
/**
|
|
8400
|
-
* Remote limits for the account
|
|
8401
|
-
* @nullable
|
|
8402
|
-
*/
|
|
8403
|
-
limit_remote?: AccountFeatures200RowsItemLimitRemote;
|
|
8404
|
-
/**
|
|
8405
|
-
* Package name
|
|
8406
|
-
* @nullable
|
|
8407
|
-
*/
|
|
8408
|
-
package?: string | null;
|
|
8409
|
-
/**
|
|
8410
|
-
* Control panel type
|
|
8411
|
-
* @nullable
|
|
8412
|
-
*/
|
|
8413
|
-
panel?: string | null;
|
|
8414
|
-
/**
|
|
8415
|
-
* Product code
|
|
8416
|
-
* @nullable
|
|
8417
|
-
*/
|
|
8418
|
-
prodCode?: string | null;
|
|
8419
|
-
/**
|
|
8420
|
-
* Product name
|
|
8421
|
-
* @nullable
|
|
8422
|
-
*/
|
|
8423
|
-
prodName?: string | null;
|
|
8424
|
-
/**
|
|
8425
|
-
* Number of sites
|
|
8426
|
-
* @nullable
|
|
8427
|
-
*/
|
|
8428
|
-
sites?: number | null;
|
|
8429
|
-
/**
|
|
8430
|
-
* Usage statistics
|
|
8431
|
-
* @nullable
|
|
8432
|
-
*/
|
|
8433
|
-
used?: AccountFeatures200RowsItemUsed;
|
|
8434
|
-
};
|
|
8435
|
-
export declare type AccountFeatures200 = {
|
|
8436
|
-
/** Feature information for the paginated product instances */
|
|
8437
|
-
rows?: AccountFeatures200RowsItem[];
|
|
8438
|
-
/** Total number of product instance IDs available to that account */
|
|
8439
|
-
total_count?: number;
|
|
8440
|
-
};
|
|
8441
9028
|
export declare type AccountFeaturesParams = {
|
|
8442
9029
|
/**
|
|
8443
9030
|
* Starting index for pagination (default: 0)
|
|
@@ -8500,6 +9087,25 @@ export declare type AccountEventListParams = {
|
|
|
8500
9087
|
*/
|
|
8501
9088
|
date_last?: string;
|
|
8502
9089
|
};
|
|
9090
|
+
export interface AccountAddonResponseModel {
|
|
9091
|
+
/**
|
|
9092
|
+
* HAL addon back reference
|
|
9093
|
+
* @nullable
|
|
9094
|
+
*/
|
|
9095
|
+
back_reference?: string | null;
|
|
9096
|
+
/** Timestamp of when the addon was created */
|
|
9097
|
+
date_added?: string;
|
|
9098
|
+
/** HAL addon ID */
|
|
9099
|
+
id?: number;
|
|
9100
|
+
/** HAL addon status */
|
|
9101
|
+
status?: string;
|
|
9102
|
+
/** HAL addon subtype */
|
|
9103
|
+
subtype?: string;
|
|
9104
|
+
/** HAL tenant ID */
|
|
9105
|
+
tenant_id?: number;
|
|
9106
|
+
/** HAL addon type */
|
|
9107
|
+
type?: string;
|
|
9108
|
+
}
|
|
8503
9109
|
export interface AddonWorkflowListItem {
|
|
8504
9110
|
/** Whether the workflow has completed all stages */
|
|
8505
9111
|
is_completed?: boolean;
|
|
@@ -8557,6 +9163,19 @@ export interface BackupNotificationsEmail {
|
|
|
8557
9163
|
/** Notify on successful backups */
|
|
8558
9164
|
successful_backups: BackupNotificationsEmailSuccessfulBackups;
|
|
8559
9165
|
}
|
|
9166
|
+
export interface AddonsLlmKeyResponseModel {
|
|
9167
|
+
/** Timestamp of when the key was created */
|
|
9168
|
+
created_at?: string;
|
|
9169
|
+
/** The masked representation of the key */
|
|
9170
|
+
key_alias?: string;
|
|
9171
|
+
/** The name of the key */
|
|
9172
|
+
key_name?: string;
|
|
9173
|
+
/**
|
|
9174
|
+
* Timestamp of when the key was last used
|
|
9175
|
+
* @nullable
|
|
9176
|
+
*/
|
|
9177
|
+
last_used_at?: string | null;
|
|
9178
|
+
}
|
|
8560
9179
|
/**
|
|
8561
9180
|
* Visual severity level used by Account Manager to style the banner.
|
|
8562
9181
|
*/
|