From 7fa7800d830204089ab7c2b99c017bfbbd3ca0c0 Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Mon, 13 Jan 2025 16:02:33 +0000 Subject: [PATCH] fix(specs): ingestion expected and received events type [skip-bc] (generated) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/algolia/api-clients-automation/pull/4356 Co-authored-by: algolia-bot Co-authored-by: Clément Vannicatte --- packages/ingestion/model/runProgress.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ingestion/model/runProgress.ts b/packages/ingestion/model/runProgress.ts index d35d942f3..545f98517 100644 --- a/packages/ingestion/model/runProgress.ts +++ b/packages/ingestion/model/runProgress.ts @@ -1,7 +1,7 @@ // Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. export type RunProgress = { - expectedNbOfEvents?: number; + expectedNbOfEvents: number; - receivedNbOfEvents?: number; + receivedNbOfEvents: number; };