payi 0.1.0a93__py3-none-any.whl → 0.1.0a95__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 +0 -9
- payi/_version.py +1 -1
- payi/lib/AnthropicInstrumentor.py +1 -2
- payi/lib/BedrockInstrumentor.py +3 -3
- payi/lib/instrument.py +2 -2
- payi/resources/__init__.py +0 -14
- payi/resources/ingest.py +14 -28
- payi/resources/limits/limits.py +8 -0
- payi/resources/use_cases/kpis.py +1 -177
- payi/resources/use_cases/properties.py +5 -5
- payi/resources/use_cases/use_cases.py +15 -13
- payi/types/__init__.py +3 -2
- payi/types/ingest_units_params.py +2 -4
- payi/types/limit_create_params.py +2 -2
- payi/types/{use_case_instance_response.py → use_case_create_response.py} +2 -2
- payi/types/{experience_instance_response.py → use_case_delete_response.py} +3 -3
- payi/types/use_case_retrieve_response.py +15 -0
- payi/types/use_cases/__init__.py +1 -1
- payi/types/use_cases/property_create_response.py +15 -0
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/METADATA +1 -1
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/RECORD +23 -36
- payi/resources/experiences/__init__.py +0 -47
- payi/resources/experiences/experiences.py +0 -383
- payi/resources/experiences/properties.py +0 -171
- payi/resources/experiences/types/__init__.py +0 -33
- payi/resources/experiences/types/limit_config.py +0 -272
- payi/resources/experiences/types/types.py +0 -581
- payi/types/experiences/__init__.py +0 -9
- payi/types/experiences/experience_type.py +0 -24
- payi/types/experiences/property_create_params.py +0 -12
- payi/types/experiences/type_create_params.py +0 -22
- payi/types/experiences/type_list_params.py +0 -17
- payi/types/experiences/type_update_params.py +0 -14
- payi/types/experiences/types/__init__.py +0 -5
- payi/types/experiences/types/limit_config_create_params.py +0 -18
- payi/types/use_cases/kpi_create_params.py +0 -13
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/WHEEL +0 -0
- {payi-0.1.0a93.dist-info → payi-0.1.0a95.dist-info}/licenses/LICENSE +0 -0
|
@@ -38,7 +38,9 @@ from .definitions.definitions import (
|
|
|
38
38
|
DefinitionsResourceWithStreamingResponse,
|
|
39
39
|
AsyncDefinitionsResourceWithStreamingResponse,
|
|
40
40
|
)
|
|
41
|
-
from ...types.
|
|
41
|
+
from ...types.use_case_create_response import UseCaseCreateResponse
|
|
42
|
+
from ...types.use_case_delete_response import UseCaseDeleteResponse
|
|
43
|
+
from ...types.use_case_retrieve_response import UseCaseRetrieveResponse
|
|
42
44
|
|
|
43
45
|
__all__ = ["UseCasesResource", "AsyncUseCasesResource"]
|
|
44
46
|
|
|
@@ -85,7 +87,7 @@ class UseCasesResource(SyncAPIResource):
|
|
|
85
87
|
extra_query: Query | None = None,
|
|
86
88
|
extra_body: Body | None = None,
|
|
87
89
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
88
|
-
) ->
|
|
90
|
+
) -> UseCaseCreateResponse:
|
|
89
91
|
"""
|
|
90
92
|
Create a Use Case instance
|
|
91
93
|
|
|
@@ -105,7 +107,7 @@ class UseCasesResource(SyncAPIResource):
|
|
|
105
107
|
options=make_request_options(
|
|
106
108
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
107
109
|
),
|
|
108
|
-
cast_to=
|
|
110
|
+
cast_to=UseCaseCreateResponse,
|
|
109
111
|
)
|
|
110
112
|
|
|
111
113
|
def retrieve(
|
|
@@ -118,7 +120,7 @@ class UseCasesResource(SyncAPIResource):
|
|
|
118
120
|
extra_query: Query | None = None,
|
|
119
121
|
extra_body: Body | None = None,
|
|
120
122
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
121
|
-
) ->
|
|
123
|
+
) -> UseCaseRetrieveResponse:
|
|
122
124
|
"""
|
|
123
125
|
Get a Use Case instance details
|
|
124
126
|
|
|
@@ -138,7 +140,7 @@ class UseCasesResource(SyncAPIResource):
|
|
|
138
140
|
options=make_request_options(
|
|
139
141
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
140
142
|
),
|
|
141
|
-
cast_to=
|
|
143
|
+
cast_to=UseCaseRetrieveResponse,
|
|
142
144
|
)
|
|
143
145
|
|
|
144
146
|
def delete(
|
|
@@ -151,7 +153,7 @@ class UseCasesResource(SyncAPIResource):
|
|
|
151
153
|
extra_query: Query | None = None,
|
|
152
154
|
extra_body: Body | None = None,
|
|
153
155
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
154
|
-
) ->
|
|
156
|
+
) -> UseCaseDeleteResponse:
|
|
155
157
|
"""
|
|
156
158
|
Delete a Use Case instance
|
|
157
159
|
|
|
@@ -171,7 +173,7 @@ class UseCasesResource(SyncAPIResource):
|
|
|
171
173
|
options=make_request_options(
|
|
172
174
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
173
175
|
),
|
|
174
|
-
cast_to=
|
|
176
|
+
cast_to=UseCaseDeleteResponse,
|
|
175
177
|
)
|
|
176
178
|
|
|
177
179
|
|
|
@@ -217,7 +219,7 @@ class AsyncUseCasesResource(AsyncAPIResource):
|
|
|
217
219
|
extra_query: Query | None = None,
|
|
218
220
|
extra_body: Body | None = None,
|
|
219
221
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
220
|
-
) ->
|
|
222
|
+
) -> UseCaseCreateResponse:
|
|
221
223
|
"""
|
|
222
224
|
Create a Use Case instance
|
|
223
225
|
|
|
@@ -237,7 +239,7 @@ class AsyncUseCasesResource(AsyncAPIResource):
|
|
|
237
239
|
options=make_request_options(
|
|
238
240
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
239
241
|
),
|
|
240
|
-
cast_to=
|
|
242
|
+
cast_to=UseCaseCreateResponse,
|
|
241
243
|
)
|
|
242
244
|
|
|
243
245
|
async def retrieve(
|
|
@@ -250,7 +252,7 @@ class AsyncUseCasesResource(AsyncAPIResource):
|
|
|
250
252
|
extra_query: Query | None = None,
|
|
251
253
|
extra_body: Body | None = None,
|
|
252
254
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
253
|
-
) ->
|
|
255
|
+
) -> UseCaseRetrieveResponse:
|
|
254
256
|
"""
|
|
255
257
|
Get a Use Case instance details
|
|
256
258
|
|
|
@@ -270,7 +272,7 @@ class AsyncUseCasesResource(AsyncAPIResource):
|
|
|
270
272
|
options=make_request_options(
|
|
271
273
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
272
274
|
),
|
|
273
|
-
cast_to=
|
|
275
|
+
cast_to=UseCaseRetrieveResponse,
|
|
274
276
|
)
|
|
275
277
|
|
|
276
278
|
async def delete(
|
|
@@ -283,7 +285,7 @@ class AsyncUseCasesResource(AsyncAPIResource):
|
|
|
283
285
|
extra_query: Query | None = None,
|
|
284
286
|
extra_body: Body | None = None,
|
|
285
287
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
286
|
-
) ->
|
|
288
|
+
) -> UseCaseDeleteResponse:
|
|
287
289
|
"""
|
|
288
290
|
Delete a Use Case instance
|
|
289
291
|
|
|
@@ -303,7 +305,7 @@ class AsyncUseCasesResource(AsyncAPIResource):
|
|
|
303
305
|
options=make_request_options(
|
|
304
306
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
305
307
|
),
|
|
306
|
-
cast_to=
|
|
308
|
+
cast_to=UseCaseDeleteResponse,
|
|
307
309
|
)
|
|
308
310
|
|
|
309
311
|
|
payi/types/__init__.py
CHANGED
|
@@ -30,9 +30,10 @@ from .bulk_ingest_response import BulkIngestResponse as BulkIngestResponse
|
|
|
30
30
|
from .category_list_params import CategoryListParams as CategoryListParams
|
|
31
31
|
from .limit_history_response import LimitHistoryResponse as LimitHistoryResponse
|
|
32
32
|
from .category_delete_response import CategoryDeleteResponse as CategoryDeleteResponse
|
|
33
|
+
from .use_case_create_response import UseCaseCreateResponse as UseCaseCreateResponse
|
|
34
|
+
from .use_case_delete_response import UseCaseDeleteResponse as UseCaseDeleteResponse
|
|
33
35
|
from .category_resource_response import CategoryResourceResponse as CategoryResourceResponse
|
|
34
|
-
from .
|
|
35
|
-
from .experience_instance_response import ExperienceInstanceResponse as ExperienceInstanceResponse
|
|
36
|
+
from .use_case_retrieve_response import UseCaseRetrieveResponse as UseCaseRetrieveResponse
|
|
36
37
|
from .category_list_resources_params import CategoryListResourcesParams as CategoryListResourcesParams
|
|
37
38
|
from .category_delete_resource_response import CategoryDeleteResourceResponse as CategoryDeleteResourceResponse
|
|
38
39
|
from .pay_i_common_models_api_router_header_info_param import (
|
|
@@ -56,10 +56,6 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
56
56
|
|
|
57
57
|
request_tags: Annotated[Union[list[str], None], PropertyInfo(alias="xProxy-Request-Tags")]
|
|
58
58
|
|
|
59
|
-
experience_name: Annotated[Union[str, None], PropertyInfo(alias="xProxy-Experience-Name")]
|
|
60
|
-
|
|
61
|
-
experience_id: Annotated[Union[str, None], PropertyInfo(alias="xProxy-Experience-ID")]
|
|
62
|
-
|
|
63
59
|
use_case_name: Annotated[Union[str, None], PropertyInfo(alias="xProxy-UseCase-Name")]
|
|
64
60
|
|
|
65
61
|
use_case_id: Annotated[Union[str, None], PropertyInfo(alias="xProxy-UseCase-ID")]
|
|
@@ -72,6 +68,8 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
72
68
|
|
|
73
69
|
user_id: Annotated[Union[str, None], PropertyInfo(alias="xProxy-User-ID")]
|
|
74
70
|
|
|
71
|
+
account_name: Annotated[str, PropertyInfo(alias="xProxy-Account-Name")]
|
|
72
|
+
|
|
75
73
|
class ProviderResponseFunctionCall(TypedDict, total=False):
|
|
76
74
|
name: Required[str]
|
|
77
75
|
|
|
@@ -13,9 +13,9 @@ class LimitCreateParams(TypedDict, total=False):
|
|
|
13
13
|
|
|
14
14
|
max: Required[float]
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
billing_model_id: Optional[str]
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
limit_basis: Literal["base", "billed"]
|
|
19
19
|
|
|
20
20
|
limit_id: Optional[str]
|
|
21
21
|
|
|
@@ -4,10 +4,10 @@ from typing import Optional
|
|
|
4
4
|
|
|
5
5
|
from .._models import BaseModel
|
|
6
6
|
|
|
7
|
-
__all__ = ["
|
|
7
|
+
__all__ = ["UseCaseCreateResponse"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class
|
|
10
|
+
class UseCaseCreateResponse(BaseModel):
|
|
11
11
|
use_case_id: str
|
|
12
12
|
|
|
13
13
|
limit_id: Optional[str] = None
|
|
@@ -4,11 +4,11 @@ from typing import Optional
|
|
|
4
4
|
|
|
5
5
|
from .._models import BaseModel
|
|
6
6
|
|
|
7
|
-
__all__ = ["
|
|
7
|
+
__all__ = ["UseCaseDeleteResponse"]
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class
|
|
11
|
-
|
|
10
|
+
class UseCaseDeleteResponse(BaseModel):
|
|
11
|
+
use_case_id: str
|
|
12
12
|
|
|
13
13
|
limit_id: Optional[str] = None
|
|
14
14
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from .._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["UseCaseRetrieveResponse"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class UseCaseRetrieveResponse(BaseModel):
|
|
11
|
+
use_case_id: str
|
|
12
|
+
|
|
13
|
+
limit_id: Optional[str] = None
|
|
14
|
+
|
|
15
|
+
type_version: Optional[int] = None
|
payi/types/use_cases/__init__.py
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from .kpi_list_params import KpiListParams as KpiListParams
|
|
6
|
-
from .kpi_create_params import KpiCreateParams as KpiCreateParams
|
|
7
6
|
from .kpi_list_response import KpiListResponse as KpiListResponse
|
|
8
7
|
from .kpi_update_params import KpiUpdateParams as KpiUpdateParams
|
|
9
8
|
from .use_case_definition import UseCaseDefinition as UseCaseDefinition
|
|
@@ -11,3 +10,4 @@ from .definition_list_params import DefinitionListParams as DefinitionListParams
|
|
|
11
10
|
from .property_create_params import PropertyCreateParams as PropertyCreateParams
|
|
12
11
|
from .definition_create_params import DefinitionCreateParams as DefinitionCreateParams
|
|
13
12
|
from .definition_update_params import DefinitionUpdateParams as DefinitionUpdateParams
|
|
13
|
+
from .property_create_response import PropertyCreateResponse as PropertyCreateResponse
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from ..._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["PropertyCreateResponse"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class PropertyCreateResponse(BaseModel):
|
|
11
|
+
use_case_id: str
|
|
12
|
+
|
|
13
|
+
limit_id: Optional[str] = None
|
|
14
|
+
|
|
15
|
+
type_version: Optional[int] = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
payi/__init__.py,sha256=D0Hb0f0CuE6t648U7C0qOOKez56wyNcIndIYcNuamlU,2560
|
|
2
2
|
payi/_base_client.py,sha256=Euo_HnDuz_74WmLbzSJZe5mBIbXNQIixMiOvCSRZFiI,66713
|
|
3
|
-
payi/_client.py,sha256=
|
|
3
|
+
payi/_client.py,sha256=tKKTYVdI7BWHLNUzYDI9t1zqu2OQrDjm0Blm9lkqTUw,17199
|
|
4
4
|
payi/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
|
5
5
|
payi/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
payi/_exceptions.py,sha256=ItygKNrNXIVY0H6LsGVZvFuAHB3Vtm_VZXmWzCnpHy0,3216
|
|
@@ -11,7 +11,7 @@ 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
13
|
payi/_types.py,sha256=7jE5MoQQFVoVxw5vVzvZ2Ao0kcjfNOGsBgyJfLBEnMo,6195
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=MwvIySA-SjHckXFc4eYpgq_mnnQ155hxUmiYwsEVAjM,165
|
|
15
15
|
payi/pagination.py,sha256=k2356QGPOUSjRF2vHpwLBdF6P-2vnQzFfRIJQAHGQ7A,1258
|
|
16
16
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
payi/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
@@ -25,44 +25,38 @@ payi/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,156
|
|
|
25
25
|
payi/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
|
|
26
26
|
payi/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
27
27
|
payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
28
|
-
payi/lib/AnthropicInstrumentor.py,sha256=
|
|
29
|
-
payi/lib/BedrockInstrumentor.py,sha256=
|
|
28
|
+
payi/lib/AnthropicInstrumentor.py,sha256=ahYEPqQ5r7K_K5Zt6Q7rLl8jThFthRo3sc15l9o2VPs,14123
|
|
29
|
+
payi/lib/BedrockInstrumentor.py,sha256=3f79Av7reWENDcX7_9D5YBwH0Zd-RDVgrZ8vh051yIY,17594
|
|
30
30
|
payi/lib/GoogleGenAiInstrumentor.py,sha256=DLbmlwmyOwooe7FuBkEAO_Z3xjPKpvQyO4VwLBeZnn4,8477
|
|
31
31
|
payi/lib/OpenAIInstrumentor.py,sha256=6HENrdN6kLMUwC00wNSdeGeK4fUDBWo2dCbVC9koi0c,22581
|
|
32
32
|
payi/lib/Stopwatch.py,sha256=7OJlxvr2Jyb6Zr1LYCYKczRB7rDVKkIR7gc4YoleNdE,764
|
|
33
33
|
payi/lib/VertexInstrumentor.py,sha256=q-oYr3YuwPc95xYn6KhjvKs5ZweGRg6mOIkxSTz-lic,7081
|
|
34
34
|
payi/lib/VertexRequest.py,sha256=NNH6S86nCHaU54Rb1rxai-b3UiJvatmzKkDKBmqMeKY,10530
|
|
35
35
|
payi/lib/helpers.py,sha256=FPzNSSHGf9bgD6CanB7yVx_U8t4lm2c0jlZKrsziYlc,4242
|
|
36
|
-
payi/lib/instrument.py,sha256=
|
|
37
|
-
payi/resources/__init__.py,sha256=
|
|
38
|
-
payi/resources/ingest.py,sha256=
|
|
36
|
+
payi/lib/instrument.py,sha256=VEyEyjM0GGIdFqv9ogwBwyWQ8kRJgJWUxlWcQc6798Q,64801
|
|
37
|
+
payi/resources/__init__.py,sha256=B2bn1ZfCf6TbHlzZvy5TpFPtALnFcBRPYVKQH3S5qfQ,2457
|
|
38
|
+
payi/resources/ingest.py,sha256=awE7xDdKOUL2Yhcrhcc11hSNycBlj8QRlahptjana5Q,23040
|
|
39
39
|
payi/resources/categories/__init__.py,sha256=WeotN_d-0Ri8ohsrNPbve7RyViD9_N0NA9DrV3WYg3w,1701
|
|
40
40
|
payi/resources/categories/categories.py,sha256=yYCkCxaYPWees9I9cx9CPy_H9wZK2X7jq8tRh-G__v8,20653
|
|
41
41
|
payi/resources/categories/fixed_cost_resources.py,sha256=tLJlZ06KDIOHpVF4iq8S9IPocGohbOYh9LO0cWGznUA,7824
|
|
42
42
|
payi/resources/categories/resources.py,sha256=nY5mKJPEy7-6J_UsyXZebNmUs6WK5ONx_qON9z6DwUg,19979
|
|
43
|
-
payi/resources/experiences/__init__.py,sha256=Qiyv7Tv6UC-wWpb7XVTyHvBRE0IZTnEpykFpP27xKe0,1556
|
|
44
|
-
payi/resources/experiences/experiences.py,sha256=m_-C_gF-dX8aBL0OYLTsT6-NSyXTaDFWoxv8l6tPOZI,14580
|
|
45
|
-
payi/resources/experiences/properties.py,sha256=Zh2Iyozq6eLlZD5IIzNaC0tcfWZh-r4UOyze-Le68bI,6555
|
|
46
|
-
payi/resources/experiences/types/__init__.py,sha256=42loJPPtbwZ4qrqa1gKEg2CG5PLxCNKfOF113sIOJZc,1055
|
|
47
|
-
payi/resources/experiences/types/limit_config.py,sha256=ZIgtlrcfcYIInc1XYeyHOk2ycF2xyLvou_NpGRGpcfU,10604
|
|
48
|
-
payi/resources/experiences/types/types.py,sha256=rOgZjIvk5IOIlBT9fJ7HOlXAUpQnC2nF7OS_888XL7Q,21915
|
|
49
43
|
payi/resources/limits/__init__.py,sha256=URXh9vglDH-dqbVGk-XcrDa8H5Bg2pgFuVQQecgEtaA,976
|
|
50
|
-
payi/resources/limits/limits.py,sha256=
|
|
44
|
+
payi/resources/limits/limits.py,sha256=ANZvONr9C9IdMKExrghKyHA1fCSfJzxl1cz4eTYkSV4,25678
|
|
51
45
|
payi/resources/limits/tags.py,sha256=gPW2ds6Zh7-BV7_SwtbRGcMMgj94NciGzcui6FRRQ-o,18964
|
|
52
46
|
payi/resources/requests/__init__.py,sha256=k7ipgDb5QXAv7WYhgQq0-6Zn9INJikMzRGexufceHeI,1530
|
|
53
47
|
payi/resources/requests/properties.py,sha256=_zAm72vLZq-X8lMO-qSttV9gw_uPfXsoJn2C4GJzpbw,6448
|
|
54
48
|
payi/resources/requests/requests.py,sha256=uxfdUe_mNmG5kzHTa4YcS5m2wwIc5h__YSx54LfiLWQ,4840
|
|
55
49
|
payi/resources/requests/result.py,sha256=dEIwYEi_p36t_hErr_V1E2hmBLLgopcLnIReAWT8ygk,6161
|
|
56
50
|
payi/resources/use_cases/__init__.py,sha256=ckXPaVoPQmGESfgQF_ySP_eGskI6T4bJjPKoEGyo2gI,2020
|
|
57
|
-
payi/resources/use_cases/kpis.py,sha256=
|
|
58
|
-
payi/resources/use_cases/properties.py,sha256=
|
|
59
|
-
payi/resources/use_cases/use_cases.py,sha256=
|
|
51
|
+
payi/resources/use_cases/kpis.py,sha256=y_L-FZdEISqX7cUhyy16oLyL8kyCGFvzzxxptAPd2JE,11057
|
|
52
|
+
payi/resources/use_cases/properties.py,sha256=2Bdqpa4-9pyKBVpotAcw6qgcFKGMlgSwgJCkGCqqm54,6533
|
|
53
|
+
payi/resources/use_cases/use_cases.py,sha256=jv-iJik46W8WQR2q-ejxGwvmZugJ10bp52zPNXztsLE,15702
|
|
60
54
|
payi/resources/use_cases/definitions/__init__.py,sha256=pImtiVUbgsm6PkMJ0NPkrhQj8kEi36db-LF5rJukmMY,2020
|
|
61
55
|
payi/resources/use_cases/definitions/definitions.py,sha256=aEnHvpULs0oRbDl_Fvr32Dr5Pd_ySX7kmtC5uiqcBKM,24542
|
|
62
56
|
payi/resources/use_cases/definitions/kpis.py,sha256=UDvubQ8p1XUnP0nRr7UsdHUKsWpIU7szLsE7v42ATE8,22642
|
|
63
57
|
payi/resources/use_cases/definitions/limit_config.py,sha256=ojUg3Hhc5tGk5qE2Oxf9OlgcvvxY0A7HN3Q0uq1fsVo,10583
|
|
64
58
|
payi/resources/use_cases/definitions/version.py,sha256=I1mrP_OEyEytMaQJeb06SS5GCJ6JO9K58nVIVdOgZiY,6013
|
|
65
|
-
payi/types/__init__.py,sha256=
|
|
59
|
+
payi/types/__init__.py,sha256=_I20DWf0MVS0Q0i7eRiCuGkIcqHEYp0jjHvuPyy08hw,2570
|
|
66
60
|
payi/types/bulk_ingest_response.py,sha256=BN6UUzNqICkSzbT0ucu2swznLpErmEN_kgWORCb2rwE,1211
|
|
67
61
|
payi/types/category_delete_resource_response.py,sha256=PLz4wZA1XMpS9SUYB_j4hEw5EoZ0VVE9Ll-MQ26SAfc,339
|
|
68
62
|
payi/types/category_delete_response.py,sha256=exq8rNDGoq2-YN528V8osdcmuptJ-k63rmCvPMm6hLA,323
|
|
@@ -73,12 +67,11 @@ payi/types/category_response.py,sha256=dlvHaKJlcGm936aduRIMxJXHapPGo4Rfs9ObIYkP4
|
|
|
73
67
|
payi/types/cost_data.py,sha256=KXGLnqOKxS0q8yT9eRhdQHyGMSAcuukCHWcWZC1A6Fk,487
|
|
74
68
|
payi/types/cost_details.py,sha256=w9p79opEG3kcsjkRRP7niaMcUswdfB4Y7HCkVTcQ1zQ,307
|
|
75
69
|
payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
|
|
76
|
-
payi/types/experience_instance_response.py,sha256=G07YSRjXrUa5IAS4zEJHGiCNMNlVjycYhqS42ZnVs-Q,336
|
|
77
70
|
payi/types/ingest_bulk_params.py,sha256=A-IRb39d2tmVzEQqrvhlF_3si-9ufHBKYLlvdXupAHU,362
|
|
78
71
|
payi/types/ingest_event_param.py,sha256=Nxf-sRKlks8gXaSM_52s_3TkvG0SJICxsvgkRch_Yxk,2054
|
|
79
72
|
payi/types/ingest_response.py,sha256=JwcZ6OL793uXTuDmZAzkzhGcdtDsSXfSy_ERjzc7MZY,378
|
|
80
|
-
payi/types/ingest_units_params.py,sha256=
|
|
81
|
-
payi/types/limit_create_params.py,sha256=
|
|
73
|
+
payi/types/ingest_units_params.py,sha256=EoqA2CZ2_Ivh0q6IcpcVhnYAIIeBifP9GRdFcJYIR9k,2579
|
|
74
|
+
payi/types/limit_create_params.py,sha256=NHQHY1eeetGS6lU8aMIcibvVPzYE04mzLcf4Sz06gBs,578
|
|
82
75
|
payi/types/limit_history_response.py,sha256=vJnVVa5BROfYHRPvpfymcOabjDhcJtFowQF-L-apNgw,770
|
|
83
76
|
payi/types/limit_list_params.py,sha256=OYlK0anDA5G71FfwrMDzhEX4S5AlASLRiR0tmyD9tTU,322
|
|
84
77
|
payi/types/limit_list_response.py,sha256=8UMtHrO38HqOkn8qAC9R90N902VVRZrZYp0C7fPEX1g,622
|
|
@@ -88,19 +81,13 @@ payi/types/limit_update_params.py,sha256=crY4w75FWcEXbzysq1rPfD37qR5PTy_dwVRY4C_
|
|
|
88
81
|
payi/types/pay_i_common_models_api_router_header_info_param.py,sha256=91djoPLmoaMWTQOXv9-Ox24dWIrM2hudrRQTCqZpX4c,381
|
|
89
82
|
payi/types/requests_data.py,sha256=coHpXgOIQv8oKaX354G-uYoJMzbJcjIW1oX1wuQppts,307
|
|
90
83
|
payi/types/total_cost_data.py,sha256=1xoiInVI0UaKup_8poAHNgcpK8gu09RQnMrdorQtFgQ,301
|
|
91
|
-
payi/types/
|
|
84
|
+
payi/types/use_case_create_response.py,sha256=Tuq4mzkshfw1bAjo0UsVfj3NeJ6XsS9WOWAiy2acwJU,324
|
|
85
|
+
payi/types/use_case_delete_response.py,sha256=eHhHVEDtsWY48CAXmN6sdgbCEaeUWM4sB7pikDkWu9s,324
|
|
86
|
+
payi/types/use_case_retrieve_response.py,sha256=yYCTV0CLGUdQTM_yccsedUf8Ia7J6KGXGY88S-53OyA,328
|
|
92
87
|
payi/types/categories/__init__.py,sha256=mpdvOCRgkzQgIqgcb30nvunzZFqMrDOAoa_N0MJZouE,389
|
|
93
88
|
payi/types/categories/fixed_cost_resource_create_params.py,sha256=7aCIr-qIGTRkDtYwcnnFgt_iSOIrVbelw23rYYP1IgI,567
|
|
94
89
|
payi/types/categories/resource_create_params.py,sha256=HVzUWhvmUhVu9h70DmUrBPUcO-g2VUIc5cg0sxbG3fs,745
|
|
95
90
|
payi/types/categories/resource_list_params.py,sha256=vHKNPb3RVbg25-0g6yN-LXoNKlkYlnZb47hxlTuizUw,346
|
|
96
|
-
payi/types/experiences/__init__.py,sha256=UCNgXSeJ2fj_Zbs7kU2v1yj54U4688eh_yWGQ-KuJr8,467
|
|
97
|
-
payi/types/experiences/experience_type.py,sha256=o9kjqVNu0BnhjA-wgWrdNW4V2pxrHtQYTTWHPH4gJIs,573
|
|
98
|
-
payi/types/experiences/property_create_params.py,sha256=6v1L_4pj5N5k386cbtjSAWr2QJw---WUJ5lyshRnMwc,328
|
|
99
|
-
payi/types/experiences/type_create_params.py,sha256=H-J6jal7S9B0KvRKrX5z4-T7_F82bMFv1u2X8iSiMeY,585
|
|
100
|
-
payi/types/experiences/type_list_params.py,sha256=ugWqgVAuGUTNY06hHVe7teDP52HkJ3paDUIuHGtUtRE,314
|
|
101
|
-
payi/types/experiences/type_update_params.py,sha256=PaR3fuObhIuKsiEo8BQyIoO1NU0PCrUvvNg006IlXnM,341
|
|
102
|
-
payi/types/experiences/types/__init__.py,sha256=Uo_hbPae_AJi8UitkztBOl80AMRv7m-wH1eJlFC3Qnc,214
|
|
103
|
-
payi/types/experiences/types/limit_config_create_params.py,sha256=pzQza_16N3z8cFNEKr6gPbFvuGFrwNuGxAYb--Kbo2M,449
|
|
104
91
|
payi/types/limits/__init__.py,sha256=yohSla0l53OaxH9WdwaU1crY1FvzM3H6IRg20LUr-MU,722
|
|
105
92
|
payi/types/limits/limit_tags.py,sha256=O9I9IC7IkFBYRbiUWb4XXmIuXoHUlRLjW_4fbEF50Aw,346
|
|
106
93
|
payi/types/limits/tag_create_params.py,sha256=5t0qtSG1c2nonB18RK4V9ngG6rRTVc2e-r17bF47VtM,342
|
|
@@ -125,15 +112,15 @@ payi/types/shared/xproxy_result.py,sha256=hm2u82JngBbIyEybUpY0mLJGBCpMXCaLUKLXxw
|
|
|
125
112
|
payi/types/shared_params/__init__.py,sha256=dRGuNTZWLagRlbQfl5tKc0JMEYNRVXUad5oyl7IFeIU,317
|
|
126
113
|
payi/types/shared_params/ingest_units.py,sha256=ueGIq14EQRGIDQlIHCCParrDxh1TZ_Hjfx2GP3_19yA,267
|
|
127
114
|
payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py,sha256=8UXPHFrNDZfF5tgEeV0mIqevksNGEWayv2NJV5DY_Rg,497
|
|
128
|
-
payi/types/use_cases/__init__.py,sha256=
|
|
115
|
+
payi/types/use_cases/__init__.py,sha256=zDmmOYJygn-ul_nKlAGCzI9XTkHwh7vvwymWeltlq0M,810
|
|
129
116
|
payi/types/use_cases/definition_create_params.py,sha256=8Z48UFbJq0nohT0rG64-3Js9nadWNDMoeVUTXn4PLp4,597
|
|
130
117
|
payi/types/use_cases/definition_list_params.py,sha256=8lVZQPafxHSAULib1RcjRJh82POL9zKKHMHn2r_l31I,335
|
|
131
118
|
payi/types/use_cases/definition_update_params.py,sha256=nRhHHVUvEFYr_dtAESZcyxZNU7qpKLF7VajgNZ9FIx8,353
|
|
132
|
-
payi/types/use_cases/kpi_create_params.py,sha256=2E1ttxGgS_IFnLNEmv7iFvFi8DC6G3ZTzUG_rdNAH9c,302
|
|
133
119
|
payi/types/use_cases/kpi_list_params.py,sha256=lx8rGm1Ri9Qn7EsIhwb07-HLHbV1BWc904sJkmPhodI,316
|
|
134
120
|
payi/types/use_cases/kpi_list_response.py,sha256=6REE5-V5j2dxAOX6ShDpXTGvYAT6xIl4X1WBAx0apSY,561
|
|
135
121
|
payi/types/use_cases/kpi_update_params.py,sha256=c9La5HaxdtQAYt228ZutuXUJ0UbTp8cxVGIQgx_o8Os,302
|
|
136
122
|
payi/types/use_cases/property_create_params.py,sha256=6v1L_4pj5N5k386cbtjSAWr2QJw---WUJ5lyshRnMwc,328
|
|
123
|
+
payi/types/use_cases/property_create_response.py,sha256=4NjhkvCHwX9uh0370NN_J06lrW8VlHmtVkuMdR5Xbkc,327
|
|
137
124
|
payi/types/use_cases/use_case_definition.py,sha256=R2DMV9t1EZ4pStQhZSul8SFCyfqqQuAUoevlkFOg2Mc,579
|
|
138
125
|
payi/types/use_cases/definitions/__init__.py,sha256=xro0oPNhbIPOYx-6fvAINvaHL0kaCUMbALzrZmLeuwA,766
|
|
139
126
|
payi/types/use_cases/definitions/kpi_create_params.py,sha256=Hvs8nGLXHmAAZLy5RDKstGWX7UTr2WrfcQB-8cqv45M,427
|
|
@@ -145,7 +132,7 @@ payi/types/use_cases/definitions/kpi_retrieve_response.py,sha256=uQXliSvS3k-yDYw
|
|
|
145
132
|
payi/types/use_cases/definitions/kpi_update_params.py,sha256=jbawdWAdMnsTWVH0qfQGb8W7_TXe3lq4zjSRu44d8p8,373
|
|
146
133
|
payi/types/use_cases/definitions/kpi_update_response.py,sha256=zLyEoT0S8d7XHsnXZYT8tM7yDw0Aze0Mk-_Z6QeMtc8,459
|
|
147
134
|
payi/types/use_cases/definitions/limit_config_create_params.py,sha256=pzQza_16N3z8cFNEKr6gPbFvuGFrwNuGxAYb--Kbo2M,449
|
|
148
|
-
payi-0.1.
|
|
149
|
-
payi-0.1.
|
|
150
|
-
payi-0.1.
|
|
151
|
-
payi-0.1.
|
|
135
|
+
payi-0.1.0a95.dist-info/METADATA,sha256=JbEeJZWaXOpB_iuKjHz6YQLqb91bBi0RSmXlBgZspKU,16333
|
|
136
|
+
payi-0.1.0a95.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
137
|
+
payi-0.1.0a95.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
|
|
138
|
+
payi-0.1.0a95.dist-info/RECORD,,
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from .types import (
|
|
4
|
-
TypesResource,
|
|
5
|
-
AsyncTypesResource,
|
|
6
|
-
TypesResourceWithRawResponse,
|
|
7
|
-
AsyncTypesResourceWithRawResponse,
|
|
8
|
-
TypesResourceWithStreamingResponse,
|
|
9
|
-
AsyncTypesResourceWithStreamingResponse,
|
|
10
|
-
)
|
|
11
|
-
from .properties import (
|
|
12
|
-
PropertiesResource,
|
|
13
|
-
AsyncPropertiesResource,
|
|
14
|
-
PropertiesResourceWithRawResponse,
|
|
15
|
-
AsyncPropertiesResourceWithRawResponse,
|
|
16
|
-
PropertiesResourceWithStreamingResponse,
|
|
17
|
-
AsyncPropertiesResourceWithStreamingResponse,
|
|
18
|
-
)
|
|
19
|
-
from .experiences import (
|
|
20
|
-
ExperiencesResource,
|
|
21
|
-
AsyncExperiencesResource,
|
|
22
|
-
ExperiencesResourceWithRawResponse,
|
|
23
|
-
AsyncExperiencesResourceWithRawResponse,
|
|
24
|
-
ExperiencesResourceWithStreamingResponse,
|
|
25
|
-
AsyncExperiencesResourceWithStreamingResponse,
|
|
26
|
-
)
|
|
27
|
-
|
|
28
|
-
__all__ = [
|
|
29
|
-
"TypesResource",
|
|
30
|
-
"AsyncTypesResource",
|
|
31
|
-
"TypesResourceWithRawResponse",
|
|
32
|
-
"AsyncTypesResourceWithRawResponse",
|
|
33
|
-
"TypesResourceWithStreamingResponse",
|
|
34
|
-
"AsyncTypesResourceWithStreamingResponse",
|
|
35
|
-
"PropertiesResource",
|
|
36
|
-
"AsyncPropertiesResource",
|
|
37
|
-
"PropertiesResourceWithRawResponse",
|
|
38
|
-
"AsyncPropertiesResourceWithRawResponse",
|
|
39
|
-
"PropertiesResourceWithStreamingResponse",
|
|
40
|
-
"AsyncPropertiesResourceWithStreamingResponse",
|
|
41
|
-
"ExperiencesResource",
|
|
42
|
-
"AsyncExperiencesResource",
|
|
43
|
-
"ExperiencesResourceWithRawResponse",
|
|
44
|
-
"AsyncExperiencesResourceWithRawResponse",
|
|
45
|
-
"ExperiencesResourceWithStreamingResponse",
|
|
46
|
-
"AsyncExperiencesResourceWithStreamingResponse",
|
|
47
|
-
]
|