From 33552b4018580cf47364b9e909d99f367e4406cc Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:35:01 +0000 Subject: [PATCH] feat(api): OpenAPI spec update via Stainless API (#290) --- src/resources/radar/bgp/routes.ts | 5 +++++ tests/api-resources/radar/bgp/routes.test.ts | 1 + 2 files changed, 6 insertions(+) diff --git a/src/resources/radar/bgp/routes.ts b/src/resources/radar/bgp/routes.ts index 5fb559b6ee..3169184a15 100644 --- a/src/resources/radar/bgp/routes.ts +++ b/src/resources/radar/bgp/routes.ts @@ -348,6 +348,11 @@ export interface RouteTimeseriesParams { */ format?: 'JSON' | 'CSV'; + /** + * Include data delay meta information + */ + includeDelay?: boolean; + /** * Location Alpha2 code. */ diff --git a/tests/api-resources/radar/bgp/routes.test.ts b/tests/api-resources/radar/bgp/routes.test.ts index fc507e3b3a..36ac0b74fb 100644 --- a/tests/api-resources/radar/bgp/routes.test.ts +++ b/tests/api-resources/radar/bgp/routes.test.ts @@ -134,6 +134,7 @@ describe('resource routes', () => { dateRange: '7d', dateStart: '2023-09-01T11:41:33.782Z', format: 'JSON', + includeDelay: true, location: 'US', }, { path: '/_stainless_unknown_path' },