.
This commit is contained in:
20
src/app/services/api/model/create-show-dto.ts
Normal file
20
src/app/services/api/model/create-show-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
15
src/app/services/api/model/create-sound-category-dto.ts
Normal file
15
src/app/services/api/model/create-sound-category-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
22
src/app/services/api/model/create-sound-dto.ts
Normal file
22
src/app/services/api/model/create-sound-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
18
src/app/services/api/model/create-sound-timecode-dto.ts
Normal file
18
src/app/services/api/model/create-sound-timecode-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
18
src/app/services/api/model/create-staff-dto.ts
Normal file
18
src/app/services/api/model/create-staff-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
19
src/app/services/api/model/create-truck-dto.ts
Normal file
19
src/app/services/api/model/create-truck-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
18
src/app/services/api/model/models.ts
Normal file
18
src/app/services/api/model/models.ts
Normal 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';
|
||||
20
src/app/services/api/model/read-show-dto.ts
Normal file
20
src/app/services/api/model/read-show-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
16
src/app/services/api/model/read-sound-category-dto.ts
Normal file
16
src/app/services/api/model/read-sound-category-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
23
src/app/services/api/model/read-sound-dto.ts
Normal file
23
src/app/services/api/model/read-sound-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
19
src/app/services/api/model/read-sound-timecode-dto.ts
Normal file
19
src/app/services/api/model/read-sound-timecode-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
19
src/app/services/api/model/read-staff-dto.ts
Normal file
19
src/app/services/api/model/read-staff-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
20
src/app/services/api/model/read-truck-dto.ts
Normal file
20
src/app/services/api/model/read-truck-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
19
src/app/services/api/model/update-show-dto.ts
Normal file
19
src/app/services/api/model/update-show-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
15
src/app/services/api/model/update-sound-category-dto.ts
Normal file
15
src/app/services/api/model/update-sound-category-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
22
src/app/services/api/model/update-sound-dto.ts
Normal file
22
src/app/services/api/model/update-sound-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
16
src/app/services/api/model/update-sound-timecode-request.ts
Normal file
16
src/app/services/api/model/update-sound-timecode-request.ts
Normal 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;
|
||||
}
|
||||
|
||||
18
src/app/services/api/model/update-staff-dto.ts
Normal file
18
src/app/services/api/model/update-staff-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
19
src/app/services/api/model/update-truck-dto.ts
Normal file
19
src/app/services/api/model/update-truck-dto.ts
Normal 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user