payi 0.1.0a130__py3-none-any.whl → 0.1.0a131__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 (32) hide show
  1. payi/_version.py +1 -1
  2. payi/resources/categories/categories.py +4 -0
  3. payi/resources/limits/__init__.py +14 -14
  4. payi/resources/limits/limits.py +26 -26
  5. payi/resources/limits/properties.py +171 -0
  6. payi/resources/requests/request_id/properties.py +2 -2
  7. payi/resources/requests/response_id/properties.py +2 -2
  8. payi/resources/use_cases/definitions/limit_config.py +6 -6
  9. payi/types/category_list_resources_params.py +5 -1
  10. payi/types/category_resource_response.py +1 -3
  11. payi/types/limit_create_params.py +3 -5
  12. payi/types/limit_list_response.py +1 -3
  13. payi/types/limit_response.py +1 -3
  14. payi/types/limits/__init__.py +2 -9
  15. payi/types/limits/property_update_params.py +12 -0
  16. payi/types/limits/{tag_remove_response.py → property_update_response.py} +3 -3
  17. payi/types/shared/pay_i_common_models_budget_management_create_limit_base.py +3 -3
  18. payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py +3 -5
  19. payi/types/use_cases/definitions/limit_config_create_params.py +3 -5
  20. {payi-0.1.0a130.dist-info → payi-0.1.0a131.dist-info}/METADATA +1 -1
  21. {payi-0.1.0a130.dist-info → payi-0.1.0a131.dist-info}/RECORD +23 -30
  22. payi/resources/limits/tags.py +0 -505
  23. payi/types/limits/limit_tags.py +0 -16
  24. payi/types/limits/tag_create_params.py +0 -14
  25. payi/types/limits/tag_create_response.py +0 -10
  26. payi/types/limits/tag_delete_response.py +0 -10
  27. payi/types/limits/tag_list_response.py +0 -10
  28. payi/types/limits/tag_remove_params.py +0 -14
  29. payi/types/limits/tag_update_params.py +0 -14
  30. payi/types/limits/tag_update_response.py +0 -10
  31. {payi-0.1.0a130.dist-info → payi-0.1.0a131.dist-info}/WHEEL +0 -0
  32. {payi-0.1.0a130.dist-info → payi-0.1.0a131.dist-info}/licenses/LICENSE +0 -0
@@ -1,14 +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
- from ..._types import SequenceNotStr
8
-
9
- __all__ = ["TagCreateParams"]
10
-
11
-
12
- class TagCreateParams(TypedDict, total=False):
13
- limit_tags: Required[SequenceNotStr[str]]
14
- """List of limit tags"""
@@ -1,10 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List
4
- from typing_extensions import TypeAlias
5
-
6
- from .limit_tags import LimitTags
7
-
8
- __all__ = ["TagCreateResponse"]
9
-
10
- TagCreateResponse: TypeAlias = List[LimitTags]
@@ -1,10 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List
4
- from typing_extensions import TypeAlias
5
-
6
- from .limit_tags import LimitTags
7
-
8
- __all__ = ["TagDeleteResponse"]
9
-
10
- TagDeleteResponse: TypeAlias = List[LimitTags]
@@ -1,10 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List
4
- from typing_extensions import TypeAlias
5
-
6
- from .limit_tags import LimitTags
7
-
8
- __all__ = ["TagListResponse"]
9
-
10
- TagListResponse: TypeAlias = List[LimitTags]
@@ -1,14 +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
- from ..._types import SequenceNotStr
8
-
9
- __all__ = ["TagRemoveParams"]
10
-
11
-
12
- class TagRemoveParams(TypedDict, total=False):
13
- limit_tags: Required[SequenceNotStr[str]]
14
- """List of limit tags"""
@@ -1,14 +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
- from ..._types import SequenceNotStr
8
-
9
- __all__ = ["TagUpdateParams"]
10
-
11
-
12
- class TagUpdateParams(TypedDict, total=False):
13
- limit_tags: Required[SequenceNotStr[str]]
14
- """List of limit tags"""
@@ -1,10 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import List
4
- from typing_extensions import TypeAlias
5
-
6
- from .limit_tags import LimitTags
7
-
8
- __all__ = ["TagUpdateResponse"]
9
-
10
- TagUpdateResponse: TypeAlias = List[LimitTags]