Merge pull request #722 from KukiSa/main

Fix Netlify Site Inversion of ca_certificates and key
This commit is contained in:
Yoan.liu 2025-05-25 08:30:14 +08:00 committed by GitHub
commit 9878c12512
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,8 +26,8 @@ func (r *baseResponse) GetMessage() string {
type ProvisionSiteTLSCertificateParams struct {
Certificate string `json:"certificate"`
CACertificates string `json:"key"`
Key string `json:"ca_certificates"`
CACertificates string `json:"ca_certificates"`
Key string `json:"key"`
}
type ProvisionSiteTLSCertificateResponse struct {