refactor(server): use date type for entities (#2602)

This commit is contained in:
Michel Heusschen
2023-05-30 15:15:56 +02:00
committed by GitHub
parent 3d505e425d
commit 789e3e3924
49 changed files with 243 additions and 217 deletions

View File

@@ -2712,12 +2712,6 @@ export interface UserResponseDto {
* @memberof UserResponseDto
*/
'storageLabel': string | null;
/**
*
* @type {string}
* @memberof UserResponseDto
*/
'createdAt': string;
/**
*
* @type {string}
@@ -2741,13 +2735,19 @@ export interface UserResponseDto {
* @type {string}
* @memberof UserResponseDto
*/
'deletedAt'?: string;
'createdAt': string;
/**
*
* @type {string}
* @memberof UserResponseDto
*/
'updatedAt'?: string;
'deletedAt': string | null;
/**
*
* @type {string}
* @memberof UserResponseDto
*/
'updatedAt': string;
/**
*
* @type {string}