payi 0.1.0a31__py3-none-any.whl → 0.1.0a33__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/__init__.py CHANGED
@@ -1,7 +1,7 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  from . import types
4
- from ._types import NOT_GIVEN, NoneType, NotGiven, Transport, ProxiesTypes
4
+ from ._types import NOT_GIVEN, Omit, NoneType, NotGiven, Transport, ProxiesTypes
5
5
  from ._utils import file_from_path
6
6
  from ._client import Payi, Client, Stream, Timeout, AsyncPayi, Transport, AsyncClient, AsyncStream, RequestOptions
7
7
  from ._models import BaseModel
@@ -36,6 +36,7 @@ __all__ = [
36
36
  "ProxiesTypes",
37
37
  "NotGiven",
38
38
  "NOT_GIVEN",
39
+ "Omit",
39
40
  "PayiError",
40
41
  "APIError",
41
42
  "APIStatusError",
payi/_client.py CHANGED
@@ -8,7 +8,7 @@ from typing_extensions import Self, override
8
8
 
9
9
  import httpx
10
10
 
11
- from . import resources, _exceptions
11
+ from . import _exceptions
12
12
  from ._qs import Querystring
13
13
  from ._types import (
14
14
  NOT_GIVEN,
@@ -24,6 +24,7 @@ from ._utils import (
24
24
  get_async_library,
25
25
  )
26
26
  from ._version import __version__
27
+ from .resources import ingest, billing_models, price_modifiers
27
28
  from ._streaming import Stream as Stream, AsyncStream as AsyncStream
28
29
  from ._exceptions import PayiError, APIStatusError
29
30
  from ._base_client import (
@@ -31,28 +32,22 @@ from ._base_client import (
31
32
  SyncAPIClient,
32
33
  AsyncAPIClient,
33
34
  )
35
+ from .resources.budgets import budgets
36
+ from .resources.requests import requests
37
+ from .resources.categories import categories
38
+ from .resources.experiences import experiences
34
39
 
35
- __all__ = [
36
- "Timeout",
37
- "Transport",
38
- "ProxiesTypes",
39
- "RequestOptions",
40
- "resources",
41
- "Payi",
42
- "AsyncPayi",
43
- "Client",
44
- "AsyncClient",
45
- ]
40
+ __all__ = ["Timeout", "Transport", "ProxiesTypes", "RequestOptions", "Payi", "AsyncPayi", "Client", "AsyncClient"]
46
41
 
47
42
 
48
43
  class Payi(SyncAPIClient):
49
- budgets: resources.BudgetsResource
50
- ingest: resources.IngestResource
51
- categories: resources.CategoriesResource
52
- experiences: resources.ExperiencesResource
53
- billing_models: resources.BillingModelsResource
54
- price_modifiers: resources.PriceModifiersResource
55
- requests: resources.RequestsResource
44
+ budgets: budgets.BudgetsResource
45
+ ingest: ingest.IngestResource
46
+ categories: categories.CategoriesResource
47
+ experiences: experiences.ExperiencesResource
48
+ billing_models: billing_models.BillingModelsResource
49
+ price_modifiers: price_modifiers.PriceModifiersResource
50
+ requests: requests.RequestsResource
56
51
  with_raw_response: PayiWithRawResponse
57
52
  with_streaming_response: PayiWithStreamedResponse
58
53
 
@@ -110,13 +105,13 @@ class Payi(SyncAPIClient):
110
105
  _strict_response_validation=_strict_response_validation,
111
106
  )
112
107
 
113
- self.budgets = resources.BudgetsResource(self)
114
- self.ingest = resources.IngestResource(self)
115
- self.categories = resources.CategoriesResource(self)
116
- self.experiences = resources.ExperiencesResource(self)
117
- self.billing_models = resources.BillingModelsResource(self)
118
- self.price_modifiers = resources.PriceModifiersResource(self)
119
- self.requests = resources.RequestsResource(self)
108
+ self.budgets = budgets.BudgetsResource(self)
109
+ self.ingest = ingest.IngestResource(self)
110
+ self.categories = categories.CategoriesResource(self)
111
+ self.experiences = experiences.ExperiencesResource(self)
112
+ self.billing_models = billing_models.BillingModelsResource(self)
113
+ self.price_modifiers = price_modifiers.PriceModifiersResource(self)
114
+ self.requests = requests.RequestsResource(self)
120
115
  self.with_raw_response = PayiWithRawResponse(self)
121
116
  self.with_streaming_response = PayiWithStreamedResponse(self)
122
117
 
@@ -226,13 +221,13 @@ class Payi(SyncAPIClient):
226
221
 
227
222
 
228
223
  class AsyncPayi(AsyncAPIClient):
229
- budgets: resources.AsyncBudgetsResource
230
- ingest: resources.AsyncIngestResource
231
- categories: resources.AsyncCategoriesResource
232
- experiences: resources.AsyncExperiencesResource
233
- billing_models: resources.AsyncBillingModelsResource
234
- price_modifiers: resources.AsyncPriceModifiersResource
235
- requests: resources.AsyncRequestsResource
224
+ budgets: budgets.AsyncBudgetsResource
225
+ ingest: ingest.AsyncIngestResource
226
+ categories: categories.AsyncCategoriesResource
227
+ experiences: experiences.AsyncExperiencesResource
228
+ billing_models: billing_models.AsyncBillingModelsResource
229
+ price_modifiers: price_modifiers.AsyncPriceModifiersResource
230
+ requests: requests.AsyncRequestsResource
236
231
  with_raw_response: AsyncPayiWithRawResponse
237
232
  with_streaming_response: AsyncPayiWithStreamedResponse
238
233
 
@@ -290,13 +285,13 @@ class AsyncPayi(AsyncAPIClient):
290
285
  _strict_response_validation=_strict_response_validation,
291
286
  )
292
287
 
293
- self.budgets = resources.AsyncBudgetsResource(self)
294
- self.ingest = resources.AsyncIngestResource(self)
295
- self.categories = resources.AsyncCategoriesResource(self)
296
- self.experiences = resources.AsyncExperiencesResource(self)
297
- self.billing_models = resources.AsyncBillingModelsResource(self)
298
- self.price_modifiers = resources.AsyncPriceModifiersResource(self)
299
- self.requests = resources.AsyncRequestsResource(self)
288
+ self.budgets = budgets.AsyncBudgetsResource(self)
289
+ self.ingest = ingest.AsyncIngestResource(self)
290
+ self.categories = categories.AsyncCategoriesResource(self)
291
+ self.experiences = experiences.AsyncExperiencesResource(self)
292
+ self.billing_models = billing_models.AsyncBillingModelsResource(self)
293
+ self.price_modifiers = price_modifiers.AsyncPriceModifiersResource(self)
294
+ self.requests = requests.AsyncRequestsResource(self)
300
295
  self.with_raw_response = AsyncPayiWithRawResponse(self)
301
296
  self.with_streaming_response = AsyncPayiWithStreamedResponse(self)
302
297
 
@@ -407,46 +402,46 @@ class AsyncPayi(AsyncAPIClient):
407
402
 
408
403
  class PayiWithRawResponse:
409
404
  def __init__(self, client: Payi) -> None:
410
- self.budgets = resources.BudgetsResourceWithRawResponse(client.budgets)
411
- self.ingest = resources.IngestResourceWithRawResponse(client.ingest)
412
- self.categories = resources.CategoriesResourceWithRawResponse(client.categories)
413
- self.experiences = resources.ExperiencesResourceWithRawResponse(client.experiences)
414
- self.billing_models = resources.BillingModelsResourceWithRawResponse(client.billing_models)
415
- self.price_modifiers = resources.PriceModifiersResourceWithRawResponse(client.price_modifiers)
416
- self.requests = resources.RequestsResourceWithRawResponse(client.requests)
405
+ self.budgets = budgets.BudgetsResourceWithRawResponse(client.budgets)
406
+ self.ingest = ingest.IngestResourceWithRawResponse(client.ingest)
407
+ self.categories = categories.CategoriesResourceWithRawResponse(client.categories)
408
+ self.experiences = experiences.ExperiencesResourceWithRawResponse(client.experiences)
409
+ self.billing_models = billing_models.BillingModelsResourceWithRawResponse(client.billing_models)
410
+ self.price_modifiers = price_modifiers.PriceModifiersResourceWithRawResponse(client.price_modifiers)
411
+ self.requests = requests.RequestsResourceWithRawResponse(client.requests)
417
412
 
418
413
 
419
414
  class AsyncPayiWithRawResponse:
420
415
  def __init__(self, client: AsyncPayi) -> None:
421
- self.budgets = resources.AsyncBudgetsResourceWithRawResponse(client.budgets)
422
- self.ingest = resources.AsyncIngestResourceWithRawResponse(client.ingest)
423
- self.categories = resources.AsyncCategoriesResourceWithRawResponse(client.categories)
424
- self.experiences = resources.AsyncExperiencesResourceWithRawResponse(client.experiences)
425
- self.billing_models = resources.AsyncBillingModelsResourceWithRawResponse(client.billing_models)
426
- self.price_modifiers = resources.AsyncPriceModifiersResourceWithRawResponse(client.price_modifiers)
427
- self.requests = resources.AsyncRequestsResourceWithRawResponse(client.requests)
416
+ self.budgets = budgets.AsyncBudgetsResourceWithRawResponse(client.budgets)
417
+ self.ingest = ingest.AsyncIngestResourceWithRawResponse(client.ingest)
418
+ self.categories = categories.AsyncCategoriesResourceWithRawResponse(client.categories)
419
+ self.experiences = experiences.AsyncExperiencesResourceWithRawResponse(client.experiences)
420
+ self.billing_models = billing_models.AsyncBillingModelsResourceWithRawResponse(client.billing_models)
421
+ self.price_modifiers = price_modifiers.AsyncPriceModifiersResourceWithRawResponse(client.price_modifiers)
422
+ self.requests = requests.AsyncRequestsResourceWithRawResponse(client.requests)
428
423
 
429
424
 
430
425
  class PayiWithStreamedResponse:
431
426
  def __init__(self, client: Payi) -> None:
432
- self.budgets = resources.BudgetsResourceWithStreamingResponse(client.budgets)
433
- self.ingest = resources.IngestResourceWithStreamingResponse(client.ingest)
434
- self.categories = resources.CategoriesResourceWithStreamingResponse(client.categories)
435
- self.experiences = resources.ExperiencesResourceWithStreamingResponse(client.experiences)
436
- self.billing_models = resources.BillingModelsResourceWithStreamingResponse(client.billing_models)
437
- self.price_modifiers = resources.PriceModifiersResourceWithStreamingResponse(client.price_modifiers)
438
- self.requests = resources.RequestsResourceWithStreamingResponse(client.requests)
427
+ self.budgets = budgets.BudgetsResourceWithStreamingResponse(client.budgets)
428
+ self.ingest = ingest.IngestResourceWithStreamingResponse(client.ingest)
429
+ self.categories = categories.CategoriesResourceWithStreamingResponse(client.categories)
430
+ self.experiences = experiences.ExperiencesResourceWithStreamingResponse(client.experiences)
431
+ self.billing_models = billing_models.BillingModelsResourceWithStreamingResponse(client.billing_models)
432
+ self.price_modifiers = price_modifiers.PriceModifiersResourceWithStreamingResponse(client.price_modifiers)
433
+ self.requests = requests.RequestsResourceWithStreamingResponse(client.requests)
439
434
 
440
435
 
441
436
  class AsyncPayiWithStreamedResponse:
442
437
  def __init__(self, client: AsyncPayi) -> None:
443
- self.budgets = resources.AsyncBudgetsResourceWithStreamingResponse(client.budgets)
444
- self.ingest = resources.AsyncIngestResourceWithStreamingResponse(client.ingest)
445
- self.categories = resources.AsyncCategoriesResourceWithStreamingResponse(client.categories)
446
- self.experiences = resources.AsyncExperiencesResourceWithStreamingResponse(client.experiences)
447
- self.billing_models = resources.AsyncBillingModelsResourceWithStreamingResponse(client.billing_models)
448
- self.price_modifiers = resources.AsyncPriceModifiersResourceWithStreamingResponse(client.price_modifiers)
449
- self.requests = resources.AsyncRequestsResourceWithStreamingResponse(client.requests)
438
+ self.budgets = budgets.AsyncBudgetsResourceWithStreamingResponse(client.budgets)
439
+ self.ingest = ingest.AsyncIngestResourceWithStreamingResponse(client.ingest)
440
+ self.categories = categories.AsyncCategoriesResourceWithStreamingResponse(client.categories)
441
+ self.experiences = experiences.AsyncExperiencesResourceWithStreamingResponse(client.experiences)
442
+ self.billing_models = billing_models.AsyncBillingModelsResourceWithStreamingResponse(client.billing_models)
443
+ self.price_modifiers = price_modifiers.AsyncPriceModifiersResourceWithStreamingResponse(client.price_modifiers)
444
+ self.requests = requests.AsyncRequestsResourceWithStreamingResponse(client.requests)
450
445
 
451
446
 
452
447
  Client = Payi
payi/_models.py CHANGED
@@ -46,6 +46,7 @@ from ._utils import (
46
46
  strip_not_given,
47
47
  extract_type_arg,
48
48
  is_annotated_type,
49
+ is_type_alias_type,
49
50
  strip_annotated_type,
50
51
  )
51
52
  from ._compat import (
@@ -428,6 +429,8 @@ def construct_type(*, value: object, type_: object) -> object:
428
429
  # we allow `object` as the input type because otherwise, passing things like
429
430
  # `Literal['value']` will be reported as a type error by type checkers
430
431
  type_ = cast("type[object]", type_)
432
+ if is_type_alias_type(type_):
433
+ type_ = type_.__value__ # type: ignore[unreachable]
431
434
 
432
435
  # unwrap `Annotated[T, ...]` -> `T`
433
436
  if is_annotated_type(type_):
payi/_response.py CHANGED
@@ -25,7 +25,7 @@ import httpx
25
25
  import pydantic
26
26
 
27
27
  from ._types import NoneType
28
- from ._utils import is_given, extract_type_arg, is_annotated_type, extract_type_var_from_base
28
+ from ._utils import is_given, extract_type_arg, is_annotated_type, is_type_alias_type, extract_type_var_from_base
29
29
  from ._models import BaseModel, is_basemodel
30
30
  from ._constants import RAW_RESPONSE_HEADER, OVERRIDE_CAST_TO_HEADER
31
31
  from ._streaming import Stream, AsyncStream, is_stream_class_type, extract_stream_chunk_type
@@ -126,9 +126,15 @@ class BaseAPIResponse(Generic[R]):
126
126
  )
127
127
 
128
128
  def _parse(self, *, to: type[_T] | None = None) -> R | _T:
129
+ cast_to = to if to is not None else self._cast_to
130
+
131
+ # unwrap `TypeAlias('Name', T)` -> `T`
132
+ if is_type_alias_type(cast_to):
133
+ cast_to = cast_to.__value__ # type: ignore[unreachable]
134
+
129
135
  # unwrap `Annotated[T, ...]` -> `T`
130
- if to and is_annotated_type(to):
131
- to = extract_type_arg(to, 0)
136
+ if cast_to and is_annotated_type(cast_to):
137
+ cast_to = extract_type_arg(cast_to, 0)
132
138
 
133
139
  if self._is_sse_stream:
134
140
  if to:
@@ -164,18 +170,12 @@ class BaseAPIResponse(Generic[R]):
164
170
  return cast(
165
171
  R,
166
172
  stream_cls(
167
- cast_to=self._cast_to,
173
+ cast_to=cast_to,
168
174
  response=self.http_response,
169
175
  client=cast(Any, self._client),
170
176
  ),
171
177
  )
172
178
 
173
- cast_to = to if to is not None else self._cast_to
174
-
175
- # unwrap `Annotated[T, ...]` -> `T`
176
- if is_annotated_type(cast_to):
177
- cast_to = extract_type_arg(cast_to, 0)
178
-
179
179
  if cast_to is NoneType:
180
180
  return cast(R, None)
181
181
 
payi/_types.py CHANGED
@@ -192,10 +192,8 @@ ResponseT = TypeVar(
192
192
  StrBytesIntFloat = Union[str, bytes, int, float]
193
193
 
194
194
  # Note: copied from Pydantic
195
- # https://github.com/pydantic/pydantic/blob/32ea570bf96e84234d2992e1ddf40ab8a565925a/pydantic/main.py#L49
196
- IncEx: TypeAlias = Union[
197
- Set[int], Set[str], Mapping[int, Union["IncEx", Literal[True]]], Mapping[str, Union["IncEx", Literal[True]]]
198
- ]
195
+ # https://github.com/pydantic/pydantic/blob/6f31f8f68ef011f84357330186f603ff295312fd/pydantic/main.py#L79
196
+ IncEx: TypeAlias = Union[Set[int], Set[str], Mapping[int, Union["IncEx", bool]], Mapping[str, Union["IncEx", bool]]]
199
197
 
200
198
  PostParser = Callable[[Any], Any]
201
199
 
payi/_utils/__init__.py CHANGED
@@ -39,6 +39,7 @@ from ._typing import (
39
39
  is_iterable_type as is_iterable_type,
40
40
  is_required_type as is_required_type,
41
41
  is_annotated_type as is_annotated_type,
42
+ is_type_alias_type as is_type_alias_type,
42
43
  strip_annotated_type as strip_annotated_type,
43
44
  extract_type_var_from_base as extract_type_var_from_base,
44
45
  )
payi/_utils/_typing.py CHANGED
@@ -1,8 +1,17 @@
1
1
  from __future__ import annotations
2
2
 
3
+ import sys
4
+ import typing
5
+ import typing_extensions
3
6
  from typing import Any, TypeVar, Iterable, cast
4
7
  from collections import abc as _c_abc
5
- from typing_extensions import Required, Annotated, get_args, get_origin
8
+ from typing_extensions import (
9
+ TypeIs,
10
+ Required,
11
+ Annotated,
12
+ get_args,
13
+ get_origin,
14
+ )
6
15
 
7
16
  from .._types import InheritsGeneric
8
17
  from .._compat import is_union as _is_union
@@ -36,6 +45,26 @@ def is_typevar(typ: type) -> bool:
36
45
  return type(typ) == TypeVar # type: ignore
37
46
 
38
47
 
48
+ _TYPE_ALIAS_TYPES: tuple[type[typing_extensions.TypeAliasType], ...] = (typing_extensions.TypeAliasType,)
49
+ if sys.version_info >= (3, 12):
50
+ _TYPE_ALIAS_TYPES = (*_TYPE_ALIAS_TYPES, typing.TypeAliasType)
51
+
52
+
53
+ def is_type_alias_type(tp: Any, /) -> TypeIs[typing_extensions.TypeAliasType]:
54
+ """Return whether the provided argument is an instance of `TypeAliasType`.
55
+
56
+ ```python
57
+ type Int = int
58
+ is_type_alias_type(Int)
59
+ # > True
60
+ Str = TypeAliasType("Str", str)
61
+ is_type_alias_type(Str)
62
+ # > True
63
+ ```
64
+ """
65
+ return isinstance(tp, _TYPE_ALIAS_TYPES)
66
+
67
+
39
68
  # Extracts T from Annotated[T, ...] or from Required[Annotated[T, ...]]
40
69
  def strip_annotated_type(typ: type) -> type:
41
70
  if is_required_type(typ) or is_annotated_type(typ):
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.31" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.33" # x-release-please-version
@@ -1,11 +1,12 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: payi
3
- Version: 0.1.0a31
3
+ Version: 0.1.0a33
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
7
7
  Author-email: Payi <support@payi.com>
8
- License: Apache-2.0
8
+ License-Expression: Apache-2.0
9
+ License-File: LICENSE
9
10
  Classifier: Intended Audience :: Developers
10
11
  Classifier: License :: OSI Approved :: Apache Software License
11
12
  Classifier: Operating System :: MacOS
@@ -26,7 +27,7 @@ Requires-Dist: distro<2,>=1.7.0
26
27
  Requires-Dist: httpx<1,>=0.23.0
27
28
  Requires-Dist: pydantic<3,>=1.9.0
28
29
  Requires-Dist: sniffio
29
- Requires-Dist: typing-extensions<5,>=4.7
30
+ Requires-Dist: typing-extensions<5,>=4.10
30
31
  Description-Content-Type: text/markdown
31
32
 
32
33
  # Payi Python API library
@@ -314,18 +315,19 @@ can also get all the extra fields on the Pydantic model as a dict with
314
315
 
315
316
  You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
316
317
 
317
- - Support for proxies
318
- - Custom transports
318
+ - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
319
+ - Custom [transports](https://www.python-httpx.org/advanced/transports/)
319
320
  - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
320
321
 
321
322
  ```python
323
+ import httpx
322
324
  from payi import Payi, DefaultHttpxClient
323
325
 
324
326
  client = Payi(
325
327
  # Or use the `PAYI_BASE_URL` env var
326
328
  base_url="http://my.test.server.example.com:8083",
327
329
  http_client=DefaultHttpxClient(
328
- proxies="http://my.test.proxy.example.com",
330
+ proxy="http://my.test.proxy.example.com",
329
331
  transport=httpx.HTTPTransport(local_address="0.0.0.0"),
330
332
  ),
331
333
  )
@@ -341,6 +343,16 @@ client.with_options(http_client=DefaultHttpxClient(...))
341
343
 
342
344
  By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
343
345
 
346
+ ```py
347
+ from payi import Payi
348
+
349
+ with Payi() as client:
350
+ # make requests here
351
+ ...
352
+
353
+ # HTTP client is now closed
354
+ ```
355
+
344
356
  ## Versioning
345
357
 
346
358
  This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
@@ -1,26 +1,26 @@
1
- payi/__init__.py,sha256=LWpfR6WSMPTnmmx3ToqqZ0A8CNduLcuxY1SSOqhPxuk,2381
1
+ payi/__init__.py,sha256=_eeZx9fx2Wp81adXh7qrpkmXCso7TiRSvIlLkQ0sQhY,2399
2
2
  payi/_base_client.py,sha256=s3JMTpYuiwtp-jn6iB79v4iuCc29C1Rr38el1IXMtHs,68034
3
- payi/_client.py,sha256=pulFUK9yWV2ROjJLT1-NjSky6kFEukMilSnv4d1xkrc,18554
3
+ payi/_client.py,sha256=_iPFRupnvPvmhzNYHXhHJ1w1d4Qb0v1SqNqOCDA_ywo,18790
4
4
  payi/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
5
  payi/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
6
6
  payi/_exceptions.py,sha256=ItygKNrNXIVY0H6LsGVZvFuAHB3Vtm_VZXmWzCnpHy0,3216
7
7
  payi/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
- payi/_models.py,sha256=uhxvXZC0JO7HuGR_GWXH-zYKuptF2rwiGVJfMMfg3fw,28470
8
+ payi/_models.py,sha256=iumFIitiWZTGITgF2nwOmEPIJGIEeJaUXhDlpaSN9Wg,28589
9
9
  payi/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
10
  payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
11
- payi/_response.py,sha256=9ZpP3Agz-3ReY0RSJo7O7BAwD0UluwRsTSvljdTh1dg,28597
11
+ payi/_response.py,sha256=FnusjH7NI-PDlV8Tzwho9X71ua7kSfJbtio3WET4hQQ,28653
12
12
  payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
13
- payi/_types.py,sha256=J0i_n21O_stX9WmxhCAuKnzv4oJgEPGykFNVqcXg0d0,6165
14
- payi/_version.py,sha256=Qh0Tf3fZOi4I-n4-7SWx89BZzGMhdPIrsNiGzXIbpbA,165
13
+ payi/_types.py,sha256=2mbMK86K3W1aMTW7sOGQ-VND6-A2IuXKm8p4sYFztBU,6141
14
+ payi/_version.py,sha256=tuIIm101fT11E9ZhjnDluSCtx2AfbJUAiK3K0_QwYzM,165
15
15
  payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- payi/_utils/__init__.py,sha256=k266EatJr88V8Zseb7xUimTlCeno9SynRfLwadHP1b4,2016
16
+ payi/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
18
18
  payi/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,1902
19
19
  payi/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
20
  payi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
21
21
  payi/_utils/_sync.py,sha256=jJl-iCEaZZUAkq4IUtzN1-aMsKTUFaNoNbeYnnpQjIQ,2438
22
22
  payi/_utils/_transform.py,sha256=Dkkyr7OveGmOolepcvXmVJWE3kqim4b0nM0h7yWbgeY,13468
23
- payi/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
23
+ payi/_utils/_typing.py,sha256=nTJz0jcrQbEgxwy4TtAkNxuU0QHHlmc6mQtA6vIR8tg,4501
24
24
  payi/_utils/_utils.py,sha256=8UmbPOy_AAr2uUjjFui-VZSrVBHRj6bfNEKRp5YZP2A,12004
25
25
  payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
26
  payi/lib/helpers.py,sha256=JpI9vy--oJP5kUlcWK0yfyRUbIRMXkvLeUQC4g8rLNY,1472
@@ -99,7 +99,7 @@ payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG
99
99
  payi/types/experiences/type_update_params.py,sha256=izwlElQB-jeFFX3K6S2TqVUMmhU0KTmwScQ5aoHZH0M,361
100
100
  payi/types/requests/__init__.py,sha256=K4qfrWMIIg1-UNB0Vu5UdGEmf6TWoF-i3gPc_LT78D8,204
101
101
  payi/types/requests/property_create_params.py,sha256=ef4XiTAa03FO_RuRQ8WbDZhNqzcfhaysnDb1HtObbB4,348
102
- payi-0.1.0a31.dist-info/METADATA,sha256=SU-ru8WuPF7gGePzE2p2JGzgY5ZAyes8N86NVb9YjaI,12342
103
- payi-0.1.0a31.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
104
- payi-0.1.0a31.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
105
- payi-0.1.0a31.dist-info/RECORD,,
102
+ payi-0.1.0a33.dist-info/METADATA,sha256=YoVDkPE5Cjy3LLMsrIBiiYDv4wMAEcgx_N9dh-gbQUg,12605
103
+ payi-0.1.0a33.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
104
+ payi-0.1.0a33.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
105
+ payi-0.1.0a33.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.26.3
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any