moovio_sdk 0.3.10__py3-none-any.whl → 0.3.11__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 +9 -0
- moovio_sdk/models/components/debitholdperiod.py +2 -2
- moovio_sdk/models/components/partialscheduleaccount.py +21 -0
- moovio_sdk/models/components/schedulelistresponse.py +79 -0
- moovio_sdk/models/operations/__init__.py +2 -0
- moovio_sdk/models/operations/listschedules.py +16 -3
- moovio_sdk/scheduling.py +10 -4
- moovio_sdk/utils/serializers.py +1 -1
- {moovio_sdk-0.3.10.dist-info → moovio_sdk-0.3.11.dist-info}/METADATA +2 -2
- {moovio_sdk-0.3.10.dist-info → moovio_sdk-0.3.11.dist-info}/RECORD +12 -10
- {moovio_sdk-0.3.10.dist-info → moovio_sdk-0.3.11.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.11"
|
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.548.1"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.3.11 2.548.1 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -438,6 +438,10 @@ from .onboardingpartneraccount import (
|
|
438
438
|
OnboardingPartnerAccount,
|
439
439
|
OnboardingPartnerAccountTypedDict,
|
440
440
|
)
|
441
|
+
from .partialscheduleaccount import (
|
442
|
+
PartialScheduleAccount,
|
443
|
+
PartialScheduleAccountTypedDict,
|
444
|
+
)
|
441
445
|
from .partnerpricing import PartnerPricing, PartnerPricingTypedDict
|
442
446
|
from .partnerpricingagreement import (
|
443
447
|
PartnerPricingAgreement,
|
@@ -581,6 +585,7 @@ from .rtprejectioncode import RTPRejectionCode
|
|
581
585
|
from .rtptransactiondetails import RTPTransactionDetails, RTPTransactionDetailsTypedDict
|
582
586
|
from .rtptransactionstatus import RTPTransactionStatus
|
583
587
|
from .runtransfer import RunTransfer, RunTransferTypedDict
|
588
|
+
from .schedulelistresponse import ScheduleListResponse, ScheduleListResponseTypedDict
|
584
589
|
from .schedulepaymentmethod import (
|
585
590
|
AchDetails,
|
586
591
|
AchDetailsTypedDict,
|
@@ -1148,6 +1153,8 @@ __all__ = [
|
|
1148
1153
|
"OnboardingInviteTypedDict",
|
1149
1154
|
"OnboardingPartnerAccount",
|
1150
1155
|
"OnboardingPartnerAccountTypedDict",
|
1156
|
+
"PartialScheduleAccount",
|
1157
|
+
"PartialScheduleAccountTypedDict",
|
1151
1158
|
"PartnerPricing",
|
1152
1159
|
"PartnerPricingAgreement",
|
1153
1160
|
"PartnerPricingAgreementTypedDict",
|
@@ -1286,6 +1293,8 @@ __all__ = [
|
|
1286
1293
|
"RunTransfer",
|
1287
1294
|
"RunTransferTypedDict",
|
1288
1295
|
"SECCode",
|
1296
|
+
"ScheduleListResponse",
|
1297
|
+
"ScheduleListResponseTypedDict",
|
1289
1298
|
"SchedulePaymentMethod",
|
1290
1299
|
"SchedulePaymentMethodTypedDict",
|
1291
1300
|
"ScheduleResponse",
|
@@ -8,5 +8,5 @@ class DebitHoldPeriod(str, Enum):
|
|
8
8
|
r"""An optional override of your default ACH hold period in banking days. The hold period must be longer than or equal to your default setting."""
|
9
9
|
|
10
10
|
NO_HOLD = "no-hold"
|
11
|
-
|
12
|
-
|
11
|
+
ONE_MINUS_DAY = "1-day"
|
12
|
+
TWO_MINUS_DAYS = "2-days"
|
@@ -0,0 +1,21 @@
|
|
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 import Optional
|
7
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
8
|
+
|
9
|
+
|
10
|
+
class PartialScheduleAccountTypedDict(TypedDict):
|
11
|
+
account_id: str
|
12
|
+
display_name: str
|
13
|
+
email: NotRequired[str]
|
14
|
+
|
15
|
+
|
16
|
+
class PartialScheduleAccount(BaseModel):
|
17
|
+
account_id: Annotated[str, pydantic.Field(alias="accountID")]
|
18
|
+
|
19
|
+
display_name: Annotated[str, pydantic.Field(alias="displayName")]
|
20
|
+
|
21
|
+
email: Optional[str] = None
|
@@ -0,0 +1,79 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from .mode import Mode
|
5
|
+
from .occurrencesresponse import OccurrencesResponse, OccurrencesResponseTypedDict
|
6
|
+
from .partialscheduleaccount import (
|
7
|
+
PartialScheduleAccount,
|
8
|
+
PartialScheduleAccountTypedDict,
|
9
|
+
)
|
10
|
+
from .recur import Recur, RecurTypedDict
|
11
|
+
from datetime import datetime
|
12
|
+
from moovio_sdk.types import BaseModel
|
13
|
+
import pydantic
|
14
|
+
from typing import List, Optional
|
15
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
16
|
+
|
17
|
+
|
18
|
+
class ScheduleListResponseTypedDict(TypedDict):
|
19
|
+
destination_account_id: str
|
20
|
+
mode: Mode
|
21
|
+
r"""The operating mode for an account."""
|
22
|
+
owner_account_id: str
|
23
|
+
partner_account_id: str
|
24
|
+
schedule_id: str
|
25
|
+
source_account_id: str
|
26
|
+
created_on: datetime
|
27
|
+
updated_on: datetime
|
28
|
+
description: NotRequired[str]
|
29
|
+
r"""Simple description to place on the transfer."""
|
30
|
+
occurrences: NotRequired[List[OccurrencesResponseTypedDict]]
|
31
|
+
recur: NotRequired[RecurTypedDict]
|
32
|
+
r"""Defines configuration for recurring transfers."""
|
33
|
+
disabled_on: NotRequired[datetime]
|
34
|
+
source_account: NotRequired[PartialScheduleAccountTypedDict]
|
35
|
+
destination_account: NotRequired[PartialScheduleAccountTypedDict]
|
36
|
+
partner_account: NotRequired[PartialScheduleAccountTypedDict]
|
37
|
+
|
38
|
+
|
39
|
+
class ScheduleListResponse(BaseModel):
|
40
|
+
destination_account_id: Annotated[str, pydantic.Field(alias="destinationAccountID")]
|
41
|
+
|
42
|
+
mode: Mode
|
43
|
+
r"""The operating mode for an account."""
|
44
|
+
|
45
|
+
owner_account_id: Annotated[str, pydantic.Field(alias="ownerAccountID")]
|
46
|
+
|
47
|
+
partner_account_id: Annotated[str, pydantic.Field(alias="partnerAccountID")]
|
48
|
+
|
49
|
+
schedule_id: Annotated[str, pydantic.Field(alias="scheduleID")]
|
50
|
+
|
51
|
+
source_account_id: Annotated[str, pydantic.Field(alias="sourceAccountID")]
|
52
|
+
|
53
|
+
created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
|
54
|
+
|
55
|
+
updated_on: Annotated[datetime, pydantic.Field(alias="updatedOn")]
|
56
|
+
|
57
|
+
description: Optional[str] = None
|
58
|
+
r"""Simple description to place on the transfer."""
|
59
|
+
|
60
|
+
occurrences: Optional[List[OccurrencesResponse]] = None
|
61
|
+
|
62
|
+
recur: Optional[Recur] = None
|
63
|
+
r"""Defines configuration for recurring transfers."""
|
64
|
+
|
65
|
+
disabled_on: Annotated[Optional[datetime], pydantic.Field(alias="disabledOn")] = (
|
66
|
+
None
|
67
|
+
)
|
68
|
+
|
69
|
+
source_account: Annotated[
|
70
|
+
Optional[PartialScheduleAccount], pydantic.Field(alias="sourceAccount")
|
71
|
+
] = None
|
72
|
+
|
73
|
+
destination_account: Annotated[
|
74
|
+
Optional[PartialScheduleAccount], pydantic.Field(alias="destinationAccount")
|
75
|
+
] = None
|
76
|
+
|
77
|
+
partner_account: Annotated[
|
78
|
+
Optional[PartialScheduleAccount], pydantic.Field(alias="partnerAccount")
|
79
|
+
] = None
|
@@ -789,6 +789,7 @@ from .listrepresentatives import (
|
|
789
789
|
ListRepresentativesResponseTypedDict,
|
790
790
|
)
|
791
791
|
from .listschedules import (
|
792
|
+
Hydrate,
|
792
793
|
ListSchedulesGlobals,
|
793
794
|
ListSchedulesGlobalsTypedDict,
|
794
795
|
ListSchedulesRequest,
|
@@ -1445,6 +1446,7 @@ __all__ = [
|
|
1445
1446
|
"GetWalletTransactionRequestTypedDict",
|
1446
1447
|
"GetWalletTransactionResponse",
|
1447
1448
|
"GetWalletTransactionResponseTypedDict",
|
1449
|
+
"Hydrate",
|
1448
1450
|
"InitiateBankAccountVerificationGlobals",
|
1449
1451
|
"InitiateBankAccountVerificationGlobalsTypedDict",
|
1450
1452
|
"InitiateBankAccountVerificationRequest",
|
@@ -1,7 +1,10 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
|
-
from
|
4
|
+
from enum import Enum
|
5
|
+
from moovio_sdk.models.components import (
|
6
|
+
schedulelistresponse as components_schedulelistresponse,
|
7
|
+
)
|
5
8
|
from moovio_sdk.types import BaseModel
|
6
9
|
from moovio_sdk.utils import (
|
7
10
|
FieldMetadata,
|
@@ -46,10 +49,15 @@ class ListSchedulesGlobals(BaseModel):
|
|
46
49
|
"""
|
47
50
|
|
48
51
|
|
52
|
+
class Hydrate(str, Enum):
|
53
|
+
ACCOUNTS = "accounts"
|
54
|
+
|
55
|
+
|
49
56
|
class ListSchedulesRequestTypedDict(TypedDict):
|
50
57
|
account_id: str
|
51
58
|
skip: NotRequired[int]
|
52
59
|
count: NotRequired[int]
|
60
|
+
hydrate: NotRequired[Hydrate]
|
53
61
|
|
54
62
|
|
55
63
|
class ListSchedulesRequest(BaseModel):
|
@@ -69,13 +77,18 @@ class ListSchedulesRequest(BaseModel):
|
|
69
77
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
70
78
|
] = None
|
71
79
|
|
80
|
+
hydrate: Annotated[
|
81
|
+
Optional[Hydrate],
|
82
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
83
|
+
] = None
|
84
|
+
|
72
85
|
|
73
86
|
class ListSchedulesResponseTypedDict(TypedDict):
|
74
87
|
headers: Dict[str, List[str]]
|
75
|
-
result: List[
|
88
|
+
result: List[components_schedulelistresponse.ScheduleListResponseTypedDict]
|
76
89
|
|
77
90
|
|
78
91
|
class ListSchedulesResponse(BaseModel):
|
79
92
|
headers: Dict[str, List[str]]
|
80
93
|
|
81
|
-
result: List[
|
94
|
+
result: List[components_schedulelistresponse.ScheduleListResponse]
|
moovio_sdk/scheduling.py
CHANGED
@@ -314,12 +314,13 @@ class Scheduling(BaseSDK):
|
|
314
314
|
account_id: str,
|
315
315
|
skip: Optional[int] = None,
|
316
316
|
count: Optional[int] = None,
|
317
|
+
hydrate: Optional[operations.Hydrate] = None,
|
317
318
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
318
319
|
server_url: Optional[str] = None,
|
319
320
|
timeout_ms: Optional[int] = None,
|
320
321
|
http_headers: Optional[Mapping[str, str]] = None,
|
321
322
|
) -> operations.ListSchedulesResponse:
|
322
|
-
r"""Describes a list of schedules associated with an account.
|
323
|
+
r"""Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
|
323
324
|
|
324
325
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
325
326
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -327,6 +328,7 @@ class Scheduling(BaseSDK):
|
|
327
328
|
:param account_id:
|
328
329
|
:param skip:
|
329
330
|
:param count:
|
331
|
+
:param hydrate:
|
330
332
|
:param retries: Override the default retry configuration for this method
|
331
333
|
:param server_url: Override the default server URL for this method
|
332
334
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
@@ -345,6 +347,7 @@ class Scheduling(BaseSDK):
|
|
345
347
|
request = operations.ListSchedulesRequest(
|
346
348
|
skip=skip,
|
347
349
|
count=count,
|
350
|
+
hydrate=hydrate,
|
348
351
|
account_id=account_id,
|
349
352
|
)
|
350
353
|
|
@@ -392,7 +395,7 @@ class Scheduling(BaseSDK):
|
|
392
395
|
if utils.match_response(http_res, "200", "application/json"):
|
393
396
|
return operations.ListSchedulesResponse(
|
394
397
|
result=utils.unmarshal_json(
|
395
|
-
http_res.text, List[components.
|
398
|
+
http_res.text, List[components.ScheduleListResponse]
|
396
399
|
),
|
397
400
|
headers=utils.get_response_headers(http_res.headers),
|
398
401
|
)
|
@@ -432,12 +435,13 @@ class Scheduling(BaseSDK):
|
|
432
435
|
account_id: str,
|
433
436
|
skip: Optional[int] = None,
|
434
437
|
count: Optional[int] = None,
|
438
|
+
hydrate: Optional[operations.Hydrate] = None,
|
435
439
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
436
440
|
server_url: Optional[str] = None,
|
437
441
|
timeout_ms: Optional[int] = None,
|
438
442
|
http_headers: Optional[Mapping[str, str]] = None,
|
439
443
|
) -> operations.ListSchedulesResponse:
|
440
|
-
r"""Describes a list of schedules associated with an account.
|
444
|
+
r"""Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
|
441
445
|
|
442
446
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
443
447
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -445,6 +449,7 @@ class Scheduling(BaseSDK):
|
|
445
449
|
:param account_id:
|
446
450
|
:param skip:
|
447
451
|
:param count:
|
452
|
+
:param hydrate:
|
448
453
|
:param retries: Override the default retry configuration for this method
|
449
454
|
:param server_url: Override the default server URL for this method
|
450
455
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
@@ -463,6 +468,7 @@ class Scheduling(BaseSDK):
|
|
463
468
|
request = operations.ListSchedulesRequest(
|
464
469
|
skip=skip,
|
465
470
|
count=count,
|
471
|
+
hydrate=hydrate,
|
466
472
|
account_id=account_id,
|
467
473
|
)
|
468
474
|
|
@@ -510,7 +516,7 @@ class Scheduling(BaseSDK):
|
|
510
516
|
if utils.match_response(http_res, "200", "application/json"):
|
511
517
|
return operations.ListSchedulesResponse(
|
512
518
|
result=utils.unmarshal_json(
|
513
|
-
http_res.text, List[components.
|
519
|
+
http_res.text, List[components.ScheduleListResponse]
|
514
520
|
),
|
515
521
|
headers=utils.get_response_headers(http_res.headers),
|
516
522
|
)
|
moovio_sdk/utils/serializers.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: moovio_sdk
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.11
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9
|
@@ -1100,7 +1100,7 @@ you'll need to specify the `/accounts/{accountID}/representatives.write` scope.
|
|
1100
1100
|
|
1101
1101
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1102
1102
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
1103
|
-
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#list) - Describes a list of schedules associated with an account.
|
1103
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/scheduling/README.md#list) - Describes a list of schedules associated with an account. Append the `hydrate=accounts` query parameter to include partial account details in the response.
|
1104
1104
|
|
1105
1105
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1106
1106
|
you'll need to specify the `/accounts/{accountID}/transfers.read` scope.
|
@@ -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=uB4Gj-Wih4DcXjOYFx7uG9hk6uPrclMoAQI8lfPRGbw,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=4kYmt5mDzVkXGhl4Adlh5gQOy1eChTcbN0B2g-3-yJw,50896
|
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
|
@@ -162,7 +162,7 @@ moovio_sdk/models/components/createtransfersourceach.py,sha256=7WeF6YEoEvC-Dfn4m
|
|
162
162
|
moovio_sdk/models/components/createtransfersourcecard.py,sha256=hCUSzjPw6NyPLMEnSLjVGbMqhrSk55hwBU4PE7YD2Lc,1452
|
163
163
|
moovio_sdk/models/components/customersupport.py,sha256=VzZ7vBAKZC9q9KDDCXuH8EenEFiu3bGiOuCAvcHfHYE,1124
|
164
164
|
moovio_sdk/models/components/customersupporterror.py,sha256=0tHko8wHUGwaEcPq7lOgZyZbZ20Nuf2eJeRiIaBqP5U,768
|
165
|
-
moovio_sdk/models/components/debitholdperiod.py,sha256=
|
165
|
+
moovio_sdk/models/components/debitholdperiod.py,sha256=nAcdMuNrf-6bcXsPf68y0kfEx5qrS7b4OMQIOh-O1o0,400
|
166
166
|
moovio_sdk/models/components/disbursementpaymentmethodtype.py,sha256=RoBMOcxI6SvUfDiq2VR8_Dw7r4ksSlcZEpFgeG4aKQ0,398
|
167
167
|
moovio_sdk/models/components/displayoptionserror.py,sha256=1s3Pbi9-bPDh-8jWqI9r7tOKWz3cBltbWk_KCWTGxQE,621
|
168
168
|
moovio_sdk/models/components/dispute.py,sha256=82IXEi5E2s2aSRJpH3k1hvL-sp0sRMZkiWxg3wxqp2Y,2731
|
@@ -255,6 +255,7 @@ moovio_sdk/models/components/occurrencestatus.py,sha256=7dCN7i_c5_eL-gXpkT-ZL6dJ
|
|
255
255
|
moovio_sdk/models/components/onboardinginvite.py,sha256=0JnZR0c6I-lmGo1OvSJakBGJC9W7ybDdCR_nglwzwlE,3790
|
256
256
|
moovio_sdk/models/components/onboardinginviterequest.py,sha256=7xl0dxgF7dNKNZrtIPX3jrYVfJQrHKEQZ3YFPT21aAM,2578
|
257
257
|
moovio_sdk/models/components/onboardingpartneraccount.py,sha256=r5WjWw0x0ScKm4_CwX2jS7cDFn9K7bedVC50kNzITVI,1110
|
258
|
+
moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS7CsA_MeablSzM7w4k4UR565zQ,590
|
258
259
|
moovio_sdk/models/components/partnerpricing.py,sha256=eDiJz9xX0TK8LHAxTWk6yV3z6Df6LLysoj-bCYa1ztU,1561
|
259
260
|
moovio_sdk/models/components/partnerpricingagreement.py,sha256=dRtjzYLOGSniDg2i7RVB5y9-DUCHH3_Qb_QoMw6GziA,1930
|
260
261
|
moovio_sdk/models/components/patchaccount.py,sha256=9JhHL190PwO9HAVc4maUv5iNX-tU7wtwIFkc5B2-2Wo,4518
|
@@ -320,6 +321,7 @@ moovio_sdk/models/components/rtprejectioncode.py,sha256=dsTWcHKMmR4SwsWqxEVZEl6U
|
|
320
321
|
moovio_sdk/models/components/rtptransactiondetails.py,sha256=pjcNxWtz1-EaEebpuhs4zNoHyDmQotbQJXg6shUCjF4,1908
|
321
322
|
moovio_sdk/models/components/rtptransactionstatus.py,sha256=aWbQtbT8CJOU-FrbzcotCFPP5h71RxbTyXcBtlDCFZo,369
|
322
323
|
moovio_sdk/models/components/runtransfer.py,sha256=6CxqaWcJT6UvhUsJGw51IwQc6pkPvtr3wwIuEIkq7Hk,998
|
324
|
+
moovio_sdk/models/components/schedulelistresponse.py,sha256=QxRerekqW8XFMdP7jOq-YPkunEnWt1nNY-0rtImjfYY,2718
|
323
325
|
moovio_sdk/models/components/schedulepaymentmethod.py,sha256=-DFfpY3Ssb0Kqy5YfFUuAhEFCHKX15zlW1q4Vv90XMA,2055
|
324
326
|
moovio_sdk/models/components/scheduleresponse.py,sha256=1jls_1PqzU9waltr3wrclZDk4G8rlaxQxIppij5UQw8,2017
|
325
327
|
moovio_sdk/models/components/seccode.py,sha256=Vw9VrvvHQCcuCarjvmywDbV5EzTb58SYKDNznx4TFT0,286
|
@@ -416,7 +418,7 @@ moovio_sdk/models/errors/updatepaymentlinkerror.py,sha256=FrRZvrNFtNBuaKyZKStjEM
|
|
416
418
|
moovio_sdk/models/errors/updateunderwritingerror.py,sha256=A8XDduhlAQo6xcZE29atSa7UsQ9uEg2xbbur-V1yUbg,2409
|
417
419
|
moovio_sdk/models/internal/__init__.py,sha256=6khoka0i1AXj5YsxEjzmIs1UYeD8DggU2Z69bLfmxvE,164
|
418
420
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
419
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
421
|
+
moovio_sdk/models/operations/__init__.py,sha256=aqeBjIQExkMnXJqQFeonkEC87Di8CQW5hMnhzO1DY6w,60778
|
420
422
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
421
423
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
422
424
|
moovio_sdk/models/operations/cancelschedule.py,sha256=X0vmSDaW6vyM387Tf02KSBCZNggKxNYm_T0W5zJY494,2394
|
@@ -516,7 +518,7 @@ moovio_sdk/models/operations/listpaymentmethods.py,sha256=fiEvZLA4uVk7r98a6naeTZ
|
|
516
518
|
moovio_sdk/models/operations/listreceipts.py,sha256=tQmOr0qNz-OAC_6MZv_WSPQoTq_XKXcFdLT3tcvfFY0,2494
|
517
519
|
moovio_sdk/models/operations/listrefunds.py,sha256=sVXcY-yN_NYHfeTeI9cwZR9GC3H2aUkGc9YPxcvjlIE,2708
|
518
520
|
moovio_sdk/models/operations/listrepresentatives.py,sha256=_8WjNSUx2wmZnR5Ggp5RHgPPLg9AEwHFKIOs7McR4BQ,2506
|
519
|
-
moovio_sdk/models/operations/listschedules.py,sha256=
|
521
|
+
moovio_sdk/models/operations/listschedules.py,sha256=EUMVtQGVBLGU8xx56WnfmzVRNzN9GSoxZVwm5bD_IzQ,3077
|
520
522
|
moovio_sdk/models/operations/listsweepconfigs.py,sha256=FyXZ5L01-nF52nj4WCqKEwGEERoZtTzW9KJxnIwb0wA,2410
|
521
523
|
moovio_sdk/models/operations/listsweeps.py,sha256=RcjWsbeutBY68KA1J3NevCjcAgrZOnl60xQA6RWgSdo,3659
|
522
524
|
moovio_sdk/models/operations/listterminalapplications.py,sha256=auLtS7-MJZStu2qvn6drroaW5Hfyb7lF2ELdN4Ue-88,2327
|
@@ -555,7 +557,7 @@ moovio_sdk/ping.py,sha256=fYM0yYDBEoo6Do55oNh_mLqelBxKpofv7tOrzVJioOc,9539
|
|
555
557
|
moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
556
558
|
moovio_sdk/receipts.py,sha256=6Hv1amMhDot9ElpMqsGRSQhinmQAN5e79-DFgnKH0dY,21098
|
557
559
|
moovio_sdk/representatives.py,sha256=nmDgxhxxfHtE8Li-F0zk9kUuq33cR9fEibue2zJ6nO0,64454
|
558
|
-
moovio_sdk/scheduling.py,sha256
|
560
|
+
moovio_sdk/scheduling.py,sha256=-i2mkiwWLjz3ZjWEPvO6U6nZwd7V0gxr48r-955li8k,65653
|
559
561
|
moovio_sdk/sdk.py,sha256=J6rXCBZ4_c5GE3duJR9mb2FExgDfFo9Qe2ixxUOXIvw,10045
|
560
562
|
moovio_sdk/sdkconfiguration.py,sha256=7NP1kNUcms-14o77cdoPmV7ZGWTtCLqqMTWN6pdwm-8,1822
|
561
563
|
moovio_sdk/sweeps.py,sha256=6QLuQRTQRRQ3qRyG9ZBPz1fkK3tnZeRAg_0YK6Scdts,66711
|
@@ -576,11 +578,11 @@ moovio_sdk/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHE
|
|
576
578
|
moovio_sdk/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
577
579
|
moovio_sdk/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
578
580
|
moovio_sdk/utils/security.py,sha256=BsH7JYMMBVykWbbF_zg6piMh0R8TPidQ8D2_RbzlKs8,6104
|
579
|
-
moovio_sdk/utils/serializers.py,sha256=
|
581
|
+
moovio_sdk/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg68,5198
|
580
582
|
moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
581
583
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
582
584
|
moovio_sdk/wallet_transactions.py,sha256=gP5AYXIn4LkCtm1ncheuWGxZCK0d67b20UIDheo_Khg,24943
|
583
585
|
moovio_sdk/wallets.py,sha256=5RcHiuHxBDi2YmK0V83s1hwEN-29aFar17LsQIYXpo0,19250
|
584
|
-
moovio_sdk-0.3.
|
585
|
-
moovio_sdk-0.3.
|
586
|
-
moovio_sdk-0.3.
|
586
|
+
moovio_sdk-0.3.11.dist-info/METADATA,sha256=uOOhRuELUKpqIXFz0O6AkNsyhObrEqK5JYeGP7FujDk,103791
|
587
|
+
moovio_sdk-0.3.11.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
588
|
+
moovio_sdk-0.3.11.dist-info/RECORD,,
|
File without changes
|