moovio_sdk 0.17.1__py3-none-any.whl → 0.17.3__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 +2 -2
- moovio_sdk/models/components/__init__.py +83 -0
- moovio_sdk/models/components/amountdecimalvalidationerror.py +18 -0
- moovio_sdk/models/components/assignproductimage.py +16 -0
- moovio_sdk/models/components/assignproductimagevalidationerror.py +15 -0
- moovio_sdk/models/components/createproductoption.py +45 -0
- moovio_sdk/models/components/createproductoptiongroup.py +52 -0
- moovio_sdk/models/components/feeproperties.py +7 -1
- moovio_sdk/models/components/partnerpricing.py +12 -6
- moovio_sdk/models/components/partnerpricingagreement.py +10 -4
- moovio_sdk/models/components/product.py +77 -0
- moovio_sdk/models/components/productimagemetadata.py +27 -0
- moovio_sdk/models/components/productoption.py +49 -0
- moovio_sdk/models/components/productoptiongroup.py +56 -0
- moovio_sdk/models/components/productoptiongroupvalidationerror.py +31 -0
- moovio_sdk/models/components/productoptionvalidationerror.py +30 -0
- moovio_sdk/models/components/productrequest.py +57 -0
- moovio_sdk/models/components/volumerange.py +37 -0
- moovio_sdk/models/errors/__init__.py +8 -0
- moovio_sdk/models/errors/productrequestvalidationerror.py +58 -0
- moovio_sdk/models/operations/__init__.py +100 -0
- moovio_sdk/models/operations/createproduct.py +78 -0
- moovio_sdk/models/operations/disableproduct.py +67 -0
- moovio_sdk/models/operations/getproduct.py +71 -0
- moovio_sdk/models/operations/listproducts.py +81 -0
- moovio_sdk/models/operations/updateproduct.py +85 -0
- moovio_sdk/products.py +1232 -0
- moovio_sdk/sdk.py +3 -0
- {moovio_sdk-0.17.1.dist-info → moovio_sdk-0.17.3.dist-info}/METADATA +56 -45
- {moovio_sdk-0.17.1.dist-info → moovio_sdk-0.17.3.dist-info}/RECORD +31 -11
- {moovio_sdk-0.17.1.dist-info → moovio_sdk-0.17.3.dist-info}/WHEEL +0 -0
moovio_sdk/sdk.py
CHANGED
|
@@ -41,6 +41,7 @@ if TYPE_CHECKING:
|
|
|
41
41
|
from moovio_sdk.payment_links import PaymentLinks
|
|
42
42
|
from moovio_sdk.payment_methods import PaymentMethods
|
|
43
43
|
from moovio_sdk.ping import Ping
|
|
44
|
+
from moovio_sdk.products import Products
|
|
44
45
|
from moovio_sdk.receipts import Receipts
|
|
45
46
|
from moovio_sdk.representatives import Representatives
|
|
46
47
|
from moovio_sdk.scheduling import Scheduling
|
|
@@ -74,6 +75,7 @@ class Moov(BaseSDK):
|
|
|
74
75
|
images: "Images"
|
|
75
76
|
payment_links: "PaymentLinks"
|
|
76
77
|
payment_methods: "PaymentMethods"
|
|
78
|
+
products: "Products"
|
|
77
79
|
representatives: "Representatives"
|
|
78
80
|
scheduling: "Scheduling"
|
|
79
81
|
statements: "Statements"
|
|
@@ -111,6 +113,7 @@ class Moov(BaseSDK):
|
|
|
111
113
|
"images": ("moovio_sdk.images", "Images"),
|
|
112
114
|
"payment_links": ("moovio_sdk.payment_links", "PaymentLinks"),
|
|
113
115
|
"payment_methods": ("moovio_sdk.payment_methods", "PaymentMethods"),
|
|
116
|
+
"products": ("moovio_sdk.products", "Products"),
|
|
114
117
|
"representatives": ("moovio_sdk.representatives", "Representatives"),
|
|
115
118
|
"scheduling": ("moovio_sdk.scheduling", "Scheduling"),
|
|
116
119
|
"statements": ("moovio_sdk.statements", "Statements"),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moovio_sdk
|
|
3
|
-
Version: 0.17.
|
|
3
|
+
Version: 0.17.3
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -944,6 +944,16 @@ you'll need to specify the `/accounts/{accountID}/payment-methods.read` scope.
|
|
|
944
944
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
945
945
|
you'll need to specify the `/ping.read` scope.
|
|
946
946
|
|
|
947
|
+
### [products](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/products/README.md)
|
|
948
|
+
|
|
949
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/products/README.md#list) - List active (non-disabled) products for an account.
|
|
950
|
+
* [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/products/README.md#create) - Creates a new product for the specified account.
|
|
951
|
+
* [get](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/products/README.md#get) - Retrieve a product by ID.
|
|
952
|
+
* [update](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/products/README.md#update) - Update a product and its options.
|
|
953
|
+
* [disable](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/products/README.md#disable) - Disable a product by ID.
|
|
954
|
+
|
|
955
|
+
The product will no longer be available, but will remain in the system for historical and reporting purposes.
|
|
956
|
+
|
|
947
957
|
### [receipts](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md)
|
|
948
958
|
|
|
949
959
|
* [create](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/receipts/README.md#create) - Create receipts for transfers and scheduled transfers.
|
|
@@ -1497,7 +1507,7 @@ with Moov(
|
|
|
1497
1507
|
**Primary error:**
|
|
1498
1508
|
* [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py): The base class for HTTP error responses.
|
|
1499
1509
|
|
|
1500
|
-
<details><summary>Less common errors (
|
|
1510
|
+
<details><summary>Less common errors (49)</summary>
|
|
1501
1511
|
|
|
1502
1512
|
<br />
|
|
1503
1513
|
|
|
@@ -1508,49 +1518,50 @@ with Moov(
|
|
|
1508
1518
|
|
|
1509
1519
|
|
|
1510
1520
|
**Inherit from [`MoovError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/mooverror.py)**:
|
|
1511
|
-
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to
|
|
1512
|
-
* [`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
|
|
1513
|
-
* [`
|
|
1514
|
-
* [`
|
|
1515
|
-
* [`
|
|
1516
|
-
* [`
|
|
1517
|
-
* [`
|
|
1518
|
-
* [`
|
|
1519
|
-
* [`
|
|
1520
|
-
* [`
|
|
1521
|
-
* [`
|
|
1522
|
-
* [`
|
|
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
|
-
* [`
|
|
1521
|
+
* [`GenericError`](https://github.com/moovfinancial/moov-python/blob/master/./src/moovio_sdk/models/errors/genericerror.py): Applicable to 69 of 156 methods.*
|
|
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 156 methods.*
|
|
1523
|
+
* [`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 156 methods.*
|
|
1524
|
+
* [`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 156 methods.*
|
|
1525
|
+
* [`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 156 methods.*
|
|
1526
|
+
* [`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 156 methods.*
|
|
1527
|
+
* [`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 156 methods.*
|
|
1528
|
+
* [`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 156 methods.*
|
|
1529
|
+
* [`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 156 methods.*
|
|
1530
|
+
* [`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 156 methods.*
|
|
1531
|
+
* [`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 156 methods.*
|
|
1532
|
+
* [`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 156 methods.*
|
|
1533
|
+
* [`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 156 methods.*
|
|
1534
|
+
* [`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 156 methods.*
|
|
1535
|
+
* [`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 156 methods.*
|
|
1536
|
+
* [`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 156 methods.*
|
|
1537
|
+
* [`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 156 methods.*
|
|
1538
|
+
* [`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 156 methods.*
|
|
1539
|
+
* [`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 156 methods.*
|
|
1540
|
+
* [`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 156 methods.*
|
|
1541
|
+
* [`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 156 methods.*
|
|
1542
|
+
* [`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 156 methods.*
|
|
1543
|
+
* [`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 156 methods.*
|
|
1544
|
+
* [`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 156 methods.*
|
|
1545
|
+
* [`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 156 methods.*
|
|
1546
|
+
* [`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 156 methods.*
|
|
1547
|
+
* [`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 156 methods.*
|
|
1548
|
+
* [`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 156 methods.*
|
|
1549
|
+
* [`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 156 methods.*
|
|
1550
|
+
* [`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 156 methods.*
|
|
1551
|
+
* [`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 156 methods.*
|
|
1552
|
+
* [`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 156 methods.*
|
|
1553
|
+
* [`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 156 methods.*
|
|
1554
|
+
* [`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 156 methods.*
|
|
1555
|
+
* [`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 156 methods.*
|
|
1556
|
+
* [`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 156 methods.*
|
|
1557
|
+
* [`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 156 methods.*
|
|
1558
|
+
* [`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 156 methods.*
|
|
1559
|
+
* [`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 156 methods.*
|
|
1560
|
+
* [`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 156 methods.*
|
|
1561
|
+
* [`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 156 methods.*
|
|
1562
|
+
* [`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 156 methods.*
|
|
1563
|
+
* [`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 156 methods.*
|
|
1564
|
+
* [`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 156 methods.*
|
|
1554
1565
|
* [`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.
|
|
1555
1566
|
|
|
1556
1567
|
</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=HUYFQaTll_ujbsnOQSDUH7YLSs2LOPpp7AJyhyIBqNQ,468
|
|
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
|
|
@@ -28,7 +28,7 @@ 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=uJzF7M7pHmQe27ZpjKJuSf8JrqUmCUy5bG5CsFETZZM,131248
|
|
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
|
|
@@ -59,6 +59,7 @@ moovio_sdk/models/components/addressupdate.py,sha256=jGqMvV8B_g9CDZRJBGt-W2h5MB6
|
|
|
59
59
|
moovio_sdk/models/components/adjustment.py,sha256=kNwAlnVJb6dhqcwGTOQMWN7ihkCDYjsMKq-moJXEL_o,796
|
|
60
60
|
moovio_sdk/models/components/amount.py,sha256=QSmEf6S1o49oWSOYNsZcdvz8D85sT2IlklIK2cavf1A,699
|
|
61
61
|
moovio_sdk/models/components/amountdecimal.py,sha256=2kfAYNYK2VC7-NwwxkhQ8R0UWzLgMMr8Ql-iTVFlCqk,821
|
|
62
|
+
moovio_sdk/models/components/amountdecimalvalidationerror.py,sha256=w7tKdaK-W8YWiUASmCwSwiiKFr6YD3v8h9lMn8-YZMQ,554
|
|
62
63
|
moovio_sdk/models/components/amountupdate.py,sha256=SROTvgngsLRQk1o5HLS7yazSzmAQtxqRsUvt6GvTPL4,812
|
|
63
64
|
moovio_sdk/models/components/amountvalidationerror.py,sha256=eVhsMw6SlQepMvddnwUae3ZrMJES-KkXbC5NmbkpOcg,448
|
|
64
65
|
moovio_sdk/models/components/applebillingcontact.py,sha256=y8xves7ZybcN0z06rvma2LNqvbTQKHCf2HEW88gKVZk,1841
|
|
@@ -67,6 +68,8 @@ moovio_sdk/models/components/applepaymerchantdomains.py,sha256=HCW6dsQ0lfZdZ1lbR
|
|
|
67
68
|
moovio_sdk/models/components/applepaypaymentmethod.py,sha256=HmOYyzNpU7OD_yUg37R7rqoUU6aT232ZGJEA14-9Mvg,1113
|
|
68
69
|
moovio_sdk/models/components/applepayresponse.py,sha256=YKdZYimJ0sYkQ32HEwWjHeDkXo9Xv0J_w3E-SXuslm0,2738
|
|
69
70
|
moovio_sdk/models/components/applicationscope.py,sha256=OZfxJX2BSIzyCWIrnF6h8auMbYD_T_NcFbzwQvazHag,1570
|
|
71
|
+
moovio_sdk/models/components/assignproductimage.py,sha256=CqhvCdGactTUbysYl7bzK2ME2i0qnvB31SeCSkZHW1E,535
|
|
72
|
+
moovio_sdk/models/components/assignproductimagevalidationerror.py,sha256=QCklvfVbG-MwK8Nb1QgqeJOwQygNSQ86tHTyyr5Y7m4,482
|
|
70
73
|
moovio_sdk/models/components/asynccreatedrefund.py,sha256=-xIQDtT4GzYMDpF8Nd0lb6XBttJACAZuMQjJA4eqEc8,685
|
|
71
74
|
moovio_sdk/models/components/asynctransfer.py,sha256=uKqcJnBTyqfJUTEa-8anaNdJfTDfAGPnGN_zPBEtcEM,507
|
|
72
75
|
moovio_sdk/models/components/authorizeduser.py,sha256=bvuz-KTdDULbaXodHxL5Gs0ZuKEszCYmQOGn8KeDSJQ,585
|
|
@@ -166,6 +169,8 @@ moovio_sdk/models/components/createfeeplanagreement.py,sha256=FK4oIE4nZl2JbKRnzX
|
|
|
166
169
|
moovio_sdk/models/components/createindividualerror.py,sha256=UqSGstPAqSqYHsALIk_uCoZbR99X0o_584dBNY2PeX0,2243
|
|
167
170
|
moovio_sdk/models/components/createindividualprofile.py,sha256=vBCwEfgONFxn459gGjhhvVNuIJ0oLfZiiGE8qCMBvXM,1234
|
|
168
171
|
moovio_sdk/models/components/createpaymentlink.py,sha256=OEf4LEYZY4JTq_GZ_wSo3Puxcgogxm-4wWr3pCZkHHg,3546
|
|
172
|
+
moovio_sdk/models/components/createproductoption.py,sha256=DJb5jVaKS7EsDmeyTDOcq0TYjfS5xbp9jqTTf8d8-mo,1598
|
|
173
|
+
moovio_sdk/models/components/createproductoptiongroup.py,sha256=ofX4CYm5KlnDs_MibZOM4m4p6JWd0gg5cptN9bcc86c,1748
|
|
169
174
|
moovio_sdk/models/components/createprofile.py,sha256=oK9bys0dVPqNffjNhwdry4U7iLq_nkgCUFm13rzZt3k,733
|
|
170
175
|
moovio_sdk/models/components/createprofileerror.py,sha256=ebywekqEHBAwy9umf8Xxc-6WY5Zw-hvxBoJP_eKqsYI,710
|
|
171
176
|
moovio_sdk/models/components/createrefund.py,sha256=P8GfuuX56Le-OAMAvQbt9zmBixoKXz-YhmS2cNaJgO8,909
|
|
@@ -221,7 +226,7 @@ moovio_sdk/models/components/feemodel.py,sha256=M98YekU7JfnwG613Zi6SJE9hcUBIHiqM
|
|
|
221
226
|
moovio_sdk/models/components/feeplan.py,sha256=0WIFfE3jd8CupBAi-66bjUN10f1vEv6e_9_uv6bKl5c,2381
|
|
222
227
|
moovio_sdk/models/components/feeplanagreement.py,sha256=JI_xx9o8rkYRT9GkjnAxJemFwXliPYXoqmZ68yT0U8k,2642
|
|
223
228
|
moovio_sdk/models/components/feeplanagreementstatus.py,sha256=D7q_iy4vh1Xaex6BwftVoKmV2BGdEhPm8FtFCTR1jHQ,225
|
|
224
|
-
moovio_sdk/models/components/feeproperties.py,sha256=
|
|
229
|
+
moovio_sdk/models/components/feeproperties.py,sha256=Pw6uEK7Qu1L7OQDhu00muymLWOg9dvQHuckNcGXTjTE,2538
|
|
225
230
|
moovio_sdk/models/components/filedetails.py,sha256=qVMztRp46CEWFAdhISAWZXqv435UKQyzHc5-Rae5KGw,1601
|
|
226
231
|
moovio_sdk/models/components/filepurpose.py,sha256=GXnCUyNBzW7jBPisein8PENT7gK-x2fM9BaVNhfN1uU,518
|
|
227
232
|
moovio_sdk/models/components/filestatus.py,sha256=95-wSRDwAOyNl0VOsQp4RwNgH9MHs37ldSFMy4EPd5M,268
|
|
@@ -308,8 +313,8 @@ moovio_sdk/models/components/onboardinginviterequest.py,sha256=7xl0dxgF7dNKNZrtI
|
|
|
308
313
|
moovio_sdk/models/components/onboardingpartneraccount.py,sha256=r5WjWw0x0ScKm4_CwX2jS7cDFn9K7bedVC50kNzITVI,1110
|
|
309
314
|
moovio_sdk/models/components/othercardfees.py,sha256=2uKj8XtiDaJURBvNl6y2NXULwC_KRQA4x7fjJpeRE1s,1554
|
|
310
315
|
moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS7CsA_MeablSzM7w4k4UR565zQ,590
|
|
311
|
-
moovio_sdk/models/components/partnerpricing.py,sha256=
|
|
312
|
-
moovio_sdk/models/components/partnerpricingagreement.py,sha256=
|
|
316
|
+
moovio_sdk/models/components/partnerpricing.py,sha256=ajUfGHT6z3cykXWIpF5xvU-SgmciWnIMOcFJDRN9BRU,2655
|
|
317
|
+
moovio_sdk/models/components/partnerpricingagreement.py,sha256=Ukz6lVxd4CVdl5NX3i4AtaGynW-5lTyRUR9u62OcUjY,3000
|
|
313
318
|
moovio_sdk/models/components/patchaccount.py,sha256=iwK7AVVTR03-EBybeWo-g2KPY2OtHtUU7NJF1ne_lHs,4524
|
|
314
319
|
moovio_sdk/models/components/patchbusiness.py,sha256=MXhweZYmjmbXJ5PF9-eiue2R2DP-zI2qeFQWoO0kBLI,2700
|
|
315
320
|
moovio_sdk/models/components/patchindividual.py,sha256=eG1P_IJkcu6qdeXD7uudZA2QXf4FRC9nc4u7yvlEu5o,1496
|
|
@@ -344,6 +349,13 @@ moovio_sdk/models/components/plaidlinkpayload.py,sha256=x7TV7dCNUoWoRE6oHiawYFuO
|
|
|
344
349
|
moovio_sdk/models/components/plaidpayload.py,sha256=bF7vRUa3OdC6k4QZbkjXPYxL70EA0QgugQfHTFG-7eQ,1537
|
|
345
350
|
moovio_sdk/models/components/platformfees.py,sha256=8b-9aTsIdDUeTUjuB8jzLX2ORLfr3EGLmBv7UFyoGP4,998
|
|
346
351
|
moovio_sdk/models/components/primaryregulator.py,sha256=nx21YAn8kxmXRApHK8rJD_YKzi2ZVm8qqFqgCrrBkSU,381
|
|
352
|
+
moovio_sdk/models/components/product.py,sha256=qs8nPfbCJNbJawkV8GcYU7ygLcurD6xJ2dup5HGuOCU,2932
|
|
353
|
+
moovio_sdk/models/components/productimagemetadata.py,sha256=Pf9djsaflJeSRE2pZsNuQC5LSjb74U0rVEPPc-PD1cE,876
|
|
354
|
+
moovio_sdk/models/components/productoption.py,sha256=SZmjA7qcXkF9QOx2oYdAbcPTd_IyJldNdAX1GlLaljk,1686
|
|
355
|
+
moovio_sdk/models/components/productoptiongroup.py,sha256=ki3P4hbFYwZVMsF0YOAYw3xhzEMfMSAOkekaOnyKJqU,1882
|
|
356
|
+
moovio_sdk/models/components/productoptiongroupvalidationerror.py,sha256=mdJU-8O3uDg2TRvIqrhNDW6Z797Lm7Npn8mkcS5sS7w,1012
|
|
357
|
+
moovio_sdk/models/components/productoptionvalidationerror.py,sha256=Zkr6GOW9ajVe283qukaWHVXIAF9y288NN9RhLXmpuDg,936
|
|
358
|
+
moovio_sdk/models/components/productrequest.py,sha256=S9BPzr0AAvLweAPfzKaHVToZZ4owWBCvu129vdwOOdY,2014
|
|
347
359
|
moovio_sdk/models/components/profile.py,sha256=-EXX_7LYQ2y1FgWs9Lf45zCYjOz6_J9sA_6zySeBeWk,1292
|
|
348
360
|
moovio_sdk/models/components/pullfromcardpaymentmethod.py,sha256=LVhaRwsPrtQsBqjASPIzzGng3C6TDfdjq0FbjYV2ing,1092
|
|
349
361
|
moovio_sdk/models/components/pushtocardpaymentmethod.py,sha256=gGNrMlhRS6Fyh3-L84Kp7iqEfTosffNeytNMfhr9__c,1078
|
|
@@ -453,6 +465,7 @@ moovio_sdk/models/components/verificationstatus.py,sha256=6nlfAjJgvRDwVKw39bUZ0E
|
|
|
453
465
|
moovio_sdk/models/components/verificationstatusdetail.py,sha256=XIw29tQsrVh9xPyZJABnBfCYBhOZ8X-aVGjmiu7jTm4,901
|
|
454
466
|
moovio_sdk/models/components/volumebycustomertype.py,sha256=xA-0-3DWRxmHLZ-J0Zjy0jm-SjBJTwv5giVIjZlZCTU,628
|
|
455
467
|
moovio_sdk/models/components/volumebycustomertypeerror.py,sha256=zted3iTK3pbCdIRgaBV-3-wW0KUGDRhTRkyiJnHKJbw,739
|
|
468
|
+
moovio_sdk/models/components/volumerange.py,sha256=nh44REzL7UqoJe15q0A7Va7IbHRzx-BDfRN3f4DrZu0,1437
|
|
456
469
|
moovio_sdk/models/components/volumesharebycustomertype.py,sha256=Tea6z-3mfBfywfS6wRGg343Ba9igaM6wvLYp39tU8h0,519
|
|
457
470
|
moovio_sdk/models/components/volumesharebycustomertypeerror.py,sha256=EjKMdHyRUKEUdfh2N0zunYcD59SXPWWYDrLLCW2mCVo,529
|
|
458
471
|
moovio_sdk/models/components/wallet.py,sha256=7dGQNT8WyUjLUTKy5zL3s6jVFQdPztc6h61pllNHQ5o,2798
|
|
@@ -505,7 +518,7 @@ moovio_sdk/models/components/webhookeventtype.py,sha256=sSBrEyjz4t56BtgnvflgIjmu
|
|
|
505
518
|
moovio_sdk/models/components/webhooktransferpaymentmethoddetails.py,sha256=UW1IFVidGtC0bOT5sV0m0uiJwblvbP6KopkTqkj5SYg,688
|
|
506
519
|
moovio_sdk/models/components/wireinstitution.py,sha256=HAouMCzuM9UtkAW9hgtRW8cMq8vBgYuxj_NFQxsiCbY,810
|
|
507
520
|
moovio_sdk/models/components/wireservices.py,sha256=5LbfeTazeWxrCRk2HBCtyByTZSeg9g4fdhK81lmYICo,1207
|
|
508
|
-
moovio_sdk/models/errors/__init__.py,sha256=
|
|
521
|
+
moovio_sdk/models/errors/__init__.py,sha256=AUSM23WG0qGQYMyOHhRc0jOnJHgWngzVNgi8iw220SY,15088
|
|
509
522
|
moovio_sdk/models/errors/accountterminalapplicationerror.py,sha256=utQc_5REYxWX8P0yPpl-iLmzXNmuWUol9iCvSWJBa1U,967
|
|
510
523
|
moovio_sdk/models/errors/addcapabilitieserror.py,sha256=jklh5kqPyvsPEUA7WsBZM-MxMrViofjPTlVAHVB2HXw,834
|
|
511
524
|
moovio_sdk/models/errors/apierror.py,sha256=VF8AMG-W-YHvm42qZwBagK1vw05kHR-n57SCZLIIThc,1288
|
|
@@ -536,6 +549,7 @@ moovio_sdk/models/errors/patchaccounterror.py,sha256=FLmUURAs-f-aFyYTyK4T8PXZkv-
|
|
|
536
549
|
moovio_sdk/models/errors/patchsweepconfigerror.py,sha256=SWMKy05_SDHdq16XU6uAFw9EwkuK2-PI2C_Mv6mAmDc,1304
|
|
537
550
|
moovio_sdk/models/errors/patchtransfervalidationerror.py,sha256=DhzLGFOZFfcY-24Qb4wkHpmJAxsACQsf-zNKD49OQak,952
|
|
538
551
|
moovio_sdk/models/errors/patchwalletvalidationerror.py,sha256=8rkYuNGEnHlmpSTOK_mD5OpgXGB9Brg6adHn8gfgS0Y,909
|
|
552
|
+
moovio_sdk/models/errors/productrequestvalidationerror.py,sha256=1iI9vyag55M_wlHWe9pQgV8xY2l0M5DB32Xb0zoyF4k,1819
|
|
539
553
|
moovio_sdk/models/errors/refundvalidationerror.py,sha256=lt1iwnk8aZENIWYYTxZuNGqbobX1DulvAms5EntzLhs,920
|
|
540
554
|
moovio_sdk/models/errors/representativevalidationerror.py,sha256=SWqOWaOs7xmfXNLdaOcfem-zD68NH7NI3L_XeYwgESI,2669
|
|
541
555
|
moovio_sdk/models/errors/requestcarderror.py,sha256=w6vpTL-w1b9aH5kMBp8IZ893l8YkdnxS5k7zqxKKTHg,1595
|
|
@@ -555,7 +569,7 @@ moovio_sdk/models/errors/updateunderwritingerror.py,sha256=W4nmnf2ifLPiUAjkgJqvg
|
|
|
555
569
|
moovio_sdk/models/errors/upsertunderwritingerror.py,sha256=sZqZlicAgIB2fxnv4Yerhe1lAwTdm7T_eR1bZm09h4E,3255
|
|
556
570
|
moovio_sdk/models/internal/__init__.py,sha256=xowceJVTVAP3WRyQ0NEGkm9PAoYU1l0_VYgXZP0ZvlM,1569
|
|
557
571
|
moovio_sdk/models/internal/globals.py,sha256=uz3scUHVTLawU2bzU4ov4C3bSRwoNolTJ5O27QSMIgA,1701
|
|
558
|
-
moovio_sdk/models/operations/__init__.py,sha256=
|
|
572
|
+
moovio_sdk/models/operations/__init__.py,sha256=_WsY6PqMq1BW2kfyqajp3jsMFjrWHowZzVAaK9sZb88,134112
|
|
559
573
|
moovio_sdk/models/operations/acceptdispute.py,sha256=imJTeB7PuXqfKBqA-VkIAFFNpW92U7DMxPx7CEb9eDQ,2544
|
|
560
574
|
moovio_sdk/models/operations/assignaccountcountries.py,sha256=NIGZ5oNIW7Ei4Y7WNnMVqcYUSQgIq3o_TlR0_ptwLJg,2753
|
|
561
575
|
moovio_sdk/models/operations/cancelschedule.py,sha256=7h3S-76QlIKdmdQUVHIId-Zay3tc8TVZqqg7SzaudCg,2534
|
|
@@ -569,6 +583,7 @@ moovio_sdk/models/operations/createcancellation.py,sha256=a_qyAQqojgzzCVX_tZ0IIS
|
|
|
569
583
|
moovio_sdk/models/operations/createfeeplanagreements.py,sha256=uaUnzhbsMrkIpSJwXeVHNQ0Ydvyai-lWTqYT5zsuS5E,2889
|
|
570
584
|
moovio_sdk/models/operations/createonboardinginvite.py,sha256=7UqLeWWUpNoxhdIVo96rhsnPW2LeceUMO7Sd30Ps0yI,2149
|
|
571
585
|
moovio_sdk/models/operations/createpaymentlink.py,sha256=X7nqaUI7Gn0lYZ3ixtHC0Yf0cN707S2bf_ORjqtN8go,2765
|
|
586
|
+
moovio_sdk/models/operations/createproduct.py,sha256=v3A5EWte6GqXLdtNomp4EH-7mSDjt1eg4Azm9vi4VS8,2691
|
|
572
587
|
moovio_sdk/models/operations/createreceipts.py,sha256=3h9Q8GZVq1kRa3-5PJDhCrzpBvTPALgHtVyF2tZKo-A,2123
|
|
573
588
|
moovio_sdk/models/operations/createrepresentative.py,sha256=Quz9O6hJWJCs42szxIlTETb9-jLoTTTBBdOfuG8komw,2883
|
|
574
589
|
moovio_sdk/models/operations/createreversal.py,sha256=nQIIp68Itf7mtVTpeIDrDUZWsKK6e4DwQEyAzIlM3VU,3395
|
|
@@ -588,6 +603,7 @@ moovio_sdk/models/operations/disablebankaccount.py,sha256=xkm3S1Gb_-57Cz7U_4GE7a
|
|
|
588
603
|
moovio_sdk/models/operations/disablecapability.py,sha256=nRk_E9xy4PZj4O3aOV5mZK1L2N_n7VsZkMJX6Ogn0Vo,3277
|
|
589
604
|
moovio_sdk/models/operations/disablecard.py,sha256=kRoR1Ts3earJhXHhP04ky-UzsTK7ICnXtYztYrhXDkE,2364
|
|
590
605
|
moovio_sdk/models/operations/disablepaymentlink.py,sha256=yaPirnoCUEOojbaNWp_7ysTGDAnYCY4ElWN0COnNcNY,2435
|
|
606
|
+
moovio_sdk/models/operations/disableproduct.py,sha256=FxDPQ8DDNY5atSXxp96Xxbaw9NkAqsRoMx30NVTPRtI,2391
|
|
591
607
|
moovio_sdk/models/operations/disconnectaccount.py,sha256=1db9q5UeliMidNx9h4fGP5L4X43StiTyt8plU0Kv4RI,2221
|
|
592
608
|
moovio_sdk/models/operations/generateendtoendkey.py,sha256=0G-6TSNNA7qDCJmGwYyYeCNy5zaPxey3lgQjYlwDo7U,2222
|
|
593
609
|
moovio_sdk/models/operations/getaccount.py,sha256=OEz8rcS2uYsbcgdWVdoFI2muroDGcqeIMYAALc2rxI0,2338
|
|
@@ -618,6 +634,7 @@ moovio_sdk/models/operations/getonboardinginvite.py,sha256=4xp-_CGqhf_U3Fk9YqkKi
|
|
|
618
634
|
moovio_sdk/models/operations/getpaymentlink.py,sha256=XH7IZR48GUsNz8kPYQPNu0prkp_O5uXg0Y0VCriCk9c,2594
|
|
619
635
|
moovio_sdk/models/operations/getpaymentlinkqrcode.py,sha256=gCF1v6D2ypcM4JrpFgKKtoR_hwi9Eg9Zymr1oU7SDEE,2984
|
|
620
636
|
moovio_sdk/models/operations/getpaymentmethod.py,sha256=AuW2MtoAr9OX7NJKsBFT0eZ4N8daa7VIDx9t6uK6k4o,2618
|
|
637
|
+
moovio_sdk/models/operations/getproduct.py,sha256=DH4Mj3Ax3WXca1-VWQpoks9x3DQfZaysJ0ADqPvv_NY,2526
|
|
621
638
|
moovio_sdk/models/operations/getpublicimage.py,sha256=Ajf7NOOsTNQ6vA9WDX0j-32JL51vRA6_iwVRn7DtIWU,2262
|
|
622
639
|
moovio_sdk/models/operations/getrefund.py,sha256=aZvHuLnG00FLfg60rz9Cyowq5YZgfDJGmMEJ87JXPhs,2945
|
|
623
640
|
moovio_sdk/models/operations/getrepresentative.py,sha256=XuUWGVrCIowalB7eoAq0yHhJz1susEfBIu98NQ3Jcco,2765
|
|
@@ -665,6 +682,7 @@ moovio_sdk/models/operations/listpartnerpricing.py,sha256=854cjjpp-xrbljhv2TeJMN
|
|
|
665
682
|
moovio_sdk/models/operations/listpartnerpricingagreements.py,sha256=S8mCWGkgwoilm1lSeK3aYO5InBANJn3DCo61tpmO1EM,3816
|
|
666
683
|
moovio_sdk/models/operations/listpaymentlinks.py,sha256=d-OFDC26Vki-fx_7O0IEVPow4UJug_WuRw9fFxm_Yks,2410
|
|
667
684
|
moovio_sdk/models/operations/listpaymentmethods.py,sha256=fiEvZLA4uVk7r98a6naeTZHqHR1Cc6Put56T8ASv944,3890
|
|
685
|
+
moovio_sdk/models/operations/listproducts.py,sha256=jBT2mOYgYZ2tDEUa0j9CklDnzuifqde-JcB9zRwVnJo,2731
|
|
668
686
|
moovio_sdk/models/operations/listreceipts.py,sha256=Hp2fOurscJCv1ejHwtUYJ1zGS4RQfoDx_ux6itbl94U,2511
|
|
669
687
|
moovio_sdk/models/operations/listrefunds.py,sha256=sVXcY-yN_NYHfeTeI9cwZR9GC3H2aUkGc9YPxcvjlIE,2708
|
|
670
688
|
moovio_sdk/models/operations/listrepresentatives.py,sha256=_8WjNSUx2wmZnR5Ggp5RHgPPLg9AEwHFKIOs7McR4BQ,2506
|
|
@@ -696,6 +714,7 @@ moovio_sdk/models/operations/updatecard.py,sha256=rOm7sY1K2ulT3lnD332ttxWdDr-zXj
|
|
|
696
714
|
moovio_sdk/models/operations/updatedisputeevidence.py,sha256=wjOa9MYassR-3XC7YjxANXh-Vxcpn7L4QPhdCXayMJM,3214
|
|
697
715
|
moovio_sdk/models/operations/updateissuedcard.py,sha256=UI7L6FqMsKy8-i5-nerol4OlijW8qUPbPF9PhtIQhUc,2930
|
|
698
716
|
moovio_sdk/models/operations/updatepaymentlink.py,sha256=EBUsG8CvC0x172C4WGQbaycxwSeaAO_LyvpWY3Ceii4,2973
|
|
717
|
+
moovio_sdk/models/operations/updateproduct.py,sha256=kBtQvrxnGs1vcqizTXWfbxiXecUd4592Fq8hJVHqdPg,2879
|
|
699
718
|
moovio_sdk/models/operations/updaterepresentative.py,sha256=10HauPBO07U83M5fVvQoJN7x6qbmHFuVm3ESvUAKKc4,3166
|
|
700
719
|
moovio_sdk/models/operations/updateschedule.py,sha256=OsnpQKWyXbwf9GMTXNQKMw6keDjlWTL-RC9OfoqdUI8,3072
|
|
701
720
|
moovio_sdk/models/operations/updatesweepconfig.py,sha256=QGWPSl-B9LZKErikvREMUIrsJUfpU5hfdSlIKW567Fk,2959
|
|
@@ -711,11 +730,12 @@ moovio_sdk/onboarding.py,sha256=FdTbpqqYF4KyLZ2uLcrqa3v596Ic7xPvr6-7yxJp5K4,3801
|
|
|
711
730
|
moovio_sdk/payment_links.py,sha256=leb_eP_rZDspMDiEGrspJyt5z7rPUqkIbujgw-QL6-c,66450
|
|
712
731
|
moovio_sdk/payment_methods.py,sha256=s0SuB7iUKD0pHWqIx9W8c8Esv99X1YWA6IFZ6g7NrrI,19344
|
|
713
732
|
moovio_sdk/ping.py,sha256=egNkmemIyOXWRTt67BrZLRq3DOjHVTokrdCXMSnp3xs,8679
|
|
733
|
+
moovio_sdk/products.py,sha256=4PMLhkGl7eaQ1J0d5a-stjrnablZscr7q1gzSt5bE1Y,51820
|
|
714
734
|
moovio_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
715
735
|
moovio_sdk/receipts.py,sha256=RYD4zg7Ou1wr9dOyB0B_c2z5xojNvSWNDhQJFbDlMjQ,19043
|
|
716
736
|
moovio_sdk/representatives.py,sha256=QgYFSM0Tv9m4EnXJIyyGLiouV50qcjfCntyllx6rAj8,60239
|
|
717
737
|
moovio_sdk/scheduling.py,sha256=1B6wCUbwCTa9XlwbEJssDHYU7AL6fzMm9Kb4mhc63_Q,60914
|
|
718
|
-
moovio_sdk/sdk.py,sha256=
|
|
738
|
+
moovio_sdk/sdk.py,sha256=85cpJ0mVgoGOZ_ZmR6K67nFrD-PTWEYgvYckMPqAZNM,12932
|
|
719
739
|
moovio_sdk/sdkconfiguration.py,sha256=vvZHznUDI2m3Z8ddTKDFUXkQu4mNBGX8Q9Zx7XpR3WY,1665
|
|
720
740
|
moovio_sdk/statements.py,sha256=6mYhfYupMKd8OqHSe3SFBFh8jEKxCKVKypJaHbsW5L0,21153
|
|
721
741
|
moovio_sdk/support.py,sha256=2dHer1tUbpxBiaCHzaAIfjmsbrHDKbM-AbX0mU4jVWg,50539
|
|
@@ -744,6 +764,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
|
744
764
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
745
765
|
moovio_sdk/wallet_transactions.py,sha256=YPn4GgAkj1MbcA6PfqI9JCXXvaCmCK_i7LjdT9P-iH8,23903
|
|
746
766
|
moovio_sdk/wallets.py,sha256=probtxxWU4fXD_t6RPiECntgOzQlMZH-tsueH7BfBkU,43262
|
|
747
|
-
moovio_sdk-0.17.
|
|
748
|
-
moovio_sdk-0.17.
|
|
749
|
-
moovio_sdk-0.17.
|
|
767
|
+
moovio_sdk-0.17.3.dist-info/METADATA,sha256=lXr7ewMWdiozRpHWeH6RdFEaPC5UC92NALlRo61lmHY,116958
|
|
768
|
+
moovio_sdk-0.17.3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
769
|
+
moovio_sdk-0.17.3.dist-info/RECORD,,
|
|
File without changes
|