moovio_sdk 0.11.0__py3-none-any.whl → 0.11.1__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/industries.py +4 -4
- moovio_sdk/models/components/__init__.py +5 -5
- moovio_sdk/models/components/enrichedindustries.py +3 -3
- moovio_sdk/models/components/industrytaxonomy.py +40 -0
- {moovio_sdk-0.11.0.dist-info → moovio_sdk-0.11.1.dist-info}/METADATA +3 -3
- {moovio_sdk-0.11.0.dist-info → moovio_sdk-0.11.1.dist-info}/RECORD +8 -8
- moovio_sdk/models/components/enrichedindustry.py +0 -32
- {moovio_sdk-0.11.0.dist-info → moovio_sdk-0.11.1.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.11.
|
6
|
+
__version__: str = "0.11.1"
|
7
7
|
__openapi_doc_version__: str = "latest"
|
8
|
-
__gen_version__: str = "2.
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.11.
|
8
|
+
__gen_version__: str = "2.618.0"
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.11.1 2.618.0 latest moovio_sdk"
|
10
10
|
|
11
11
|
try:
|
12
12
|
if __package__ is not None:
|
moovio_sdk/industries.py
CHANGED
@@ -21,9 +21,9 @@ class Industries(BaseSDK):
|
|
21
21
|
timeout_ms: Optional[int] = None,
|
22
22
|
http_headers: Optional[Mapping[str, str]] = None,
|
23
23
|
) -> operations.ListIndustriesResponse:
|
24
|
-
r"""Returns a list of
|
24
|
+
r"""Returns a list of industries relevant to merchant profile enrichment. Results are ordered by industry name.
|
25
25
|
|
26
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
26
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/),
|
27
27
|
you'll need to specify the `/profile-enrichment.read` scope.
|
28
28
|
|
29
29
|
:param request: The request object to send.
|
@@ -136,9 +136,9 @@ class Industries(BaseSDK):
|
|
136
136
|
timeout_ms: Optional[int] = None,
|
137
137
|
http_headers: Optional[Mapping[str, str]] = None,
|
138
138
|
) -> operations.ListIndustriesResponse:
|
139
|
-
r"""Returns a list of
|
139
|
+
r"""Returns a list of industries relevant to merchant profile enrichment. Results are ordered by industry name.
|
140
140
|
|
141
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
141
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/),
|
142
142
|
you'll need to specify the `/profile-enrichment.read` scope.
|
143
143
|
|
144
144
|
:param request: The request object to send.
|
@@ -364,7 +364,6 @@ if TYPE_CHECKING:
|
|
364
364
|
EnrichedBusinessResponseTypedDict,
|
365
365
|
)
|
366
366
|
from .enrichedindustries import EnrichedIndustries, EnrichedIndustriesTypedDict
|
367
|
-
from .enrichedindustry import EnrichedIndustry, EnrichedIndustryTypedDict
|
368
367
|
from .enrichedindustrycodes import (
|
369
368
|
EnrichedIndustryCodes,
|
370
369
|
EnrichedIndustryCodesTypedDict,
|
@@ -450,6 +449,7 @@ if TYPE_CHECKING:
|
|
450
449
|
)
|
451
450
|
from .individualprofile import IndividualProfile, IndividualProfileTypedDict
|
452
451
|
from .industrycodes import IndustryCodes, IndustryCodesTypedDict
|
452
|
+
from .industrytaxonomy import IndustryTaxonomy, IndustryTaxonomyTypedDict
|
453
453
|
from .issuedcard import IssuedCard, IssuedCardTypedDict
|
454
454
|
from .issuedcardauthorization import (
|
455
455
|
IssuedCardAuthorization,
|
@@ -1281,10 +1281,8 @@ __all__ = [
|
|
1281
1281
|
"EnrichedBusinessResponseTypedDict",
|
1282
1282
|
"EnrichedIndustries",
|
1283
1283
|
"EnrichedIndustriesTypedDict",
|
1284
|
-
"EnrichedIndustry",
|
1285
1284
|
"EnrichedIndustryCodes",
|
1286
1285
|
"EnrichedIndustryCodesTypedDict",
|
1287
|
-
"EnrichedIndustryTypedDict",
|
1288
1286
|
"EntryMode",
|
1289
1287
|
"Error",
|
1290
1288
|
"ErrorTypedDict",
|
@@ -1357,6 +1355,8 @@ __all__ = [
|
|
1357
1355
|
"IndividualProfileTypedDict",
|
1358
1356
|
"IndustryCodes",
|
1359
1357
|
"IndustryCodesTypedDict",
|
1358
|
+
"IndustryTaxonomy",
|
1359
|
+
"IndustryTaxonomyTypedDict",
|
1360
1360
|
"IssuedCard",
|
1361
1361
|
"IssuedCardAuthorization",
|
1362
1362
|
"IssuedCardAuthorizationEvent",
|
@@ -2088,8 +2088,6 @@ _dynamic_imports: dict[str, str] = {
|
|
2088
2088
|
"EnrichedBusinessResponseTypedDict": ".enrichedbusinessresponse",
|
2089
2089
|
"EnrichedIndustries": ".enrichedindustries",
|
2090
2090
|
"EnrichedIndustriesTypedDict": ".enrichedindustries",
|
2091
|
-
"EnrichedIndustry": ".enrichedindustry",
|
2092
|
-
"EnrichedIndustryTypedDict": ".enrichedindustry",
|
2093
2091
|
"EnrichedIndustryCodes": ".enrichedindustrycodes",
|
2094
2092
|
"EnrichedIndustryCodesTypedDict": ".enrichedindustrycodes",
|
2095
2093
|
"EntryMode": ".entrymode",
|
@@ -2164,6 +2162,8 @@ _dynamic_imports: dict[str, str] = {
|
|
2164
2162
|
"IndividualProfileTypedDict": ".individualprofile",
|
2165
2163
|
"IndustryCodes": ".industrycodes",
|
2166
2164
|
"IndustryCodesTypedDict": ".industrycodes",
|
2165
|
+
"IndustryTaxonomy": ".industrytaxonomy",
|
2166
|
+
"IndustryTaxonomyTypedDict": ".industrytaxonomy",
|
2167
2167
|
"IssuedCard": ".issuedcard",
|
2168
2168
|
"IssuedCardTypedDict": ".issuedcard",
|
2169
2169
|
"IssuedCardAuthorization": ".issuedcardauthorization",
|
@@ -1,15 +1,15 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
3
|
from __future__ import annotations
|
4
|
-
from .
|
4
|
+
from .industrytaxonomy import IndustryTaxonomy, IndustryTaxonomyTypedDict
|
5
5
|
from moovio_sdk.types import BaseModel
|
6
6
|
from typing import List
|
7
7
|
from typing_extensions import TypedDict
|
8
8
|
|
9
9
|
|
10
10
|
class EnrichedIndustriesTypedDict(TypedDict):
|
11
|
-
industries: List[
|
11
|
+
industries: List[IndustryTaxonomyTypedDict]
|
12
12
|
|
13
13
|
|
14
14
|
class EnrichedIndustries(BaseModel):
|
15
|
-
industries: List[
|
15
|
+
industries: List[IndustryTaxonomy]
|
@@ -0,0 +1,40 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from __future__ import annotations
|
4
|
+
from moovio_sdk.types import BaseModel
|
5
|
+
import pydantic
|
6
|
+
from typing_extensions import Annotated, TypedDict
|
7
|
+
|
8
|
+
|
9
|
+
class IndustryTaxonomyTypedDict(TypedDict):
|
10
|
+
r"""A structured industry taxonomy entry with category and mapped to a default MCC code."""
|
11
|
+
|
12
|
+
industry: str
|
13
|
+
r"""URL-safe identifier for the industry"""
|
14
|
+
display_name: str
|
15
|
+
r"""Display name of the industry"""
|
16
|
+
category: str
|
17
|
+
r"""Category slug"""
|
18
|
+
category_display_name: str
|
19
|
+
r"""Human-readable category label"""
|
20
|
+
default_mcc: str
|
21
|
+
r"""Default Merchant Category Code"""
|
22
|
+
|
23
|
+
|
24
|
+
class IndustryTaxonomy(BaseModel):
|
25
|
+
r"""A structured industry taxonomy entry with category and mapped to a default MCC code."""
|
26
|
+
|
27
|
+
industry: str
|
28
|
+
r"""URL-safe identifier for the industry"""
|
29
|
+
|
30
|
+
display_name: Annotated[str, pydantic.Field(alias="displayName")]
|
31
|
+
r"""Display name of the industry"""
|
32
|
+
|
33
|
+
category: str
|
34
|
+
r"""Category slug"""
|
35
|
+
|
36
|
+
category_display_name: Annotated[str, pydantic.Field(alias="categoryDisplayName")]
|
37
|
+
r"""Human-readable category label"""
|
38
|
+
|
39
|
+
default_mcc: Annotated[str, pydantic.Field(alias="defaultMcc")]
|
40
|
+
r"""Default Merchant Category Code"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: moovio_sdk
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.1
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
6
|
Requires-Python: >=3.9.2
|
@@ -814,9 +814,9 @@ you'll need to specify the `/accounts/{accountID}/files.read` scope.
|
|
814
814
|
|
815
815
|
### [industries](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/industries/README.md)
|
816
816
|
|
817
|
-
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/industries/README.md#list) - Returns a list of
|
817
|
+
* [list](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/industries/README.md#list) - Returns a list of industries relevant to merchant profile enrichment. Results are ordered by industry name.
|
818
818
|
|
819
|
-
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
819
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/),
|
820
820
|
you'll need to specify the `/profile-enrichment.read` scope.
|
821
821
|
|
822
822
|
### [institutions](https://github.com/moovfinancial/moov-python/blob/master/docs/sdks/institutions/README.md)
|
@@ -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=t0VwxN8fQPxW1kB6yf1W4yX9BbbUc8e2ovky0fmN44k,466
|
7
7
|
moovio_sdk/account_terminal_applications.py,sha256=QYvrGYr0btoK5uCZYngGA2qDbwzSb9jDcNULW23qtDA,42239
|
8
8
|
moovio_sdk/accounts.py,sha256=GU155vJqo6C__ll5XcyntnDsuQ20rsdcI5jB57I2g7Y,109095
|
9
9
|
moovio_sdk/adjustments.py,sha256=ZGmgUTm53He6-6lvOMgmx1eLJ5TjCgAvn5ULgHpMgNc,19460
|
@@ -23,11 +23,11 @@ moovio_sdk/enriched_profile.py,sha256=Gh2MG1CnOBBQ5-BH4Q2JfwQE-Qni7SQZk0Zwv0MCEX
|
|
23
23
|
moovio_sdk/fee_plans.py,sha256=z3KCQpEWSADp9DP_HM_FO3iXG0flfavArF9zQ3pJKco,74414
|
24
24
|
moovio_sdk/files.py,sha256=FdoICN-Mo0Fe-_3Kzia2-Ki5M3ua2OgZBk1kU9-S9Ug,32424
|
25
25
|
moovio_sdk/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
26
|
-
moovio_sdk/industries.py,sha256=
|
26
|
+
moovio_sdk/industries.py,sha256=cj1Q3c64ztMkpW8LM5goCowlEp6frPAl_koJ2iWGqAg,10333
|
27
27
|
moovio_sdk/institutions.py,sha256=UJ6kOjBf-Jc8acmB79gURmXWX15p-IOPmeEKc0pykbA,11332
|
28
28
|
moovio_sdk/issuing_transactions.py,sha256=wIEDq-pbgTIJDJ8XVGCzTqkyFKXQZNmeQzpK3cTxmGs,53682
|
29
29
|
moovio_sdk/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
|
30
|
-
moovio_sdk/models/components/__init__.py,sha256=
|
30
|
+
moovio_sdk/models/components/__init__.py,sha256=JBWlLsyfWeV8zSS5j3znwbMtx0vm_9lkFTajByvbrAo,108345
|
31
31
|
moovio_sdk/models/components/account.py,sha256=QejMoPHYyHF-6TRrUVKYyfD_6Qbl7lFVOEaE8zlOgmI,4181
|
32
32
|
moovio_sdk/models/components/accountcapability.py,sha256=LJ908Zr4lw2qtMwUMLWoscTUjj5wV7YlZ4Z0Vv_abjg,527
|
33
33
|
moovio_sdk/models/components/accountcountries.py,sha256=sI1VAu3PqS2HTOarkT7f6FbkgUT55NL57PvAZKcbRHw,456
|
@@ -184,8 +184,7 @@ moovio_sdk/models/components/end2endencryptionerror.py,sha256=H4ZzX0N_OXCwU0MRSP
|
|
184
184
|
moovio_sdk/models/components/enrichedaddressresponse.py,sha256=Pn2iED_gLckUCGNvZcehJ2wbV5c-Vvv5vo1rzxpGj6I,476
|
185
185
|
moovio_sdk/models/components/enrichedbusinessprofile.py,sha256=9YSpIb2WZUqrzML9c0RyWsZcNxsWqSD8WlmM4fmkUN4,1185
|
186
186
|
moovio_sdk/models/components/enrichedbusinessresponse.py,sha256=aIneszJZE1KeMwhLnSfT867yRgeS7uVMwJPW1QU9ar0,550
|
187
|
-
moovio_sdk/models/components/enrichedindustries.py,sha256=
|
188
|
-
moovio_sdk/models/components/enrichedindustry.py,sha256=LZZyh6L6MP3VBkMNNoI_h-G_0vDUJdTJ0zwlITlEdRc,813
|
187
|
+
moovio_sdk/models/components/enrichedindustries.py,sha256=lI0kzhAJ8TMW3VAPYf3lfb-rE0TKlkbWK8naQ0k64ps,459
|
189
188
|
moovio_sdk/models/components/enrichedindustrycodes.py,sha256=MRftYEd_dv9qRjXBf6r2nj5LgA7yURLCZ35pYsv-P5w,438
|
190
189
|
moovio_sdk/models/components/entrymode.py,sha256=UokGL7yYSnbptzEMA_mwNy9wHsXgA5hb-b37KVEmMFM,274
|
191
190
|
moovio_sdk/models/components/evidencetextresponse.py,sha256=8m2u3iC_gCUSuU4h53JLX1eJRj8iUgTIaYs8SztDiRQ,790
|
@@ -222,6 +221,7 @@ moovio_sdk/models/components/individualnameerror.py,sha256=CAKDn7LAHNnRti82YPlOa
|
|
222
221
|
moovio_sdk/models/components/individualnameupdate.py,sha256=1rgPVODNASPCbVtWe1Quw0RTtN3VlQctS59Q3T7Xnbk,1113
|
223
222
|
moovio_sdk/models/components/individualprofile.py,sha256=9XYieNlD3tDvoAgR1yU5VvtSWyKXcIIWUqZcULwpqH0,1561
|
224
223
|
moovio_sdk/models/components/industrycodes.py,sha256=dxRs-_R5VFy1SdRvihjk2AOcmVaylbViJvECmzJ4yRc,479
|
224
|
+
moovio_sdk/models/components/industrytaxonomy.py,sha256=NUOOo4LqN-yTUtGz6PVmFjhnSYrBFGFZfTJmbEjw6Es,1258
|
225
225
|
moovio_sdk/models/components/issuedcard.py,sha256=J6LJANU1CqtziTW_kw38R483nJTpICmNBAKq2emfc6c,3845
|
226
226
|
moovio_sdk/models/components/issuedcardauthorization.py,sha256=CBs07Xy6Zj6SycF0dUFCA7yiqiH_pW9GzRJX5vkKQN4,2252
|
227
227
|
moovio_sdk/models/components/issuedcardauthorizationevent.py,sha256=e_2iichL1mRfAPhLDYJZRSsynYlyTdNcBKBJ3FseXpY,1711
|
@@ -635,6 +635,6 @@ moovio_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
635
635
|
moovio_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
636
636
|
moovio_sdk/wallet_transactions.py,sha256=WVfhf2iPS5qJ3ZWEYn5e3XXKpc-tNgoKUSsD9Q-8LIM,25131
|
637
637
|
moovio_sdk/wallets.py,sha256=uGrFzCj6wCmdsEleXWF77njq9L185aWNHlRzFekKs98,19438
|
638
|
-
moovio_sdk-0.11.
|
639
|
-
moovio_sdk-0.11.
|
640
|
-
moovio_sdk-0.11.
|
638
|
+
moovio_sdk-0.11.1.dist-info/METADATA,sha256=FRBNqveMkIZBck-biBuOTyWJnqiEAzKhHw1K1RqACjE,93548
|
639
|
+
moovio_sdk-0.11.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
640
|
+
moovio_sdk-0.11.1.dist-info/RECORD,,
|
@@ -1,32 +0,0 @@
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
from moovio_sdk.types import BaseModel
|
5
|
-
from typing_extensions import TypedDict
|
6
|
-
|
7
|
-
|
8
|
-
class EnrichedIndustryTypedDict(TypedDict):
|
9
|
-
r"""An industry's MCC/SIC/NAICS codes, along with descriptive title."""
|
10
|
-
|
11
|
-
title: str
|
12
|
-
naics: str
|
13
|
-
r"""North American Industry Classification System"""
|
14
|
-
sic: str
|
15
|
-
r"""Standard Industrial Classification"""
|
16
|
-
mcc: str
|
17
|
-
r"""Merchant Category Code"""
|
18
|
-
|
19
|
-
|
20
|
-
class EnrichedIndustry(BaseModel):
|
21
|
-
r"""An industry's MCC/SIC/NAICS codes, along with descriptive title."""
|
22
|
-
|
23
|
-
title: str
|
24
|
-
|
25
|
-
naics: str
|
26
|
-
r"""North American Industry Classification System"""
|
27
|
-
|
28
|
-
sic: str
|
29
|
-
r"""Standard Industrial Classification"""
|
30
|
-
|
31
|
-
mcc: str
|
32
|
-
r"""Merchant Category Code"""
|
File without changes
|