Skip to content

Commit aeca958

Browse files
committedFeb 3, 2025
feat(api): api update (#3887)
1 parent 32ae98c commit aeca958

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1525
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-d584521239e9a0c95bf67e1ac053785606e51cc3fd7c8781b797fa3ee16c095c.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-6457c71e9f79569df976f6b53f72da9490ec438a4e04f10fe2f12c2ce25238de.yml

‎zones/zone.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,9 @@ type Zone struct {
200200
// An array of domains used for custom name servers. This is only available for
201201
// Business and Enterprise plans.
202202
VanityNameServers []string `json:"vanity_name_servers" format:"hostname"`
203-
JSON zoneJSON `json:"-"`
203+
// Verification key for partial zone setup.
204+
VerificationKey string `json:"verification_key"`
205+
JSON zoneJSON `json:"-"`
204206
}
205207

206208
// zoneJSON contains the JSON metadata for the struct [Zone]
@@ -222,6 +224,7 @@ type zoneJSON struct {
222224
Status apijson.Field
223225
Type apijson.Field
224226
VanityNameServers apijson.Field
227+
VerificationKey apijson.Field
225228
raw string
226229
ExtraFields map[string]apijson.Field
227230
}

0 commit comments

Comments
 (0)
Please sign in to comment.