moovio_sdk 0.3.23__py3-none-any.whl → 0.3.25__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.3.23"
6
+ __version__: str = "0.3.25"
7
7
  __openapi_doc_version__: str = "latest"
8
- __gen_version__: str = "2.568.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.3.23 2.568.2 latest moovio_sdk"
8
+ __gen_version__: str = "2.568.5"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.3.25 2.568.5 latest moovio_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -422,6 +422,7 @@ from .microdepositstatus import MicroDepositStatus
422
422
  from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
423
423
  from .mode import Mode
424
424
  from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
425
+ from .moovfee import MoovFee, MoovFeeTypedDict
425
426
  from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
426
427
  from .moovwalletpaymentmethod import (
427
428
  MoovWalletPaymentMethod,
@@ -651,6 +652,7 @@ from .transferaccount import TransferAccount, TransferAccountTypedDict
651
652
  from .transferdestination import TransferDestination, TransferDestinationTypedDict
652
653
  from .transferfailurereason import TransferFailureReason
653
654
  from .transferoptions import TransferOptions, TransferOptionsTypedDict
655
+ from .transferparty import TransferParty
654
656
  from .transfersource import TransferSource, TransferSourceTypedDict
655
657
  from .transferstatus import TransferStatus
656
658
  from .transferwaitfor import TransferWaitFor
@@ -1160,8 +1162,10 @@ __all__ = [
1160
1162
  "Mode",
1161
1163
  "MonthlyPlatformFee",
1162
1164
  "MonthlyPlatformFeeTypedDict",
1165
+ "MoovFee",
1163
1166
  "MoovFeeDetails",
1164
1167
  "MoovFeeDetailsTypedDict",
1168
+ "MoovFeeTypedDict",
1165
1169
  "MoovWalletPaymentMethod",
1166
1170
  "MoovWalletPaymentMethodPaymentMethodType",
1167
1171
  "MoovWalletPaymentMethodTypedDict",
@@ -1380,6 +1384,7 @@ __all__ = [
1380
1384
  "TransferFailureReason",
1381
1385
  "TransferOptions",
1382
1386
  "TransferOptionsTypedDict",
1387
+ "TransferParty",
1383
1388
  "TransferSource",
1384
1389
  "TransferSourceTypedDict",
1385
1390
  "TransferStatus",
@@ -0,0 +1,38 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .amountdecimal import AmountDecimal, AmountDecimalTypedDict
5
+ from .transferparty import TransferParty
6
+ from moovio_sdk.types import BaseModel
7
+ import pydantic
8
+ from typing import List
9
+ from typing_extensions import Annotated, TypedDict
10
+
11
+
12
+ class MoovFeeTypedDict(TypedDict):
13
+ r"""Moov fee charged to an account involved in a transfer."""
14
+
15
+ account_id: str
16
+ r"""ID of the account that fees were charged to."""
17
+ transfer_party: TransferParty
18
+ r"""Indicates whether the account charged is the source, destination, or partner account."""
19
+ total_amount: AmountDecimalTypedDict
20
+ r"""The total amount of fees charged to the account."""
21
+ fee_i_ds: List[str]
22
+ r"""List of fee IDs that sum to the totalAmount."""
23
+
24
+
25
+ class MoovFee(BaseModel):
26
+ r"""Moov fee charged to an account involved in a transfer."""
27
+
28
+ account_id: Annotated[str, pydantic.Field(alias="accountID")]
29
+ r"""ID of the account that fees were charged to."""
30
+
31
+ transfer_party: Annotated[TransferParty, pydantic.Field(alias="transferParty")]
32
+ r"""Indicates whether the account charged is the source, destination, or partner account."""
33
+
34
+ total_amount: Annotated[AmountDecimal, pydantic.Field(alias="totalAmount")]
35
+ r"""The total amount of fees charged to the account."""
36
+
37
+ fee_i_ds: Annotated[List[str], pydantic.Field(alias="feeIDs")]
38
+ r"""List of fee IDs that sum to the totalAmount."""
@@ -17,8 +17,6 @@ class ReceiptResponseTypedDict(TypedDict):
17
17
  r"""AccountID for which the receipt request was created."""
18
18
  kind: ReceiptKind
19
19
  r"""The type of receipt."""
20
- sent_for: List[SentReceiptTypedDict]
21
- r"""The list of receipts that have been sent."""
22
20
  disabled_on: NotRequired[datetime]
23
21
  r"""The date and time the receipt was disabled."""
24
22
  email: NotRequired[str]
@@ -41,6 +39,8 @@ class ReceiptResponseTypedDict(TypedDict):
41
39
  r"""The ID of the schedule occurrence associated with this receipt.
42
40
  Exactly one of forTransferID, forScheduleID, or forOccurrenceID must be provided.
43
41
  """
42
+ sent_for: NotRequired[List[SentReceiptTypedDict]]
43
+ r"""The list of receipts that have been sent."""
44
44
 
45
45
 
46
46
  class ReceiptResponse(BaseModel):
@@ -53,9 +53,6 @@ class ReceiptResponse(BaseModel):
53
53
  kind: ReceiptKind
54
54
  r"""The type of receipt."""
55
55
 
56
- sent_for: Annotated[List[SentReceipt], pydantic.Field(alias="sentFor")]
57
- r"""The list of receipts that have been sent."""
58
-
59
56
  disabled_on: Annotated[Optional[datetime], pydantic.Field(alias="disabledOn")] = (
60
57
  None
61
58
  )
@@ -93,3 +90,8 @@ class ReceiptResponse(BaseModel):
93
90
  r"""The ID of the schedule occurrence associated with this receipt.
94
91
  Exactly one of forTransferID, forScheduleID, or forOccurrenceID must be provided.
95
92
  """
93
+
94
+ sent_for: Annotated[
95
+ Optional[List[SentReceipt]], pydantic.Field(alias="sentFor")
96
+ ] = None
97
+ r"""The list of receipts that have been sent."""
@@ -33,7 +33,6 @@ class SweepConfigTypedDict(TypedDict):
33
33
  r"""The text that appears on the banking statement. The default descriptor is a 10 character ID if an override is not set in the sweep configs statementDescriptor."""
34
34
  locked_fields: NotRequired[List[str]]
35
35
  r"""An array of fields that are locked. To request updates, please contact Moov support."""
36
- disabled_on: NotRequired[datetime]
37
36
 
38
37
 
39
38
  class SweepConfig(BaseModel):
@@ -75,7 +74,3 @@ class SweepConfig(BaseModel):
75
74
  Optional[List[str]], pydantic.Field(alias="lockedFields")
76
75
  ] = None
77
76
  r"""An array of fields that are locked. To request updates, please contact Moov support."""
78
-
79
- disabled_on: Annotated[Optional[datetime], pydantic.Field(alias="disabledOn")] = (
80
- None
81
- )
@@ -6,6 +6,7 @@ from .cancellation import Cancellation, CancellationTypedDict
6
6
  from .cardacquiringdispute import CardAcquiringDispute, CardAcquiringDisputeTypedDict
7
7
  from .cardacquiringrefund import CardAcquiringRefund, CardAcquiringRefundTypedDict
8
8
  from .facilitatorfee import FacilitatorFee, FacilitatorFeeTypedDict
9
+ from .moovfee import MoovFee, MoovFeeTypedDict
9
10
  from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
10
11
  from .transferdestination import TransferDestination, TransferDestinationTypedDict
11
12
  from .transferfailurereason import TransferFailureReason
@@ -43,6 +44,8 @@ class TransferTypedDict(TypedDict):
43
44
  r"""Same as `moovFee`, but a decimal-formatted numerical string that represents up to 9 decimal place precision."""
44
45
  moov_fee_details: NotRequired[MoovFeeDetailsTypedDict]
45
46
  r"""Processing and pass-through costs that add up to the moovFee."""
47
+ moov_fees: NotRequired[List[MoovFeeTypedDict]]
48
+ r"""Fees charged to accounts involved in the transfer."""
46
49
  group_id: NotRequired[str]
47
50
  cancellations: NotRequired[List[CancellationTypedDict]]
48
51
  refunded_amount: NotRequired[AmountTypedDict]
@@ -105,6 +108,11 @@ class Transfer(BaseModel):
105
108
  ] = None
106
109
  r"""Processing and pass-through costs that add up to the moovFee."""
107
110
 
111
+ moov_fees: Annotated[Optional[List[MoovFee]], pydantic.Field(alias="moovFees")] = (
112
+ None
113
+ )
114
+ r"""Fees charged to accounts involved in the transfer."""
115
+
108
116
  group_id: Annotated[Optional[str], pydantic.Field(alias="groupID")] = None
109
117
 
110
118
  cancellations: Optional[List[Cancellation]] = None
@@ -0,0 +1,12 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from enum import Enum
5
+
6
+
7
+ class TransferParty(str, Enum):
8
+ r"""Indicates whether an account was the source or destination of a transfer."""
9
+
10
+ SOURCE = "source"
11
+ DESTINATION = "destination"
12
+ PARTNER = "partner"
@@ -9,6 +9,7 @@ from moovio_sdk.models.components import (
9
9
  cardacquiringdispute as components_cardacquiringdispute,
10
10
  cardacquiringrefund as components_cardacquiringrefund,
11
11
  facilitatorfee as components_facilitatorfee,
12
+ moovfee as components_moovfee,
12
13
  moovfeedetails as components_moovfeedetails,
13
14
  transferdestination as components_transferdestination,
14
15
  transferfailurereason as components_transferfailurereason,
@@ -71,6 +72,11 @@ class TransferData(BaseModel):
71
72
  ] = None
72
73
  r"""Processing and pass-through costs that add up to the moovFee."""
73
74
 
75
+ moov_fees: Annotated[
76
+ Optional[List[components_moovfee.MoovFee]], pydantic.Field(alias="moovFees")
77
+ ] = None
78
+ r"""Fees charged to accounts involved in the transfer."""
79
+
74
80
  group_id: Annotated[Optional[str], pydantic.Field(alias="groupID")] = None
75
81
 
76
82
  cancellations: Optional[List[components_cancellation.Cancellation]] = None
@@ -2,7 +2,7 @@
2
2
 
3
3
  from pydantic import ConfigDict, model_serializer
4
4
  from pydantic import BaseModel as PydanticBaseModel
5
- from typing import TYPE_CHECKING, Literal, Optional, TypeVar, Union, NewType
5
+ from typing import TYPE_CHECKING, Literal, Optional, TypeVar, Union
6
6
  from typing_extensions import TypeAliasType, TypeAlias
7
7
 
8
8
 
@@ -35,5 +35,5 @@ else:
35
35
  "OptionalNullable", Union[Optional[Nullable[T]], Unset], type_params=(T,)
36
36
  )
