@pidginhost/sdk 0.6.0 → 0.8.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 (50) hide show
  1. package/.openapi-generator/FILES +39 -0
  2. package/CHANGELOG.md +7 -0
  3. package/README.md +115 -2
  4. package/api.ts +9095 -3388
  5. package/dist/api.d.ts +2569 -62
  6. package/dist/api.js +8153 -3040
  7. package/dist/esm/api.d.ts +2569 -62
  8. package/dist/esm/api.js +8135 -3026
  9. package/docs/ApiCredential.md +32 -0
  10. package/docs/Bucket.md +40 -0
  11. package/docs/CloudApi.md +1315 -134
  12. package/docs/DnsSourceEnum.md +13 -0
  13. package/docs/DomainAdd.md +28 -0
  14. package/docs/EmailApi.md +2828 -0
  15. package/docs/EmailService.md +44 -0
  16. package/docs/FloatingIPAuthorization.md +27 -0
  17. package/docs/FloatingIPAuthorizeRequest.md +20 -0
  18. package/docs/FloatingIPv4.md +32 -0
  19. package/docs/FloatingIPv4AuthorizeResponse.md +20 -0
  20. package/docs/FloatingIPv4Create.md +20 -0
  21. package/docs/FloatingIPv4UnauthorizeResponse.md +20 -0
  22. package/docs/FloatingIPv6.md +32 -0
  23. package/docs/FloatingIPv6AuthorizeResponse.md +20 -0
  24. package/docs/FloatingIPv6Create.md +20 -0
  25. package/docs/FloatingIPv6UnauthorizeResponse.md +20 -0
  26. package/docs/InboundRoute.md +34 -0
  27. package/docs/ModeEnum.md +11 -0
  28. package/docs/PaginatedApiCredentialList.md +26 -0
  29. package/docs/PaginatedEmailServiceList.md +26 -0
  30. package/docs/PaginatedFloatingIPAuthorizationList.md +26 -0
  31. package/docs/PaginatedFloatingIPv4List.md +26 -0
  32. package/docs/PaginatedFloatingIPv6List.md +26 -0
  33. package/docs/PaginatedInboundRouteList.md +26 -0
  34. package/docs/PaginatedSandboxAddressList.md +26 -0
  35. package/docs/PaginatedSendingDomainList.md +26 -0
  36. package/docs/PaginatedSmtpCredentialList.md +26 -0
  37. package/docs/PaginatedSuppressionEntryList.md +26 -0
  38. package/docs/PatchedEmailService.md +44 -0
  39. package/docs/PatchedInboundRoute.md +34 -0
  40. package/docs/PatchedSubscribe.md +20 -0
  41. package/docs/ReasonEnum.md +15 -0
  42. package/docs/SandboxAddress.md +26 -0
  43. package/docs/SendingDomain.md +42 -0
  44. package/docs/SendingDomainStatusEnum.md +17 -0
  45. package/docs/ServerProduct.md +8 -0
  46. package/docs/SmtpCredential.md +30 -0
  47. package/docs/Subscribe.md +20 -0
  48. package/docs/SuppressionEntry.md +28 -0
  49. package/docs/TierEnum.md +13 -0
  50. package/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ # DnsSourceEnum
2
+
3
+ * `manual` - Manual * `freedns_internal` - FreeDNS (registered) * `freedns_external` - FreeDNS (external)
4
+
5
+ ## Enum
6
+
7
+ * `Manual` (value: `'manual'`)
8
+
9
+ * `FreednsInternal` (value: `'freedns_internal'`)
10
+
11
+ * `FreednsExternal` (value: `'freedns_external'`)
12
+
13
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,28 @@
1
+ # DomainAdd
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **string** | | [default to undefined]
9
+ **dns_source** | [**DnsSourceEnum**](DnsSourceEnum.md) | | [default to undefined]
10
+ **managed_domain** | **number** | | [optional] [default to undefined]
11
+ **managed_external_domain** | **number** | | [optional] [default to undefined]
12
+ **use_inbound** | **boolean** | | [optional] [default to false]
13
+
14
+ ## Example
15
+
16
+ ```typescript
17
+ import { DomainAdd } from '@pidginhost/sdk';
18
+
19
+ const instance: DomainAdd = {
20
+ name,
21
+ dns_source,
22
+ managed_domain,
23
+ managed_external_domain,
24
+ use_inbound,
25
+ };
26
+ ```
27
+
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)