payi 0.1.0a24__py3-none-any.whl → 0.1.0a25__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 +60 -48
- payi/_client.py +8 -0
- payi/_compat.py +2 -0
- payi/_utils/_utils.py +4 -3
- payi/_version.py +1 -1
- payi/resources/__init__.py +14 -0
- payi/resources/budgets/budgets.py +22 -0
- payi/resources/budgets/tags.py +22 -0
- payi/resources/categories/categories.py +22 -0
- payi/resources/categories/resources.py +22 -0
- payi/resources/evaluations/__init__.py +47 -0
- payi/resources/evaluations/evaluations.py +134 -0
- payi/resources/evaluations/experiences.py +188 -0
- payi/resources/evaluations/requests.py +200 -0
- payi/resources/experiences/experiences.py +22 -0
- payi/resources/experiences/types.py +22 -0
- payi/resources/ingest.py +22 -0
- payi/types/__init__.py +1 -0
- payi/types/evaluations/__init__.py +6 -0
- payi/types/evaluations/experience_create_params.py +14 -0
- payi/types/evaluations/request_create_params.py +14 -0
- payi/types/experiences/experience_type.py +0 -2
- payi/types/shared/__init__.py +3 -0
- payi/types/shared/evaluation_response.py +11 -0
- {payi-0.1.0a24.dist-info → payi-0.1.0a25.dist-info}/METADATA +12 -1
- {payi-0.1.0a24.dist-info → payi-0.1.0a25.dist-info}/RECORD +28 -19
- {payi-0.1.0a24.dist-info → payi-0.1.0a25.dist-info}/WHEEL +0 -0
- {payi-0.1.0a24.dist-info → payi-0.1.0a25.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import Required, TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["RequestCreateParams"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class RequestCreateParams(TypedDict, total=False):
|
|
12
|
+
evaluation: Required[int]
|
|
13
|
+
|
|
14
|
+
user_id: Optional[str]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: payi
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a25
|
|
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
|
|
@@ -356,6 +356,17 @@ We take backwards-compatibility seriously and work hard to ensure you can rely o
|
|
|
356
356
|
|
|
357
357
|
We are keen for your feedback; please open an [issue](https://www.github.com/Pay-i/pay-i-python/issues) with questions, bugs, or suggestions.
|
|
358
358
|
|
|
359
|
+
### Determining the installed version
|
|
360
|
+
|
|
361
|
+
If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version.
|
|
362
|
+
|
|
363
|
+
You can determine the version that is being used at runtime with:
|
|
364
|
+
|
|
365
|
+
```py
|
|
366
|
+
import payi
|
|
367
|
+
print(payi.__version__)
|
|
368
|
+
```
|
|
369
|
+
|
|
359
370
|
## Requirements
|
|
360
371
|
|
|
361
372
|
Python 3.7 or higher.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
payi/__init__.py,sha256=LWpfR6WSMPTnmmx3ToqqZ0A8CNduLcuxY1SSOqhPxuk,2381
|
|
2
|
-
payi/_base_client.py,sha256=
|
|
3
|
-
payi/_client.py,sha256=
|
|
4
|
-
payi/_compat.py,sha256=
|
|
2
|
+
payi/_base_client.py,sha256=AJddpcldJld0tGq2dMm0x_QVoRA-vwsnzkl2cBGP5go,67252
|
|
3
|
+
payi/_client.py,sha256=RFfMPU74qrtn51Q541AJvxrGity6zB8vFOL1MjHscJU,17248
|
|
4
|
+
payi/_compat.py,sha256=9CWnEaYK0kot7aSNW-m2W9xZb5giIdvKN9sWxvBbbSA,6488
|
|
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
|
|
@@ -11,7 +11,7 @@ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
|
11
11
|
payi/_response.py,sha256=SByCajzglbiy7lSG4F5enqb7R6jVQe1OQ9TBsaxWzE8,28508
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
13
|
payi/_types.py,sha256=mb6zn5qmTK5j0QMh0fevdShT091HBL4w0YCUfQ3u5VY,6101
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=w7QwrKog7LdS6QSFlbeiLNdwEyWDHlE8M8KL9XytA4o,165
|
|
15
15
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
payi/_utils/__init__.py,sha256=Uzq1-FIih_VUjzdNVWXks0sdC39KBKLMrZoz-_JOjJ4,1988
|
|
17
17
|
payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
|
|
@@ -21,21 +21,25 @@ payi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
|
21
21
|
payi/_utils/_sync.py,sha256=9ex9pfOyd8xAF1LxpFx4IkqL8k0vk8srE2Ee-OTMQ0A,2840
|
|
22
22
|
payi/_utils/_transform.py,sha256=NCz3q9_O-vuj60xVe-qzhEQ8uJWlZWJTsM-GwHDccf8,12958
|
|
23
23
|
payi/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
|
|
24
|
-
payi/_utils/_utils.py,sha256=
|
|
24
|
+
payi/_utils/_utils.py,sha256=tYrr7IX-5NMwsVKbNggbzOM84uNw7XnAe06e2Ln8Or0,11472
|
|
25
25
|
payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
26
26
|
payi/lib/helpers.py,sha256=JpI9vy--oJP5kUlcWK0yfyRUbIRMXkvLeUQC4g8rLNY,1472
|
|
27
|
-
payi/resources/__init__.py,sha256=
|
|
28
|
-
payi/resources/ingest.py,sha256=
|
|
27
|
+
payi/resources/__init__.py,sha256=p3NK6CPTTwKulGAXsGFPoph1TKtdKpg8vHxQ52scKjk,2547
|
|
28
|
+
payi/resources/ingest.py,sha256=swSCi3XkW069KX5rznNEvpRiT1GjrMm84r5NbDK2URA,15325
|
|
29
29
|
payi/resources/budgets/__init__.py,sha256=w1UhOdDXtUH4A91ME5Tw2nr9bRvPJyJY1YWiVVy7jj0,989
|
|
30
|
-
payi/resources/budgets/budgets.py,sha256=
|
|
31
|
-
payi/resources/budgets/tags.py,sha256=
|
|
30
|
+
payi/resources/budgets/budgets.py,sha256=IvNbTUYCfoY0R54Z5sb_Xb08wj_C-J0n9X-GA_ngrTM,27506
|
|
31
|
+
payi/resources/budgets/tags.py,sha256=akVs7lGBb7O697lv-_nXT_xlh6dgQuaj6pWqTenO86s,18827
|
|
32
32
|
payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
|
|
33
|
-
payi/resources/categories/categories.py,sha256=
|
|
34
|
-
payi/resources/categories/resources.py,sha256=
|
|
33
|
+
payi/resources/categories/categories.py,sha256=dGsAX313gZlLy5pSRo5_TexD1rPeWU666yHNwiUEFBA,16082
|
|
34
|
+
payi/resources/categories/resources.py,sha256=v17sKHvaAMPapQ1CGb9tT51xp8HvfFlEaramBsZ5QTk,18706
|
|
35
|
+
payi/resources/evaluations/__init__.py,sha256=Q0OueYOSwNEYDZVMVyRneDbw2Gf74qT9sUlojllfnU0,1608
|
|
36
|
+
payi/resources/evaluations/evaluations.py,sha256=158wKYWTkNriyTgl8JfbFlbLZuYKJEFQKJLTFd3eL5c,5055
|
|
37
|
+
payi/resources/evaluations/experiences.py,sha256=glKJ_YVj1HabwKxgf-vuXjK7MZ4m7ZGwZo7mHroZ8Os,6926
|
|
38
|
+
payi/resources/evaluations/requests.py,sha256=MidR2eKMBdPtsCXTYqj3or1UEfpTvuIkbC2lbufqWGI,7067
|
|
35
39
|
payi/resources/experiences/__init__.py,sha256=gguTTCoGlAWDyrDJh1CtZwIVsyBbzERX63vRtFtjxjI,1054
|
|
36
|
-
payi/resources/experiences/experiences.py,sha256=
|
|
37
|
-
payi/resources/experiences/types.py,sha256=
|
|
38
|
-
payi/types/__init__.py,sha256=
|
|
40
|
+
payi/resources/experiences/experiences.py,sha256=fdWaZox-WRCGwo8CJLsQFYVE8bf-yn7lFDO_dtwpyFQ,13264
|
|
41
|
+
payi/resources/experiences/types.py,sha256=QuNX3B7mtUNuxREn9tOGNRRI0dEfiDX2fvLp6mIL7dQ,18679
|
|
42
|
+
payi/types/__init__.py,sha256=_sXROBhchHsVs5HCSMOzOZrA7z6GKwglxMB4mmIubUw,1864
|
|
39
43
|
payi/types/budget_create_params.py,sha256=3PziVJT3_ll-6yv3i5EF8ERm19jFJAKbv9v-CvRW5ik,653
|
|
40
44
|
payi/types/budget_history_response.py,sha256=4SnisCLr1HImVecgonZK7HIm9WTmYl0YMaTbMP70qZY,934
|
|
41
45
|
payi/types/budget_list_params.py,sha256=KaJ0H4tfp6mpCyanpysVJBTAMa5aA2Kv73uO_EsBsKE,367
|
|
@@ -72,13 +76,18 @@ payi/types/budgets/tag_update_response.py,sha256=0L-0k2pGw9GndpwArjKhHwOOJgOTOTY
|
|
|
72
76
|
payi/types/categories/__init__.py,sha256=HQScxfK3F_J9HYbphrhG6bYb7S6vtrwafLViar5pHcM,285
|
|
73
77
|
payi/types/categories/resource_create_params.py,sha256=mbLjAyRz9iuINs_KEWYCLLUZFq4GcRhs0vL2RxqBFwQ,587
|
|
74
78
|
payi/types/categories/resource_list_response.py,sha256=ODMelDlXvYcwxBsJwTX8miofywUY_JB0OvsFVCKJunU,320
|
|
79
|
+
payi/types/evaluations/__init__.py,sha256=crWSnR2SwRTTp1nadR_i_dfpGCv4dTPuBh_sMoss0tQ,288
|
|
80
|
+
payi/types/evaluations/experience_create_params.py,sha256=3leYJN4FHKJbTeym_uPlvX0vSqD8G8Lr8iPV8BwM5gw,353
|
|
81
|
+
payi/types/evaluations/request_create_params.py,sha256=OPV7ff1fGgi6FbUzndN4j5omqFcCUaRzblHLxDsoQaI,347
|
|
75
82
|
payi/types/experiences/__init__.py,sha256=8gAwTPOFwf87LFLyCwmDek2cIb2DHJYyI4Ymqoz6X1o,455
|
|
76
|
-
payi/types/experiences/experience_type.py,sha256=
|
|
83
|
+
payi/types/experiences/experience_type.py,sha256=xD1XORvyYbIw9u2QUZHh4Sy4AYP0rqkL1sXJIz1NU5k,244
|
|
77
84
|
payi/types/experiences/type_create_params.py,sha256=8dNpffodzeD5vm3s6UJrZVOG7YsiTkXo7viDnoEoCZY,311
|
|
78
85
|
payi/types/experiences/type_list_params.py,sha256=VDZjHmK2tNAW_YLewcIzM-OG13iI2v-xCykokxkcgbs,286
|
|
79
86
|
payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG12rZRU9w6kgQN28,280
|
|
80
87
|
payi/types/experiences/type_update_params.py,sha256=SOHb1GQiHktLB6YtEzdPllDDowS3FCfQqVWSmf0pD8Q,286
|
|
81
|
-
payi
|
|
82
|
-
payi
|
|
83
|
-
payi-0.1.
|
|
84
|
-
payi-0.1.
|
|
88
|
+
payi/types/shared/__init__.py,sha256=zgBdtU5-a1ee8l5ABWyzuELwWRTKOCCcOx7gbCgdE4A,161
|
|
89
|
+
payi/types/shared/evaluation_response.py,sha256=V1HnUI1NeXdwZKJmlN_jhOC2nJPFTw1jjISWuqlIi0E,215
|
|
90
|
+
payi-0.1.0a25.dist-info/METADATA,sha256=ieWzqKxRjIQSSouEx38sxt2xJ0E5JBp45I6ZV7N-Ilk,12324
|
|
91
|
+
payi-0.1.0a25.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
92
|
+
payi-0.1.0a25.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
|
|
93
|
+
payi-0.1.0a25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|