37
37
 
38
- UnrecognizedInt = NewType("UnrecognizedInt", int)
39
- UnrecognizedStr = NewType("UnrecognizedStr", str)
38
+ UnrecognizedInt: TypeAlias = int
39
+ UnrecognizedStr: TypeAlias = str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: moovio_sdk
3
- Version: 0.3.23
3
+ Version: 0.3.25
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -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=HgWpNBOZWAM29fgnqkDSErfjGcdJQMmn90nlUgvkl4Y,466
6
+ moovio_sdk/_version.py,sha256=RNp1m1Oh7iL3EiWqvZMXioRb2kOCsLZbryRTC2NxRYQ,466
7
7
  moovio_sdk/accounts.py,sha256=owJJuChHd-iucAiR4JWlaMYD1oKvjzCYSO6rckje6vs,107907
8
8
  moovio_sdk/adjustments.py,sha256=m7S8Vn0KB4bMaTQTX50sCPvNZr72kjA6DTLxeJ2U-fc,19272
9
9
  moovio_sdk/apple_pay.py,sha256=D5agY7yrZrZEtuadtY0_oQq3bSRpTy_bUG90T0iXDck,60723
@@ -26,7 +26,7 @@ moovio_sdk/industries.py,sha256=7VputoHEST4GXazczXDWEYsSkfWkFJaTSXAEDx267Vo,1024
26
26
  moovio_sdk/institutions.py,sha256=1CjxrmzYf0tAs2beUyYiVPO9w8jibwG-Ya9ifXifUG8,11238
