dataleon 0.1.0a3__py3-none-any.whl → 0.1.0a4__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 dataleon might be problematic. Click here for more details.
- dataleon/_version.py +1 -1
- dataleon/types/company_create_params.py +3 -0
- dataleon/types/company_registration.py +3 -0
- dataleon/types/company_update_params.py +3 -0
- dataleon/types/individual.py +6 -0
- dataleon/types/individual_create_params.py +6 -0
- dataleon/types/individual_update_params.py +6 -0
- {dataleon-0.1.0a3.dist-info → dataleon-0.1.0a4.dist-info}/METADATA +1 -1
- {dataleon-0.1.0a3.dist-info → dataleon-0.1.0a4.dist-info}/RECORD +11 -11
- {dataleon-0.1.0a3.dist-info → dataleon-0.1.0a4.dist-info}/WHEEL +0 -0
- {dataleon-0.1.0a3.dist-info → dataleon-0.1.0a4.dist-info}/licenses/LICENSE +0 -0
dataleon/_version.py
CHANGED
|
@@ -87,6 +87,9 @@ class TechnicalData(TypedDict, total=False):
|
|
|
87
87
|
callback_url_notification: str
|
|
88
88
|
"""URL to receive notifications about the processing state and status."""
|
|
89
89
|
|
|
90
|
+
filtering_score_aml_suspicions: float
|
|
91
|
+
"""Minimum filtering score (between 0 and 1) for AML suspicions to be considered."""
|
|
92
|
+
|
|
90
93
|
language: str
|
|
91
94
|
"""Preferred language for responses or notifications (e.g., "eng", "fra")."""
|
|
92
95
|
|
|
@@ -317,6 +317,9 @@ class TechnicalData(BaseModel):
|
|
|
317
317
|
export_type: Optional[str] = None
|
|
318
318
|
"""Export format defined by the API (e.g., "json", "xml")."""
|
|
319
319
|
|
|
320
|
+
filtering_score_aml_suspicions: Optional[float] = None
|
|
321
|
+
"""Minimum filtering score (between 0 and 1) for AML suspicions to be considered."""
|
|
322
|
+
|
|
320
323
|
finished_at: Optional[datetime] = None
|
|
321
324
|
"""Timestamp when the process finished."""
|
|
322
325
|
|
|
@@ -87,6 +87,9 @@ class TechnicalData(TypedDict, total=False):
|
|
|
87
87
|
callback_url_notification: str
|
|
88
88
|
"""URL to receive notifications about the processing state and status."""
|
|
89
89
|
|
|
90
|
+
filtering_score_aml_suspicions: float
|
|
91
|
+
"""Minimum filtering score (between 0 and 1) for AML suspicions to be considered."""
|
|
92
|
+
|
|
90
93
|
language: str
|
|
91
94
|
"""Preferred language for responses or notifications (e.g., "eng", "fra")."""
|
|
92
95
|
|
dataleon/types/individual.py
CHANGED
|
@@ -144,6 +144,9 @@ class Person(BaseModel):
|
|
|
144
144
|
maiden_name: Optional[str] = None
|
|
145
145
|
"""Maiden name of the person, if applicable."""
|
|
146
146
|
|
|
147
|
+
nationality: Optional[str] = None
|
|
148
|
+
"""Nationality of the individual (ISO 3166-1 alpha-3 country code)."""
|
|
149
|
+
|
|
147
150
|
phone_number: Optional[str] = None
|
|
148
151
|
"""Contact phone number including country code."""
|
|
149
152
|
|
|
@@ -212,6 +215,9 @@ class TechnicalData(BaseModel):
|
|
|
212
215
|
export_type: Optional[str] = None
|
|
213
216
|
"""Export format defined by the API (e.g., "json", "xml")."""
|
|
214
217
|
|
|
218
|
+
filtering_score_aml_suspicions: Optional[float] = None
|
|
219
|
+
"""Minimum filtering score (between 0 and 1) for AML suspicions to be considered."""
|
|
220
|
+
|
|
215
221
|
finished_at: Optional[datetime] = None
|
|
216
222
|
"""Timestamp when the process finished."""
|
|
217
223
|
|
|
@@ -43,6 +43,9 @@ class Person(TypedDict, total=False):
|
|
|
43
43
|
maiden_name: str
|
|
44
44
|
"""Maiden name, if applicable."""
|
|
45
45
|
|
|
46
|
+
nationality: str
|
|
47
|
+
"""Nationality of the individual (ISO 3166-1 alpha-3 country code)."""
|
|
48
|
+
|
|
46
49
|
phone_number: str
|
|
47
50
|
"""Phone number of the individual."""
|
|
48
51
|
|
|
@@ -61,6 +64,9 @@ class TechnicalData(TypedDict, total=False):
|
|
|
61
64
|
callback_url_notification: str
|
|
62
65
|
"""URL for receive notifications about the processing state or status."""
|
|
63
66
|
|
|
67
|
+
filtering_score_aml_suspicions: float
|
|
68
|
+
"""Minimum filtering score (between 0 and 1) for AML suspicions to be considered."""
|
|
69
|
+
|
|
64
70
|
language: str
|
|
65
71
|
"""Preferred language for communication (e.g., "eng", "fra")."""
|
|
66
72
|
|
|
@@ -43,6 +43,9 @@ class Person(TypedDict, total=False):
|
|
|
43
43
|
maiden_name: str
|
|
44
44
|
"""Maiden name, if applicable."""
|
|
45
45
|
|
|
46
|
+
nationality: str
|
|
47
|
+
"""Nationality of the individual (ISO 3166-1 alpha-3 country code)."""
|
|
48
|
+
|
|
46
49
|
phone_number: str
|
|
47
50
|
"""Phone number of the individual."""
|
|
48
51
|
|
|
@@ -61,6 +64,9 @@ class TechnicalData(TypedDict, total=False):
|
|
|
61
64
|
callback_url_notification: str
|
|
62
65
|
"""URL for receive notifications about the processing state or status."""
|
|
63
66
|
|
|
67
|
+
filtering_score_aml_suspicions: float
|
|
68
|
+
"""Minimum filtering score (between 0 and 1) for AML suspicions to be considered."""
|
|
69
|
+
|
|
64
70
|
language: str
|
|
65
71
|
"""Preferred language for communication (e.g., "eng", "fra")."""
|
|
66
72
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dataleon
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a4
|
|
4
4
|
Summary: The official Python library for the dataleon API
|
|
5
5
|
Project-URL: Homepage, https://github.com/dataleonlabs/dataleon-python
|
|
6
6
|
Project-URL: Repository, https://github.com/dataleonlabs/dataleon-python
|
|
@@ -11,7 +11,7 @@ dataleon/_resource.py,sha256=fgorhYtT83s_79XWvOKSwG4cFg7PMsuUhZo5SiISdcw,1112
|
|
|
11
11
|
dataleon/_response.py,sha256=CiBLBRRyujvHdUtY9SgkbX5t009r0zabLeRyWZWPJEg,28800
|
|
12
12
|
dataleon/_streaming.py,sha256=yoIbzyER1eoqp4sNeSH_BSRgILU6jDxcMDRNhbIN6DA,10108
|
|
13
13
|
dataleon/_types.py,sha256=MHs6ag3Gpliblsm0_J5sfEqfZLYwvkK6dAl-LJiVO3o,7298
|
|
14
|
-
dataleon/_version.py,sha256=
|
|
14
|
+
dataleon/_version.py,sha256=PfK3U2dhP8mYIL3wosVxS_6LpGTKVJkmn-tJNTi_uc4,168
|
|
15
15
|
dataleon/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
dataleon/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
dataleon/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -34,18 +34,18 @@ dataleon/resources/individuals/__init__.py,sha256=an2HSHj7Gu7lrBvWPZD1q2yrTd4Bpb
|
|
|
34
34
|
dataleon/resources/individuals/documents.py,sha256=Q2XrcuxCiA4DWTjlp5mOAit-set0Pd6IEXo-bv5U2yc,13499
|
|
35
35
|
dataleon/resources/individuals/individuals.py,sha256=fyi6xmC7lRzD_MHZo0gYiQ5YicV8LdDE7f6A6en-y_k,27068
|
|
36
36
|
dataleon/types/__init__.py,sha256=7W19MbyWffpYMGyU1TIRnB7sMpQxHMsnAPdrYikUE4A,1109
|
|
37
|
-
dataleon/types/company_create_params.py,sha256=
|
|
37
|
+
dataleon/types/company_create_params.py,sha256=2dFo-f1Hlpz2z21NzDg-Xb1HeOrw030e-LW5swdzlCE,2814
|
|
38
38
|
dataleon/types/company_list_params.py,sha256=7CMuqd-k7Amguw2Em12nqIureyG9M3wUvprjfcB3jjg,1217
|
|
39
39
|
dataleon/types/company_list_response.py,sha256=jXdfdJEg3_xPCG3QWFlHcfNAiKbc5ySzlMU2j0r732g,301
|
|
40
|
-
dataleon/types/company_registration.py,sha256=
|
|
40
|
+
dataleon/types/company_registration.py,sha256=sDABQ3o1Wdq459DzES6-NFE9AI6rSL_7Oqbpnmtvi1k,13141
|
|
41
41
|
dataleon/types/company_retrieve_params.py,sha256=wzwcwRHtN6ljPbdaQQPI3SFNhC1nabPgQE5o8kXfA9U,365
|
|
42
|
-
dataleon/types/company_update_params.py,sha256=
|
|
43
|
-
dataleon/types/individual.py,sha256=
|
|
44
|
-
dataleon/types/individual_create_params.py,sha256=
|
|
42
|
+
dataleon/types/company_update_params.py,sha256=QJikm-7n3-pSueeG2OcTkJmnpPvfgPEhqyJzmamq-wQ,2814
|
|
43
|
+
dataleon/types/individual.py,sha256=30H806h0fq6lpRoChzekkQqGcHdwcPuZlHoOO2haamA,10521
|
|
44
|
+
dataleon/types/individual_create_params.py,sha256=h8xEF3EeHkTnTeGz51LMTHWJiF85GjTlNrRYdOdUROs,2114
|
|
45
45
|
dataleon/types/individual_list_params.py,sha256=QYVmp9wZJRIxNudBY-Y8bGgE-7QAcJzCXew4wGJssZM,1233
|
|
46
46
|
dataleon/types/individual_list_response.py,sha256=ZJbfUgisKEgRwyM5EfZmqDxQ4_-fjcxWJiEK9ycQ2FQ,279
|
|
47
47
|
dataleon/types/individual_retrieve_params.py,sha256=gGP00sWcniuQOfgravpKMw1bxrAKRU72m0eDpsUtC_E,372
|
|
48
|
-
dataleon/types/individual_update_params.py,sha256=
|
|
48
|
+
dataleon/types/individual_update_params.py,sha256=TR6_gqops8OgfbAm9orDl0WQFBYtpTzgSO0bl6w66TU,2114
|
|
49
49
|
dataleon/types/companies/__init__.py,sha256=gT75kCMgyfFSqTy-LJ_RieI-01TBV3g_98-Ru9i8V7A,204
|
|
50
50
|
dataleon/types/companies/document_upload_params.py,sha256=h7zMLmGzzBL_lDkkcqvmWyk0aRykaE4l2VKLCTOR5V8,1654
|
|
51
51
|
dataleon/types/individuals/__init__.py,sha256=terV_wVTDxEjoV2ig1Uv9kbSR4mehum95ifP_NTbwD8,337
|
|
@@ -54,7 +54,7 @@ dataleon/types/individuals/document_upload_params.py,sha256=h7zMLmGzzBL_lDkkcqvm
|
|
|
54
54
|
dataleon/types/individuals/generic_document.py,sha256=xSYz52McaxAcOlMAsigvicIRpOFq7jPNjp0sVxuQ4ho,1770
|
|
55
55
|
dataleon/types/shared/__init__.py,sha256=dLIm-HE37QAl09bUulXYHMB1TD04OAzRbWrZa0fGnq8,121
|
|
56
56
|
dataleon/types/shared/check.py,sha256=xNjjQRra_S7luP2e-96BdUFUey0XQI8Ee5-21tyBL7s,742
|
|
57
|
-
dataleon-0.1.
|
|
58
|
-
dataleon-0.1.
|
|
59
|
-
dataleon-0.1.
|
|
60
|
-
dataleon-0.1.
|
|
57
|
+
dataleon-0.1.0a4.dist-info/METADATA,sha256=S-WvaZ3fQWcWtzl89sxi7bjzZ4dFyDX6kuz41C6vo8Q,14763
|
|
58
|
+
dataleon-0.1.0a4.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
59
|
+
dataleon-0.1.0a4.dist-info/licenses/LICENSE,sha256=yEUx0WqirQ-Xmfk0Zxni5ksk6UNKi28aPozXs_9l41c,11338
|
|
60
|
+
dataleon-0.1.0a4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|