@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.
Files changed (44) hide show
  1. package/.openapi-generator/FILES +10 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/CHANGELOG.md +62 -0
  4. package/README.md +24 -215
  5. package/api.ts +11413 -26360
  6. package/dist/api.d.ts +799 -6912
  7. package/dist/api.js +10802 -25003
  8. package/dist/esm/api.d.ts +799 -6912
  9. package/dist/esm/api.js +11170 -25375
  10. package/dist/esm/pidginhost.d.ts +7 -1
  11. package/dist/esm/pidginhost.js +7 -1
  12. package/dist/pidginhost.d.ts +7 -1
  13. package/dist/pidginhost.js +6 -0
  14. package/docs/AccountApi.md +142 -1138
  15. package/docs/AuthApi.md +104 -0
  16. package/docs/BillingApi.md +134 -1073
  17. package/docs/CLISessionCreateResponse.md +26 -0
  18. package/docs/CLISessionPollResponse.md +26 -0
  19. package/docs/CLISessionPollResponseStatusEnum.md +15 -0
  20. package/docs/CloudApi.md +906 -4971
  21. package/docs/ClusterAdd.md +2 -0
  22. package/docs/ClusterDetail.md +8 -0
  23. package/docs/DedicatedApi.md +0 -272
  24. package/docs/DomainApi.md +144 -1164
  25. package/docs/EligibleVM.md +22 -0
  26. package/docs/EligibleVMsResponse.md +20 -0
  27. package/docs/FreednsApi.md +0 -324
  28. package/docs/HardwareGeneration.md +34 -0
  29. package/docs/HostingApi.md +0 -160
  30. package/docs/KubeVersionEnum.md +4 -4
  31. package/docs/KubernetesApi.md +565 -3562
  32. package/docs/PatchedClusterDetail.md +8 -0
  33. package/docs/PatchedResourcePool.md +2 -0
  34. package/docs/PatchedServerDetail.md +52 -0
  35. package/docs/ResourcePool.md +2 -0
  36. package/docs/ResourcePoolAdd.md +2 -0
  37. package/docs/SchemaApi.md +0 -55
  38. package/docs/Server.md +5 -3
  39. package/docs/ServerAdd.md +2 -0
  40. package/docs/ServerDetail.md +52 -0
  41. package/docs/SupportApi.md +0 -417
  42. package/docs/ToggleCloudVMAccessResponse.md +22 -0
  43. package/package.json +1 -1
  44. package/pidginhost.ts +13 -1
@@ -18,7 +18,11 @@ docs/Address.md
18
18
  docs/AttachIPv4.md
19
19
  docs/AttachIPv6.md
20
20
  docs/AttachVolume.md
21
+ docs/AuthApi.md
21
22
  docs/BillingApi.md
23
+ docs/CLISessionCreateResponse.md
24
+ docs/CLISessionPollResponse.md
25
+ docs/CLISessionPollResponseStatusEnum.md
22
26
  docs/CancelServiceResponse.md
23
27
  docs/ChangeBillingCycle.md
24
28
  docs/ChangeBillingCycleResponse.md
@@ -71,6 +75,8 @@ docs/DomainApi.md
71
75
  docs/DomainCancelResponse.md
72
76
  docs/DomainCreate.md
73
77
  docs/DomainRegistrant.md
78
+ docs/EligibleVM.md
79
+ docs/EligibleVMsResponse.md
74
80
  docs/EmailHistory.md
75
81
  docs/FeatureUpgradeRequest.md
76
82
  docs/FeatureUpgradeResponse.md
@@ -85,6 +91,7 @@ docs/FundsBalanceResponse.md
85
91
  docs/FundsLog.md
86
92
  docs/FwPolicyOutEnum.md
87
93
  docs/HTTPRoute.md
94
+ docs/HardwareGeneration.md
88
95
  docs/HostingApi.md
89
96
  docs/HostingChangePasswordResponse.md
90
97
  docs/HostingService.md
@@ -144,6 +151,7 @@ docs/PatchedPrivateNetwork.md
144
151
  docs/PatchedProfile.md
145
152
  docs/PatchedResourcePool.md
146
153
  docs/PatchedSSHKey.md
154
+ docs/PatchedServerDetail.md
147
155
  docs/PatchedTCPRoute.md
148
156
  docs/PatchedUDPRoute.md
149
157
  docs/PatchedVolume.md
@@ -179,6 +187,7 @@ docs/ScopeEnum.md
179
187
  docs/Server.md
180
188
  docs/ServerAdd.md
181
189
  docs/ServerAddResponse.md
190
+ docs/ServerDetail.md
182
191
  docs/ServerProduct.md
183
192
  docs/ServerProductUpgrade.md
184
193
  docs/ServerUpgradeResponse.md
@@ -212,6 +221,7 @@ docs/TicketReopenResponse.md
212
221
  docs/TicketReply.md
213
222
  docs/TicketReplyResponse.md
214
223
  docs/ToggleAutoPaymentResponse.md
224
+ docs/ToggleCloudVMAccessResponse.md
215
225
  docs/TransferRoDomain.md
216
226
  docs/Type2faEnum.md
217
227
  docs/UDPRoute.md
@@ -1 +1 @@
1
- 7.20.0
1
+ 7.21.0
package/CHANGELOG.md ADDED
@@ -0,0 +1,62 @@
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.5.0
9
+
10
+ ### Added
11
+
12
+ - `CHANGELOG.md` is now bundled with the generated package, mirroring the Go SDK practice.
13
+
14
+ ### Changed
15
+
16
+ - Build pipeline overhauled: fail-fast schema validation, per-language smoke tests, single-click release approval gate.
17
+
18
+ ### Notes
19
+
20
+ - No SDK API changes — generated from the same schema as 0.4.x.
21
+
22
+ ## v0.4.1
23
+
24
+ ### Changed
25
+
26
+ - Regenerated alongside the Go SDK 0.4.1 patch release (no functional changes for JS/TS).
27
+
28
+ ## v0.4.0
29
+
30
+ ### Added
31
+
32
+ - `Server.generation` field exposing the server hardware generation (e.g. `general-purpose`).
33
+ - New API endpoints: cloud generations, server packages by generation.
34
+ - `ServerAdd.noNetworkAcknowledged` for creating servers without public networking.
35
+
36
+ ### Changed
37
+
38
+ - Regenerated from latest API schema.
39
+
40
+ ## v0.3.0
41
+
42
+ ### Added
43
+
44
+ - Kubernetes API: clusters, node pools, nodes, HTTP/TCP/UDP routes.
45
+ - Billing API: funds, deposits, invoices, services, subscriptions.
46
+ - Dedicated servers API.
47
+ - FreeDNS API.
48
+ - Hosting API.
49
+ - Support tickets API.
50
+ - Domain API: registrants, transfers, nameservers, TLD listing.
51
+
52
+ ### Changed
53
+
54
+ - Regenerated from latest API schema with full API coverage.
55
+
56
+ ## v0.2.0
57
+
58
+ ### Added
59
+
60
+ - Cloud compute: servers, images, packages, volumes, firewalls, IPs, networks.
61
+ - Account management: profile, SSH keys, API tokens.
62
+ - Convenience wrapper: `PidginHost` (re-exported from package root).