payi 0.1.0a26__py3-none-any.whl → 0.1.0a28__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 +9 -2
- payi/_client.py +16 -0
- payi/_compat.py +5 -3
- payi/_models.py +11 -8
- payi/_response.py +3 -0
- payi/_types.py +4 -2
- payi/_utils/__init__.py +1 -0
- payi/_utils/_transform.py +12 -2
- payi/_utils/_utils.py +17 -0
- payi/_version.py +1 -1
- payi/resources/__init__.py +28 -0
- payi/resources/billing_models.py +492 -0
- payi/resources/budgets/budgets.py +4 -4
- payi/resources/categories/resources.py +5 -9
- payi/resources/ingest.py +19 -10
- payi/resources/price_modifiers.py +353 -0
- payi/types/__init__.py +8 -0
- payi/types/billing_model.py +29 -0
- payi/types/billing_model_create_params.py +20 -0
- payi/types/billing_model_list_response.py +10 -0
- payi/types/billing_model_update_params.py +20 -0
- payi/types/budget_create_params.py +2 -2
- payi/types/budget_response.py +2 -2
- payi/types/categories/resource_create_params.py +9 -5
- payi/types/category_resource_response.py +9 -5
- payi/types/cost_data.py +0 -1
- payi/types/csat.py +0 -1
- payi/types/experience_instance.py +0 -1
- payi/types/experiences/experience_type.py +0 -1
- payi/types/ingest_event_param.py +12 -6
- payi/types/ingest_response.py +7 -1
- payi/types/ingest_units_params.py +11 -6
- payi/types/paged_budget_list.py +2 -2
- payi/types/price_modifier.py +26 -0
- payi/types/price_modifier_create_params.py +17 -0
- payi/types/price_modifier_retrieve_response.py +10 -0
- payi/types/price_modifier_update_params.py +17 -0
- payi/types/requests_data.py +2 -1
- payi/types/total_cost_data.py +0 -1
- {payi-0.1.0a26.dist-info → payi-0.1.0a28.dist-info}/METADATA +11 -11
- {payi-0.1.0a26.dist-info → payi-0.1.0a28.dist-info}/RECORD +43 -37
- {payi-0.1.0a26.dist-info → payi-0.1.0a28.dist-info}/WHEEL +1 -1
- payi/types/evaluations/__init__.py +0 -6
- payi/types/evaluations/experience_create_params.py +0 -14
- payi/types/evaluations/request_create_params.py +0 -14
- payi/types/shared/__init__.py +0 -2
- {payi-0.1.0a26.dist-info → payi-0.1.0a28.dist-info}/licenses/LICENSE +0 -0
payi/types/csat.py
CHANGED
payi/types/ingest_event_param.py
CHANGED
|
@@ -2,30 +2,36 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import List, Union, Optional
|
|
5
|
+
from typing import Dict, List, Union, Optional
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
9
|
from .._utils import PropertyInfo
|
|
10
10
|
|
|
11
|
-
__all__ = ["IngestEventParam"]
|
|
11
|
+
__all__ = ["IngestEventParam", "Units"]
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
class
|
|
15
|
-
|
|
14
|
+
class Units(TypedDict, total=False):
|
|
15
|
+
input: int
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
output: int
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
|
|
20
|
+
class IngestEventParam(TypedDict, total=False):
|
|
21
|
+
category: Required[str]
|
|
20
22
|
|
|
21
23
|
resource: Required[str]
|
|
22
24
|
|
|
25
|
+
units: Required[Dict[str, Units]]
|
|
26
|
+
|
|
23
27
|
budget_ids: Optional[List[str]]
|
|
24
28
|
|
|
25
29
|
event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
|
|
26
30
|
|
|
27
31
|
experience_id: Optional[str]
|
|
28
32
|
|
|
33
|
+
experience_name: Optional[str]
|
|
34
|
+
|
|
29
35
|
provisioned_resource_name: Optional[str]
|
|
30
36
|
|
|
31
37
|
request_tags: Optional[List[str]]
|
payi/types/ingest_response.py
CHANGED
|
@@ -11,7 +11,7 @@ __all__ = ["IngestResponse", "XproxyResult", "XproxyResultBudgets", "XproxyResul
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class XproxyResultBudgets(BaseModel):
|
|
14
|
-
state: Optional[Literal["ok", "blocked", "blocked_external", "exceeded", "failed"]] = None
|
|
14
|
+
state: Optional[Literal["ok", "blocked", "blocked_external", "exceeded", "overrun", "failed"]] = None
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class XproxyResultCost(BaseModel):
|
|
@@ -29,10 +29,16 @@ class XproxyResult(BaseModel):
|
|
|
29
29
|
|
|
30
30
|
cost: Optional[XproxyResultCost] = None
|
|
31
31
|
|
|
32
|
+
experience_id: Optional[str] = None
|
|
33
|
+
|
|
32
34
|
request_id: Optional[str] = None
|
|
33
35
|
|
|
34
36
|
request_tags: Optional[List[str]] = None
|
|
35
37
|
|
|
38
|
+
resource_id: Optional[str] = None
|
|
39
|
+
|
|
40
|
+
user_id: Optional[str] = None
|
|
41
|
+
|
|
36
42
|
|
|
37
43
|
class IngestResponse(BaseModel):
|
|
38
44
|
event_timestamp: datetime
|
|
@@ -2,24 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Union, Optional
|
|
5
|
+
from typing import Dict, Union, Optional
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
9
|
from .._utils import PropertyInfo
|
|
10
10
|
|
|
11
|
-
__all__ = ["IngestUnitsParams"]
|
|
11
|
+
__all__ = ["IngestUnitsParams", "Units"]
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class IngestUnitsParams(TypedDict, total=False):
|
|
15
15
|
category: Required[str]
|
|
16
16
|
|
|
17
|
-
input: Required[int]
|
|
18
|
-
|
|
19
|
-
output: Required[int]
|
|
20
|
-
|
|
21
17
|
resource: Required[str]
|
|
22
18
|
|
|
19
|
+
units: Required[Dict[str, Units]]
|
|
20
|
+
|
|
23
21
|
event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
|
|
24
22
|
|
|
25
23
|
provisioned_resource_name: Optional[str]
|
|
@@ -28,6 +26,13 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
28
26
|
|
|
29
27
|
request_tags: Annotated[Union[list[str], None], PropertyInfo(alias="xProxy-Request-Tags")]
|
|
30
28
|
|
|
29
|
+
experience_name: Annotated[Union[str, None], PropertyInfo(alias="xProxy-Experience-Name")]
|
|
30
|
+
|
|
31
31
|
experience_id: Annotated[Union[str, None], PropertyInfo(alias="xProxy-Experience-Id")]
|
|
32
32
|
|
|
33
33
|
user_id: Annotated[Union[str, None], PropertyInfo(alias="xProxy-User-ID")]
|
|
34
|
+
|
|
35
|
+
class Units(TypedDict, total=False):
|
|
36
|
+
input: int
|
|
37
|
+
|
|
38
|
+
output: int
|
payi/types/paged_budget_list.py
CHANGED
|
@@ -23,8 +23,6 @@ class Item(BaseModel):
|
|
|
23
23
|
|
|
24
24
|
budget_response_type: Literal["block", "allow"]
|
|
25
25
|
|
|
26
|
-
budget_type: Literal["conservative", "liberal"]
|
|
27
|
-
|
|
28
26
|
budget_update_timestamp: datetime
|
|
29
27
|
|
|
30
28
|
currency: Literal["usd"]
|
|
@@ -35,6 +33,8 @@ class Item(BaseModel):
|
|
|
35
33
|
|
|
36
34
|
budget_tags: Optional[List[str]] = None
|
|
37
35
|
|
|
36
|
+
threshold: Optional[float] = None
|
|
37
|
+
|
|
38
38
|
|
|
39
39
|
class PagedBudgetList(BaseModel):
|
|
40
40
|
current_page: Optional[int] = FieldInfo(alias="currentPage", default=None)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["PriceModifier"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class PriceModifier(BaseModel):
|
|
12
|
+
billing_model_id: Optional[str] = None
|
|
13
|
+
|
|
14
|
+
category: Optional[str] = None
|
|
15
|
+
|
|
16
|
+
create_timestamp: datetime
|
|
17
|
+
|
|
18
|
+
price_modifier: float
|
|
19
|
+
|
|
20
|
+
price_modifier_id: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
resource: Optional[str] = None
|
|
23
|
+
|
|
24
|
+
resource_id: Optional[str] = None
|
|
25
|
+
|
|
26
|
+
update_timestamp: datetime
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Required, TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["PriceModifierCreateParams"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class PriceModifierCreateParams(TypedDict, total=False):
|
|
11
|
+
billing_model_id: Required[str]
|
|
12
|
+
|
|
13
|
+
category: Required[str]
|
|
14
|
+
|
|
15
|
+
price_modifier: Required[float]
|
|
16
|
+
|
|
17
|
+
resource: Required[str]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List
|
|
4
|
+
from typing_extensions import TypeAlias
|
|
5
|
+
|
|
6
|
+
from .price_modifier import PriceModifier
|
|
7
|
+
|
|
8
|
+
__all__ = ["PriceModifierRetrieveResponse"]
|
|
9
|
+
|
|
10
|
+
PriceModifierRetrieveResponse: TypeAlias = List[PriceModifier]
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Required, TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["PriceModifierUpdateParams"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class PriceModifierUpdateParams(TypedDict, total=False):
|
|
11
|
+
billing_model_id: Required[str]
|
|
12
|
+
|
|
13
|
+
category: Required[str]
|
|
14
|
+
|
|
15
|
+
price_modifier: Required[float]
|
|
16
|
+
|
|
17
|
+
resource: Required[str]
|
payi/types/requests_data.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
|
|
5
4
|
from .._models import BaseModel
|
|
6
5
|
|
|
7
6
|
__all__ = ["RequestsData"]
|
|
@@ -18,4 +17,6 @@ class RequestsData(BaseModel):
|
|
|
18
17
|
|
|
19
18
|
ok: int
|
|
20
19
|
|
|
20
|
+
overrun: int
|
|
21
|
+
|
|
21
22
|
total: int
|
payi/types/total_cost_data.py
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: payi
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a28
|
|
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
|
|
9
|
-
License-File: LICENSE
|
|
8
|
+
License: Apache-2.0
|
|
10
9
|
Classifier: Intended Audience :: Developers
|
|
11
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
11
|
Classifier: Operating System :: MacOS
|
|
@@ -14,7 +13,6 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
14
13
|
Classifier: Operating System :: OS Independent
|
|
15
14
|
Classifier: Operating System :: POSIX
|
|
16
15
|
Classifier: Operating System :: POSIX :: Linux
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.8
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -22,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
21
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
22
|
Classifier: Typing :: Typed
|
|
25
|
-
Requires-Python: >=3.
|
|
23
|
+
Requires-Python: >=3.8
|
|
26
24
|
Requires-Dist: anyio<5,>=3.5.0
|
|
27
25
|
Requires-Dist: cached-property; python_version < '3.8'
|
|
28
26
|
Requires-Dist: distro<2,>=1.7.0
|
|
@@ -36,7 +34,7 @@ Description-Content-Type: text/markdown
|
|
|
36
34
|
|
|
37
35
|
[](https://pypi.org/project/payi/)
|
|
38
36
|
|
|
39
|
-
The Payi Python library provides convenient access to the Payi REST API from any Python 3.
|
|
37
|
+
The Payi Python library provides convenient access to the Payi REST API from any Python 3.8+
|
|
40
38
|
application. The library includes type definitions for all request params and response fields,
|
|
41
39
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
42
40
|
|
|
@@ -62,8 +60,7 @@ import os
|
|
|
62
60
|
from payi import Payi
|
|
63
61
|
|
|
64
62
|
client = Payi(
|
|
65
|
-
# This is the default and can be omitted
|
|
66
|
-
api_key=os.environ.get("PAYI_API_KEY"),
|
|
63
|
+
api_key=os.environ.get("PAYI_API_KEY"), # This is the default and can be omitted
|
|
67
64
|
)
|
|
68
65
|
|
|
69
66
|
budget_response = client.budgets.create(
|
|
@@ -88,8 +85,7 @@ import asyncio
|
|
|
88
85
|
from payi import AsyncPayi
|
|
89
86
|
|
|
90
87
|
client = AsyncPayi(
|
|
91
|
-
# This is the default and can be omitted
|
|
92
|
-
api_key=os.environ.get("PAYI_API_KEY"),
|
|
88
|
+
api_key=os.environ.get("PAYI_API_KEY"), # This is the default and can be omitted
|
|
93
89
|
)
|
|
94
90
|
|
|
95
91
|
|
|
@@ -369,4 +365,8 @@ print(payi.__version__)
|
|
|
369
365
|
|
|
370
366
|
## Requirements
|
|
371
367
|
|
|
372
|
-
Python 3.
|
|
368
|
+
Python 3.8 or higher.
|
|
369
|
+
|
|
370
|
+
## Contributing
|
|
371
|
+
|
|
372
|
+
See [the contributing documentation](https://github.com/Pay-i/pay-i-python/tree/main/./CONTRIBUTING.md).
|
|
@@ -1,67 +1,77 @@
|
|
|
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=Jq9mZjEknHo-6ZANRPCQXVHTbbC4Hh7QLFv2jrNtGJ0,67842
|
|
3
|
+
payi/_client.py,sha256=ljPrM5gfpC2WHYmifPcdLIedJUuKD91GWcS49c3RE38,18472
|
|
4
|
+
payi/_compat.py,sha256=fQkXUY7reJc8m_yguMWSjHBfO8lNzw4wOAxtkhP9d1Q,6607
|
|
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=uhxvXZC0JO7HuGR_GWXH-zYKuptF2rwiGVJfMMfg3fw,28470
|
|
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=9ZpP3Agz-3ReY0RSJo7O7BAwD0UluwRsTSvljdTh1dg,28597
|
|
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=J0i_n21O_stX9WmxhCAuKnzv4oJgEPGykFNVqcXg0d0,6165
|
|
14
|
+
payi/_version.py,sha256=tJrJog9eov1GG_eNMMs92lHJsLovL1tr5BqqR7TaZvs,165
|
|
15
15
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
payi/_utils/__init__.py,sha256=
|
|
16
|
+
payi/_utils/__init__.py,sha256=k266EatJr88V8Zseb7xUimTlCeno9SynRfLwadHP1b4,2016
|
|
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=9ex9pfOyd8xAF1LxpFx4IkqL8k0vk8srE2Ee-OTMQ0A,2840
|
|
22
|
-
payi/_utils/_transform.py,sha256=
|
|
22
|
+
payi/_utils/_transform.py,sha256=Dkkyr7OveGmOolepcvXmVJWE3kqim4b0nM0h7yWbgeY,13468
|
|
23
23
|
payi/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
|
|
24
|
-
payi/_utils/_utils.py,sha256=
|
|
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
|
|
27
|
-
payi/resources/__init__.py,sha256=
|
|
27
|
+
payi/resources/__init__.py,sha256=cnFr2LhHLYehosTS7idW9lW_CrDwFClh-Wpgp9uHxh0,3553
|
|
28
|
+
payi/resources/billing_models.py,sha256=QOCR1PVOxpZlvwO_L_EJS_nQFJOfXHPdnli1P9BpHPU,19488
|
|
28
29
|
payi/resources/csat.py,sha256=56Sn2JM3xbc33J7xiC0Q0aLd5KuZK0ty_jxN-ZNPz7M,6526
|
|
29
|
-
payi/resources/ingest.py,sha256=
|
|
30
|
+
payi/resources/ingest.py,sha256=mETi2sihDKDptJzdLo7AwAxVOREDRA-jAs7Mc6dC7pk,16105
|
|
31
|
+
payi/resources/price_modifiers.py,sha256=m9IX__C7_oPcZzGNpHJ2BsjMkGQ29JZrxLM1nFa8dL4,13483
|
|
30
32
|
payi/resources/budgets/__init__.py,sha256=w1UhOdDXtUH4A91ME5Tw2nr9bRvPJyJY1YWiVVy7jj0,989
|
|
31
|
-
payi/resources/budgets/budgets.py,sha256=
|
|
33
|
+
payi/resources/budgets/budgets.py,sha256=GCTSojdFjDdWuJM2lO_-QKktFhncaA84xPx5C-RI7ks,27456
|
|
32
34
|
payi/resources/budgets/tags.py,sha256=akVs7lGBb7O697lv-_nXT_xlh6dgQuaj6pWqTenO86s,18827
|
|
33
35
|
payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
|
|
34
36
|
payi/resources/categories/categories.py,sha256=dGsAX313gZlLy5pSRo5_TexD1rPeWU666yHNwiUEFBA,16082
|
|
35
|
-
payi/resources/categories/resources.py,sha256=
|
|
37
|
+
payi/resources/categories/resources.py,sha256=I38bjAvpsLg4LRwJEvnKX3yyr_ErTxkkv12y19sYd7E,18712
|
|
36
38
|
payi/resources/experiences/__init__.py,sha256=gguTTCoGlAWDyrDJh1CtZwIVsyBbzERX63vRtFtjxjI,1054
|
|
37
39
|
payi/resources/experiences/experiences.py,sha256=fdWaZox-WRCGwo8CJLsQFYVE8bf-yn7lFDO_dtwpyFQ,13264
|
|
38
40
|
payi/resources/experiences/types.py,sha256=QuNX3B7mtUNuxREn9tOGNRRI0dEfiDX2fvLp6mIL7dQ,18679
|
|
39
|
-
payi/types/__init__.py,sha256=
|
|
40
|
-
payi/types/
|
|
41
|
+
payi/types/__init__.py,sha256=U-QUsH_PYmS3gRyxADTjcj_yWAIchziTeOqT-b2Oe-A,2603
|
|
42
|
+
payi/types/billing_model.py,sha256=KXx2FlyeRJ9CLdtCufxehSrCT-h0X4msvM2hAKsCvxg,561
|
|
43
|
+
payi/types/billing_model_create_params.py,sha256=3AjATUFt_ZEBJqAwHKnpo3i0OqQLMCVpZlXOcCunAsk,476
|
|
44
|
+
payi/types/billing_model_list_response.py,sha256=hOFjJPQAKiWEArZeZwd8e1lDi5e41zbN6NvV_1rzJeM,290
|
|
45
|
+
payi/types/billing_model_update_params.py,sha256=x-r3EyBFovv4TgDqavsc9Jcz4XiGBZG3x9F-lVX5DMo,476
|
|
46
|
+
payi/types/budget_create_params.py,sha256=MDXUCZFK9SZHUTkB9OrQ8SeF1Xu7gmivuYSbcN9X-3w,632
|
|
41
47
|
payi/types/budget_history_response.py,sha256=4SnisCLr1HImVecgonZK7HIm9WTmYl0YMaTbMP70qZY,934
|
|
42
48
|
payi/types/budget_list_params.py,sha256=KaJ0H4tfp6mpCyanpysVJBTAMa5aA2Kv73uO_EsBsKE,367
|
|
43
|
-
payi/types/budget_response.py,sha256=
|
|
49
|
+
payi/types/budget_response.py,sha256=Zh8rC7fNaN7lIfGB-cF911x1lL9wU0L161FjuFve6Qc,813
|
|
44
50
|
payi/types/budget_update_params.py,sha256=foD5cPa1p2M2cpVUqlwkXwSEQlQcBLaigUQMUGkvcic,334
|
|
45
51
|
payi/types/bulk_ingest_response.py,sha256=78J3vlL7muZx9Z20H--UkvM8P19g0cDL9SZoHy7XM68,1330
|
|
46
52
|
payi/types/category_delete_resource_response.py,sha256=PLz4wZA1XMpS9SUYB_j4hEw5EoZ0VVE9Ll-MQ26SAfc,339
|
|
47
53
|
payi/types/category_delete_response.py,sha256=exq8rNDGoq2-YN528V8osdcmuptJ-k63rmCvPMm6hLA,323
|
|
48
54
|
payi/types/category_list_resources_response.py,sha256=n0DxY7N3Iftwfl0lUEx5v55V0kxbOX0EgjXlEfJtYRQ,337
|
|
49
55
|
payi/types/category_list_response.py,sha256=5i7BhQ7kVlx8_r2MLJqAJwIELGitKE0uR63kIloLATI,294
|
|
50
|
-
payi/types/category_resource_response.py,sha256=
|
|
56
|
+
payi/types/category_resource_response.py,sha256=4PfQZbOIMOlE701uXGU-qegZOH8DN1VYcSClhfe_GOA,601
|
|
51
57
|
payi/types/category_response.py,sha256=43i8bii20Sb-z9R5M1Ia6RGfRZmdQqsWPlv4Bl1XQf0,293
|
|
52
|
-
payi/types/cost_data.py,sha256=
|
|
58
|
+
payi/types/cost_data.py,sha256=PDmleZu-HKKOIh_EZ5EgWvpGiTUSJQadsxedWhFVgEI,283
|
|
53
59
|
payi/types/cost_details.py,sha256=3ldvnYILAG6Sz9wGWMs1SZvIfdGEbn5i4-CauWEXMPA,265
|
|
54
|
-
payi/types/csat.py,sha256=
|
|
60
|
+
payi/types/csat.py,sha256=q-RdlcEJQpyWCdEJw7s-ntAeaY1SgLyMflehZ01CDFU,185
|
|
55
61
|
payi/types/csat_create_params.py,sha256=YK2M8yuqkZ7p-Z5S_6nSOeALX0Ox6QI8xiA2AzZ9vJI,342
|
|
56
62
|
payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
|
|
57
|
-
payi/types/experience_instance.py,sha256=
|
|
63
|
+
payi/types/experience_instance.py,sha256=l-y2oD91l5t9mDYkgz8UR_Sx6JcjLVBRYjxflaJhzCY,237
|
|
58
64
|
payi/types/ingest_bulk_params.py,sha256=aIsugHkiAe_DnGQ8JVpDUDYr1YNzR5cUY9mMPqusIP0,381
|
|
59
|
-
payi/types/ingest_event_param.py,sha256=
|
|
60
|
-
payi/types/ingest_response.py,sha256=
|
|
61
|
-
payi/types/ingest_units_params.py,sha256=
|
|
62
|
-
payi/types/paged_budget_list.py,sha256=
|
|
63
|
-
payi/types/
|
|
64
|
-
payi/types/
|
|
65
|
+
payi/types/ingest_event_param.py,sha256=UzGSJUQCl6B2_UaSg-F-bc5nxbpnD8Wc1Idl38R8Mvo,866
|
|
66
|
+
payi/types/ingest_response.py,sha256=Ug83Sfl-3tELRh5rWFclOZYgsZBkvCjUXJXrp1J5Uac,1197
|
|
67
|
+
payi/types/ingest_units_params.py,sha256=vOos7NhlcAy7s11wTgOR4B5gDy5Kau2-gzRoaivP0Ho,1143
|
|
68
|
+
payi/types/paged_budget_list.py,sha256=WGX0c6QGyTwjhsgkABsvXXRaBFPLVg6gPbph_qtVmJg,1371
|
|
69
|
+
payi/types/price_modifier.py,sha256=Sw_5tzCGnpjQzR5aZ70_ATpfBRQA_0ue2NRM3yMcvj0,531
|
|
70
|
+
payi/types/price_modifier_create_params.py,sha256=RpcYr2JYFu-pxzY4Dx1ESMp9-FBHfKt03Iw-3tlZvXQ,404
|
|
71
|
+
payi/types/price_modifier_retrieve_response.py,sha256=oFXWr38-O7KHItQlSsr7K8-Arpjq0yKexSUnbWqu62Q,303
|
|
72
|
+
payi/types/price_modifier_update_params.py,sha256=lqZW1J5akLSNv-6i4dGPCqwe1p3d7rM8JzzQ4Hofsbo,404
|
|
73
|
+
payi/types/requests_data.py,sha256=sGhAykQ5lh8iEwYfIsDRO5Tso139N8nlmQUL9hg3YSQ,308
|
|
74
|
+
payi/types/total_cost_data.py,sha256=FGh5XO5DwAIqkdmW9umyrJ7uD7U0w6CLDimzhP34Dmc,302
|
|
65
75
|
payi/types/budgets/__init__.py,sha256=5ByVuqOcgSYLHmGzhuj6-HG48mtQhC6oT5U5tNjQtxk,725
|
|
66
76
|
payi/types/budgets/budget_tags.py,sha256=nOYMf7YgRdTZgGdedJw0UbQ2uupCq9MHlevLJoXxWB4,348
|
|
67
77
|
payi/types/budgets/tag_create_params.py,sha256=_zEYfH2uKF44WenAdedx4TB9Az6RbIoAUMwqW8SAiuc,314
|
|
@@ -73,19 +83,15 @@ payi/types/budgets/tag_remove_response.py,sha256=v7ysGVZ-54dKurvMA-3ySKco4LgTz3M
|
|
|
73
83
|
payi/types/budgets/tag_update_params.py,sha256=bWWeDqfySt7CZ6HDsZzENREOWGWGWFgnAtyleNMwUsE,314
|
|
74
84
|
payi/types/budgets/tag_update_response.py,sha256=0L-0k2pGw9GndpwArjKhHwOOJgOTOTY4mM7ukUM3Pwc,270
|
|
75
85
|
payi/types/categories/__init__.py,sha256=HQScxfK3F_J9HYbphrhG6bYb7S6vtrwafLViar5pHcM,285
|
|
76
|
-
payi/types/categories/resource_create_params.py,sha256=
|
|
86
|
+
payi/types/categories/resource_create_params.py,sha256=jEXNx_FvWA9D5170Gwf_YUcuAOaDq0RIGaGgPSEsheA,725
|
|
77
87
|
payi/types/categories/resource_list_response.py,sha256=ODMelDlXvYcwxBsJwTX8miofywUY_JB0OvsFVCKJunU,320
|
|
78
|
-
payi/types/evaluations/__init__.py,sha256=crWSnR2SwRTTp1nadR_i_dfpGCv4dTPuBh_sMoss0tQ,288
|
|
79
|
-
payi/types/evaluations/experience_create_params.py,sha256=3leYJN4FHKJbTeym_uPlvX0vSqD8G8Lr8iPV8BwM5gw,353
|
|
80
|
-
payi/types/evaluations/request_create_params.py,sha256=OPV7ff1fGgi6FbUzndN4j5omqFcCUaRzblHLxDsoQaI,347
|
|
81
88
|
payi/types/experiences/__init__.py,sha256=8gAwTPOFwf87LFLyCwmDek2cIb2DHJYyI4Ymqoz6X1o,455
|
|
82
|
-
payi/types/experiences/experience_type.py,sha256=
|
|
89
|
+
payi/types/experiences/experience_type.py,sha256=UoFekiOnkBZ5kqIHcBa8YE9T7uxwp-gLp3QGgxAxOoc,243
|
|
83
90
|
payi/types/experiences/type_create_params.py,sha256=8dNpffodzeD5vm3s6UJrZVOG7YsiTkXo7viDnoEoCZY,311
|
|
84
91
|
payi/types/experiences/type_list_params.py,sha256=VDZjHmK2tNAW_YLewcIzM-OG13iI2v-xCykokxkcgbs,286
|
|
85
92
|
payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG12rZRU9w6kgQN28,280
|
|
86
93
|
payi/types/experiences/type_update_params.py,sha256=SOHb1GQiHktLB6YtEzdPllDDowS3FCfQqVWSmf0pD8Q,286
|
|
87
|
-
payi/
|
|
88
|
-
payi-0.1.
|
|
89
|
-
payi-0.1.
|
|
90
|
-
payi-0.1.
|
|
91
|
-
payi-0.1.0a26.dist-info/RECORD,,
|
|
94
|
+
payi-0.1.0a28.dist-info/METADATA,sha256=5wiucLhuowVcjOnuF1ey5JVLjKwGt_b2G-YExHbhnZk,12358
|
|
95
|
+
payi-0.1.0a28.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
96
|
+
payi-0.1.0a28.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
|
|
97
|
+
payi-0.1.0a28.dist-info/RECORD,,
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
|
|
5
|
-
from .request_create_params import RequestCreateParams as RequestCreateParams
|
|
6
|
-
from .experience_create_params import ExperienceCreateParams as ExperienceCreateParams
|
|
@@ -1,14 +0,0 @@
|
|
|
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__ = ["ExperienceCreateParams"]
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class ExperienceCreateParams(TypedDict, total=False):
|
|
12
|
-
evaluation: Required[int]
|
|
13
|
-
|
|
14
|
-
user_id: Optional[str]
|
|
@@ -1,14 +0,0 @@
|
|
|
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]
|
payi/types/shared/__init__.py
DELETED
|
File without changes
|