moovio_sdk 0.16.3__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.
Files changed (57) hide show
  1. moovio_sdk/_version.py +3 -3
  2. moovio_sdk/account_terminal_applications.py +8 -8
  3. moovio_sdk/accounts.py +18 -18
  4. moovio_sdk/adjustments.py +4 -4
  5. moovio_sdk/apple_pay.py +10 -10
  6. moovio_sdk/authentication.py +4 -4
  7. moovio_sdk/avatars.py +2 -2
  8. moovio_sdk/bank_accounts.py +18 -18
  9. moovio_sdk/branding.py +8 -8
  10. moovio_sdk/capabilities.py +8 -8
  11. moovio_sdk/card_issuing.py +10 -10
  12. moovio_sdk/cards.py +10 -10
  13. moovio_sdk/disputes.py +22 -22
  14. moovio_sdk/end_to_end_encryption.py +4 -4
  15. moovio_sdk/enriched_address.py +2 -2
  16. moovio_sdk/enriched_profile.py +2 -2
  17. moovio_sdk/fee_plans.py +14 -14
  18. moovio_sdk/files.py +6 -6
  19. moovio_sdk/httpclient.py +0 -1
  20. moovio_sdk/images.py +833 -0
  21. moovio_sdk/industries.py +2 -2
  22. moovio_sdk/institutions.py +4 -4
  23. moovio_sdk/issuing_transactions.py +10 -10
  24. moovio_sdk/models/components/__init__.py +21 -0
  25. moovio_sdk/models/components/capabilityid.py +1 -0
  26. moovio_sdk/models/components/imagemetadata.py +40 -0
  27. moovio_sdk/models/components/paymentmethodswallet.py +4 -4
  28. moovio_sdk/models/components/sendfunds.py +6 -0
  29. moovio_sdk/models/components/sendfundserror.py +9 -0
  30. moovio_sdk/models/components/sendfundsinstantbank.py +18 -0
  31. moovio_sdk/models/components/sendfundsinstantbankerror.py +21 -0
  32. moovio_sdk/models/components/wallet.py +4 -4
  33. moovio_sdk/models/components/wallettype.py +2 -2
  34. moovio_sdk/models/operations/__init__.py +80 -0
  35. moovio_sdk/models/operations/deleteimage.py +67 -0
  36. moovio_sdk/models/operations/getimagemetadata.py +71 -0
  37. moovio_sdk/models/operations/getpublicimage.py +74 -0
  38. moovio_sdk/models/operations/listimagemetadata.py +64 -0
  39. moovio_sdk/onboarding.py +8 -8
  40. moovio_sdk/payment_links.py +12 -12
  41. moovio_sdk/payment_methods.py +4 -4
  42. moovio_sdk/ping.py +2 -2
  43. moovio_sdk/receipts.py +4 -4
  44. moovio_sdk/representatives.py +10 -10
  45. moovio_sdk/scheduling.py +12 -12
  46. moovio_sdk/sdk.py +3 -0
  47. moovio_sdk/statements.py +4 -4
  48. moovio_sdk/support.py +10 -10
  49. moovio_sdk/sweeps.py +12 -12
  50. moovio_sdk/terminal_applications.py +10 -10
  51. moovio_sdk/transfers.py +22 -22
  52. moovio_sdk/underwriting.py +6 -6
  53. moovio_sdk/wallet_transactions.py +4 -4
  54. moovio_sdk/wallets.py +8 -8
  55. {moovio_sdk-0.16.3.dist-info → moovio_sdk-0.17.0.dist-info}/METADATA +51 -45
  56. {moovio_sdk-0.16.3.dist-info → moovio_sdk-0.17.0.dist-info}/RECORD +57 -49
  57. {moovio_sdk-0.16.3.dist-info → moovio_sdk-0.17.0.dist-info}/WHEEL +0 -0
moovio_sdk/industries.py CHANGED
@@ -79,7 +79,7 @@ class Industries(BaseSDK):
79
79
  config=self.sdk_configuration,
80
80
  base_url=base_url or "",
81
81
  operation_id="listIndustries",
82
- oauth2_scopes=[],
82
+ oauth2_scopes=None,
83
83
  security_source=get_security_from_env(
84
84
  self.sdk_configuration.security, components.Security
85
85
  ),
@@ -177,7 +177,7 @@ class Industries(BaseSDK):
177
177
  config=self.sdk_configuration,
