package.json updated + all dto imported

This commit is contained in:
2025-12-04 16:55:34 +01:00
parent 265acb7ba9
commit ecb098a34f
99 changed files with 7522 additions and 48 deletions
@@ -0,0 +1,46 @@
/**
* PyroFetes
*
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Severity } from './severity';
/**
* Defines a validation failure
*/
export interface ValidationFailure {
/**
* The name of the property.
*/
propertyName?: string | null;
/**
* The error message
*/
errorMessage?: string | null;
/**
* The property value that caused the failure.
*/
attemptedValue?: any | null;
/**
* Custom state associated with the failure.
*/
customState?: any | null;
severity?: Severity;
/**
* Gets or sets the error code.
*/
errorCode?: string | null;
/**
* Gets or sets the formatted message placeholder values.
*/
formattedMessagePlaceholderValues?: { [key: string]: any; } | null;
}
export namespace ValidationFailure {
}