@pidginhost/sdk 0.2.0 → 0.5.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/.openapi-generator/FILES +10 -0
- package/.openapi-generator/VERSION +1 -1
- package/CHANGELOG.md +62 -0
- package/README.md +24 -215
- package/api.ts +11413 -26360
- package/dist/api.d.ts +799 -6912
- package/dist/api.js +10802 -25003
- package/dist/esm/api.d.ts +799 -6912
- package/dist/esm/api.js +11170 -25375
- package/dist/esm/pidginhost.d.ts +7 -1
- package/dist/esm/pidginhost.js +7 -1
- package/dist/pidginhost.d.ts +7 -1
- package/dist/pidginhost.js +6 -0
- package/docs/AccountApi.md +142 -1138
- package/docs/AuthApi.md +104 -0
- package/docs/BillingApi.md +134 -1073
- package/docs/CLISessionCreateResponse.md +26 -0
- package/docs/CLISessionPollResponse.md +26 -0
- package/docs/CLISessionPollResponseStatusEnum.md +15 -0
- package/docs/CloudApi.md +906 -4971
- package/docs/ClusterAdd.md +2 -0
- package/docs/ClusterDetail.md +8 -0
- package/docs/DedicatedApi.md +0 -272
- package/docs/DomainApi.md +144 -1164
- package/docs/EligibleVM.md +22 -0
- package/docs/EligibleVMsResponse.md +20 -0
- package/docs/FreednsApi.md +0 -324
- package/docs/HardwareGeneration.md +34 -0
- package/docs/HostingApi.md +0 -160
- package/docs/KubeVersionEnum.md +4 -4
- package/docs/KubernetesApi.md +565 -3562
- package/docs/PatchedClusterDetail.md +8 -0
- package/docs/PatchedResourcePool.md +2 -0
- package/docs/PatchedServerDetail.md +52 -0
- package/docs/ResourcePool.md +2 -0
- package/docs/ResourcePoolAdd.md +2 -0
- package/docs/SchemaApi.md +0 -55
- package/docs/Server.md +5 -3
- package/docs/ServerAdd.md +2 -0
- package/docs/ServerDetail.md +52 -0
- package/docs/SupportApi.md +0 -417
- package/docs/ToggleCloudVMAccessResponse.md +22 -0
- package/package.json +1 -1
- package/pidginhost.ts +13 -1
package/dist/esm/pidginhost.d.ts
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import { AccountApi, CloudApi, DomainApi, KubernetesApi } from "./index";
|
|
1
|
+
import { AccountApi, AuthApi, BillingApi, CloudApi, DedicatedApi, DomainApi, FreednsApi, HostingApi, KubernetesApi, SupportApi } from "./index";
|
|
2
2
|
export declare class PidginHost {
|
|
3
3
|
account: AccountApi;
|
|
4
|
+
auth: AuthApi;
|
|
5
|
+
billing: BillingApi;
|
|
4
6
|
cloud: CloudApi;
|
|
7
|
+
dedicated: DedicatedApi;
|
|
5
8
|
domain: DomainApi;
|
|
9
|
+
freedns: FreednsApi;
|
|
10
|
+
hosting: HostingApi;
|
|
6
11
|
kubernetes: KubernetesApi;
|
|
12
|
+
support: SupportApi;
|
|
7
13
|
constructor(token: string, basePath?: string);
|
|
8
14
|
}
|
package/dist/esm/pidginhost.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Configuration, AccountApi, CloudApi, DomainApi, KubernetesApi } from "./index";
|
|
1
|
+
import { Configuration, AccountApi, AuthApi, BillingApi, CloudApi, DedicatedApi, DomainApi, FreednsApi, HostingApi, KubernetesApi, SupportApi } from "./index";
|
|
2
2
|
export class PidginHost {
|
|
3
3
|
constructor(token, basePath) {
|
|
4
4
|
const config = new Configuration({
|
|
@@ -6,8 +6,14 @@ export class PidginHost {
|
|
|
6
6
|
basePath,
|
|
7
7
|
});
|
|
8
8
|
this.account = new AccountApi(config);
|
|
9
|
+
this.auth = new AuthApi(config);
|
|
10
|
+
this.billing = new BillingApi(config);
|
|
9
11
|
this.cloud = new CloudApi(config);
|
|
12
|
+
this.dedicated = new DedicatedApi(config);
|
|
10
13
|
this.domain = new DomainApi(config);
|
|
14
|
+
this.freedns = new FreednsApi(config);
|
|
15
|
+
this.hosting = new HostingApi(config);
|
|
11
16
|
this.kubernetes = new KubernetesApi(config);
|
|
17
|
+
this.support = new SupportApi(config);
|
|
12
18
|
}
|
|
13
19
|
}
|
package/dist/pidginhost.d.ts
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import { AccountApi, CloudApi, DomainApi, KubernetesApi } from "./index";
|
|
1
|
+
import { AccountApi, AuthApi, BillingApi, CloudApi, DedicatedApi, DomainApi, FreednsApi, HostingApi, KubernetesApi, SupportApi } from "./index";
|
|
2
2
|
export declare class PidginHost {
|
|
3
3
|
account: AccountApi;
|
|
4
|
+
auth: AuthApi;
|
|
5
|
+
billing: BillingApi;
|
|
4
6
|
cloud: CloudApi;
|
|
7
|
+
dedicated: DedicatedApi;
|
|
5
8
|
domain: DomainApi;
|
|
9
|
+
freedns: FreednsApi;
|
|
10
|
+
hosting: HostingApi;
|
|
6
11
|
kubernetes: KubernetesApi;
|
|
12
|
+
support: SupportApi;
|
|
7
13
|
constructor(token: string, basePath?: string);
|
|
8
14
|
}
|
package/dist/pidginhost.js
CHANGED
|
@@ -9,9 +9,15 @@ class PidginHost {
|
|
|
9
9
|
basePath,
|
|
10
10
|
});
|
|
11
11
|
this.account = new index_1.AccountApi(config);
|
|
12
|
+
this.auth = new index_1.AuthApi(config);
|
|
13
|
+
this.billing = new index_1.BillingApi(config);
|
|
12
14
|
this.cloud = new index_1.CloudApi(config);
|
|
15
|
+
this.dedicated = new index_1.DedicatedApi(config);
|
|
13
16
|
this.domain = new index_1.DomainApi(config);
|
|
17
|
+
this.freedns = new index_1.FreednsApi(config);
|
|
18
|
+
this.hosting = new index_1.HostingApi(config);
|
|
14
19
|
this.kubernetes = new index_1.KubernetesApi(config);
|
|
20
|
+
this.support = new index_1.SupportApi(config);
|
|
15
21
|
}
|
|
16
22
|
}
|
|
17
23
|
exports.PidginHost = PidginHost;
|