This commit is contained in:
2025-12-04 17:54:31 +01:00
parent eb403c3aac
commit db4a851a81
41 changed files with 3108 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateShowDto {
name?: string | null;
place?: string | null;
description?: string | null;
pyrotechnicImplementationPlan?: string | null;
date?: string | null;
cityId?: number;
}

View File

@@ -0,0 +1,15 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateSoundCategoryDto {
name?: string | null;
}

View File

@@ -0,0 +1,22 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateSoundDto {
name?: string | null;
type?: string | null;
artist?: string | null;
duration?: string | null;
kind?: string | null;
format?: string | null;
creationDate?: string | null;
soundCategoryId?: string | null;
}

View File

@@ -0,0 +1,18 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateSoundTimecodeDto {
showId?: number;
soundId?: number;
start?: number;
end?: number;
}

View File

@@ -0,0 +1,18 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateStaffDto {
firstName?: string | null;
lastName?: string | null;
profession?: string | null;
email?: string | null;
}

View File

@@ -0,0 +1,19 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface CreateTruckDto {
type?: string | null;
maxExplosiveCapacity?: number | null;
sizes?: string | null;
status?: string | null;
showId?: number | null;
}

View File

@@ -0,0 +1,18 @@
export * from './create-show-dto';
export * from './create-sound-category-dto';
export * from './create-sound-dto';
export * from './create-sound-timecode-dto';
export * from './create-staff-dto';
export * from './create-truck-dto';
export * from './read-show-dto';
export * from './read-sound-category-dto';
export * from './read-sound-dto';
export * from './read-sound-timecode-dto';
export * from './read-staff-dto';
export * from './read-truck-dto';
export * from './update-show-dto';
export * from './update-sound-category-dto';
export * from './update-sound-dto';
export * from './update-sound-timecode-request';
export * from './update-staff-dto';
export * from './update-truck-dto';

View File

@@ -0,0 +1,20 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface ReadShowDto {
id?: number | null;
name?: string | null;
place?: string | null;
description?: string | null;
pyrotechnicImplementationPlan?: string | null;
date?: string | null;
}

View File

@@ -0,0 +1,16 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface ReadSoundCategoryDto {
id?: number | null;
name?: string | null;
}

View File

@@ -0,0 +1,23 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface ReadSoundDto {
id?: number | null;
name?: string | null;
type?: string | null;
artist?: string | null;
duration?: string | null;
kind?: string | null;
format?: string | null;
creationDate?: string | null;
soundCategoryId?: string | null;
}

View File

@@ -0,0 +1,19 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface ReadSoundTimecodeDto {
id?: number | null;
showId?: number | null;
soundId?: number | null;
start?: number;
end?: number;
}

View File

@@ -0,0 +1,19 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface ReadStaffDto {
id?: number | null;
firstName?: string | null;
lastName?: string | null;
profession?: string | null;
email?: string | null;
}

View File

@@ -0,0 +1,20 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface ReadTruckDto {
id?: number | null;
type?: string | null;
maxExplosiveCapacity?: number | null;
sizes?: string | null;
statut?: string | null;
showId?: number | null;
}

View File

@@ -0,0 +1,19 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface UpdateShowDto {
name?: string | null;
place?: string | null;
description?: string | null;
pyrotechnicImplementationPlan?: string | null;
date?: string | null;
}

View File

@@ -0,0 +1,15 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface UpdateSoundCategoryDto {
name?: string | null;
}

View File

@@ -0,0 +1,22 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface UpdateSoundDto {
name?: string | null;
type?: string | null;
artist?: string | null;
duration?: string | null;
kind?: string | null;
format?: string | null;
creationDate?: string | null;
soundCategoryId?: string | null;
}

View File

@@ -0,0 +1,16 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface UpdateSoundTimecodeRequest {
start?: number;
end?: number;
}

View File

@@ -0,0 +1,18 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface UpdateStaffDto {
firstName?: string | null;
lastName?: string | null;
profession?: string | null;
email?: string | null;
}

View File

@@ -0,0 +1,19 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface UpdateTruckDto {
type?: string | null;
maxExplosiveCapacity?: string | null;
sizes?: string | null;
statut?: string | null;
showId?: number | null;
}