payi 0.1.0a129__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.
- payi/_version.py +1 -1
- payi/resources/categories/categories.py +4 -0
- payi/resources/limits/__init__.py +14 -14
- payi/resources/limits/limits.py +26 -26
- payi/resources/limits/properties.py +171 -0
- payi/resources/requests/request_id/properties.py +2 -2
- payi/resources/requests/response_id/properties.py +2 -2
- payi/resources/use_cases/definitions/limit_config.py +6 -6
- payi/types/category_list_resources_params.py +5 -1
- payi/types/category_resource_response.py +1 -3
- payi/types/limit_create_params.py +3 -5
- payi/types/limit_list_response.py +1 -3
- payi/types/limit_response.py +1 -3
- payi/types/limits/__init__.py +2 -9
- payi/types/limits/property_update_params.py +12 -0
- payi/types/limits/{tag_remove_response.py → property_update_response.py} +3 -3
- payi/types/shared/pay_i_common_models_budget_management_create_limit_base.py +3 -3
- payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py +3 -5
- payi/types/use_cases/definitions/limit_config_create_params.py +3 -5
- {payi-0.1.0a129.dist-info → payi-0.1.0a131.dist-info}/METADATA +2 -2
- {payi-0.1.0a129.dist-info → payi-0.1.0a131.dist-info}/RECORD +23 -30
- payi/resources/limits/tags.py +0 -505
- payi/types/limits/limit_tags.py +0 -16
- payi/types/limits/tag_create_params.py +0 -14
- payi/types/limits/tag_create_response.py +0 -10
- payi/types/limits/tag_delete_response.py +0 -10
- payi/types/limits/tag_list_response.py +0 -10
- payi/types/limits/tag_remove_params.py +0 -14
- payi/types/limits/tag_update_params.py +0 -14
- payi/types/limits/tag_update_response.py +0 -10
- {payi-0.1.0a129.dist-info → payi-0.1.0a131.dist-info}/WHEEL +0 -0
- {payi-0.1.0a129.dist-info → payi-0.1.0a131.dist-info}/licenses/LICENSE +0 -0
payi/types/limits/limit_tags.py
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from typing import Optional
|
|
4
|
-
from datetime import datetime
|
|
5
|
-
|
|
6
|
-
from ..._models import BaseModel
|
|
7
|
-
|
|
8
|
-
__all__ = ["LimitTags"]
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class LimitTags(BaseModel):
|
|
12
|
-
created_on: Optional[datetime] = None
|
|
13
|
-
|
|
14
|
-
tag_id: Optional[int] = None
|
|
15
|
-
|
|
16
|
-
tag_name: Optional[str] = None
|
|
@@ -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]
|
|
File without changes
|
|
File without changes
|