ebiose-cloud-sdk 0.1.865.dev0__tar.gz → 0.1.882.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/PKG-INFO +1 -1
- {ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/ebiose_cloud_sdk/models.py +7 -0
- {ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/pyproject.toml +1 -1
- {ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/.gitignore +0 -0
- {ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/README.md +0 -0
- {ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/ebiose_cloud_sdk/__init__.py +0 -0
|
@@ -429,6 +429,13 @@ class Tier(StrEnum):
|
|
|
429
429
|
Pro = "Pro"
|
|
430
430
|
|
|
431
431
|
|
|
432
|
+
class TierUpdateInputModel(BaseModel):
|
|
433
|
+
model_config = ConfigDict(
|
|
434
|
+
extra="forbid",
|
|
435
|
+
)
|
|
436
|
+
tier: Tier | None = None
|
|
437
|
+
|
|
438
|
+
|
|
432
439
|
class UserInputModel(BaseModel):
|
|
433
440
|
model_config = ConfigDict(
|
|
434
441
|
extra="forbid",
|
|
File without changes
|
|
File without changes
|
{ebiose_cloud_sdk-0.1.865.dev0 → ebiose_cloud_sdk-0.1.882.dev0}/ebiose_cloud_sdk/__init__.py
RENAMED
|
File without changes
|