moovio_sdk 0.18.3__py3-none-any.whl → 0.18.4__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-0.18.3.dist-info → moovio_sdk-0.18.4.dist-info}/METADATA +1 -1
- {moovio_sdk-0.18.3.dist-info → moovio_sdk-0.18.4.dist-info}/RECORD +10 -10
- {moovio_sdk-0.18.3.dist-info → moovio_sdk-0.18.4.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.4"
|
|
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.4 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"
|
|
@@ -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=Zb9kavO5w9GCgBZ3CkGDpIYmqUzum17CuqJjiVqmAfQ,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
|
|
@@ -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.4.dist-info/METADATA,sha256=zCgt7oH3qkgBkAdxyfcRHaS4xC5mdQytIeHvxVethDA,118398
|
|
772
|
+
moovio_sdk-0.18.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
773
|
+
moovio_sdk-0.18.4.dist-info/RECORD,,
|
|
File without changes
|