payi 0.1.0a26__py3-none-any.whl → 0.1.0a27__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.

Files changed (37) hide show
  1. payi/_base_client.py +9 -2
  2. payi/_client.py +16 -0
  3. payi/_response.py +3 -0
  4. payi/_version.py +1 -1
  5. payi/resources/__init__.py +28 -0
  6. payi/resources/billing_models.py +492 -0
  7. payi/resources/budgets/budgets.py +4 -4
  8. payi/resources/categories/resources.py +5 -9
  9. payi/resources/ingest.py +19 -10
  10. payi/resources/price_modifiers.py +353 -0
  11. payi/types/__init__.py +8 -0
  12. payi/types/billing_model.py +29 -0
  13. payi/types/billing_model_create_params.py +20 -0
  14. payi/types/billing_model_list_response.py +10 -0
  15. payi/types/billing_model_update_params.py +20 -0
  16. payi/types/budget_create_params.py +2 -2
  17. payi/types/budget_response.py +2 -2
  18. payi/types/categories/resource_create_params.py +9 -5
  19. payi/types/category_resource_response.py +9 -5
  20. payi/types/cost_data.py +0 -1
  21. payi/types/csat.py +0 -1
  22. payi/types/experience_instance.py +0 -1
  23. payi/types/experiences/experience_type.py +0 -1
  24. payi/types/ingest_event_param.py +12 -6
  25. payi/types/ingest_response.py +7 -1
  26. payi/types/ingest_units_params.py +11 -6
  27. payi/types/paged_budget_list.py +2 -2
  28. payi/types/price_modifier.py +26 -0
  29. payi/types/price_modifier_create_params.py +17 -0
  30. payi/types/price_modifier_retrieve_response.py +10 -0
  31. payi/types/price_modifier_update_params.py +17 -0
  32. payi/types/requests_data.py +2 -1
  33. payi/types/total_cost_data.py +0 -1
  34. {payi-0.1.0a26.dist-info → payi-0.1.0a27.dist-info}/METADATA +5 -1
  35. {payi-0.1.0a26.dist-info → payi-0.1.0a27.dist-info}/RECORD +37 -27
  36. {payi-0.1.0a26.dist-info → payi-0.1.0a27.dist-info}/WHEEL +0 -0
  37. {payi-0.1.0a26.dist-info → payi-0.1.0a27.dist-info}/licenses/LICENSE +0 -0
@@ -21,8 +21,8 @@ class BudgetCreateParams(TypedDict, total=False):
21
21
 
22
22
  budget_tags: Optional[List[str]]
23
23
 
24
- budget_type: Literal["conservative", "liberal"]
25
-
26
24
  cost_basis: Literal["base", "billed"]
27
25
 
28
26
  currency: Literal["usd"]
27
+
28
+ threshold: Optional[float]
@@ -21,8 +21,6 @@ class Budget(BaseModel):
21
21
 
22
22
  budget_response_type: Literal["block", "allow"]
23
23
 
24
- budget_type: Literal["conservative", "liberal"]
25
-
26
24
  budget_update_timestamp: datetime
27
25
 
28
26
  currency: Literal["usd"]
@@ -33,6 +31,8 @@ class Budget(BaseModel):
33
31
 
34
32
  budget_tags: Optional[List[str]] = None
35
33
 
34
+ threshold: Optional[float] = None
35
+
36
36
 
37
37
  class BudgetResponse(BaseModel):
38
38
  budget: Budget
@@ -2,19 +2,19 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Union
5
+ from typing import Dict, Union
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__ = ["ResourceCreateParams"]
11
+ __all__ = ["ResourceCreateParams", "Units"]
12
12
 
13
13
 
14
14
  class ResourceCreateParams(TypedDict, total=False):
15
15
  category: Required[str]
16
16
 
17
- input_price: float
17
+ units: Required[Dict[str, Units]]
18
18
 
19
19
  max_input_units: int
20
20
 
@@ -22,6 +22,10 @@ class ResourceCreateParams(TypedDict, total=False):
22
22
 
23
23
  max_total_units: int
24
24
 
25
- output_price: float
26
-
27
25
  start_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
26
+
27
+
28
+ class Units(TypedDict, total=False):
29
+ input_price: Required[float]
30
+
31
+ output_price: Required[float]
@@ -1,11 +1,17 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- from typing import Optional
3
+ from typing import Dict, Optional
4
4
  from datetime import datetime
