payi 0.1.0a114__py3-none-any.whl → 0.1.0a115__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/_utils/_transform.py CHANGED
@@ -16,18 +16,20 @@ from ._utils import (
16
16
  lru_cache,
17
17
  is_mapping,
18
18
  is_iterable,
19
+ is_sequence,
19
20
  )
20
21
  from .._files import is_base64_file_input
22
+ from ._compat import get_origin, is_typeddict
21
23
  from ._typing import (
22
24
  is_list_type,
23
25
  is_union_type,
24
26
  extract_type_arg,
25
27
  is_iterable_type,
26
28
  is_required_type,
29
+ is_sequence_type,
27
30
  is_annotated_type,
28
31
  strip_annotated_type,
29
32
  )
30
- from .._compat import get_origin, model_dump, is_typeddict
31
33
 
32
34
  _T = TypeVar("_T")
33
35
 
@@ -167,6 +169,8 @@ def _transform_recursive(
167
169
 
168
170
  Defaults to the same value as the `annotation` argument.
169
171
  """
172
+ from .._compat import model_dump
173
+
170
174
  if inner_type is None:
171
175
  inner_type = annotation
172
176
 
@@ -184,6 +188,8 @@ def _transform_recursive(
184
188
  (is_list_type(stripped_type) and is_list(data))
185
189
  # Iterable[T]
186
190
  or (is_iterable_type(stripped_type) and is_iterable(data) and not isinstance(data, str))
191
+ # Sequence[T]
192
+ or (is_sequence_type(stripped_type) and is_sequence(data) and not isinstance(data, str))
187
193
  ):
188
194
  # dicts are technically iterable, but it is an iterable on the keys of the dict and is not usually
189
195
  # intended as an iterable, so we don't transform it.
@@ -329,6 +335,8 @@ async def _async_transform_recursive(
329
335
 
330
336
  Defaults to the same value as the `annotation` argument.
331
337
  """
338
+ from .._compat import model_dump
339
+
332
340
  if inner_type is None:
333
341
  inner_type = annotation
334
342
 
@@ -346,6 +354,8 @@ async def _async_transform_recursive(
346
354
  (is_list_type(stripped_type) and is_list(data))
347
355
  # Iterable[T]
348
356
  or (is_iterable_type(stripped_type) and is_iterable(data) and not isinstance(data, str))
357
+ # Sequence[T]
358
+ or (is_sequence_type(stripped_type) and is_sequence(data) and not isinstance(data, str))
349
359
  ):
350
360
  # dicts are technically iterable, but it is an iterable on the keys of the dict and is not usually
351
361
  # intended as an iterable, so we don't transform it.
payi/_utils/_typing.py CHANGED
@@ -15,7 +15,7 @@ from typing_extensions import (
15
15
 
16
16
  from ._utils import lru_cache
17
17
  from .._types import InheritsGeneric
18
- from .._compat import is_union as _is_union
18
+ from ._compat import is_union as _is_union
19
19
 
20
20
 
21
21
  def is_annotated_type(typ: type) -> bool:
@@ -26,6 +26,11 @@ def is_list_type(typ: type) -> bool:
26
26
  return (get_origin(typ) or typ) == list
27
27
 
28
28
 
29
+ def is_sequence_type(typ: type) -> bool:
30
+ origin = get_origin(typ) or typ
31
+ return origin == typing_extensions.Sequence or origin == typing.Sequence or origin == _c_abc.Sequence
32
+
33
+
29
34
  def is_iterable_type(typ: type) -> bool:
30
35
  """If the given type is `typing.Iterable[T]`"""
31
36
  origin = get_origin(typ) or typ
payi/_utils/_utils.py CHANGED
@@ -22,7 +22,6 @@ from typing_extensions import TypeGuard
22
22
  import sniffio
23
23
 
24
24
  from .._types import NotGiven, FileTypes, NotGivenOr, HeadersLike
25
- from .._compat import parse_date as parse_date, parse_datetime as parse_datetime
26
25
 
27
26
  _T = TypeVar("_T")
28
27
  _TupleT = TypeVar("_TupleT", bound=Tuple[object, ...])
payi/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "payi"
4
- __version__ = "0.1.0-alpha.114" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.115" # x-release-please-version
@@ -2,12 +2,12 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Union
5
+ from typing import Union
6
6
  from datetime import datetime
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 FixedCostResourcesResource(SyncAPIResource):
49
49
  resource: str,
50
50
  *,
51
51
  category: str,
52
- units: List[str],
52
+ units: SequenceNotStr[str],
53
53
  cost_per_hour: float | NotGiven = NOT_GIVEN,
54
54
  start_timestamp: Union[str, datetime, None] | 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.
@@ -117,7 +117,7 @@ class AsyncFixedCostResourcesResource(AsyncAPIResource):
117
117
  resource: str,
118
118
  *,
119
119
  category: str,
120
- units: List[str],
120
+ units: SequenceNotStr[str],
121
121
  cost_per_hour: float | NotGiven = NOT_GIVEN,
122
122
  start_timestamp: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
123
123
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
payi/resources/ingest.py CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, List, Union, Iterable, Optional
5
+ from typing import Dict, Union, Iterable, Optional
6
6
  from datetime import datetime
7
7
 
8
8
  import httpx
@@ -10,7 +10,7 @@ import httpx
10
10
  from payi._utils._utils import is_given
11
11
 
12
12
  from ..types import ingest_units_params
13
- from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
13
+ from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven, SequenceNotStr
14
14
  from .._utils import maybe_transform, strip_not_given, async_maybe_transform
15
15
  from .._compat import cached_property
16
16
  from .._resource import SyncAPIResource, AsyncAPIResource
@@ -98,7 +98,7 @@ class IngestResource(SyncAPIResource):
98
98
  | NotGiven = NOT_GIVEN,
99
99
  provider_response_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
100
100
  provider_response_id: Optional[str] | NotGiven = NOT_GIVEN,
101
- provider_response_json: Union[str, List[str], None] | NotGiven = NOT_GIVEN,
101
+ provider_response_json: Union[str, SequenceNotStr[str], None] | NotGiven = NOT_GIVEN,
102
102
  provider_uri: Optional[str] | NotGiven = NOT_GIVEN,
103
103
  resource: Optional[str] | NotGiven = NOT_GIVEN,
104
104
  time_to_first_completion_token_ms: Optional[int] | NotGiven = NOT_GIVEN,
@@ -328,7 +328,7 @@ class AsyncIngestResource(AsyncAPIResource):
328
328
  | NotGiven = NOT_GIVEN,
329
329
  provider_response_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
330
330
  provider_response_id: Optional[str] | NotGiven = NOT_GIVEN,
331
- provider_response_json: Union[str, List[str], None] | NotGiven = NOT_GIVEN,
331
+ provider_response_json: Union[str, SequenceNotStr[str], None] | NotGiven = NOT_GIVEN,
332
332
  provider_uri: Optional[str] | NotGiven = NOT_GIVEN,
333
333
  resource: Optional[str] | NotGiven = NOT_GIVEN,
334
334
  time_to_first_completion_token_ms: Optional[int] | NotGiven = NOT_GIVEN,
@@ -2,7 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Union, Optional
5
+ from typing import Union, Optional
6
6
  from datetime import datetime
7
7
  from typing_extensions import Literal
8
8
 
@@ -17,7 +17,7 @@ from .tags import (
17
17
  AsyncTagsResourceWithStreamingResponse,
18
18
  )
19
19
  from ...types import limit_list_params, limit_reset_params, limit_create_params, limit_update_params
20
- from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
20
+ from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven, SequenceNotStr
21
21
  from ..._utils import maybe_transform, async_maybe_transform
22
22
  from ..._compat import cached_property
23
23
  from ..._resource import SyncAPIResource, AsyncAPIResource
@@ -67,7 +67,7 @@ class LimitsResource(SyncAPIResource):
67
67
  limit_name: str,
68
68
  max: float,
69
69
  limit_id: Optional[str] | NotGiven = NOT_GIVEN,
70
- limit_tags: Optional[List[str]] | NotGiven = NOT_GIVEN,
70
+ limit_tags: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
71
71
  limit_type: Literal["block", "allow"] | NotGiven = NOT_GIVEN,
72
72
  threshold: Optional[float] | NotGiven = NOT_GIVEN,
73
73
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -334,7 +334,7 @@ class AsyncLimitsResource(AsyncAPIResource):
334
334
  limit_name: str,
335
335
  max: float,
336
336
  limit_id: Optional[str] | NotGiven = NOT_GIVEN,
337
- limit_tags: Optional[List[str]] | NotGiven = NOT_GIVEN,
337
+ limit_tags: Optional[SequenceNotStr[str]] | NotGiven = NOT_GIVEN,
338
338
  limit_type: Literal["block", "allow"] | NotGiven = NOT_GIVEN,
339
339
  threshold: Optional[float] | NotGiven = NOT_GIVEN,
340
340
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -2,11 +2,9 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List
6
-
7
5
  import httpx
8
6
 
9
- from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
7
+ from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven, SequenceNotStr
10
8
  from ..._utils import maybe_transform, async_maybe_transform
11
9
  from ..._compat import cached_property
12
10
  from ..._resource import SyncAPIResource, AsyncAPIResource
@@ -51,7 +49,7 @@ class TagsResource(SyncAPIResource):
51
49
  self,
52
50
  limit_id: str,
53
51
  *,
54
- limit_tags: List[str],
52
+ limit_tags: SequenceNotStr[str],
55
53
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
56
54
  # The extra values given here take precedence over values defined on the client or passed to this method.
57
55
  extra_headers: Headers | None = None,
@@ -88,7 +86,7 @@ class TagsResource(SyncAPIResource):
88
86
  self,
89
87
  limit_id: str,
90
88
  *,
91
- limit_tags: List[str],
89
+ limit_tags: SequenceNotStr[str],
92
90
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
93
91
  # The extra values given here take precedence over values defined on the client or passed to this method.
94
92
  extra_headers: Headers | None = None,
@@ -191,7 +189,7 @@ class TagsResource(SyncAPIResource):
191
189
  self,
192
190
  limit_id: str,
193
191
  *,
194
- limit_tags: List[str],
192
+ limit_tags: SequenceNotStr[str],
195
193
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
196
194
  # The extra values given here take precedence over values defined on the client or passed to this method.
197
195
  extra_headers: Headers | None = None,
@@ -249,7 +247,7 @@ class AsyncTagsResource(AsyncAPIResource):
249
247
  self,
250
248
  limit_id: str,
251
249
  *,
252
- limit_tags: List[str],
250
+ limit_tags: SequenceNotStr[str],
253
251
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
254
252
  # The extra values given here take precedence over values defined on the client or passed to this method.
255
253
  extra_headers: Headers | None = None,
@@ -286,7 +284,7 @@ class AsyncTagsResource(AsyncAPIResource):
286
284
  self,
287
285
  limit_id: str,
288
286
  *,
289
- limit_tags: List[str],
287
+ limit_tags: SequenceNotStr[str],
290
288
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
291
289
  # The extra values given here take precedence over values defined on the client or passed to this method.
292
290
  extra_headers: Headers | None = None,
@@ -389,7 +387,7 @@ class AsyncTagsResource(AsyncAPIResource):
389
387
  self,
390
388
  limit_id: str,
391
389
  *,
392
- limit_tags: List[str],
390
+ limit_tags: SequenceNotStr[str],
393
391
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
394
392
  # The extra values given here take precedence over values defined on the client or passed to this method.
395
393
  extra_headers: Headers | None = None,
@@ -2,12 +2,12 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import List, Optional
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[List[str]] | NotGiven = NOT_GIVEN,
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[List[str]] | NotGiven = NOT_GIVEN,
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 List, Union
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[List[str]]
18
+ units: Required[SequenceNotStr[str]]
18
19
 
19
20
  cost_per_hour: float
20
21
 
@@ -2,10 +2,11 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, List, Union, Iterable, Optional
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[List[str]]
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, List[str], None]
52
+ provider_response_json: Union[str, SequenceNotStr[str], None]
52
53
 
53
54
  provider_uri: Optional[str]
54
55
 
55
- request_tags: Optional[List[str]]
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, List, Union, Iterable, Optional
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, List[str], None]
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 List, Optional
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[List[str]]
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[List[str]]
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[List[str]]
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[List[str]]
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 List, Optional
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[List[str]]
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 List, Optional
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[List[str]]
16
+ limit_tags: Optional[SequenceNotStr[str]]
15
17
 