27
27
  moovio_sdk/issuing_transactions.py,sha256=ftaJUPR8vGuNVOf3oWgecZG7DQSYRZiHZTtRfXMacgc,53212
28
28
  moovio_sdk/models/__init__.py,sha256=HRiFG5CV9y2HvWWQl_JQNbYTPme0UYR1Mhh13Qc-5jE,84
29
- moovio_sdk/models/components/__init__.py,sha256=kvWr8cv23UUDf9u5d4Ov9XJ85Ri7D4kZIIE8lWBts0M,51899
29
+ moovio_sdk/models/components/__init__.py,sha256=LwKfxWgyGH_2UWXb8k0dJGkuSdDitUBAA18rTsYP82A,52047
30
30
  moovio_sdk/models/components/account.py,sha256=QejMoPHYyHF-6TRrUVKYyfD_6Qbl7lFVOEaE8zlOgmI,4181
31
31
  moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
32
32
  moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
@@ -250,6 +250,7 @@ moovio_sdk/models/components/microdepositstatus.py,sha256=OSMp_6IBIo5frPWZOFiXlw
250
250
  moovio_sdk/models/components/minimumcommitment.py,sha256=KDiqCre5Ol2yhZARTCaV-rueQk549fG4QK8jR0gRjQg,1149
