payi 0.1.0a32__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/_client.py +63 -68
- payi/_models.py +3 -0
- payi/_response.py +10 -10
- payi/_utils/__init__.py +1 -0
- payi/_utils/_typing.py +30 -1
- payi/_version.py +1 -1
- {payi-0.1.0a32.dist-info → payi-0.1.0a33.dist-info}/METADATA +15 -4
- {payi-0.1.0a32.dist-info → payi-0.1.0a33.dist-info}/RECORD +10 -10
- {payi-0.1.0a32.dist-info → payi-0.1.0a33.dist-info}/WHEEL +1 -1
- {payi-0.1.0a32.dist-info → payi-0.1.0a33.dist-info}/licenses/LICENSE +0 -0
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
|
|
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:
|
|
50
|
-
ingest:
|
|
51
|
-
categories:
|
|
52
|
-
experiences:
|
|
53
|
-
billing_models:
|
|
54
|
-
price_modifiers:
|
|
55
|
-
requests:
|
|
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 =
|
|
114
|
-
self.ingest =
|
|
115
|
-
self.categories =
|
|
116
|
-
self.experiences =
|
|
117
|
-
self.billing_models =
|
|
118
|
-
self.price_modifiers =
|
|
119
|
-
self.requests =
|
|
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:
|
|
230
|
-
ingest:
|
|
231
|
-
categories:
|
|
232
|
-
experiences:
|
|
233
|
-
billing_models:
|
|
234
|
-
price_modifiers:
|
|
235
|
-
requests:
|
|
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 =
|
|
294
|
-
self.ingest =
|
|
295
|
-
self.categories =
|
|
296
|
-
self.experiences =
|
|
297
|
-
self.billing_models =
|
|
298
|
-
self.price_modifiers =
|
|
299
|
-
self.requests =
|
|
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 =
|
|
411
|
-
self.ingest =
|
|
412
|
-
self.categories =
|
|
413
|
-
self.experiences =
|
|
414
|
-
self.billing_models =
|
|
415
|
-
self.price_modifiers =
|
|
416
|
-
self.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 =
|
|
422
|
-
self.ingest =
|
|
423
|
-
self.categories =
|
|
424
|
-
self.experiences =
|
|
425
|
-
self.billing_models =
|
|
426
|
-
self.price_modifiers =
|
|
427
|
-
self.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 =
|
|
433
|
-
self.ingest =
|
|
434
|
-
self.categories =
|
|
435
|
-
self.experiences =
|
|
436
|
-
self.billing_models =
|
|
437
|
-
self.price_modifiers =
|
|
438
|
-
self.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 =
|
|
444
|
-
self.ingest =
|
|
445
|
-
self.categories =
|
|
446
|
-
self.experiences =
|
|
447
|
-
self.billing_models =
|
|
448
|
-
self.price_modifiers =
|
|
449
|
-
self.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
|
|
131
|
-
|
|
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=
|
|
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/_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
|
|
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,11 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: payi
|
|
3
|
-
Version: 0.1.
|
|
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.
|
|
30
|
+
Requires-Dist: typing-extensions<5,>=4.10
|
|
30
31
|
Description-Content-Type: text/markdown
|
|
31
32
|
|
|
32
33
|
# Payi Python API library
|
|
@@ -342,6 +343,16 @@ client.with_options(http_client=DefaultHttpxClient(...))
|
|
|
342
343
|
|
|
343
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.
|
|
344
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
|
+
|
|
345
356
|
## Versioning
|
|
346
357
|
|
|
347
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
1
|
payi/__init__.py,sha256=_eeZx9fx2Wp81adXh7qrpkmXCso7TiRSvIlLkQ0sQhY,2399
|
|
2
2
|
payi/_base_client.py,sha256=s3JMTpYuiwtp-jn6iB79v4iuCc29C1Rr38el1IXMtHs,68034
|
|
3
|
-
payi/_client.py,sha256=
|
|
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=
|
|
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=
|
|
11
|
+
payi/_response.py,sha256=FnusjH7NI-PDlV8Tzwho9X71ua7kSfJbtio3WET4hQQ,28653
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
13
|
payi/_types.py,sha256=2mbMK86K3W1aMTW7sOGQ-VND6-A2IuXKm8p4sYFztBU,6141
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=tuIIm101fT11E9ZhjnDluSCtx2AfbJUAiK3K0_QwYzM,165
|
|
15
15
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
payi/_utils/__init__.py,sha256=
|
|
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=
|
|
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.
|
|
103
|
-
payi-0.1.
|
|
104
|
-
payi-0.1.
|
|
105
|
-
payi-0.1.
|
|
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,,
|
|
File without changes
|