moovio_sdk 0.13.22__py3-none-any.whl → 0.13.23__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/operations/cancelschedule.py +2 -0
- moovio_sdk/models/operations/createschedule.py +2 -0
- moovio_sdk/models/operations/updateschedule.py +2 -0
- moovio_sdk/scheduling.py +6 -6
- {moovio_sdk-0.13.22.dist-info → moovio_sdk-0.13.23.dist-info}/METADATA +1 -1
- {moovio_sdk-0.13.22.dist-info → moovio_sdk-0.13.23.dist-info}/RECORD +8 -8
- {moovio_sdk-0.13.22.dist-info → moovio_sdk-0.13.23.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.13.
|
6
|
+
__version__: str = "0.13.23"
|
7
7
|
__openapi_doc_version__: str = "latest"
|
8
|
-
__gen_version__: str = "2.
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.13.
|
8
|
+
__gen_version__: str = "2.686.7"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.13.23 2.686.7 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
@@ -42,6 +42,7 @@ class CancelScheduleGlobals(BaseModel):
|
|
42
42
|
|
43
43
|
class CancelScheduleRequestTypedDict(TypedDict):
|
44
44
|
account_id: str
|
45
|
+
r"""Your Moov account ID as the partner running the transfers."""
|
45
46
|
schedule_id: str
|
46
47
|
|
47
48
|
|
@@ -51,6 +52,7 @@ class CancelScheduleRequest(BaseModel):
|
|
51
52
|
pydantic.Field(alias="accountID"),
|
52
53
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
53
54
|
]
|
55
|
+
r"""Your Moov account ID as the partner running the transfers."""
|
54
56
|
|
55
57
|
schedule_id: Annotated[
|
56
58
|
str,
|
@@ -51,6 +51,7 @@ class CreateScheduleGlobals(BaseModel):
|
|
51
51
|
|
52
52
|
class CreateScheduleRequestTypedDict(TypedDict):
|
53
53
|
account_id: str
|
54
|
+
r"""Account ID of the account that will run the transfer."""
|
54
55
|
upsert_schedule: components_upsertschedule.UpsertScheduleTypedDict
|
55
56
|
|
56
57
|
|
@@ -60,6 +61,7 @@ class CreateScheduleRequest(BaseModel):
|
|
60
61
|
pydantic.Field(alias="accountID"),
|
61
62
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
62
63
|
]
|
64
|
+
r"""Account ID of the account that will run the transfer."""
|
63
65
|
|
64
66
|
upsert_schedule: Annotated[
|
65
67
|
components_upsertschedule.UpsertSchedule,
|
@@ -51,6 +51,7 @@ class UpdateScheduleGlobals(BaseModel):
|
|
51
51
|
|
52
52
|
class UpdateScheduleRequestTypedDict(TypedDict):
|
53
53
|
account_id: str
|
54
|
+
r"""Account ID of the account that will run the transfer."""
|
54
55
|
schedule_id: str
|
55
56
|
upsert_schedule: components_upsertschedule.UpsertScheduleTypedDict
|
56
57
|
|
@@ -61,6 +62,7 @@ class UpdateScheduleRequest(BaseModel):
|
|
61
62
|
pydantic.Field(alias="accountID"),
|
62
63
|
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
63
64
|
]
|
65
|
+
r"""Account ID of the account that will run the transfer."""
|
64
66
|
|
65
67
|
schedule_id: Annotated[
|
66
68
|
str,
|
moovio_sdk/scheduling.py
CHANGED
@@ -30,7 +30,7 @@ class Scheduling(BaseSDK):
|
|
30
30
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
31
31
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
32
32
|
|
33
|
-
:param account_id:
|
33
|
+
:param account_id: Account ID of the account that will run the transfer.
|
34
34
|
:param description: Simple description of what the schedule is.
|
35
35
|
:param occurrences:
|
36
36
|
:param recur: Defines configuration for recurring transfers.
|
@@ -165,7 +165,7 @@ class Scheduling(BaseSDK):
|
|
165
165
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
166
166
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
167
167
|
|
168
|
-
:param account_id:
|
168
|
+
:param account_id: Account ID of the account that will run the transfer.
|
169
169
|
:param description: Simple description of what the schedule is.
|
170
170
|
:param occurrences:
|
171
171
|
:param recur: Defines configuration for recurring transfers.
|
@@ -515,7 +515,7 @@ class Scheduling(BaseSDK):
|
|
515
515
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
516
516
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
517
517
|
|
518
|
-
:param account_id:
|
518
|
+
:param account_id: Account ID of the account that will run the transfer.
|
519
519
|
:param schedule_id:
|
520
520
|
:param description: Simple description of what the schedule is.
|
521
521
|
:param occurrences:
|
@@ -653,7 +653,7 @@ class Scheduling(BaseSDK):
|
|
653
653
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
654
654
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
655
655
|
|
656
|
-
:param account_id:
|
656
|
+
:param account_id: Account ID of the account that will run the transfer.
|
657
657
|
:param schedule_id:
|
658
658
|
:param description: Simple description of what the schedule is.
|
659
659
|
:param occurrences:
|
@@ -984,7 +984,7 @@ class Scheduling(BaseSDK):
|
|
984
984
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
985
985
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
986
986
|
|
987
|
-
:param account_id:
|
987
|
+
:param account_id: Your Moov account ID as the partner running the transfers.
|
988
988
|
:param schedule_id:
|
989
989
|
:param retries: Override the default retry configuration for this method
|
990
990
|
:param server_url: Override the default server URL for this method
|
@@ -1097,7 +1097,7 @@ class Scheduling(BaseSDK):
|
|
1097
1097
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
1098
1098
|
you'll need to specify the `/accounts/{accountID}/transfers.write` scope.
|
1099
1099
|
|
1100
|
-
:param account_id:
|
1100
|
+
:param account_id: Your Moov account ID as the partner running the transfers.
|
1101
1101
|
:param schedule_id:
|
1102
1102
|
:param retries: Override the default retry configuration for this method
|
1103
1103
|
:param server_url: Override the default server URL for this method
|
@@ -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=pey1VfR3PL3mdGi_e1l1MqsL69Y-Qx7CxDAAhr31ao0,468
|
7
7
|
moovio_sdk/account_terminal_applications.py,sha256=ldTg5uAukIAwfziQFgmuq6vlAsUPS5DqMkgdCx9bwn8,38522
|
8
8
|
moovio_sdk/accounts.py,sha256=IuMPB1CBZzkCWAnUSSrB4O5N9hnYq7DkavMGAbRDvNA,100656
|
9
9
|
moovio_sdk/adjustments.py,sha256=U2AtbA2k71S1IpwjJ96LT4SdGUDqR3JEgOSvMm9a2yU,17613
|
@@ -528,7 +528,7 @@ moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O
|
|
528
528
|
moovio_sdk/models/operations/__init__.py,sha256=ZaijMEtIZ0yngRe5DI5SPc1l2WbYcxUtHiJS5HQrhO0,123611
|
529
529
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
530
530
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
531
|
-
moovio_sdk/models/operations/cancelschedule.py,sha256=
|
531
|
+
moovio_sdk/models/operations/cancelschedule.py,sha256=7h3S-76QlIKdmdQUVHIId-Zay3tc8TVZqqg7SzaudCg,2534
|
532
532
|
moovio_sdk/models/operations/completebankaccountverification.py,sha256=ByED7fRFeh8foXFIO7LDxxnn5fo1Xx1Khch5nOlluDk,3237
|
533
533
|
moovio_sdk/models/operations/completemicrodeposits.py,sha256=dz4vogUzQRZwaNPUApeDRb1ZMADAvmhpnSCpiV4czic,3105
|
534
534
|
moovio_sdk/models/operations/createaccesstoken.py,sha256=-RVYV-OShQd5GqQWhjTAPohqSHHmX5Y4KCa8oOgDock,2087
|
@@ -542,7 +542,7 @@ moovio_sdk/models/operations/createpaymentlink.py,sha256=X7nqaUI7Gn0lYZ3ixtHC0Yf
|
|
542
542
|
moovio_sdk/models/operations/createreceipts.py,sha256=3h9Q8GZVq1kRa3-5PJDhCrzpBvTPALgHtVyF2tZKo-A,2123
|
543
543
|
moovio_sdk/models/operations/createrepresentative.py,sha256=Quz9O6hJWJCs42szxIlTETb9-jLoTTTBBdOfuG8komw,2883
|
544
544
|
moovio_sdk/models/operations/createreversal.py,sha256=nQIIp68Itf7mtVTpeIDrDUZWsKK6e4DwQEyAzIlM3VU,3395
|
545
|
-
moovio_sdk/models/operations/createschedule.py,sha256=
|
545
|
+
moovio_sdk/models/operations/createschedule.py,sha256=sDObx8s4YoJzQY3X1KX_XEIeyT5ENQserW_JNVcLn5A,2881
|
546
546
|
moovio_sdk/models/operations/createsweepconfig.py,sha256=mC-dbVIizvTJjYTygLrFOO-C9Uv8nMDlGrDfVboN6e8,2765
|
547
547
|
moovio_sdk/models/operations/createterminalapplication.py,sha256=n7mnj-ixVXSV8El7dVhwueNm4Pd8xTiTefI1oayrIGE,2188
|
548
548
|
moovio_sdk/models/operations/createterminalapplicationversion.py,sha256=GxgsRoTsJTusMZrPXSqA_sulpPyLtIxjJ1YHplv2yCg,2998
|
@@ -660,7 +660,7 @@ moovio_sdk/models/operations/updatedisputeevidence.py,sha256=wjOa9MYassR-3XC7Yjx
|
|
660
660
|
moovio_sdk/models/operations/updateissuedcard.py,sha256=UI7L6FqMsKy8-i5-nerol4OlijW8qUPbPF9PhtIQhUc,2930
|
661
661
|
moovio_sdk/models/operations/updatepaymentlink.py,sha256=EBUsG8CvC0x172C4WGQbaycxwSeaAO_LyvpWY3Ceii4,2973
|
662
662
|
moovio_sdk/models/operations/updaterepresentative.py,sha256=10HauPBO07U83M5fVvQoJN7x6qbmHFuVm3ESvUAKKc4,3166
|
663
|
-
moovio_sdk/models/operations/updateschedule.py,sha256=
|
663
|
+
moovio_sdk/models/operations/updateschedule.py,sha256=OsnpQKWyXbwf9GMTXNQKMw6keDjlWTL-RC9OfoqdUI8,3072
|
664
664
|
moovio_sdk/models/operations/updatesweepconfig.py,sha256=QGWPSl-B9LZKErikvREMUIrsJUfpU5hfdSlIKW567Fk,2959
|
665
665
|
moovio_sdk/models/operations/updateticket.py,sha256=u9wYzwGbnMJnO5eS68qnAERPS__HBqAaE8xNsCQaLCM,2848
|
666
666
|
moovio_sdk/models/operations/updatetransfer.py,sha256=mLQd8ZoxcIyJknpemdEn-PMMsfA4cBSku2qzlsY7eMc,2966
|
@@ -676,7 +676,7 @@ moovio_sdk/ping.py,sha256=qii7lLIZLK6G-A7MWTFEt7d51Iny3ru6Tu3J3k75VV8,8675
|
|
676
676
|
moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
677
677
|
moovio_sdk/receipts.py,sha256=ZyEDLX-fnxLDf3QmKA6nfKtHEUxOaOwDLDYr6PAuNYo,19035
|
678
678
|
moovio_sdk/representatives.py,sha256=3XG8tnLGs5pB8gDzMNgGCxiqcHp29vFSc12G7S-K3A8,60219
|
679
|
-
moovio_sdk/scheduling.py,sha256=
|
679
|
+
moovio_sdk/scheduling.py,sha256=NcTSaPBa43YTmxS02qYy-o8ItA61gMLEk1HAV9MV2nc,60890
|
680
680
|
moovio_sdk/sdk.py,sha256=9PhJ_WSLVeg8HDfviwTVIfpeyujXR83dyHtCvCB5B20,11998
|
681
681
|
moovio_sdk/sdkconfiguration.py,sha256=vvZHznUDI2m3Z8ddTKDFUXkQu4mNBGX8Q9Zx7XpR3WY,1665
|
682
682
|
moovio_sdk/support.py,sha256=OmxIcudl2fI5Ah6bBDDGtPO8WhbyXw9xPiigP9FmNrc,49911
|
@@ -705,6 +705,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
705
705
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
706
706
|
moovio_sdk/wallet_transactions.py,sha256=rWA4_DLFg6QegHSA1GCsCQWx2EfO12vimnvYZg0dRbc,23208
|
707
707
|
moovio_sdk/wallets.py,sha256=V5yUDAo42AG9AlkMsY_9_mmF65JJM-9ApLJdxqIIZLE,17591
|
708
|
-
moovio_sdk-0.13.
|
709
|
-
moovio_sdk-0.13.
|
710
|
-
moovio_sdk-0.13.
|
708
|
+
moovio_sdk-0.13.23.dist-info/METADATA,sha256=2HybPqGS-Hv_TtkDa45_36RIMoCyrg3eh3nzs3LVf_w,110998
|
709
|
+
moovio_sdk-0.13.23.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
710
|
+
moovio_sdk-0.13.23.dist-info/RECORD,,
|
File without changes
|