Skip to content

Commit bf951e2

Browse files
authored
Merge pull request #4287 from cloudflare/sync/staging-next-2026-05-06
Sync staged changes (curated)
2 parents d412ddc + a005ae7 commit bf951e2

38 files changed

Lines changed: 4363 additions & 768 deletions

.github/workflows/detect-breaking-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
detect_breaking_changes:
1010
runs-on: 'ubuntu-latest'
1111
name: detect-breaking-changes
12-
if: true # bypass for major version bump with breaking changes
12+
if: false # bypass for major version bump with breaking changes
1313
steps:
1414
- name: Calculate fetch-depth
1515
run: |

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 2212
1+
configured_endpoints: 2231
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a6c352830d1270d0abb5bb983058ea21815e1bb7d2e163965335dcb0e706f057.yml
3-
openapi_spec_hash: e722ad1f58e3dfb3a928cf9890d48da4
4-
config_hash: ff549978909de2badc92845fea964f4b
3+
openapi_spec_hash: bffae552c9187ab2f14f0c87039bdbab
4+
config_hash: f450f135e11cc00980b6c05811e4988d

ai_gateway/aigateway.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ type AIGatewayService struct {
3636
DynamicRouting *DynamicRoutingService
3737
ProviderConfigs *ProviderConfigService
3838
URLs *URLService
39+
Billing *BillingService
3940
}
4041

4142
// NewAIGatewayService generates a new service that applies the given options to
@@ -51,6 +52,7 @@ func NewAIGatewayService(opts ...option.RequestOption) (r *AIGatewayService) {
5152
r.DynamicRouting = NewDynamicRoutingService(opts...)
5253
r.ProviderConfigs = NewProviderConfigService(opts...)
5354
r.URLs = NewURLService(opts...)
55+
r.Billing = NewBillingService(opts...)
5456
return
5557
}
5658

0 commit comments

Comments
 (0)