moovio_sdk 0.4.2__py3-none-any.whl → 0.5.0__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.
moovio_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "moovio_sdk"
6
- __version__: str = "0.4.2"
6
+ __version__: str = "0.5.0"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.585.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.4.2 2.585.2 latest moovio_sdk"
8
+ __gen_version__: str = "2.588.4"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.5.0 2.588.4 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -23,6 +23,8 @@ class DisputeEvidenceResponseTypedDict(TypedDict):
23
23
  r"""For file evidence, the name of the file."""
24
24
  size: NotRequired[int]
25
25
  r"""For file evidence, the size of the file."""
26
+ submitted_on: NotRequired[datetime]
27
+ r"""When the evidence was submitted for review."""
26
28
 
27
29
 
28
30
  class DisputeEvidenceResponse(BaseModel):
@@ -47,3 +49,8 @@ class DisputeEvidenceResponse(BaseModel):
47
49
 
48
50
  size: Optional[int] = None
49
51
  r"""For file evidence, the size of the file."""
52
+
53
+ submitted_on: Annotated[Optional[datetime], pydantic.Field(alias="submittedOn")] = (
54
+ None
55
+ )
56
+ r"""When the evidence was submitted for review."""
@@ -1,6 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from .annotations import get_discriminator
4
+ from .datetimes import parse_datetime
4
5
  from .enums import OpenEnumMeta
5
6
  from .headers import get_headers, get_response_headers