251
251
  moovio_sdk/models/components/mode.py,sha256=U7TBdxrtdKN2iA3PPva_gfiBXdg6tMUVpyNPA3HA_IA,256
252
252
  moovio_sdk/models/components/monthlyplatformfee.py,sha256=WRGXX_vic_E9GXslX67Suk5_vZNV1Rh-4qVEUjHJ_oY,997
253
+ moovio_sdk/models/components/moovfee.py,sha256=rtoNO9Ya_aP5tlQWzxh9cJwwFfX2HBbH4kLZo4sYeDE,1500
253
254
  moovio_sdk/models/components/moovfeedetails.py,sha256=GovSQFW4mExyx_jW5VY8nIK0ezSebPnguLoH2xgzO0o,1853
254
255
  moovio_sdk/models/components/moovwalletpaymentmethod.py,sha256=_FmIK5xllEX3B6YjYdpvQj61n5Src8ZRmsWcmUAxfcs,978
255
256
  moovio_sdk/models/components/mxauthorizationcode.py,sha256=Ul5g0X0RO6hIbDHfOwm-Q04q853RQ0DToeryeMPuG8k,1107
@@ -302,7 +303,7 @@ moovio_sdk/models/components/pushtocardpaymentmethod.py,sha256=gGNrMlhRS6Fyh3-L8
302
303
  moovio_sdk/models/components/qrcode.py,sha256=-LlCqpYrlTWC6enlRJABOYcSpb8gSfHuBCQcGoASaqs,462
303
304
  moovio_sdk/models/components/receiptkind.py,sha256=_Uqfk6tfVJVyMco8U1T18AUlHZPjFkdGYLn0lioQc_M,253
304
305
  moovio_sdk/models/components/receiptrequest.py,sha256=sUzZp39zJMzeLxkUX05cM40opXbN-tIuuuONrXdjyxo,2787
305
- moovio_sdk/models/components/receiptresponse.py,sha256=rqX9-5_iEjdHQTOpcnf6T-5x9o0atDppV05DLBL3yoM,3592
306
+ moovio_sdk/models/components/receiptresponse.py,sha256=8welskK6G6ssHPaAYa5N_OjXdm4lZ6m-oY19Lr25B5E,3636
306
307
  moovio_sdk/models/components/recur.py,sha256=hlkNmkTUaKqCHFP0oTIRIs2rBl6Ot_VkdEPO9eVRThQ,1568
