@newfold/huapi-js 2.1152.0 → 2.1154.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.js +1 -1
- package/src/index.msw.js +1 -1
- package/src/index.schemas.d.ts +6 -1
package/package.json
CHANGED
package/src/index.js
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.1154.0
|
|
7
7
|
*/
|
|
8
8
|
import { useInfiniteQuery, useMutation, useQuery } from '@tanstack/react-query';
|
|
9
9
|
import axios from 'axios';
|
package/src/index.msw.js
CHANGED
|
@@ -4,7 +4,7 @@ import { __awaiter } from "tslib";
|
|
|
4
4
|
* Do not edit manually.
|
|
5
5
|
* Hosting UAPI
|
|
6
6
|
* Hosting UAPI is an API to expose Hosting, Addons, and Site functionality to a customer-facing Front End such as (Account Manager).
|
|
7
|
-
* OpenAPI spec version: 1.
|
|
7
|
+
* OpenAPI spec version: 1.1154.0
|
|
8
8
|
*/
|
|
9
9
|
import { faker } from '@faker-js/faker';
|
|
10
10
|
import { HttpResponse, delay, http } from 'msw';
|
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.1154.0
|
|
7
7
|
*/
|
|
8
8
|
export declare type SshKeyListV4200RowsItem = {
|
|
9
9
|
authorize?: boolean;
|
|
@@ -534,6 +534,10 @@ export declare type HostingSitesV2200ItemsItem = {
|
|
|
534
534
|
export declare type HostingSitesV2Params = {
|
|
535
535
|
limit?: number;
|
|
536
536
|
page?: number;
|
|
537
|
+
/**
|
|
538
|
+
* If passed, will only return staging sites of that parent site on this hosting account
|
|
539
|
+
*/
|
|
540
|
+
parent_site_id?: number;
|
|
537
541
|
search?: string;
|
|
538
542
|
};
|
|
539
543
|
export declare type HostingRedirectsV2200Item = {
|
|
@@ -2072,6 +2076,7 @@ export declare type ListFiles200 = {
|
|
|
2072
2076
|
};
|
|
2073
2077
|
export declare type ListFilesParams = {
|
|
2074
2078
|
path: string;
|
|
2079
|
+
showdotfiles?: boolean;
|
|
2075
2080
|
};
|
|
2076
2081
|
/**
|
|
2077
2082
|
* @nullable
|