payi 0.1.0a114__py3-none-any.whl → 0.1.0a116__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/_base_client.py +3 -3
- payi/_compat.py +48 -48
- payi/_models.py +40 -40
- payi/_types.py +35 -1
- payi/_utils/__init__.py +9 -2
- payi/_utils/_compat.py +45 -0
- payi/_utils/_datetime_parse.py +136 -0
- payi/_utils/_transform.py +11 -1
- payi/_utils/_typing.py +6 -1
- payi/_utils/_utils.py +0 -1
- payi/_version.py +1 -1
- payi/lib/AnthropicInstrumentor.py +1 -1
- payi/lib/BedrockInstrumentor.py +137 -5
- payi/lib/instrument.py +34 -19
- payi/resources/categories/fixed_cost_resources.py +4 -4
- payi/resources/ingest.py +4 -4
- payi/resources/limits/limits.py +4 -4
- payi/resources/limits/tags.py +7 -9
- payi/resources/use_cases/definitions/limit_config.py +4 -4
- payi/types/categories/fixed_cost_resource_create_params.py +3 -2
- payi/types/ingest_event_param.py +5 -4
- payi/types/ingest_units_params.py +3 -2
- payi/types/limit_create_params.py +4 -2
- payi/types/limits/tag_create_params.py +3 -2
- payi/types/limits/tag_remove_params.py +3 -2
- payi/types/limits/tag_update_params.py +3 -2
- payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py +4 -2
- payi/types/use_cases/definitions/limit_config_create_params.py +4 -2
- {payi-0.1.0a114.dist-info → payi-0.1.0a116.dist-info}/METADATA +1 -1
- {payi-0.1.0a114.dist-info → payi-0.1.0a116.dist-info}/RECORD +32 -30
- {payi-0.1.0a114.dist-info → payi-0.1.0a116.dist-info}/WHEEL +0 -0
- {payi-0.1.0a114.dist-info → payi-0.1.0a116.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
from typing_extensions import Literal
|
|
7
7
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
10
|
-
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
10
|
+
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven, SequenceNotStr
|
|
11
11
|
from ...._utils import maybe_transform, async_maybe_transform
|
|
12
12
|
from ...._compat import cached_property
|
|
13
13
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
@@ -49,7 +49,7 @@ class LimitConfigResource(SyncAPIResource):
|
|
|
49
49
|
use_case_name: str,
|
|
50
50
|
*,
|
|
51
51
|
max: float,
|
|
52
|
-
limit_tags: Optional[
|
|
52
|
+
limit_tags: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
|
|
53
53
|
limit_type: Literal["block", "allow"] | NotGiven = NOT_GIVEN,
|
|
54
54
|
threshold: Optional[float] | NotGiven = NOT_GIVEN,
|
|
55
55
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -149,7 +149,7 @@ class AsyncLimitConfigResource(AsyncAPIResource):
|
|
|
149
149
|
use_case_name: str,
|
|
150
150
|
*,
|
|
151
151
|
max: float,
|
|
152
|
-
limit_tags: Optional[
|
|
152
|
+
limit_tags: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
|
|
153
153
|
limit_type: Literal["block", "allow"] | NotGiven = NOT_GIVEN,
|
|
154
154
|
threshold: Optional[float] | NotGiven = NOT_GIVEN,
|
|
155
155
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Union
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
|
+
from ..._types import SequenceNotStr
|
|
9
10
|
from ..._utils import PropertyInfo
|
|
10
11
|
|
|
11
12
|
__all__ = ["FixedCostResourceCreateParams"]
|
|
@@ -14,7 +15,7 @@ __all__ = ["FixedCostResourceCreateParams"]
|
|
|
14
15
|
class FixedCostResourceCreateParams(TypedDict, total=False):
|
|
15
16
|
category: Required[str]
|
|
16
17
|
|
|
17
|
-
units: Required[
|
|
18
|
+
units: Required[SequenceNotStr[str]]
|
|
18
19
|
|
|
19
20
|
cost_per_hour: float
|
|
20
21
|
|
payi/types/ingest_event_param.py
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union, Iterable, Optional
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
|
+
from .._types import SequenceNotStr
|
|
9
10
|
from .._utils import PropertyInfo
|
|
10
11
|
from .shared_params.ingest_units import IngestUnits
|
|
11
12
|
from .pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
|
|
@@ -32,7 +33,7 @@ class IngestEventParam(TypedDict, total=False):
|
|
|
32
33
|
|
|
33
34
|
http_status_code: Optional[int]
|
|
34
35
|
|
|
35
|
-
limit_ids: Optional[
|
|
36
|
+
limit_ids: Optional[SequenceNotStr[str]]
|
|
36
37
|
|
|
37
38
|
properties: Optional[Dict[str, str]]
|
|
38
39
|
|
|
@@ -48,11 +49,11 @@ class IngestEventParam(TypedDict, total=False):
|
|
|
48
49
|
|
|
49
50
|
provider_response_id: Optional[str]
|
|
50
51
|
|
|
51
|
-
provider_response_json: Union[str,
|
|
52
|
+
provider_response_json: Union[str, SequenceNotStr[str], None]
|
|
52
53
|
|
|
53
54
|
provider_uri: Optional[str]
|
|
54
55
|
|
|
55
|
-
request_tags: Optional[
|
|
56
|
+
request_tags: Optional[SequenceNotStr[str]]
|
|
56
57
|
|
|
57
58
|
resource: Optional[str]
|
|
58
59
|
|
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict,
|
|
5
|
+
from typing import Dict, Union, Iterable, Optional
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
|
+
from .._types import SequenceNotStr
|
|
9
10
|
from .._utils import PropertyInfo
|
|
10
11
|
from .shared_params.ingest_units import IngestUnits
|
|
11
12
|
from .pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
|
|
@@ -38,7 +39,7 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
38
39
|
|
|
39
40
|
provider_response_id: Optional[str]
|
|
40
41
|
|
|
41
|
-
provider_response_json: Union[str,
|
|
42
|
+
provider_response_json: Union[str, SequenceNotStr[str], None]
|
|
42
43
|
|
|
43
44
|
provider_uri: Optional[str]
|
|
44
45
|
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
|
+
from .._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = ["LimitCreateParams"]
|
|
9
11
|
|
|
10
12
|
|
|
@@ -15,7 +17,7 @@ class LimitCreateParams(TypedDict, total=False):
|
|
|
15
17
|
|
|
16
18
|
limit_id: Optional[str]
|
|
17
19
|
|
|
18
|
-
limit_tags: Optional[
|
|
20
|
+
limit_tags: Optional[SequenceNotStr[str]]
|
|
19
21
|
|
|
20
22
|
limit_type: Literal["block", "allow"]
|
|
21
23
|
|
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Required, TypedDict
|
|
7
6
|
|
|
7
|
+
from ..._types import SequenceNotStr
|
|
8
|
+
|
|
8
9
|
__all__ = ["TagCreateParams"]
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class TagCreateParams(TypedDict, total=False):
|
|
12
|
-
limit_tags: Required[
|
|
13
|
+
limit_tags: Required[SequenceNotStr[str]]
|
|
13
14
|
"""List of limit tags"""
|
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Required, TypedDict
|
|
7
6
|
|
|
7
|
+
from ..._types import SequenceNotStr
|
|
8
|
+
|
|
8
9
|
__all__ = ["TagRemoveParams"]
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class TagRemoveParams(TypedDict, total=False):
|
|
12
|
-
limit_tags: Required[
|
|
13
|
+
limit_tags: Required[SequenceNotStr[str]]
|
|
13
14
|
"""List of limit tags"""
|
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List
|
|
6
5
|
from typing_extensions import Required, TypedDict
|
|
7
6
|
|
|
7
|
+
from ..._types import SequenceNotStr
|
|
8
|
+
|
|
8
9
|
__all__ = ["TagUpdateParams"]
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class TagUpdateParams(TypedDict, total=False):
|
|
12
|
-
limit_tags: Required[
|
|
13
|
+
limit_tags: Required[SequenceNotStr[str]]
|
|
13
14
|
"""List of limit tags"""
|
|
@@ -2,16 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
|
+
from ..._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = ["PayICommonModelsBudgetManagementCreateLimitBase"]
|
|
9
11
|
|
|
10
12
|
|
|
11
13
|
class PayICommonModelsBudgetManagementCreateLimitBase(TypedDict, total=False):
|
|
12
14
|
max: Required[float]
|
|
13
15
|
|
|
14
|
-
limit_tags: Optional[
|
|
16
|
+
limit_tags: Optional[SequenceNotStr[str]]
|
|
15
17
|
|
|
16
18
|
limit_type: Literal["block", "allow"]
|
|
17
19
|
|
|
@@ -2,16 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
from typing_extensions import Literal, Required, TypedDict
|
|
7
7
|
|
|
8
|
+
from ...._types import SequenceNotStr
|
|
9
|
+
|
|
8
10
|
__all__ = ["LimitConfigCreateParams"]
|
|
9
11
|
|
|
10
12
|
|
|
11
13
|
class LimitConfigCreateParams(TypedDict, total=False):
|
|
12
14
|
max: Required[float]
|
|
13
15
|
|
|
14
|
-
limit_tags: Optional[
|
|
16
|
+
limit_tags: Optional[SequenceNotStr[str]]
|
|
15
17
|
|
|
16
18
|
limit_type: Literal["block", "allow"]
|
|
17
19
|
|
|
@@ -1,50 +1,52 @@
|
|
|
1
1
|
payi/__init__.py,sha256=D0Hb0f0CuE6t648U7C0qOOKez56wyNcIndIYcNuamlU,2560
|
|
2
|
-
payi/_base_client.py,sha256=
|
|
2
|
+
payi/_base_client.py,sha256=acMyN2_HgW3UdaahPWskaZ3dNpxWsH0Y3iZdwBQak1k,67045
|
|
3
3
|
payi/_client.py,sha256=tKKTYVdI7BWHLNUzYDI9t1zqu2OQrDjm0Blm9lkqTUw,17199
|
|
4
|
-
payi/_compat.py,sha256=
|
|
4
|
+
payi/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
payi/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
payi/_exceptions.py,sha256=ItygKNrNXIVY0H6LsGVZvFuAHB3Vtm_VZXmWzCnpHy0,3216
|
|
7
7
|
payi/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
|
|
8
|
-
payi/_models.py,sha256=
|
|
8
|
+
payi/_models.py,sha256=c29x_mRccdxlGwdUPfSR5eJxGXe74Ea5Dje5igZTrKQ,30024
|
|
9
9
|
payi/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
|
10
10
|
payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
11
11
|
payi/_response.py,sha256=rh9oJAvCKcPwQFm4iqH_iVrmK8bNx--YP_A2a4kN1OU,28776
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
|
-
payi/_types.py,sha256=
|
|
14
|
-
payi/_version.py,sha256=
|
|
13
|
+
payi/_types.py,sha256=2pzimmgO1SZhjEsqgq0eOheAFRCdT4qakXMZm8cGeI0,7294
|
|
14
|
+
payi/_version.py,sha256=Z-j0j0LUyKyOm31ImGxbTsQRSTOwxMAbjPGM8oaUQys,166
|
|
15
15
|
payi/pagination.py,sha256=k2356QGPOUSjRF2vHpwLBdF6P-2vnQzFfRIJQAHGQ7A,1258
|
|
16
16
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
payi/_utils/__init__.py,sha256=
|
|
17
|
+
payi/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
18
|
+
payi/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
19
|
+
payi/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
18
20
|
payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
|
|
19
21
|
payi/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
20
22
|
payi/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
21
23
|
payi/_utils/_resources_proxy.py,sha256=qaGS6A6oxTyKN-iZ_XuAOm3Qg4q_MC5xLGLoLihgDas,579
|
|
22
24
|
payi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
23
25
|
payi/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
24
|
-
payi/_utils/_transform.py,sha256=
|
|
25
|
-
payi/_utils/_typing.py,sha256=
|
|
26
|
-
payi/_utils/_utils.py,sha256=
|
|
26
|
+
payi/_utils/_transform.py,sha256=i_U4R82RtQJtKKCriwFqmfcWjtwmmsiiF1AEXKQ_OPo,15957
|
|
27
|
+
payi/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
|
+
payi/_utils/_utils.py,sha256=D2QE7mVPNEJzaB50u8rvDQAUDS5jx7JoeFD7zdj-TeI,12231
|
|
27
29
|
payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
28
|
-
payi/lib/AnthropicInstrumentor.py,sha256=
|
|
29
|
-
payi/lib/BedrockInstrumentor.py,sha256=
|
|
30
|
+
payi/lib/AnthropicInstrumentor.py,sha256=SI6nzU-eVufHbxV5gxgrZDhx3TewRVnsvtwDuwEG6WU,16484
|
|
31
|
+
payi/lib/BedrockInstrumentor.py,sha256=AAuYBJrLiInz8F6vRcogVMFAHL1gVzn4VHUafjOgrCo,26361
|
|
30
32
|
payi/lib/GoogleGenAiInstrumentor.py,sha256=LHiEZ7G5IhCcDlpVzQlXW9Ok96MHLeq7emEhFzPBTm0,8836
|
|
31
33
|
payi/lib/OpenAIInstrumentor.py,sha256=_ULwIli11XP1yZK_pMGXuaSmHZ5pozuEt_v5DfhNuGw,22914
|
|
32
34
|
payi/lib/Stopwatch.py,sha256=7OJlxvr2Jyb6Zr1LYCYKczRB7rDVKkIR7gc4YoleNdE,764
|
|
33
35
|
payi/lib/VertexInstrumentor.py,sha256=OWuMPiW4LdLhj6DSAAy5qZiosVo8DSAuFWGxYpEucoE,7431
|
|
34
36
|
payi/lib/VertexRequest.py,sha256=42F7xCRYY6h3EMUZD1x4-_cwyAcVhnzT9M5zl4KwtE0,11801
|
|
35
37
|
payi/lib/helpers.py,sha256=jcMyxsuWmyPymDCYmDbQAb6IgbkmkiiNUaxeEPkCKZs,4457
|
|
36
|
-
payi/lib/instrument.py,sha256=
|
|
38
|
+
payi/lib/instrument.py,sha256=CASgkSmnAhMqK5DeE6veRkr-7AbJaC_xu-KlLfmsfIo,76634
|
|
37
39
|
payi/lib/version_helper.py,sha256=v0lC3kuaXn6PBDolE3mkmwJiA8Ot3z4RkVR7wlBuZCs,540
|
|
38
40
|
payi/lib/data/cohere_embed_english_v3.json,sha256=YEWwjml3_i16cdsOx_7UKe6xpVFnxTEhP8T1n54R6gY,718306
|
|
39
41
|
payi/resources/__init__.py,sha256=B2bn1ZfCf6TbHlzZvy5TpFPtALnFcBRPYVKQH3S5qfQ,2457
|
|
40
|
-
payi/resources/ingest.py,sha256=
|
|
42
|
+
payi/resources/ingest.py,sha256=tUcsxmQD1Rs-bDAv4CzQLB60c38bFMjMMWvyu5U6NsA,23109
|
|
41
43
|
payi/resources/categories/__init__.py,sha256=WeotN_d-0Ri8ohsrNPbve7RyViD9_N0NA9DrV3WYg3w,1701
|
|
42
44
|
payi/resources/categories/categories.py,sha256=yYCkCxaYPWees9I9cx9CPy_H9wZK2X7jq8tRh-G__v8,20653
|
|
43
|
-
payi/resources/categories/fixed_cost_resources.py,sha256=
|
|
45
|
+
payi/resources/categories/fixed_cost_resources.py,sha256=hUnmYc0bSVxN1w_ZtcAffRWejhnpMPgMYqbJRuLA1wc,7854
|
|
44
46
|
payi/resources/categories/resources.py,sha256=nY5mKJPEy7-6J_UsyXZebNmUs6WK5ONx_qON9z6DwUg,19979
|
|
45
47
|
payi/resources/limits/__init__.py,sha256=URXh9vglDH-dqbVGk-XcrDa8H5Bg2pgFuVQQecgEtaA,976
|
|
46
|
-
payi/resources/limits/limits.py,sha256=
|
|
47
|
-
payi/resources/limits/tags.py,sha256=
|
|
48
|
+
payi/resources/limits/limits.py,sha256=HyzbAYykoiKjS5yXB8uVesHIJ_1e2uFleMlOPAbnUDE,25226
|
|
49
|
+
payi/resources/limits/tags.py,sha256=X1yAPPv7wIEc2m4wfgqeg_BN0OlPZOymiGq-4z9apu4,19015
|
|
48
50
|
payi/resources/requests/__init__.py,sha256=L86SkNRyb9oySva7oQu6rMwBRUnctb4grtDSRN3T9_g,1571
|
|
49
51
|
payi/resources/requests/requests.py,sha256=Mkyy-Iv7dZ-uKLMBm4eZdwHwm4ZKdF6O7W9QY53YcTo,4972
|
|
50
52
|
payi/resources/requests/request_id/__init__.py,sha256=DMatPoq_k3AF_qutMg7_HjGfup6Z90YQarTiKuUQhZc,1544
|
|
@@ -62,7 +64,7 @@ payi/resources/use_cases/use_cases.py,sha256=rTwgr7EL7UTsot61JsTLvs8hGykxFxjVflw
|
|
|
62
64
|
payi/resources/use_cases/definitions/__init__.py,sha256=pImtiVUbgsm6PkMJ0NPkrhQj8kEi36db-LF5rJukmMY,2020
|
|
63
65
|
payi/resources/use_cases/definitions/definitions.py,sha256=aEnHvpULs0oRbDl_Fvr32Dr5Pd_ySX7kmtC5uiqcBKM,24542
|
|
64
66
|
payi/resources/use_cases/definitions/kpis.py,sha256=3c25hms6laX_9q3an47RcsBJUnS7lcoPpQKsSLbiWmg,22586
|
|
65
|
-
payi/resources/use_cases/definitions/limit_config.py,sha256=
|
|
67
|
+
payi/resources/use_cases/definitions/limit_config.py,sha256=xqepbbqGmxIFMEOo2UZCRKz8bu6ERgkDwhKt6iRfqLE,10613
|
|
66
68
|
payi/resources/use_cases/definitions/version.py,sha256=I1mrP_OEyEytMaQJeb06SS5GCJ6JO9K58nVIVdOgZiY,6013
|
|
67
69
|
payi/types/__init__.py,sha256=16tyUhSSlJzmqKVog8WuMdJzRQn8U5oZ3u2hK-K9GoI,2459
|
|
68
70
|
payi/types/bulk_ingest_response.py,sha256=BN6UUzNqICkSzbT0ucu2swznLpErmEN_kgWORCb2rwE,1211
|
|
@@ -76,10 +78,10 @@ payi/types/cost_data.py,sha256=KXGLnqOKxS0q8yT9eRhdQHyGMSAcuukCHWcWZC1A6Fk,487
|
|
|
76
78
|
payi/types/cost_details.py,sha256=3ldvnYILAG6Sz9wGWMs1SZvIfdGEbn5i4-CauWEXMPA,265
|
|
77
79
|
payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
|
|
78
80
|
payi/types/ingest_bulk_params.py,sha256=A-IRb39d2tmVzEQqrvhlF_3si-9ufHBKYLlvdXupAHU,362
|
|
79
|
-
payi/types/ingest_event_param.py,sha256=
|
|
81
|
+
payi/types/ingest_event_param.py,sha256=2jbVdyTfAgeJ9A2kLF48nLwb0d7pPvY5Xt5ZvIiKMQU,1985
|
|
80
82
|
payi/types/ingest_response.py,sha256=JwcZ6OL793uXTuDmZAzkzhGcdtDsSXfSy_ERjzc7MZY,378
|
|
81
|
-
payi/types/ingest_units_params.py,sha256=
|
|
82
|
-
payi/types/limit_create_params.py,sha256=
|
|
83
|
+
payi/types/ingest_units_params.py,sha256=5HUvyBkmVOptY3i5jLTrqHzVvg-GoZdUGSBvIPCc94I,2566
|
|
84
|
+
payi/types/limit_create_params.py,sha256=q6kIEcRLde0b5-tsoeaLcBNPyIAwXoVsUZnDXjEoZio,538
|
|
83
85
|
payi/types/limit_history_response.py,sha256=vJnVVa5BROfYHRPvpfymcOabjDhcJtFowQF-L-apNgw,770
|
|
84
86
|
payi/types/limit_list_params.py,sha256=OYlK0anDA5G71FfwrMDzhEX4S5AlASLRiR0tmyD9tTU,322
|
|
85
87
|
payi/types/limit_list_response.py,sha256=8UMtHrO38HqOkn8qAC9R90N902VVRZrZYp0C7fPEX1g,622
|
|
@@ -92,18 +94,18 @@ payi/types/requests_data.py,sha256=coHpXgOIQv8oKaX354G-uYoJMzbJcjIW1oX1wuQppts,3
|
|
|
92
94
|
payi/types/total_cost_data.py,sha256=1xoiInVI0UaKup_8poAHNgcpK8gu09RQnMrdorQtFgQ,301
|
|
93
95
|
payi/types/use_case_instance_response.py,sha256=khdcmoU1L8djNVYLu4rSmWkaceZmGwkE9eHLedN1ePU,328
|
|
94
96
|
payi/types/categories/__init__.py,sha256=mpdvOCRgkzQgIqgcb30nvunzZFqMrDOAoa_N0MJZouE,389
|
|
95
|
-
payi/types/categories/fixed_cost_resource_create_params.py,sha256=
|
|
97
|
+
payi/types/categories/fixed_cost_resource_create_params.py,sha256=heFcV8Mqw2zdxWrqOAYq7Rm3sbovcoRhnM7zhfjfxK4,608
|
|
96
98
|
payi/types/categories/resource_create_params.py,sha256=HVzUWhvmUhVu9h70DmUrBPUcO-g2VUIc5cg0sxbG3fs,745
|
|
97
99
|
payi/types/categories/resource_list_params.py,sha256=vHKNPb3RVbg25-0g6yN-LXoNKlkYlnZb47hxlTuizUw,346
|
|
98
100
|
payi/types/limits/__init__.py,sha256=yohSla0l53OaxH9WdwaU1crY1FvzM3H6IRg20LUr-MU,722
|
|
99
101
|
payi/types/limits/limit_tags.py,sha256=O9I9IC7IkFBYRbiUWb4XXmIuXoHUlRLjW_4fbEF50Aw,346
|
|
100
|
-
payi/types/limits/tag_create_params.py,sha256=
|
|
102
|
+
payi/types/limits/tag_create_params.py,sha256=USZzGNg3hHO8itcio9nCoE3BzF5DEeE6iuq6xh6Krqc,366
|
|
101
103
|
payi/types/limits/tag_create_response.py,sha256=ZBU5vjGQQnsz5twkAs102TwXaZgRv9Z1nmvPHVYDTAY,267
|
|
102
104
|
payi/types/limits/tag_delete_response.py,sha256=CzkcQxggdAjakAPC1JqjK2L6h6YGxwnWU3bKRjkAfeM,267
|
|
103
105
|
payi/types/limits/tag_list_response.py,sha256=64Au13HA8Woch4gAgMb-XEd7Q9InJy9xdo9xPZyGxY4,263
|
|
104
|
-
payi/types/limits/tag_remove_params.py,sha256=
|
|
106
|
+
payi/types/limits/tag_remove_params.py,sha256=rj4nF8a9SNJnKVeMxaSnW3XtjwVTzR-Fmgekh5IdjnM,366
|
|
105
107
|
payi/types/limits/tag_remove_response.py,sha256=R-e-um-W1aqq8sEmTtnPMCDLGVRUmm5pVAvLCkgDVHI,267
|
|
106
|
-
payi/types/limits/tag_update_params.py,sha256=
|
|
108
|
+
payi/types/limits/tag_update_params.py,sha256=xSmnOllFClguwTQ7FzHmuJiR4y339MlgpPwWi2Y_NgU,366
|
|
107
109
|
payi/types/limits/tag_update_response.py,sha256=xLa4aU4eVhNmIaQTsCyEDjx1vatBACFiJCwZOWLfrig,267
|
|
108
110
|
payi/types/requests/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
109
111
|
payi/types/requests/request_id/__init__.py,sha256=mWsqHCigEDLIrgH0MlIc2KV3j1npHcb-QyGy4Tvu5p0,204
|
|
@@ -120,7 +122,7 @@ payi/types/shared/xproxy_error.py,sha256=I8dsEHZF_0dM-1YvZ6_mysRJuNlWJrQIHacs9yR
|
|
|
120
122
|
payi/types/shared/xproxy_result.py,sha256=Q9DfH8vfZ7NU0d9nUKDTFeLWorZ83oICbbdJsKgTsBM,1382
|
|
121
123
|
payi/types/shared_params/__init__.py,sha256=dRGuNTZWLagRlbQfl5tKc0JMEYNRVXUad5oyl7IFeIU,317
|
|
122
124
|
payi/types/shared_params/ingest_units.py,sha256=ueGIq14EQRGIDQlIHCCParrDxh1TZ_Hjfx2GP3_19yA,267
|
|
123
|
-
payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py,sha256=
|
|
125
|
+
payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py,sha256=LRDd9ORvHlVpe2a_5iDPl_7-WMxeYci11tCCpZ8NgOU,539
|
|
124
126
|
payi/types/use_cases/__init__.py,sha256=etITqrdbGF_cdY2CSF0xq1Be9LFdUeQtZXNg_uJEfeM,723
|
|
125
127
|
payi/types/use_cases/definition_create_params.py,sha256=8Z48UFbJq0nohT0rG64-3Js9nadWNDMoeVUTXn4PLp4,597
|
|
126
128
|
payi/types/use_cases/definition_list_params.py,sha256=8lVZQPafxHSAULib1RcjRJh82POL9zKKHMHn2r_l31I,335
|
|
@@ -139,8 +141,8 @@ payi/types/use_cases/definitions/kpi_list_response.py,sha256=VHhwSjzyO1wsLhceL7E
|
|
|
139
141
|
payi/types/use_cases/definitions/kpi_retrieve_response.py,sha256=uQXliSvS3k-yDYwEcv6otPycNKHXLwvpkKM0W2nsXys,463
|
|
140
142
|
payi/types/use_cases/definitions/kpi_update_params.py,sha256=jbawdWAdMnsTWVH0qfQGb8W7_TXe3lq4zjSRu44d8p8,373
|
|
141
143
|
payi/types/use_cases/definitions/kpi_update_response.py,sha256=zLyEoT0S8d7XHsnXZYT8tM7yDw0Aze0Mk-_Z6QeMtc8,459
|
|
142
|
-
payi/types/use_cases/definitions/limit_config_create_params.py,sha256=
|
|
143
|
-
payi-0.1.
|
|
144
|
-
payi-0.1.
|
|
145
|
-
payi-0.1.
|
|
146
|
-
payi-0.1.
|
|
144
|
+
payi/types/use_cases/definitions/limit_config_create_params.py,sha256=sodtLT84tBmuO_0d-h0CZWCh4vWojJMtUbMjBmEN3IE,492
|
|
145
|
+
payi-0.1.0a116.dist-info/METADATA,sha256=VWSpG8_T0ySgxwH72xMNAO-T7ejzKpmKikXUv_4aVXU,16324
|
|
146
|
+
payi-0.1.0a116.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
147
|
+
payi-0.1.0a116.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
|
|
148
|
+
payi-0.1.0a116.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|