update to 0.1.33

This commit is contained in:
Mickael BOURNEUF 2024-12-02 17:07:35 +01:00
parent 31ae5415b4
commit fe00221ff8
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ class VMPost(VM):
"""VM DELETE"""
class VMDelete(BaseModel):
id:UUID4 = Field()
inventory_only:bool = Field(default=True)
inventory_only:Optional[bool] = Field(default=True)
"""VM STOP"""
class VMStop(BaseModel):

View File

@ -2,7 +2,7 @@ from setuptools import find_packages, setup
setup(
name='deevirt_schema',
version='0.1.32',
version='0.1.33',
description='Deevirt Schema',
url='https://git.celeonet.fr/Deevirt/deevirt_schema.git',
author='Celeonet',