@newfold/huapi-js 2.2026.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.
@@ -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.2026.0
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;
@@ -430,12 +430,6 @@ export declare type SiteMalwareStatusV2200 = {
430
430
  */
431
431
  scanner_state?: string | null;
432
432
  };
433
- export declare type SitesDomainsV2200 = {
434
- domains: SitesDomainsV2200DomainsItem[];
435
- limit?: number;
436
- page?: number;
437
- total?: number;
438
- };
439
433
  /**
440
434
  * Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
441
435
  * @nullable
@@ -572,9 +566,26 @@ export declare type SitesDomainsV2200DomainsItem = {
572
566
  */
573
567
  used_entri?: number | null;
574
568
  };
569
+ export declare type SitesDomainsV2200 = {
570
+ domains: SitesDomainsV2200DomainsItem[];
571
+ limit?: number;
572
+ page?: number;
573
+ total?: number;
574
+ };
575
575
  export declare type SitesDomainsV2Params = {
576
576
  scan?: boolean;
577
577
  };
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
+ };
578
589
  /**
579
590
  * @nullable
580
591
  */
@@ -602,6 +613,63 @@ export declare type SitesListV2200ItemsItemStaging = {
602
613
  /** A list of staging sites of the current site */
603
614
  sites?: number[];
604
615
  } | null;
