Skip to content

Commit e3baed4

Browse files
algolia-botmillotp
andcommitted
fix(specs): event.status can be null (generated)
algolia/api-clients-automation#4727 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent e70eb8c commit e3baed4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/ingestion/model/event.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export type Event = {
1717
*/
1818
runID: string;
1919

20-
status: EventStatus;
20+
status: EventStatus | null;
2121

2222
type: EventType;
2323

@@ -26,7 +26,7 @@ export type Event = {
2626
*/
2727
batchSize: number;
2828

29-
data?: { [key: string]: any };
29+
data?: { [key: string]: any } | null;
3030

3131
/**
3232
* Date of publish RFC 3339 format.

packages/ingestion/model/sourceDocker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
export type SourceDocker = {
44
/**
5-
* Shortname of the image, as returned by the referential.
5+
* Name of the connector.
66
*/
77
image: string;
88

0 commit comments

Comments
 (0)