Update api spec (#303)

* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
zoo-github-actions-auth[bot]
2024-10-10 19:43:39 -07:00
committed by GitHub
parent 69118b949d
commit 8d9bc7a743
6 changed files with 759 additions and 723 deletions

View File

@ -1,3 +1,5 @@
from typing import Optional
from pydantic import BaseModel, ConfigDict
from ..models.modeling_app_individual_subscription_tier import (
@ -10,4 +12,6 @@ class ZooProductSubscriptionsUserRequest(BaseModel):
modeling_app: ModelingAppIndividualSubscriptionTier = "free" # type: ignore
pay_annually: Optional[bool] = None
model_config = ConfigDict(protected_namespaces=())