moovio_sdk 0.4.1__py3-none-any.whl → 0.4.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.
- moovio_sdk/_version.py +2 -2
- moovio_sdk/account_terminal_applications.py +985 -0
- moovio_sdk/models/components/__init__.py +6 -0
- moovio_sdk/models/components/linkaccountterminalapplication.py +22 -0
- moovio_sdk/models/errors/__init__.py +6 -0
- moovio_sdk/models/errors/accountterminalapplicationerror.py +24 -0
- moovio_sdk/models/operations/__init__.py +42 -0
- moovio_sdk/models/operations/getaccountterminalapplication.py +73 -0
- moovio_sdk/models/operations/linkaccountterminalapplication.py +78 -0
- moovio_sdk/models/operations/listaccountterminalapplications.py +66 -0
- moovio_sdk/sdk.py +5 -3
- moovio_sdk/terminal_applications.py +8 -8
- {moovio_sdk-0.4.1.dist-info → moovio_sdk-0.4.2.dist-info}/METADATA +24 -12
- {moovio_sdk-0.4.1.dist-info → moovio_sdk-0.4.2.dist-info}/RECORD +15 -10
- moovio_sdk/terminal_configurations.py +0 -241
- {moovio_sdk-0.4.1.dist-info → moovio_sdk-0.4.2.dist-info}/WHEEL +0 -0
@@ -398,6 +398,10 @@ from .issuingvelocitylimiterror import (
|
|
398
398
|
IssuingVelocityLimitErrorTypedDict,
|
399
399
|
)
|
400
400
|
from .jsonwebkey import JSONWebKey, JSONWebKeyTypedDict, Use
|
401
|
+
from .linkaccountterminalapplication import (
|
402
|
+
LinkAccountTerminalApplication,
|
403
|
+
LinkAccountTerminalApplicationTypedDict,
|
404
|
+
)
|
401
405
|
from .linkapplepay import LinkApplePay, LinkApplePayTypedDict
|
402
406
|
from .linkapplepaymentdata import LinkApplePaymentData, LinkApplePaymentDataTypedDict
|
403
407
|
from .linkapplepaymentmethod import (
|
@@ -1129,6 +1133,8 @@ __all__ = [
|
|
1129
1133
|
"ItinTypedDict",
|
1130
1134
|
"JSONWebKey",
|
1131
1135
|
"JSONWebKeyTypedDict",
|
1136
|
+
"LinkAccountTerminalApplication",
|
1137
|
+
"LinkAccountTerminalApplicationTypedDict",
|
1132
1138
|
"LinkApplePay",
|
1133
1139
|
"LinkApplePayToken",
|
1134
1140
|
"LinkApplePayTokenTypedDict",
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.types import BaseModel
|
5
|
+
import pydantic
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class LinkAccountTerminalApplicationTypedDict(TypedDict):
|
10
|
+
r"""Describes a request to link an account with a terminal application."""
|
11
|
+
|
12
|
+
terminal_application_id: str
|
13
|
+
r"""ID of the terminal application."""
|
14
|
+
|
15
|
+
|
16
|
+
class LinkAccountTerminalApplication(BaseModel):
|
17
|
+
r"""Describes a request to link an account with a terminal application."""
|
18
|
+
|
19
|
+
terminal_application_id: Annotated[
|
20
|
+
str, pydantic.Field(alias="terminalApplicationID")
|
21
|
+
]
|
22
|
+
r"""ID of the terminal application."""
|
@@ -1,5 +1,9 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
|
+
from .accountterminalapplicationerror import (
|
4
|
+
AccountTerminalApplicationError,
|
5
|
+
AccountTerminalApplicationErrorData,
|
6
|
+
)
|
3
7
|
from .addcapabilitieserror import AddCapabilitiesError, AddCapabilitiesErrorData
|
4
8
|
from .apierror import APIError
|
5
9
|
from .assigncountrieserror import AssignCountriesError, AssignCountriesErrorData
|
@@ -77,6 +81,8 @@ from .updateunderwritingerror import (
|
|
77
81
|
|
78
82
|
__all__ = [
|
79
83
|
"APIError",
|
84
|
+
"AccountTerminalApplicationError",
|
85
|
+
"AccountTerminalApplicationErrorData",
|
80
86
|
"AddCapabilitiesError",
|
81
87
|
"AddCapabilitiesErrorData",
|
82
88
|
"AssignCountriesError",
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk import utils
|
5
|
+
from moovio_sdk.types import BaseModel
|
6
|
+
import pydantic
|
7
|
+
from typing import Optional
|
8
|
+
from typing_extensions import Annotated
|
9
|
+
|
10
|
+
|
11
|
+
class AccountTerminalApplicationErrorData(BaseModel):
|
12
|
+
terminal_application_id: Annotated[
|
13
|
+
Optional[str], pydantic.Field(alias="terminalApplicationID")
|
14
|
+
] = None
|
15
|
+
|
16
|
+
|
17
|
+
class AccountTerminalApplicationError(Exception):
|
18
|
+
data: AccountTerminalApplicationErrorData
|
19
|
+
|
20
|
+
def __init__(self, data: AccountTerminalApplicationErrorData):
|
21
|
+
self.data = data
|
22
|
+
|
23
|
+
def __str__(self) -> str:
|
24
|
+
return utils.marshal_json(self.data, AccountTerminalApplicationErrorData)
|
@@ -246,6 +246,14 @@ from .getaccountcountries import (
|
|
246
246
|
GetAccountCountriesResponse,
|
247
247
|
GetAccountCountriesResponseTypedDict,
|
248
248
|
)
|
249
|
+
from .getaccountterminalapplication import (
|
250
|
+
GetAccountTerminalApplicationGlobals,
|
251
|
+
GetAccountTerminalApplicationGlobalsTypedDict,
|
252
|
+
GetAccountTerminalApplicationRequest,
|
253
|
+
GetAccountTerminalApplicationRequestTypedDict,
|
254
|
+
GetAccountTerminalApplicationResponse,
|
255
|
+
GetAccountTerminalApplicationResponseTypedDict,
|
256
|
+
)
|
249
257
|
from .getadjustment import (
|
250
258
|
GetAdjustmentGlobals,
|
251
259
|
GetAdjustmentGlobalsTypedDict,
|
@@ -572,6 +580,14 @@ from .initiaterefund import (
|
|
572
580
|
InitiateRefundResponseResultTypedDict,
|
573
581
|
InitiateRefundResponseTypedDict,
|
574
582
|
)
|
583
|
+
from .linkaccountterminalapplication import (
|
584
|
+
LinkAccountTerminalApplicationGlobals,
|
585
|
+
LinkAccountTerminalApplicationGlobalsTypedDict,
|
586
|
+
LinkAccountTerminalApplicationRequest,
|
587
|
+
LinkAccountTerminalApplicationRequestTypedDict,
|
588
|
+
LinkAccountTerminalApplicationResponse,
|
589
|
+
LinkAccountTerminalApplicationResponseTypedDict,
|
590
|
+
)
|
575
591
|
from .linkapplepaytoken import (
|
576
592
|
LinkApplePayTokenGlobals,
|
577
593
|
LinkApplePayTokenGlobalsTypedDict,
|
@@ -604,6 +620,14 @@ from .listaccounts import (
|
|
604
620
|
ListAccountsResponse,
|
605
621
|
ListAccountsResponseTypedDict,
|
606
622
|
)
|
623
|
+
from .listaccountterminalapplications import (
|
624
|
+
ListAccountTerminalApplicationsGlobals,
|
625
|
+
ListAccountTerminalApplicationsGlobalsTypedDict,
|
626
|
+
ListAccountTerminalApplicationsRequest,
|
627
|
+
ListAccountTerminalApplicationsRequestTypedDict,
|
628
|
+
ListAccountTerminalApplicationsResponse,
|
629
|
+
ListAccountTerminalApplicationsResponseTypedDict,
|
630
|
+
)
|
607
631
|
from .listadjustments import (
|
608
632
|
ListAdjustmentsGlobals,
|
609
633
|
ListAdjustmentsGlobalsTypedDict,
|
@@ -1234,6 +1258,12 @@ __all__ = [
|
|
1234
1258
|
"GetAccountRequestTypedDict",
|
1235
1259
|
"GetAccountResponse",
|
1236
1260
|
"GetAccountResponseTypedDict",
|
1261
|
+
"GetAccountTerminalApplicationGlobals",
|
1262
|
+
"GetAccountTerminalApplicationGlobalsTypedDict",
|
1263
|
+
"GetAccountTerminalApplicationRequest",
|
1264
|
+
"GetAccountTerminalApplicationRequestTypedDict",
|
1265
|
+
"GetAccountTerminalApplicationResponse",
|
1266
|
+
"GetAccountTerminalApplicationResponseTypedDict",
|
1237
1267
|
"GetAdjustmentGlobals",
|
1238
1268
|
"GetAdjustmentGlobalsTypedDict",
|
1239
1269
|
"GetAdjustmentRequest",
|
@@ -1481,6 +1511,12 @@ __all__ = [
|
|
1481
1511
|
"InitiateRefundResponseResult",
|
1482
1512
|
"InitiateRefundResponseResultTypedDict",
|
1483
1513
|
"InitiateRefundResponseTypedDict",
|
1514
|
+
"LinkAccountTerminalApplicationGlobals",
|
1515
|
+
"LinkAccountTerminalApplicationGlobalsTypedDict",
|
1516
|
+
"LinkAccountTerminalApplicationRequest",
|
1517
|
+
"LinkAccountTerminalApplicationRequestTypedDict",
|
1518
|
+
"LinkAccountTerminalApplicationResponse",
|
1519
|
+
"LinkAccountTerminalApplicationResponseTypedDict",
|
1484
1520
|
"LinkApplePayTokenGlobals",
|
1485
1521
|
"LinkApplePayTokenGlobalsTypedDict",
|
1486
1522
|
"LinkApplePayTokenRequest",
|
@@ -1499,6 +1535,12 @@ __all__ = [
|
|
1499
1535
|
"LinkCardRequestTypedDict",
|
1500
1536
|
"LinkCardResponse",
|
1501
1537
|
"LinkCardResponseTypedDict",
|
1538
|
+
"ListAccountTerminalApplicationsGlobals",
|
1539
|
+
"ListAccountTerminalApplicationsGlobalsTypedDict",
|
1540
|
+
"ListAccountTerminalApplicationsRequest",
|
1541
|
+
"ListAccountTerminalApplicationsRequestTypedDict",
|
1542
|
+
"ListAccountTerminalApplicationsResponse",
|
1543
|
+
"ListAccountTerminalApplicationsResponseTypedDict",
|
1502
1544
|
"ListAccountsGlobals",
|
1503
1545
|
"ListAccountsGlobalsTypedDict",
|
1504
1546
|
"ListAccountsRequest",
|
@@ -0,0 +1,73 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
terminalapplication as components_terminalapplication,
|
6
|
+
)
|
7
|
+
from moovio_sdk.types import BaseModel
|
8
|
+
from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
|
9
|
+
import pydantic
|
10
|
+
from typing import Dict, List, Optional
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
12
|
+
|
13
|
+
|
14
|
+
class GetAccountTerminalApplicationGlobalsTypedDict(TypedDict):
|
15
|
+
x_moov_version: NotRequired[str]
|
16
|
+
r"""Specify an API version.
|
17
|
+
|
18
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
19
|
+
- `YYYY` is the year
|
20
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
21
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
22
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
23
|
+
|
24
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
25
|
+
"""
|
26
|
+
|
27
|
+
|
28
|
+
class GetAccountTerminalApplicationGlobals(BaseModel):
|
29
|
+
x_moov_version: Annotated[
|
30
|
+
Optional[str],
|
31
|
+
pydantic.Field(alias="x-moov-version"),
|
32
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
33
|
+
] = "v2024.01.00"
|
34
|
+
r"""Specify an API version.
|
35
|
+
|
36
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
37
|
+
- `YYYY` is the year
|
38
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
39
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
40
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
41
|
+
|
42
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
43
|
+
"""
|
44
|
+
|
45
|
+
|
46
|
+
class GetAccountTerminalApplicationRequestTypedDict(TypedDict):
|
47
|
+
account_id: str
|
48
|
+
terminal_application_id: str
|
49
|
+
|
50
|
+
|
51
|
+
class GetAccountTerminalApplicationRequest(BaseModel):
|
52
|
+
account_id: Annotated[
|
53
|
+
str,
|
54
|
+
pydantic.Field(alias="accountID"),
|
55
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
56
|
+
]
|
57
|
+
|
58
|
+
terminal_application_id: Annotated[
|
59
|
+
str,
|
60
|
+
pydantic.Field(alias="terminalApplicationID"),
|
61
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
62
|
+
]
|
63
|
+
|
64
|
+
|
65
|
+
class GetAccountTerminalApplicationResponseTypedDict(TypedDict):
|
66
|
+
headers: Dict[str, List[str]]
|
67
|
+
result: components_terminalapplication.TerminalApplicationTypedDict
|
68
|
+
|
69
|
+
|
70
|
+
class GetAccountTerminalApplicationResponse(BaseModel):
|
71
|
+
headers: Dict[str, List[str]]
|
72
|
+
|
73
|
+
result: components_terminalapplication.TerminalApplication
|
@@ -0,0 +1,78 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
linkaccountterminalapplication as components_linkaccountterminalapplication,
|
6
|
+
terminalapplication as components_terminalapplication,
|
7
|
+
)
|
8
|
+
from moovio_sdk.types import BaseModel
|
9
|
+
from moovio_sdk.utils import (
|
10
|
+
FieldMetadata,
|
11
|
+
HeaderMetadata,
|
12
|
+
PathParamMetadata,
|
13
|
+
RequestMetadata,
|
14
|
+
)
|
15
|
+
import pydantic
|
16
|
+
from typing import Dict, List, Optional
|
17
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
18
|
+
|
19
|
+
|
20
|
+
class LinkAccountTerminalApplicationGlobalsTypedDict(TypedDict):
|
21
|
+
x_moov_version: NotRequired[str]
|
22
|
+
r"""Specify an API version.
|
23
|
+
|
24
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
25
|
+
- `YYYY` is the year
|
26
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
27
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
28
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
29
|
+
|
30
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
31
|
+
"""
|
32
|
+
|
33
|
+
|
34
|
+
class LinkAccountTerminalApplicationGlobals(BaseModel):
|
35
|
+
x_moov_version: Annotated[
|
36
|
+
Optional[str],
|
37
|
+
pydantic.Field(alias="x-moov-version"),
|
38
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
39
|
+
] = "v2024.01.00"
|
40
|
+
r"""Specify an API version.
|
41
|
+
|
42
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
43
|
+
- `YYYY` is the year
|
44
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
45
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
46
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
47
|
+
|
48
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
49
|
+
"""
|
50
|
+
|
51
|
+
|
52
|
+
class LinkAccountTerminalApplicationRequestTypedDict(TypedDict):
|
53
|
+
account_id: str
|
54
|
+
link_account_terminal_application: components_linkaccountterminalapplication.LinkAccountTerminalApplicationTypedDict
|
55
|
+
|
56
|
+
|
57
|
+
class LinkAccountTerminalApplicationRequest(BaseModel):
|
58
|
+
account_id: Annotated[
|
59
|
+
str,
|
60
|
+
pydantic.Field(alias="accountID"),
|
61
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
62
|
+
]
|
63
|
+
|
64
|
+
link_account_terminal_application: Annotated[
|
65
|
+
components_linkaccountterminalapplication.LinkAccountTerminalApplication,
|
66
|
+
FieldMetadata(request=RequestMetadata(media_type="application/json")),
|
67
|
+
]
|
68
|
+
|
69
|
+
|
70
|
+
class LinkAccountTerminalApplicationResponseTypedDict(TypedDict):
|
71
|
+
headers: Dict[str, List[str]]
|
72
|
+
result: components_terminalapplication.TerminalApplicationTypedDict
|
73
|
+
|
74
|
+
|
75
|
+
class LinkAccountTerminalApplicationResponse(BaseModel):
|
76
|
+
headers: Dict[str, List[str]]
|
77
|
+
|
78
|
+
result: components_terminalapplication.TerminalApplication
|
@@ -0,0 +1,66 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.models.components import (
|
5
|
+
terminalapplication as components_terminalapplication,
|
6
|
+
)
|
7
|
+
from moovio_sdk.types import BaseModel
|
8
|
+
from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
|
9
|
+
import pydantic
|
10
|
+
from typing import Dict, List, Optional
|
11
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
12
|
+
|
13
|
+
|
14
|
+
class ListAccountTerminalApplicationsGlobalsTypedDict(TypedDict):
|
15
|
+
x_moov_version: NotRequired[str]
|
16
|
+
r"""Specify an API version.
|
17
|
+
|
18
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
19
|
+
- `YYYY` is the year
|
20
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
21
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
22
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
23
|
+
|
24
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
25
|
+
"""
|
26
|
+
|
27
|
+
|
28
|
+
class ListAccountTerminalApplicationsGlobals(BaseModel):
|
29
|
+
x_moov_version: Annotated[
|
30
|
+
Optional[str],
|
31
|
+
pydantic.Field(alias="x-moov-version"),
|
32
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
33
|
+
] = "v2024.01.00"
|
34
|
+
r"""Specify an API version.
|
35
|
+
|
36
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
37
|
+
- `YYYY` is the year
|
38
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
39
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
40
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
41
|
+
|
42
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
43
|
+
"""
|
44
|
+
|
45
|
+
|
46
|
+
class ListAccountTerminalApplicationsRequestTypedDict(TypedDict):
|
47
|
+
account_id: str
|
48
|
+
|
49
|
+
|
50
|
+
class ListAccountTerminalApplicationsRequest(BaseModel):
|
51
|
+
account_id: Annotated[
|
52
|
+
str,
|
53
|
+
pydantic.Field(alias="accountID"),
|
54
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
55
|
+
]
|
56
|
+
|
57
|
+
|
58
|
+
class ListAccountTerminalApplicationsResponseTypedDict(TypedDict):
|
59
|
+
headers: Dict[str, List[str]]
|
60
|
+
result: List[components_terminalapplication.TerminalApplicationTypedDict]
|
61
|
+
|
62
|
+
|
63
|
+
class ListAccountTerminalApplicationsResponse(BaseModel):
|
64
|
+
headers: Dict[str, List[str]]
|
65
|
+
|
66
|
+
result: List[components_terminalapplication.TerminalApplication]
|
moovio_sdk/sdk.py
CHANGED
@@ -8,6 +8,7 @@ from .utils.retries import RetryConfig
|
|
8
8
|
import httpx
|
9
9
|
from moovio_sdk import utils
|
10
10
|
from moovio_sdk._hooks import SDKHooks
|
11
|
+
from moovio_sdk.account_terminal_applications import AccountTerminalApplications
|
11
12
|
from moovio_sdk.accounts import Accounts
|
12
13
|
from moovio_sdk.adjustments import Adjustments
|
13
14
|
from moovio_sdk.apple_pay import ApplePay
|
@@ -37,7 +38,6 @@ from moovio_sdk.representatives import Representatives
|
|
37
38
|
from moovio_sdk.scheduling import Scheduling
|
38
39
|
from moovio_sdk.sweeps import Sweeps
|
39
40
|
from moovio_sdk.terminal_applications import TerminalApplications
|
40
|
-
from moovio_sdk.terminal_configurations import TerminalConfigurations
|
41
41
|
from moovio_sdk.transfers import Transfers
|
42
42
|
from moovio_sdk.types import OptionalNullable, UNSET
|
43
43
|
from moovio_sdk.underwriting import Underwriting
|
@@ -69,7 +69,7 @@ class Moov(BaseSDK):
|
|
69
69
|
representatives: Representatives
|
70
70
|
scheduling: Scheduling
|
71
71
|
sweeps: Sweeps
|
72
|
-
|
72
|
+
account_terminal_applications: AccountTerminalApplications
|
73
73
|
transfers: Transfers
|
74
74
|
underwriting: Underwriting
|
75
75
|
wallets: Wallets
|
@@ -203,7 +203,9 @@ class Moov(BaseSDK):
|
|
203
203
|
self.representatives = Representatives(self.sdk_configuration)
|
204
204
|
self.scheduling = Scheduling(self.sdk_configuration)
|
205
205
|
self.sweeps = Sweeps(self.sdk_configuration)
|
206
|
-
self.
|
206
|
+
self.account_terminal_applications = AccountTerminalApplications(
|
207
|
+
self.sdk_configuration
|
208
|
+
)
|
207
209
|
self.transfers = Transfers(self.sdk_configuration)
|
208
210
|
self.underwriting = Underwriting(self.sdk_configuration)
|
209
211
|
self.wallets = Wallets(self.sdk_configuration)
|
@@ -26,7 +26,7 @@ class TerminalApplications(BaseSDK):
|
|
26
26
|
r"""Create a new terminal application.
|
27
27
|
|
28
28
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
29
|
-
you'll need to specify the `/
|
29
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
30
30
|
|
31
31
|
:param platform: Platform of the terminal application.
|
32
32
|
:param app_bundle_id: The app bundle identifier of the terminal application. Required if platform is `ios`.
|
@@ -174,7 +174,7 @@ class TerminalApplications(BaseSDK):
|
|
174
174
|
r"""Create a new terminal application.
|
175
175
|
|
176
176
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
177
|
-
you'll need to specify the `/
|
177
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
178
178
|
|
179
179
|
:param platform: Platform of the terminal application.
|
180
180
|
:param app_bundle_id: The app bundle identifier of the terminal application. Required if platform is `ios`.
|
@@ -321,7 +321,7 @@ class TerminalApplications(BaseSDK):
|
|
321
321
|
r"""List all the terminal applications for a Moov Account.
|
322
322
|
|
323
323
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
324
|
-
you'll need to specify the `/
|
324
|
+
you'll need to specify the `/terminal-applications.read` scope.
|
325
325
|
|
326
326
|
:param request: The request object to send.
|
327
327
|
:param retries: Override the default retry configuration for this method
|
@@ -438,7 +438,7 @@ class TerminalApplications(BaseSDK):
|
|
438
438
|
r"""List all the terminal applications for a Moov Account.
|
439
439
|
|
440
440
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
441
|
-
you'll need to specify the `/
|
441
|
+
you'll need to specify the `/terminal-applications.read` scope.
|
442
442
|
|
443
443
|
:param request: The request object to send.
|
444
444
|
:param retries: Override the default retry configuration for this method
|
@@ -552,7 +552,7 @@ class TerminalApplications(BaseSDK):
|
|
552
552
|
r"""Fetch a specific terminal application.
|
553
553
|
|
554
554
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
555
|
-
you'll need to specify the `/
|
555
|
+
you'll need to specify the `/terminal-applications.read` scope.
|
556
556
|
|
557
557
|
:param terminal_application_id:
|
558
558
|
:param retries: Override the default retry configuration for this method
|
@@ -664,7 +664,7 @@ class TerminalApplications(BaseSDK):
|
|
664
664
|
r"""Fetch a specific terminal application.
|
665
665
|
|
666
666
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
667
|
-
you'll need to specify the `/
|
667
|
+
you'll need to specify the `/terminal-applications.read` scope.
|
668
668
|
|
669
669
|
:param terminal_application_id:
|
670
670
|
:param retries: Override the default retry configuration for this method
|
@@ -776,7 +776,7 @@ class TerminalApplications(BaseSDK):
|
|
776
776
|
r"""Delete a specific terminal application.
|
777
777
|
|
778
778
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
779
|
-
you'll need to specify the `/
|
779
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
780
780
|
|
781
781
|
:param terminal_application_id:
|
782
782
|
:param retries: Override the default retry configuration for this method
|
@@ -900,7 +900,7 @@ class TerminalApplications(BaseSDK):
|
|
900
900
|
r"""Delete a specific terminal application.
|
901
901
|
|
902
902
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
903
|
-
you'll need to specify the `/
|
903
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
904
904
|
|
905
905
|
:param terminal_application_id:
|
906
906
|
:param retries: Override the default retry configuration for this method
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: moovio_sdk
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.2
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9
|
@@ -459,6 +459,25 @@ with Moov(
|
|
459
459
|
<details open>
|
460
460
|
<summary>Available methods</summary>
|
461
461
|
|
462
|
+
### [account_terminal_applications](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accountterminalapplications/README.md)
|
463
|
+
|
464
|
+
* [link](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accountterminalapplications/README.md#link) - Link an account with a terminal application.
|
465
|
+
|
466
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
467
|
+
you'll need to specify the `/accounts/{accountID}/terminal-applications.write` scope.
|
468
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accountterminalapplications/README.md#list) - Retrieve all terminal applications linked to a specific account.
|
469
|
+
|
470
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
471
|
+
you'll need to specify the `/accounts/{accountID}/terminal-applications.read` scope.
|
472
|
+
* [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accountterminalapplications/README.md#get) - Verifies if a specific Terminal Application is linked to an Account. This endpoint acts as a validation check for the link's existence.
|
473
|
+
|
474
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
475
|
+
you'll need to specify the `/accounts/{accountID}/terminal-applications.read` scope.
|
476
|
+
* [get_configuration](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accountterminalapplications/README.md#get_configuration) - Fetch the configuration for a given Terminal Application linked to a specific Account.
|
477
|
+
|
478
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
479
|
+
you'll need to specify the `/accounts/{accountID}/terminal-configuration.read` scope.
|
480
|
+
|
462
481
|
### [accounts](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md)
|
463
482
|
|
464
483
|
* [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/accounts/README.md#create) - You can create **business** or **individual** accounts for your users (i.e., customers, merchants) by passing the required
|
@@ -1153,26 +1172,19 @@ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
|
|
1153
1172
|
* [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#create) - Create a new terminal application.
|
1154
1173
|
|
1155
1174
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1156
|
-
you'll need to specify the `/
|
1175
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
1157
1176
|
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#list) - List all the terminal applications for a Moov Account.
|
1158
1177
|
|
1159
1178
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1160
|
-
you'll need to specify the `/
|
1179
|
+
you'll need to specify the `/terminal-applications.read` scope.
|
1161
1180
|
* [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#get) - Fetch a specific terminal application.
|
1162
1181
|
|
1163
1182
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1164
|
-
you'll need to specify the `/
|
1183
|
+
you'll need to specify the `/terminal-applications.read` scope.
|
1165
1184
|
* [delete](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalapplications/README.md#delete) - Delete a specific terminal application.
|
1166
1185
|
|
1167
1186
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1168
|
-
you'll need to specify the `/
|
1169
|
-
|
1170
|
-
### [terminal_configurations](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalconfigurations/README.md)
|
1171
|
-
|
1172
|
-
* [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/terminalconfigurations/README.md#get) - Fetch the configuration for a given Terminal Application
|
1173
|
-
|
1174
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1175
|
-
you'll need to specify the `/accounts/{accountID}/terminal-configuration.read` scope.
|
1187
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
1176
1188
|
|
1177
1189
|
### [transfers](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/transfers/README.md)
|
1178
1190
|
|
@@ -3,7 +3,8 @@ 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=udkwU7VAHt5AGKt6p1A14ZGQ0g_Ia4V0zmrCazArVUo,464
|
7
|
+
moovio_sdk/account_terminal_applications.py,sha256=7Td1lpM3mqBQGPLoU5fLWZKRII1CjWikuUdD5bll4NI,41863
|
7
8
|
moovio_sdk/accounts.py,sha256=owJJuChHd-iucAiR4JWlaMYD1oKvjzCYSO6rckje6vs,107907
|
8
9
|
moovio_sdk/adjustments.py,sha256=m7S8Vn0KB4bMaTQTX50sCPvNZr72kjA6DTLxeJ2U-fc,19272
|
9
10
|
moovio_sdk/apple_pay.py,sha256=D5agY7yrZrZEtuadtY0_oQq3bSRpTy_bUG90T0iXDck,60723
|
@@ -26,7 +27,7 @@ moovio_sdk/industries.py,sha256=7VputoHEST4GXazczXDWEYsSkfWkFJaTSXAEDx267Vo,1024
|
|
26
27
|
moovio_sdk/institutions.py,sha256=1CjxrmzYf0tAs2beUyYiVPO9w8jibwG-Ya9ifXifUG8,11238
|
27
28
|
moovio_sdk/issuing_transactions.py,sha256=ftaJUPR8vGuNVOf3oWgecZG7DQSYRZiHZTtRfXMacgc,53212
|
28
29
|
moovio_sdk/models/__init__.py,sha256=HRiFG5CV9y2HvWWQl_JQNbYTPme0UYR1Mhh13Qc-5jE,84
|
29
|
-
moovio_sdk/models/components/__init__.py,sha256=
|
30
|
+
moovio_sdk/models/components/__init__.py,sha256=djDZTOAspsKSAaelD76Ll_jAP8C8EqFbiok4U5gk_c4,52261
|
30
31
|
moovio_sdk/models/components/account.py,sha256=QejMoPHYyHF-6TRrUVKYyfD_6Qbl7lFVOEaE8zlOgmI,4181
|
31
32
|
moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
|
32
33
|
moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
|
@@ -235,6 +236,7 @@ moovio_sdk/models/components/issuingmerchantdata.py,sha256=Y8T-FTzpN_WCMYsqQWz68
|
|
235
236
|
moovio_sdk/models/components/issuingvelocitylimit.py,sha256=EAMkVPkcNzKoQnhNEP7hWxODIAr62KkFegtGOmGE8K8,808
|
236
237
|
moovio_sdk/models/components/issuingvelocitylimiterror.py,sha256=gDN82-mW3oJzxclhbhJBmSHtfMkPLrMuJt55kvk3cqI,458
|
237
238
|
moovio_sdk/models/components/jsonwebkey.py,sha256=Wvp9Crb2wNzFaU1f-C67kAkcA7md1gl_w-f6loVTw80,3068
|
239
|
+
moovio_sdk/models/components/linkaccountterminalapplication.py,sha256=cvkxJMHb0Hgky6G43fpSjOkDraftOtCI7s_sRkBVgZw,709
|
238
240
|
moovio_sdk/models/components/linkapplepay.py,sha256=gPYSG9s7zcAcRh5bbWqzKRXgyfv-WbwEnMGJZm7a84Q,2136
|
239
241
|
moovio_sdk/models/components/linkapplepaymentdata.py,sha256=hBwjtz_H2VbWek6oSH7JpN8NIZ0rxarUS6me7rzTFNE,1866
|
240
242
|
moovio_sdk/models/components/linkapplepaymentmethod.py,sha256=pOkR3OS9zVH86wA2ccEAJl3cLB32jadWJ7u9zyc5UdE,1183
|
@@ -388,7 +390,8 @@ moovio_sdk/models/components/wallettransaction.py,sha256=oVx_Vtmw0UmSGk_Mdw_DeFp
|
|
388
390
|
moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=Mh549qh9Sbr1QPOHZdyJAjhbdlcTP6uZS3ygHdALx5E,404
|
389
391
|
moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
|
390
392
|
moovio_sdk/models/components/wallettransactiontype.py,sha256=EiiCvg2dF1cYIIZ-5E-zzsrlJzr9rGL-le6Iz8kTD8w,1058
|
391
|
-
moovio_sdk/models/errors/__init__.py,sha256=
|
393
|
+
moovio_sdk/models/errors/__init__.py,sha256=Q-mT0CprEk9DlB04dgydIb1zfly0HSAH7BVAZfXmCVY,5588
|
394
|
+
moovio_sdk/models/errors/accountterminalapplicationerror.py,sha256=WG8srFSdwI4-cm--EYa8vC1JNL0oJJkyrW3KQWElQzg,742
|
392
395
|
moovio_sdk/models/errors/addcapabilitieserror.py,sha256=kdp29Khv0aN1bgoa7RXQxbFKDpGcXlPcwHID0JC1Mjw,684
|
393
396
|
moovio_sdk/models/errors/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
|
394
397
|
moovio_sdk/models/errors/assigncountrieserror.py,sha256=Zqd5o1rwkG7LuXxVJpvJ1olPsqsKCxD1ff9p8-U75qo,622
|
@@ -425,7 +428,7 @@ moovio_sdk/models/errors/updatepaymentlinkerror.py,sha256=FrRZvrNFtNBuaKyZKStjEM
|
|
425
428
|
moovio_sdk/models/errors/updateunderwritingerror.py,sha256=A8XDduhlAQo6xcZE29atSa7UsQ9uEg2xbbur-V1yUbg,2409
|
426
429
|
moovio_sdk/models/internal/__init__.py,sha256=6khoka0i1AXj5YsxEjzmIs1UYeD8DggU2Z69bLfmxvE,164
|
427
430
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
428
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
431
|
+
moovio_sdk/models/operations/__init__.py,sha256=Zh6SoI_8jYh1P2pwYrffigoVx8M56X-BUMPCj6t7b9A,63236
|
429
432
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
430
433
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
431
434
|
moovio_sdk/models/operations/cancelschedule.py,sha256=X0vmSDaW6vyM387Tf02KSBCZNggKxNYm_T0W5zJY494,2394
|
@@ -458,6 +461,7 @@ moovio_sdk/models/operations/disconnectaccount.py,sha256=1db9q5UeliMidNx9h4fGP5L
|
|
458
461
|
moovio_sdk/models/operations/generateendtoendkey.py,sha256=0G-6TSNNA7qDCJmGwYyYeCNy5zaPxey3lgQjYlwDo7U,2222
|
459
462
|
moovio_sdk/models/operations/getaccount.py,sha256=OEz8rcS2uYsbcgdWVdoFI2muroDGcqeIMYAALc2rxI0,2338
|
460
463
|
moovio_sdk/models/operations/getaccountcountries.py,sha256=CAFsZ8fAvLbl0yUn79FZYCukwfo8blFIx436sWEKpQY,2446
|
464
|
+
moovio_sdk/models/operations/getaccountterminalapplication.py,sha256=JfhP__WL0lxps_CcUqdAF06IDRufopp6fv9RZKtmN1s,2759
|
461
465
|
moovio_sdk/models/operations/getadjustment.py,sha256=nXzv2N-m_-0U_9_ehO3SfQbUJRjZahwhMpfSl1biyMA,2571
|
462
466
|
moovio_sdk/models/operations/getapplepaymerchantdomains.py,sha256=1YyucKlsFEz1pulzcGH-j92z5ePDVKjM3fgKJljPQfQ,2661
|
463
467
|
moovio_sdk/models/operations/getavatar.py,sha256=tBGttLfllmfdy8AxGfGYNrT1cBi0-kfiuhUmI2fqWRk,2470
|
@@ -498,10 +502,12 @@ moovio_sdk/models/operations/getwallettransaction.py,sha256=V-Q1fac_DX6COQ_yzRli
|
|
498
502
|
moovio_sdk/models/operations/initiatebankaccountverification.py,sha256=Y0pWpajoaef2jGYvMIcy-6kGgQaCvLgLcAUIvkEQen8,3688
|
499
503
|
moovio_sdk/models/operations/initiatemicrodeposits.py,sha256=KV55DcpYWx5rKRgzVHXBPa3-hudOdpoeVLVtxVVj33U,2447
|
500
504
|
moovio_sdk/models/operations/initiaterefund.py,sha256=jCQj6dYU0WGqbDdJV876qVOhbg7sPuI-Qc0PpQSP9m0,4951
|
505
|
+
moovio_sdk/models/operations/linkaccountterminalapplication.py,sha256=shc1xlTDSviTTDPxMu9qaclrPLEOhNu_ybzT_r9kmBs,2997
|
501
506
|
moovio_sdk/models/operations/linkapplepaytoken.py,sha256=EvfviwK6pfngiD_aVYiieODw9AF8NmgSa1uMevCf9hA,2947
|
502
507
|
moovio_sdk/models/operations/linkbankaccount.py,sha256=BlLa8ZqMjjEgJF083GE425l0Hu3ppivNWGYf3-p7vBw,3878
|
503
508
|
moovio_sdk/models/operations/linkcard.py,sha256=-4Yi9kRAfHgMhPLNqZxAYjV8eh3P7VZYQb92xmqf7ug,3718
|
504
509
|
moovio_sdk/models/operations/listaccounts.py,sha256=j1mplRYfzRIYNuxFUG7juJv6tOIO1XV91c3jRaq53es,6584
|
510
|
+
moovio_sdk/models/operations/listaccountterminalapplications.py,sha256=inDKgs9govCB0P7aT71OCJyjAe2jz_jsT0nO2HhWhL0,2557
|
505
511
|
moovio_sdk/models/operations/listadjustments.py,sha256=zCe-wryS5XbW75HnaH5UYKovfkW9LiNiGhi6LjWVDtw,2752
|
506
512
|
moovio_sdk/models/operations/listbankaccounts.py,sha256=wj8-E1aGn51EJBmdyxm97WEFJXIdxiHeAISmHKpRD4Q,2410
|
507
513
|
moovio_sdk/models/operations/listcapabilities.py,sha256=u_F8g_Hm4sWXZHPd6GuVOvVTwgvyAL3YXtTrzTFvF68,2404
|
@@ -566,11 +572,10 @@ moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
566
572
|
moovio_sdk/receipts.py,sha256=9lLgl2K87xsdMJSOqUIkdWyTgMSN0edTjLcmz3ghvVU,20688
|
567
573
|
moovio_sdk/representatives.py,sha256=nmDgxhxxfHtE8Li-F0zk9kUuq33cR9fEibue2zJ6nO0,64454
|
568
574
|
moovio_sdk/scheduling.py,sha256=-i2mkiwWLjz3ZjWEPvO6U6nZwd7V0gxr48r-955li8k,65653
|
569
|
-
moovio_sdk/sdk.py,sha256=
|
575
|
+
moovio_sdk/sdk.py,sha256=N_Qm-P2hwu_8VkrropsIpbHn8fOjfpp9mnDAb6mN1B8,10308
|
570
576
|
moovio_sdk/sdkconfiguration.py,sha256=7NP1kNUcms-14o77cdoPmV7ZGWTtCLqqMTWN6pdwm-8,1822
|
571
577
|
moovio_sdk/sweeps.py,sha256=6QLuQRTQRRQ3qRyG9ZBPz1fkK3tnZeRAg_0YK6Scdts,66711
|
572
|
-
moovio_sdk/terminal_applications.py,sha256=
|
573
|
-
moovio_sdk/terminal_configurations.py,sha256=6gqd2Syq1cHSFarTLRFwpzPfm06mK90T53wI594BhGw,10205
|
578
|
+
moovio_sdk/terminal_applications.py,sha256=lOnAQYqYRoNvE6c6p7YZi2OFeer8I27tQhtX5w6oyiY,42830
|
574
579
|
moovio_sdk/transfers.py,sha256=aYGm2hNcuSgU0Z-iCxnRTQcT1NFo6wqewk6eyF9caPE,133138
|
575
580
|
moovio_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
576
581
|
moovio_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
@@ -592,6 +597,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
592
597
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
593
598
|
moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
|
594
599
|
moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
|
595
|
-
moovio_sdk-0.4.
|
596
|
-
moovio_sdk-0.4.
|
597
|
-
moovio_sdk-0.4.
|
600
|
+
moovio_sdk-0.4.2.dist-info/METADATA,sha256=3ZCWOd-UvxsLGgWDCf69UT5Vcb-uvk01p7ZOJr2aB0M,105514
|
601
|
+
moovio_sdk-0.4.2.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
602
|
+
moovio_sdk-0.4.2.dist-info/RECORD,,
|