@@ -211,6 +211,7 @@ def __new__(
211211 * _args ,
212212 _configuration = _configuration ,
213213 )
214+ draft = schemas .BoolSchema
214215 __annotations__ = {
215216 "provenance" : provenance ,
216217 "meta_analyses" : meta_analyses ,
@@ -219,6 +220,7 @@ def __new__(
219220 "public" : public ,
220221 "neurostore_study" : neurostore_study ,
221222 "neurostore_url" : neurostore_url ,
223+ "draft" : draft ,
222224 }
223225
224226 @typing .overload
@@ -242,10 +244,13 @@ def __getitem__(self, name: typing_extensions.Literal["neurostore_study"]) -> 'N
242244 @typing .overload
243245 def __getitem__ (self , name : typing_extensions .Literal ["neurostore_url" ]) -> MetaOapg .properties .neurostore_url : ...
244246
247+ @typing .overload
248+ def __getitem__ (self , name : typing_extensions .Literal ["draft" ]) -> MetaOapg .properties .draft : ...
249+
245250 @typing .overload
246251 def __getitem__ (self , name : str ) -> schemas .UnsetAnyTypeSchema : ...
247252
248- def __getitem__ (self , name : typing .Union [typing_extensions .Literal ["provenance" , "meta_analyses" , "name" , "description" , "public" , "neurostore_study" , "neurostore_url" , ], str ]):
253+ def __getitem__ (self , name : typing .Union [typing_extensions .Literal ["provenance" , "meta_analyses" , "name" , "description" , "public" , "neurostore_study" , "neurostore_url" , "draft" , ], str ]):
249254 # dict_instance[name] accessor
250255 return super ().__getitem__ (name )
251256
@@ -271,10 +276,13 @@ def get_item_oapg(self, name: typing_extensions.Literal["neurostore_study"]) ->
271276 @typing .overload
272277 def get_item_oapg (self , name : typing_extensions .Literal ["neurostore_url" ]) -> typing .Union [MetaOapg .properties .neurostore_url , schemas .Unset ]: ...
273278
279+ @typing .overload
280+ def get_item_oapg (self , name : typing_extensions .Literal ["draft" ]) -> typing .Union [MetaOapg .properties .draft , schemas .Unset ]: ...
281+
274282 @typing .overload
275283 def get_item_oapg (self , name : str ) -> typing .Union [schemas .UnsetAnyTypeSchema , schemas .Unset ]: ...
276284
277- def get_item_oapg (self , name : typing .Union [typing_extensions .Literal ["provenance" , "meta_analyses" , "name" , "description" , "public" , "neurostore_study" , "neurostore_url" , ], str ]):
285+ def get_item_oapg (self , name : typing .Union [typing_extensions .Literal ["provenance" , "meta_analyses" , "name" , "description" , "public" , "neurostore_study" , "neurostore_url" , "draft" , ], str ]):
278286 return super ().get_item_oapg (name )
279287
280288
@@ -288,6 +296,7 @@ def __new__(
288296 public : typing .Union [MetaOapg .properties .public , bool , schemas .Unset ] = schemas .unset ,
289297 neurostore_study : typing .Union ['NeurostoreStudy' , schemas .Unset ] = schemas .unset ,
290298 neurostore_url : typing .Union [MetaOapg .properties .neurostore_url , None , str , schemas .Unset ] = schemas .unset ,
299+ draft : typing .Union [MetaOapg .properties .draft , bool , schemas .Unset ] = schemas .unset ,
291300 _configuration : typing .Optional [schemas .Configuration ] = None ,
292301 ** kwargs : typing .Union [schemas .AnyTypeSchema , dict , frozendict .frozendict , str , date , datetime , uuid .UUID , int , float , decimal .Decimal , None , list , tuple , bytes ],
293302 ) -> 'Project' :
@@ -301,6 +310,7 @@ def __new__(
301310 public = public ,
302311 neurostore_study = neurostore_study ,
303312 neurostore_url = neurostore_url ,
313+ draft = draft ,
304314 _configuration = _configuration ,
305315 ** kwargs ,
306316 )
0 commit comments