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.

Files changed (38) hide show
  1. payi/_client.py +0 -9
  2. payi/_version.py +1 -1
  3. payi/lib/AnthropicInstrumentor.py +1 -2
  4. payi/lib/BedrockInstrumentor.py +3 -3
  5. payi/lib/instrument.py +2 -2
  6. payi/resources/__init__.py +0 -14
  7. payi/resources/ingest.py +14 -28
  8. payi/resources/limits/limits.py +8 -0
  9. payi/resources/use_cases/kpis.py +1 -177
  10. payi/resources/use_cases/properties.py +5 -5
  11. payi/resources/use_cases/use_cases.py +15 -13
  12. payi/types/__init__.py +3 -2
  13. payi/types/ingest_units_params.py +2 -4
  14. payi/types/limit_create_params.py +2 -2
  15. payi/types/{use_case_instance_response.py → use_case_create_response.py} +2 -2
  16. payi/types/{experience_instance_response.py → use_case_delete_response.py} +3 -3
  17. payi/types/use_case_retrieve_response.py +15 -0
  18. payi/types/use_cases/__init__.py +1 -1
  19. payi/types/use_cases/property_create_response.py +15 -0
  20. {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/METADATA +1 -1
  21. {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/RECORD +23 -36
  22. payi/resources/experiences/__init__.py +0 -47
  23. payi/resources/experiences/experiences.py +0 -383
  24. payi/resources/experiences/properties.py +0 -171
  25. payi/resources/experiences/types/__init__.py +0 -33
  26. payi/resources/experiences/types/limit_config.py +0 -272
  27. payi/resources/experiences/types/types.py +0 -581
  28. payi/types/experiences/__init__.py +0 -9
  29. payi/types/experiences/experience_type.py +0 -24
  30. payi/types/experiences/property_create_params.py +0 -12
  31. payi/types/experiences/type_create_params.py +0 -22
  32. payi/types/experiences/type_list_params.py +0 -17
  33. payi/types/experiences/type_update_params.py +0 -14
  34. payi/types/experiences/types/__init__.py +0 -5
  35. payi/types/experiences/types/limit_config_create_params.py +0 -18
  36. payi/types/use_cases/kpi_create_params.py +0 -13
  37. {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/WHEEL +0 -0
  38. {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