payi 0.1.0a15__py3-none-any.whl → 0.1.0a16__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 (40) hide show
  1. payi/_base_client.py +29 -42
  2. payi/_client.py +8 -0
  3. payi/_compat.py +12 -17
  4. payi/_files.py +4 -8
  5. payi/_response.py +9 -8
  6. payi/_types.py +3 -6
  7. payi/_utils/_proxy.py +1 -2
  8. payi/_utils/_reflection.py +1 -1
  9. payi/_utils/_utils.py +6 -12
  10. payi/_version.py +1 -1
  11. payi/resources/__init__.py +14 -0
  12. payi/resources/experiences/__init__.py +33 -0
  13. payi/resources/experiences/experiences.py +325 -0
  14. payi/resources/experiences/types.py +459 -0
  15. payi/resources/ingest.py +6 -7
  16. payi/types/__init__.py +1 -1
  17. payi/types/budget_list_params.py +7 -9
  18. payi/types/budgets/tag_create_response.py +2 -1
  19. payi/types/budgets/tag_delete_response.py +2 -1
  20. payi/types/budgets/tag_list_response.py +2 -1
  21. payi/types/budgets/tag_remove_response.py +2 -1
  22. payi/types/budgets/tag_update_response.py +2 -1
  23. payi/types/categories/resource_list_response.py +2 -1
  24. payi/types/category_delete_resource_response.py +2 -1
  25. payi/types/category_delete_response.py +2 -1
  26. payi/types/category_list_resources_response.py +2 -1
  27. payi/types/category_list_response.py +2 -1
  28. payi/types/experience_instance.py +13 -0
  29. payi/types/experiences/__init__.py +8 -0
  30. payi/types/experiences/experience_type.py +17 -0
  31. payi/types/experiences/type_create_params.py +14 -0
  32. payi/types/experiences/type_list_response.py +10 -0
  33. payi/types/experiences/type_update_params.py +14 -0
  34. payi/types/ingest_bulk_params.py +25 -5
  35. payi/types/ingest_response.py +2 -0
  36. {payi-0.1.0a15.dist-info → payi-0.1.0a16.dist-info}/METADATA +1 -1
  37. {payi-0.1.0a15.dist-info → payi-0.1.0a16.dist-info}/RECORD +39 -31
  38. payi/types/ingest_units_param.py +0 -23
  39. {payi-0.1.0a15.dist-info → payi-0.1.0a16.dist-info}/WHEEL +0 -0
  40. {payi-0.1.0a15.dist-info → payi-0.1.0a16.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,13 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+
4
+
5
+ from .._models import BaseModel
6
+
7
+ __all__ = ["ExperienceInstance"]
8
+
9
+
10
+ class ExperienceInstance(BaseModel):
11
+ experience_instance_id: str
12
+
13
+ request_id: str
@@ -0,0 +1,8 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from .experience_type import ExperienceType as ExperienceType
6
+ from .type_create_params import TypeCreateParams as TypeCreateParams
7
+ from .type_list_response import TypeListResponse as TypeListResponse
8
+ from .type_update_params import TypeUpdateParams as TypeUpdateParams
@@ -0,0 +1,17 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+
4
+
5
+ from ..._models import BaseModel
6
+
7
+ __all__ = ["ExperienceType"]
8
+
9
+
10
+ class ExperienceType(BaseModel):
11
+ description: str
12
+
13
+ experience_type_id: str
14
+
15
+ name: str
16
+
17
+ request_id: str
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Optional
6
+ from typing_extensions import TypedDict
7
+
8
+ __all__ = ["TypeCreateParams"]
9
+
10
+
11
+ class TypeCreateParams(TypedDict, total=False):
12
+ description: Optional[str]
13
+
14
+ name: Optional[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 .experience_type import ExperienceType
7
+
8
+ __all__ = ["TypeListResponse"]
9
+
10
+ TypeListResponse: TypeAlias = List[ExperienceType]
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Optional
6
+ from typing_extensions import TypedDict
7
+
8
+ __all__ = ["TypeUpdateParams"]
9
+
10
+
11
+ class TypeUpdateParams(TypedDict, total=False):
12
+ description: Optional[str]
13
+
14
+ name: Optional[str]
@@ -2,13 +2,33 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Iterable
6
- from typing_extensions import Required, TypedDict
5
+ from typing import List, Union, Iterable, Optional
6
+ from datetime import datetime
7
+ from typing_extensions import Required, Annotated, TypedDict
7
8
 
8
- from .ingest_units_param import IngestUnitsParam
9
+ from .._utils import PropertyInfo
9
10
 
10
- __all__ = ["IngestBulkParams"]
11
+ __all__ = ["IngestBulkParams", "Event"]
11
12
 
12
13
 
13
14
  class IngestBulkParams(TypedDict, total=False):
14
- items: Required[Iterable[IngestUnitsParam]]
15
+ events: Required[Iterable[Event]]
16
+
17
+ class Event(TypedDict, total=False):
18
+ category: Required[str]
19
+
20
+ input: Required[int]
21
+
22
+ output: Required[int]
23
+
24
+ resource: Required[str]
25
+
26
+ budget_ids: Optional[List[str]]
27
+
28
+ event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
29
+
30
+ experience_instance_id: Optional[str]
31
+
32
+ request_tags: Optional[List[str]]
33
+
34
+ user_id: Optional[str]
@@ -35,6 +35,8 @@ class XproxyResult(BaseModel):
35
35
 
36
36
 
37
37
  class IngestResponse(BaseModel):
38
+ event_timestamp: datetime
39
+
38
40
  ingest_timestamp: datetime
39
41
 
40
42
  request_id: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: payi
3
- Version: 0.1.0a15
3
+ Version: 0.1.0a16
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
@@ -1,56 +1,59 @@
1
1
  payi/__init__.py,sha256=LWpfR6WSMPTnmmx3ToqqZ0A8CNduLcuxY1SSOqhPxuk,2381
2
- payi/_base_client.py,sha256=m9HUAVfRZskxs-zENi8VtkaGXSipWhRq8Qh2H1YGWbc,66226
3
- payi/_client.py,sha256=xw0Z15gsNtWO5ktYEleEwksIYhUtHx8ogU3-j4gkdWM,16222
4
- payi/_compat.py,sha256=BPuFBQUQE-C6lIB2PTMco9-g08p94cqPxbU3x8VENso,6430
2
+ payi/_base_client.py,sha256=ceMQR7sfWlJfFsA91UJzG4MT-QnPJ3jhqe-EpEmpRBo,66460
3
+ payi/_client.py,sha256=OfFRXT_V_aAuGNt75_HKQiVlIEr3kpYOSXoOTTKgOAM,16842
4
+ payi/_compat.py,sha256=FgGcnNlyW7uHKyGh_Wvo7qZi-zVPmHx7mhb3F1GEZSw,6430
5
5
  payi/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
6
6
  payi/_exceptions.py,sha256=ItygKNrNXIVY0H6LsGVZvFuAHB3Vtm_VZXmWzCnpHy0,3216
7
- payi/_files.py,sha256=me2eyWzJCM4YKh10Gzkxw4YyIEJoikzD4BVu_20UUc0,3565
7
+ payi/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
8
  payi/_models.py,sha256=3METTz2oSlPfVcHL0fZ-L5IPnvckZDkgEe1H58mRsFE,28210
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=W6pADUzbnMFGnVzGY4M3FkX9uvw8AFSMTPZKPgQ_TV4,28363
11
+ payi/_response.py,sha256=SByCajzglbiy7lSG4F5enqb7R6jVQe1OQ9TBsaxWzE8,28508
12
12
  payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
13
- payi/_types.py,sha256=04q-KHD-qZ1xlfwEb_muyIHWmD-nZ-KxnRxA_QEjqNk,6125
14
- payi/_version.py,sha256=10rhRcen69ntoRaQVy3kwdgI8S_SdpwWX5apB-8lwxc,165
13
+ payi/_types.py,sha256=mb6zn5qmTK5j0QMh0fevdShT091HBL4w0YCUfQ3u5VY,6101
14
+ payi/_version.py,sha256=8QW-puf9BOeotZtfzqOdE4YGI2YOqj5-yiZm5-MlUec,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
18
- payi/_utils/_proxy.py,sha256=DjcB-BBIRagSbMut2pF_jZavjda9sPvmQCKtVXBhs0I,1910
19
- payi/_utils/_reflection.py,sha256=k20KwLejVHcQCvu4mT2S61NDvbmuXF7KsMDapiocYS0,1364
18
+ payi/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,1902
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
22
  payi/_utils/_transform.py,sha256=NCz3q9_O-vuj60xVe-qzhEQ8uJWlZWJTsM-GwHDccf8,12958
23
23
  payi/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
24
- payi/_utils/_utils.py,sha256=FaZdW0tWil7IERdxUfKt7pVcyXL2aCnR3lo73q66qgI,11447
24
+ payi/_utils/_utils.py,sha256=LMVTMZG8pfu8AkJNSfmv_z3guQlOfm2UxDTjTTXggfg,11411
25
25
  payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
26
  payi/lib/helpers.py,sha256=IdB_pi8dLtVh9b4DG-zasA1i9Yk-5xAayoUTNWBAFpc,1235
27
- payi/resources/__init__.py,sha256=uGNmPeysPonVR9KOzw-Qs1WB4CqJm17pEfoXqeEX1JA,1517
28
- payi/resources/ingest.py,sha256=nl1-h7_xItYfQSmXUveuuyBSNmwcLZ03JZe31EgpztE,13468
27
+ payi/resources/__init__.py,sha256=0bsV7zh4J03yh3W3MBoiiIT12uG2tdvsDrdqOeY0Cbc,2032
28
+ payi/resources/ingest.py,sha256=zyxQRN8feAsu-f6Kif7OcS18mNAdLMiLOkIqU810aWk,13436
29
29
  payi/resources/budgets/__init__.py,sha256=w1UhOdDXtUH4A91ME5Tw2nr9bRvPJyJY1YWiVVy7jj0,989
30
30
  payi/resources/budgets/budgets.py,sha256=VQiwsQIF6Rp7jlIUPQ5VpJbbVxFOxYHEPI-bWkiPt2k,26508
31
31
  payi/resources/budgets/tags.py,sha256=N26Uc7N8N1egvujY4LZ7RDoQ7oWeTR9w1pPbbgKLLqc,17841
32
32
  payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
33
33
  payi/resources/categories/categories.py,sha256=hqJE4iSiMe5nvvsui4RjFJxFb8170iRbJfTafk2NzGw,15072
34
34
  payi/resources/categories/resources.py,sha256=tEx1D3hrjgB_CDoGPIung-Ub3-jMFSYVnzmqZg-pr5g,17848
35
- payi/types/__init__.py,sha256=yL2tBUOA4T1_S8E1K039r9Sr2OUOXI6hsdlA__r-S2I,1729
35
+ payi/resources/experiences/__init__.py,sha256=gguTTCoGlAWDyrDJh1CtZwIVsyBbzERX63vRtFtjxjI,1054
36
+ payi/resources/experiences/experiences.py,sha256=SQ3gTimtadD46OXjBl7oR1B0D9O2QKi6vfx8z4u69fc,11882
37
+ payi/resources/experiences/types.py,sha256=Hw9JB3v6nXraQqZEtfWqA_Zbo0hHAUMxUa9XV_bGsns,16660
38
+ payi/types/__init__.py,sha256=ehba3br8WKY-n-PYzi4AQiRy0_hbF1O0FMHtbz83MZY,1734
36
39
  payi/types/budget_create_params.py,sha256=3PziVJT3_ll-6yv3i5EF8ERm19jFJAKbv9v-CvRW5ik,653
37
40
  payi/types/budget_history_response.py,sha256=4SnisCLr1HImVecgonZK7HIm9WTmYl0YMaTbMP70qZY,934
38
- payi/types/budget_list_params.py,sha256=Win-Spveurf6WarTgCXXsP-yDIxr_HCP7oV_4JbqKOc,674
41
+ payi/types/budget_list_params.py,sha256=KaJ0H4tfp6mpCyanpysVJBTAMa5aA2Kv73uO_EsBsKE,367
39
42
  payi/types/budget_response.py,sha256=ZAZOvA5KLirARR92IuLkjGNWTLBUVJp5RwGI9Ow2Au0,827
40
43
  payi/types/budget_update_params.py,sha256=foD5cPa1p2M2cpVUqlwkXwSEQlQcBLaigUQMUGkvcic,334
41
44
  payi/types/bulk_ingest_response.py,sha256=uZO89-RjrckzM37LRXNifvRptyz_mqbyVP6zO2FlBiM,962
42
- payi/types/category_delete_resource_response.py,sha256=DHGvvldGMSxwqsk83EAkqzEge94bYYZKPNyzL9jULdM,288
43
- payi/types/category_delete_response.py,sha256=i9hW9WGPSIR9cBCLgSfH6lseGISoQwAK_3pgjlVMoI4,289
44
- payi/types/category_list_resources_response.py,sha256=CnaOKWwDUPH47EKrNyeiI3p7jhEdgM9qs97M2tPRSGg,286
45
- payi/types/category_list_response.py,sha256=LHuL6iKGoDVjHWWbpA4tm1r3mQMauQm4EZrWGrOZzWQ,243
45
+ payi/types/category_delete_resource_response.py,sha256=PLz4wZA1XMpS9SUYB_j4hEw5EoZ0VVE9Ll-MQ26SAfc,339
46
+ payi/types/category_delete_response.py,sha256=5VYDbmQEHdMS01ysg9VeSbj0ckXYnoKrE47oa8VSM-I,340
47
+ payi/types/category_list_resources_response.py,sha256=n0DxY7N3Iftwfl0lUEx5v55V0kxbOX0EgjXlEfJtYRQ,337
48
+ payi/types/category_list_response.py,sha256=5i7BhQ7kVlx8_r2MLJqAJwIELGitKE0uR63kIloLATI,294
46
49
  payi/types/category_resource_response.py,sha256=GL3SjVawwzxQCTTHw5CyF4jajBKx5j7dirBmBHGoya0,518
47
50
  payi/types/category_response.py,sha256=43i8bii20Sb-z9R5M1Ia6RGfRZmdQqsWPlv4Bl1XQf0,293
48
51
  payi/types/cost_data.py,sha256=jZtju_3WWNXh4wCu77XnyvxZkvewcvXBS_V0z07BizA,284
49
52
  payi/types/cost_details.py,sha256=3ldvnYILAG6Sz9wGWMs1SZvIfdGEbn5i4-CauWEXMPA,265
50
53
  payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
51
- payi/types/ingest_bulk_params.py,sha256=Yngb3DBIsVTZakvFxu3FMFJbXQyJwWeoeMgXUxtOqOA,381
52
- payi/types/ingest_response.py,sha256=7v5RU7YbXOsd3qKG2tKHeJZmsWpWR3VSqAaX8TDOUhY,1040
53
- payi/types/ingest_units_param.py,sha256=jPYNfk8wZVmd1qIXglKW6ckZH2MHw0dV3BwIWXG_U6Q,558
54
+ payi/types/experience_instance.py,sha256=r6WYuGqMEnIi_dAlQyTEfDO5SlwzjRZfXek4lEEov4U,247
55
+ payi/types/ingest_bulk_params.py,sha256=-Y4ef_w-57dNojSSRdzikPkhc762UfhnOfAyc5iySmA,816
56
+ payi/types/ingest_response.py,sha256=o43RH25dS4S54OCr3vkipZvLeAmI-hru6LuL789iEnM,1071
54
57
  payi/types/ingest_units_params.py,sha256=a3fEqwmrRNtGR9pqbTo50feTTjSmRGov6MYvXhBo1yc,748
55
58
  payi/types/paged_budget_list.py,sha256=FqKlbAifEWY3sZqiJSny-XtS-XIfmj14AufNffNVmqM,1385
56
59
  payi/types/requests_data.py,sha256=UniFVu9SgDQIbZupzrLSrvBKV487_iKFemLw9nRDhGo,296
@@ -58,17 +61,22 @@ payi/types/total_cost_data.py,sha256=Nu1LyV1NX4CsI02Yn3GbvNXVZPrXG8U4Fs55rZE9KJk
58
61
  payi/types/budgets/__init__.py,sha256=5ByVuqOcgSYLHmGzhuj6-HG48mtQhC6oT5U5tNjQtxk,725
59
62
  payi/types/budgets/budget_tags.py,sha256=nOYMf7YgRdTZgGdedJw0UbQ2uupCq9MHlevLJoXxWB4,348
60
63
  payi/types/budgets/tag_create_params.py,sha256=_zEYfH2uKF44WenAdedx4TB9Az6RbIoAUMwqW8SAiuc,314
61
- payi/types/budgets/tag_create_response.py,sha256=ybpccmzfOnLrgzRNYj_dDQF6NVFwBM7HdakqAU0nQpQ,219
62
- payi/types/budgets/tag_delete_response.py,sha256=z7LQaTsdjQ3ilWsaKKHr5VLAsqa80tdFmDkEkQC96Ok,219
63
- payi/types/budgets/tag_list_response.py,sha256=yfdMEFy4Cy0-7EPbaedjBJXwiLnAjmSuFt0PdRIL1ok,215
64
+ payi/types/budgets/tag_create_response.py,sha256=qg51bbGKGl2RL6BKQSzwBHxIW7H2oxUq45afe35PCdA,270
65
+ payi/types/budgets/tag_delete_response.py,sha256=INYlE88mTjtdaa9kfTuqE0cP9__rbW5e4Xq36olYoeY,270
66
+ payi/types/budgets/tag_list_response.py,sha256=-4q6_BOr2Nyov-noCI1TInOewADjWc0MUf0P1kRhxWo,266
64
67
  payi/types/budgets/tag_remove_params.py,sha256=fNiHex1U11o_B0bfJDkpGARkEf99J-bd-wbzKkZ9mVM,314
65
- payi/types/budgets/tag_remove_response.py,sha256=Wt4KwC76y3qxdEqKhXzFkYu2iECYePgXcpidXkuheWQ,219
68
+ payi/types/budgets/tag_remove_response.py,sha256=v7ysGVZ-54dKurvMA-3ySKco4LgTz3MqwC2VcJ-veeE,270
66
69
  payi/types/budgets/tag_update_params.py,sha256=bWWeDqfySt7CZ6HDsZzENREOWGWGWFgnAtyleNMwUsE,314
67
- payi/types/budgets/tag_update_response.py,sha256=Vlf-zxLZzvmhUodhzF7hiqWcxyjrb7Ri_lSajg8vOPM,219
70
+ payi/types/budgets/tag_update_response.py,sha256=0L-0k2pGw9GndpwArjKhHwOOJgOTOTY4mM7ukUM3Pwc,270
68
71
  payi/types/categories/__init__.py,sha256=HQScxfK3F_J9HYbphrhG6bYb7S6vtrwafLViar5pHcM,285
69
72
  payi/types/categories/resource_create_params.py,sha256=mbLjAyRz9iuINs_KEWYCLLUZFq4GcRhs0vL2RxqBFwQ,587
70
- payi/types/categories/resource_list_response.py,sha256=DmfAmYm72WK9hSF0FSj6XYsZ59_S-ErmXNbZM8Bkc4o,269
71
- payi-0.1.0a15.dist-info/METADATA,sha256=Xbtaak0SShck7BbYM2fwWus77dTwDPcEKtGCdoaia1g,12030
72
- payi-0.1.0a15.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
73
- payi-0.1.0a15.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
74
- payi-0.1.0a15.dist-info/RECORD,,
73
+ payi/types/categories/resource_list_response.py,sha256=ODMelDlXvYcwxBsJwTX8miofywUY_JB0OvsFVCKJunU,320
74
+ payi/types/experiences/__init__.py,sha256=UeNpY1NmtbEZ0h4-onmMf_5mg0lCUvHMEQRlWXS07do,392
75
+ payi/types/experiences/experience_type.py,sha256=KKjkfI0eaoB1TmTlA4UpHKa2fB1q0zXeG_1M2LUgBsE,273
76
+ payi/types/experiences/type_create_params.py,sha256=8L-f6V2JyqJV90MS3lH-VN7igPuTJzBQSjw1D70SgxQ,329
77
+ payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG12rZRU9w6kgQN28,280
78
+ payi/types/experiences/type_update_params.py,sha256=ziUJASn8QF_5nSp5lohT0HLK0tTOciT-X35CVH9dA5Q,329
79
+ payi-0.1.0a16.dist-info/METADATA,sha256=4S0la3OCB3uzSRoDS2BIa9yy1KshUu9apzIL-B6yowY,12030
80
+ payi-0.1.0a16.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
81
+ payi-0.1.0a16.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
82
+ payi-0.1.0a16.dist-info/RECORD,,
@@ -1,23 +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 Union
6
- from datetime import datetime
7
- from typing_extensions import Required, Annotated, TypedDict
8
-
9
- from .._utils import PropertyInfo
10
-
11
- __all__ = ["IngestUnitsParam"]
12
-
13
-
14
- class IngestUnitsParam(TypedDict, total=False):
15
- category: Required[str]
16
-
17
- input: Required[int]
18
-
19
- output: Required[int]
20
-
21
- resource: Required[str]
22
-
23
- event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]