5
5
 
6
6
  from .._models import BaseModel
7
7
 
8
- __all__ = ["CategoryResourceResponse"]
8
+ __all__ = ["CategoryResourceResponse", "Units"]
9
+
10
+
11
+ class Units(BaseModel):
12
+ input_price: float
13
+
14
+ output_price: float
9
15
 
10
16
 
11
17
  class CategoryResourceResponse(BaseModel):
@@ -17,12 +23,10 @@ class CategoryResourceResponse(BaseModel):
17
23
 
18
24
  start_timestamp: datetime
19
25
 
20
- input_price: Optional[float] = None
26
+ units: Dict[str, Units]
21
27
 
22
28
  max_input_units: Optional[int] = None
23
29
 
24
30
  max_output_units: Optional[int] = None
25
31
 
26
32
  max_total_units: Optional[int] = None
27
-
28
- output_price: Optional[float] = None
payi/types/cost_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
  from .cost_details import CostDetails
7
6
 
payi/types/csat.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__ = ["Csat"]
@@ -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__ = ["ExperienceInstance"]
@@ -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__ = ["ExperienceType"]
@@ -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 IngestEventParam(TypedDict, total=False):
15
- category: Required[str]
14
+ class Units(TypedDict, total=False):
15
+ input: int
16
16
 
17
- input: Required[int]
17
+ output: int
18
18
 
19
- output: Required[int]
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]]
@@ -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
@@ -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]
@@ -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
@@ -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
  from .cost_data import CostData
7
6
  from .requests_data import RequestsData
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: payi
3
- Version: 0.1.0a26
3
+ Version: 0.1.0a27
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
@@ -370,3 +370,7 @@ print(payi.__version__)
370
370
  ## Requirements
371
371
 
372
372
  Python 3.7 or higher.
