Skip to content

Commit

Permalink
👽 Update ReleaseNote model to match the one that is in SAM
Browse files Browse the repository at this point in the history
  • Loading branch information
mariush2 committed Dec 18, 2024
1 parent bdaa86e commit d7f379e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/api/models/ReleaseNote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
/* tslint:disable */
/* eslint-disable */
export type ReleaseNote = {
releaseId?: string | null;
releaseId: string;
applicationName: string;
version?: string | null;
title: string;
body: string;
tags?: Array<string> | null;
draft: boolean;
createdDate: string;
releaseDate?: string | null;
};

0 comments on commit d7f379e

Please sign in to comment.