moovio_sdk 0.15.0__py3-none-any.whl → 0.15.2__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 +3 -3
- moovio_sdk/models/errors/__init__.py +48 -10
- moovio_sdk/models/errors/{createwalleterror.py → createwalletvalidationerror.py} +4 -4
- moovio_sdk/models/errors/listtransfersvalidationerror.py +55 -0
- moovio_sdk/models/errors/listwalletsvalidationerror.py +35 -0
- moovio_sdk/models/errors/listwallettransactionsvalidationerror.py +67 -0
- moovio_sdk/models/errors/patchtransfervalidationerror.py +31 -0
- moovio_sdk/models/errors/{patchwalleterror.py → patchwalletvalidationerror.py} +4 -4
- moovio_sdk/models/errors/transfervalidationerror.py +5 -4
- moovio_sdk/transfers.py +48 -4
- moovio_sdk/wallet_transactions.py +15 -3
- moovio_sdk/wallets.py +22 -10
- {moovio_sdk-0.15.0.dist-info → moovio_sdk-0.15.2.dist-info}/METADATA +8 -4
- {moovio_sdk-0.15.0.dist-info → moovio_sdk-0.15.2.dist-info}/RECORD +15 -11
- {moovio_sdk-0.15.0.dist-info → moovio_sdk-0.15.2.dist-info}/WHEEL +1 -1
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.15.
|
|
6
|
+
__version__: str = "0.15.2"
|
|
7
7
|
__openapi_doc_version__: str = "latest"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.15.
|
|
8
|
+
__gen_version__: str = "2.709.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.15.2 2.709.0 latest moovio_sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -31,7 +31,10 @@ if TYPE_CHECKING:
|
|
|
31
31
|
CreateSweepConfigErrorData,
|
|
32
32
|
)
|
|
33
33
|
from .createticketerror import CreateTicketError, CreateTicketErrorData
|
|
34
|
-
from .
|
|
34
|
+
from .createwalletvalidationerror import (
|
|
35
|
+
CreateWalletValidationError,
|
|
36
|
+
CreateWalletValidationErrorData,
|
|
37
|
+
)
|
|
35
38
|
from .feeplanagreementerror import FeePlanAgreementError, FeePlanAgreementErrorData
|
|
36
39
|
from .fileuploadvalidationerror import (
|
|
37
40
|
File,
|
|
@@ -43,6 +46,18 @@ if TYPE_CHECKING:
|
|
|
43
46
|
from .genericerror import GenericError, GenericErrorData
|
|
44
47
|
from .linkapplepayerror import LinkApplePayError, LinkApplePayErrorData
|
|
45
48
|
from .linkcarderror import LinkCardError, LinkCardErrorData
|
|
49
|
+
from .listtransfersvalidationerror import (
|
|
50
|
+
ListTransfersValidationError,
|
|
51
|
+
ListTransfersValidationErrorData,
|
|
52
|
+
)
|
|
53
|
+
from .listwalletsvalidationerror import (
|
|
54
|
+
ListWalletsValidationError,
|
|
55
|
+
ListWalletsValidationErrorData,
|
|
56
|
+
)
|
|
57
|
+
from .listwallettransactionsvalidationerror import (
|
|
58
|
+
ListWalletTransactionsValidationError,
|
|
59
|
+
ListWalletTransactionsValidationErrorData,
|
|
60
|
+
)
|
|
46
61
|
from .microdepositvalidationerror import (
|
|
47
62
|
MicroDepositValidationError,
|
|
48
63
|
MicroDepositValidationErrorData,
|
|
@@ -51,7 +66,14 @@ if TYPE_CHECKING:
|
|
|
51
66
|
from .onboardinginviteerror import OnboardingInviteError, OnboardingInviteErrorData
|
|
52
67
|
from .patchaccounterror import PatchAccountError, PatchAccountErrorData
|
|
53
68
|
from .patchsweepconfigerror import PatchSweepConfigError, PatchSweepConfigErrorData
|
|
54
|
-
from .
|
|
69
|
+
from .patchtransfervalidationerror import (
|
|
70
|
+
PatchTransferValidationError,
|
|
71
|
+
PatchTransferValidationErrorData,
|
|
72
|
+
)
|
|
73
|
+
from .patchwalletvalidationerror import (
|
|
74
|
+
PatchWalletValidationError,
|
|
75
|
+
PatchWalletValidationErrorData,
|
|
76
|
+
)
|
|
55
77
|
from .refundvalidationerror import RefundValidationError, RefundValidationErrorData
|
|
56
78
|
from .representativevalidationerror import (
|
|
57
79
|
Error,
|
|
@@ -128,8 +150,8 @@ __all__ = [
|
|
|
128
150
|
"CreateSweepConfigErrorData",
|
|
129
151
|
"CreateTicketError",
|
|
130
152
|
"CreateTicketErrorData",
|
|
131
|
-
"
|
|
132
|
-
"
|
|
153
|
+
"CreateWalletValidationError",
|
|
154
|
+
"CreateWalletValidationErrorData",
|
|
133
155
|
"Error",
|
|
134
156
|
"ErrorTypedDict",
|
|
135
157
|
"FeePlanAgreementError",
|
|
@@ -146,6 +168,12 @@ __all__ = [
|
|
|
146
168
|
"LinkApplePayErrorData",
|
|
147
169
|
"LinkCardError",
|
|
148
170
|
"LinkCardErrorData",
|
|
171
|
+
"ListTransfersValidationError",
|
|
172
|
+
"ListTransfersValidationErrorData",
|
|
173
|
+
"ListWalletTransactionsValidationError",
|
|
174
|
+
"ListWalletTransactionsValidationErrorData",
|
|
175
|
+
"ListWalletsValidationError",
|
|
176
|
+
"ListWalletsValidationErrorData",
|
|
149
177
|
"MicroDepositValidationError",
|
|
150
178
|
"MicroDepositValidationErrorData",
|
|
151
179
|
"MoovError",
|
|
@@ -156,8 +184,10 @@ __all__ = [
|
|
|
156
184
|
"PatchAccountErrorData",
|
|
157
185
|
"PatchSweepConfigError",
|
|
158
186
|
"PatchSweepConfigErrorData",
|
|
159
|
-
"
|
|
160
|
-
"
|
|
187
|
+
"PatchTransferValidationError",
|
|
188
|
+
"PatchTransferValidationErrorData",
|
|
189
|
+
"PatchWalletValidationError",
|
|
190
|
+
"PatchWalletValidationErrorData",
|
|
161
191
|
"RefundValidationError",
|
|
162
192
|
"RefundValidationErrorData",
|
|
163
193
|
"RepresentativeValidationError",
|
|
@@ -219,8 +249,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
219
249
|
"CreateSweepConfigErrorData": ".createsweepconfigerror",
|
|
220
250
|
"CreateTicketError": ".createticketerror",
|
|
221
251
|
"CreateTicketErrorData": ".createticketerror",
|
|
222
|
-
"
|
|
223
|
-
"
|
|
252
|
+
"CreateWalletValidationError": ".createwalletvalidationerror",
|
|
253
|
+
"CreateWalletValidationErrorData": ".createwalletvalidationerror",
|
|
224
254
|
"FeePlanAgreementError": ".feeplanagreementerror",
|
|
225
255
|
"FeePlanAgreementErrorData": ".feeplanagreementerror",
|
|
226
256
|
"File": ".fileuploadvalidationerror",
|
|
@@ -235,6 +265,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
235
265
|
"LinkApplePayErrorData": ".linkapplepayerror",
|
|
236
266
|
"LinkCardError": ".linkcarderror",
|
|
237
267
|
"LinkCardErrorData": ".linkcarderror",
|
|
268
|
+
"ListTransfersValidationError": ".listtransfersvalidationerror",
|
|
269
|
+
"ListTransfersValidationErrorData": ".listtransfersvalidationerror",
|
|
270
|
+
"ListWalletsValidationError": ".listwalletsvalidationerror",
|
|
271
|
+
"ListWalletsValidationErrorData": ".listwalletsvalidationerror",
|
|
272
|
+
"ListWalletTransactionsValidationError": ".listwallettransactionsvalidationerror",
|
|
273
|
+
"ListWalletTransactionsValidationErrorData": ".listwallettransactionsvalidationerror",
|
|
238
274
|
"MicroDepositValidationError": ".microdepositvalidationerror",
|
|
239
275
|
"MicroDepositValidationErrorData": ".microdepositvalidationerror",
|
|
240
276
|
"NoResponseError": ".no_response_error",
|
|
@@ -244,8 +280,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
244
280
|
"PatchAccountErrorData": ".patchaccounterror",
|
|
245
281
|
"PatchSweepConfigError": ".patchsweepconfigerror",
|
|
246
282
|
"PatchSweepConfigErrorData": ".patchsweepconfigerror",
|
|
247
|
-
"
|
|
248
|
-
"
|
|
283
|
+
"PatchTransferValidationError": ".patchtransfervalidationerror",
|
|
284
|
+
"PatchTransferValidationErrorData": ".patchtransfervalidationerror",
|
|
285
|
+
"PatchWalletValidationError": ".patchwalletvalidationerror",
|
|
286
|
+
"PatchWalletValidationErrorData": ".patchwalletvalidationerror",
|
|
249
287
|
"RefundValidationError": ".refundvalidationerror",
|
|
250
288
|
"RefundValidationErrorData": ".refundvalidationerror",
|
|
251
289
|
"Error": ".representativevalidationerror",
|
|
@@ -8,7 +8,7 @@ from moovio_sdk.types import BaseModel
|
|
|
8
8
|
from typing import Optional
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class
|
|
11
|
+
class CreateWalletValidationErrorData(BaseModel):
|
|
12
12
|
name: Optional[str] = None
|
|
13
13
|
|
|
14
14
|
description: Optional[str] = None
|
|
@@ -17,12 +17,12 @@ class CreateWalletErrorData(BaseModel):
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
@dataclass(frozen=True)
|
|
20
|
-
class
|
|
21
|
-
data:
|
|
20
|
+
class CreateWalletValidationError(MoovError):
|
|
21
|
+
data: CreateWalletValidationErrorData = field(hash=False)
|
|
22
22
|
|
|
23
23
|
def __init__(
|
|
24
24
|
self,
|
|
25
|
-
data:
|
|
25
|
+
data: CreateWalletValidationErrorData,
|
|
26
26
|
raw_response: httpx.Response,
|
|
27
27
|
body: Optional[str] = None,
|
|
28
28
|
):
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from dataclasses import dataclass, field
|
|
5
|
+
import httpx
|
|
6
|
+
from moovio_sdk.models.errors import MoovError
|
|
7
|
+
from moovio_sdk.types import BaseModel
|
|
8
|
+
import pydantic
|
|
9
|
+
from typing import Optional
|
|
10
|
+
from typing_extensions import Annotated
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ListTransfersValidationErrorData(BaseModel):
|
|
14
|
+
account_i_ds: Annotated[Optional[str], pydantic.Field(alias="accountIDs")] = None
|
|
15
|
+
|
|
16
|
+
status: Optional[str] = None
|
|
17
|
+
|
|
18
|
+
start_date_time: Annotated[Optional[str], pydantic.Field(alias="startDateTime")] = (
|
|
19
|
+
None
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
end_date_time: Annotated[Optional[str], pydantic.Field(alias="endDateTime")] = None
|
|
23
|
+
|
|
24
|
+
skip: Optional[str] = None
|
|
25
|
+
|
|
26
|
+
count: Optional[str] = None
|
|
27
|
+
|
|
28
|
+
group_id: Annotated[Optional[str], pydantic.Field(alias="groupID")] = None
|
|
29
|
+
|
|
30
|
+
foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
|
|
31
|
+
|
|
32
|
+
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
|
33
|
+
|
|
34
|
+
payment_link_code: Annotated[
|
|
35
|
+
Optional[str], pydantic.Field(alias="paymentLinkCode")
|
|
36
|
+
] = None
|
|
37
|
+
|
|
38
|
+
refunded: Optional[str] = None
|
|
39
|
+
|
|
40
|
+
disputed: Optional[str] = None
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
@dataclass(frozen=True)
|
|
44
|
+
class ListTransfersValidationError(MoovError):
|
|
45
|
+
data: ListTransfersValidationErrorData = field(hash=False)
|
|
46
|
+
|
|
47
|
+
def __init__(
|
|
48
|
+
self,
|
|
49
|
+
data: ListTransfersValidationErrorData,
|
|
50
|
+
raw_response: httpx.Response,
|
|
51
|
+
body: Optional[str] = None,
|
|
52
|
+
):
|
|
53
|
+
message = body or raw_response.text
|
|
54
|
+
super().__init__(message, raw_response, body)
|
|
55
|
+
object.__setattr__(self, "data", data)
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from dataclasses import dataclass, field
|
|
5
|
+
import httpx
|
|
6
|
+
from moovio_sdk.models.errors import MoovError
|
|
7
|
+
from moovio_sdk.types import BaseModel
|
|
8
|
+
import pydantic
|
|
9
|
+
from typing import Optional
|
|
10
|
+
from typing_extensions import Annotated
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ListWalletsValidationErrorData(BaseModel):
|
|
14
|
+
status: Optional[str] = None
|
|
15
|
+
|
|
16
|
+
wallet_type: Annotated[Optional[str], pydantic.Field(alias="walletType")] = None
|
|
17
|
+
|
|
18
|
+
skip: Optional[str] = None
|
|
19
|
+
|
|
20
|
+
count: Optional[str] = None
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
@dataclass(frozen=True)
|
|
24
|
+
class ListWalletsValidationError(MoovError):
|
|
25
|
+
data: ListWalletsValidationErrorData = field(hash=False)
|
|
26
|
+
|
|
27
|
+
def __init__(
|
|
28
|
+
self,
|
|
29
|
+
data: ListWalletsValidationErrorData,
|
|
30
|
+
raw_response: httpx.Response,
|
|
31
|
+
body: Optional[str] = None,
|
|
32
|
+
):
|
|
33
|
+
message = body or raw_response.text
|
|
34
|
+
super().__init__(message, raw_response, body)
|
|
35
|
+
object.__setattr__(self, "data", data)
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from dataclasses import dataclass, field
|
|
5
|
+
import httpx
|
|
6
|
+
from moovio_sdk.models.errors import MoovError
|
|
7
|
+
from moovio_sdk.types import BaseModel
|
|
8
|
+
import pydantic
|
|
9
|
+
from typing import Optional
|
|
10
|
+
from typing_extensions import Annotated
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ListWalletTransactionsValidationErrorData(BaseModel):
|
|
14
|
+
transaction_type: Annotated[
|
|
15
|
+
Optional[str], pydantic.Field(alias="transactionType")
|
|
16
|
+
] = None
|
|
17
|
+
|
|
18
|
+
transaction_types: Annotated[
|
|
19
|
+
Optional[str], pydantic.Field(alias="transactionTypes")
|
|
20
|
+
] = None
|
|
21
|
+
|
|
22
|
+
source_type: Annotated[Optional[str], pydantic.Field(alias="sourceType")] = None
|
|
23
|
+
|
|
24
|
+
source_id: Annotated[Optional[str], pydantic.Field(alias="sourceID")] = None
|
|
25
|
+
|
|
26
|
+
status: Optional[str] = None
|
|
27
|
+
|
|
28
|
+
sweep_id: Annotated[Optional[str], pydantic.Field(alias="sweepID")] = None
|
|
29
|
+
|
|
30
|
+
created_start_date_time: Annotated[
|
|
31
|
+
Optional[str], pydantic.Field(alias="createdStartDateTime")
|
|
32
|
+
] = None
|
|
33
|
+
|
|
34
|
+
created_end_date_time: Annotated[
|
|
35
|
+
Optional[str], pydantic.Field(alias="createdEndDateTime")
|
|
36
|
+
] = None
|
|
37
|
+
|
|
38
|
+
completed_start_date_time: Annotated[
|
|
39
|
+
Optional[str], pydantic.Field(alias="completedStartDateTime")
|
|
40
|
+
] = None
|
|
41
|
+
|
|
42
|
+
completed_end_date_time: Annotated[
|
|
43
|
+
Optional[str], pydantic.Field(alias="completedEndDateTime")
|
|
44
|
+
] = None
|
|
45
|
+
|
|
46
|
+
statement_descriptor: Annotated[
|
|
47
|
+
Optional[str], pydantic.Field(alias="statementDescriptor")
|
|
48
|
+
] = None
|
|
49
|
+
|
|
50
|
+
skip: Optional[str] = None
|
|
51
|
+
|
|
52
|
+
count: Optional[str] = None
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
@dataclass(frozen=True)
|
|
56
|
+
class ListWalletTransactionsValidationError(MoovError):
|
|
57
|
+
data: ListWalletTransactionsValidationErrorData = field(hash=False)
|
|
58
|
+
|
|
59
|
+
def __init__(
|
|
60
|
+
self,
|
|
61
|
+
data: ListWalletTransactionsValidationErrorData,
|
|
62
|
+
raw_response: httpx.Response,
|
|
63
|
+
body: Optional[str] = None,
|
|
64
|
+
):
|
|
65
|
+
message = body or raw_response.text
|
|
66
|
+
super().__init__(message, raw_response, body)
|
|
67
|
+
object.__setattr__(self, "data", data)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from dataclasses import dataclass, field
|
|
5
|
+
import httpx
|
|
6
|
+
from moovio_sdk.models.errors import MoovError
|
|
7
|
+
from moovio_sdk.types import BaseModel
|
|
8
|
+
import pydantic
|
|
9
|
+
from typing import Optional
|
|
10
|
+
from typing_extensions import Annotated
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class PatchTransferValidationErrorData(BaseModel):
|
|
14
|
+
metadata: Optional[str] = None
|
|
15
|
+
|
|
16
|
+
foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@dataclass(frozen=True)
|
|
20
|
+
class PatchTransferValidationError(MoovError):
|
|
21
|
+
data: PatchTransferValidationErrorData = field(hash=False)
|
|
22
|
+
|
|
23
|
+
def __init__(
|
|
24
|
+
self,
|
|
25
|
+
data: PatchTransferValidationErrorData,
|
|
26
|
+
raw_response: httpx.Response,
|
|
27
|
+
body: Optional[str] = None,
|
|
28
|
+
):
|
|
29
|
+
message = body or raw_response.text
|
|
30
|
+
super().__init__(message, raw_response, body)
|
|
31
|
+
object.__setattr__(self, "data", data)
|
|
@@ -8,7 +8,7 @@ from moovio_sdk.types import BaseModel
|
|
|
8
8
|
from typing import Optional
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class
|
|
11
|
+
class PatchWalletValidationErrorData(BaseModel):
|
|
12
12
|
name: Optional[str] = None
|
|
13
13
|
|
|
14
14
|
status: Optional[str] = None
|
|
@@ -19,12 +19,12 @@ class PatchWalletErrorData(BaseModel):
|
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
@dataclass(frozen=True)
|
|
22
|
-
class
|
|
23
|
-
data:
|
|
22
|
+
class PatchWalletValidationError(MoovError):
|
|
23
|
+
data: PatchWalletValidationErrorData = field(hash=False)
|
|
24
24
|
|
|
25
25
|
def __init__(
|
|
26
26
|
self,
|
|
27
|
-
data:
|
|
27
|
+
data: PatchWalletValidationErrorData,
|
|
28
28
|
raw_response: httpx.Response,
|
|
29
29
|
body: Optional[str] = None,
|
|
30
30
|
):
|
|
@@ -11,8 +11,6 @@ from typing_extensions import Annotated
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class TransferValidationErrorData(BaseModel):
|
|
14
|
-
transfer: Annotated[Optional[str], pydantic.Field(alias="Transfer")] = None
|
|
15
|
-
|
|
16
14
|
amount: Optional[str] = None
|
|
17
15
|
|
|
18
16
|
source: Optional[str] = None
|
|
@@ -37,8 +35,11 @@ class TransferValidationErrorData(BaseModel):
|
|
|
37
35
|
|
|
38
36
|
metadata: Optional[str] = None
|
|
39
37
|
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
sales_tax_amount: Annotated[
|
|
39
|
+
Optional[str], pydantic.Field(alias="salesTaxAmount")
|
|
40
|
+
] = None
|
|
41
|
+
|
|
42
|
+
foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
|
|
42
43
|
|
|
43
44
|
|
|
44
45
|
@dataclass(frozen=True)
|
moovio_sdk/transfers.py
CHANGED
|
@@ -787,15 +787,21 @@ class Transfers(BaseSDK):
|
|
|
787
787
|
),
|
|
788
788
|
),
|
|
789
789
|
request=req,
|
|
790
|
-
error_status_codes=["401", "403", "429", "4XX", "500", "504", "5XX"],
|
|
790
|
+
error_status_codes=["401", "403", "422", "429", "4XX", "500", "504", "5XX"],
|
|
791
791
|
retry_config=retry_config,
|
|
792
792
|
)
|
|
793
793
|
|
|
794
|
+
response_data: Any = None
|
|
794
795
|
if utils.match_response(http_res, "200", "application/json"):
|
|
795
796
|
return operations.ListTransfersResponse(
|
|
796
797
|
result=unmarshal_json_response(List[components.Transfer], http_res),
|
|
797
798
|
headers=utils.get_response_headers(http_res.headers),
|
|
798
799
|
)
|
|
800
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
801
|
+
response_data = unmarshal_json_response(
|
|
802
|
+
errors.ListTransfersValidationErrorData, http_res
|
|
803
|
+
)
|
|
804
|
+
raise errors.ListTransfersValidationError(response_data, http_res)
|
|
799
805
|
if utils.match_response(http_res, ["401", "403", "429"], "*"):
|
|
800
806
|
http_res_text = utils.stream_to_text(http_res)
|
|
801
807
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -926,15 +932,21 @@ class Transfers(BaseSDK):
|
|
|
926
932
|
),
|
|
927
933
|
),
|
|
928
934
|
request=req,
|
|
929
|
-
error_status_codes=["401", "403", "429", "4XX", "500", "504", "5XX"],
|
|
935
|
+
error_status_codes=["401", "403", "422", "429", "4XX", "500", "504", "5XX"],
|
|
930
936
|
retry_config=retry_config,
|
|
931
937
|
)
|
|
932
938
|
|
|
939
|
+
response_data: Any = None
|
|
933
940
|
if utils.match_response(http_res, "200", "application/json"):
|
|
934
941
|
return operations.ListTransfersResponse(
|
|
935
942
|
result=unmarshal_json_response(List[components.Transfer], http_res),
|
|
936
943
|
headers=utils.get_response_headers(http_res.headers),
|
|
937
944
|
)
|
|
945
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
946
|
+
response_data = unmarshal_json_response(
|
|
947
|
+
errors.ListTransfersValidationErrorData, http_res
|
|
948
|
+
)
|
|
949
|
+
raise errors.ListTransfersValidationError(response_data, http_res)
|
|
938
950
|
if utils.match_response(http_res, ["401", "403", "429"], "*"):
|
|
939
951
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
940
952
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -1242,15 +1254,31 @@ class Transfers(BaseSDK):
|
|
|
1242
1254
|
),
|
|
1243
1255
|
),
|
|
1244
1256
|
request=req,
|
|
1245
|
-
error_status_codes=[
|
|
1257
|
+
error_status_codes=[
|
|
1258
|
+
"401",
|
|
1259
|
+
"403",
|
|
1260
|
+
"404",
|
|
1261
|
+
"422",
|
|
1262
|
+
"429",
|
|
1263
|
+
"4XX",
|
|
1264
|
+
"500",
|
|
1265
|
+
"504",
|
|
1266
|
+
"5XX",
|
|
1267
|
+
],
|
|
1246
1268
|
retry_config=retry_config,
|
|
1247
1269
|
)
|
|
1248
1270
|
|
|
1271
|
+
response_data: Any = None
|
|
1249
1272
|
if utils.match_response(http_res, "200", "application/json"):
|
|
1250
1273
|
return operations.UpdateTransferResponse(
|
|
1251
1274
|
result=unmarshal_json_response(components.Transfer, http_res),
|
|
1252
1275
|
headers=utils.get_response_headers(http_res.headers),
|
|
1253
1276
|
)
|
|
1277
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
1278
|
+
response_data = unmarshal_json_response(
|
|
1279
|
+
errors.PatchTransferValidationErrorData, http_res
|
|
1280
|
+
)
|
|
1281
|
+
raise errors.PatchTransferValidationError(response_data, http_res)
|
|
1254
1282
|
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
|
1255
1283
|
http_res_text = utils.stream_to_text(http_res)
|
|
1256
1284
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -1354,15 +1382,31 @@ class Transfers(BaseSDK):
|
|
|
1354
1382
|
),
|
|
1355
1383
|
),
|
|
1356
1384
|
request=req,
|
|
1357
|
-
error_status_codes=[
|
|
1385
|
+
error_status_codes=[
|
|
1386
|
+
"401",
|
|
1387
|
+
"403",
|
|
1388
|
+
"404",
|
|
1389
|
+
"422",
|
|
1390
|
+
"429",
|
|
1391
|
+
"4XX",
|
|
1392
|
+
"500",
|
|
1393
|
+
"504",
|
|
1394
|
+
"5XX",
|
|
1395
|
+
],
|
|
1358
1396
|
retry_config=retry_config,
|
|
1359
1397
|
)
|
|
1360
1398
|
|
|
1399
|
+
response_data: Any = None
|
|
1361
1400
|
if utils.match_response(http_res, "200", "application/json"):
|
|
1362
1401
|
return operations.UpdateTransferResponse(
|
|
1363
1402
|
result=unmarshal_json_response(components.Transfer, http_res),
|
|
1364
1403
|
headers=utils.get_response_headers(http_res.headers),
|
|
1365
1404
|
)
|
|
1405
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
1406
|
+
response_data = unmarshal_json_response(
|
|
1407
|
+
errors.PatchTransferValidationErrorData, http_res
|
|
1408
|
+
)
|
|
1409
|
+
raise errors.PatchTransferValidationError(response_data, http_res)
|
|
1366
1410
|
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
|
1367
1411
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
1368
1412
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -8,7 +8,7 @@ from moovio_sdk.models import components, errors, operations
|
|
|
8
8
|
from moovio_sdk.types import OptionalNullable, UNSET
|
|
9
9
|
from moovio_sdk.utils import get_security_from_env
|
|
10
10
|
from moovio_sdk.utils.unmarshal_json_response import unmarshal_json_response
|
|
11
|
-
from typing import List, Mapping, Optional
|
|
11
|
+
from typing import Any, List, Mapping, Optional
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
class WalletTransactions(BaseSDK):
|
|
@@ -125,10 +125,11 @@ class WalletTransactions(BaseSDK):
|
|
|
125
125
|
),
|
|
126
126
|
),
|
|
127
127
|
request=req,
|
|
128
|
-
error_status_codes=["401", "403", "429", "4XX", "500", "504", "5XX"],
|
|
128
|
+
error_status_codes=["401", "403", "422", "429", "4XX", "500", "504", "5XX"],
|
|
129
129
|
retry_config=retry_config,
|
|
130
130
|
)
|
|
131
131
|
|
|
132
|
+
response_data: Any = None
|
|
132
133
|
if utils.match_response(http_res, "200", "application/json"):
|
|
133
134
|
return operations.ListWalletTransactionsResponse(
|
|
134
135
|
result=unmarshal_json_response(
|
|
@@ -136,6 +137,11 @@ class WalletTransactions(BaseSDK):
|
|
|
136
137
|
),
|
|
137
138
|
headers=utils.get_response_headers(http_res.headers),
|
|
138
139
|
)
|
|
140
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
141
|
+
response_data = unmarshal_json_response(
|
|
142
|
+
errors.ListWalletTransactionsValidationErrorData, http_res
|
|
143
|
+
)
|
|
144
|
+
raise errors.ListWalletTransactionsValidationError(response_data, http_res)
|
|
139
145
|
if utils.match_response(http_res, ["401", "403", "429"], "*"):
|
|
140
146
|
http_res_text = utils.stream_to_text(http_res)
|
|
141
147
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -264,10 +270,11 @@ class WalletTransactions(BaseSDK):
|
|
|
264
270
|
),
|
|
265
271
|
),
|
|
266
272
|
request=req,
|
|
267
|
-
error_status_codes=["401", "403", "429", "4XX", "500", "504", "5XX"],
|
|
273
|
+
error_status_codes=["401", "403", "422", "429", "4XX", "500", "504", "5XX"],
|
|
268
274
|
retry_config=retry_config,
|
|
269
275
|
)
|
|
270
276
|
|
|
277
|
+
response_data: Any = None
|
|
271
278
|
if utils.match_response(http_res, "200", "application/json"):
|
|
272
279
|
return operations.ListWalletTransactionsResponse(
|
|
273
280
|
result=unmarshal_json_response(
|
|
@@ -275,6 +282,11 @@ class WalletTransactions(BaseSDK):
|
|
|
275
282
|
),
|
|
276
283
|
headers=utils.get_response_headers(http_res.headers),
|
|
277
284
|
)
|
|
285
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
286
|
+
response_data = unmarshal_json_response(
|
|
287
|
+
errors.ListWalletTransactionsValidationErrorData, http_res
|
|
288
|
+
)
|
|
289
|
+
raise errors.ListWalletTransactionsValidationError(response_data, http_res)
|
|
278
290
|
if utils.match_response(http_res, ["401", "403", "429"], "*"):
|
|
279
291
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
280
292
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
moovio_sdk/wallets.py
CHANGED
|
@@ -126,9 +126,9 @@ class Wallets(BaseSDK):
|
|
|
126
126
|
raise errors.GenericError(response_data, http_res)
|
|
127
127
|
if utils.match_response(http_res, "422", "application/json"):
|
|
128
128
|
response_data = unmarshal_json_response(
|
|
129
|
-
errors.
|
|
129
|
+
errors.CreateWalletValidationErrorData, http_res
|
|
130
130
|
)
|
|
131
|
-
raise errors.
|
|
131
|
+
raise errors.CreateWalletValidationError(response_data, http_res)
|
|
132
132
|
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
|
133
133
|
http_res_text = utils.stream_to_text(http_res)
|
|
134
134
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -259,9 +259,9 @@ class Wallets(BaseSDK):
|
|
|
259
259
|
raise errors.GenericError(response_data, http_res)
|
|
260
260
|
if utils.match_response(http_res, "422", "application/json"):
|
|
261
261
|
response_data = unmarshal_json_response(
|
|
262
|
-
errors.
|
|
262
|
+
errors.CreateWalletValidationErrorData, http_res
|
|
263
263
|
)
|
|
264
|
-
raise errors.
|
|
264
|
+
raise errors.CreateWalletValidationError(response_data, http_res)
|
|
265
265
|
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
|
266
266
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
267
267
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -363,15 +363,21 @@ class Wallets(BaseSDK):
|
|
|
363
363
|
),
|
|
364
364
|
),
|
|
365
365
|
request=req,
|
|
366
|
-
error_status_codes=["401", "403", "429", "4XX", "500", "504", "5XX"],
|
|
366
|
+
error_status_codes=["401", "403", "422", "429", "4XX", "500", "504", "5XX"],
|
|
367
367
|
retry_config=retry_config,
|
|
368
368
|
)
|
|
369
369
|
|
|
370
|
+
response_data: Any = None
|
|
370
371
|
if utils.match_response(http_res, "200", "application/json"):
|
|
371
372
|
return operations.ListWalletsResponse(
|
|
372
373
|
result=unmarshal_json_response(List[components.Wallet], http_res),
|
|
373
374
|
headers=utils.get_response_headers(http_res.headers),
|
|
374
375
|
)
|
|
376
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
377
|
+
response_data = unmarshal_json_response(
|
|
378
|
+
errors.ListWalletsValidationErrorData, http_res
|
|
379
|
+
)
|
|
380
|
+
raise errors.ListWalletsValidationError(response_data, http_res)
|
|
375
381
|
if utils.match_response(http_res, ["401", "403", "429"], "*"):
|
|
376
382
|
http_res_text = utils.stream_to_text(http_res)
|
|
377
383
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -473,15 +479,21 @@ class Wallets(BaseSDK):
|
|
|
473
479
|
),
|
|
474
480
|
),
|
|
475
481
|
request=req,
|
|
476
|
-
error_status_codes=["401", "403", "429", "4XX", "500", "504", "5XX"],
|
|
482
|
+
error_status_codes=["401", "403", "422", "429", "4XX", "500", "504", "5XX"],
|
|
477
483
|
retry_config=retry_config,
|
|
478
484
|
)
|
|
479
485
|
|
|
486
|
+
response_data: Any = None
|
|
480
487
|
if utils.match_response(http_res, "200", "application/json"):
|
|
481
488
|
return operations.ListWalletsResponse(
|
|
482
489
|
result=unmarshal_json_response(List[components.Wallet], http_res),
|
|
483
490
|
headers=utils.get_response_headers(http_res.headers),
|
|
484
491
|
)
|
|
492
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
493
|
+
response_data = unmarshal_json_response(
|
|
494
|
+
errors.ListWalletsValidationErrorData, http_res
|
|
495
|
+
)
|
|
496
|
+
raise errors.ListWalletsValidationError(response_data, http_res)
|
|
485
497
|
if utils.match_response(http_res, ["401", "403", "429"], "*"):
|
|
486
498
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
487
499
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -820,9 +832,9 @@ class Wallets(BaseSDK):
|
|
|
820
832
|
raise errors.GenericError(response_data, http_res)
|
|
821
833
|
if utils.match_response(http_res, "422", "application/json"):
|
|
822
834
|
response_data = unmarshal_json_response(
|
|
823
|
-
errors.
|
|
835
|
+
errors.PatchWalletValidationErrorData, http_res
|
|
824
836
|
)
|
|
825
|
-
raise errors.
|
|
837
|
+
raise errors.PatchWalletValidationError(response_data, http_res)
|
|
826
838
|
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
|
827
839
|
http_res_text = utils.stream_to_text(http_res)
|
|
828
840
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -959,9 +971,9 @@ class Wallets(BaseSDK):
|
|
|
959
971
|
raise errors.GenericError(response_data, http_res)
|
|
960
972
|
if utils.match_response(http_res, "422", "application/json"):
|
|
961
973
|
response_data = unmarshal_json_response(
|
|
962
|
-
errors.
|
|
974
|
+
errors.PatchWalletValidationErrorData, http_res
|
|
963
975
|
)
|
|
964
|
-
raise errors.
|
|
976
|
+
raise errors.PatchWalletValidationError(response_data, http_res)
|
|
965
977
|
if utils.match_response(http_res, ["401", "403", "404", "429"], "*"):
|
|
966
978
|
http_res_text = await utils.stream_to_text_async(http_res)
|
|
967
979
|
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moovio_sdk
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.2
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -1490,7 +1490,7 @@ with Moov(
|
|
|
1490
1490
|
**Primary error:**
|
|
1491
1491
|
* [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py): The base class for HTTP error responses.
|
|
1492
1492
|
|
|
1493
|
-
<details><summary>Less common errors (
|
|
1493
|
+
<details><summary>Less common errors (48)</summary>
|
|
1494
1494
|
|
|
1495
1495
|
<br />
|
|
1496
1496
|
|
|
@@ -1529,12 +1529,16 @@ with Moov(
|
|
|
1529
1529
|
* [`UpdateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1530
1530
|
* [`TransferOptionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transferoptionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1531
1531
|
* [`TransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1532
|
+
* [`ListTransfersValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listtransfersvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1533
|
+
* [`PatchTransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchtransfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1532
1534
|
* [`RefundValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/refundvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1533
1535
|
* [`ReversalValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/reversalvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1534
1536
|
* [`UpsertUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/upsertunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1535
1537
|
* [`UpdateUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1536
|
-
* [`
|
|
1537
|
-
* [`
|
|
1538
|
+
* [`CreateWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1539
|
+
* [`ListWalletsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwalletsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1540
|
+
* [`PatchWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1541
|
+
* [`ListWalletTransactionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwallettransactionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1538
1542
|
* [`RequestCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/requestcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1539
1543
|
* [`UpdateIssuedCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateissuedcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
1540
1544
|
* [`RevokeTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/revoketokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
|
|
@@ -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=
|
|
6
|
+
moovio_sdk/_version.py,sha256=k8l9y8DwxtbZwG6mzm0DfWyvwuU-SShtSGy9esG31J8,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
|
|
@@ -499,7 +499,7 @@ moovio_sdk/models/components/webhookeventtype.py,sha256=sSBrEyjz4t56BtgnvflgIjmu
|
|
|
499
499
|
moovio_sdk/models/components/webhooktransferpaymentmethoddetails.py,sha256=UW1IFVidGtC0bOT5sV0m0uiJwblvbP6KopkTqkj5SYg,688
|
|
500
500
|
moovio_sdk/models/components/wireinstitution.py,sha256=HAouMCzuM9UtkAW9hgtRW8cMq8vBgYuxj_NFQxsiCbY,810
|
|
501
501
|
moovio_sdk/models/components/wireservices.py,sha256=5LbfeTazeWxrCRk2HBCtyByTZSeg9g4fdhK81lmYICo,1207
|
|
502
|
-
moovio_sdk/models/errors/__init__.py,sha256=
|
|
502
|
+
moovio_sdk/models/errors/__init__.py,sha256=ALRdkWS0448ji9_7HlferIn0qywWA72zFGgSlAyoOjw,14727
|
|
503
503
|
moovio_sdk/models/errors/accountterminalapplicationerror.py,sha256=gmIEykXvWcXLAGPETPn77ej1O0AoKhkiRyEdHYQN7nQ,962
|
|
504
504
|
moovio_sdk/models/errors/addcapabilitieserror.py,sha256=j-Cd5-JuXQxssim6EEr2GAvxUkfxbye5ZZuPwgGTbfE,829
|
|
505
505
|
moovio_sdk/models/errors/apierror.py,sha256=amCIK7DUNOPwG3nXaWwh67I2avj9vcfEjzzdddxGyTI,1283
|
|
@@ -512,20 +512,24 @@ moovio_sdk/models/errors/createaccounterror.py,sha256=gSKW3HZnUxQ52x5itkiml-Pogx
|
|
|
512
512
|
moovio_sdk/models/errors/createpaymentlinkerror.py,sha256=j_uLOZ0exBUWXoRTkin7kwLiER9pUWoPc2Qhuk7BCGA,1819
|
|
513
513
|
moovio_sdk/models/errors/createsweepconfigerror.py,sha256=pmXPrBED45_xMANBCP9S9qVfJ-uFtNYkFOQ2CfQLtlI,1385
|
|
514
514
|
moovio_sdk/models/errors/createticketerror.py,sha256=XdU36StEk0VlWetFeDf1DYsO9x5rTFv7eG-VBj1lZnY,1188
|
|
515
|
-
moovio_sdk/models/errors/
|
|
515
|
+
moovio_sdk/models/errors/createwalletvalidationerror.py,sha256=LWPp9FiZX8w5a5kmqOhoJfrQJE06lSGgT6YeSIGF6P0,874
|
|
516
516
|
moovio_sdk/models/errors/feeplanagreementerror.py,sha256=ymZoTP_rD-M7glgXr71WuEieT6WP4A-9OgNP7wt50RI,877
|
|
517
517
|
moovio_sdk/models/errors/fileuploadvalidationerror.py,sha256=y3L9Qomd9g0EHFf1Ld7D561vuMCIJaG4eEv5ove6AC4,1201
|
|
518
518
|
moovio_sdk/models/errors/filevalidationerror.py,sha256=QIQLIMHJrlzCUo4hM8LI21iqBS6ebdIgJqDwKYexf9A,1062
|
|
519
519
|
moovio_sdk/models/errors/genericerror.py,sha256=42kAI1x3wepaDPSlB8SK9xK7qqsVHMqNnEMvb_5uSNw,723
|
|
520
520
|
moovio_sdk/models/errors/linkapplepayerror.py,sha256=jGCvK8vzLqDpUMn75jMt2Ot3UQrSuqZ-3tqCa9_DgAs,1456
|
|
521
521
|
moovio_sdk/models/errors/linkcarderror.py,sha256=wml5cgWdILdUpbyEg3sL3NLu4RQT0HiS8iMJ5Nsq8KQ,1681
|
|
522
|
+
moovio_sdk/models/errors/listtransfersvalidationerror.py,sha256=7eIIHhtrMR-Qi5KhuY23o6-6YIX1R_l1FN1xItDnFsM,1644
|
|
523
|
+
moovio_sdk/models/errors/listwalletsvalidationerror.py,sha256=xrQFqsznyl7lDXIMx2XyOyYnrYYdcm4RDXKzbrlUVLU,1004
|
|
524
|
+
moovio_sdk/models/errors/listwallettransactionsvalidationerror.py,sha256=uCZ616xlT947tvNRE_R_nJq59Y1shMtNu0EA01IxBlw,2038
|
|
522
525
|
moovio_sdk/models/errors/microdepositvalidationerror.py,sha256=OECYvAFtHDzP-5UMZnWcS0ryzrGUMHya15_qsSVMy9U,802
|
|
523
526
|
moovio_sdk/models/errors/mooverror.py,sha256=vnXUgpE4swXcBUdmSBoYQRVkgy46yF2idLazCmqkIVE,948
|
|
524
527
|
moovio_sdk/models/errors/no_response_error.py,sha256=Kb7hmMtDo72KrLSjUEDNeQxvzZiVxUjOZym8TPdZp5Y,462
|
|
525
528
|
moovio_sdk/models/errors/onboardinginviteerror.py,sha256=B3xWD6zDDfH_sZo_xCgBu_2a2ZCbr0Xh5dlJGudMG0Y,1217
|
|
526
529
|
moovio_sdk/models/errors/patchaccounterror.py,sha256=U-w2AoG5BRJUq90TC4FCCHueqko01NBlgG77gSRIoZ8,1721
|
|
527
530
|
moovio_sdk/models/errors/patchsweepconfigerror.py,sha256=GqGcaOlkpjTxv09guBL-DBT1YckcS8o1eDIJQ4MVFZI,1299
|
|
528
|
-
moovio_sdk/models/errors/
|
|
531
|
+
moovio_sdk/models/errors/patchtransfervalidationerror.py,sha256=9nYbl_FBKT0EuT-iozJSGIrWTO55oWiWxYYcEjZc_zs,947
|
|
532
|
+
moovio_sdk/models/errors/patchwalletvalidationerror.py,sha256=bCr9b-KE8-3fXFBfrVFFrouAQj959N8i4sdxMwbcRZs,904
|
|
529
533
|
moovio_sdk/models/errors/refundvalidationerror.py,sha256=8kj2y8ofvNldVUxcfyjsEKbYGAmjl6Rqx1aoe6ik78Y,915
|
|
530
534
|
moovio_sdk/models/errors/representativevalidationerror.py,sha256=r3Ap_mkKT6xqJTcU6YvUlCsxM9Eals0TX2xdw65lrnA,2664
|
|
531
535
|
moovio_sdk/models/errors/requestcarderror.py,sha256=fbAaT8fBDB6g9wJW5wAg0xuVE6KRmSBC3V-6HFOSBi4,1590
|
|
@@ -536,7 +540,7 @@ moovio_sdk/models/errors/schedulevalidationerror.py,sha256=RiCFZjADzoJ6wkVOp3KGI
|
|
|
536
540
|
moovio_sdk/models/errors/terminalapplicationerror.py,sha256=JRqBR7r8KxNitmXLI_Zixgqe0MGa71djicOdj5Dfpso,1202
|
|
537
541
|
moovio_sdk/models/errors/transfer.py,sha256=O4PBu6tMg5R-8uaTtIHlPd6lYpC1Sx6NOlYPGAuaUxw,4837
|
|
538
542
|
moovio_sdk/models/errors/transferoptionsvalidationerror.py,sha256=Q1ddhXNOhL1yE5SWNcTgDCaizVaGf6rvW5YN8wfNuCU,886
|
|
539
|
-
moovio_sdk/models/errors/transfervalidationerror.py,sha256=
|
|
543
|
+
moovio_sdk/models/errors/transfervalidationerror.py,sha256=IHQjBLFDKoQn34i-PbifrDdnNiSZL3IbIG1DCHLAXNQ,1673
|
|
540
544
|
moovio_sdk/models/errors/updatecarderror.py,sha256=3j0at5WyNwOSEsT-Z8jH9PpA-7L5qvxCm9SwAwbWUbc,1570
|
|
541
545
|
moovio_sdk/models/errors/updateissuedcarderror.py,sha256=EJA2x918FmvoeIlkKUwqH3-3E_pATUr6WpkqHwMMEhQ,1156
|
|
542
546
|
moovio_sdk/models/errors/updatepaymentlinkerror.py,sha256=8zpPMIPAZzL5LwJi-EQo9Ert-Ux3kUCEAoKAXqsDpQI,1498
|
|
@@ -707,7 +711,7 @@ moovio_sdk/statements.py,sha256=KWU3fFswizXN79gRJX-TWsk1F2V0Yp1DaeiWfozU6KU,2114
|
|
|
707
711
|
moovio_sdk/support.py,sha256=fIs60WlHq2au9n4BBPLq1J3Vp8cdulisn-_5Z3r9vg0,50519
|
|
708
712
|
moovio_sdk/sweeps.py,sha256=bp71dtVpazfJo3BmB7SKru5e9XLWgFKZEVJ4R-fw6WQ,61528
|
|
709
713
|
moovio_sdk/terminal_applications.py,sha256=1mn5glbRSlm5d3nVm-7CCejqPXbIFT-JMb5jcpXSFss,50977
|
|
710
|
-
moovio_sdk/transfers.py,sha256=
|
|
714
|
+
moovio_sdk/transfers.py,sha256=wq0Xb2YGEBh_aZUYjxZhB0RPYR6sjqSi6Lu-n_uI990,127753
|
|
711
715
|
moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
712
716
|
moovio_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
713
717
|
moovio_sdk/underwriting.py,sha256=gokG7XLfatp4Xq3NnlvoCS0EvNhJWedkBO1JJnnfmU4,37424
|
|
@@ -728,8 +732,8 @@ moovio_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0Hwv
|
|
|
728
732
|
moovio_sdk/utils/unmarshal_json_response.py,sha256=Kr8UvsNaQp6pymeypUuOUCOcSsMlLwdoOR8Th2QWOJw,593
|
|
729
733
|
moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
730
734
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
731
|
-
moovio_sdk/wallet_transactions.py,sha256=
|
|
732
|
-
moovio_sdk/wallets.py,sha256=
|
|
733
|
-
moovio_sdk-0.15.
|
|
734
|
-
moovio_sdk-0.15.
|
|
735
|
-
moovio_sdk-0.15.
|
|
735
|
+
moovio_sdk/wallet_transactions.py,sha256=RmLqla-r3w-R2yiE6NFsOSWdmKFxDqCKAw5TZV0ooOs,23895
|
|
736
|
+
moovio_sdk/wallets.py,sha256=mkjHXF-JJ6fdgWNTn-qQA938ejre_ILQuFh8F0Vi1LY,43246
|
|
737
|
+
moovio_sdk-0.15.2.dist-info/METADATA,sha256=TJAkCQBh28LtFkZZrgOF35hVUxWmhoeXx7Wzici1oOE,114994
|
|
738
|
+
moovio_sdk-0.15.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
739
|
+
moovio_sdk-0.15.2.dist-info/RECORD,,
|