moovio_sdk 0.18.3__py3-none-any.whl → 0.18.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- moovio_sdk/_version.py +3 -3
- moovio_sdk/models/components/businessprofile.py +5 -0
- moovio_sdk/models/components/createbusinesserror.py +5 -0
- moovio_sdk/models/components/createbusinessprofile.py +5 -0
- moovio_sdk/models/components/industrytaxonomy.py +2 -2
- moovio_sdk/models/components/patchbusiness.py +5 -0
- moovio_sdk/models/components/requirementid.py +1 -0
- moovio_sdk/models/components/transfer.py +2 -0
- moovio_sdk/models/components/wallettransaction.py +2 -0
- moovio_sdk/models/errors/transfer.py +1 -0
- {moovio_sdk-0.18.3.dist-info → moovio_sdk-0.18.5.dist-info}/METADATA +1 -1
- {moovio_sdk-0.18.3.dist-info → moovio_sdk-0.18.5.dist-info}/RECORD +13 -13
- {moovio_sdk-0.18.3.dist-info → moovio_sdk-0.18.5.dist-info}/WHEEL +0 -0
moovio_sdk/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "moovio_sdk"
|
|
6
|
-
__version__: str = "0.18.
|
|
6
|
+
__version__: str = "0.18.5"
|
|
7
7
|
__openapi_doc_version__: str = "latest"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.18.
|
|
8
|
+
__gen_version__: str = "2.730.5"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.18.5 2.730.5 latest moovio_sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -32,6 +32,8 @@ class BusinessProfileTypedDict(TypedDict):
|
|
|
32
32
|
r"""Indicates whether a tax ID has been provided for this business."""
|
|
33
33
|
representatives: NotRequired[List[RepresentativeTypedDict]]
|
|
34
34
|
industry_codes: NotRequired[IndustryCodesTypedDict]
|
|
35
|
+
industry: NotRequired[str]
|
|
36
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
35
37
|
primary_regulator: NotRequired[PrimaryRegulator]
|
|
36
38
|
r"""If the business is a financial institution, this field describes its primary regulator."""
|
|
37
39
|
|
|
@@ -75,6 +77,9 @@ class BusinessProfile(BaseModel):
|
|
|
75
77
|
Optional[IndustryCodes], pydantic.Field(alias="industryCodes")
|
|
76
78
|
] = None
|
|
77
79
|
|
|
80
|
+
industry: Optional[str] = None
|
|
81
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
82
|
+
|
|
78
83
|
primary_regulator: Annotated[
|
|
79
84
|
Optional[PrimaryRegulator], pydantic.Field(alias="primaryRegulator")
|
|
80
85
|
] = None
|
|
@@ -50,6 +50,8 @@ class CreateBusinessErrorTypedDict(TypedDict):
|
|
|
50
50
|
description: NotRequired[str]
|
|
51
51
|
tax_id: NotRequired[CreateBusinessErrorTaxIDTypedDict]
|
|
52
52
|
industry_codes: NotRequired[CreateBusinessErrorIndustryCodesTypedDict]
|
|
53
|
+
industry: NotRequired[str]
|
|
54
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
53
55
|
primary_regulator: NotRequired[str]
|
|
54
56
|
|
|
55
57
|
|
|
@@ -83,6 +85,9 @@ class CreateBusinessError(BaseModel):
|
|
|
83
85
|
pydantic.Field(alias="industryCodes"),
|
|
84
86
|
] = None
|
|
85
87
|
|
|
88
|
+
industry: Optional[str] = None
|
|
89
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
90
|
+
|
|
86
91
|
primary_regulator: Annotated[
|
|
87
92
|
Optional[str], pydantic.Field(alias="primaryRegulator")
|
|
88
93
|
] = None
|
|
@@ -28,6 +28,8 @@ class CreateBusinessProfileTypedDict(TypedDict):
|
|
|
28
28
|
tax_id: NotRequired[TaxIDTypedDict]
|
|
29
29
|
r"""An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN."""
|
|
30
30
|
industry_codes: NotRequired[IndustryCodesTypedDict]
|
|
31
|
+
industry: NotRequired[str]
|
|
32
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
31
33
|
primary_regulator: NotRequired[PrimaryRegulator]
|
|
32
34
|
r"""If the business is a financial institution, this field describes its primary regulator."""
|
|
33
35
|
|
|
@@ -63,6 +65,9 @@ class CreateBusinessProfile(BaseModel):
|
|
|
63
65
|
Optional[IndustryCodes], pydantic.Field(alias="industryCodes")
|
|
64
66
|
] = None
|
|
65
67
|
|
|
68
|
+
industry: Optional[str] = None
|
|
69
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
70
|
+
|
|
66
71
|
primary_regulator: Annotated[
|
|
67
72
|
Optional[PrimaryRegulator], pydantic.Field(alias="primaryRegulator")
|
|
68
73
|
] = None
|
|
@@ -10,7 +10,7 @@ class IndustryTaxonomyTypedDict(TypedDict):
|
|
|
10
10
|
r"""A structured industry taxonomy entry with category and mapped to a default MCC code."""
|
|
11
11
|
|
|
12
12
|
industry: str
|
|
13
|
-
r"""
|
|
13
|
+
r"""Classification identifier for the industry."""
|
|
14
14
|
display_name: str
|
|
15
15
|
r"""Display name of the industry"""
|
|
16
16
|
category: str
|
|
@@ -25,7 +25,7 @@ class IndustryTaxonomy(BaseModel):
|
|
|
25
25
|
r"""A structured industry taxonomy entry with category and mapped to a default MCC code."""
|
|
26
26
|
|
|
27
27
|
industry: str
|
|
28
|
-
r"""
|
|
28
|
+
r"""Classification identifier for the industry."""
|
|
29
29
|
|
|
30
30
|
display_name: Annotated[str, pydantic.Field(alias="displayName")]
|
|
31
31
|
r"""Display name of the industry"""
|
|
@@ -27,6 +27,8 @@ class PatchBusinessTypedDict(TypedDict):
|
|
|
27
27
|
r"""An EIN (employer identification number) for the business. For sole proprietors, an SSN can be used as the EIN."""
|
|
28
28
|
owners_provided: NotRequired[bool]
|
|
29
29
|
industry_codes: NotRequired[IndustryCodesTypedDict]
|
|
30
|
+
industry: NotRequired[str]
|
|
31
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
30
32
|
primary_regulator: NotRequired[PrimaryRegulator]
|
|
31
33
|
r"""If the business is a financial institution, this field describes its primary regulator."""
|
|
32
34
|
|
|
@@ -66,6 +68,9 @@ class PatchBusiness(BaseModel):
|
|
|
66
68
|
Optional[IndustryCodes], pydantic.Field(alias="industryCodes")
|
|
67
69
|
] = None
|
|
68
70
|
|
|
71
|
+
industry: Optional[str] = None
|
|
72
|
+
r"""Classification identifier for the industry. Use the [GET industries](https://docs.moov.io/api/enrichment/form-shortening/industries/get/) endpoint to retrieve an array of valid industry details for a merchant, inducing all industry field values."""
|
|
73
|
+
|
|
69
74
|
primary_regulator: Annotated[
|
|
70
75
|
Optional[PrimaryRegulator], pydantic.Field(alias="primaryRegulator")
|
|
71
76
|
] = None
|
|
@@ -30,6 +30,7 @@ class RequirementID(str, Enum):
|
|
|
30
30
|
BUSINESS_OWNERS = "business.owners"
|
|
31
31
|
BUSINESS_CLASSIFICATION = "business.classification"
|
|
32
32
|
BUSINESS_INDUSTRY_CODE_MCC = "business.industry-code-mcc"
|
|
33
|
+
BUSINESS_INDUSTRY = "business.industry"
|
|
33
34
|
BUSINESS_INDICATE_OWNERS_PROVIDED = "business.indicate-owners-provided"
|
|
34
35
|
BUSINESS_AVERAGE_TRANSACTION_SIZE = "business.average-transaction-size"
|
|
35
36
|
BUSINESS_MAX_TRANSACTION_SIZE = "business.max-transaction-size"
|
|
@@ -53,6 +53,7 @@ class TransferTypedDict(TypedDict):
|
|
|
53
53
|
disputed_amount: NotRequired[AmountTypedDict]
|
|
54
54
|
disputes: NotRequired[List[CardAcquiringDisputeTypedDict]]
|
|
55
55
|
sweep_id: NotRequired[str]
|
|
56
|
+
r"""ID of the sweep that created this transfer."""
|
|
56
57
|
schedule_id: NotRequired[str]
|
|
57
58
|
occurrence_id: NotRequired[str]
|
|
58
59
|
payment_link_code: NotRequired[str]
|
|
@@ -133,6 +134,7 @@ class Transfer(BaseModel):
|
|
|
133
134
|
disputes: Optional[List[CardAcquiringDispute]] = None
|
|
134
135
|
|
|
135
136
|
sweep_id: Annotated[Optional[str], pydantic.Field(alias="sweepID")] = None
|
|
137
|
+
r"""ID of the sweep that created this transfer."""
|
|
136
138
|
|
|
137
139
|
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
|
138
140
|
|
|
@@ -46,6 +46,7 @@ class WalletTransactionTypedDict(TypedDict):
|
|
|
46
46
|
available_balance_decimal: NotRequired[str]
|
|
47
47
|
r"""The wallet's total available balance after recording a completed transaction. Same as `availableBalance`, but a decimal-formatted numerical string that represents up to 9 decimal place precision. In USD for example, 12.987654321 is $12.987654321 and 0.9987634521 is $0.9987634521."""
|
|
48
48
|
sweep_id: NotRequired[str]
|
|
49
|
+
r"""ID of the sweep this transaction accrued in."""
|
|
49
50
|
|
|
50
51
|
|
|
51
52
|
class WalletTransaction(BaseModel):
|
|
@@ -112,3 +113,4 @@ class WalletTransaction(BaseModel):
|
|
|
112
113
|
r"""The wallet's total available balance after recording a completed transaction. Same as `availableBalance`, but a decimal-formatted numerical string that represents up to 9 decimal place precision. In USD for example, 12.987654321 is $12.987654321 and 0.9987634521 is $0.9987634521."""
|
|
113
114
|
|
|
114
115
|
sweep_id: Annotated[Optional[str], pydantic.Field(alias="sweepID")] = None
|
|
116
|
+
r"""ID of the sweep this transaction accrued in."""
|
|
@@ -98,6 +98,7 @@ class TransferData(BaseModel):
|
|
|
98
98
|
)
|
|
99
99
|
|
|
100
100
|
sweep_id: Annotated[Optional[str], pydantic.Field(alias="sweepID")] = None
|
|
101
|
+
r"""ID of the sweep that created this transfer."""
|
|
101
102
|
|
|
102
103
|
schedule_id: Annotated[Optional[str], pydantic.Field(alias="scheduleID")] = None
|
|
103
104
|
|
|
@@ -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=iNgW8iavGZjxkDd8nJIcBSYLLDgkai8TtVR1-DRQFHU,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
|
|
@@ -104,7 +104,7 @@ moovio_sdk/models/components/brandcolors.py,sha256=CPQkwV_yhWDnFGsT_Q7REU1vWiFak
|
|
|
104
104
|
moovio_sdk/models/components/brandcolorvalidationerror.py,sha256=6KBJsrfLF7_ABi3kg4EY3szht9hFg835ebFp-3ZJiQA,391
|
|
105
105
|
moovio_sdk/models/components/brandproperties.py,sha256=ssNXKDIW2u2_VAAvjMdrBn3IrvXncvQoYLzupIMeTbw,484
|
|
106
106
|
moovio_sdk/models/components/businesspresence.py,sha256=WYl0ncpvoCZAoFXXQW8L3NhoBM59OjKGUEO3E2HV8CU,395
|
|
107
|
-
moovio_sdk/models/components/businessprofile.py,sha256=
|
|
107
|
+
moovio_sdk/models/components/businessprofile.py,sha256=kJ1aDZLlWO-n-OmWpt54OJxMpxGUgPnZlfRAOsd512k,3633
|
|
108
108
|
moovio_sdk/models/components/businesstype.py,sha256=uIBaMu39__HvnQeH-MYX_NHa-ZGSET_AtwFN7fBgP4Y,647
|
|
109
109
|
moovio_sdk/models/components/calltoaction.py,sha256=OEoZZ8IL_e7yg3d5kx3dSKhDmWNrCQLJW8Kl7x670k8,492
|
|
110
110
|
moovio_sdk/models/components/cancellation.py,sha256=uJa6fvYaxb35ykRAmPWbboSwZQEW101eP9KIPUl7D3Y,631
|
|
@@ -160,8 +160,8 @@ moovio_sdk/models/components/createapplepaysession.py,sha256=KMa_qsK3pHG22Oe7VT5
|
|
|
160
160
|
moovio_sdk/models/components/createauthorizeduser.py,sha256=jW04f6luiW5AuqSIpDARSEw5_iaMbc0EOM7VuDowmw4,829
|
|
161
161
|
moovio_sdk/models/components/createauthorizedusererror.py,sha256=esLjn87FfadlgHbgqcI16pedYvyKQGWvgY_lxb1ofQ4,816
|
|
162
162
|
moovio_sdk/models/components/createauthorizeduserupdate.py,sha256=efRwyAfTzZVp1GNdUIagkpzr3rN17SSJ4-E7Y3596ys,945
|
|
163
|
-
moovio_sdk/models/components/createbusinesserror.py,sha256=
|
|
164
|
-
moovio_sdk/models/components/createbusinessprofile.py,sha256=
|
|
163
|
+
moovio_sdk/models/components/createbusinesserror.py,sha256=WSIHVd0GOxvGmfThqCF3DDNDeUoXsXVpbFLo2BjOsCQ,3070
|
|
164
|
+
moovio_sdk/models/components/createbusinessprofile.py,sha256=PvRGO_sqRlttojwlUrd9SoaZ8nmmlYIla5i8RsmJ_Tk,3381
|
|
165
165
|
moovio_sdk/models/components/createdtransfer.py,sha256=XIfhjsZ--eBkUO1pLGh-yK1rFcTaeTtLDBKZX4bkwOI,5921
|
|
166
166
|
moovio_sdk/models/components/createevidencefilemultipart.py,sha256=GYb0qHNt0TStHTs7jrEoPxxXPuSTrV473-zNe0SoXsU,1895
|
|
167
167
|
moovio_sdk/models/components/createevidencetext.py,sha256=IxJdhf131DDpBgHdD2PramkohfKR5kQ5uXKKJ5TB5GQ,608
|
|
@@ -256,7 +256,7 @@ moovio_sdk/models/components/individualnameerror.py,sha256=CAKDn7LAHNnRti82YPlOa
|
|
|
256
256
|
moovio_sdk/models/components/individualnameupdate.py,sha256=1rgPVODNASPCbVtWe1Quw0RTtN3VlQctS59Q3T7Xnbk,1113
|
|
257
257
|
moovio_sdk/models/components/individualprofile.py,sha256=9XYieNlD3tDvoAgR1yU5VvtSWyKXcIIWUqZcULwpqH0,1561
|
|
258
258
|
moovio_sdk/models/components/industrycodes.py,sha256=dxRs-_R5VFy1SdRvihjk2AOcmVaylbViJvECmzJ4yRc,479
|
|
259
|
-
moovio_sdk/models/components/industrytaxonomy.py,sha256=
|
|
259
|
+
moovio_sdk/models/components/industrytaxonomy.py,sha256=lbG9jf2Be1P7OFuf_qhK0Jkun-g6GPP2fK5ElPeA_8o,1272
|
|
260
260
|
moovio_sdk/models/components/instantpaymentfees.py,sha256=tiqFhR975kr4qA0UKRElJBq4cHiEbHNFcZtXaRJAloU,2673
|
|
261
261
|
moovio_sdk/models/components/institutionssearchresponse.py,sha256=KrJtmffkECElApVfEIkzapecC5wYCXDaD4Tv1TSolHc,1959
|
|
262
262
|
moovio_sdk/models/components/issuedcard.py,sha256=J6LJANU1CqtziTW_kw38R483nJTpICmNBAKq2emfc6c,3845
|
|
@@ -315,7 +315,7 @@ moovio_sdk/models/components/partialscheduleaccount.py,sha256=EtOAuIhRyc6nLEWadS
|
|
|
315
315
|
moovio_sdk/models/components/partnerpricing.py,sha256=ajUfGHT6z3cykXWIpF5xvU-SgmciWnIMOcFJDRN9BRU,2655
|
|
316
316
|
moovio_sdk/models/components/partnerpricingagreement.py,sha256=Ukz6lVxd4CVdl5NX3i4AtaGynW-5lTyRUR9u62OcUjY,3000
|
|
317
317
|
moovio_sdk/models/components/patchaccount.py,sha256=iwK7AVVTR03-EBybeWo-g2KPY2OtHtUU7NJF1ne_lHs,4524
|
|
318
|
-
moovio_sdk/models/components/patchbusiness.py,sha256=
|
|
318
|
+
moovio_sdk/models/components/patchbusiness.py,sha256=UY0Ag1YWlFoJhFBf3lHpEj7ajB0Klc27i-CG09UNBEY,3281
|
|
319
319
|
moovio_sdk/models/components/patchindividual.py,sha256=eG1P_IJkcu6qdeXD7uudZA2QXf4FRC9nc4u7yvlEu5o,1496
|
|
320
320
|
moovio_sdk/models/components/patchprofile.py,sha256=85D_j6JmQfJiFT15FM2HKDRzXSDH-Qb5rpniFeMKzLM,1072
|
|
321
321
|
moovio_sdk/models/components/patchsweepconfig.py,sha256=vYemWuGYohZzNkbDF0i4hrF2JdeldnIIpnBzM9i2ABE,3751
|
|
@@ -374,7 +374,7 @@ moovio_sdk/models/components/representativeresponsibilitieserror.py,sha256=EgVuy
|
|
|
374
374
|
moovio_sdk/models/components/requestcard.py,sha256=zRqFMEQt45o_kHaUIzncHYxqdDRBwH-f4kR3lz044HM,1878
|
|
375
375
|
moovio_sdk/models/components/requirementerror.py,sha256=fQivhquOapuLAVl2TYLsoEseHhczvRUo9ekYuF6B-_o,815
|
|
376
376
|
moovio_sdk/models/components/requirementerrorcode.py,sha256=MIYpCWakr0KoPfXSqNw_1KXMfF4qwWr0HVkEo7z4GJ0,1059
|
|
377
|
-
moovio_sdk/models/components/requirementid.py,sha256=
|
|
377
|
+
moovio_sdk/models/components/requirementid.py,sha256=L56ISc4nRdZtZYgZ1juPyu6pSJuqvplGDPhydVrfHB0,11343
|
|
378
378
|
moovio_sdk/models/components/returnpolicytype.py,sha256=qS0F0eGE52oHxiv6jL_QSJnW2NqJxq0tZl8wvBB6AFo,284
|
|
379
379
|
moovio_sdk/models/components/reversal.py,sha256=1mQ3-UE4VjGsC1AvqMlMKb1dBk6EMFDyr20gHWbFx44,811
|
|
380
380
|
moovio_sdk/models/components/reversedwithcancellation.py,sha256=3TH77_JiFxnFt6JGyLw99Fl5LYd95qhMrLb-WpN1WAo,419
|
|
@@ -432,7 +432,7 @@ moovio_sdk/models/components/ticketmessage.py,sha256=W7Ey97SE8anw2CsXB0aHQon2F78
|
|
|
432
432
|
moovio_sdk/models/components/ticketstatus.py,sha256=cYgdZArC1nfWx3xJAxokZaupDO0W0F7rMbLH1kQLFu4,257
|
|
433
433
|
moovio_sdk/models/components/tokentype.py,sha256=vPgHYR7el4ertQG3I5a8OTHknyBv3Fww-JKbWzApvsw,272
|
|
434
434
|
moovio_sdk/models/components/transactionsource.py,sha256=9zZa2lvqld19YeO0u0Vjqq2HfKRDkqGD9zNL6jNmBoA,484
|
|
435
|
-
moovio_sdk/models/components/transfer.py,sha256=
|
|
435
|
+
moovio_sdk/models/components/transfer.py,sha256=5IGmaiWWb1Uc2oF8Aj9gSfV5Z7dXNuwt1CzYIYzusTY,6297
|
|
436
436
|
moovio_sdk/models/components/transferaccount.py,sha256=-gIji284RTf4FI8BUomUHEMVm1h6cae9d4a7tGWxL6c,505
|
|
437
437
|
moovio_sdk/models/components/transferdestination.py,sha256=sey0FeRW8Ol8dltrHnD30sid-1Inq4L0VoCaxvUkIhc,3389
|
|
438
438
|
moovio_sdk/models/components/transferfailurereason.py,sha256=4bat3UuscPjAZ50aHri3pkQkPz7Kd-q3xvaYGV8VAxQ,475
|
|
@@ -470,7 +470,7 @@ moovio_sdk/models/components/volumesharebycustomertypeerror.py,sha256=EjKMdHyRUK
|
|
|
470
470
|
moovio_sdk/models/components/wallet.py,sha256=7dGQNT8WyUjLUTKy5zL3s6jVFQdPztc6h61pllNHQ5o,2798
|
|
471
471
|
moovio_sdk/models/components/walletavailablebalance.py,sha256=belUWnDIVDHGwkuuv8sh-ZIjkxqZwRz8BU7CzcjUJ1o,854
|
|
472
472
|
moovio_sdk/models/components/walletstatus.py,sha256=MByg0BSXWicjq8jPjaXFATTIO21ZJQxwgPlkaNMsJCQ,430
|
|
473
|
-
moovio_sdk/models/components/wallettransaction.py,sha256=
|
|
473
|
+
moovio_sdk/models/components/wallettransaction.py,sha256=TNe64WAprU_4boDjXetIYwkjp9kk_rhPFI4BjzWLrxU,7052
|
|
474
474
|
moovio_sdk/models/components/wallettransactionsourcetype.py,sha256=LHeQsR01d8plpWFmIFt7FUiSILxNVlF7rg1Lwa_2QXc,430
|
|
475
475
|
moovio_sdk/models/components/wallettransactionstatus.py,sha256=7V75cmxoazf9FwZnZxAbJ_Rw0qXEGa0WapyMAQCv2_8,274
|
|
476
476
|
moovio_sdk/models/components/wallettransactiontype.py,sha256=QiW9XXAGmUUfu7Pnx0AQJ10BAPfyyD0m20WhqNVCWZU,1116
|
|
@@ -559,7 +559,7 @@ moovio_sdk/models/errors/reversalvalidationerror.py,sha256=ziTlZsUqWYptn4NaGdPIZ
|
|
|
559
559
|
moovio_sdk/models/errors/revoketokenrequesterror.py,sha256=gbCEiahvlVQNo9PXQq4iHlFozhw5otbKkJZo_fS55wY,832
|
|
560
560
|
moovio_sdk/models/errors/schedulevalidationerror.py,sha256=Sq6-19dhRcz_wPTDbw8at2aZ-cfIEhHxgV7tsm6EfbI,884
|
|
561
561
|
moovio_sdk/models/errors/terminalapplicationerror.py,sha256=EayEG1PDmGb7dIaqb-8NaqGXhO09F8_EHsxShxsBQR0,1207
|
|
562
|
-
moovio_sdk/models/errors/transfer.py,sha256=
|
|
562
|
+
moovio_sdk/models/errors/transfer.py,sha256=GXHdRZltiTDCV8Yb2O-lO1udKsWd5sgJz0Rgn_WoQoM,4897
|
|
563
563
|
moovio_sdk/models/errors/transferoptionsvalidationerror.py,sha256=yqm54y7QkoojIpxu5K538tcZw3nHNrZPAmlpkygE3ho,891
|
|
564
564
|
moovio_sdk/models/errors/transfervalidationerror.py,sha256=4KfXU96nBBD4XqlsA1caeM7J0MebkmCBUH0rnFjd4F0,1678
|
|
565
565
|
moovio_sdk/models/errors/updatecarderror.py,sha256=rPPV9wKhErdF5-CTFUxI9UBiXjxorpF65hj1n9MQ-2U,1575
|
|
@@ -768,6 +768,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
|
768
768
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
769
769
|
moovio_sdk/wallet_transactions.py,sha256=YPn4GgAkj1MbcA6PfqI9JCXXvaCmCK_i7LjdT9P-iH8,23903
|
|
770
770
|
moovio_sdk/wallets.py,sha256=probtxxWU4fXD_t6RPiECntgOzQlMZH-tsueH7BfBkU,43262
|
|
771
|
-
moovio_sdk-0.18.
|
|
772
|
-
moovio_sdk-0.18.
|
|
773
|
-
moovio_sdk-0.18.
|
|
771
|
+
moovio_sdk-0.18.5.dist-info/METADATA,sha256=zc54eLxhZm1XrNOcb-uIJLl5Np3HbukuHpTIZxt83Fg,118398
|
|
772
|
+
moovio_sdk-0.18.5.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
773
|
+
moovio_sdk-0.18.5.dist-info/RECORD,,
|
|
File without changes
|