moovio_sdk 0.3.22__py3-none-any.whl → 0.3.24__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 +3 -3
- moovio_sdk/models/components/__init__.py +8 -3
- moovio_sdk/models/components/createdtransfer.py +129 -0
- moovio_sdk/models/components/moovfee.py +38 -0
- moovio_sdk/models/components/receiptresponse.py +7 -5
- moovio_sdk/models/components/transfer.py +8 -0
- moovio_sdk/models/components/transferparty.py +12 -0
- moovio_sdk/models/errors/transfer.py +6 -0
- moovio_sdk/models/operations/createtransfer.py +3 -3
- moovio_sdk/transfers.py +2 -2
- {moovio_sdk-0.3.22.dist-info → moovio_sdk-0.3.24.dist-info}/METADATA +1 -1
- {moovio_sdk-0.3.22.dist-info → moovio_sdk-0.3.24.dist-info}/RECORD +13 -11
- moovio_sdk/models/components/transferresponse.py +0 -15
- {moovio_sdk-0.3.22.dist-info → moovio_sdk-0.3.24.dist-info}/WHEEL +0 -0
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.
|
6
|
+
__version__: str = "0.3.24"
|
7
7
|
__openapi_doc_version__: str = "latest"
|
8
|
-
__gen_version__: str = "2.
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.3.
|
8
|
+
__gen_version__: str = "2.568.2"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.24 2.568.2 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -209,6 +209,7 @@ from .createbusinesserror import (
|
|
209
209
|
CreateBusinessErrorTypedDict,
|
210
210
|
)
|
211
211
|
from .createbusinessprofile import CreateBusinessProfile, CreateBusinessProfileTypedDict
|
212
|
+
from .createdtransfer import CreatedTransfer, CreatedTransferTypedDict
|
212
213
|
from .createevidencefilemultipart import (
|
213
214
|
CreateEvidenceFileMultiPart,
|
214
215
|
CreateEvidenceFileMultiPartTypedDict,
|
@@ -421,6 +422,7 @@ from .microdepositstatus import MicroDepositStatus
|
|
421
422
|
from .minimumcommitment import MinimumCommitment, MinimumCommitmentTypedDict
|
422
423
|
from .mode import Mode
|
423
424
|
from .monthlyplatformfee import MonthlyPlatformFee, MonthlyPlatformFeeTypedDict
|
425
|
+
from .moovfee import MoovFee, MoovFeeTypedDict
|
424
426
|
from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
|
425
427
|
from .moovwalletpaymentmethod import (
|
426
428
|
MoovWalletPaymentMethod,
|
@@ -650,7 +652,7 @@ from .transferaccount import TransferAccount, TransferAccountTypedDict
|
|
650
652
|
from .transferdestination import TransferDestination, TransferDestinationTypedDict
|
651
653
|
from .transferfailurereason import TransferFailureReason
|
652
654
|
from .transferoptions import TransferOptions, TransferOptionsTypedDict
|
653
|
-
from .
|
655
|
+
from .transferparty import TransferParty
|
654
656
|
from .transfersource import TransferSource, TransferSourceTypedDict
|
655
657
|
from .transferstatus import TransferStatus
|
656
658
|
from .transferwaitfor import TransferWaitFor
|
@@ -984,6 +986,8 @@ __all__ = [
|
|
984
986
|
"CreateTransferSourceCardTypedDict",
|
985
987
|
"CreateTransferSourceTypedDict",
|
986
988
|
"CreateTransferTypedDict",
|
989
|
+
"CreatedTransfer",
|
990
|
+
"CreatedTransferTypedDict",
|
987
991
|
"CustomerSupport",
|
988
992
|
"CustomerSupportError",
|
989
993
|
"CustomerSupportErrorTypedDict",
|
@@ -1158,8 +1162,10 @@ __all__ = [
|
|
1158
1162
|
"Mode",
|
1159
1163
|
"MonthlyPlatformFee",
|
1160
1164
|
"MonthlyPlatformFeeTypedDict",
|
1165
|
+
"MoovFee",
|
1161
1166
|
"MoovFeeDetails",
|
1162
1167
|
"MoovFeeDetailsTypedDict",
|
1168
|
+
"MoovFeeTypedDict",
|
1163
1169
|
"MoovWalletPaymentMethod",
|
1164
1170
|
"MoovWalletPaymentMethodPaymentMethodType",
|
1165
1171
|
"MoovWalletPaymentMethodTypedDict",
|
@@ -1378,8 +1384,7 @@ __all__ = [
|
|
1378
1384
|
"TransferFailureReason",
|
1379
1385
|
"TransferOptions",
|
1380
1386
|
"TransferOptionsTypedDict",
|
1381
|
-
"
|
1382
|
-
"TransferResponseTypedDict",
|
1387
|
+
"TransferParty",
|
1383
1388
|
"TransferSource",
|
1384
1389
|
"TransferSourceTypedDict",
|
1385
1390
|
"TransferStatus",
|
@@ -0,0 +1,129 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .amount import Amount, AmountTypedDict
|
5
|
+
from .cancellation import Cancellation, CancellationTypedDict
|
6
|
+
from .cardacquiringdispute import CardAcquiringDispute, CardAcquiringDisputeTypedDict
|
7
|
+
from .cardacquiringrefund import CardAcquiringRefund, CardAcquiringRefundTypedDict
|
8
|
+
from .facilitatorfee import FacilitatorFee, FacilitatorFeeTypedDict
|
9
|
+
from .moovfeedetails import MoovFeeDetails, MoovFeeDetailsTypedDict
|
10
|
+
from .transferdestination import TransferDestination, TransferDestinationTypedDict
|
11
|
+
from .transferfailurereason import TransferFailureReason
|
12
|
+
from .transfersource import TransferSource, TransferSourceTypedDict
|
13
|
+
from .transferstatus import TransferStatus
|
14
|
+
from datetime import datetime
|
15
|
+
from moovio_sdk.types import BaseModel
|
16
|
+
import pydantic
|
17
|
+
from typing import Dict, List, Optional
|
18
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
19
|
+
|
20
|
+
|
21
|
+
class CreatedTransferTypedDict(TypedDict):
|
22
|
+
transfer_id: str
|
23
|
+
created_on: datetime
|
24
|
+
source: NotRequired[TransferSourceTypedDict]
|
25
|
+
destination: NotRequired[TransferDestinationTypedDict]
|
26
|
+
completed_on: NotRequired[datetime]
|
27
|
+
status: NotRequired[TransferStatus]
|
28
|
+
r"""Status of a transfer."""
|
29
|
+
failure_reason: NotRequired[TransferFailureReason]
|
30
|
+
r"""Reason for a transfer's failure."""
|
31
|
+
amount: NotRequired[AmountTypedDict]
|
32
|
+
description: NotRequired[str]
|
33
|
+
r"""An optional description of the transfer that is used on receipts and for your own internal use."""
|
34
|
+
metadata: NotRequired[Dict[str, str]]
|
35
|
+
r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
|
36
|
+
facilitator_fee: NotRequired[FacilitatorFeeTypedDict]
|
37
|
+
r"""Total or markup fee."""
|
38
|
+
moov_fee: NotRequired[int]
|
39
|
+
r"""Fees charged to your platform account for transfers."""
|
40
|
+
moov_fee_decimal: NotRequired[str]
|
41
|
+
r"""Same as `moovFee`, but a decimal-formatted numerical string that represents up to 9 decimal place precision."""
|
42
|
+
moov_fee_details: NotRequired[MoovFeeDetailsTypedDict]
|
43
|
+
r"""Processing and pass-through costs that add up to the moovFee."""
|
44
|
+
group_id: NotRequired[str]
|
45
|
+
cancellations: NotRequired[List[CancellationTypedDict]]
|
46
|
+
refunded_amount: NotRequired[AmountTypedDict]
|
47
|
+
refunds: NotRequired[List[CardAcquiringRefundTypedDict]]
|
48
|
+
disputed_amount: NotRequired[AmountTypedDict]
|
49
|
+
disputes: NotRequired[List[CardAcquiringDisputeTypedDict]]
|
50
|
+
sweep_id: NotRequired[str]
|
51
|
+
schedule_id: NotRequired[str]
|
52
|
+
occurrence_id: NotRequired[str]
|
53
|
+
sales_tax_amount: NotRequired[AmountTypedDict]
|
54
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
55
|
+
|
56
|
+
|
57
|
+
class CreatedTransfer(BaseModel):
|
58
|
+
transfer_id: Annotated[str, pydantic.Field(alias="transferID")]
|
59
|
+
|
60
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
61
|
+
|
62
|
+
source: Optional[TransferSource] = None
|
63
|
+
|
64
|
+
destination: Optional[TransferDestination] = None
|
65
|
+
|
66
|
+
completed_on: Annotated[Optional[datetime], pydantic.Field(alias="completedOn")] = (
|
67
|
+
None
|
68
|
+
)
|
69
|
+
|
70
|
+
status: Optional[TransferStatus] = None
|
71
|
+
r"""Status of a transfer."""
|
72
|
+
|
73
|
+
failure_reason: Annotated[
|
74
|
+
Optional[TransferFailureReason], pydantic.Field(alias="failureReason")
|
75
|
+
] = None
|
76
|
+
r"""Reason for a transfer's failure."""
|
77
|
+
|
78
|
+
amount: Optional[Amount] = None
|
79
|
+
|
80
|
+
description: Optional[str] = None
|
81
|
+
r"""An optional description of the transfer that is used on receipts and for your own internal use."""
|
82
|
+
|
83
|
+
metadata: Optional[Dict[str, str]] = None
|
84
|
+
r"""Free-form key-value pair list. Useful for storing information that is not captured elsewhere."""
|
85
|
+
|
86
|
+
facilitator_fee: Annotated[
|
87
|
+
Optional[FacilitatorFee], pydantic.Field(alias="facilitatorFee")
|
88
|
+
] = None
|
89
|
+
r"""Total or markup fee."""
|
90
|
+
|
91
|
+
moov_fee: Annotated[Optional[int], pydantic.Field(alias="moovFee")] = None
|
92
|
+
r"""Fees charged to your platform account for transfers."""
|
93
|
+
|
94
|
+
moov_fee_decimal: Annotated[
|
95
|
+
Optional[str], pydantic.Field(alias="moovFeeDecimal")
|
96
|
+
] = None
|
97
|
+
r"""Same as `moovFee`, but a decimal-formatted numerical string that represents up to 9 decimal place precision."""
|
98
|
+
|
99
|
+
moov_fee_details: Annotated[
|
100
|
+
Optional[MoovFeeDetails], pydantic.Field(alias="moovFeeDetails")
|
101
|
+
] = None
|
102
|
+
r"""Processing and pass-through costs that add up to the moovFee."""
|
103
|
+
|
104
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupID")] = None
|
105
|
+
|
106
|
+
cancellations: Optional[List[Cancellation]] = None
|
107
|
+
|
108
|
+
refunded_amount: Annotated[
|
109
|
+
Optional[Amount], pydantic.Field(alias="refundedAmount")
|
110
|
+
] = None
|
111
|
+
|
112
|
+
refunds: Optional[List[CardAcquiringRefund]] = None
|
113
|
+
|
114
|
+
disputed_amount: Annotated[
|
115
|
+
Optional[Amount], pydantic.Field(alias="disputedAmount")
|
116
|
+
] = None
|
117
|
+
|
118
|
+
disputes: Optional[List[CardAcquiringDispute]] = None
|
119
|
+
|
120
|
+
sweep_id: Annotated[Optional[str], pydantic.Field(alias="sweepID")] = None
|
121
|
+
|
122
|
+
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
123
|
+
|
124
|
+
occurrence_id: Annotated[Optional[str], pydantic.Field(alias="occurrenceID")] = None
|
125
|
+
|
126
|
+
sales_tax_amount: Annotated[
|
127
|
+
Optional[Amount], pydantic.Field(alias="salesTaxAmount")
|
128
|
+
] = None
|
129
|
+
r"""Optional sales tax amount. `transfer.amount.value` should be inclusive of any sales tax and represents the total amount charged."""
|
@@ -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."""
|
@@ -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
|
@@ -3,9 +3,9 @@
|
|
3
3
|
from __future__ import annotations
|
4
4
|
from moovio_sdk.models.components import (
|
5
5
|
asynctransfer as components_asynctransfer,
|
6
|
+
createdtransfer as components_createdtransfer,
|
6
7
|
createtransfer as components_createtransfer,
|
7
8
|
transfer as components_transfer,
|
8
|
-
transferresponse as components_transferresponse,
|
9
9
|
transferwaitfor as components_transferwaitfor,
|
10
10
|
)
|
11
11
|
from moovio_sdk.types import BaseModel
|
@@ -98,8 +98,8 @@ CreateTransferResponseResultTypedDict = TypeAliasType(
|
|
98
98
|
"CreateTransferResponseResultTypedDict",
|
99
99
|
Union[
|
100
100
|
components_asynctransfer.AsyncTransferTypedDict,
|
101
|
+
components_createdtransfer.CreatedTransferTypedDict,
|
101
102
|
components_transfer.TransferTypedDict,
|
102
|
-
components_transferresponse.TransferResponseTypedDict,
|
103
103
|
],
|
104
104
|
)
|
105
105
|
|
@@ -108,8 +108,8 @@ CreateTransferResponseResult = TypeAliasType(
|
|
108
108
|
"CreateTransferResponseResult",
|
109
109
|
Union[
|
110
110
|
components_asynctransfer.AsyncTransfer,
|
111
|
+
components_createdtransfer.CreatedTransfer,
|
111
112
|
components_transfer.Transfer,
|
112
|
-
components_transferresponse.TransferResponse,
|
113
113
|
],
|
114
114
|
)
|
115
115
|
|
moovio_sdk/transfers.py
CHANGED
@@ -150,7 +150,7 @@ class Transfers(BaseSDK):
|
|
150
150
|
response_data: Any = None
|
151
151
|
if utils.match_response(http_res, "200", "application/json"):
|
152
152
|
return operations.CreateTransferResponse(
|
153
|
-
result=utils.unmarshal_json(http_res.text, components.
|
153
|
+
result=utils.unmarshal_json(http_res.text, components.CreatedTransfer),
|
154
154
|
headers=utils.get_response_headers(http_res.headers),
|
155
155
|
)
|
156
156
|
if utils.match_response(http_res, "201", "application/json"):
|
@@ -343,7 +343,7 @@ class Transfers(BaseSDK):
|
|
343
343
|
response_data: Any = None
|
344
344
|
if utils.match_response(http_res, "200", "application/json"):
|
345
345
|
return operations.CreateTransferResponse(
|
346
|
-
result=utils.unmarshal_json(http_res.text, components.
|
346
|
+
result=utils.unmarshal_json(http_res.text, components.CreatedTransfer),
|
347
347
|
headers=utils.get_response_headers(http_res.headers),
|
348
348
|
)
|
349
349
|
if utils.match_response(http_res, "201", "application/json"):
|
@@ -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=
|
6
|
+
moovio_sdk/_version.py,sha256=_zeow2pl5hf-w8iUdeuwZVTjIx6I_D_wh1pY90n_J-o,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=
|
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
|
@@ -139,6 +139,7 @@ moovio_sdk/models/components/createauthorizedusererror.py,sha256=esLjn87FfadlgHb
|
|
139
139
|
moovio_sdk/models/components/createauthorizeduserupdate.py,sha256=efRwyAfTzZVp1GNdUIagkpzr3rN17SSJ4-E7Y3596ys,945
|
140
140
|
moovio_sdk/models/components/createbusinesserror.py,sha256=qnDwlpaC2y1c6cD9XmRvsU65VAnFEuvvW2qimrCaZU4,2489
|
141
141
|
moovio_sdk/models/components/createbusinessprofile.py,sha256=OGo1xgFTf5C-TNEsdSnVEeLaEfaGVWYrdC64MXIqShc,2800
|
142
|
+
moovio_sdk/models/components/createdtransfer.py,sha256=oh0Rs8w6f5_x7HDs1uGi0KfPw8JWKqeOgMbVqcXiIks,5447
|
142
143
|
moovio_sdk/models/components/createevidencefilemultipart.py,sha256=GYb0qHNt0TStHTs7jrEoPxxXPuSTrV473-zNe0SoXsU,1895
|
143
144
|
moovio_sdk/models/components/createevidencetext.py,sha256=IxJdhf131DDpBgHdD2PramkohfKR5kQ5uXKKJ5TB5GQ,608
|
144
145
|
moovio_sdk/models/components/createfeeplanagreement.py,sha256=FK4oIE4nZl2JbKRnzXL_3nlbVxzY9fR7_Cy9Nrg9J1o,386
|
@@ -249,6 +250,7 @@ moovio_sdk/models/components/microdepositstatus.py,sha256=OSMp_6IBIo5frPWZOFiXlw
|
|
249
250
|
moovio_sdk/models/components/minimumcommitment.py,sha256=KDiqCre5Ol2yhZARTCaV-rueQk549fG4QK8jR0gRjQg,1149
|
250
251
|
moovio_sdk/models/components/mode.py,sha256=U7TBdxrtdKN2iA3PPva_gfiBXdg6tMUVpyNPA3HA_IA,256
|
251
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
|
252
254
|
moovio_sdk/models/components/moovfeedetails.py,sha256=GovSQFW4mExyx_jW5VY8nIK0ezSebPnguLoH2xgzO0o,1853
|
253
255
|
moovio_sdk/models/components/moovwalletpaymentmethod.py,sha256=_FmIK5xllEX3B6YjYdpvQj61n5Src8ZRmsWcmUAxfcs,978
|
254
256
|
moovio_sdk/models/components/mxauthorizationcode.py,sha256=Ul5g0X0RO6hIbDHfOwm-Q04q853RQ0DToeryeMPuG8k,1107
|
@@ -301,7 +303,7 @@ moovio_sdk/models/components/pushtocardpaymentmethod.py,sha256=gGNrMlhRS6Fyh3-L8
|
|
301
303
|
moovio_sdk/models/components/qrcode.py,sha256=-LlCqpYrlTWC6enlRJABOYcSpb8gSfHuBCQcGoASaqs,462
|
302
304
|
moovio_sdk/models/components/receiptkind.py,sha256=_Uqfk6tfVJVyMco8U1T18AUlHZPjFkdGYLn0lioQc_M,253
|
303
305
|
moovio_sdk/models/components/receiptrequest.py,sha256=sUzZp39zJMzeLxkUX05cM40opXbN-tIuuuONrXdjyxo,2787
|
304
|
-
moovio_sdk/models/components/receiptresponse.py,sha256=
|
306
|
+
moovio_sdk/models/components/receiptresponse.py,sha256=8welskK6G6ssHPaAYa5N_OjXdm4lZ6m-oY19Lr25B5E,3636
|
305
307
|
moovio_sdk/models/components/recur.py,sha256=hlkNmkTUaKqCHFP0oTIRIs2rBl6Ot_VkdEPO9eVRThQ,1568
|
306
308
|
moovio_sdk/models/components/refundcarddetails.py,sha256=5Hp9cV3M_1neDSEX1SiMAm5ER2YvBozm8vNquHHA7fA,1423
|
307
309
|
moovio_sdk/models/components/refundcardstatus.py,sha256=sTTkfBnHNjn0YnUr5I39TrbKZqFBuwrPEp_lkQE68KM,297
|
@@ -351,12 +353,12 @@ moovio_sdk/models/components/termsofservicetoken.py,sha256=VF0w2YMAJiqyz9INBhb_M
|
|
351
353
|
moovio_sdk/models/components/termsofservicetokenupdate.py,sha256=Uc1zc1ItdU9D-z8aOYl4S6tkXi6lMzEYiz_xXQzIKBM,559
|
352
354
|
moovio_sdk/models/components/tokentype.py,sha256=vPgHYR7el4ertQG3I5a8OTHknyBv3Fww-JKbWzApvsw,272
|
353
355
|
moovio_sdk/models/components/transactionsource.py,sha256=9zZa2lvqld19YeO0u0Vjqq2HfKRDkqGD9zNL6jNmBoA,484
|
354
|
-
moovio_sdk/models/components/transfer.py,sha256=
|
356
|
+
moovio_sdk/models/components/transfer.py,sha256=gtfep0rCan_3qv-ZMrnVWxXLVqiVyx1Xx8Cn-TA3fRk,5713
|
355
357
|
moovio_sdk/models/components/transferaccount.py,sha256=-gIji284RTf4FI8BUomUHEMVm1h6cae9d4a7tGWxL6c,505
|
356
358
|
moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30sid-1Inq4L0VoCaxvUkIhc,3389
|
357
359
|
moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
|
358
360
|
moovio_sdk/models/components/transferoptions.py,sha256=7BEWfTTzxMR-5rcrwLDfMVf7IQ1XSQxU_WL7mYtHTNs,789
|
359
|
-
moovio_sdk/models/components/
|
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=
|
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
|
@@ -443,7 +445,7 @@ moovio_sdk/models/operations/createreversal.py,sha256=nQIIp68Itf7mtVTpeIDrDUZWsK
|
|
443
445
|
moovio_sdk/models/operations/createschedule.py,sha256=vxJYRV6gAF6OuOCwZ8soVGHPNOaFNid_uofiphsYWsU,2751
|
444
446
|
moovio_sdk/models/operations/createsweepconfig.py,sha256=mC-dbVIizvTJjYTygLrFOO-C9Uv8nMDlGrDfVboN6e8,2765
|
445
447
|
moovio_sdk/models/operations/createterminalapplication.py,sha256=n7mnj-ixVXSV8El7dVhwueNm4Pd8xTiTefI1oayrIGE,2188
|
446
|
-
moovio_sdk/models/operations/createtransfer.py,sha256=
|
448
|
+
moovio_sdk/models/operations/createtransfer.py,sha256=VgLLC8Q3t183UdUz7_tLzk0pJBypEiZEa5mLQfJcOtY,4648
|
447
449
|
moovio_sdk/models/operations/createtransferoptions.py,sha256=DCrQtu3VPSdEOSt8gFnZHcCtRIN-c6NHBohifMolCzg,2139
|
448
450
|
moovio_sdk/models/operations/deletedisputeevidencefile.py,sha256=NHUuvakVuXiCwqI_gDDgjhFAAfKypztOzasr0S78KQE,2648
|
449
451
|
moovio_sdk/models/operations/deleterepresentative.py,sha256=H3bKQTMMsB9_wCqxfZqwgq-NljV5W-lGWzXIHEnxxv0,2582
|
@@ -569,7 +571,7 @@ moovio_sdk/sdkconfiguration.py,sha256=7NP1kNUcms-14o77cdoPmV7ZGWTtCLqqMTWN6pdwm-
|
|
569
571
|
moovio_sdk/sweeps.py,sha256=6QLuQRTQRRQ3qRyG9ZBPz1fkK3tnZeRAg_0YK6Scdts,66711
|
570
572
|
moovio_sdk/terminal_applications.py,sha256=MJVg8ikMsL8Pb90-7Tgmv-qKivpuom7nH_N2wy8L9H0,42822
|
571
573
|
moovio_sdk/terminal_configurations.py,sha256=6gqd2Syq1cHSFarTLRFwpzPfm06mK90T53wI594BhGw,10205
|
572
|
-
moovio_sdk/transfers.py,sha256=
|
574
|
+
moovio_sdk/transfers.py,sha256=rN9Qcma4vvMLNO4FhBlIvcZoB5mlpO6KmYEDpkORO9c,132982
|
573
575
|
moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
574
576
|
moovio_sdk/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
|
575
577
|
moovio_sdk/underwriting.py,sha256=Q3bOkxgz3syy6YgdTKK_DTAqK6lV_uawgVZZX3iPuqc,24353
|
@@ -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.
|
594
|
-
moovio_sdk-0.3.
|
595
|
-
moovio_sdk-0.3.
|
595
|
+
moovio_sdk-0.3.24.dist-info/METADATA,sha256=GEH0lCd-r7IFPwEwk6hdBLPZgYEj0D-wc_2KD_Wewho,104253
|
596
|
+
moovio_sdk-0.3.24.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
597
|
+
moovio_sdk-0.3.24.dist-info/RECORD,,
|
@@ -1,15 +0,0 @@
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
from .asynctransfer import AsyncTransfer, AsyncTransferTypedDict
|
5
|
-
from .transfer import Transfer, TransferTypedDict
|
6
|
-
from typing import Union
|
7
|
-
from typing_extensions import TypeAliasType
|
8
|
-
|
9
|
-
|
10
|
-
TransferResponseTypedDict = TypeAliasType(
|
11
|
-
"TransferResponseTypedDict", Union[AsyncTransferTypedDict, TransferTypedDict]
|
12
|
-
)
|
13
|
-
|
14
|
-
|
15
|
-
TransferResponse = TypeAliasType("TransferResponse", Union[AsyncTransfer, Transfer])
|
File without changes
|