307
308
  moovio_sdk/models/components/refundcarddetails.py,sha256=5Hp9cV3M_1neDSEX1SiMAm5ER2YvBozm8vNquHHA7fA,1423
308
309
  moovio_sdk/models/components/refundcardstatus.py,sha256=sTTkfBnHNjn0YnUr5I39TrbKZqFBuwrPEp_lkQE68KM,297
@@ -335,7 +336,7 @@ moovio_sdk/models/components/sentreceipt.py,sha256=6XQTYe_ZrIkmLWek13CzYQhQk_lUi
335
336
  moovio_sdk/models/components/settings.py,sha256=C-Rx1wGKnnx6uEaS71pKFlKwxnacTw7Mc1jTnkoMyfc,1165
336
337
  moovio_sdk/models/components/sourcedestinationoptions.py,sha256=ZfXiQ4t7JOAveVtnSanLaGPmx4_qu83qUCAffuWvBao,621
337
338
  moovio_sdk/models/components/sweep.py,sha256=Jc00KeJBHYdnUkEkiAfRLI_D-ufTb4naAYIWb3dgzZM,3062
338
- moovio_sdk/models/components/sweepconfig.py,sha256=zeYN963z0uEOpbteBDRvCAWGaq2LT9vq1SCRHGGPCu0,3854
339
+ moovio_sdk/models/components/sweepconfig.py,sha256=B_fnfFFf4F6fcb5I08ahVt2t81rGAC37kUptq6Xx3NQ,3708
339
340
  moovio_sdk/models/components/sweepconfigpaymentmethod.py,sha256=HP4ptQtccU2Wl1u4gRw-MepzKVgkYLkAJfia1JC5efE,1146
340
341
  moovio_sdk/models/components/sweepconfigstatus.py,sha256=8tmbGIJLrSwCl_8zEUZpffJE-R_WDBZZ7d-cR5K1JCY,218
341
342
  moovio_sdk/models/components/sweepstatus.py,sha256=YA564vw2Ssav2ApmX759gglEvccESDjaT16St-DExRI,316
@@ -352,11 +353,12 @@ moovio_sdk/models/components/termsofservicetoken.py,sha256=VF0w2YMAJiqyz9INBhb_M
352
353
  moovio_sdk/models/components/termsofservicetokenupdate.py,sha256=Uc1zc1ItdU9D-z8aOYl4S6tkXi6lMzEYiz_xXQzIKBM,559
353
354
  moovio_sdk/models/components/tokentype.py,sha256=vPgHYR7el4ertQG3I5a8OTHknyBv3Fww-JKbWzApvsw,272
354
355
  moovio_sdk/models/components/transactionsource.py,sha256=9zZa2lvqld19YeO0u0Vjqq2HfKRDkqGD9zNL6jNmBoA,484
355
- moovio_sdk/models/components/transfer.py,sha256=_nn8Bl0VX9mreGNZ1ZPJ_jFGUNB3znAnXN7KuGu_gfc,5383
356
+ moovio_sdk/models/components/transfer.py,sha256=gtfep0rCan_3qv-ZMrnVWxXLVqiVyx1Xx8Cn-TA3fRk,5713
356
357
  moovio_sdk/models/components/transferaccount.py,sha256=-gIji284RTf4FI8BUomUHEMVm1h6cae9d4a7tGWxL6c,505
357
358
  moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30sid-1Inq4L0VoCaxvUkIhc,3389
358
359
  moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
359
360
  moovio_sdk/models/components/transferoptions.py,sha256=7BEWfTTzxMR-5rcrwLDfMVf7IQ1XSQxU_WL7mYtHTNs,789