6
7
  from .metadata import (
@@ -0,0 +1,23 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from datetime import datetime
4
+ import sys
5
+
6
+
7
+ def parse_datetime(datetime_string: str) -> datetime:
8
+ """
9
+ Convert a RFC 3339 / ISO 8601 formatted string into a datetime object.
10
+ Python versions 3.11 and later support parsing RFC 3339 directly with
11
+ datetime.fromisoformat(), but for earlier versions, this function
12
+ encapsulates the necessary extra logic.
13
+ """
14
+ # Python 3.11 and later can parse RFC 3339 directly
15
+ if sys.version_info >= (3, 11):
16
+ return datetime.fromisoformat(datetime_string)
17
+
18
+ # For Python 3.10 and earlier, a common ValueError is trailing 'Z' suffix,
19
+ # so fix that upfront.
20
+ if datetime_string.endswith("Z"):
21
+ datetime_string = datetime_string[:-1] + "+00:00"
22
+
23
+ return datetime.fromisoformat(datetime_string)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moovio_sdk
3
- Version: 0.4.2
3
+ Version: 0.5.0
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -13,7 +13,6 @@ Classifier: Programming Language :: Python :: 3.13
13
13
  Requires-Dist: eval-type-backport (>=0.2.0)
14
14
  Requires-Dist: httpx (>=0.28.1)
15
15
  Requires-Dist: pydantic (>=2.11.2)
16
- Requires-Dist: python-dateutil (>=2.8.2)
17
16
  Requires-Dist: typing-inspection (>=0.4.0)
18
17
  Project-URL: Documentation, https://docs.moov.io/
19
18
  Project-URL: Homepage, https://moov.io/
@@ -3,7 +3,7 @@ moovio_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c
3
3
  moovio_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  moovio_sdk/_hooks/sdkhooks.py,sha256=2XuMgiV2N7UE7lN00Is-c3spxVWigYitXS6xSmS_Qow,2560
5
5
  moovio_sdk/_hooks/types.py,sha256=xAyw_8EoIrUHL-zLoqXrogOkBq1ZFICNGZfp9xne2ww,2813
6
- moovio_sdk/_version.py,sha256=udkwU7VAHt5AGKt6p1A14ZGQ0g_Ia4V0zmrCazArVUo,464
6
+ moovio_sdk/_version.py,sha256=MqjRSaL_ta8rFBwXhFrIFuBU9l_gRtTOxd6FaDTdYZ4,464
7
7
  moovio_sdk/account_terminal_applications.py,sha256=7Td1lpM3mqBQGPLoU5fLWZKRII1CjWikuUdD5bll4NI,41863
8
8
  moovio_sdk/accounts.py,sha256=owJJuChHd-iucAiR4JWlaMYD1oKvjzCYSO6rckje6vs,107907
9
9
  moovio_sdk/adjustments.py,sha256=m7S8Vn0KB4bMaTQTX50sCPvNZr72kjA6DTLxeJ2U-fc,19272
@@ -169,7 +169,7 @@ moovio_sdk/models/components/debitholdperiod.py,sha256=nAcdMuNrf-6bcXsPf68y0kfEx
169
169
  moovio_sdk/models/components/disbursementpaymentmethodtype.py,sha256=RoBMOcxI6SvUfDiq2VR8_Dw7r4ksSlcZEpFgeG4aKQ0,398
170
170
  moovio_sdk/models/components/displayoptionserror.py,sha256=1s3Pbi9-bPDh-8jWqI9r7tOKWz3cBltbWk_KCWTGxQE,621
171
171
  moovio_sdk/models/components/dispute.py,sha256=82IXEi5E2s2aSRJpH3k1hvL-sp0sRMZkiWxg3wxqp2Y,2731
172
- moovio_sdk/models/components/disputeevidenceresponse.py,sha256=joVA65MZt5EzniwuKd2Q3wiRCGeSnE3zSlyhw2kSXj4,1650
172
+ moovio_sdk/models/components/disputeevidenceresponse.py,sha256=OLWtggNhs6Jtn1l37GGwFlhUu5E0isVUiinYiQt1EJg,1909
173
173
  moovio_sdk/models/components/disputephase.py,sha256=bGzDKXSUgWBAx1YFpUZDk6PfGr8X9snXQecOYryV1BE,338
174
174
  moovio_sdk/models/components/disputestatus.py,sha256=3DW812znEW0gK90iNPhJhnD1LtP9Qyq9UjAxjTAPGYs,590
175
175
  moovio_sdk/models/components/disputetransferdetails.py,sha256=77N-ZybluX_LQojANDl2U5R5U2Ks5UzB-nms9-BKpsA,476
@@ -580,8 +580,9 @@ moovio_sdk/transfers.py,sha256=aYGm2hNcuSgU0Z-iCxnRTQcT1NFo6wqewk6eyF9caPE,13313
580
580
  moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
581
581
  moovio_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
582
582
  moovio_sdk/underwriting.py,sha256=Q3bOkxgz3syy6YgdTKK_DTAqK6lV_uawgVZZX3iPuqc,24353
583
- moovio_sdk/utils/__init__.py,sha256=A7_RAc6uLoQYKGunLRFg8cTYYvM4WgoM7Da50PYZOoU,2456
583
+ moovio_sdk/utils/__init__.py,sha256=Ah6w4JB18yOm1wTmG0IZn0fzTcIJCFOhLcT2B5nmHi8,2494
584
584
  moovio_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
585
+ moovio_sdk/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
585
586
  moovio_sdk/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
586
587
  moovio_sdk/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
587
588
  moovio_sdk/utils/forms.py,sha256=YSSijXrsM2nfrRHlPQejh1uRRKfoILomHL3d9xpJiy8,6058
@@ -597,6 +598,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
597
598
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
598
599
  moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
599
600
  moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
600
- moovio_sdk-0.4.2.dist-info/METADATA,sha256=3ZCWOd-UvxsLGgWDCf69UT5Vcb-uvk01p7ZOJr2aB0M,105514
601
- moovio_sdk-0.4.2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
602
- moovio_sdk-0.4.2.dist-info/RECORD,,
601
+ moovio_sdk-0.5.0.dist-info/METADATA,sha256=SeP-nNjdUlFExkxc_rZ9KVPl0E24Q-GDJNBNe_-clCQ,105473
602
+ moovio_sdk-0.5.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
603
+ moovio_sdk-0.5.0.dist-info/RECORD,,