payi 0.1.0a28__py3-none-any.whl → 0.1.0a29__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 +2 -2
- payi/_version.py +1 -1
- payi/resources/billing_models.py +8 -0
- payi/resources/experiences/types.py +24 -4
- payi/resources/ingest.py +12 -0
- payi/types/billing_model.py +2 -0
- payi/types/billing_model_create_params.py +2 -0
- payi/types/billing_model_update_params.py +2 -0
- payi/types/cost_details.py +2 -0
- payi/types/experiences/experience_type.py +3 -0
- payi/types/experiences/type_create_params.py +3 -0
- payi/types/experiences/type_update_params.py +4 -1
- payi/types/ingest_event_param.py +8 -0
- payi/types/ingest_units_params.py +6 -0
- {payi-0.1.0a28.dist-info → payi-0.1.0a29.dist-info}/METADATA +1 -1
- {payi-0.1.0a28.dist-info → payi-0.1.0a29.dist-info}/RECORD +18 -18
- {payi-0.1.0a28.dist-info → payi-0.1.0a29.dist-info}/WHEEL +0 -0
- {payi-0.1.0a28.dist-info → payi-0.1.0a29.dist-info}/licenses/LICENSE +0 -0
payi/_client.py
CHANGED
|
@@ -129,7 +129,7 @@ class Payi(SyncAPIClient):
|
|
|
129
129
|
@override
|
|
130
130
|
def auth_headers(self) -> dict[str, str]:
|
|
131
131
|
api_key = self.api_key
|
|
132
|
-
return {"
|
|
132
|
+
return {"xProxy-api-key": api_key}
|
|
133
133
|
|
|
134
134
|
@property
|
|
135
135
|
@override
|
|
@@ -309,7 +309,7 @@ class AsyncPayi(AsyncAPIClient):
|
|
|
309
309
|
@override
|
|
310
310
|
def auth_headers(self) -> dict[str, str]:
|
|
311
311
|
api_key = self.api_key
|
|
312
|
-
return {"
|
|
312
|
+
return {"xProxy-api-key": api_key}
|
|
313
313
|
|
|
314
314
|
@property
|
|
315
315
|
@override
|
payi/_version.py
CHANGED
payi/resources/billing_models.py
CHANGED
|
@@ -53,6 +53,7 @@ class BillingModelsResource(SyncAPIResource):
|
|
|
53
53
|
*,
|
|
54
54
|
name: str,
|
|
55
55
|
type: Literal["costplus"],
|
|
56
|
+
default_price_modifier: Optional[float] | NotGiven = NOT_GIVEN,
|
|
56
57
|
prepaid_amount: Optional[float] | NotGiven = NOT_GIVEN,
|
|
57
58
|
prepaid_max: Optional[float] | NotGiven = NOT_GIVEN,
|
|
58
59
|
threshold: Optional[float] | NotGiven = NOT_GIVEN,
|
|
@@ -79,6 +80,7 @@ class BillingModelsResource(SyncAPIResource):
|
|
|
79
80
|
{
|
|
80
81
|
"name": name,
|
|
81
82
|
"type": type,
|
|
83
|
+
"default_price_modifier": default_price_modifier,
|
|
82
84
|
"prepaid_amount": prepaid_amount,
|
|
83
85
|
"prepaid_max": prepaid_max,
|
|
84
86
|
"threshold": threshold,
|
|
@@ -127,6 +129,7 @@ class BillingModelsResource(SyncAPIResource):
|
|
|
127
129
|
billing_model_id: str,
|
|
128
130
|
*,
|
|
129
131
|
type: Literal["costplus"],
|
|
132
|
+
default_price_modifier: Optional[float] | NotGiven = NOT_GIVEN,
|
|
130
133
|
name: Optional[str] | NotGiven = NOT_GIVEN,
|
|
131
134
|
prepaid_amount: Optional[float] | NotGiven = NOT_GIVEN,
|
|
132
135
|
prepaid_max: Optional[float] | NotGiven = NOT_GIVEN,
|
|
@@ -155,6 +158,7 @@ class BillingModelsResource(SyncAPIResource):
|
|
|
155
158
|
body=maybe_transform(
|
|
156
159
|
{
|
|
157
160
|
"type": type,
|
|
161
|
+
"default_price_modifier": default_price_modifier,
|
|
158
162
|
"name": name,
|
|
159
163
|
"prepaid_amount": prepaid_amount,
|
|
160
164
|
"prepaid_max": prepaid_max,
|
|
@@ -243,6 +247,7 @@ class AsyncBillingModelsResource(AsyncAPIResource):
|
|
|
243
247
|
*,
|
|
244
248
|
name: str,
|
|
245
249
|
type: Literal["costplus"],
|
|
250
|
+
default_price_modifier: Optional[float] | NotGiven = NOT_GIVEN,
|
|
246
251
|
prepaid_amount: Optional[float] | NotGiven = NOT_GIVEN,
|
|
247
252
|
prepaid_max: Optional[float] | NotGiven = NOT_GIVEN,
|
|
248
253
|
threshold: Optional[float] | NotGiven = NOT_GIVEN,
|
|
@@ -269,6 +274,7 @@ class AsyncBillingModelsResource(AsyncAPIResource):
|
|
|
269
274
|
{
|
|
270
275
|
"name": name,
|
|
271
276
|
"type": type,
|
|
277
|
+
"default_price_modifier": default_price_modifier,
|
|
272
278
|
"prepaid_amount": prepaid_amount,
|
|
273
279
|
"prepaid_max": prepaid_max,
|
|
274
280
|
"threshold": threshold,
|
|
@@ -317,6 +323,7 @@ class AsyncBillingModelsResource(AsyncAPIResource):
|
|
|
317
323
|
billing_model_id: str,
|
|
318
324
|
*,
|
|
319
325
|
type: Literal["costplus"],
|
|
326
|
+
default_price_modifier: Optional[float] | NotGiven = NOT_GIVEN,
|
|
320
327
|
name: Optional[str] | NotGiven = NOT_GIVEN,
|
|
321
328
|
prepaid_amount: Optional[float] | NotGiven = NOT_GIVEN,
|
|
322
329
|
prepaid_max: Optional[float] | NotGiven = NOT_GIVEN,
|
|
@@ -345,6 +352,7 @@ class AsyncBillingModelsResource(AsyncAPIResource):
|
|
|
345
352
|
body=await async_maybe_transform(
|
|
346
353
|
{
|
|
347
354
|
"type": type,
|
|
355
|
+
"default_price_modifier": default_price_modifier,
|
|
348
356
|
"name": name,
|
|
349
357
|
"prepaid_amount": prepaid_amount,
|
|
350
358
|
"prepaid_max": prepaid_max,
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import Optional
|
|
6
|
+
|
|
5
7
|
import httpx
|
|
6
8
|
|
|
7
9
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
@@ -50,6 +52,7 @@ class TypesResource(SyncAPIResource):
|
|
|
50
52
|
*,
|
|
51
53
|
description: str,
|
|
52
54
|
name: str,
|
|
55
|
+
logging_enabled: Optional[bool] | NotGiven = NOT_GIVEN,
|
|
53
56
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
54
57
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
55
58
|
extra_headers: Headers | None = None,
|
|
@@ -75,6 +78,7 @@ class TypesResource(SyncAPIResource):
|
|
|
75
78
|
{
|
|
76
79
|
"description": description,
|
|
77
80
|
"name": name,
|
|
81
|
+
"logging_enabled": logging_enabled,
|
|
78
82
|
},
|
|
79
83
|
type_create_params.TypeCreateParams,
|
|
80
84
|
),
|
|
@@ -121,7 +125,8 @@ class TypesResource(SyncAPIResource):
|
|
|
121
125
|
self,
|
|
122
126
|
experience_name: str,
|
|
123
127
|
*,
|
|
124
|
-
description: str,
|
|
128
|
+
description: Optional[str],
|
|
129
|
+
logging_enabled: Optional[bool] | NotGiven = NOT_GIVEN,
|
|
125
130
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
126
131
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
127
132
|
extra_headers: Headers | None = None,
|
|
@@ -145,7 +150,13 @@ class TypesResource(SyncAPIResource):
|
|
|
145
150
|
raise ValueError(f"Expected a non-empty value for `experience_name` but received {experience_name!r}")
|
|
146
151
|
return self._patch(
|
|
147
152
|
f"/api/v1/experiences/types/{experience_name}",
|
|
148
|
-
body=maybe_transform(
|
|
153
|
+
body=maybe_transform(
|
|
154
|
+
{
|
|
155
|
+
"description": description,
|
|
156
|
+
"logging_enabled": logging_enabled,
|
|
157
|
+
},
|
|
158
|
+
type_update_params.TypeUpdateParams,
|
|
159
|
+
),
|
|
149
160
|
options=make_request_options(
|
|
150
161
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
151
162
|
),
|
|
@@ -248,6 +259,7 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
248
259
|
*,
|
|
249
260
|
description: str,
|
|
250
261
|
name: str,
|
|
262
|
+
logging_enabled: Optional[bool] | NotGiven = NOT_GIVEN,
|
|
251
263
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
252
264
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
253
265
|
extra_headers: Headers | None = None,
|
|
@@ -273,6 +285,7 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
273
285
|
{
|
|
274
286
|
"description": description,
|
|
275
287
|
"name": name,
|
|
288
|
+
"logging_enabled": logging_enabled,
|
|
276
289
|
},
|
|
277
290
|
type_create_params.TypeCreateParams,
|
|
278
291
|
),
|
|
@@ -319,7 +332,8 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
319
332
|
self,
|
|
320
333
|
experience_name: str,
|
|
321
334
|
*,
|
|
322
|
-
description: str,
|
|
335
|
+
description: Optional[str],
|
|
336
|
+
logging_enabled: Optional[bool] | NotGiven = NOT_GIVEN,
|
|
323
337
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
324
338
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
325
339
|
extra_headers: Headers | None = None,
|
|
@@ -343,7 +357,13 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
343
357
|
raise ValueError(f"Expected a non-empty value for `experience_name` but received {experience_name!r}")
|
|
344
358
|
return await self._patch(
|
|
345
359
|
f"/api/v1/experiences/types/{experience_name}",
|
|
346
|
-
body=await async_maybe_transform(
|
|
360
|
+
body=await async_maybe_transform(
|
|
361
|
+
{
|
|
362
|
+
"description": description,
|
|
363
|
+
"logging_enabled": logging_enabled,
|
|
364
|
+
},
|
|
365
|
+
type_update_params.TypeUpdateParams,
|
|
366
|
+
),
|
|
347
367
|
options=make_request_options(
|
|
348
368
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
349
369
|
),
|
payi/resources/ingest.py
CHANGED
|
@@ -91,8 +91,11 @@ class IngestResource(SyncAPIResource):
|
|
|
91
91
|
category: str,
|
|
92
92
|
resource: str,
|
|
93
93
|
units: Dict[str, ingest_units_params.Units],
|
|
94
|
+
end_to_end_latency_ms: Optional[int] | NotGiven = NOT_GIVEN,
|
|
94
95
|
event_timestamp: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
|
|
96
|
+
http_status_code: Optional[int] | NotGiven = NOT_GIVEN,
|
|
95
97
|
provisioned_resource_name: Optional[str] | NotGiven = NOT_GIVEN,
|
|
98
|
+
time_to_first_token_ms: Optional[int] | NotGiven = NOT_GIVEN,
|
|
96
99
|
budget_ids: Union[list[str], None] | NotGiven = NOT_GIVEN,
|
|
97
100
|
request_tags: Union[list[str], None] | NotGiven = NOT_GIVEN,
|
|
98
101
|
experience_id: Union[str, None] | NotGiven = NOT_GIVEN,
|
|
@@ -186,8 +189,11 @@ class IngestResource(SyncAPIResource):
|
|
|
186
189
|
"category": category,
|
|
187
190
|
"resource": resource,
|
|
188
191
|
"units": units,
|
|
192
|
+
"end_to_end_latency_ms": end_to_end_latency_ms,
|
|
189
193
|
"event_timestamp": event_timestamp,
|
|
194
|
+
"http_status_code": http_status_code,
|
|
190
195
|
"provisioned_resource_name": provisioned_resource_name,
|
|
196
|
+
"time_to_first_token_ms": time_to_first_token_ms,
|
|
191
197
|
},
|
|
192
198
|
ingest_units_params.IngestUnitsParams,
|
|
193
199
|
),
|
|
@@ -258,8 +264,11 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
258
264
|
category: str,
|
|
259
265
|
resource: str,
|
|
260
266
|
units: Dict[str, ingest_units_params.Units],
|
|
267
|
+
end_to_end_latency_ms: Optional[int] | NotGiven = NOT_GIVEN,
|
|
261
268
|
event_timestamp: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
|
|
269
|
+
http_status_code: Optional[int] | NotGiven = NOT_GIVEN,
|
|
262
270
|
provisioned_resource_name: Optional[str] | NotGiven = NOT_GIVEN,
|
|
271
|
+
time_to_first_token_ms: Optional[int] | NotGiven = NOT_GIVEN,
|
|
263
272
|
budget_ids: Union[list[str], None] | NotGiven = NOT_GIVEN,
|
|
264
273
|
request_tags: Union[list[str], None] | NotGiven = NOT_GIVEN,
|
|
265
274
|
experience_name: Union[str, None] | NotGiven = NOT_GIVEN,
|
|
@@ -352,8 +361,11 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
352
361
|
"category": category,
|
|
353
362
|
"resource": resource,
|
|
354
363
|
"units": units,
|
|
364
|
+
"end_to_end_latency_ms": end_to_end_latency_ms,
|
|
355
365
|
"event_timestamp": event_timestamp,
|
|
366
|
+
"http_status_code": http_status_code,
|
|
356
367
|
"provisioned_resource_name": provisioned_resource_name,
|
|
368
|
+
"time_to_first_token_ms": time_to_first_token_ms,
|
|
357
369
|
},
|
|
358
370
|
ingest_units_params.IngestUnitsParams,
|
|
359
371
|
),
|
payi/types/billing_model.py
CHANGED
payi/types/cost_details.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Optional
|
|
3
4
|
|
|
4
5
|
from ..._models import BaseModel
|
|
5
6
|
|
|
@@ -12,3 +13,5 @@ class ExperienceType(BaseModel):
|
|
|
12
13
|
name: str
|
|
13
14
|
|
|
14
15
|
request_id: str
|
|
16
|
+
|
|
17
|
+
logging_enabled: Optional[bool] = None
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import Optional
|
|
5
6
|
from typing_extensions import Required, TypedDict
|
|
6
7
|
|
|
7
8
|
__all__ = ["TypeCreateParams"]
|
|
@@ -11,3 +12,5 @@ class TypeCreateParams(TypedDict, total=False):
|
|
|
11
12
|
description: Required[str]
|
|
12
13
|
|
|
13
14
|
name: Required[str]
|
|
15
|
+
|
|
16
|
+
logging_enabled: Optional[bool]
|
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import Optional
|
|
5
6
|
from typing_extensions import Required, TypedDict
|
|
6
7
|
|
|
7
8
|
__all__ = ["TypeUpdateParams"]
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
class TypeUpdateParams(TypedDict, total=False):
|
|
11
|
-
description: Required[str]
|
|
12
|
+
description: Required[Optional[str]]
|
|
13
|
+
|
|
14
|
+
logging_enabled: Optional[bool]
|
payi/types/ingest_event_param.py
CHANGED
|
@@ -26,14 +26,22 @@ class IngestEventParam(TypedDict, total=False):
|
|
|
26
26
|
|
|
27
27
|
budget_ids: Optional[List[str]]
|
|
28
28
|
|
|
29
|
+
csat_rating: Optional[int]
|
|
30
|
+
|
|
31
|
+
end_to_end_latency_ms: Optional[int]
|
|
32
|
+
|
|
29
33
|
event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
|
|
30
34
|
|
|
31
35
|
experience_id: Optional[str]
|
|
32
36
|
|
|
33
37
|
experience_name: Optional[str]
|
|
34
38
|
|
|
39
|
+
http_status_code: Optional[int]
|
|
40
|
+
|
|
35
41
|
provisioned_resource_name: Optional[str]
|
|
36
42
|
|
|
37
43
|
request_tags: Optional[List[str]]
|
|
38
44
|
|
|
45
|
+
time_to_first_token_ms: Optional[int]
|
|
46
|
+
|
|
39
47
|
user_id: Optional[str]
|
|
@@ -18,10 +18,16 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
18
18
|
|
|
19
19
|
units: Required[Dict[str, Units]]
|
|
20
20
|
|
|
21
|
+
end_to_end_latency_ms: Optional[int]
|
|
22
|
+
|
|
21
23
|
event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
|
|
22
24
|
|
|
25
|
+
http_status_code: Optional[int]
|
|
26
|
+
|
|
23
27
|
provisioned_resource_name: Optional[str]
|
|
24
28
|
|
|
29
|
+
time_to_first_token_ms: Optional[int]
|
|
30
|
+
|
|
25
31
|
budget_ids: Annotated[Union[list[str], None], PropertyInfo(alias="xProxy-Budget-IDs")]
|
|
26
32
|
|
|
27
33
|
request_tags: Annotated[Union[list[str], None], PropertyInfo(alias="xProxy-Request-Tags")]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
payi/__init__.py,sha256=LWpfR6WSMPTnmmx3ToqqZ0A8CNduLcuxY1SSOqhPxuk,2381
|
|
2
2
|
payi/_base_client.py,sha256=Jq9mZjEknHo-6ZANRPCQXVHTbbC4Hh7QLFv2jrNtGJ0,67842
|
|
3
|
-
payi/_client.py,sha256=
|
|
3
|
+
payi/_client.py,sha256=ZB23I50J5Ia4etp6zoB7pfFf1XgWXeAL0PMq2UOPlbI,18474
|
|
4
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
|
|
@@ -11,7 +11,7 @@ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
|
11
11
|
payi/_response.py,sha256=9ZpP3Agz-3ReY0RSJo7O7BAwD0UluwRsTSvljdTh1dg,28597
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
13
|
payi/_types.py,sha256=J0i_n21O_stX9WmxhCAuKnzv4oJgEPGykFNVqcXg0d0,6165
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=LjV6CHhZAn2UT95fYR0p4FqYZhbby0Y-U5hNhP2zKUU,165
|
|
15
15
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
payi/_utils/__init__.py,sha256=k266EatJr88V8Zseb7xUimTlCeno9SynRfLwadHP1b4,2016
|
|
17
17
|
payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
|
|
@@ -25,9 +25,9 @@ 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
27
|
payi/resources/__init__.py,sha256=cnFr2LhHLYehosTS7idW9lW_CrDwFClh-Wpgp9uHxh0,3553
|
|
28
|
-
payi/resources/billing_models.py,sha256=
|
|
28
|
+
payi/resources/billing_models.py,sha256=mqKlq8R1RCsriT4QPsgCukBwYi0ETuB7M4_dsUjRdNg,20056
|
|
29
29
|
payi/resources/csat.py,sha256=56Sn2JM3xbc33J7xiC0Q0aLd5KuZK0ty_jxN-ZNPz7M,6526
|
|
30
|
-
payi/resources/ingest.py,sha256=
|
|
30
|
+
payi/resources/ingest.py,sha256=37iLoReikYwGlBtSlNMjH9O4YvPGKuybfotQ_214Qlo,16903
|
|
31
31
|
payi/resources/price_modifiers.py,sha256=m9IX__C7_oPcZzGNpHJ2BsjMkGQ29JZrxLM1nFa8dL4,13483
|
|
32
32
|
payi/resources/budgets/__init__.py,sha256=w1UhOdDXtUH4A91ME5Tw2nr9bRvPJyJY1YWiVVy7jj0,989
|
|
33
33
|
payi/resources/budgets/budgets.py,sha256=GCTSojdFjDdWuJM2lO_-QKktFhncaA84xPx5C-RI7ks,27456
|
|
@@ -37,12 +37,12 @@ payi/resources/categories/categories.py,sha256=dGsAX313gZlLy5pSRo5_TexD1rPeWU666
|
|
|
37
37
|
payi/resources/categories/resources.py,sha256=I38bjAvpsLg4LRwJEvnKX3yyr_ErTxkkv12y19sYd7E,18712
|
|
38
38
|
payi/resources/experiences/__init__.py,sha256=gguTTCoGlAWDyrDJh1CtZwIVsyBbzERX63vRtFtjxjI,1054
|
|
39
39
|
payi/resources/experiences/experiences.py,sha256=fdWaZox-WRCGwo8CJLsQFYVE8bf-yn7lFDO_dtwpyFQ,13264
|
|
40
|
-
payi/resources/experiences/types.py,sha256=
|
|
40
|
+
payi/resources/experiences/types.py,sha256=hz5dtgmVD2eEOUU7Y29yA_UGefl77-oT4sAHFVkp-qk,19380
|
|
41
41
|
payi/types/__init__.py,sha256=U-QUsH_PYmS3gRyxADTjcj_yWAIchziTeOqT-b2Oe-A,2603
|
|
42
|
-
payi/types/billing_model.py,sha256=
|
|
43
|
-
payi/types/billing_model_create_params.py,sha256=
|
|
42
|
+
payi/types/billing_model.py,sha256=yng5-Eypx4aQ07D7V8fTUG1zYXSRiBDYTTbzu9cvzi0,613
|
|
43
|
+
payi/types/billing_model_create_params.py,sha256=yVMwIEbWfijeGOJ9Ry8unogLWHTdcsPHrQTNwhxbPcA,521
|
|
44
44
|
payi/types/billing_model_list_response.py,sha256=hOFjJPQAKiWEArZeZwd8e1lDi5e41zbN6NvV_1rzJeM,290
|
|
45
|
-
payi/types/billing_model_update_params.py,sha256=
|
|
45
|
+
payi/types/billing_model_update_params.py,sha256=aIhgtZNiDaMaMxHJmLzt-uc5BIJZo9yvnfNbke00xEU,521
|
|
46
46
|
payi/types/budget_create_params.py,sha256=MDXUCZFK9SZHUTkB9OrQ8SeF1Xu7gmivuYSbcN9X-3w,632
|
|
47
47
|
payi/types/budget_history_response.py,sha256=4SnisCLr1HImVecgonZK7HIm9WTmYl0YMaTbMP70qZY,934
|
|
48
48
|
payi/types/budget_list_params.py,sha256=KaJ0H4tfp6mpCyanpysVJBTAMa5aA2Kv73uO_EsBsKE,367
|
|
@@ -56,15 +56,15 @@ payi/types/category_list_response.py,sha256=5i7BhQ7kVlx8_r2MLJqAJwIELGitKE0uR63k
|
|
|
56
56
|
payi/types/category_resource_response.py,sha256=4PfQZbOIMOlE701uXGU-qegZOH8DN1VYcSClhfe_GOA,601
|
|
57
57
|
payi/types/category_response.py,sha256=43i8bii20Sb-z9R5M1Ia6RGfRZmdQqsWPlv4Bl1XQf0,293
|
|
58
58
|
payi/types/cost_data.py,sha256=PDmleZu-HKKOIh_EZ5EgWvpGiTUSJQadsxedWhFVgEI,283
|
|
59
|
-
payi/types/cost_details.py,sha256=
|
|
59
|
+
payi/types/cost_details.py,sha256=w9p79opEG3kcsjkRRP7niaMcUswdfB4Y7HCkVTcQ1zQ,307
|
|
60
60
|
payi/types/csat.py,sha256=q-RdlcEJQpyWCdEJw7s-ntAeaY1SgLyMflehZ01CDFU,185
|
|
61
61
|
payi/types/csat_create_params.py,sha256=YK2M8yuqkZ7p-Z5S_6nSOeALX0Ox6QI8xiA2AzZ9vJI,342
|
|
62
62
|
payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
|
|
63
63
|
payi/types/experience_instance.py,sha256=l-y2oD91l5t9mDYkgz8UR_Sx6JcjLVBRYjxflaJhzCY,237
|
|
64
64
|
payi/types/ingest_bulk_params.py,sha256=aIsugHkiAe_DnGQ8JVpDUDYr1YNzR5cUY9mMPqusIP0,381
|
|
65
|
-
payi/types/ingest_event_param.py,sha256=
|
|
65
|
+
payi/types/ingest_event_param.py,sha256=2aes3mqwMQssi71LcWGsr-on6IKaLPsFu-rjaQGP7E4,1020
|
|
66
66
|
payi/types/ingest_response.py,sha256=Ug83Sfl-3tELRh5rWFclOZYgsZBkvCjUXJXrp1J5Uac,1197
|
|
67
|
-
payi/types/ingest_units_params.py,sha256=
|
|
67
|
+
payi/types/ingest_units_params.py,sha256=YTd47S6qbcbpZVYCJa0w6SieSDZdQtDf_29OA7mrHJM,1265
|
|
68
68
|
payi/types/paged_budget_list.py,sha256=WGX0c6QGyTwjhsgkABsvXXRaBFPLVg6gPbph_qtVmJg,1371
|
|
69
69
|
payi/types/price_modifier.py,sha256=Sw_5tzCGnpjQzR5aZ70_ATpfBRQA_0ue2NRM3yMcvj0,531
|
|
70
70
|
payi/types/price_modifier_create_params.py,sha256=RpcYr2JYFu-pxzY4Dx1ESMp9-FBHfKt03Iw-3tlZvXQ,404
|
|
@@ -86,12 +86,12 @@ payi/types/categories/__init__.py,sha256=HQScxfK3F_J9HYbphrhG6bYb7S6vtrwafLViar5
|
|
|
86
86
|
payi/types/categories/resource_create_params.py,sha256=jEXNx_FvWA9D5170Gwf_YUcuAOaDq0RIGaGgPSEsheA,725
|
|
87
87
|
payi/types/categories/resource_list_response.py,sha256=ODMelDlXvYcwxBsJwTX8miofywUY_JB0OvsFVCKJunU,320
|
|
88
88
|
payi/types/experiences/__init__.py,sha256=8gAwTPOFwf87LFLyCwmDek2cIb2DHJYyI4Ymqoz6X1o,455
|
|
89
|
-
payi/types/experiences/experience_type.py,sha256=
|
|
90
|
-
payi/types/experiences/type_create_params.py,sha256=
|
|
89
|
+
payi/types/experiences/experience_type.py,sha256=1L08GHoLAfdBwE691RidkHIukpyqqO2_toL5CcWxE4k,315
|
|
90
|
+
payi/types/experiences/type_create_params.py,sha256=56vS9kTHex1eU9QQ-DWjBMqoHNhOukPZUY4jgGhnJnQ,376
|
|
91
91
|
payi/types/experiences/type_list_params.py,sha256=VDZjHmK2tNAW_YLewcIzM-OG13iI2v-xCykokxkcgbs,286
|
|
92
92
|
payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG12rZRU9w6kgQN28,280
|
|
93
|
-
payi/types/experiences/type_update_params.py,sha256=
|
|
94
|
-
payi-0.1.
|
|
95
|
-
payi-0.1.
|
|
96
|
-
payi-0.1.
|
|
97
|
-
payi-0.1.
|
|
93
|
+
payi/types/experiences/type_update_params.py,sha256=izwlElQB-jeFFX3K6S2TqVUMmhU0KTmwScQ5aoHZH0M,361
|
|
94
|
+
payi-0.1.0a29.dist-info/METADATA,sha256=ml0Mzau3CmtZ7W5ZgmL5NX2IfxbTnLKSrM3EzTPfXX4,12358
|
|
95
|
+
payi-0.1.0a29.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
96
|
+
payi-0.1.0a29.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
|
|
97
|
+
payi-0.1.0a29.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|