payi 0.1.0a93__py3-none-any.whl → 0.1.0a95__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.
Potentially problematic release.
This version of payi might be problematic. Click here for more details.
- payi/_client.py +0 -9
- payi/_version.py +1 -1
- payi/lib/AnthropicInstrumentor.py +1 -2
- payi/lib/BedrockInstrumentor.py +3 -3
- payi/lib/instrument.py +2 -2
- payi/resources/__init__.py +0 -14
- payi/resources/ingest.py +14 -28
- payi/resources/limits/limits.py +8 -0
- payi/resources/use_cases/kpis.py +1 -177
- payi/resources/use_cases/properties.py +5 -5
- payi/resources/use_cases/use_cases.py +15 -13
- payi/types/__init__.py +3 -2
- payi/types/ingest_units_params.py +2 -4
- payi/types/limit_create_params.py +2 -2
- payi/types/{use_case_instance_response.py → use_case_create_response.py} +2 -2
- payi/types/{experience_instance_response.py → use_case_delete_response.py} +3 -3
- payi/types/use_case_retrieve_response.py +15 -0
- payi/types/use_cases/__init__.py +1 -1
- payi/types/use_cases/property_create_response.py +15 -0
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/METADATA +1 -1
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/RECORD +23 -36
- payi/resources/experiences/__init__.py +0 -47
- payi/resources/experiences/experiences.py +0 -383
- payi/resources/experiences/properties.py +0 -171
- payi/resources/experiences/types/__init__.py +0 -33
- payi/resources/experiences/types/limit_config.py +0 -272
- payi/resources/experiences/types/types.py +0 -581
- payi/types/experiences/__init__.py +0 -9
- payi/types/experiences/experience_type.py +0 -24
- payi/types/experiences/property_create_params.py +0 -12
- payi/types/experiences/type_create_params.py +0 -22
- payi/types/experiences/type_list_params.py +0 -17
- payi/types/experiences/type_update_params.py +0 -14
- payi/types/experiences/types/__init__.py +0 -5
- payi/types/experiences/types/limit_config_create_params.py +0 -18
- payi/types/use_cases/kpi_create_params.py +0 -13
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/WHEEL +0 -0
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
from typing import List, Optional
|
|
6
|
-
from typing_extensions import Literal, Required, TypedDict
|
|
7
|
-
|
|
8
|
-
__all__ = ["LimitConfigCreateParams"]
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class LimitConfigCreateParams(TypedDict, total=False):
|
|
12
|
-
max: Required[float]
|
|
13
|
-
|
|
14
|
-
limit_tags: Optional[List[str]]
|
|
15
|
-
|
|
16
|
-
limit_type: Literal["block", "allow"]
|
|
17
|
-
|
|
18
|
-
threshold: Optional[float]
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
from typing_extensions import Required, TypedDict
|
|
6
|
-
|
|
7
|
-
__all__ = ["KpiCreateParams"]
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class KpiCreateParams(TypedDict, total=False):
|
|
11
|
-
use_case_id: Required[str]
|
|
12
|
-
|
|
13
|
-
score: float
|
|
File without changes
|
|
File without changes
|