@pidginhost/sdk 0.3.0 → 0.6.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 +1 -0
- package/.openapi-generator/VERSION +1 -1
- package/CHANGELOG.md +68 -0
- package/README.md +6 -219
- package/api.ts +11352 -26965
- package/dist/api.d.ts +686 -7134
- package/dist/api.js +10749 -25515
- package/dist/esm/api.d.ts +686 -7134
- package/dist/esm/api.js +11032 -25798
- package/docs/AccountApi.md +142 -1138
- package/docs/AuthApi.md +0 -97
- package/docs/BillingApi.md +134 -1073
- package/docs/CloudApi.md +904 -4985
- package/docs/ClusterAdd.md +4 -0
- package/docs/ClusterDetail.md +12 -0
- package/docs/DedicatedApi.md +0 -272
- package/docs/DomainApi.md +144 -1164
- 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 +534 -3739
- package/docs/PatchedClusterDetail.md +12 -0
- package/docs/PatchedResourcePool.md +2 -0
- package/docs/PatchedServerDetail.md +2 -0
- package/docs/ResourcePool.md +2 -0
- package/docs/ResourcePoolAdd.md +2 -0
- package/docs/SchemaApi.md +0 -55
- package/docs/Server.md +2 -0
- package/docs/ServerAdd.md +4 -0
- package/docs/ServerDetail.md +2 -0
- package/docs/SupportApi.md +0 -417
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.21.0
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the PidginHost JavaScript/TypeScript SDK are documented here.
|
|
4
|
+
|
|
5
|
+
This SDK is auto-generated from the [PidginHost API schema](https://www.pidginhost.com/api/schema/).
|
|
6
|
+
Version bumps reflect schema changes, not hand-written code changes.
|
|
7
|
+
|
|
8
|
+
## v0.6.0
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `ServerAdd.user_data` field for cloud-init startup scripts (bash with shebang or `#cloud-config` YAML), max 64 KiB, Linux images only.
|
|
13
|
+
|
|
14
|
+
## v0.5.0
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `CHANGELOG.md` is now bundled with the generated package, mirroring the Go SDK practice.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Build pipeline overhauled: fail-fast schema validation, per-language smoke tests, single-click release approval gate.
|
|
23
|
+
|
|
24
|
+
### Notes
|
|
25
|
+
|
|
26
|
+
- No SDK API changes — generated from the same schema as 0.4.x.
|
|
27
|
+
|
|
28
|
+
## v0.4.1
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Regenerated alongside the Go SDK 0.4.1 patch release (no functional changes for JS/TS).
|
|
33
|
+
|
|
34
|
+
## v0.4.0
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
|
|
38
|
+
- `Server.generation` field exposing the server hardware generation (e.g. `general-purpose`).
|
|
39
|
+
- New API endpoints: cloud generations, server packages by generation.
|
|
40
|
+
- `ServerAdd.noNetworkAcknowledged` for creating servers without public networking.
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
|
|
44
|
+
- Regenerated from latest API schema.
|
|
45
|
+
|
|
46
|
+
## v0.3.0
|
|
47
|
+
|
|
48
|
+
### Added
|
|
49
|
+
|
|
50
|
+
- Kubernetes API: clusters, node pools, nodes, HTTP/TCP/UDP routes.
|
|
51
|
+
- Billing API: funds, deposits, invoices, services, subscriptions.
|
|
52
|
+
- Dedicated servers API.
|
|
53
|
+
- FreeDNS API.
|
|
54
|
+
- Hosting API.
|
|
55
|
+
- Support tickets API.
|
|
56
|
+
- Domain API: registrants, transfers, nameservers, TLD listing.
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
|
|
60
|
+
- Regenerated from latest API schema with full API coverage.
|
|
61
|
+
|
|
62
|
+
## v0.2.0
|
|
63
|
+
|
|
64
|
+
### Added
|
|
65
|
+
|
|
66
|
+
- Cloud compute: servers, images, packages, volumes, firewalls, IPs, networks.
|
|
67
|
+
- Account management: profile, SSH keys, API tokens.
|
|
68
|
+
- Convenience wrapper: `PidginHost` (re-exported from package root).
|