178
178
  base_url=base_url or "",
179
179
  operation_id="listIndustries",
180
- oauth2_scopes=[],
180
+ oauth2_scopes=None,
181
181
  security_source=get_security_from_env(
182
182
  self.sdk_configuration.security, components.Security
183
183
  ),
@@ -87,7 +87,7 @@ class Institutions(BaseSDK):
87
87
  config=self.sdk_configuration,
88
88
  base_url=base_url or "",
89
89
  operation_id="searchInstitutions",
90
- oauth2_scopes=[],
90
+ oauth2_scopes=None,
91
91
  security_source=get_security_from_env(
92
92
  self.sdk_configuration.security, components.Security
93
93
  ),
@@ -195,7 +195,7 @@ class Institutions(BaseSDK):
195
195
  config=self.sdk_configuration,
196
196
  base_url=base_url or "",
197
197
  operation_id="searchInstitutions",
198
- oauth2_scopes=[],
198
+ oauth2_scopes=None,
199
199
  security_source=get_security_from_env(
200
200
  self.sdk_configuration.security, components.Security
201
201
  ),
@@ -302,7 +302,7 @@ class Institutions(BaseSDK):
302
302
  config=self.sdk_configuration,
303
303
  base_url=base_url or "",
304
304
  operation_id="listInstitutions",
305
- oauth2_scopes=[],
305
+ oauth2_scopes=None,
306
306
  security_source=get_security_from_env(
307
307
  self.sdk_configuration.security, components.Security
308
308
  ),
@@ -413,7 +413,7 @@ class Institutions(BaseSDK):
413
413
  config=self.sdk_configuration,
414
414
  base_url=base_url or "",
415
415
  operation_id="listInstitutions",
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
  ),
@@ -96,7 +96,7 @@ class IssuingTransactions(BaseSDK):
96
96
  config=self.sdk_configuration,
97
97
  base_url=base_url or "",
98
98
  operation_id="listIssuedCardAuthorizations",
99
- oauth2_scopes=[],
99
+ oauth2_scopes=None,
100
100
  security_source=get_security_from_env(
101
101
  self.sdk_configuration.security, components.Security
102
102
  ),
@@ -212,7 +212,7 @@ class IssuingTransactions(BaseSDK):
212
212
  config=self.sdk_configuration,
213
213
  base_url=base_url or "",
214
214
  operation_id="listIssuedCardAuthorizations",
215
- oauth2_scopes=[],
215
+ oauth2_scopes=None,
216
216
  security_source=get_security_from_env(
217
217
  self.sdk_configuration.security, components.Security
218
218
  ),
@@ -313,7 +313,7 @@ class IssuingTransactions(BaseSDK):
313
313
  config=self.sdk_configuration,
314
314
  base_url=base_url or "",
315
315
  operation_id="getIssuedCardAuthorization",
316
- oauth2_scopes=[],
316
+ oauth2_scopes=None,
317
317
  security_source=get_security_from_env(
318
318
  self.sdk_configuration.security, components.Security
319
319
  ),
@@ -414,7 +414,7 @@ class IssuingTransactions(BaseSDK):
414
414
  config=self.sdk_configuration,
415
415
  base_url=base_url or "",
416
416
  operation_id="getIssuedCardAuthorization",
417
- oauth2_scopes=[],
417
+ oauth2_scopes=None,
418
418
  security_source=get_security_from_env(
419
419
  self.sdk_configuration.security, components.Security
420
420
  ),
@@ -521,7 +521,7 @@ class IssuingTransactions(BaseSDK):
521
521
  config=self.sdk_configuration,
522
522
  base_url=base_url or "",
523
523
  operation_id="listIssuedCardAuthorizationEvents",
524
- oauth2_scopes=[],
524
+ oauth2_scopes=None,
525
525
  security_source=get_security_from_env(
526
526
  self.sdk_configuration.security, components.Security
527
527
  ),
@@ -628,7 +628,7 @@ class IssuingTransactions(BaseSDK):
628
628
  config=self.sdk_configuration,
629
629
  base_url=base_url or "",
630
630
  operation_id="listIssuedCardAuthorizationEvents",
631
- oauth2_scopes=[],
631
+ oauth2_scopes=None,
632
632
  security_source=get_security_from_env(
633
633
  self.sdk_configuration.security, components.Security
634
634
  ),