361
+ moovio_sdk/models/components/transferparty.py,sha256=lYuxW7oJSlCvIdcExpvuhH2Xa-5bL-mfGzYceputhXM,328
360
362
  moovio_sdk/models/components/transfersource.py,sha256=ZpdfQGsPS8k_MPaYMIi-6AxvdZs1wbJ-xi7UeA43ST0,3662
361
363
  moovio_sdk/models/components/transferstatus.py,sha256=rw0RiqIZ2N0fhu3f7WKeJ919EBtFvYUQ0h4YbRx9XD4,371
362
364
  moovio_sdk/models/components/transferwaitfor.py,sha256=rdjiNuV5J78oqxQ6v954xNnOwcyhmh9Mgo7YCrBUoXA,202
@@ -413,7 +415,7 @@ moovio_sdk/models/errors/reversalvalidationerror.py,sha256=s5rOORHo7UIWb67hOsm3Y
413
415
  moovio_sdk/models/errors/revoketokenrequesterror.py,sha256=bkU4hh6nzuCr6pF9CvcW9tP9BBufWpQnaVe8W3ZzJy8,599
414
416
  moovio_sdk/models/errors/schedulevalidationerror.py,sha256=ca8VYtFOcN8Su1cOYclEIXlDQWGZVbvWwRcUEPU6mQA,651
415
417
  moovio_sdk/models/errors/terminalapplicationerror.py,sha256=mCl6UPQ2RGCeQ-Mqd0WfSZRC4xO0-36ZvqIt0pi1dIc,975
416
- moovio_sdk/models/errors/transfer.py,sha256=osisSlsUvm4wklUSAS0qbXN0GA_oXazpZMB6pKBRILE,4074
418
+ moovio_sdk/models/errors/transfer.py,sha256=ewZP75WS_9_hDjoyZP-Y6TdQ6m6T_WiT9XyyGshelkY,4296
417
419
  moovio_sdk/models/errors/transferoptionsvalidationerror.py,sha256=X9NCkEUJfoonyhY82EwKiC-fObGZGiZn-tWe7DfxdWg,665
418
420
  moovio_sdk/models/errors/transfervalidationerror.py,sha256=Puvl57i9_mK-AaZExReYAsxl156p3i4K-ycuiFygPgA,1471
419
421
  moovio_sdk/models/errors/updateaccount.py,sha256=tIAS1AIFxhfhyvxCPRF_9QF3sm576QORtIUYJ4Yvmac,790
@@ -571,7 +573,7 @@ moovio_sdk/terminal_applications.py,sha256=MJVg8ikMsL8Pb90-7Tgmv-qKivpuom7nH_N2w
571
573
  moovio_sdk/terminal_configurations.py,sha256=6gqd2Syq1cHSFarTLRFwpzPfm06mK90T53wI594BhGw,10205
572
574
  moovio_sdk/transfers.py,sha256=rN9Qcma4vvMLNO4FhBlIvcZoB5mlpO6KmYEDpkORO9c,132982
573
575
  moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
574
- moovio_sdk/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
576
+ moovio_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
575
577
  moovio_sdk/underwriting.py,sha256=Q3bOkxgz3syy6YgdTKK_DTAqK6lV_uawgVZZX3iPuqc,24353
576
578
  moovio_sdk/utils/__init__.py,sha256=A7_RAc6uLoQYKGunLRFg8cTYYvM4WgoM7Da50PYZOoU,2456
577
579
  moovio_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
@@ -590,6 +592,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
590
592
  moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
591
593
  moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
592
594
  moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
593
- moovio_sdk-0.3.23.dist-info/METADATA,sha256=edNW_RsU_InUqDolMG9Udrs3W-R_kJ6BHvj9uDpg0Eo,104253
594
- moovio_sdk-0.3.23.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
595
- moovio_sdk-0.3.23.dist-info/RECORD,,
595
+ moovio_sdk-0.3.25.dist-info/METADATA,sha256=APhoi2kUKoW4uAByr_eBd4kCfqWwbKZdcGf0obyMbtI,104253
596
+ moovio_sdk-0.3.25.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
597
+ moovio_sdk-0.3.25.dist-info/RECORD,,