moovio_sdk 0.16.0__py3-none-any.whl → 0.16.1__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 moovio_sdk might be problematic. Click here for more details.

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.16.0"
6
+ __version__: str = "0.16.1"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.716.5"
9
- __user_agent__: str = "speakeasy-sdk/python 0.16.0 2.716.5 latest moovio_sdk"
8
+ __gen_version__: str = "2.716.9"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.16.1 2.716.9 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -444,6 +444,8 @@ if TYPE_CHECKING:
444
444
  EvidenceUploadResponseTypedDict,
445
445
  )
446
446
  from .facilitatorfee import FacilitatorFee, FacilitatorFeeTypedDict
447
+ from .fednowinstitution import FedNowInstitution, FedNowInstitutionTypedDict
448
+ from .fednowservices import FedNowServices, FedNowServicesTypedDict
447
449
  from .feecategory import FeeCategory
448
450
  from .feemodel import FeeModel
449
451
  from .feeplan import FeePlan, FeePlanTypedDict
@@ -1492,6 +1494,10 @@ __all__ = [
1492
1494
  "EvidenceUploadResponseTypedDict",
1493
1495
  "FacilitatorFee",
1494
1496
  "FacilitatorFeeTypedDict",
1497
+ "FedNowInstitution",
1498
+ "FedNowInstitutionTypedDict",
1499
+ "FedNowServices",
1500
+ "FedNowServicesTypedDict",
1495
1501
  "FeeCategory",
1496
1502
  "FeeModel",
1497
1503
  "FeePlan",
@@ -2431,6 +2437,10 @@ _dynamic_imports: dict[str, str] = {
2431
2437
  "EvidenceUploadResponseTypedDict": ".evidenceuploadresponse",
2432
2438
  "FacilitatorFee": ".facilitatorfee",
2433
2439
  "FacilitatorFeeTypedDict": ".facilitatorfee",
2440
+ "FedNowInstitution": ".fednowinstitution",
2441
+ "FedNowInstitutionTypedDict": ".fednowinstitution",
2442
+ "FedNowServices": ".fednowservices",
2443
+ "FedNowServicesTypedDict": ".fednowservices",
2434
2444
  "FeeCategory": ".feecategory",
2435
2445
  "FeeModel": ".feemodel",
2436
2446
  "FeePlan": ".feeplan",
@@ -0,0 +1,23 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .fednowservices import FedNowServices, FedNowServicesTypedDict
5
+ from moovio_sdk.types import BaseModel
6
+ import pydantic
7
+ from typing_extensions import Annotated, TypedDict
8
+
9
+
10
+ class FedNowInstitutionTypedDict(TypedDict):
11
+ name: str
12
+ r"""Name of the financial institution."""
13
+ routing_number: str
14
+ services: FedNowServicesTypedDict
15
+
16
+
17
+ class FedNowInstitution(BaseModel):
18
+ name: str
19
+ r"""Name of the financial institution."""
20
+
21
+ routing_number: Annotated[str, pydantic.Field(alias="routingNumber")]
22
+
23
+ services: FedNowServices
@@ -0,0 +1,26 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from moovio_sdk.types import BaseModel
5
+ import pydantic
6
+ from typing_extensions import Annotated, TypedDict
7
+
8
+
9
+ class FedNowServicesTypedDict(TypedDict):
10
+ receive_payments: bool
11
+ r"""Indicates if the institution can receive instant payments."""
12
+ send_payments: bool
13
+ r"""Indicates if the institution can send instant payments."""
14
+ request_for_payment: bool
15
+ r"""Indicates if the institution can process request for payment messages."""
16
+
17
+
18
+ class FedNowServices(BaseModel):
19
+ receive_payments: Annotated[bool, pydantic.Field(alias="receivePayments")]
20
+ r"""Indicates if the institution can receive instant payments."""
21
+
22
+ send_payments: Annotated[bool, pydantic.Field(alias="sendPayments")]
23
+ r"""Indicates if the institution can send instant payments."""
24
+
25
+ request_for_payment: Annotated[bool, pydantic.Field(alias="requestForPayment")]
26
+ r"""Indicates if the institution can process request for payment messages."""
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .achinstitution import ACHInstitution, ACHInstitutionTypedDict
5
+ from .fednowinstitution import FedNowInstitution, FedNowInstitutionTypedDict
5
6
  from .rtpinstitution import RTPInstitution, RTPInstitutionTypedDict
6
7
  from .wireinstitution import WireInstitution, WireInstitutionTypedDict
7
8
  from moovio_sdk.types import BaseModel, Nullable, UNSET_SENTINEL
@@ -14,6 +15,7 @@ class InstitutionsSearchResponseTypedDict(TypedDict):
14
15
  ach: Nullable[List[ACHInstitutionTypedDict]]
15
16
  rtp: Nullable[List[RTPInstitutionTypedDict]]
16
17
  wire: Nullable[List[WireInstitutionTypedDict]]
18
+ fednow: Nullable[List[FedNowInstitutionTypedDict]]
17
19
 
18
20
 
19
21
  class InstitutionsSearchResponse(BaseModel):
@@ -23,10 +25,12 @@ class InstitutionsSearchResponse(BaseModel):
23
25
 
24
26
  wire: Nullable[List[WireInstitution]]
25
27
 
28
+ fednow: Nullable[List[FedNowInstitution]]
29
+
26
30
  @model_serializer(mode="wrap")
27
31
  def serialize_model(self, handler):
28
32
  optional_fields = []
29
- nullable_fields = ["ach", "rtp", "wire"]
33
+ nullable_fields = ["ach", "rtp", "wire", "fednow"]
30
34
  null_default_fields = []
31
35
 
32
36
  serialized = handler(self)
@@ -8,10 +8,10 @@ class MonthlyVolumeRange(str, Enum):
8
8
  r"""The low value in each range is included. The high value in each range is excluded."""
9
9
 
10
10
  UNDER_10K = "under-10k"
11
- TEN_K_50_K = "10K-50K"
12
- FIFTY_K_100_K = "50K-100K"
13
- ONE_HUNDRED_K_250_K = "100K-250K"
14
- TWO_HUNDRED_AND_FIFTY_K_500_K = "250K-500K"
15
- FIVE_HUNDRED_K_1_M = "500K-1M"
16
- ONE_M_5_M = "1M-5M"
11
+ TENK_50K = "10k-50k"
12
+ FIFTYK_100K = "50k-100k"
13
+ ONE_HUNDREDK_250K = "100k-250k"
14
+ TWO_HUNDRED_AND_FIFTYK_500K = "250k-500k"
15
+ FIVE_HUNDREDK_1M = "500k-1m"
16
+ ONEM_5M = "1m-5m"
17
17
  OVER_5M = "over-5m"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moovio_sdk
3
- Version: 0.16.0
3
+ Version: 0.16.1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -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=Yi9LD8_sd4zG7_idzCZY4MTxTXMhDlmCdpQvU4dXFI4,3049
6
- moovio_sdk/_version.py,sha256=shi-lMDYthGbn-7xUGuu6F1Ez9AIZiRhwHzad1lihoM,466
6
+ moovio_sdk/_version.py,sha256=-TWODgeFHup4RFIR6DfA7ZDMboRXhQmQHiROo66PiiM,466
7
7
  moovio_sdk/account_terminal_applications.py,sha256=ldTg5uAukIAwfziQFgmuq6vlAsUPS5DqMkgdCx9bwn8,38522
8
8
  moovio_sdk/accounts.py,sha256=XHDyYql7Tc27K28zv0UI0eYU0LkRu8kmSPXBYI8Iyx0,100626
9
9
  moovio_sdk/adjustments.py,sha256=U2AtbA2k71S1IpwjJ96LT4SdGUDqR3JEgOSvMm9a2yU,17613
@@ -27,7 +27,7 @@ moovio_sdk/industries.py,sha256=ZUdnD3w84e1oOOQlye60I9QTFn_0JLGF0uMDrASl8A4,9372
27
27
  moovio_sdk/institutions.py,sha256=Kp90bbtOsfb1slR_8RgmYHkgH8G6Pp9FZds2rc7J6Ck,20523
28
28
  moovio_sdk/issuing_transactions.py,sha256=pckxIPSAJDMt-PcKduqdVhd7fsbUwCKzlkGb_UBwRW0,48949
29
29
  moovio_sdk/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
30
- moovio_sdk/models/components/__init__.py,sha256=2sdxrDZqV8m_cjuP8IVPX3tkht_sUt12PYl1gGBp7so,126233
30
+ moovio_sdk/models/components/__init__.py,sha256=Vs8tMf1ddHFAbIU0vDXmqMVpfK429l4EABJ96IUTFck,126692
31
31
  moovio_sdk/models/components/account.py,sha256=gIzVHHbfwM-YZns1m9b2z6es5mX-LtCOd7C0N-oPBBA,4189
32
32
  moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
33
33
  moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
@@ -213,6 +213,8 @@ moovio_sdk/models/components/evidencetextresponse.py,sha256=8m2u3iC_gCUSuU4h53JL
213
213
  moovio_sdk/models/components/evidencetype.py,sha256=KQMJuoRyjESBU59-TghucuZC0P14KlvLdce2gtDjixM,469
214
214
  moovio_sdk/models/components/evidenceuploadresponse.py,sha256=tCxjtueEl1URQjNTE2QYp9zsRFG_c5hjdvLil_3QaEk,1615
215
215
  moovio_sdk/models/components/facilitatorfee.py,sha256=uDMPXHogxp5lpRjeLK4QlgoXSRo35cYfqxo0NVzO2A0,2156
216
+ moovio_sdk/models/components/fednowinstitution.py,sha256=fVtuI1v6loVnMTg6WQMn2wmYZ-NcRih9OeOJI2I6GW8,654
217
+ moovio_sdk/models/components/fednowservices.py,sha256=81-81tmT4Z674XSUehwFRM63o5wojzekI7wp7JoXSl4,1050
216
218
  moovio_sdk/models/components/feecategory.py,sha256=9OBQNnE7O8c_i_8eyvbbkl_MfdgwmHeYZ9_36uooCrU,428
217
219
  moovio_sdk/models/components/feemodel.py,sha256=M98YekU7JfnwG613Zi6SJE9hcUBIHiqMObgi30rUoxM,312
218
220
  moovio_sdk/models/components/feeplan.py,sha256=0WIFfE3jd8CupBAi-66bjUN10f1vEv6e_9_uv6bKl5c,2381
@@ -250,7 +252,7 @@ moovio_sdk/models/components/individualprofile.py,sha256=9XYieNlD3tDvoAgR1yU5Vvt
250
252
  moovio_sdk/models/components/industrycodes.py,sha256=dxRs-_R5VFy1SdRvihjk2AOcmVaylbViJvECmzJ4yRc,479
251
253
  moovio_sdk/models/components/industrytaxonomy.py,sha256=NUOOo4LqN-yTUtGz6PVmFjhnSYrBFGFZfTJmbEjw6Es,1258
252
254
  moovio_sdk/models/components/instantpaymentfees.py,sha256=tiqFhR975kr4qA0UKRElJBq4cHiEbHNFcZtXaRJAloU,2673
253
- moovio_sdk/models/components/institutionssearchresponse.py,sha256=4BY3npqAjDiPnUBOtxUktgRYUKTsRLKwTlI4TXCgbV0,1770
255
+ moovio_sdk/models/components/institutionssearchresponse.py,sha256=KrJtmffkECElApVfEIkzapecC5wYCXDaD4Tv1TSolHc,1959
254
256
  moovio_sdk/models/components/issuedcard.py,sha256=J6LJANU1CqtziTW_kw38R483nJTpICmNBAKq2emfc6c,3845
255
257
  moovio_sdk/models/components/issuedcardauthorization.py,sha256=CBs07Xy6Zj6SycF0dUFCA7yiqiH_pW9GzRJX5vkKQN4,2252
256
258
  moovio_sdk/models/components/issuedcardauthorizationevent.py,sha256=e_2iichL1mRfAPhLDYJZRSsynYlyTdNcBKBJ3FseXpY,1711
@@ -290,7 +292,7 @@ moovio_sdk/models/components/moneytransferpullfromcarderror.py,sha256=6ortfbwQ7s
290
292
  moovio_sdk/models/components/moneytransferpushtocard.py,sha256=zI1jIHnKvgHS-4Tx8JQCafo2pVzFqOwhoZ44wbnETvk,620
291
293
  moovio_sdk/models/components/moneytransferpushtocarderror.py,sha256=CM1zsR40Q6N9fSY8btNT-qwtJs-Rb_ICAqfwqOqc_2w,668
292
294
  moovio_sdk/models/components/monthlyplatformfee.py,sha256=WRGXX_vic_E9GXslX67Suk5_vZNV1Rh-4qVEUjHJ_oY,997
293
- moovio_sdk/models/components/monthlyvolumerange.py,sha256=MJiNFWWdtRCU5vfo0EX-sG_HGRJ2GbMYmIuIv3IFRMg,519
295
+ moovio_sdk/models/components/monthlyvolumerange.py,sha256=9kWVv_ThZFunbaf49CeG0cSkuokcXgH4-3VeaSe5VSY,507
294
296
  moovio_sdk/models/components/moovfee.py,sha256=uTeQEPAVBKGymCQgrJF2tbpQq9KnsMpiL6CJP3FYAdg,1518
295
297
  moovio_sdk/models/components/moovfeedetails.py,sha256=GovSQFW4mExyx_jW5VY8nIK0ezSebPnguLoH2xgzO0o,1853
296
298
  moovio_sdk/models/components/moovwalletpaymentmethod.py,sha256=_FmIK5xllEX3B6YjYdpvQj61n5Src8ZRmsWcmUAxfcs,978
@@ -734,6 +736,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
734
736
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
735
737
  moovio_sdk/wallet_transactions.py,sha256=RmLqla-r3w-R2yiE6NFsOSWdmKFxDqCKAw5TZV0ooOs,23895
736
738
  moovio_sdk/wallets.py,sha256=mkjHXF-JJ6fdgWNTn-qQA938ejre_ILQuFh8F0Vi1LY,43246
737
- moovio_sdk-0.16.0.dist-info/METADATA,sha256=xrVLejz_tUamQmsLvsuS9IlyUqJwujf2q-K1JmDnfG4,114995
738
- moovio_sdk-0.16.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
739
- moovio_sdk-0.16.0.dist-info/RECORD,,
739
+ moovio_sdk-0.16.1.dist-info/METADATA,sha256=pxB0E5kaDPo9h-3R01DrEdWGPJQTwVZ1-lK28_yRf5A,114995
740
+ moovio_sdk-0.16.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
741
+ moovio_sdk-0.16.1.dist-info/RECORD,,