Skip to content

Commit 5ee5098

Browse files
chore(api): upload stainless config from cloudflare-config
1 parent c702444 commit 5ee5098

File tree

11 files changed

+1346
-1106
lines changed

11 files changed

+1346
-1106
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 1790
1+
configured_endpoints: 1791
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a617495230e553e067b258702b644f898b56c21bdf238c1eb2dd10df376f098d.yml
33
openapi_spec_hash: ae16f120056f9a9558a408f0c1ecb626
4-
config_hash: 320699f1f989d92845c2558a970acd18
4+
config_hash: f20ebbab54916fcc81ef643e3acda11a

api.md

Lines changed: 58 additions & 44 deletions
Large diffs are not rendered by default.

radar/ai.go

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ import (
1313
// automatically. You should not instantiate this service directly, and instead use
1414
// the [NewAIService] method instead.
1515
type AIService struct {
16-
Options []option.RequestOption
17-
Inference *AIInferenceService
18-
Bots *AIBotService
16+
Options []option.RequestOption
17+
ToMarkdown *AIToMarkdownService
18+
Inference *AIInferenceService
19+
Bots *AIBotService
20+
TimeseriesGroups *AITimeseriesGroupService
1921
}
2022

2123
// NewAIService generates a new service that applies the given options to each
@@ -24,7 +26,9 @@ type AIService struct {
2426
func NewAIService(opts ...option.RequestOption) (r *AIService) {
2527
r = &AIService{}
2628
r.Options = opts
29+
r.ToMarkdown = NewAIToMarkdownService(opts...)
2730
r.Inference = NewAIInferenceService(opts...)
2831
r.Bots = NewAIBotService(opts...)
32+
r.TimeseriesGroups = NewAITimeseriesGroupService(opts...)
2933
return
3034
}

0 commit comments

Comments
 (0)