Skip to content

Commit 26e5829

Browse files
chore(api): upload stainless config from cloudflare-config
1 parent d7d58fc commit 26e5829

File tree

17 files changed

+2910
-6
lines changed

17 files changed

+2910
-6
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: 1781
1+
configured_endpoints: 1791
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-c35ceaa57ff731aa0a379ee4284a6e9608940b917c362163d52feb4be72c8d31.yml
33
openapi_spec_hash: 07fccce915fde9d81a0294df06c47cb4
4-
config_hash: 242134bf2dc570f5555bf479c40a42d0
4+
config_hash: a369123b780ef98d372657aadaf013ee

api.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6378,6 +6378,56 @@ Methods:
63786378

63796379
### TimeseriesGroups
63806380

6381+
Types:
6382+
6383+
- <code><a href="./src/resources/radar/ai/timeseries-groups.ts">TimeseriesGroupSummaryResponse</a></code>
6384+
- <code><a href="./src/resources/radar/ai/timeseries-groups.ts">TimeseriesGroupTimeseriesResponse</a></code>
6385+
- <code><a href="./src/resources/radar/ai/timeseries-groups.ts">TimeseriesGroupTimeseriesGroupsResponse</a></code>
6386+
6387+
Methods:
6388+
6389+
- <code title="get /radar/ai/bots/summary/{dimension}">client.radar.ai.timeseriesGroups.<a href="./src/resources/radar/ai/timeseries-groups.ts">summary</a>(dimension, { ...params }) -> TimeseriesGroupSummaryResponse</code>
6390+
- <code title="get /radar/ai/bots/timeseries">client.radar.ai.timeseriesGroups.<a href="./src/resources/radar/ai/timeseries-groups.ts">timeseries</a>({ ...params }) -> TimeseriesGroupTimeseriesResponse</code>
6391+
- <code title="get /radar/ai/bots/timeseries_groups/{dimension}">client.radar.ai.timeseriesGroups.<a href="./src/resources/radar/ai/timeseries-groups.ts">timeseriesGroups</a>(dimension, { ...params }) -> TimeseriesGroupTimeseriesGroupsResponse</code>
6392+
6393+
## Ct
6394+
6395+
Types:
6396+
6397+
- <code><a href="./src/resources/radar/ct/ct.ts">CtSummaryResponse</a></code>
6398+
- <code><a href="./src/resources/radar/ct/ct.ts">CtTimeseriesResponse</a></code>
6399+
- <code><a href="./src/resources/radar/ct/ct.ts">CtTimeseriesGroupsResponse</a></code>
6400+
6401+
Methods:
6402+
6403+
- <code title="get /radar/ct/summary/{dimension}">client.radar.ct.<a href="./src/resources/radar/ct/ct.ts">summary</a>(dimension, { ...params }) -> CtSummaryResponse</code>
6404+
- <code title="get /radar/ct/timeseries">client.radar.ct.<a href="./src/resources/radar/ct/ct.ts">timeseries</a>({ ...params }) -> CtTimeseriesResponse</code>
6405+
- <code title="get /radar/ct/timeseries_groups/{dimension}">client.radar.ct.<a href="./src/resources/radar/ct/ct.ts">timeseriesGroups</a>(dimension, { ...params }) -> CtTimeseriesGroupsResponse</code>
6406+
6407+
### Authorities
6408+
6409+
Types:
6410+
6411+
- <code><a href="./src/resources/radar/ct/authorities.ts">AuthorityListResponse</a></code>
6412+
- <code><a href="./src/resources/radar/ct/authorities.ts">AuthorityGetResponse</a></code>
6413+
6414+
Methods:
6415+
6416+
- <code title="get /radar/ct/authorities">client.radar.ct.authorities.<a href="./src/resources/radar/ct/authorities.ts">list</a>({ ...params }) -> AuthorityListResponse</code>
6417+
- <code title="get /radar/ct/authorities/{ca_slug}">client.radar.ct.authorities.<a href="./src/resources/radar/ct/authorities.ts">get</a>(caSlug, { ...params }) -> AuthorityGetResponse</code>
6418+
6419+
### Logs
6420+
6421+
Types:
6422+
6423+
- <code><a href="./src/resources/radar/ct/logs.ts">LogListResponse</a></code>
6424+
- <code><a href="./src/resources/radar/ct/logs.ts">LogGetResponse</a></code>
6425+
6426+
Methods:
6427+
6428+
- <code title="get /radar/ct/logs">client.radar.ct.logs.<a href="./src/resources/radar/ct/logs.ts">list</a>({ ...params }) -> LogListResponse</code>
6429+
- <code title="get /radar/ct/logs/{log_slug}">client.radar.ct.logs.<a href="./src/resources/radar/ct/logs.ts">get</a>(logSlug, { ...params }) -> LogGetResponse</code>
6430+
63816431
## Annotations
63826432