16
18
  limit_type: Literal["block", "allow"]
17
19
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: payi
3
- Version: 0.1.0a114
3
+ Version: 0.1.0a115
4
4
  Summary: The official Python library for the payi API
5
5
  Project-URL: Homepage, https://github.com/Pay-i/pay-i-python
6
6
  Project-URL: Repository, https://github.com/Pay-i/pay-i-python
@@ -1,29 +1,31 @@
1
1
  payi/__init__.py,sha256=D0Hb0f0CuE6t648U7C0qOOKez56wyNcIndIYcNuamlU,2560
2
- payi/_base_client.py,sha256=bbDglAL7W_pbfvcDSMy07UIGWJj9FJddyTCcpKdYJ-4,67033
2
+ payi/_base_client.py,sha256=acMyN2_HgW3UdaahPWskaZ3dNpxWsH0Y3iZdwBQak1k,67045
3
3
  payi/_client.py,sha256=tKKTYVdI7BWHLNUzYDI9t1zqu2OQrDjm0Blm9lkqTUw,17199
4
- payi/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
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=6rDtUmk6jhjGN1q96CUICYfBunNXNhhEk_AqztTm3uE,30012
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=7jE5MoQQFVoVxw5vVzvZ2Ao0kcjfNOGsBgyJfLBEnMo,6195
14
- payi/_version.py,sha256=Youinej2btWjxpYxdf0vmSfYqlK1BlAwZE05kzSgcD4,166
13
+ payi/_types.py,sha256=2pzimmgO1SZhjEsqgq0eOheAFRCdT4qakXMZm8cGeI0,7294
14
+ payi/_version.py,sha256=mxsBc-MmGiYRGQBpkCtQ29SJppLVLb4X-sGUSH1usd4,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=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
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=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
25
- payi/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
26
- payi/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
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
30
  payi/lib/AnthropicInstrumentor.py,sha256=40jxGiG4od7g68gPLYGXvBrt-cbHorugb7wgZ8vHq-c,16483