616
+ export declare type SitesListV2200ItemsItemResourcesStorage = {
617
+ /** @nullable */
618
+ available?: number | null;
619
+ /** @nullable */
620
+ total?: number | null;
621
+ unit?: string;
622
+ /** @nullable */
623
+ used?: number | null;
624
+ };
625
+ export declare type SitesListV2200ItemsItemResources = {
626
+ storage?: SitesListV2200ItemsItemResourcesStorage;
627
+ /** @nullable */
628
+ workers?: number | null;
629
+ };
630
+ /**
631
+ * @nullable
632
+ */
633
+ export declare type SitesListV2200ItemsItemPendingUrlData = {
634
+ /**
635
+ * The root domain name
636
+ * @nullable
637
+ */
638
+ base_domain?: string | null;
639
+ /**
640
+ * The Fully Qualified Domain Name (FQDN)
641
+ * @nullable
642
+ */
643
+ domain?: string | null;
644
+ /**
645
+ * The current pending_url's HAL Domain ID
646
+ * @nullable
647
+ */
648
+ domain_id?: number | null;
649
+ /** @nullable */
650
+ error?: string | null;
651
+ /** Flag indicating whether the pending_url is temporary or not */
652
+ is_temp?: boolean;
653
+ /**
654
+ * Flag indicating whether the url_sync job has run out of attempts
655
+ * @nullable
656
+ */
657
+ job_failed?: boolean | null;
658
+ /** @nullable */
659
+ stage?: string | null;
660
+ /**
661
+ * Timestamp for when we will update the WP url, regardless of active sessions
662
+ * @nullable
663
+ */
664
+ wp_session?: string | null;
665
+ } | null;
666
+ /**
667
+ * Job ids for the site
668
+ * @nullable
669
+ */
670
+ export declare type SitesListV2200ItemsItemJobs = {
671
+ [key: string]: unknown;
672
+ } | null;
605
673
  export declare type SitesListV2200ItemsItem = {
606
674
  /** @nullable */
607
675
  account_back_ref?: string | null;
@@ -680,74 +748,182 @@ export declare type SitesListV2200ItemsItem = {
680
748
  */
681
749
  version_ptr?: string | null;
682
750
  };
683
- export declare type SitesListV2200 = {
684
- items?: SitesListV2200ItemsItem[];
685
- /** page size */
686
- limit?: number;
687
- /** current page number */
688
- page?: number;
689
- /** total number of pages */
690
- pages?: number;
691
- /** total number of sites returned */
692
- total?: number;
693
- };
694
- export declare type SitesListV2200ItemsItemResourcesStorage = {
695
- /** @nullable */
696
- available?: number | null;
697
- /** @nullable */
698
- total?: number | null;
699
- unit?: string;
700
- /** @nullable */
701
- used?: number | null;
702
- };
703
- export declare type SitesListV2200ItemsItemResources = {
704
- storage?: SitesListV2200ItemsItemResourcesStorage;
705
- /** @nullable */
706
- workers?: number | null;
707
- };
708
751
  /**
752
+ * User image
709
753
  * @nullable
710
754
  */
711
- export declare type SitesListV2200ItemsItemPendingUrlData = {
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 = {
712
766
  /**
713
- * The root domain name
767
+ * Community URL
714
768
  * @nullable
715
769
  */
716
- base_domain?: string | null;
770
+ community?: string | null;
717
771
  /**
718
- * The Fully Qualified Domain Name (FQDN)
772
+ * Documentation URL
719
773
  * @nullable
720
774
  */
721
- domain?: string | null;
775
+ doc?: string | null;
722
776
  /**
723
- * The current pending_url's HAL Domain ID
777
+ * Forums URL
724
778
  * @nullable
725
779
  */
726
- domain_id?: number | null;
727
- /** @nullable */
728
- error?: string | null;
729
- /** Flag indicating whether the pending_url is temporary or not */
730
- is_temp?: boolean;
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 = {
731
802
  /**
732
- * Flag indicating whether the url_sync job has run out of attempts
803
+ * Application name
733
804
  * @nullable
734
805
  */
735
- job_failed?: boolean | null;
736
- /** @nullable */
737
- stage?: string | null;
806
+ app?: string | null;
738
807
  /**
739
- * Timestamp for when we will update the WP url, regardless of active sessions
808
+ * Architecture name
740
809
  * @nullable
741
810
  */
742
- wp_session?: string | null;
743
- } | null;
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
+ };
744
899
  /**
745
- * Job ids for the site
746
- * @nullable
900
+ * Page number
747
901
  */
748
- export declare type SitesListV2200ItemsItemJobs = {
749
- [key: string]: unknown;
750
- } | null;
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;
@@ -1119,6 +1295,12 @@ export declare type HostingDomainsUnassignV2Body = {
1119
1295
  /** The site id to be unassigned */
1120
1296
  site_id: number;
1121
1297
  };
1298
+ export declare type HostingDomainsV2200 = {
1299
+ domains: HostingDomainsV2200DomainsItem[];
1300
+ limit?: number;
1301
+ page?: number;
1302
+ total?: number;
1303
+ };
1122
1304
  /**
1123
1305
  * Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
1124
1306
  * @nullable
@@ -1255,12 +1437,6 @@ export declare type HostingDomainsV2200DomainsItem = {
1255
1437
  */
1256
1438
  used_entri?: number | null;
1257
1439
  };
1258
- export declare type HostingDomainsV2200 = {
1259
- domains: HostingDomainsV2200DomainsItem[];
1260
- limit?: number;
1261
- page?: number;
1262
- total?: number;
1263
- };
1264
1440
  export declare type HostingDomainsV2TypesItem = typeof HostingDomainsV2TypesItem[keyof typeof HostingDomainsV2TypesItem];
1265
1441
  export declare const HostingDomainsV2TypesItem: {
1266
1442
  readonly addon: "addon";
@@ -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;
@@ -1502,12 +1784,6 @@ export declare type UserSpamexperts200RowsItem = {
1502
1784
  export declare type UserSpamexperts200 = {
1503
1785
  rows: UserSpamexperts200RowsItem[];
1504
1786
  };
1505
- export declare type UserProservices200 = {
1506
- /** Pro-services products from FG */
1507
- products?: UserProservices200ProductsItem[];
1508
- /** Number of pro-services products returned */
1509
- total?: number;
1510
- };
1511
1787
  export declare type UserProservices200ProductsItemProductProfileOptionsItem = {
1512
1788
  /** @nullable */
1513
1789
  profile_option?: number | null;
@@ -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
@@ -1881,74 +2159,6 @@ export declare type UserHosting200RowsItemBilling = {
1881
2159
  */
1882
2160
  prod_name?: string | null;
1883
2161
  } | 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;
1897
- /**
1898
- * Capability sites associated with the account
1899
- * @nullable
1900
- */
1901
- capability_sites?: string | null;
1902
- /**
1903
- * Feature set name ex: hosting_40s
1904
- * @nullable
1905
- */
1906
- feature_set?: string | null;
1907
- /** Whether the product associated with this hosting account has panel mail (True) or not (False) */
1908
- has_panel_mail?: boolean;
1909
- /** Whether the product associated with this hosting account can be upgraded (True) or not (False) */
1910
- is_upgradeable?: boolean;
1911
- /**
1912
- * Account limits
1913
- * @nullable
1914
- */
1915
- limit?: UserHosting200RowsItemLimit;
1916
- /**
1917
- * Remote limits for the account
1918
- * @nullable
1919
- */
1920
- limit_remote?: UserHosting200RowsItemLimitRemote;
1921
- /**
1922
- * Package name
1923
- * @nullable
1924
- */
1925
- package?: string | null;
1926
- /**
1927
- * Control panel type
1928
- * @nullable
1929
- */
1930
- panel?: string | null;
1931
- /**
1932
- * Active panelemail purchase on this hosting account, if any
1933
- * @nullable
1934
- */
1935
- panel_mail_addon?: UserHosting200RowsItemPanelMailAddon;
1936
- /**
1937
- * Number of sites
1938
- * @nullable
1939
- */
1940
- sites?: number | null;
1941
- /**
1942
- * Usage statistics for non-staging sites
1943
- * @nullable
1944
- */
1945
- used?: UserHosting200RowsItemUsed;
1946
- /**
1947
- * Usage statistics for staging sites
1948
- * @nullable
1949
- */
1950
- used_stage?: UserHosting200RowsItemUsedStage;
1951
- };
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;
@@ -3324,10 +3624,6 @@ export declare type SitesAtomicMetrics200Views = {
3324
3624
  last_n_days?: SitesAtomicMetrics200ViewsLastNDaysItem[];
3325
3625
  total_hits?: number;
3326
3626
  };
3327
- export declare type SitesAtomicMetrics200 = {
3328
- raw?: SitesAtomicMetrics200Raw;
3329
- views?: SitesAtomicMetrics200Views;
3330
- };
3331
3627
  export declare type SitesAtomicMetrics200RawPeriodsItemDimension = {
3332
3628
  [key: string]: string | number | number;
3333
3629
  };
@@ -3345,6 +3641,10 @@ export declare type SitesAtomicMetrics200Raw = {
3345
3641
  periods?: SitesAtomicMetrics200RawPeriodsItem[];
3346
3642
  resolution?: number;
3347
3643
  };
3644
+ export declare type SitesAtomicMetrics200 = {
3645
+ raw?: SitesAtomicMetrics200Raw;
3646
+ views?: SitesAtomicMetrics200Views;
3647
+ };
3348
3648
  export declare type SitesAtomicMetricsParams = {
3349
3649
  metric?: string[];
3350
3650
  dimension?: 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
  /**
@@ -3651,16 +4136,6 @@ export declare type PublicRegions200 = {
3651
4136
  /** List of regions */
3652
4137
  rows?: PublicRegions200RowsItem[];
3653
4138
  };
3654
- export declare type PublicImages200 = {
3655
- /** Limit the number of images returned */
3656
- limit?: PublicImages200Limit;
3657
- /** Number of images returned */
3658
- n_rows?: PublicImages200NRows;
3659
- /** Page number */
3660
- page?: PublicImages200Page;
3661
- /** List of images */
3662
- rows?: PublicImages200RowsItem[];
3663
- };
3664
4139
  /**
3665
4140
  * Links
3666
4141
  * @nullable
@@ -3778,8 +4253,11 @@ export declare type PublicImages200RowsItem = {
3778
4253
  * @nullable
3779
4254
  */
3780
4255
  os_version?: string | null;
3781
- /** The readme associated with the image */
3782
- readme?: string;
4256
+ /**
4257
+ * The readme associated with the image
4258
+ * @nullable
4259
+ */
4260
+ readme?: string | null;
3783
4261
  /**
3784
4262
  * Image Software
3785
4263
  * @nullable
@@ -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 for HAL admin calls.
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";
@@ -4178,6 +4666,9 @@ export declare type HostingRedirects200Item = {
4178
4666
  url?: string;
4179
4667
  wildcard?: boolean;
4180
4668
  };
4669
+ export declare type ProductLicenseDetails200 = {
4670
+ wpsolution?: ProductLicenseDetails200Wpsolution;
4671
+ };
4181
4672
  export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
4182
4673
  expirationDate?: string;
4183
4674
  prodInstId?: string;
@@ -4191,9 +4682,6 @@ export declare type ProductLicenseDetails200Wpsolution = {
4191
4682
  creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
4192
4683
  total?: number;
4193
4684
  };
4194
- export declare type ProductLicenseDetails200 = {
4195
- wpsolution?: ProductLicenseDetails200Wpsolution;
4196
- };
4197
4685
  export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
4198
4686
  export declare const ProductLicenseDetailsProductName: {
4199
4687
  readonly wpsolution: "wpsolution";
@@ -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
  };
@@ -6513,19 +7001,6 @@ export declare type HostingAccount200ResourcesStorage = {
6513
7001
  /** @nullable */
6514
7002
  used?: number | null;
6515
7003
  };
6516
- /**
6517
- * @nullable
6518
- */
6519
- export declare type HostingAccount200Resources = {
6520
- staging?: HostingAccount200ResourcesStaging;
6521
- storage?: HostingAccount200ResourcesStorage;
6522
- /**
6523
- * Usage statistics for non-staging sites
6524
- * @nullable
6525
- */
6526
- used?: HostingAccount200ResourcesUsed;
6527
- workers?: HostingAccount200ResourcesWorkers;
6528
- } | null;
6529
7004
  export declare type HostingAccount200ResourcesStagingWorkers = {
6530
7005
  /** @nullable */
6531
7006
  available?: number | null;
@@ -6547,6 +7022,19 @@ export declare type HostingAccount200ResourcesStaging = {
6547
7022
  storage?: HostingAccount200ResourcesStagingStorage;
6548
7023
  workers?: HostingAccount200ResourcesStagingWorkers;
6549
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;
6550
7038
  export declare type HostingAccount200Billing = {
6551
7039
  prod_code?: string;
6552
7040
  product_name?: string;
@@ -6603,9 +7091,55 @@ export declare const AccessLogsType: {
6603
7091
  };
6604
7092
  export declare type AccessLogsParams = {
6605
7093
  /**
6606
- * Access logs type
7094
+ * Access logs type
7095
+ */
7096
+ type?: AccessLogsType;
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
6607
7141
  */
6608
- type?: AccessLogsType;
7142
+ success?: number | null;
6609
7143
  };
6610
7144
  export declare type DomainHealth200SourcesZoneXns = {
6611
7145
  [key: string]: unknown;
@@ -6695,52 +7229,6 @@ export declare type DomainHealth200Cache = {
6695
7229
  hit?: number;
6696
7230
  stale?: number;
6697
7231
  } | null;
6698
- export declare type DomainHealth200 = {
6699
- /**
6700
- * The alignment status: aligned , misaligned , partial , propagating , unknown , error
6701
- * @nullable
6702
- */
6703
- alignment_status?: string | null;
6704
- /** @nullable */
6705
- cache?: DomainHealth200Cache;
6706
- /**
6707
- * Per-record A/NS checks with observed layers. Empty on cache hit.
6708
- * @nullable
6709
- */
6710
- checks?: DomainHealth200ChecksItem[] | null;
6711
- /** @nullable */
6712
- context?: DomainHealth200Context;
6713
- /** @nullable */
6714
- execution_ms?: number | null;
6715
- /** @nullable */
6716
- expected_source_order?: string[] | null;
6717
- /** @nullable */
6718
- layers?: DomainHealth200Layers;
6719
- /**
6720
- * Highest-severity issue code when not aligned.
6721
- * @nullable
6722
- */
6723
- primary_issue_code?: string | null;
6724
- /**
6725
- * The schema version: 1.1
6726
- * @nullable
6727
- */
6728
- schema_version?: string | null;
6729
- /**
6730
- * Severity: critical , high , medium , low , info
6731
- * @nullable
6732
- */
6733
- severity?: string | null;
6734
- /** @nullable */
6735
- source_timings?: DomainHealth200SourceTimings;
6736
- /** @nullable */
6737
- sources?: DomainHealth200Sources;
6738
- /**
6739
- * The success status: 1 when aligned; 0 otherwise.
6740
- * @nullable
6741
- */
6742
- success?: number | null;
6743
- };
6744
7232
  export declare type DomainHealthCacheMode = typeof DomainHealthCacheMode[keyof typeof DomainHealthCacheMode];
6745
7233
  export declare const DomainHealthCacheMode: {
6746
7234
  readonly auto: "auto";
@@ -7555,6 +8043,20 @@ export declare type BackupCreateOndemandV1Body = {
7555
8043
  /** Snapshot date */
7556
8044
  snapshot_date: number;
7557
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
+ };
8056
+ export declare type BackupMeta200 = {
8057
+ account?: BackupMeta200Account;
8058
+ site?: BackupMeta200Site;
8059
+ };
7558
8060
  /**
7559
8061
  * Backup plan type associated with restore consent info.
7560
8062
  * @nullable
@@ -7584,20 +8086,6 @@ export declare type BackupMeta200SiteCbsRestoreConsentInfo = {
7584
8086
  /** @nullable */
7585
8087
  restore_status?: string | null;
7586
8088
  } | null;
7587
- export declare type BackupMeta200Site = {
7588
- /** @nullable */
7589
- cbs_backup_delete_data?: BackupMeta200SiteCbsBackupDeleteData;
7590
- /** @nullable */
7591
- cbs_downloadables?: BackupMeta200SiteCbsDownloadablesItem[] | null;
7592
- /** @nullable */
7593
- cbs_restore_consent_info?: BackupMeta200SiteCbsRestoreConsentInfo;
7594
- /** @nullable */
7595
- restored_from_backup_id?: string | null;
7596
- };
7597
- export declare type BackupMeta200 = {
7598
- account?: BackupMeta200Account;
7599
- site?: BackupMeta200Site;
7600
- };
7601
8089
  /**
7602
8090
  * Backup plan type for the downloadable item.
7603
8091
  * @nullable
@@ -7655,14 +8143,6 @@ export declare type BackupMeta200SiteCbsBackupDeleteData = {
7655
8143
  */
7656
8144
  plan_type?: BackupMeta200SiteCbsBackupDeleteDataPlanType;
7657
8145
  } | null;
7658
- export declare type BackupMeta200Account = {
7659
- /** @nullable */
7660
- cbs_downloadables?: BackupMeta200AccountCbsDownloadablesItem[] | null;
7661
- /** @nullable */
7662
- cbs_event_processing?: BackupMeta200AccountCbsEventProcessing;
7663
- /** @nullable */
7664
- cbs_last_restore_timestamp?: string | null;
7665
- };
7666
8146
  /**
7667
8147
  * Backup plan type for the current account event processing context.
7668
8148
  * @nullable
@@ -7706,6 +8186,14 @@ export declare type BackupMeta200AccountCbsDownloadablesItem = {
7706
8186
  /** @nullable */
7707
8187
  url?: string | null;
7708
8188
  };
8189
+ export declare type BackupMeta200Account = {
8190
+ /** @nullable */
8191
+ cbs_downloadables?: BackupMeta200AccountCbsDownloadablesItem[] | null;
8192
+ /** @nullable */
8193
+ cbs_event_processing?: BackupMeta200AccountCbsEventProcessing;
8194
+ /** @nullable */
8195
+ cbs_last_restore_timestamp?: string | null;
8196
+ };
7709
8197
  export declare type BackupMetaParams = {
7710
8198
  site_id?: number;
7711
8199
  };
@@ -8078,12 +8566,6 @@ export declare type CodeguardBackupCreateBody = {
8078
8566
  /** The id of the website the given database is associated with. */
8079
8567
  website_id?: number;
8080
8568
  };
8081
- export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
8082
- commit_id?: string;
8083
- event_time?: string;
8084
- id?: number;
8085
- recommended?: boolean;
8086
- };
8087
8569
  export declare type CodeguardBackupList200BackupsItem = {
8088
8570
  database_backups?: CodeguardBackupList200BackupsItemDatabaseBackupsItem[];
8089
8571
  event_time?: string;
@@ -8092,6 +8574,12 @@ export declare type CodeguardBackupList200BackupsItem = {
8092
8574
  export declare type CodeguardBackupList200 = {
8093
8575
  backups?: CodeguardBackupList200BackupsItem[];
8094
8576
  };
8577
+ export declare type CodeguardBackupList200BackupsItemDatabaseBackupsItem = {
8578
+ commit_id?: string;
8579
+ event_time?: string;
8580
+ id?: number;
8581
+ recommended?: boolean;
8582
+ };
8095
8583
  export declare type CodeguardBackupListParams = {
8096
8584
  website_id: number;
8097
8585
  };
@@ -8205,32 +8693,47 @@ export declare type AccountPublicKeys200 = {
8205
8693
  public_keys?: AccountPublicKeys200PublicKeysItem[];
8206
8694
  };
8207
8695
  export declare type AccountHostingList200AccountsItem = {
8208
- /** Jarvis Account ID, HAL tenant_back_ref */
8696
+ /** Account identifier (tenant reference) */
8209
8697
  account_id?: string;
8698
+ /**
8699
+ * Billing account identifier parsed from account_id
8700
+ * @nullable
8701
+ */
8702
+ billing_account_id?: number | null;
8210
8703
  current_sites?: number;
8211
8704
  feature_set?: string;
8212
8705
  /**
8213
- * Status of the HAL hosting addon on this account
8706
+ * Status of the hosting addon on this account
8214
8707
  * @nullable
8215
8708
  */
8216
8709
  hosting_addon_status?: string | null;
8217
- /** HAL Account ID */
8710
+ /** Hosting resource identifier */
8218
8711
  hosting_id?: string;
8219
8712
  max_sites?: string;
8220
8713
  /**
8221
- * HAL parent_id for atomic accounts, account id for non-atomic accounts
8714
+ * Parent hosting identifier for atomic accounts, account id for non-atomic accounts
8222
8715
  * @nullable
8223
8716
  */
8224
8717
  parent_id?: string | null;
8225
8718
  platform?: string;
8226
8719
  /** Returns type of the platform the hosting account is on */
8227
8720
  platform_type?: string;
8228
- /** HAL Account back_reference */
8721
+ /** Product instance identifier */
8229
8722
  prod_inst_id?: string;
8230
8723
  /** Returns preferred Data center location for their hosting plan */
8231
8724
  region_desc?: string;
8232
8725
  /** Returns type of accounts where the hosting plan's data center is located */
8233
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;
8234
8737
  /** Returns type of server the hosting account is installed on */
8235
8738
  server_type?: string;
8236
8739
  status?: string;
@@ -8319,6 +8822,73 @@ export declare type AccountFeatures200RowsItemLimit = {
8319
8822
  */
8320
8823
  workers?: number | null;
8321
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
+ };
8322
8892
  /**
8323
8893
  * Region information for the account
8324
8894
  * @nullable
@@ -8455,73 +9025,6 @@ export declare type AccountFeatures200RowsItemInfo = {
8455
9025
  */
8456
9026
  username?: string | null;
8457
9027
  };
8458
- /**
8459
- * Feature details from HAL account_feature_info_list
8460
- */
8461
- export declare type AccountFeatures200RowsItem = {
8462
- /**
8463
- * Product auto-renew flag
8464
- * @nullable
8465
- */
8466
- autoRenewFlag?: boolean | null;
8467
- /** HAL Account back_reference, used to link to the product instance */
8468
- back_reference?: string;
8469
- /**
8470
- * Product expiration date
8471
- * @nullable
8472
- */
8473
- expirationDate?: string | null;
8474
- /** Feature set name ex: hosting_40s */
8475
- feature_set?: string;
8476
- /** Additional information about the account */
8477
- info?: AccountFeatures200RowsItemInfo;
8478
- /**
8479
- * Account limits
8480
- * @nullable
8481
- */
8482
- limit?: AccountFeatures200RowsItemLimit;
8483
- /**
8484
- * Remote limits for the account
8485
- * @nullable
8486
- */
8487
- limit_remote?: AccountFeatures200RowsItemLimitRemote;
8488
- /**
8489
- * Package name
8490
- * @nullable
8491
- */
8492
- package?: string | null;
8493
- /**
8494
- * Control panel type
8495
- * @nullable
8496
- */
8497
- panel?: string | null;
8498
- /**
8499
- * Product code
8500
- * @nullable
8501
- */
8502
- prodCode?: string | null;
8503
- /**
8504
- * Product name
8505
- * @nullable
8506
- */
8507
- prodName?: string | null;
8508
- /**
8509
- * Number of sites
8510
- * @nullable
8511
- */
8512
- sites?: number | null;
8513
- /**
8514
- * Usage statistics
8515
- * @nullable
8516
- */
8517
- used?: AccountFeatures200RowsItemUsed;
8518
- };
8519
- export declare type AccountFeatures200 = {
8520
- /** Feature information for the paginated product instances */
8521
- rows?: AccountFeatures200RowsItem[];
8522
- /** Total number of product instance IDs available to that account */
8523
- total_count?: number;
8524
- };
8525
9028
  export declare type AccountFeaturesParams = {
8526
9029
  /**
8527
9030
  * Starting index for pagination (default: 0)