@@ -741,7 +741,7 @@ class IssuingTransactions(BaseSDK):
741
741
  config=self.sdk_configuration,
742
742
  base_url=base_url or "",
743
743
  operation_id="listIssuedCardTransactions",
744
- oauth2_scopes=[],
744
+ oauth2_scopes=None,
745
745
  security_source=get_security_from_env(
746
746
  self.sdk_configuration.security, components.Security
747
747
  ),
@@ -854,7 +854,7 @@ class IssuingTransactions(BaseSDK):
854
854
  config=self.sdk_configuration,
855
855
  base_url=base_url or "",
856
856
  operation_id="listIssuedCardTransactions",
857
- oauth2_scopes=[],
857
+ oauth2_scopes=None,
858
858
  security_source=get_security_from_env(
859
859
  self.sdk_configuration.security, components.Security
860
860
  ),
@@ -955,7 +955,7 @@ class IssuingTransactions(BaseSDK):
955
955
  config=self.sdk_configuration,
956
956
  base_url=base_url or "",
957
957
  operation_id="getIssuedCardTransaction",
958
- oauth2_scopes=[],
958
+ oauth2_scopes=None,
959
959
  security_source=get_security_from_env(
960
960
  self.sdk_configuration.security, components.Security
961
961
  ),
@@ -1056,7 +1056,7 @@ class IssuingTransactions(BaseSDK):
1056
1056
  config=self.sdk_configuration,
1057
1057
  base_url=base_url or "",
1058
1058
  operation_id="getIssuedCardTransaction",
1059
- oauth2_scopes=[],
1059
+ oauth2_scopes=None,
1060
1060
  security_source=get_security_from_env(
1061
1061
  self.sdk_configuration.security, components.Security
1062
1062
  ),
@@ -512,6 +512,7 @@ if TYPE_CHECKING:
512
512
  )
513
513
  from .granttype import GrantType
514
514
  from .guestprofile import GuestProfile, GuestProfileTypedDict
515
+ from .imagemetadata import ImageMetadata, ImageMetadataTypedDict
515
516
  from .incurredfee import IncurredFee, IncurredFeeTypedDict
516
517
  from .individualname import IndividualName, IndividualNameTypedDict
517
518
  from .individualnameerror import IndividualNameError, IndividualNameErrorTypedDict
@@ -827,6 +828,14 @@ if TYPE_CHECKING:
827
828
  from .sendfundsach import SendFundsAch, SendFundsAchTypedDict
828
829
  from .sendfundsacherror import SendFundsAchError, SendFundsAchErrorTypedDict
829
830
  from .sendfundserror import SendFundsError, SendFundsErrorTypedDict
831
+ from .sendfundsinstantbank import (
832
+ SendFundsInstantBank,
833
+ SendFundsInstantBankTypedDict,
834
+ )
835
+ from .sendfundsinstantbankerror import (
836
+ SendFundsInstantBankError,
837
+ SendFundsInstantBankErrorTypedDict,
838
+ )
830
839
  from .sendfundspushtocard import SendFundsPushToCard, SendFundsPushToCardTypedDict
