moovio_sdk 0.17.4__py3-none-any.whl → 0.18.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.
Potentially problematic release.
This version of moovio_sdk might be problematic. Click here for more details.
- moovio_sdk/_version.py +3 -3
- moovio_sdk/images.py +569 -1
- moovio_sdk/models/components/__init__.py +50 -0
- moovio_sdk/models/components/imagemetadatarequest.py +21 -0
- moovio_sdk/models/components/imagemetadatavalidationerror.py +15 -0
- moovio_sdk/models/components/imageupdaterequestmultipart.py +119 -0
- moovio_sdk/models/components/imageuploadrequestmultipart.py +54 -0
- moovio_sdk/models/errors/__init__.py +8 -0
- moovio_sdk/models/errors/imagerequestvalidationerror.py +34 -0
- moovio_sdk/models/operations/__init__.py +40 -0
- moovio_sdk/models/operations/updateimage.py +87 -0
- moovio_sdk/models/operations/uploadimage.py +80 -0
- {moovio_sdk-0.17.4.dist-info → moovio_sdk-0.18.0.dist-info}/METADATA +54 -46
- {moovio_sdk-0.17.4.dist-info → moovio_sdk-0.18.0.dist-info}/RECORD +15 -8
- {moovio_sdk-0.17.4.dist-info → moovio_sdk-0.18.0.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moovio_sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.18.0
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -828,7 +828,14 @@ you'll need to specify the `/accounts/{accountID}/files.read` scope.
|
|
|
828
828
|
### [images](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md)
|
|
829
829
|
|
|
830
830
|
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md#list) - List metadata for all images in the specified account.
|
|
831
|
+
* [upload](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md#upload) - Upload a new PNG, JPEG, or WebP image with optional metadata.
|
|
832
|
+
Duplicate images, and requests larger than 16MB will be rejected.
|
|
831
833
|
* [get_metadata](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md#get_metadata) - Retrieve metadata for a specific image by its ID.
|
|
834
|
+
* [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md#update) - Update an existing image and/or its metadata.
|
|
835
|
+
|
|
836
|
+
Duplicate images, and requests larger than 16MB will be rejected. Omit any
|
|
837
|
+
form parts you do not wish to update. Existing metadata can be cleared by
|
|
838
|
+
sending `null` for the `metadata` form part.
|
|
832
839
|
* [delete](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md#delete) - Permanently delete an image by its ID.
|
|
833
840
|
* [get_public](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/images/README.md#get_public) - Get an image by its public ID.
|
|
834
841
|
|
|
@@ -1507,7 +1514,7 @@ with Moov(
|
|
|
1507
1514
|
**Primary error:**
|
|
1508
1515
|
* [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py): The base class for HTTP error responses.
|
|
1509
1516
|
|
|
1510
|
-
<details><summary>Less common errors (
|
|
1517
|
+
<details><summary>Less common errors (50)</summary>
|
|
1511
1518
|
|
|
1512
1519
|
<br />
|
|
1513
1520
|
|
|
@@ -1518,50 +1525,51 @@ with Moov(
|
|
|
1518
1525
|
|
|
1519
1526
|
|
|
1520
1527
|
**Inherit from [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py)**:
|
|
1521
|
-
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to
|
|
1522
|
-
* [`BrandValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/brandvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 3 of
|
|
1523
|
-
* [`
|
|
1524
|
-
* [`
|
|
1525
|
-
* [`
|
|
1526
|
-
* [`
|
|
1527
|
-
* [`
|
|
1528
|
-
* [`
|
|
1529
|
-
* [`
|
|
1530
|
-
* [`
|
|
1531
|
-
* [`
|
|
1532
|
-
* [`
|
|
1533
|
-
* [`
|
|
1534
|
-
* [`
|
|
1535
|
-
* [`
|
|
1536
|
-
* [`
|
|
1537
|
-
* [`
|
|
1538
|
-
* [`
|
|
1539
|
-
* [`
|
|
1540
|
-
* [`
|
|
1541
|
-
* [`
|
|
1542
|
-
* [`
|
|
1543
|
-
* [`
|
|
1544
|
-
* [`
|
|
1545
|
-
* [`
|
|
1546
|
-
* [`
|
|
1547
|
-
* [`
|
|
1548
|
-
* [`
|
|
1549
|
-
* [`
|
|
1550
|
-
* [`
|
|
1551
|
-
* [`
|
|
1552
|
-
* [`
|
|
1553
|
-
* [`
|
|
1554
|
-
* [`
|
|
1555
|
-
* [`
|
|
1556
|
-
* [`
|
|
1557
|
-
* [`
|
|
1558
|
-
* [`
|
|
1559
|
-
* [`
|
|
1560
|
-
* [`
|
|
1561
|
-
* [`
|
|
1562
|
-
* [`
|
|
1563
|
-
* [`
|
|
1564
|
-
* [`
|
|
1528
|
+
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 71 of 158 methods.*
|
|
1529
|
+
* [`BrandValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/brandvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 3 of 158 methods.*
|
|
1530
|
+
* [`ImageRequestValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/imagerequestvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 158 methods.*
|
|
1531
|
+
* [`ProductRequestValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/productrequestvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 158 methods.*
|
|
1532
|
+
* [`ScheduleValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/schedulevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 158 methods.*
|
|
1533
|
+
* [`TerminalApplicationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/terminalapplicationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 158 methods.*
|
|
1534
|
+
* [`Transfer`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfer.py): Details of a Transfer. Status code `409`. Applicable to 1 of 158 methods.*
|
|
1535
|
+
* [`CardAcquiringRefund`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/cardacquiringrefund.py): Details of a card refund. Status code `409`. Applicable to 1 of 158 methods.*
|
|
1536
|
+
* [`CreateAccountError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createaccounterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1537
|
+
* [`PatchAccountError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchaccounterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1538
|
+
* [`AssignCountriesError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/assigncountrieserror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1539
|
+
* [`LinkApplePayError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/linkapplepayerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1540
|
+
* [`BankAccountValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/bankaccountvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1541
|
+
* [`MicroDepositValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/microdepositvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1542
|
+
* [`AddCapabilitiesError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/addcapabilitieserror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1543
|
+
* [`LinkCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/linkcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1544
|
+
* [`UpdateCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updatecarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1545
|
+
* [`FileUploadValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/fileuploadvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1546
|
+
* [`FeePlanAgreementError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/feeplanagreementerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1547
|
+
* [`FileValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/filevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1548
|
+
* [`CreatePaymentLinkError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createpaymentlinkerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1549
|
+
* [`UpdatePaymentLinkError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updatepaymentlinkerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1550
|
+
* [`RepresentativeValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/representativevalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1551
|
+
* [`CreateSweepConfigError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createsweepconfigerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1552
|
+
* [`PatchSweepConfigError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchsweepconfigerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1553
|
+
* [`AccountTerminalApplicationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/accountterminalapplicationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1554
|
+
* [`CreateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1555
|
+
* [`UpdateTicketError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateticketerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1556
|
+
* [`TransferOptionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transferoptionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1557
|
+
* [`TransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/transfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1558
|
+
* [`ListTransfersValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listtransfersvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1559
|
+
* [`PatchTransferValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchtransfervalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1560
|
+
* [`RefundValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/refundvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1561
|
+
* [`ReversalValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/reversalvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1562
|
+
* [`UpsertUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/upsertunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1563
|
+
* [`UpdateUnderwritingError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateunderwritingerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1564
|
+
* [`CreateWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/createwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1565
|
+
* [`ListWalletsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwalletsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1566
|
+
* [`PatchWalletValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/patchwalletvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1567
|
+
* [`ListWalletTransactionsValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/listwallettransactionsvalidationerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1568
|
+
* [`RequestCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/requestcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1569
|
+
* [`UpdateIssuedCardError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/updateissuedcarderror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1570
|
+
* [`RevokeTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/revoketokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1571
|
+
* [`AuthTokenRequestError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/authtokenrequesterror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1572
|
+
* [`OnboardingInviteError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/onboardinginviteerror.py): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 158 methods.*
|
|
1565
1573
|
* [`ResponseValidationError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
1566
1574
|
|
|
1567
1575
|
</details>
|
|
@@ -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=4s-lJu8imJ6_UQj3r7CRp37WHmwGWrPPmOha4D1eorw,466
|
|
7
7
|
moovio_sdk/account_terminal_applications.py,sha256=P1WRR9YHhtETL3uJkzthEbOVTWYcFwXBYEP2b7vn-v8,38538
|
|
8
8
|
moovio_sdk/accounts.py,sha256=UC-9ywSHR7Ve4av6XC2nrh45qp06zHAiD5msPmOxI0g,100662
|
|
9
9
|
moovio_sdk/adjustments.py,sha256=zQFf-OpN1kIDwlmZN4-j_3WdvRA6xBROylzLlTDoA24,17621
|
|
@@ -23,12 +23,12 @@ moovio_sdk/enriched_profile.py,sha256=thK4d7jlR0mTkhtVNkC0VUhinHqo3ToveW173e-WIv
|
|
|
23
23
|
moovio_sdk/fee_plans.py,sha256=SSb-JKOQwf5hj9cuJap_3h4x3iTItdnmBAtX6h7UdHE,67645
|
|
24
24
|
moovio_sdk/files.py,sha256=QvfBgtYhMq07WmztsClUZps4Fzr1oxHkpR5mihgLSAY,29563
|
|
25
25
|
moovio_sdk/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
26
|
-
moovio_sdk/images.py,sha256=
|
|
26
|
+
moovio_sdk/images.py,sha256=5K79QiUfvw-KCpahCNxeL61rXo8F6vHENrkXEQCh-dg,59094
|
|
27
27
|
moovio_sdk/industries.py,sha256=Fr2NPvvhPrE_8yEQQKO6AlmXwxFdiFkTJXkPEm-R1zw,9376
|
|
28
28
|
moovio_sdk/institutions.py,sha256=F4mO-lCYZwAtq22psCWwOtMm1-OkL2f6CiS3v-KBgZ4,20531
|
|
29
29
|
moovio_sdk/issuing_transactions.py,sha256=HPPLkRZaQESCtmfrpzCL8XaCm2-R8iZDGzCVbQEX_F8,48969
|
|
30
30
|
moovio_sdk/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
|
|
31
|
-
moovio_sdk/models/components/__init__.py,sha256=
|
|
31
|
+
moovio_sdk/models/components/__init__.py,sha256=GUyYKo79ej3q82cjin7ICit2W5uAHEO3iQ1RmSpVI0A,133325
|
|
32
32
|
moovio_sdk/models/components/account.py,sha256=gIzVHHbfwM-YZns1m9b2z6es5mX-LtCOd7C0N-oPBBA,4189
|
|
33
33
|
moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
|
|
34
34
|
moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
|
|
@@ -251,6 +251,10 @@ moovio_sdk/models/components/governmentiderror.py,sha256=oQM3JAM3G3Mxt4w5yRNNPpw
|
|
|
251
251
|
moovio_sdk/models/components/granttype.py,sha256=j7dVMjidy1nrWlSPTE7--_vTiqRTAH4F6xHub5kp78A,481
|
|
252
252
|
moovio_sdk/models/components/guestprofile.py,sha256=DqixB6MCi-Ihw1u5t7H4cGuD3ChBkJ1Z0r3opaNl5MQ,917
|
|
253
253
|
moovio_sdk/models/components/imagemetadata.py,sha256=mnBGTggtUEXSQP6S8Q5Hv2QDnDHi7tSCuFMqWhdlDy8,1240
|
|
254
|
+
moovio_sdk/models/components/imagemetadatarequest.py,sha256=e2-mk51yQ1_JYgjQvaM_fMc65pMJrOC5BxkLgKAKYg0,674
|
|
255
|
+
moovio_sdk/models/components/imagemetadatavalidationerror.py,sha256=6wheC1GJU7XSbsDAzaZCi6BqgZNn7VAEgveegfXv-sg,472
|
|
256
|
+
moovio_sdk/models/components/imageupdaterequestmultipart.py,sha256=xcGjet8Y9ci_9SzxIkqOoU8okdVyPwcG0Dj61HWxwMM,3605
|
|
257
|
+
moovio_sdk/models/components/imageuploadrequestmultipart.py,sha256=alJcfvg56vLcwQf-aocc5MTSbw88rlYhMqG8tqj2FcA,1793
|
|
254
258
|
moovio_sdk/models/components/incurredfee.py,sha256=aPTYTUICtts5sFinKIcRAD3hm78oJG7ZkS0GuCyovD0,1477
|
|
255
259
|
moovio_sdk/models/components/individualname.py,sha256=RkigcoUQFs7SkLyhO4tTvmGH_6ny9muNlZgfnAfXtpM,1041
|
|
256
260
|
moovio_sdk/models/components/individualnameerror.py,sha256=CAKDn7LAHNnRti82YPlOai0l9ELSZf_Ya_JFWyRdehY,757
|
|
@@ -518,7 +522,7 @@ moovio_sdk/models/components/webhookeventtype.py,sha256=sSBrEyjz4t56BtgnvflgIjmu
|
|
|
518
522
|
moovio_sdk/models/components/webhooktransferpaymentmethoddetails.py,sha256=UW1IFVidGtC0bOT5sV0m0uiJwblvbP6KopkTqkj5SYg,688
|
|
519
523
|
moovio_sdk/models/components/wireinstitution.py,sha256=HAouMCzuM9UtkAW9hgtRW8cMq8vBgYuxj_NFQxsiCbY,810
|
|
520
524
|
moovio_sdk/models/components/wireservices.py,sha256=5LbfeTazeWxrCRk2HBCtyByTZSeg9g4fdhK81lmYICo,1207
|
|
521
|
-
moovio_sdk/models/errors/__init__.py,sha256=
|
|
525
|
+
moovio_sdk/models/errors/__init__.py,sha256=xSSJUsTk4cexhP7UgjBXNSDzOVBrUm-xmVXqXBpiy1I,15431
|
|
522
526
|
moovio_sdk/models/errors/accountterminalapplicationerror.py,sha256=utQc_5REYxWX8P0yPpl-iLmzXNmuWUol9iCvSWJBa1U,967
|
|
523
527
|
moovio_sdk/models/errors/addcapabilitieserror.py,sha256=jklh5kqPyvsPEUA7WsBZM-MxMrViofjPTlVAHVB2HXw,834
|
|
524
528
|
moovio_sdk/models/errors/apierror.py,sha256=VF8AMG-W-YHvm42qZwBagK1vw05kHR-n57SCZLIIThc,1288
|
|
@@ -536,6 +540,7 @@ moovio_sdk/models/errors/feeplanagreementerror.py,sha256=iumHkIoOag9Xys0UHjlQ1d9
|
|
|
536
540
|
moovio_sdk/models/errors/fileuploadvalidationerror.py,sha256=mdK66iZFWIgRruG1Dn8ouVeI1NX_nFDKayfjAAPCw5o,1206
|
|
537
541
|
moovio_sdk/models/errors/filevalidationerror.py,sha256=VcOa2qbMUQdSxuvM6GNXjK6BPsjdLWl_shtl1DFa3r8,1067
|
|
538
542
|
moovio_sdk/models/errors/genericerror.py,sha256=IOGQ1vxKteATOY6TlRULpmI1ltAnE3dj_WNy-O3XSd4,728
|
|
543
|
+
moovio_sdk/models/errors/imagerequestvalidationerror.py,sha256=S7ocwTjxZfRgFgAEvlzA8s718kFO1vRaQ553bNmmKc0,1042
|
|
539
544
|
moovio_sdk/models/errors/linkapplepayerror.py,sha256=4dDutyfau_tkQDKEHqz-ZbC-BqMDwgtbsfb9fwj299E,1461
|
|
540
545
|
moovio_sdk/models/errors/linkcarderror.py,sha256=MYmwDO6OkyNGC8ZtVvApJDcsqXPhldTdHb8SlnK-T8s,1686
|
|
541
546
|
moovio_sdk/models/errors/listtransfersvalidationerror.py,sha256=iY-REUIY6_XfhH_SWtpy0lqCyT78djoZKB5QSohSesg,1649
|
|
@@ -569,7 +574,7 @@ moovio_sdk/models/errors/updateunderwritingerror.py,sha256=W4nmnf2ifLPiUAjkgJqvg
|
|
|
569
574
|
moovio_sdk/models/errors/upsertunderwritingerror.py,sha256=sZqZlicAgIB2fxnv4Yerhe1lAwTdm7T_eR1bZm09h4E,3255
|
|
570
575
|
moovio_sdk/models/internal/__init__.py,sha256=xowceJVTVAP3WRyQ0NEGkm9PAoYU1l0_VYgXZP0ZvlM,1569
|
|
571
576
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
|
572
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
|
577
|
+
moovio_sdk/models/operations/__init__.py,sha256=7k5cneItovRrTIji-quJEWpQGD3zY19VEmcsTfUnTLA,135512
|
|
573
578
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
|
574
579
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
|
575
580
|
moovio_sdk/models/operations/cancelschedule.py,sha256=7h3S-76QlIKdmdQUVHIId-Zay3tc8TVZqqg7SzaudCg,2534
|
|
@@ -712,6 +717,7 @@ moovio_sdk/models/operations/updateapplepaymerchantdomains.py,sha256=cv_L4oIaqY6
|
|
|
712
717
|
moovio_sdk/models/operations/updatebrand.py,sha256=0s31z_CIysv2cWTHGGoX5d6eHZ-jK2nnjNUmlYrLeKY,2703
|
|
713
718
|
moovio_sdk/models/operations/updatecard.py,sha256=rOm7sY1K2ulT3lnD332ttxWdDr-zXjf6Zpurlsl_iYI,2802
|
|
714
719
|
moovio_sdk/models/operations/updatedisputeevidence.py,sha256=wjOa9MYassR-3XC7YjxANXh-Vxcpn7L4QPhdCXayMJM,3214
|
|
720
|
+
moovio_sdk/models/operations/updateimage.py,sha256=M91ojcnz2v05ZrRYaygnfeaE44c57hv_72NmYKERsdU,3026
|
|
715
721
|
moovio_sdk/models/operations/updateissuedcard.py,sha256=UI7L6FqMsKy8-i5-nerol4OlijW8qUPbPF9PhtIQhUc,2930
|
|
716
722
|
moovio_sdk/models/operations/updatepaymentlink.py,sha256=EBUsG8CvC0x172C4WGQbaycxwSeaAO_LyvpWY3Ceii4,2973
|
|
717
723
|
moovio_sdk/models/operations/updateproduct.py,sha256=kBtQvrxnGs1vcqizTXWfbxiXecUd4592Fq8hJVHqdPg,2879
|
|
@@ -724,6 +730,7 @@ moovio_sdk/models/operations/updatewallet.py,sha256=zRI6SKVASY7sb_h2UpCmKJXEMYMj
|
|
|
724
730
|
moovio_sdk/models/operations/uploaddisputeevidencefile.py,sha256=2-3jyt67kZLa6CyNCMla6zLXz9KEOAXN40ZKZQzZ8MY,3170
|
|
725
731
|
moovio_sdk/models/operations/uploaddisputeevidencetext.py,sha256=5hC4mQy_YPrUtWL1i6ZJ6huHiTk_nKXoSXAWw0tInRk,3063
|
|
726
732
|
moovio_sdk/models/operations/uploadfile.py,sha256=BqwXLmdV7Gg3jzI0QqdRCQZes5B9mtmpFXKTxfw-VGA,2818
|
|
733
|
+
moovio_sdk/models/operations/uploadimage.py,sha256=_0RZ4PHJYMIHI7IWNjANoqHtyNTAYQ3hrvWQCRNGtGc,2844
|
|
727
734
|
moovio_sdk/models/operations/upsertbrand.py,sha256=Onr49PCyIjnWXr9iyEcSV719_0R5JHw9DYUVpfXHCqs,2675
|
|
728
735
|
moovio_sdk/models/operations/upsertunderwriting.py,sha256=HPgZANiH8wRV8VgEC9tl7vefp4m2cN9ZOQT_OSkhiNA,2783
|
|
729
736
|
moovio_sdk/onboarding.py,sha256=FdTbpqqYF4KyLZ2uLcrqa3v596Ic7xPvr6-7yxJp5K4,38017
|
|
@@ -764,6 +771,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
|
764
771
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
765
772
|
moovio_sdk/wallet_transactions.py,sha256=YPn4GgAkj1MbcA6PfqI9JCXXvaCmCK_i7LjdT9P-iH8,23903
|
|
766
773
|
moovio_sdk/wallets.py,sha256=probtxxWU4fXD_t6RPiECntgOzQlMZH-tsueH7BfBkU,43262
|
|
767
|
-
moovio_sdk-0.
|
|
768
|
-
moovio_sdk-0.
|
|
769
|
-
moovio_sdk-0.
|
|
774
|
+
moovio_sdk-0.18.0.dist-info/METADATA,sha256=mYuu4C2eerJW9WIn-T6tf51iZ22FW2i3ba22uRPZJgE,117863
|
|
775
|
+
moovio_sdk-0.18.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
776
|
+
moovio_sdk-0.18.0.dist-info/RECORD,,
|
|
File without changes
|