373
+
374
+ ## Contributing
375
+
376
+ See [the contributing documentation](https://github.com/Pay-i/pay-i-python/tree/main/./CONTRIBUTING.md).
@@ -1,6 +1,6 @@
1
1
  payi/__init__.py,sha256=LWpfR6WSMPTnmmx3ToqqZ0A8CNduLcuxY1SSOqhPxuk,2381
2
- payi/_base_client.py,sha256=wUQ3zciD8bdvcOTIT8D21x6o-PdvK2BE6HRulFTEFBc,67547
3
- payi/_client.py,sha256=NNSdDsX33voOxyzTUQq-5QXfL0lTkSn4w2yQv9kEg5E,17108
2
+ payi/_base_client.py,sha256=Jq9mZjEknHo-6ZANRPCQXVHTbbC4Hh7QLFv2jrNtGJ0,67842
3
+ payi/_client.py,sha256=ljPrM5gfpC2WHYmifPcdLIedJUuKD91GWcS49c3RE38,18472
4
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
@@ -8,10 +8,10 @@ payi/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
8
  payi/_models.py,sha256=pXirq94yiihFXBbiR50vA-0NIlDurxbJ_rLXK062vWQ,28267
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=SByCajzglbiy7lSG4F5enqb7R6jVQe1OQ9TBsaxWzE8,28508
11
+ payi/_response.py,sha256=9ZpP3Agz-3ReY0RSJo7O7BAwD0UluwRsTSvljdTh1dg,28597
12
12
  payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
13
13
  payi/_types.py,sha256=mb6zn5qmTK5j0QMh0fevdShT091HBL4w0YCUfQ3u5VY,6101
14
- payi/_version.py,sha256=e88cijGKnHhWqAgbleOrpZSnEKV7DQtJbCBJsfjdsaw,165
14
+ payi/_version.py,sha256=hNxmK25K5CFd8y7EdjZnmmwT5sQZXdk3veswB1PvBOM,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
@@ -24,44 +24,54 @@ payi/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
24
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=insqhwlut9HYgtNEnCNDNcjAM1awPO5iMeB_bHLyMB0,2456
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=pJ8CKZ_LnT8Zph2EZYszB5Va9O7R5L2eGqVAE8wl-SQ,15510
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=IvNbTUYCfoY0R54Z5sb_Xb08wj_C-J0n9X-GA_ngrTM,27506
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=3ZdumQsn8BLw-qdt69SvmSBhScnRqEaou9HtVZyp2LI,18924
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=VVY8spKplnRHqco9B5Zv8PEHPIVtZE6te9_u8yLTcOo,1903
40
- payi/types/budget_create_params.py,sha256=3PziVJT3_ll-6yv3i5EF8ERm19jFJAKbv9v-CvRW5ik,653
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=ZAZOvA5KLirARR92IuLkjGNWTLBUVJp5RwGI9Ow2Au0,827
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=XosDA-fXMkfSdocpMBDwV9ynCEH9nTFIg4tq_CRV2v0,566
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=jZtju_3WWNXh4wCu77XnyvxZkvewcvXBS_V0z07BizA,284
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=9cm1wZPfW4oV4hG5Nm4SkG_5aO0pwGJsRkD0wkHH22Y,186
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=qcG55W-ok341voIoGFIYGCcqfb2w7MLAS033xgT0ags,238
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=4R1yebYub5fPXt9vi0nvoztU4Cir5nC1qu28oJW8FkE,758
60
- payi/types/ingest_response.py,sha256=o43RH25dS4S54OCr3vkipZvLeAmI-hru6LuL789iEnM,1071
61
- payi/types/ingest_units_params.py,sha256=TIiT4dtuaaUS1hatkzarNazmlnW3LVBymwrPsCM11Uk,976
62
- payi/types/paged_budget_list.py,sha256=FqKlbAifEWY3sZqiJSny-XtS-XIfmj14AufNffNVmqM,1385
63
- payi/types/requests_data.py,sha256=U5_RwUjPHtg9-6FZhxgj6-EdnG4x5U6yzGlNwjDp0Vc,291
64
- payi/types/total_cost_data.py,sha256=JPawx-cyoMtQF7CeVTlH2kHUBdFGORqACn0hTVye0K0,303
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,19 @@ 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=HHuLQm6Lcc9-R58EP8ShuxI1-hlTpDqAh26gD47PY9E,613
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
88
  payi/types/evaluations/__init__.py,sha256=crWSnR2SwRTTp1nadR_i_dfpGCv4dTPuBh_sMoss0tQ,288
79
89
  payi/types/evaluations/experience_create_params.py,sha256=3leYJN4FHKJbTeym_uPlvX0vSqD8G8Lr8iPV8BwM5gw,353
80
90
  payi/types/evaluations/request_create_params.py,sha256=OPV7ff1fGgi6FbUzndN4j5omqFcCUaRzblHLxDsoQaI,347
81
91
  payi/types/experiences/__init__.py,sha256=8gAwTPOFwf87LFLyCwmDek2cIb2DHJYyI4Ymqoz6X1o,455
82
- payi/types/experiences/experience_type.py,sha256=xD1XORvyYbIw9u2QUZHh4Sy4AYP0rqkL1sXJIz1NU5k,244
92
+ payi/types/experiences/experience_type.py,sha256=UoFekiOnkBZ5kqIHcBa8YE9T7uxwp-gLp3QGgxAxOoc,243
83
93
  payi/types/experiences/type_create_params.py,sha256=8dNpffodzeD5vm3s6UJrZVOG7YsiTkXo7viDnoEoCZY,311
84
94
  payi/types/experiences/type_list_params.py,sha256=VDZjHmK2tNAW_YLewcIzM-OG13iI2v-xCykokxkcgbs,286
85
95
  payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG12rZRU9w6kgQN28,280
86
96
  payi/types/experiences/type_update_params.py,sha256=SOHb1GQiHktLB6YtEzdPllDDowS3FCfQqVWSmf0pD8Q,286
87
97
  payi/types/shared/__init__.py,sha256=3y7YS-bs2g4eULmnsGcuBLsTZX1fg_05Ab5PdL1vEns,87
88
- payi-0.1.0a26.dist-info/METADATA,sha256=h7S6m1mBJS3Jm1O0Ldasucg07pQFsuxWknxNl4qjdBc,12324
89
- payi-0.1.0a26.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
90
- payi-0.1.0a26.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
91
- payi-0.1.0a26.dist-info/RECORD,,
98
+ payi-0.1.0a27.dist-info/METADATA,sha256=EREhH6xd4VVwlug7IPVFcF8ba4gwSPWdqGNAd0jat4I,12447
99
+ payi-0.1.0a27.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
100
+ payi-0.1.0a27.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
101
+ payi-0.1.0a27.dist-info/RECORD,,