plato-sdk-v2 2.7.5__py3-none-any.whl → 2.7.7__py3-none-any.whl
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.
- plato/_generated/__init__.py +1 -1
- plato/_generated/api/v2/__init__.py +16 -14
- plato/_generated/api/v2/admin/__init__.py +5 -1
- plato/_generated/models/__init__.py +3 -3
- plato/cli/__init__.py +5 -0
- plato/cli/agent.py +1209 -0
- plato/cli/audit_ui.py +316 -0
- plato/cli/chronos.py +817 -0
- plato/cli/main.py +193 -0
- plato/cli/pm.py +1206 -0
- plato/cli/proxy.py +222 -0
- plato/cli/sandbox.py +808 -0
- plato/cli/utils.py +200 -0
- plato/cli/verify.py +690 -0
- plato/cli/world.py +250 -0
- plato/v1/cli/pm.py +4 -1
- plato/v2/__init__.py +2 -0
- plato/v2/models.py +42 -0
- plato/v2/sync/__init__.py +6 -0
- plato/v2/sync/client.py +6 -3
- plato/v2/sync/sandbox.py +1461 -0
- {plato_sdk_v2-2.7.5.dist-info → plato_sdk_v2-2.7.7.dist-info}/METADATA +1 -1
- {plato_sdk_v2-2.7.5.dist-info → plato_sdk_v2-2.7.7.dist-info}/RECORD +25 -13
- {plato_sdk_v2-2.7.5.dist-info → plato_sdk_v2-2.7.7.dist-info}/entry_points.txt +1 -1
- {plato_sdk_v2-2.7.5.dist-info → plato_sdk_v2-2.7.7.dist-info}/WHEEL +0 -0
plato/_generated/__init__.py
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
"""API version module."""
|
|
2
2
|
|
|
3
|
-
from . import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
3
|
+
from . import (
|
|
4
|
+
admin,
|
|
5
|
+
agents,
|
|
6
|
+
artifacts,
|
|
7
|
+
chronos,
|
|
8
|
+
chronos_packages,
|
|
9
|
+
cluster,
|
|
10
|
+
jobs,
|
|
11
|
+
networks,
|
|
12
|
+
pypi,
|
|
13
|
+
releases,
|
|
14
|
+
sessions,
|
|
15
|
+
user,
|
|
16
|
+
)
|
|
15
17
|
|
|
16
18
|
__all__ = [
|
|
17
|
-
"admin
|
|
19
|
+
"admin",
|
|
18
20
|
"agents",
|
|
19
21
|
"artifacts",
|
|
20
22
|
"chronos",
|
|
@@ -26,4 +28,4 @@ __all__ = [
|
|
|
26
28
|
"releases",
|
|
27
29
|
"sessions",
|
|
28
30
|
"user",
|
|
29
|
-
]
|
|
31
|
+
]
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
|
-
# filename:
|
|
3
|
-
# timestamp: 2026-01-29T20:
|
|
2
|
+
# filename: tmpy5rfux2_.json
|
|
3
|
+
# timestamp: 2026-01-29T20:47:53+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
7
|
from enum import Enum
|
|
8
|
-
from typing import Annotated, Any,
|
|
8
|
+
from typing import Annotated, Any, Literal
|
|
9
9
|
|
|
10
10
|
from pydantic import AwareDatetime, BaseModel, ConfigDict, Field, RootModel
|
|
11
11
|
|