63836433
Types:

scripts/detect-breaking-changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,10 @@ TEST_PATHS=(
542542
tests/api-resources/radar/ai/inference/summary.test.ts
543543
tests/api-resources/radar/ai/inference/timeseries-groups/timeseries-groups.test.ts
544544
tests/api-resources/radar/ai/inference/timeseries-groups/summary.test.ts
545+
tests/api-resources/radar/ai/timeseries-groups.test.ts
546+
tests/api-resources/radar/ct/ct.test.ts
547+
tests/api-resources/radar/ct/authorities.test.ts
548+
tests/api-resources/radar/ct/logs.test.ts
545549
tests/api-resources/radar/annotations/annotations.test.ts
546550
tests/api-resources/radar/annotations/outages.test.ts
547551
tests/api-resources/radar/bgp/bgp.test.ts

src/resources/radar/ai/ai.ts

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
import { APIResource } from '../../../resource';
44
import * as TimeseriesGroupsAPI from './timeseries-groups';
5-
import { TimeseriesGroups } from './timeseries-groups';
5+
import {
6+
TimeseriesGroupSummaryParams,
7+
TimeseriesGroupSummaryResponse,
8+
TimeseriesGroupTimeseriesGroupsParams,
9+
TimeseriesGroupTimeseriesGroupsResponse,
10+
TimeseriesGroupTimeseriesParams,
11+
TimeseriesGroupTimeseriesResponse,
12+
TimeseriesGroups,
13+
} from './timeseries-groups';
614
import * as ToMarkdownAPI from './to-markdown';
715
import {
816
ToMarkdown,
@@ -42,5 +50,13 @@ export declare namespace AI {
4250

4351
export { Bots as Bots };
4452

45-
export { TimeseriesGroups as TimeseriesGroups };
53+
export {
54+
TimeseriesGroups as TimeseriesGroups,
55+
type TimeseriesGroupSummaryResponse as TimeseriesGroupSummaryResponse,
56+
type TimeseriesGroupTimeseriesResponse as TimeseriesGroupTimeseriesResponse,
57+
type TimeseriesGroupTimeseriesGroupsResponse as TimeseriesGroupTimeseriesGroupsResponse,
58+
type TimeseriesGroupSummaryParams as TimeseriesGroupSummaryParams,
59+
type TimeseriesGroupTimeseriesParams as TimeseriesGroupTimeseriesParams,
60+
type TimeseriesGroupTimeseriesGroupsParams as TimeseriesGroupTimeseriesGroupsParams,
61+
};
4662
}

src/resources/radar/ai/index.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,15 @@
33
export { AI } from './ai';
44
export { Bots } from './bots/index';
55
export { Inference } from './inference/index';
6-
export { TimeseriesGroups } from './timeseries-groups';
6+
export {
7+
TimeseriesGroups,
8+
type TimeseriesGroupSummaryResponse,
9+
type TimeseriesGroupTimeseriesResponse,
10+
type TimeseriesGroupTimeseriesGroupsResponse,
11+
type TimeseriesGroupSummaryParams,
12+
type TimeseriesGroupTimeseriesParams,
13+
type TimeseriesGroupTimeseriesGroupsParams,
14+
} from './timeseries-groups';
715
export {
816
ToMarkdownCreateResponsesSinglePage,
917
ToMarkdown,

0 commit comments

Comments
 (0)