29
31
  payi/lib/BedrockInstrumentor.py,sha256=HllGynSJ7GDqI3ZuZrNwquPie7uPnh20RrYKbiBY-Sc,19870
@@ -37,14 +39,14 @@ payi/lib/instrument.py,sha256=LquKtVUpKnVONnkGchRbLgbvLrhBOIYAwNieH9ANi-E,75500
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=7HeaAnIhPmAYdom8tAPPTa1WlbKL8pFCuQdZ2QSFuyE,23079
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=tLJlZ06KDIOHpVF4iq8S9IPocGohbOYh9LO0cWGznUA,7824
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=kyzyLrgjrK3qgMvSjzHAJGyFTNTFWUnAr7uw4bRpBp4,25196
47
- payi/resources/limits/tags.py,sha256=gPW2ds6Zh7-BV7_SwtbRGcMMgj94NciGzcui6FRRQ-o,18964
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=ojUg3Hhc5tGk5qE2Oxf9OlgcvvxY0A7HN3Q0uq1fsVo,10583
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=sPZX3Pdl4zCprCT_B4q3IrzMBrGind5AVy7VYUCOm4U,1925
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=UgOVXsSerkVYwbAgDZ5xFZ_p2DcZsESNPF7Kc5RIhDo,2526
82
- payi/types/limit_create_params.py,sha256=cPUTDLtUqJxCv7xvoB3e3kefN6iZTvnjaw01Y5tHEIo,497
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=7aCIr-qIGTRkDtYwcnnFgt_iSOIrVbelw23rYYP1IgI,567
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=5t0qtSG1c2nonB18RK4V9ngG6rRTVc2e-r17bF47VtM,342
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=3uxFgAH60w5EFyhzwkKFcnyqN5_Ft9VTTrj0jRdZ2hs,342
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=YOA7dOzdwhapxWRa23MVG77oNUvBahXEUF4I1lQbLCU,342
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=8UXPHFrNDZfF5tgEeV0mIqevksNGEWayv2NJV5DY_Rg,497
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=pzQza_16N3z8cFNEKr6gPbFvuGFrwNuGxAYb--Kbo2M,449
143
- payi-0.1.0a114.dist-info/METADATA,sha256=tcxlWZyeZyVyU9dfPsIVEr8ukAILzjDi1hxY4o1Rf9o,16324
144
- payi-0.1.0a114.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
145
- payi-0.1.0a114.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
146
- payi-0.1.0a114.dist-info/RECORD,,
144
+ payi/types/use_cases/definitions/limit_config_create_params.py,sha256=sodtLT84tBmuO_0d-h0CZWCh4vWojJMtUbMjBmEN3IE,492
145
+ payi-0.1.0a115.dist-info/METADATA,sha256=GkpGlz_dn2rKKcImKmyvGiRVqcUSNT2LBzA4eOYG-wc,16324
146
+ payi-0.1.0a115.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
147
+ payi-0.1.0a115.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
148
+ payi-0.1.0a115.dist-info/RECORD,,