@newfold/huapi-js 2.1337.0 → 2.1340.1-alpha.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/README.md +0 -0
- package/orval.config.d.ts +0 -0
- package/orval.config.js +4 -0
- package/package.json +1 -1
- package/src/index.d.ts +33 -1
- package/src/index.js +27 -1
- package/src/index.msw.d.ts +3 -1
- package/src/index.msw.js +254 -242
- package/src/index.schemas.d.ts +27 -2
- package/src/index.schemas.js +0 -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.1340.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -121,6 +121,28 @@ export declare type SitesSecuritySitelockV2Params = {
|
|
|
121
121
|
*/
|
|
122
122
|
source?: SitesSecuritySitelockV2Source;
|
|
123
123
|
};
|
|
124
|
+
export declare type SiteMalwareStatusV2200 = {
|
|
125
|
+
/**
|
|
126
|
+
* addon state
|
|
127
|
+
* @nullable
|
|
128
|
+
*/
|
|
129
|
+
addon_state?: string | null;
|
|
130
|
+
/**
|
|
131
|
+
* malware status given by jetpack protect addon
|
|
132
|
+
* @nullable
|
|
133
|
+
*/
|
|
134
|
+
malware_state?: string | null;
|
|
135
|
+
/**
|
|
136
|
+
* plugin state
|
|
137
|
+
* @nullable
|
|
138
|
+
*/
|
|
139
|
+
plugin_state?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
* scanner state
|
|
142
|
+
* @nullable
|
|
143
|
+
*/
|
|
144
|
+
scanner_state?: string | null;
|
|
145
|
+
};
|
|
124
146
|
/**
|
|
125
147
|
* @nullable
|
|
126
148
|
*/
|
|
@@ -3424,7 +3446,10 @@ export declare type HostingAdvancedDomainServicesBody = {
|
|
|
3424
3446
|
domain: string;
|
|
3425
3447
|
};
|
|
3426
3448
|
export declare type HostingAdvancedDomainServicesCheck200 = {
|
|
3449
|
+
/** 1 if domain services need to be configured, 0 if not */
|
|
3427
3450
|
configure_domain_services?: number;
|
|
3451
|
+
/** Whether a user exists that HAL doesn't know about; should disable some functionality if 0 and configure_domain_services is 1 */
|
|
3452
|
+
managed_cpanel_user_exists?: number;
|
|
3428
3453
|
};
|
|
3429
3454
|
export declare type HostingAdvancedDnsUpdate200 = {
|
|
3430
3455
|
[key: string]: unknown;
|
|
@@ -3729,7 +3754,7 @@ export declare type DomainDnseditorList200DnsRecordsItem = {
|
|
|
3729
3754
|
weight?: string | null;
|
|
3730
3755
|
};
|
|
3731
3756
|
export declare type DomainDnseditorList200 = {
|
|
3732
|
-
|
|
3757
|
+
dns_records?: DomainDnseditorList200DnsRecordsItem[];
|
|
3733
3758
|
};
|
|
3734
3759
|
export declare type DomainDnseditor200 = {
|
|
3735
3760
|
success?: number;
|
package/src/index.schemas.js
CHANGED
|
File without changes
|