831
840
  from .sendfundspushtocarderror import (
832
841
  SendFundsPushToCardError,
@@ -1555,6 +1564,8 @@ __all__ = [
1555
1564
  "GrantType",
1556
1565
  "GuestProfile",
1557
1566
  "GuestProfileTypedDict",
1567
+ "ImageMetadata",
1568
+ "ImageMetadataTypedDict",
1558
1569
  "IncurredFee",
1559
1570
  "IncurredFeeTypedDict",
1560
1571
  "IndividualName",
@@ -1835,6 +1846,10 @@ __all__ = [
1835
1846
  "SendFundsAchTypedDict",
1836
1847
  "SendFundsError",
1837
1848
  "SendFundsErrorTypedDict",
1849
+ "SendFundsInstantBank",
1850
+ "SendFundsInstantBankError",
1851
+ "SendFundsInstantBankErrorTypedDict",
1852
+ "SendFundsInstantBankTypedDict",
1838
1853
  "SendFundsPushToCard",
1839
1854
  "SendFundsPushToCardError",
1840
1855
  "SendFundsPushToCardErrorTypedDict",
@@ -2500,6 +2515,8 @@ _dynamic_imports: dict[str, str] = {
2500
2515
  "GrantType": ".granttype",
2501
2516
  "GuestProfile": ".guestprofile",
2502
2517
  "GuestProfileTypedDict": ".guestprofile",
2518
+ "ImageMetadata": ".imagemetadata",
2519
+ "ImageMetadataTypedDict": ".imagemetadata",
2503
2520
  "IncurredFee": ".incurredfee",
2504
2521
  "IncurredFeeTypedDict": ".incurredfee",
2505
2522
  "IndividualName": ".individualname",
@@ -2784,6 +2801,10 @@ _dynamic_imports: dict[str, str] = {
2784
2801
  "SendFundsAchErrorTypedDict": ".sendfundsacherror",
2785
2802
  "SendFundsError": ".sendfundserror",
2786
2803
  "SendFundsErrorTypedDict": ".sendfundserror",
2804
+ "SendFundsInstantBank": ".sendfundsinstantbank",
2805
+ "SendFundsInstantBankTypedDict": ".sendfundsinstantbank",
2806
+ "SendFundsInstantBankError": ".sendfundsinstantbankerror",
2807
+ "SendFundsInstantBankErrorTypedDict": ".sendfundsinstantbankerror",
2787
2808
  "SendFundsPushToCard": ".sendfundspushtocard",
2788
2809
  "SendFundsPushToCardTypedDict": ".sendfundspushtocard",
2789
2810
  "SendFundsPushToCardError": ".sendfundspushtocarderror",
@@ -16,6 +16,7 @@ class CapabilityID(str, Enum):
16
16
  MONEY_TRANSFER_PUSH_TO_CARD = "money-transfer.push-to-card"
17
17
  SEND_FUNDS_ACH = "send-funds.ach"
18
18
  SEND_FUNDS_RTP = "send-funds.rtp"
19
+ SEND_FUNDS_INSTANT_BANK = "send-funds.instant-bank"
19
20
  COLLECT_FUNDS = "collect-funds"
20
21
  COLLECT_FUNDS_CARD_PAYMENTS = "collect-funds.card-payments"
21
22
  MONEY_TRANSFER_PULL_FROM_CARD = "money-transfer.pull-from-card"
@@ -0,0 +1,40 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from datetime import datetime
5
+ from moovio_sdk.types import BaseModel
6
+ import pydantic
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class ImageMetadataTypedDict(TypedDict):
12
+ r"""Metadata about an uploaded image."""
13
+
14
+ image_id: str
15
+ link: str
16
+ r"""A public URL to access the image. An optional `size={width}x{height}`
17
+ query parameter can be provided to resize the image.
18
+ """
19
+ created_on: datetime
20
+ updated_on: datetime
21
+ alt_text: NotRequired[str]
22
+ r"""Alternative text for the image."""
23
+
24
+
25
+ class ImageMetadata(BaseModel):
26
+ r"""Metadata about an uploaded image."""
27
+
28
+ image_id: Annotated[str, pydantic.Field(alias="imageID")]
29
+
30
+ link: str
31
+ r"""A public URL to access the image. An optional `size={width}x{height}`
32
+ query parameter can be provided to resize the image.
33
+ """
34
+
35
+ created_on: Annotated[datetime, pydantic.Field(alias="createdOn")]
36
+
37
+ updated_on: Annotated[datetime, pydantic.Field(alias="updatedOn")]
38
+
39
+ alt_text: Annotated[Optional[str], pydantic.Field(alias="altText")] = None
40
+ r"""Alternative text for the image."""
@@ -12,8 +12,8 @@ class PaymentMethodsWalletTypedDict(TypedDict):
12
12
  partner_account_id: str
13
13
  wallet_type: WalletType
14
14
  r"""Type of a wallet.
15
- - `default`: The primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
16
- - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
15
+ - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
16
+ - `general`: An additional, user-defined wallet created via API or Dashboard.
17
17
  """
18
18
 
19
19
 
@@ -24,6 +24,6 @@ class PaymentMethodsWallet(BaseModel):
24
24
 
25
25
  wallet_type: Annotated[WalletType, pydantic.Field(alias="walletType")]
26
26
  r"""Type of a wallet.
27
- - `default`: The primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
28
- - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
27
+ - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
28
+ - `general`: An additional, user-defined wallet created via API or Dashboard.
29
29
  """
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .sendfundsach import SendFundsAch, SendFundsAchTypedDict
5
+ from .sendfundsinstantbank import SendFundsInstantBank, SendFundsInstantBankTypedDict
5
6
  from .sendfundspushtocard import SendFundsPushToCard, SendFundsPushToCardTypedDict
6
7
  from .sendfundsrtp import SendFundsRtp, SendFundsRtpTypedDict
7
8
  from moovio_sdk.types import BaseModel
@@ -14,6 +15,7 @@ class SendFundsTypedDict(TypedDict):
14
15
  ach: NotRequired[SendFundsAchTypedDict]
15
16
  push_to_card: NotRequired[SendFundsPushToCardTypedDict]
16
17
  rtp: NotRequired[SendFundsRtpTypedDict]
18
+ instant_bank: NotRequired[SendFundsInstantBankTypedDict]
17
19
 
18
20
 
19
21
  class SendFunds(BaseModel):
@@ -24,3 +26,7 @@ class SendFunds(BaseModel):
24
26
  ] = None
25
27
 
26
28
  rtp: Optional[SendFundsRtp] = None
29
+
30
+ instant_bank: Annotated[
31
+ Optional[SendFundsInstantBank], pydantic.Field(alias="instantBank")
32
+ ] = None
@@ -2,6 +2,10 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from .sendfundsacherror import SendFundsAchError, SendFundsAchErrorTypedDict
5
+ from .sendfundsinstantbankerror import (
6
+ SendFundsInstantBankError,
7
+ SendFundsInstantBankErrorTypedDict,
8
+ )
5
9
  from .sendfundspushtocarderror import (
6
10
  SendFundsPushToCardError,
7
11
  SendFundsPushToCardErrorTypedDict,
@@ -17,6 +21,7 @@ class SendFundsErrorTypedDict(TypedDict):
17
21
  ach: NotRequired[SendFundsAchErrorTypedDict]
18
22
  push_to_card: NotRequired[SendFundsPushToCardErrorTypedDict]
19
23
  rtp: NotRequired[SendFundsRtpErrorTypedDict]
24
+ instant_bank: NotRequired[SendFundsInstantBankErrorTypedDict]
20
25
 
21
26
 
22
27
  class SendFundsError(BaseModel):
@@ -27,3 +32,7 @@ class SendFundsError(BaseModel):
27
32
  ] = None
28
33
 
29
34
  rtp: Optional[SendFundsRtpError] = None
35
+
36
+ instant_bank: Annotated[
37
+ Optional[SendFundsInstantBankError], pydantic.Field(alias="instantBank")
38
+ ] = None
@@ -0,0 +1,18 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .estimatedactivity import EstimatedActivity, EstimatedActivityTypedDict
5
+ from moovio_sdk.types import BaseModel
6
+ import pydantic
7
+ from typing import Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class SendFundsInstantBankTypedDict(TypedDict):
12
+ estimated_activity: NotRequired[EstimatedActivityTypedDict]
13
+
14
+
15
+ class SendFundsInstantBank(BaseModel):
16
+ estimated_activity: Annotated[
17
+ Optional[EstimatedActivity], pydantic.Field(alias="estimatedActivity")
18
+ ] = None
@@ -0,0 +1,21 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .estimatedactivityerror import (
5
+ EstimatedActivityError,
6
+ EstimatedActivityErrorTypedDict,
7
+ )
8
+ from moovio_sdk.types import BaseModel
9
+ import pydantic
10
+ from typing import Optional
11
+ from typing_extensions import Annotated, NotRequired, TypedDict
12
+
13
+
14
+ class SendFundsInstantBankErrorTypedDict(TypedDict):
15
+ estimated_activity: NotRequired[EstimatedActivityErrorTypedDict]
16
+
17
+
18
+ class SendFundsInstantBankError(BaseModel):
19
+ estimated_activity: Annotated[
20
+ Optional[EstimatedActivityError], pydantic.Field(alias="estimatedActivity")
21
+ ] = None
@@ -29,8 +29,8 @@ class WalletTypedDict(TypedDict):
29
29
  """
30
30
  wallet_type: WalletType
31
31
  r"""Type of a wallet.
32
- - `default`: The primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
33
- - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
32
+ - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
33
+ - `general`: An additional, user-defined wallet created via API or Dashboard.
34
34
  """
35
35
  description: str
36
36
  r"""Description of the wallet"""
@@ -62,8 +62,8 @@ class Wallet(BaseModel):
62
62
 
63
63
  wallet_type: Annotated[WalletType, pydantic.Field(alias="walletType")]
64
64
  r"""Type of a wallet.
65
- - `default`: The primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
66
- - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
65
+ - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
66
+ - `general`: An additional, user-defined wallet created via API or Dashboard.
67
67
  """
68
68
 
69
69
  description: str
@@ -6,8 +6,8 @@ from enum import Enum
6
6
 
7
7
  class WalletType(str, Enum):
8
8
  r"""Type of a wallet.
9
- - `default`: The primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
10
- - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
9
+ - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
10
+ - `general`: An additional, user-defined wallet created via API or Dashboard.
11
11
  """
12
12
 
13
13
  DEFAULT = "default"
@@ -198,6 +198,14 @@ if TYPE_CHECKING:
198
198
  DeleteDisputeEvidenceFileResponse,
199
199
  DeleteDisputeEvidenceFileResponseTypedDict,
200
200
  )
201
+ from .deleteimage import (
202
+ DeleteImageGlobals,
203
+ DeleteImageGlobalsTypedDict,
204
+ DeleteImageRequest,
205
+ DeleteImageRequestTypedDict,
206
+ DeleteImageResponse,
207
+ DeleteImageResponseTypedDict,
208
+ )
201
209
  from .deleterepresentative import (
202
210
  DeleteRepresentativeGlobals,
203
211
  DeleteRepresentativeGlobalsTypedDict,
@@ -416,6 +424,14 @@ if TYPE_CHECKING:
416
424
  GetFullIssuedCardResponse,
417
425
  GetFullIssuedCardResponseTypedDict,
418
426
  )
427
+ from .getimagemetadata import (
428
+ GetImageMetadataGlobals,
429
+ GetImageMetadataGlobalsTypedDict,
430
+ GetImageMetadataRequest,
431
+ GetImageMetadataRequestTypedDict,
432
+ GetImageMetadataResponse,
433
+ GetImageMetadataResponseTypedDict,
434
+ )
419
435
  from .getissuedcard import (
420
436
  GetIssuedCardGlobals,
421
437
  GetIssuedCardGlobalsTypedDict,
@@ -482,6 +498,14 @@ if TYPE_CHECKING:
482
498
  GetPaymentMethodResponse,
483
499
  GetPaymentMethodResponseTypedDict,
484
500
  )
501
+ from .getpublicimage import (
502
+ GetPublicImageRequest,
503
+ GetPublicImageRequestTypedDict,
504
+ GetPublicImageResponse,
505
+ GetPublicImageResponseResult,
506
+ GetPublicImageResponseResultTypedDict,
507
+ GetPublicImageResponseTypedDict,
508
+ )
485
509
  from .getrefund import (
486
510
  GetRefundGlobals,
487
511
  GetRefundGlobalsTypedDict,
@@ -758,6 +782,14 @@ if TYPE_CHECKING:
758
782
  ListFilesResponse,
759
783
  ListFilesResponseTypedDict,
760
784
  )
785
+ from .listimagemetadata import (
786
+ ListImageMetadataGlobals,
787
+ ListImageMetadataGlobalsTypedDict,
788
+ ListImageMetadataRequest,
789
+ ListImageMetadataRequestTypedDict,
790
+ ListImageMetadataResponse,
791
+ ListImageMetadataResponseTypedDict,
792
+ )
761
793
  from .listindustries import (
762
794
  ListIndustriesGlobals,
763
795
  ListIndustriesGlobalsTypedDict,
@@ -1325,6 +1357,12 @@ __all__ = [
1325
1357
  "DeleteDisputeEvidenceFileRequestTypedDict",
1326
1358
  "DeleteDisputeEvidenceFileResponse",
1327
1359
  "DeleteDisputeEvidenceFileResponseTypedDict",
1360
+ "DeleteImageGlobals",
1361
+ "DeleteImageGlobalsTypedDict",
1362
+ "DeleteImageRequest",
1363
+ "DeleteImageRequestTypedDict",
1364
+ "DeleteImageResponse",
1365
+ "DeleteImageResponseTypedDict",
1328
1366
  "DeleteRepresentativeGlobals",
1329
1367
  "DeleteRepresentativeGlobalsTypedDict",
1330
1368
  "DeleteRepresentativeRequest",
@@ -1489,6 +1527,12 @@ __all__ = [
1489
1527
  "GetFullIssuedCardRequestTypedDict",
1490
1528
  "GetFullIssuedCardResponse",
1491
1529
  "GetFullIssuedCardResponseTypedDict",
1530
+ "GetImageMetadataGlobals",
1531
+ "GetImageMetadataGlobalsTypedDict",
1532
+ "GetImageMetadataRequest",
1533
+ "GetImageMetadataRequestTypedDict",
1534
+ "GetImageMetadataResponse",
1535
+ "GetImageMetadataResponseTypedDict",
1492
1536
  "GetIssuedCardAuthorizationGlobals",
1493
1537
  "GetIssuedCardAuthorizationGlobalsTypedDict",
1494
1538
  "GetIssuedCardAuthorizationRequest",
@@ -1539,6 +1583,12 @@ __all__ = [
1539
1583
  "GetPaymentMethodRequestTypedDict",
1540
1584
  "GetPaymentMethodResponse",
1541
1585
  "GetPaymentMethodResponseTypedDict",
1586
+ "GetPublicImageRequest",
1587
+ "GetPublicImageRequestTypedDict",
1588
+ "GetPublicImageResponse",
1589
+ "GetPublicImageResponseResult",
1590
+ "GetPublicImageResponseResultTypedDict",
1591
+ "GetPublicImageResponseTypedDict",
1542
1592
  "GetRefundGlobals",
1543
1593
  "GetRefundGlobalsTypedDict",
1544
1594
  "GetRefundRequest",
@@ -1748,6 +1798,12 @@ __all__ = [
1748
1798
  "ListFilesRequestTypedDict",
1749
1799
  "ListFilesResponse",
1750
1800
  "ListFilesResponseTypedDict",
1801
+ "ListImageMetadataGlobals",
1802
+ "ListImageMetadataGlobalsTypedDict",
1803
+ "ListImageMetadataRequest",
1804
+ "ListImageMetadataRequestTypedDict",
1805
+ "ListImageMetadataResponse",
1806
+ "ListImageMetadataResponseTypedDict",
1751
1807
  "ListIndustriesGlobals",
1752
1808
  "ListIndustriesGlobalsTypedDict",
1753
1809
  "ListIndustriesRequest",
@@ -2209,6 +2265,12 @@ _dynamic_imports: dict[str, str] = {
2209
2265
  "DeleteDisputeEvidenceFileRequestTypedDict": ".deletedisputeevidencefile",
2210
2266
  "DeleteDisputeEvidenceFileResponse": ".deletedisputeevidencefile",
2211
2267
  "DeleteDisputeEvidenceFileResponseTypedDict": ".deletedisputeevidencefile",
2268
+ "DeleteImageGlobals": ".deleteimage",
2269
+ "DeleteImageGlobalsTypedDict": ".deleteimage",
2270
+ "DeleteImageRequest": ".deleteimage",
2271
+ "DeleteImageRequestTypedDict": ".deleteimage",
2272
+ "DeleteImageResponse": ".deleteimage",
2273
+ "DeleteImageResponseTypedDict": ".deleteimage",
2212
2274
  "DeleteRepresentativeGlobals": ".deleterepresentative",
2213
2275
  "DeleteRepresentativeGlobalsTypedDict": ".deleterepresentative",
2214
2276
  "DeleteRepresentativeRequest": ".deleterepresentative",
@@ -2373,6 +2435,12 @@ _dynamic_imports: dict[str, str] = {
2373
2435
  "GetFullIssuedCardRequestTypedDict": ".getfullissuedcard",
2374
2436
  "GetFullIssuedCardResponse": ".getfullissuedcard",
2375
2437
  "GetFullIssuedCardResponseTypedDict": ".getfullissuedcard",
2438
+ "GetImageMetadataGlobals": ".getimagemetadata",
2439
+ "GetImageMetadataGlobalsTypedDict": ".getimagemetadata",
2440
+ "GetImageMetadataRequest": ".getimagemetadata",
2441
+ "GetImageMetadataRequestTypedDict": ".getimagemetadata",
2442
+ "GetImageMetadataResponse": ".getimagemetadata",
2443
+ "GetImageMetadataResponseTypedDict": ".getimagemetadata",
2376
2444
  "GetIssuedCardGlobals": ".getissuedcard",
2377
2445
  "GetIssuedCardGlobalsTypedDict": ".getissuedcard",
2378
2446
  "GetIssuedCardRequest": ".getissuedcard",
@@ -2423,6 +2491,12 @@ _dynamic_imports: dict[str, str] = {
2423
2491
  "GetPaymentMethodRequestTypedDict": ".getpaymentmethod",
2424
2492
  "GetPaymentMethodResponse": ".getpaymentmethod",
2425
2493
  "GetPaymentMethodResponseTypedDict": ".getpaymentmethod",
2494
+ "GetPublicImageRequest": ".getpublicimage",
2495
+ "GetPublicImageRequestTypedDict": ".getpublicimage",
2496
+ "GetPublicImageResponse": ".getpublicimage",
2497
+ "GetPublicImageResponseResult": ".getpublicimage",
2498
+ "GetPublicImageResponseResultTypedDict": ".getpublicimage",
2499
+ "GetPublicImageResponseTypedDict": ".getpublicimage",
2426
2500
  "GetRefundGlobals": ".getrefund",
2427
2501
  "GetRefundGlobalsTypedDict": ".getrefund",
2428
2502
  "GetRefundRequest": ".getrefund",
@@ -2631,6 +2705,12 @@ _dynamic_imports: dict[str, str] = {
2631
2705
  "ListFilesRequestTypedDict": ".listfiles",
2632
2706
  "ListFilesResponse": ".listfiles",
2633
2707
  "ListFilesResponseTypedDict": ".listfiles",
2708
+ "ListImageMetadataGlobals": ".listimagemetadata",
2709
+ "ListImageMetadataGlobalsTypedDict": ".listimagemetadata",
2710
+ "ListImageMetadataRequest": ".listimagemetadata",
2711
+ "ListImageMetadataRequestTypedDict": ".listimagemetadata",
2712
+ "ListImageMetadataResponse": ".listimagemetadata",
2713
+ "ListImageMetadataResponseTypedDict": ".listimagemetadata",
2634
2714
  "ListIndustriesGlobals": ".listindustries",
2635
2715
  "ListIndustriesGlobalsTypedDict": ".listindustries",
2636
2716
  "ListIndustriesRequest": ".listindustries",
@@ -0,0 +1,67 @@
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
+ from moovio_sdk.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
6
+ import pydantic
7
+ from typing import Dict, List, Optional
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class DeleteImageGlobalsTypedDict(TypedDict):
12
+ x_moov_version: NotRequired[str]
13
+ r"""Specify an API version.
14
+
15
+ API versioning follows the format `vYYYY.QQ.BB`, where
16
+ - `YYYY` is the year
17
+ - `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
18
+ - `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
19
+ - For example, `v2024.01.00` is the initial release of the first quarter of 2024.
20
+
21
+ The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
22
+ """
23
+
24
+
25
+ class DeleteImageGlobals(BaseModel):
26
+ x_moov_version: Annotated[
27
+ Optional[str],
28
+ pydantic.Field(alias="x-moov-version"),
29
+ FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
30
+ ] = "v2024.01.00"
31
+ r"""Specify an API version.
32
+
33
+ API versioning follows the format `vYYYY.QQ.BB`, where
34
+ - `YYYY` is the year
35
+ - `QQ` is the two-digit month for the first month of the quarter (e.g., 01, 04, 07, 10)
36
+ - `BB` is the build number, starting at `.01`, for subsequent builds in the same quarter.
37
+ - For example, `v2024.01.00` is the initial release of the first quarter of 2024.
38
+
39
+ The `latest` version represents the most recent development state. It may include breaking changes and should be treated as a beta release.
40
+ """
41
+
42
+
43
+ class DeleteImageRequestTypedDict(TypedDict):
44
+ account_id: str
45
+ image_id: str
46
+
47
+
48
+ class DeleteImageRequest(BaseModel):
49
+ account_id: Annotated[
50
+ str,
51
+ pydantic.Field(alias="accountID"),
52
+ FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
53
+ ]
54
+
55
+ image_id: Annotated[
56
+ str,
57
+ pydantic.Field(alias="imageID"),
58
+ FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
59
+ ]
60
+
61
+
62
+ class DeleteImageResponseTypedDict(TypedDict):
63
+ headers: Dict[str, List[str]]
64
+
65
+
66
+ class DeleteImageResponse(BaseModel):
67
+ headers: Dict[str, List[str]]