Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(hub-common): modify IUpdateEvent to allow null for description, s… #1790

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions packages/common/src/events/api/orval/api/orval-events.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
/* tslint:disable:interface-over-type-literal */
/**
* Generated by orval v6.24.0 🍺
* Do not edit manually.
* Hub Events Service
* OpenAPI spec version: 0.0.1
*/
/**
* Generated by orval v6.24.0 🍺
* Do not edit manually.
Expand Down Expand Up @@ -240,8 +246,8 @@ export interface IUpdateEvent {
capabilities?: IUpdateEventCapabilities;
/** categories for the event */
categories?: string[];
/** Description of the event */
description?: string;
/** Description of the event. null to un-set */
description?: string | null;
/** Groups with edit access to the event */
editGroups?: string[];
/** end date string formatted YYYY-MM-DD */
Expand All @@ -264,12 +270,12 @@ export interface IUpdateEvent {
startTime?: string;
/** Status of the event */
status?: EventStatus;
/** Summary of the event */
summary?: string;
/** Summary of the event. null to un-set */
summary?: string | null;
/** Tags for the event */
tags?: string[];
/** Url for the thumbnail image */
thumbnailUrl?: string;
/** Url for the thumbnail image. null to un-set */
thumbnailUrl?: string | null;
/** IANA time zone for the event */
timeZone?: string;
/** Title of the event */
Expand Down