@newfold/huapi-js 2.1952.0 → 2.1978.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 +136 -7
- package/src/index.js +116 -10
- package/src/index.msw.d.ts +9 -1
- package/src/index.msw.js +50 -2
- package/src/index.schemas.d.ts +336 -219
- package/src/index.schemas.js +4 -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.1978.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -206,13 +206,6 @@ export declare type BackupStatusV3Params = {
|
|
|
206
206
|
*/
|
|
207
207
|
client_tracking_id: string;
|
|
208
208
|
};
|
|
209
|
-
export declare type BackupListV3200 = {
|
|
210
|
-
has_more?: boolean;
|
|
211
|
-
items?: BackupListV3200ItemsItem[];
|
|
212
|
-
limit?: number;
|
|
213
|
-
offset?: number;
|
|
214
|
-
total?: number;
|
|
215
|
-
};
|
|
216
209
|
/**
|
|
217
210
|
* @nullable
|
|
218
211
|
*/
|
|
@@ -247,6 +240,13 @@ export declare type BackupListV3200ItemsItem = {
|
|
|
247
240
|
timezone?: string;
|
|
248
241
|
type?: string;
|
|
249
242
|
};
|
|
243
|
+
export declare type BackupListV3200 = {
|
|
244
|
+
has_more?: boolean;
|
|
245
|
+
items?: BackupListV3200ItemsItem[];
|
|
246
|
+
limit?: number;
|
|
247
|
+
offset?: number;
|
|
248
|
+
total?: number;
|
|
249
|
+
};
|
|
250
250
|
export declare type BackupListV3Params = {
|
|
251
251
|
page?: number;
|
|
252
252
|
limit?: number;
|
|
@@ -429,6 +429,12 @@ export declare type SiteMalwareStatusV2200 = {
|
|
|
429
429
|
*/
|
|
430
430
|
scanner_state?: string | null;
|
|
431
431
|
};
|
|
432
|
+
export declare type SitesDomainsV2200 = {
|
|
433
|
+
domains: SitesDomainsV2200DomainsItem[];
|
|
434
|
+
limit?: number;
|
|
435
|
+
page?: number;
|
|
436
|
+
total?: number;
|
|
437
|
+
};
|
|
432
438
|
/**
|
|
433
439
|
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
434
440
|
* @nullable
|
|
@@ -565,26 +571,9 @@ export declare type SitesDomainsV2200DomainsItem = {
|
|
|
565
571
|
*/
|
|
566
572
|
used_entri?: number | null;
|
|
567
573
|
};
|
|
568
|
-
export declare type SitesDomainsV2200 = {
|
|
569
|
-
domains: SitesDomainsV2200DomainsItem[];
|
|
570
|
-
limit?: number;
|
|
571
|
-
page?: number;
|
|
572
|
-
total?: number;
|
|
573
|
-
};
|
|
574
574
|
export declare type SitesDomainsV2Params = {
|
|
575
575
|
scan?: boolean;
|
|
576
576
|
};
|
|
577
|
-
export declare type SitesListV2200 = {
|
|
578
|
-
items?: SitesListV2200ItemsItem[];
|
|
579
|
-
/** page size */
|
|
580
|
-
limit?: number;
|
|
581
|
-
/** current page number */
|
|
582
|
-
page?: number;
|
|
583
|
-
/** total number of pages */
|
|
584
|
-
pages?: number;
|
|
585
|
-
/** total number of sites returned */
|
|
586
|
-
total?: number;
|
|
587
|
-
};
|
|
588
577
|
/**
|
|
589
578
|
* @nullable
|
|
590
579
|
*/
|
|
@@ -612,63 +601,6 @@ export declare type SitesListV2200ItemsItemStaging = {
|
|
|
612
601
|
/** A list of staging sites of the current site */
|
|
613
602
|
sites?: number[];
|
|
614
603
|
} | null;
|
|
615
|
-
export declare type SitesListV2200ItemsItemResourcesStorage = {
|
|
616
|
-
/** @nullable */
|
|
617
|
-
available?: number | null;
|
|
618
|
-
/** @nullable */
|
|
619
|
-
total?: number | null;
|
|
620
|
-
unit?: string;
|
|
621
|
-
/** @nullable */
|
|
622
|
-
used?: number | null;
|
|
623
|
-
};
|
|
624
|
-
export declare type SitesListV2200ItemsItemResources = {
|
|
625
|
-
storage?: SitesListV2200ItemsItemResourcesStorage;
|
|
626
|
-
/** @nullable */
|
|
627
|
-
workers?: number | null;
|
|
628
|
-
};
|
|
629
|
-
/**
|
|
630
|
-
* @nullable
|
|
631
|
-
*/
|
|
632
|
-
export declare type SitesListV2200ItemsItemPendingUrlData = {
|
|
633
|
-
/**
|
|
634
|
-
* The root domain name
|
|
635
|
-
* @nullable
|
|
636
|
-
*/
|
|
637
|
-
base_domain?: string | null;
|
|
638
|
-
/**
|
|
639
|
-
* The Fully Qualified Domain Name (FQDN)
|
|
640
|
-
* @nullable
|
|
641
|
-
*/
|
|
642
|
-
domain?: string | null;
|
|
643
|
-
/**
|
|
644
|
-
* The current pending_url's HAL Domain ID
|
|
645
|
-
* @nullable
|
|
646
|
-
*/
|
|
647
|
-
domain_id?: number | null;
|
|
648
|
-
/** @nullable */
|
|
649
|
-
error?: string | null;
|
|
650
|
-
/** Flag indicating whether the pending_url is temporary or not */
|
|
651
|
-
is_temp?: boolean;
|
|
652
|
-
/**
|
|
653
|
-
* Flag indicating whether the url_sync job has run out of attempts
|
|
654
|
-
* @nullable
|
|
655
|
-
*/
|
|
656
|
-
job_failed?: boolean | null;
|
|
657
|
-
/** @nullable */
|
|
658
|
-
stage?: string | null;
|
|
659
|
-
/**
|
|
660
|
-
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
661
|
-
* @nullable
|
|
662
|
-
*/
|
|
663
|
-
wp_session?: string | null;
|
|
664
|
-
} | null;
|
|
665
|
-
/**
|
|
666
|
-
* Job ids for the site
|
|
667
|
-
* @nullable
|
|
668
|
-
*/
|
|
669
|
-
export declare type SitesListV2200ItemsItemJobs = {
|
|
670
|
-
[key: string]: unknown;
|
|
671
|
-
} | null;
|
|
672
604
|
export declare type SitesListV2200ItemsItem = {
|
|
673
605
|
/** @nullable */
|
|
674
606
|
account_back_ref?: string | null;
|
|
@@ -747,6 +679,74 @@ export declare type SitesListV2200ItemsItem = {
|
|
|
747
679
|
*/
|
|
748
680
|
version_ptr?: string | null;
|
|
749
681
|
};
|
|
682
|
+
export declare type SitesListV2200 = {
|
|
683
|
+
items?: SitesListV2200ItemsItem[];
|
|
684
|
+
/** page size */
|
|
685
|
+
limit?: number;
|
|
686
|
+
/** current page number */
|
|
687
|
+
page?: number;
|
|
688
|
+
/** total number of pages */
|
|
689
|
+
pages?: number;
|
|
690
|
+
/** total number of sites returned */
|
|
691
|
+
total?: number;
|
|
692
|
+
};
|
|
693
|
+
export declare type SitesListV2200ItemsItemResourcesStorage = {
|
|
694
|
+
/** @nullable */
|
|
695
|
+
available?: number | null;
|
|
696
|
+
/** @nullable */
|
|
697
|
+
total?: number | null;
|
|
698
|
+
unit?: string;
|
|
699
|
+
/** @nullable */
|
|
700
|
+
used?: number | null;
|
|
701
|
+
};
|
|
702
|
+
export declare type SitesListV2200ItemsItemResources = {
|
|
703
|
+
storage?: SitesListV2200ItemsItemResourcesStorage;
|
|
704
|
+
/** @nullable */
|
|
705
|
+
workers?: number | null;
|
|
706
|
+
};
|
|
707
|
+
/**
|
|
708
|
+
* @nullable
|
|
709
|
+
*/
|
|
710
|
+
export declare type SitesListV2200ItemsItemPendingUrlData = {
|
|
711
|
+
/**
|
|
712
|
+
* The root domain name
|
|
713
|
+
* @nullable
|
|
714
|
+
*/
|
|
715
|
+
base_domain?: string | null;
|
|
716
|
+
/**
|
|
717
|
+
* The Fully Qualified Domain Name (FQDN)
|
|
718
|
+
* @nullable
|
|
719
|
+
*/
|
|
720
|
+
domain?: string | null;
|
|
721
|
+
/**
|
|
722
|
+
* The current pending_url's HAL Domain ID
|
|
723
|
+
* @nullable
|
|
724
|
+
*/
|
|
725
|
+
domain_id?: number | null;
|
|
726
|
+
/** @nullable */
|
|
727
|
+
error?: string | null;
|
|
728
|
+
/** Flag indicating whether the pending_url is temporary or not */
|
|
729
|
+
is_temp?: boolean;
|
|
730
|
+
/**
|
|
731
|
+
* Flag indicating whether the url_sync job has run out of attempts
|
|
732
|
+
* @nullable
|
|
733
|
+
*/
|
|
734
|
+
job_failed?: boolean | null;
|
|
735
|
+
/** @nullable */
|
|
736
|
+
stage?: string | null;
|
|
737
|
+
/**
|
|
738
|
+
* Timestamp for when we will update the WP url, regardless of active sessions
|
|
739
|
+
* @nullable
|
|
740
|
+
*/
|
|
741
|
+
wp_session?: string | null;
|
|
742
|
+
} | null;
|
|
743
|
+
/**
|
|
744
|
+
* Job ids for the site
|
|
745
|
+
* @nullable
|
|
746
|
+
*/
|
|
747
|
+
export declare type SitesListV2200ItemsItemJobs = {
|
|
748
|
+
[key: string]: unknown;
|
|
749
|
+
} | null;
|
|
750
750
|
export declare type SshKeyV2200 = {
|
|
751
751
|
deleted?: number;
|
|
752
752
|
key_name?: string;
|
|
@@ -1477,6 +1477,50 @@ export declare type WaldaiSso200 = {
|
|
|
1477
1477
|
/** SSO redirect URL for WaldAI dashboard */
|
|
1478
1478
|
redirect_url: string;
|
|
1479
1479
|
};
|
|
1480
|
+
export declare type UserProservices200ProductsItemProductProfileOptionsItem = {
|
|
1481
|
+
/** @nullable */
|
|
1482
|
+
profile_option?: number | null;
|
|
1483
|
+
/** @nullable */
|
|
1484
|
+
profile_value?: string | null;
|
|
1485
|
+
};
|
|
1486
|
+
export declare type UserProservices200ProductsItem = {
|
|
1487
|
+
/** @nullable */
|
|
1488
|
+
auto_renew_flag?: boolean | null;
|
|
1489
|
+
/**
|
|
1490
|
+
* FG billing account id
|
|
1491
|
+
* @nullable
|
|
1492
|
+
*/
|
|
1493
|
+
billing_account_id?: string | null;
|
|
1494
|
+
/** @nullable */
|
|
1495
|
+
created_date?: string | null;
|
|
1496
|
+
/** @nullable */
|
|
1497
|
+
expiration_date?: string | null;
|
|
1498
|
+
/** @nullable */
|
|
1499
|
+
generic_prod_type?: string | null;
|
|
1500
|
+
/** @nullable */
|
|
1501
|
+
life_cycle_state?: string | null;
|
|
1502
|
+
/**
|
|
1503
|
+
* prod_code of the parent product referenced by parent_prod_inst_id
|
|
1504
|
+
* @nullable
|
|
1505
|
+
*/
|
|
1506
|
+
parent_prod_code?: string | null;
|
|
1507
|
+
/** @nullable */
|
|
1508
|
+
parent_prod_inst_id?: string | null;
|
|
1509
|
+
/** @nullable */
|
|
1510
|
+
prod_code?: string | null;
|
|
1511
|
+
/** @nullable */
|
|
1512
|
+
prod_inst_id?: string | null;
|
|
1513
|
+
/** @nullable */
|
|
1514
|
+
prod_name?: string | null;
|
|
1515
|
+
/** FG product profile options */
|
|
1516
|
+
product_profile_options?: UserProservices200ProductsItemProductProfileOptionsItem[];
|
|
1517
|
+
};
|
|
1518
|
+
export declare type UserProservices200 = {
|
|
1519
|
+
/** Pro-services products from FG */
|
|
1520
|
+
products?: UserProservices200ProductsItem[];
|
|
1521
|
+
/** Number of pro-services products returned */
|
|
1522
|
+
total?: number;
|
|
1523
|
+
};
|
|
1480
1524
|
export declare type AllUserMonarxDetails200RowsItem = {
|
|
1481
1525
|
/** HAL Account back_reference, used to link to the product instance */
|
|
1482
1526
|
account_back_ref?: string;
|
|
@@ -2652,13 +2696,6 @@ export declare type SitesMetricDimensions200DimensionsPageIsCachedItem = {
|
|
|
2652
2696
|
dimension?: SitesMetricDimensions200DimensionsPageIsCachedItemDimension;
|
|
2653
2697
|
timestamp?: number;
|
|
2654
2698
|
};
|
|
2655
|
-
export declare type SitesMetricDimensions200DimensionsHttpVersionItemDimension = {
|
|
2656
|
-
[key: string]: number;
|
|
2657
|
-
};
|
|
2658
|
-
export declare type SitesMetricDimensions200DimensionsHttpVersionItem = {
|
|
2659
|
-
dimension?: SitesMetricDimensions200DimensionsHttpVersionItemDimension;
|
|
2660
|
-
timestamp?: number;
|
|
2661
|
-
};
|
|
2662
2699
|
export declare type SitesMetricDimensions200Dimensions = {
|
|
2663
2700
|
http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
|
|
2664
2701
|
http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
|
|
@@ -2671,6 +2708,13 @@ export declare type SitesMetricDimensions200Dimensions = {
|
|
|
2671
2708
|
visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
|
|
2672
2709
|
wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
|
|
2673
2710
|
};
|
|
2711
|
+
export declare type SitesMetricDimensions200DimensionsHttpVersionItemDimension = {
|
|
2712
|
+
[key: string]: number;
|
|
2713
|
+
};
|
|
2714
|
+
export declare type SitesMetricDimensions200DimensionsHttpVersionItem = {
|
|
2715
|
+
dimension?: SitesMetricDimensions200DimensionsHttpVersionItemDimension;
|
|
2716
|
+
timestamp?: number;
|
|
2717
|
+
};
|
|
2674
2718
|
export declare type SitesMetricDimensions200DimensionsHttpVerbItemDimension = {
|
|
2675
2719
|
[key: string]: number;
|
|
2676
2720
|
};
|
|
@@ -3241,20 +3285,6 @@ export declare type SitesInfo200Staging = {
|
|
|
3241
3285
|
/** A list of staging sites of the current site */
|
|
3242
3286
|
sites?: number[];
|
|
3243
3287
|
} | null;
|
|
3244
|
-
export declare type SitesInfo200ResourcesStorage = {
|
|
3245
|
-
/** @nullable */
|
|
3246
|
-
available?: number | null;
|
|
3247
|
-
/** @nullable */
|
|
3248
|
-
total?: number | null;
|
|
3249
|
-
unit?: string;
|
|
3250
|
-
/** @nullable */
|
|
3251
|
-
used?: number | null;
|
|
3252
|
-
};
|
|
3253
|
-
export declare type SitesInfo200Resources = {
|
|
3254
|
-
storage?: SitesInfo200ResourcesStorage;
|
|
3255
|
-
/** @nullable */
|
|
3256
|
-
workers?: number | null;
|
|
3257
|
-
};
|
|
3258
3288
|
/**
|
|
3259
3289
|
* @nullable
|
|
3260
3290
|
*/
|
|
@@ -3404,6 +3434,20 @@ export declare type SitesInfo200 = {
|
|
|
3404
3434
|
/** @nullable */
|
|
3405
3435
|
wp_multi_site?: SitesInfo200WpMultiSite;
|
|
3406
3436
|
};
|
|
3437
|
+
export declare type SitesInfo200ResourcesStorage = {
|
|
3438
|
+
/** @nullable */
|
|
3439
|
+
available?: number | null;
|
|
3440
|
+
/** @nullable */
|
|
3441
|
+
total?: number | null;
|
|
3442
|
+
unit?: string;
|
|
3443
|
+
/** @nullable */
|
|
3444
|
+
used?: number | null;
|
|
3445
|
+
};
|
|
3446
|
+
export declare type SitesInfo200Resources = {
|
|
3447
|
+
storage?: SitesInfo200ResourcesStorage;
|
|
3448
|
+
/** @nullable */
|
|
3449
|
+
workers?: number | null;
|
|
3450
|
+
};
|
|
3407
3451
|
export declare type PublicRegions200RowsItem = {
|
|
3408
3452
|
/**
|
|
3409
3453
|
* Whether dedicated configurator is active for this region
|
|
@@ -3612,6 +3656,12 @@ export declare type PublicImages200 = {
|
|
|
3612
3656
|
/** List of images */
|
|
3613
3657
|
rows?: PublicImages200RowsItem[];
|
|
3614
3658
|
};
|
|
3659
|
+
export declare type PublicImagesParams = {
|
|
3660
|
+
/**
|
|
3661
|
+
* Brand identifier for HAL admin calls.
|
|
3662
|
+
*/
|
|
3663
|
+
brand?: string;
|
|
3664
|
+
};
|
|
3615
3665
|
export declare type HostingVisitors200VisitorsItem = {
|
|
3616
3666
|
bandwidth?: number;
|
|
3617
3667
|
hits?: number;
|
|
@@ -4921,6 +4971,12 @@ export declare type HostingEmailFiltersAddBody = {
|
|
|
4921
4971
|
/** list of rules to be applied to the filter */
|
|
4922
4972
|
rules?: HostingEmailFiltersAddBodyRulesItem[];
|
|
4923
4973
|
};
|
|
4974
|
+
export declare type HostingEmailFiltersList200 = {
|
|
4975
|
+
/** The number of filters */
|
|
4976
|
+
count?: number;
|
|
4977
|
+
/** List of filters */
|
|
4978
|
+
filters?: HostingEmailFiltersList200FiltersItem[];
|
|
4979
|
+
};
|
|
4924
4980
|
export declare type HostingEmailFiltersList200FiltersItemRulesItem = {
|
|
4925
4981
|
match?: FilterRuleMatch;
|
|
4926
4982
|
opt?: FilterRuleOpt;
|
|
@@ -4951,12 +5007,6 @@ export declare type HostingEmailFiltersList200FiltersItem = {
|
|
|
4951
5007
|
/** Whether the filter is unescaped */
|
|
4952
5008
|
unescaped?: boolean;
|
|
4953
5009
|
};
|
|
4954
|
-
export declare type HostingEmailFiltersList200 = {
|
|
4955
|
-
/** The number of filters */
|
|
4956
|
-
count?: number;
|
|
4957
|
-
/** List of filters */
|
|
4958
|
-
filters?: HostingEmailFiltersList200FiltersItem[];
|
|
4959
|
-
};
|
|
4960
5010
|
export declare type HostingEmailFiltersListParams = {
|
|
4961
5011
|
/**
|
|
4962
5012
|
* The email account address to query filters by
|
|
@@ -5802,6 +5852,25 @@ export declare type HostingAdvancedPasswordBody = {
|
|
|
5802
5852
|
*/
|
|
5803
5853
|
password: string;
|
|
5804
5854
|
};
|
|
5855
|
+
export declare type HostingAdvancedServerHealthcheck200 = {
|
|
5856
|
+
/**
|
|
5857
|
+
* 1 if the panel responded (Windows servers)
|
|
5858
|
+
* @nullable
|
|
5859
|
+
*/
|
|
5860
|
+
panel_version?: number | null;
|
|
5861
|
+
/**
|
|
5862
|
+
* Dotted reason code when the server is not healthy
|
|
5863
|
+
* @nullable
|
|
5864
|
+
*/
|
|
5865
|
+
reason?: string | null;
|
|
5866
|
+
/**
|
|
5867
|
+
* 1 if the server responded to a hello probe (Linux servers)
|
|
5868
|
+
* @nullable
|
|
5869
|
+
*/
|
|
5870
|
+
server_hello?: number | null;
|
|
5871
|
+
/** Current server status */
|
|
5872
|
+
server_status: string;
|
|
5873
|
+
};
|
|
5805
5874
|
export declare type HostingAdvancedServerStatus200Actions = {
|
|
5806
5875
|
[key: string]: unknown;
|
|
5807
5876
|
};
|
|
@@ -5854,6 +5923,27 @@ export declare type HostingAdvancedServer200 = {
|
|
|
5854
5923
|
uptime?: string;
|
|
5855
5924
|
uptime_seconds?: number;
|
|
5856
5925
|
};
|
|
5926
|
+
/**
|
|
5927
|
+
* Links
|
|
5928
|
+
* @nullable
|
|
5929
|
+
*/
|
|
5930
|
+
export declare type HostingAdvancedImages200ImagesItemLinks = {
|
|
5931
|
+
/**
|
|
5932
|
+
* Community URL
|
|
5933
|
+
* @nullable
|
|
5934
|
+
*/
|
|
5935
|
+
community?: string | null;
|
|
5936
|
+
/**
|
|
5937
|
+
* Documentation URL
|
|
5938
|
+
* @nullable
|
|
5939
|
+
*/
|
|
5940
|
+
doc?: string | null;
|
|
5941
|
+
/**
|
|
5942
|
+
* Forums URL
|
|
5943
|
+
* @nullable
|
|
5944
|
+
*/
|
|
5945
|
+
forums?: string | null;
|
|
5946
|
+
} | null;
|
|
5857
5947
|
export declare type HostingAdvancedImages200ImagesItem = {
|
|
5858
5948
|
/**
|
|
5859
5949
|
* The application software included on the image
|
|
@@ -5945,27 +6035,6 @@ export declare type HostingAdvancedImages200ImagesItem = {
|
|
|
5945
6035
|
export declare type HostingAdvancedImages200 = {
|
|
5946
6036
|
images: HostingAdvancedImages200ImagesItem[];
|
|
5947
6037
|
};
|
|
5948
|
-
/**
|
|
5949
|
-
* Links
|
|
5950
|
-
* @nullable
|
|
5951
|
-
*/
|
|
5952
|
-
export declare type HostingAdvancedImages200ImagesItemLinks = {
|
|
5953
|
-
/**
|
|
5954
|
-
* Community URL
|
|
5955
|
-
* @nullable
|
|
5956
|
-
*/
|
|
5957
|
-
community?: string | null;
|
|
5958
|
-
/**
|
|
5959
|
-
* Documentation URL
|
|
5960
|
-
* @nullable
|
|
5961
|
-
*/
|
|
5962
|
-
doc?: string | null;
|
|
5963
|
-
/**
|
|
5964
|
-
* Forums URL
|
|
5965
|
-
* @nullable
|
|
5966
|
-
*/
|
|
5967
|
-
forums?: string | null;
|
|
5968
|
-
} | null;
|
|
5969
6038
|
export declare type HostingAdvancedImagesParams = {
|
|
5970
6039
|
/**
|
|
5971
6040
|
* Starting page for pagination
|
|
@@ -6024,6 +6093,16 @@ export declare type HostingAdvancedDnsParams = {
|
|
|
6024
6093
|
domain: string;
|
|
6025
6094
|
dns_with_us?: number;
|
|
6026
6095
|
};
|
|
6096
|
+
export declare type HostingAdvancedConsole200 = {
|
|
6097
|
+
url?: string;
|
|
6098
|
+
};
|
|
6099
|
+
export declare type HostingAdvancedConsoleProtocol = typeof HostingAdvancedConsoleProtocol[keyof typeof HostingAdvancedConsoleProtocol];
|
|
6100
|
+
export declare const HostingAdvancedConsoleProtocol: {
|
|
6101
|
+
readonly ssh: "ssh";
|
|
6102
|
+
};
|
|
6103
|
+
export declare type HostingAdvancedConsoleParams = {
|
|
6104
|
+
protocol?: HostingAdvancedConsoleProtocol;
|
|
6105
|
+
};
|
|
6027
6106
|
export declare type HostingAddons200RowsItemMeta = {
|
|
6028
6107
|
[key: string]: string | number | boolean;
|
|
6029
6108
|
};
|
|
@@ -6067,31 +6146,6 @@ export declare type ActivityLog200 = {
|
|
|
6067
6146
|
export declare type ActivityLogParams = {
|
|
6068
6147
|
days?: number;
|
|
6069
6148
|
};
|
|
6070
|
-
export declare type HostingAccount200ResourcesWorkers = {
|
|
6071
|
-
/** @nullable */
|
|
6072
|
-
available?: number | null;
|
|
6073
|
-
/** @nullable */
|
|
6074
|
-
total?: number | null;
|
|
6075
|
-
/** @nullable */
|
|
6076
|
-
used?: number | null;
|
|
6077
|
-
};
|
|
6078
|
-
export declare type HostingAccount200ResourcesStorage = {
|
|
6079
|
-
/** @nullable */
|
|
6080
|
-
available?: number | null;
|
|
6081
|
-
/** @nullable */
|
|
6082
|
-
total?: number | null;
|
|
6083
|
-
unit?: string;
|
|
6084
|
-
/** @nullable */
|
|
6085
|
-
used?: number | null;
|
|
6086
|
-
};
|
|
6087
|
-
/**
|
|
6088
|
-
* @nullable
|
|
6089
|
-
*/
|
|
6090
|
-
export declare type HostingAccount200Resources = {
|
|
6091
|
-
staging?: HostingAccount200ResourcesStaging;
|
|
6092
|
-
storage?: HostingAccount200ResourcesStorage;
|
|
6093
|
-
workers?: HostingAccount200ResourcesWorkers;
|
|
6094
|
-
} | null;
|
|
6095
6149
|
export declare type HostingAccount200 = {
|
|
6096
6150
|
account_id?: string;
|
|
6097
6151
|
account_limits?: HostingAccount200AccountLimits;
|
|
@@ -6114,6 +6168,34 @@ export declare type HostingAccount200 = {
|
|
|
6114
6168
|
type?: string;
|
|
6115
6169
|
username?: string;
|
|
6116
6170
|
};
|
|
6171
|
+
export declare type HostingAccount200ResourcesWorkers = {
|
|
6172
|
+
/** @nullable */
|
|
6173
|
+
available?: number | null;
|
|
6174
|
+
/** @nullable */
|
|
6175
|
+
total?: number | null;
|
|
6176
|
+
/** @nullable */
|
|
6177
|
+
used?: number | null;
|
|
6178
|
+
};
|
|
6179
|
+
/**
|
|
6180
|
+
* Usage statistics for non-staging sites
|
|
6181
|
+
* @nullable
|
|
6182
|
+
*/
|
|
6183
|
+
export declare type HostingAccount200ResourcesUsed = {
|
|
6184
|
+
/**
|
|
6185
|
+
* Total number of domains used by this account
|
|
6186
|
+
* @nullable
|
|
6187
|
+
*/
|
|
6188
|
+
domain?: number | null;
|
|
6189
|
+
} | null;
|
|
6190
|
+
export declare type HostingAccount200ResourcesStorage = {
|
|
6191
|
+
/** @nullable */
|
|
6192
|
+
available?: number | null;
|
|
6193
|
+
/** @nullable */
|
|
6194
|
+
total?: number | null;
|
|
6195
|
+
unit?: string;
|
|
6196
|
+
/** @nullable */
|
|
6197
|
+
used?: number | null;
|
|
6198
|
+
};
|
|
6117
6199
|
export declare type HostingAccount200ResourcesStagingWorkers = {
|
|
6118
6200
|
/** @nullable */
|
|
6119
6201
|
available?: number | null;
|
|
@@ -6135,6 +6217,19 @@ export declare type HostingAccount200ResourcesStaging = {
|
|
|
6135
6217
|
storage?: HostingAccount200ResourcesStagingStorage;
|
|
6136
6218
|
workers?: HostingAccount200ResourcesStagingWorkers;
|
|
6137
6219
|
};
|
|
6220
|
+
/**
|
|
6221
|
+
* @nullable
|
|
6222
|
+
*/
|
|
6223
|
+
export declare type HostingAccount200Resources = {
|
|
6224
|
+
staging?: HostingAccount200ResourcesStaging;
|
|
6225
|
+
storage?: HostingAccount200ResourcesStorage;
|
|
6226
|
+
/**
|
|
6227
|
+
* Usage statistics for non-staging sites
|
|
6228
|
+
* @nullable
|
|
6229
|
+
*/
|
|
6230
|
+
used?: HostingAccount200ResourcesUsed;
|
|
6231
|
+
workers?: HostingAccount200ResourcesWorkers;
|
|
6232
|
+
} | null;
|
|
6138
6233
|
export declare type HostingAccount200Billing = {
|
|
6139
6234
|
prod_code?: string;
|
|
6140
6235
|
product_name?: string;
|
|
@@ -6146,6 +6241,11 @@ export declare type HostingAccount200AccountLimits = {
|
|
|
6146
6241
|
* @nullable
|
|
6147
6242
|
*/
|
|
6148
6243
|
email_accounts?: number | null;
|
|
6244
|
+
/**
|
|
6245
|
+
* Maxmimum number of domains that can be added to this account
|
|
6246
|
+
* @nullable
|
|
6247
|
+
*/
|
|
6248
|
+
max_domain?: number | null;
|
|
6149
6249
|
/**
|
|
6150
6250
|
* Number of max sites allowed for the hosting account
|
|
6151
6251
|
* @nullable
|
|
@@ -6445,6 +6545,70 @@ export declare type DomainCerts200CertsItem = {
|
|
|
6445
6545
|
export declare type DomainCerts200 = {
|
|
6446
6546
|
certs?: DomainCerts200CertsItem[];
|
|
6447
6547
|
};
|
|
6548
|
+
/**
|
|
6549
|
+
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6550
|
+
* @nullable
|
|
6551
|
+
*/
|
|
6552
|
+
export declare type DomainInfo200SetupProgressValidateSslErrorTable = {
|
|
6553
|
+
[key: string]: unknown;
|
|
6554
|
+
} | null;
|
|
6555
|
+
/**
|
|
6556
|
+
* @nullable
|
|
6557
|
+
*/
|
|
6558
|
+
export declare type DomainInfo200SetupProgress = {
|
|
6559
|
+
/**
|
|
6560
|
+
* Result of domain cdn validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
6561
|
+
* @nullable
|
|
6562
|
+
*/
|
|
6563
|
+
validate_cdn?: number | null;
|
|
6564
|
+
/**
|
|
6565
|
+
* Most recent error logged during domain cdn validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6566
|
+
* @nullable
|
|
6567
|
+
*/
|
|
6568
|
+
validate_cdn_error?: string | null;
|
|
6569
|
+
/**
|
|
6570
|
+
* Result of domain dns validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
6571
|
+
* @nullable
|
|
6572
|
+
*/
|
|
6573
|
+
validate_dns?: number | null;
|
|
6574
|
+
/**
|
|
6575
|
+
* Whether dns_auto_repair was run on this domain (1=true)
|
|
6576
|
+
* @nullable
|
|
6577
|
+
*/
|
|
6578
|
+
validate_dns_auto_repair?: number | null;
|
|
6579
|
+
/**
|
|
6580
|
+
* Most recent error logged during domain dns validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6581
|
+
* @nullable
|
|
6582
|
+
*/
|
|
6583
|
+
validate_dns_error?: string | null;
|
|
6584
|
+
/**
|
|
6585
|
+
* Most recent error logged during domain validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6586
|
+
* @nullable
|
|
6587
|
+
*/
|
|
6588
|
+
validate_error?: string | null;
|
|
6589
|
+
/**
|
|
6590
|
+
* Result of domain ssl validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
6591
|
+
* @nullable
|
|
6592
|
+
*/
|
|
6593
|
+
validate_ssl?: number | null;
|
|
6594
|
+
/**
|
|
6595
|
+
* Most recent error logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6596
|
+
* @nullable
|
|
6597
|
+
*/
|
|
6598
|
+
validate_ssl_error?: string | null;
|
|
6599
|
+
/**
|
|
6600
|
+
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6601
|
+
* @nullable
|
|
6602
|
+
*/
|
|
6603
|
+
validate_ssl_error_table?: DomainInfo200SetupProgressValidateSslErrorTable;
|
|
6604
|
+
} | null;
|
|
6605
|
+
/**
|
|
6606
|
+
* Job ids and names currently running on the domain
|
|
6607
|
+
* @nullable
|
|
6608
|
+
*/
|
|
6609
|
+
export declare type DomainInfo200Jobs = {
|
|
6610
|
+
[key: string]: unknown;
|
|
6611
|
+
} | null;
|
|
6448
6612
|
export declare type DomainInfo200 = {
|
|
6449
6613
|
/** @nullable */
|
|
6450
6614
|
account_back_ref?: string | null;
|
|
@@ -6517,70 +6681,10 @@ export declare type DomainInfo200 = {
|
|
|
6517
6681
|
*/
|
|
6518
6682
|
used_entri?: number | null;
|
|
6519
6683
|
};
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
export declare type DomainInfo200SetupProgressValidateSslErrorTable = {
|
|
6525
|
-
[key: string]: unknown;
|
|
6526
|
-
} | null;
|
|
6527
|
-
/**
|
|
6528
|
-
* @nullable
|
|
6529
|
-
*/
|
|
6530
|
-
export declare type DomainInfo200SetupProgress = {
|
|
6531
|
-
/**
|
|
6532
|
-
* Result of domain cdn validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
6533
|
-
* @nullable
|
|
6534
|
-
*/
|
|
6535
|
-
validate_cdn?: number | null;
|
|
6536
|
-
/**
|
|
6537
|
-
* Most recent error logged during domain cdn validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6538
|
-
* @nullable
|
|
6539
|
-
*/
|
|
6540
|
-
validate_cdn_error?: string | null;
|
|
6541
|
-
/**
|
|
6542
|
-
* Result of domain dns validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
6543
|
-
* @nullable
|
|
6544
|
-
*/
|
|
6545
|
-
validate_dns?: number | null;
|
|
6546
|
-
/**
|
|
6547
|
-
* Whether dns_auto_repair was run on this domain (1=true)
|
|
6548
|
-
* @nullable
|
|
6549
|
-
*/
|
|
6550
|
-
validate_dns_auto_repair?: number | null;
|
|
6551
|
-
/**
|
|
6552
|
-
* Most recent error logged during domain dns validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6553
|
-
* @nullable
|
|
6554
|
-
*/
|
|
6555
|
-
validate_dns_error?: string | null;
|
|
6556
|
-
/**
|
|
6557
|
-
* Most recent error logged during domain validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6558
|
-
* @nullable
|
|
6559
|
-
*/
|
|
6560
|
-
validate_error?: string | null;
|
|
6561
|
-
/**
|
|
6562
|
-
* Result of domain ssl validation (null=not started,0=started,1=succeeded,2=skipped)
|
|
6563
|
-
* @nullable
|
|
6564
|
-
*/
|
|
6565
|
-
validate_ssl?: number | null;
|
|
6566
|
-
/**
|
|
6567
|
-
* Most recent error logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6568
|
-
* @nullable
|
|
6569
|
-
*/
|
|
6570
|
-
validate_ssl_error?: string | null;
|
|
6571
|
-
/**
|
|
6572
|
-
* Most recent errors logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
|
|
6573
|
-
* @nullable
|
|
6574
|
-
*/
|
|
6575
|
-
validate_ssl_error_table?: DomainInfo200SetupProgressValidateSslErrorTable;
|
|
6576
|
-
} | null;
|
|
6577
|
-
/**
|
|
6578
|
-
* Job ids and names currently running on the domain
|
|
6579
|
-
* @nullable
|
|
6580
|
-
*/
|
|
6581
|
-
export declare type DomainInfo200Jobs = {
|
|
6582
|
-
[key: string]: unknown;
|
|
6583
|
-
} | null;
|
|
6684
|
+
export declare type BullhornAnnouncements200 = {
|
|
6685
|
+
/** Bullhorn announcement banners for Account Manager. Empty when the feature is disabled or no announcements are configured. */
|
|
6686
|
+
bullhornAnnouncements: BullhornAnnouncement[];
|
|
6687
|
+
};
|
|
6584
6688
|
export declare type Announcements200 = {
|
|
6585
6689
|
/** Global announcement banners for Account Manager. Empty when the feature is disabled or no announcements are configured. */
|
|
6586
6690
|
announcements: Announcement[];
|
|
@@ -7978,6 +8082,19 @@ export interface Announcement {
|
|
|
7978
8082
|
*/
|
|
7979
8083
|
'sub-heading'?: string | null;
|
|
7980
8084
|
}
|
|
8085
|
+
/**
|
|
8086
|
+
* A single bullhorn announcement loaded from object storage.
|
|
8087
|
+
*/
|
|
8088
|
+
export interface BullhornAnnouncement {
|
|
8089
|
+
/** Supporting bullhorn announcement text. */
|
|
8090
|
+
body: string;
|
|
8091
|
+
/** Feature area where the bullhorn announcement should appear. */
|
|
8092
|
+
featureKey: string;
|
|
8093
|
+
/** Primary bullhorn announcement title. */
|
|
8094
|
+
header: string;
|
|
8095
|
+
/** Destination URL opened when the bullhorn announcement is clicked. */
|
|
8096
|
+
url: string;
|
|
8097
|
+
}
|
|
7981
8098
|
/**
|
|
7982
8099
|
* Which character set to use for the autorespond email content
|
|
7983
8100
|
*/
|