moovio_sdk 0.16.2__py3-none-any.whl → 0.17.0__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/account_terminal_applications.py +8 -8
- moovio_sdk/accounts.py +18 -18
- moovio_sdk/adjustments.py +4 -4
- moovio_sdk/apple_pay.py +10 -10
- moovio_sdk/authentication.py +4 -4
- moovio_sdk/avatars.py +2 -2
- moovio_sdk/bank_accounts.py +18 -18
- moovio_sdk/branding.py +8 -8
- moovio_sdk/capabilities.py +8 -8
- moovio_sdk/card_issuing.py +10 -10
- moovio_sdk/cards.py +10 -10
- moovio_sdk/disputes.py +22 -22
- moovio_sdk/end_to_end_encryption.py +4 -4
- moovio_sdk/enriched_address.py +2 -2
- moovio_sdk/enriched_profile.py +2 -2
- moovio_sdk/fee_plans.py +14 -14
- moovio_sdk/files.py +6 -6
- moovio_sdk/httpclient.py +0 -1
- moovio_sdk/images.py +833 -0
- moovio_sdk/industries.py +2 -2
- moovio_sdk/institutions.py +4 -4
- moovio_sdk/issuing_transactions.py +10 -10
- moovio_sdk/models/components/__init__.py +21 -0
- moovio_sdk/models/components/capabilityid.py +1 -0
- moovio_sdk/models/components/imagemetadata.py +40 -0
- moovio_sdk/models/components/paymentmethodswallet.py +15 -0
- moovio_sdk/models/components/sendfunds.py +6 -0
- moovio_sdk/models/components/sendfundserror.py +9 -0
- moovio_sdk/models/components/sendfundsinstantbank.py +18 -0
- moovio_sdk/models/components/sendfundsinstantbankerror.py +21 -0
- moovio_sdk/models/components/wallet.py +4 -4
- moovio_sdk/models/components/wallettype.py +2 -2
- moovio_sdk/models/operations/__init__.py +80 -0
- moovio_sdk/models/operations/deleteimage.py +67 -0
- moovio_sdk/models/operations/getimagemetadata.py +71 -0
- moovio_sdk/models/operations/getpublicimage.py +74 -0
- moovio_sdk/models/operations/listimagemetadata.py +64 -0
- moovio_sdk/onboarding.py +8 -8
- moovio_sdk/payment_links.py +12 -12
- moovio_sdk/payment_methods.py +4 -4
- moovio_sdk/ping.py +2 -2
- moovio_sdk/receipts.py +4 -4
- moovio_sdk/representatives.py +10 -10
- moovio_sdk/scheduling.py +12 -12
- moovio_sdk/sdk.py +3 -0
- moovio_sdk/statements.py +4 -4
- moovio_sdk/support.py +10 -10
- moovio_sdk/sweeps.py +12 -12
- moovio_sdk/terminal_applications.py +10 -10
- moovio_sdk/transfers.py +22 -22
- moovio_sdk/underwriting.py +6 -6
- moovio_sdk/wallet_transactions.py +4 -4
- moovio_sdk/wallets.py +8 -8
- {moovio_sdk-0.16.2.dist-info → moovio_sdk-0.17.0.dist-info}/METADATA +51 -45
- {moovio_sdk-0.16.2.dist-info → moovio_sdk-0.17.0.dist-info}/RECORD +57 -49
- {moovio_sdk-0.16.2.dist-info → moovio_sdk-0.17.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from moovio_sdk.models.components import imagemetadata as components_imagemetadata
|
|
5
|
+
from moovio_sdk.types import BaseModel
|
|
6
|
+
from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
|
|
7
|
+
import pydantic
|
|
8
|
+
from typing import Dict, List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class GetImageMetadataGlobalsTypedDict(TypedDict):
|
|
13
|
+
x_moov_version: NotRequired[str]
|
|
14
|
+
r"""Specify an API version.
|
|
15
|
+
|
|
16
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
17
|
+
- `YYYY` is the year
|
|
18
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
19
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
20
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
21
|
+
|
|
22
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class GetImageMetadataGlobals(BaseModel):
|
|
27
|
+
x_moov_version: Annotated[
|
|
28
|
+
Optional[str],
|
|
29
|
+
pydantic.Field(alias="x-moov-version"),
|
|
30
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
|
31
|
+
] = "v2024.01.00"
|
|
32
|
+
r"""Specify an API version.
|
|
33
|
+
|
|
34
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
35
|
+
- `YYYY` is the year
|
|
36
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
37
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
38
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
39
|
+
|
|
40
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class GetImageMetadataRequestTypedDict(TypedDict):
|
|
45
|
+
account_id: str
|
|
46
|
+
image_id: str
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class GetImageMetadataRequest(BaseModel):
|
|
50
|
+
account_id: Annotated[
|
|
51
|
+
str,
|
|
52
|
+
pydantic.Field(alias="accountID"),
|
|
53
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
image_id: Annotated[
|
|
57
|
+
str,
|
|
58
|
+
pydantic.Field(alias="imageID"),
|
|
59
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
class GetImageMetadataResponseTypedDict(TypedDict):
|
|
64
|
+
headers: Dict[str, List[str]]
|
|
65
|
+
result: components_imagemetadata.ImageMetadataTypedDict
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class GetImageMetadataResponse(BaseModel):
|
|
69
|
+
headers: Dict[str, List[str]]
|
|
70
|
+
|
|
71
|
+
result: components_imagemetadata.ImageMetadata
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
import httpx
|
|
5
|
+
from moovio_sdk.types import BaseModel
|
|
6
|
+
from moovio_sdk.utils import (
|
|
7
|
+
FieldMetadata,
|
|
8
|
+
HeaderMetadata,
|
|
9
|
+
PathParamMetadata,
|
|
10
|
+
QueryParamMetadata,
|
|
11
|
+
)
|
|
12
|
+
import pydantic
|
|
13
|
+
from typing import Dict, List, Optional, Union
|
|
14
|
+
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class GetPublicImageRequestTypedDict(TypedDict):
|
|
18
|
+
public_id: str
|
|
19
|
+
if_none_match: NotRequired[str]
|
|
20
|
+
size: NotRequired[str]
|
|
21
|
+
r"""Optional parameter to request a resized version of the image (WxH).
|
|
22
|
+
|
|
23
|
+
If either dimension is 0, the image will be scaled proportionally based on
|
|
24
|
+
the non-zero dimension. Dimensions are capped at 2048 pixels. A default size
|
|
25
|
+
of 400x400 will be used if this parameter is omitted.
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class GetPublicImageRequest(BaseModel):
|
|
30
|
+
public_id: Annotated[
|
|
31
|
+
str,
|
|
32
|
+
pydantic.Field(alias="publicID"),
|
|
33
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
if_none_match: Annotated[
|
|
37
|
+
Optional[str],
|
|
38
|
+
pydantic.Field(alias="if-none-match"),
|
|
39
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
|
40
|
+
] = None
|
|
41
|
+
|
|
42
|
+
size: Annotated[
|
|
43
|
+
Optional[str],
|
|
44
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=False)),
|
|
45
|
+
] = "400x400"
|
|
46
|
+
r"""Optional parameter to request a resized version of the image (WxH).
|
|
47
|
+
|
|
48
|
+
If either dimension is 0, the image will be scaled proportionally based on
|
|
49
|
+
the non-zero dimension. Dimensions are capped at 2048 pixels. A default size
|
|
50
|
+
of 400x400 will be used if this parameter is omitted.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
GetPublicImageResponseResultTypedDict = TypeAliasType(
|
|
55
|
+
"GetPublicImageResponseResultTypedDict",
|
|
56
|
+
Union[httpx.Response, httpx.Response, httpx.Response],
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
GetPublicImageResponseResult = TypeAliasType(
|
|
61
|
+
"GetPublicImageResponseResult",
|
|
62
|
+
Union[httpx.Response, httpx.Response, httpx.Response],
|
|
63
|
+
)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class GetPublicImageResponseTypedDict(TypedDict):
|
|
67
|
+
headers: Dict[str, List[str]]
|
|
68
|
+
result: GetPublicImageResponseResultTypedDict
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
class GetPublicImageResponse(BaseModel):
|
|
72
|
+
headers: Dict[str, List[str]]
|
|
73
|
+
|
|
74
|
+
result: GetPublicImageResponseResult
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from moovio_sdk.models.components import imagemetadata as components_imagemetadata
|
|
5
|
+
from moovio_sdk.types import BaseModel
|
|
6
|
+
from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
|
|
7
|
+
import pydantic
|
|
8
|
+
from typing import Dict, List, Optional
|
|
9
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ListImageMetadataGlobalsTypedDict(TypedDict):
|
|
13
|
+
x_moov_version: NotRequired[str]
|
|
14
|
+
r"""Specify an API version.
|
|
15
|
+
|
|
16
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
17
|
+
- `YYYY` is the year
|
|
18
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
19
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
20
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
21
|
+
|
|
22
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class ListImageMetadataGlobals(BaseModel):
|
|
27
|
+
x_moov_version: Annotated[
|
|
28
|
+
Optional[str],
|
|
29
|
+
pydantic.Field(alias="x-moov-version"),
|
|
30
|
+
FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
|
|
31
|
+
] = "v2024.01.00"
|
|
32
|
+
r"""Specify an API version.
|
|
33
|
+
|
|
34
|
+
API versioning follows the format `vYYYY.QQ.BB`, where
|
|
35
|
+
- `YYYY` is the year
|
|
36
|
+
- `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
|
|
37
|
+
- `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
|
|
38
|
+
- For example, `v2024.01.00` is the initial release of the first quarter of 2024.
|
|
39
|
+
|
|
40
|
+
The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class ListImageMetadataRequestTypedDict(TypedDict):
|
|
45
|
+
account_id: str
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
class ListImageMetadataRequest(BaseModel):
|
|
49
|
+
account_id: Annotated[
|
|
50
|
+
str,
|
|
51
|
+
pydantic.Field(alias="accountID"),
|
|
52
|
+
FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
class ListImageMetadataResponseTypedDict(TypedDict):
|
|
57
|
+
headers: Dict[str, List[str]]
|
|
58
|
+
result: List[components_imagemetadata.ImageMetadataTypedDict]
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class ListImageMetadataResponse(BaseModel):
|
|
62
|
+
headers: Dict[str, List[str]]
|
|
63
|
+
|
|
64
|
+
result: List[components_imagemetadata.ImageMetadata]
|
moovio_sdk/onboarding.py
CHANGED
|
@@ -99,7 +99,7 @@ class Onboarding(BaseSDK):
|
|
|
99
99
|
config=self.sdk_configuration,
|
|
100
100
|
base_url=base_url or "",
|
|
101
101
|
operation_id="createOnboardingInvite",
|
|
102
|
-
oauth2_scopes=
|
|
102
|
+
oauth2_scopes=None,
|
|
103
103
|
security_source=get_security_from_env(
|
|
104
104
|
self.sdk_configuration.security, components.Security
|
|
105
105
|
),
|
|
@@ -238,7 +238,7 @@ class Onboarding(BaseSDK):
|
|
|
238
238
|
config=self.sdk_configuration,
|
|
239
239
|
base_url=base_url or "",
|
|
240
240
|
operation_id="createOnboardingInvite",
|
|
241
|
-
oauth2_scopes=
|
|
241
|
+
oauth2_scopes=None,
|
|
242
242
|
security_source=get_security_from_env(
|
|
243
243
|
self.sdk_configuration.security, components.Security
|
|
244
244
|
),
|
|
@@ -358,7 +358,7 @@ class Onboarding(BaseSDK):
|
|
|
358
358
|
config=self.sdk_configuration,
|
|
359
359
|
base_url=base_url or "",
|
|
360
360
|
operation_id="listOnboardingInvites",
|
|
361
|
-
oauth2_scopes=
|
|
361
|
+
oauth2_scopes=None,
|
|
362
362
|
security_source=get_security_from_env(
|
|
363
363
|
self.sdk_configuration.security, components.Security
|
|
364
364
|
),
|
|
@@ -459,7 +459,7 @@ class Onboarding(BaseSDK):
|
|
|
459
459
|
config=self.sdk_configuration,
|
|
460
460
|
base_url=base_url or "",
|
|
461
461
|
operation_id="listOnboardingInvites",
|
|
462
|
-
oauth2_scopes=
|
|
462
|
+
oauth2_scopes=None,
|
|
463
463
|
security_source=get_security_from_env(
|
|
464
464
|
self.sdk_configuration.security, components.Security
|
|
465
465
|
),
|
|
@@ -557,7 +557,7 @@ class Onboarding(BaseSDK):
|
|
|
557
557
|
config=self.sdk_configuration,
|
|
558
558
|
base_url=base_url or "",
|
|
559
559
|
operation_id="getOnboardingInvite",
|
|
560
|
-
oauth2_scopes=
|
|
560
|
+
oauth2_scopes=None,
|
|
561
561
|
security_source=get_security_from_env(
|
|
562
562
|
self.sdk_configuration.security, components.Security
|
|
563
563
|
),
|
|
@@ -653,7 +653,7 @@ class Onboarding(BaseSDK):
|
|
|
653
653
|
config=self.sdk_configuration,
|
|
654
654
|
base_url=base_url or "",
|
|
655
655
|
operation_id="getOnboardingInvite",
|
|
656
|
-
oauth2_scopes=
|
|
656
|
+
oauth2_scopes=None,
|
|
657
657
|
security_source=get_security_from_env(
|
|
658
658
|
self.sdk_configuration.security, components.Security
|
|
659
659
|
),
|
|
@@ -749,7 +749,7 @@ class Onboarding(BaseSDK):
|
|
|
749
749
|
config=self.sdk_configuration,
|
|
750
750
|
base_url=base_url or "",
|
|
751
751
|
operation_id="revokeOnboardingInvite",
|
|
752
|
-
oauth2_scopes=
|
|
752
|
+
oauth2_scopes=None,
|
|
753
753
|
security_source=get_security_from_env(
|
|
754
754
|
self.sdk_configuration.security, components.Security
|
|
755
755
|
),
|
|
@@ -838,7 +838,7 @@ class Onboarding(BaseSDK):
|
|
|
838
838
|
config=self.sdk_configuration,
|
|
839
839
|
base_url=base_url or "",
|
|
840
840
|
operation_id="revokeOnboardingInvite",
|
|
841
|
-
oauth2_scopes=
|
|
841
|
+
oauth2_scopes=None,
|
|
842
842
|
security_source=get_security_from_env(
|
|
843
843
|
self.sdk_configuration.security, components.Security
|
|
844
844
|
),
|
moovio_sdk/payment_links.py
CHANGED
|
@@ -146,7 +146,7 @@ class PaymentLinks(BaseSDK):
|
|
|
146
146
|
config=self.sdk_configuration,
|
|
147
147
|
base_url=base_url or "",
|
|
148
148
|
operation_id="createPaymentLink",
|
|
149
|
-
oauth2_scopes=
|
|
149
|
+
oauth2_scopes=None,
|
|
150
150
|
security_source=get_security_from_env(
|
|
151
151
|
self.sdk_configuration.security, components.Security
|
|
152
152
|
),
|
|
@@ -325,7 +325,7 @@ class PaymentLinks(BaseSDK):
|
|
|
325
325
|
config=self.sdk_configuration,
|
|
326
326
|
base_url=base_url or "",
|
|
327
327
|
operation_id="createPaymentLink",
|
|
328
|
-
oauth2_scopes=
|
|
328
|
+
oauth2_scopes=None,
|
|
329
329
|
security_source=get_security_from_env(
|
|
330
330
|
self.sdk_configuration.security, components.Security
|
|
331
331
|
),
|
|
@@ -442,7 +442,7 @@ class PaymentLinks(BaseSDK):
|
|
|
442
442
|
config=self.sdk_configuration,
|
|
443
443
|
base_url=base_url or "",
|
|
444
444
|
operation_id="listPaymentLinks",
|
|
445
|
-
oauth2_scopes=
|
|
445
|
+
oauth2_scopes=None,
|
|
446
446
|
security_source=get_security_from_env(
|
|
447
447
|
self.sdk_configuration.security, components.Security
|
|
448
448
|
),
|
|
@@ -538,7 +538,7 @@ class PaymentLinks(BaseSDK):
|
|
|
538
538
|
config=self.sdk_configuration,
|
|
539
539
|
base_url=base_url or "",
|
|
540
540
|
operation_id="listPaymentLinks",
|
|
541
|
-
oauth2_scopes=
|
|
541
|
+
oauth2_scopes=None,
|
|
542
542
|
security_source=get_security_from_env(
|
|
543
543
|
self.sdk_configuration.security, components.Security
|
|
544
544
|
),
|
|
@@ -637,7 +637,7 @@ class PaymentLinks(BaseSDK):
|
|
|
637
637
|
config=self.sdk_configuration,
|
|
638
638
|
base_url=base_url or "",
|
|
639
639
|
operation_id="getPaymentLink",
|
|
640
|
-
oauth2_scopes=
|
|
640
|
+
oauth2_scopes=None,
|
|
641
641
|
security_source=get_security_from_env(
|
|
642
642
|
self.sdk_configuration.security, components.Security
|
|
643
643
|
),
|
|
@@ -736,7 +736,7 @@ class PaymentLinks(BaseSDK):
|
|
|
736
736
|
config=self.sdk_configuration,
|
|
737
737
|
base_url=base_url or "",
|
|
738
738
|
operation_id="getPaymentLink",
|
|
739
|
-
oauth2_scopes=
|
|
739
|
+
oauth2_scopes=None,
|
|
740
740
|
security_source=get_security_from_env(
|
|
741
741
|
self.sdk_configuration.security, components.Security
|
|
742
742
|
),
|
|
@@ -894,7 +894,7 @@ class PaymentLinks(BaseSDK):
|
|
|
894
894
|
config=self.sdk_configuration,
|
|
895
895
|
base_url=base_url or "",
|
|
896
896
|
operation_id="updatePaymentLink",
|
|
897
|
-
oauth2_scopes=
|
|
897
|
+
oauth2_scopes=None,
|
|
898
898
|
security_source=get_security_from_env(
|
|
899
899
|
self.sdk_configuration.security, components.Security
|
|
900
900
|
),
|
|
@@ -1073,7 +1073,7 @@ class PaymentLinks(BaseSDK):
|
|
|
1073
1073
|
config=self.sdk_configuration,
|
|
1074
1074
|
base_url=base_url or "",
|
|
1075
1075
|
operation_id="updatePaymentLink",
|
|
1076
|
-
oauth2_scopes=
|
|
1076
|
+
oauth2_scopes=None,
|
|
1077
1077
|
security_source=get_security_from_env(
|
|
1078
1078
|
self.sdk_configuration.security, components.Security
|
|
1079
1079
|
),
|
|
@@ -1193,7 +1193,7 @@ class PaymentLinks(BaseSDK):
|
|
|
1193
1193
|
config=self.sdk_configuration,
|
|
1194
1194
|
base_url=base_url or "",
|
|
1195
1195
|
operation_id="disablePaymentLink",
|
|
1196
|
-
oauth2_scopes=
|
|
1196
|
+
oauth2_scopes=None,
|
|
1197
1197
|
security_source=get_security_from_env(
|
|
1198
1198
|
self.sdk_configuration.security, components.Security
|
|
1199
1199
|
),
|
|
@@ -1291,7 +1291,7 @@ class PaymentLinks(BaseSDK):
|
|
|
1291
1291
|
config=self.sdk_configuration,
|
|
1292
1292
|
base_url=base_url or "",
|
|
1293
1293
|
operation_id="disablePaymentLink",
|
|
1294
|
-
oauth2_scopes=
|
|
1294
|
+
oauth2_scopes=None,
|
|
1295
1295
|
security_source=get_security_from_env(
|
|
1296
1296
|
self.sdk_configuration.security, components.Security
|
|
1297
1297
|
),
|
|
@@ -1395,7 +1395,7 @@ class PaymentLinks(BaseSDK):
|
|
|
1395
1395
|
config=self.sdk_configuration,
|
|
1396
1396
|
base_url=base_url or "",
|
|
1397
1397
|
operation_id="getPaymentLinkQRCode",
|
|
1398
|
-
oauth2_scopes=
|
|
1398
|
+
oauth2_scopes=None,
|
|
1399
1399
|
security_source=get_security_from_env(
|
|
1400
1400
|
self.sdk_configuration.security, components.Security
|
|
1401
1401
|
),
|
|
@@ -1509,7 +1509,7 @@ class PaymentLinks(BaseSDK):
|
|
|
1509
1509
|
config=self.sdk_configuration,
|
|
1510
1510
|
base_url=base_url or "",
|
|
1511
1511
|
operation_id="getPaymentLinkQRCode",
|
|
1512
|
-
oauth2_scopes=
|
|
1512
|
+
oauth2_scopes=None,
|
|
1513
1513
|
security_source=get_security_from_env(
|
|
1514
1514
|
self.sdk_configuration.security, components.Security
|
|
1515
1515
|
),
|
moovio_sdk/payment_methods.py
CHANGED
|
@@ -84,7 +84,7 @@ class PaymentMethods(BaseSDK):
|
|
|
84
84
|
config=self.sdk_configuration,
|
|
85
85
|
base_url=base_url or "",
|
|
86
86
|
operation_id="listPaymentMethods",
|
|
87
|
-
oauth2_scopes=
|
|
87
|
+
oauth2_scopes=None,
|
|
88
88
|
security_source=get_security_from_env(
|
|
89
89
|
self.sdk_configuration.security, components.Security
|
|
90
90
|
),
|
|
@@ -189,7 +189,7 @@ class PaymentMethods(BaseSDK):
|
|
|
189
189
|
config=self.sdk_configuration,
|
|
190
190
|
base_url=base_url or "",
|
|
191
191
|
operation_id="listPaymentMethods",
|
|
192
|
-
oauth2_scopes=
|
|
192
|
+
oauth2_scopes=None,
|
|
193
193
|
security_source=get_security_from_env(
|
|
194
194
|
self.sdk_configuration.security, components.Security
|
|
195
195
|
),
|
|
@@ -290,7 +290,7 @@ class PaymentMethods(BaseSDK):
|
|
|
290
290
|
config=self.sdk_configuration,
|
|
291
291
|
base_url=base_url or "",
|
|
292
292
|
operation_id="getPaymentMethod",
|
|
293
|
-
oauth2_scopes=
|
|
293
|
+
oauth2_scopes=None,
|
|
294
294
|
security_source=get_security_from_env(
|
|
295
295
|
self.sdk_configuration.security, components.Security
|
|
296
296
|
),
|
|
@@ -389,7 +389,7 @@ class PaymentMethods(BaseSDK):
|
|
|
389
389
|
config=self.sdk_configuration,
|
|
390
390
|
base_url=base_url or "",
|
|
391
391
|
operation_id="getPaymentMethod",
|
|
392
|
-
oauth2_scopes=
|
|
392
|
+
oauth2_scopes=None,
|
|
393
393
|
security_source=get_security_from_env(
|
|
394
394
|
self.sdk_configuration.security, components.Security
|
|
395
395
|
),
|
moovio_sdk/ping.py
CHANGED
|
@@ -78,7 +78,7 @@ class Ping(BaseSDK):
|
|
|
78
78
|
config=self.sdk_configuration,
|
|
79
79
|
base_url=base_url or "",
|
|
80
80
|
operation_id="ping",
|
|
81
|
-
oauth2_scopes=
|
|
81
|
+
oauth2_scopes=None,
|
|
82
82
|
security_source=get_security_from_env(
|
|
83
83
|
self.sdk_configuration.security, components.Security
|
|
84
84
|
),
|
|
@@ -175,7 +175,7 @@ class Ping(BaseSDK):
|
|
|
175
175
|
config=self.sdk_configuration,
|
|
176
176
|
base_url=base_url or "",
|
|
177
177
|
operation_id="ping",
|
|
178
|
-
oauth2_scopes=
|
|
178
|
+
oauth2_scopes=None,
|
|
179
179
|
security_source=get_security_from_env(
|
|
180
180
|
self.sdk_configuration.security, components.Security
|
|
181
181
|
),
|
moovio_sdk/receipts.py
CHANGED
|
@@ -82,7 +82,7 @@ class Receipts(BaseSDK):
|
|
|
82
82
|
config=self.sdk_configuration,
|
|
83
83
|
base_url=base_url or "",
|
|
84
84
|
operation_id="createReceipts",
|
|
85
|
-
oauth2_scopes=
|
|
85
|
+
oauth2_scopes=None,
|
|
86
86
|
security_source=get_security_from_env(
|
|
87
87
|
self.sdk_configuration.security, components.Security
|
|
88
88
|
),
|
|
@@ -201,7 +201,7 @@ class Receipts(BaseSDK):
|
|
|
201
201
|
config=self.sdk_configuration,
|
|
202
202
|
base_url=base_url or "",
|
|
203
203
|
operation_id="createReceipts",
|
|
204
|
-
oauth2_scopes=
|
|
204
|
+
oauth2_scopes=None,
|
|
205
205
|
security_source=get_security_from_env(
|
|
206
206
|
self.sdk_configuration.security, components.Security
|
|
207
207
|
),
|
|
@@ -315,7 +315,7 @@ class Receipts(BaseSDK):
|
|
|
315
315
|
config=self.sdk_configuration,
|
|
316
316
|
base_url=base_url or "",
|
|
317
317
|
operation_id="listReceipts",
|
|
318
|
-
oauth2_scopes=
|
|
318
|
+
oauth2_scopes=None,
|
|
319
319
|
security_source=get_security_from_env(
|
|
320
320
|
self.sdk_configuration.security, components.Security
|
|
321
321
|
),
|
|
@@ -413,7 +413,7 @@ class Receipts(BaseSDK):
|
|
|
413
413
|
config=self.sdk_configuration,
|
|
414
414
|
base_url=base_url or "",
|
|
415
415
|
operation_id="listReceipts",
|
|
416
|
-
oauth2_scopes=
|
|
416
|
+
oauth2_scopes=None,
|
|
417
417
|
security_source=get_security_from_env(
|
|
418
418
|
self.sdk_configuration.security, components.Security
|
|
419
419
|
),
|
moovio_sdk/representatives.py
CHANGED
|
@@ -129,7 +129,7 @@ class Representatives(BaseSDK):
|
|
|
129
129
|
config=self.sdk_configuration,
|
|
130
130
|
base_url=base_url or "",
|
|
131
131
|
operation_id="createRepresentative",
|
|
132
|
-
oauth2_scopes=
|
|
132
|
+
oauth2_scopes=None,
|
|
133
133
|
security_source=get_security_from_env(
|
|
134
134
|
self.sdk_configuration.security, components.Security
|
|
135
135
|
),
|
|
@@ -298,7 +298,7 @@ class Representatives(BaseSDK):
|
|
|
298
298
|
config=self.sdk_configuration,
|
|
299
299
|
base_url=base_url or "",
|
|
300
300
|
operation_id="createRepresentative",
|
|
301
|
-
oauth2_scopes=
|
|
301
|
+
oauth2_scopes=None,
|
|
302
302
|
security_source=get_security_from_env(
|
|
303
303
|
self.sdk_configuration.security, components.Security
|
|
304
304
|
),
|
|
@@ -418,7 +418,7 @@ class Representatives(BaseSDK):
|
|
|
418
418
|
config=self.sdk_configuration,
|
|
419
419
|
base_url=base_url or "",
|
|
420
420
|
operation_id="listRepresentatives",
|
|
421
|
-
oauth2_scopes=
|
|
421
|
+
oauth2_scopes=None,
|
|
422
422
|
security_source=get_security_from_env(
|
|
423
423
|
self.sdk_configuration.security, components.Security
|
|
424
424
|
),
|
|
@@ -519,7 +519,7 @@ class Representatives(BaseSDK):
|
|
|
519
519
|
config=self.sdk_configuration,
|
|
520
520
|
base_url=base_url or "",
|
|
521
521
|
operation_id="listRepresentatives",
|
|
522
|
-
oauth2_scopes=
|
|
522
|
+
oauth2_scopes=None,
|
|
523
523
|
security_source=get_security_from_env(
|
|
524
524
|
self.sdk_configuration.security, components.Security
|
|
525
525
|
),
|
|
@@ -620,7 +620,7 @@ class Representatives(BaseSDK):
|
|
|
620
620
|
config=self.sdk_configuration,
|
|
621
621
|
base_url=base_url or "",
|
|
622
622
|
operation_id="deleteRepresentative",
|
|
623
|
-
oauth2_scopes=
|
|
623
|
+
oauth2_scopes=None,
|
|
624
624
|
security_source=get_security_from_env(
|
|
625
625
|
self.sdk_configuration.security, components.Security
|
|
626
626
|
),
|
|
@@ -733,7 +733,7 @@ class Representatives(BaseSDK):
|
|
|
733
733
|
config=self.sdk_configuration,
|
|
734
734
|
base_url=base_url or "",
|
|
735
735
|
operation_id="deleteRepresentative",
|
|
736
|
-
oauth2_scopes=
|
|
736
|
+
oauth2_scopes=None,
|
|
737
737
|
security_source=get_security_from_env(
|
|
738
738
|
self.sdk_configuration.security, components.Security
|
|
739
739
|
),
|
|
@@ -846,7 +846,7 @@ class Representatives(BaseSDK):
|
|
|
846
846
|
config=self.sdk_configuration,
|
|
847
847
|
base_url=base_url or "",
|
|
848
848
|
operation_id="getRepresentative",
|
|
849
|
-
oauth2_scopes=
|
|
849
|
+
oauth2_scopes=None,
|
|
850
850
|
security_source=get_security_from_env(
|
|
851
851
|
self.sdk_configuration.security, components.Security
|
|
852
852
|
),
|
|
@@ -945,7 +945,7 @@ class Representatives(BaseSDK):
|
|
|
945
945
|
config=self.sdk_configuration,
|
|
946
946
|
base_url=base_url or "",
|
|
947
947
|
operation_id="getRepresentative",
|
|
948
|
-
oauth2_scopes=
|
|
948
|
+
oauth2_scopes=None,
|
|
949
949
|
security_source=get_security_from_env(
|
|
950
950
|
self.sdk_configuration.security, components.Security
|
|
951
951
|
),
|
|
@@ -1129,7 +1129,7 @@ class Representatives(BaseSDK):
|
|
|
1129
1129
|
config=self.sdk_configuration,
|
|
1130
1130
|
base_url=base_url or "",
|
|
1131
1131
|
operation_id="updateRepresentative",
|
|
1132
|
-
oauth2_scopes=
|
|
1132
|
+
oauth2_scopes=None,
|
|
1133
1133
|
security_source=get_security_from_env(
|
|
1134
1134
|
self.sdk_configuration.security, components.Security
|
|
1135
1135
|
),
|
|
@@ -1328,7 +1328,7 @@ class Representatives(BaseSDK):
|
|
|
1328
1328
|
config=self.sdk_configuration,
|
|
1329
1329
|
base_url=base_url or "",
|
|
1330
1330
|
operation_id="updateRepresentative",
|
|
1331
|
-
oauth2_scopes=
|
|
1331
|
+
oauth2_scopes=None,
|
|
1332
1332
|
security_source=get_security_from_env(
|
|
1333
1333
|
self.sdk_configuration.security, components.Security
|
|
1334
1334
|
),
|
moovio_sdk/scheduling.py
CHANGED
|
@@ -95,7 +95,7 @@ class Scheduling(BaseSDK):
|
|
|
95
95
|
config=self.sdk_configuration,
|
|
96
96
|
base_url=base_url or "",
|
|
97
97
|
operation_id="createSchedule",
|
|
98
|
-
oauth2_scopes=
|
|
98
|
+
oauth2_scopes=None,
|
|
99
99
|
security_source=get_security_from_env(
|
|
100
100
|
self.sdk_configuration.security, components.Security
|
|
101
101
|
),
|
|
@@ -230,7 +230,7 @@ class Scheduling(BaseSDK):
|
|
|
230
230
|
config=self.sdk_configuration,
|
|
231
231
|
base_url=base_url or "",
|
|
232
232
|
operation_id="createSchedule",
|
|
233
|
-
oauth2_scopes=
|
|
233
|
+
oauth2_scopes=None,
|
|
234
234
|
security_source=get_security_from_env(
|
|
235
235
|
self.sdk_configuration.security, components.Security
|
|
236
236
|
),
|
|
@@ -356,7 +356,7 @@ class Scheduling(BaseSDK):
|
|
|
356
356
|
config=self.sdk_configuration,
|
|
357
357
|
base_url=base_url or "",
|
|
358
358
|
operation_id="listSchedules",
|
|
359
|
-
oauth2_scopes=
|
|
359
|
+
oauth2_scopes=None,
|
|
360
360
|
security_source=get_security_from_env(
|
|
361
361
|
self.sdk_configuration.security, components.Security
|
|
362
362
|
),
|
|
@@ -463,7 +463,7 @@ class Scheduling(BaseSDK):
|
|
|
463
463
|
config=self.sdk_configuration,
|
|
464
464
|
base_url=base_url or "",
|
|
465
465
|
operation_id="listSchedules",
|
|
466
|
-
oauth2_scopes=
|
|
466
|
+
oauth2_scopes=None,
|
|
467
467
|
security_source=get_security_from_env(
|
|
468
468
|
self.sdk_configuration.security, components.Security
|
|
469
469
|
),
|
|
@@ -582,7 +582,7 @@ class Scheduling(BaseSDK):
|
|
|
582
582
|
config=self.sdk_configuration,
|
|
583
583
|
base_url=base_url or "",
|
|
584
584
|
operation_id="updateSchedule",
|
|
585
|
-
oauth2_scopes=
|
|
585
|
+
oauth2_scopes=None,
|
|
586
586
|
security_source=get_security_from_env(
|
|
587
587
|
self.sdk_configuration.security, components.Security
|
|
588
588
|
),
|
|
@@ -720,7 +720,7 @@ class Scheduling(BaseSDK):
|
|
|
720
720
|
config=self.sdk_configuration,
|
|
721
721
|
base_url=base_url or "",
|
|
722
722
|
operation_id="updateSchedule",
|
|
723
|
-
oauth2_scopes=
|
|
723
|
+
oauth2_scopes=None,
|
|
724
724
|
security_source=get_security_from_env(
|
|
725
725
|
self.sdk_configuration.security, components.Security
|
|
726
726
|
),
|
|
@@ -840,7 +840,7 @@ class Scheduling(BaseSDK):
|
|
|
840
840
|
config=self.sdk_configuration,
|
|
841
841
|
base_url=base_url or "",
|
|
842
842
|
operation_id="getSchedules",
|
|
843
|
-
oauth2_scopes=
|
|
843
|
+
oauth2_scopes=None,
|
|
844
844
|
security_source=get_security_from_env(
|
|
845
845
|
self.sdk_configuration.security, components.Security
|
|
846
846
|
),
|
|
@@ -939,7 +939,7 @@ class Scheduling(BaseSDK):
|
|
|
939
939
|
config=self.sdk_configuration,
|
|
940
940
|
base_url=base_url or "",
|
|
941
941
|
operation_id="getSchedules",
|
|
942
|
-
oauth2_scopes=
|
|
942
|
+
oauth2_scopes=None,
|
|
943
943
|
security_source=get_security_from_env(
|
|
944
944
|
self.sdk_configuration.security, components.Security
|
|
945
945
|
),
|
|
@@ -1038,7 +1038,7 @@ class Scheduling(BaseSDK):
|
|
|
1038
1038
|
config=self.sdk_configuration,
|
|
1039
1039
|
base_url=base_url or "",
|
|
1040
1040
|
operation_id="cancelSchedule",
|
|
1041
|
-
oauth2_scopes=
|
|
1041
|
+
oauth2_scopes=None,
|
|
1042
1042
|
security_source=get_security_from_env(
|
|
1043
1043
|
self.sdk_configuration.security, components.Security
|
|
1044
1044
|
),
|
|
@@ -1151,7 +1151,7 @@ class Scheduling(BaseSDK):
|
|
|
1151
1151
|
config=self.sdk_configuration,
|
|
1152
1152
|
base_url=base_url or "",
|
|
1153
1153
|
operation_id="cancelSchedule",
|
|
1154
|
-
oauth2_scopes=
|
|
1154
|
+
oauth2_scopes=None,
|
|
1155
1155
|
security_source=get_security_from_env(
|
|
1156
1156
|
self.sdk_configuration.security, components.Security
|
|
1157
1157
|
),
|
|
@@ -1267,7 +1267,7 @@ class Scheduling(BaseSDK):
|
|
|
1267
1267
|
config=self.sdk_configuration,
|
|
1268
1268
|
base_url=base_url or "",
|
|
1269
1269
|
operation_id="getScheduledOccurrence",
|
|
1270
|
-
oauth2_scopes=
|
|
1270
|
+
oauth2_scopes=None,
|
|
1271
1271
|
security_source=get_security_from_env(
|
|
1272
1272
|
self.sdk_configuration.security, components.Security
|
|
1273
1273
|
),
|
|
@@ -1371,7 +1371,7 @@ class Scheduling(BaseSDK):
|
|
|
1371
1371
|
config=self.sdk_configuration,
|
|
1372
1372
|
base_url=base_url or "",
|
|
1373
1373
|
operation_id="getScheduledOccurrence",
|
|
1374
|
-
oauth2_scopes=
|
|
1374
|
+
oauth2_scopes=None,
|
|
1375
1375
|
security_source=get_security_from_env(
|
|
1376
1376
|
self.sdk_configuration.security, components.Security
|
|
1377
1377
|
),
|