regula-facesdk-webclient 7.2.367.dev0__py3-none-any.whl → 7.2.369.dev0__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 regula-facesdk-webclient might be problematic. Click here for more details.
- regula/facesdk/webclient/ext/api/person_api.py +1 -2
- regula/facesdk/webclient/gen/api/person_api.py +16 -16
- regula/facesdk/webclient/gen/model/add_image_to_person_request.py +57 -1
- regula/facesdk/webclient/gen/model/search_request_all_of.py +40 -68
- regula/facesdk/webclient/gen/models/__init__.py +1 -2
- {regula_facesdk_webclient-7.2.367.dev0.dist-info → regula_facesdk_webclient-7.2.369.dev0.dist-info}/METADATA +1 -1
- {regula_facesdk_webclient-7.2.367.dev0.dist-info → regula_facesdk_webclient-7.2.369.dev0.dist-info}/RECORD +9 -9
- {regula_facesdk_webclient-7.2.367.dev0.dist-info → regula_facesdk_webclient-7.2.369.dev0.dist-info}/WHEEL +0 -0
- {regula_facesdk_webclient-7.2.367.dev0.dist-info → regula_facesdk_webclient-7.2.369.dev0.dist-info}/top_level.txt +0 -0
|
@@ -8,7 +8,6 @@ from regula.facesdk.webclient.gen.model.image_fields_image import ImageFieldsIma
|
|
|
8
8
|
from regula.facesdk.webclient.gen.model.image_page import ImagePage
|
|
9
9
|
from regula.facesdk.webclient.gen.model.person import Person
|
|
10
10
|
from regula.facesdk.webclient.gen.model.person_fields import PersonFields
|
|
11
|
-
from regula.facesdk.webclient.gen.model.persons_request import PersonsRequest
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
class PersonApi(GenPersonApi):
|
|
@@ -20,7 +19,7 @@ class PersonApi(GenPersonApi):
|
|
|
20
19
|
image = ImageFields(image=ImageFieldsImage(content_type, base_image))
|
|
21
20
|
return super().add_image_to_person(person_id, image, **kwargs)
|
|
22
21
|
|
|
23
|
-
def create_person(self, person_fields:
|
|
22
|
+
def create_person(self, person_fields: PersonFields, **kwargs) -> Person:
|
|
24
23
|
if person_fields.metadata is None:
|
|
25
24
|
person_fields.metadata = {}
|
|
26
25
|
return super().create_person(person_fields, **kwargs)
|
|
@@ -187,17 +187,17 @@ class PersonApi(object):
|
|
|
187
187
|
collection_formats=collection_formats,
|
|
188
188
|
_request_auth=local_var_params.get('_request_auth'))
|
|
189
189
|
|
|
190
|
-
def create_person(self,
|
|
190
|
+
def create_person(self, person_fields, **kwargs): # noqa: E501
|
|
191
191
|
"""Create person # noqa: E501
|
|
192
192
|
|
|
193
193
|
This method makes a synchronous HTTP request by default. To make an
|
|
194
194
|
asynchronous HTTP request, please pass async_req=True
|
|
195
195
|
|
|
196
|
-
>>> thread = api.create_person(
|
|
196
|
+
>>> thread = api.create_person(person_fields, async_req=True)
|
|
197
197
|
>>> result = thread.get()
|
|
198
198
|
|
|
199
|
-
:param
|
|
200
|
-
:type
|
|
199
|
+
:param person_fields: (required)
|
|
200
|
+
:type person_fields: PersonFields
|
|
201
201
|
:param x_request_id: Request header label.
|
|
202
202
|
:type x_request_id: str
|
|
203
203
|
:param async_req: Whether to execute the request asynchronously.
|
|
@@ -216,19 +216,19 @@ class PersonApi(object):
|
|
|
216
216
|
:rtype: Person
|
|
217
217
|
"""
|
|
218
218
|
kwargs['_return_http_data_only'] = True
|
|
219
|
-
return self.create_person_with_http_info(
|
|
219
|
+
return self.create_person_with_http_info(person_fields, **kwargs) # noqa: E501
|
|
220
220
|
|
|
221
|
-
def create_person_with_http_info(self,
|
|
221
|
+
def create_person_with_http_info(self, person_fields, **kwargs): # noqa: E501
|
|
222
222
|
"""Create person # noqa: E501
|
|
223
223
|
|
|
224
224
|
This method makes a synchronous HTTP request by default. To make an
|
|
225
225
|
asynchronous HTTP request, please pass async_req=True
|
|
226
226
|
|
|
227
|
-
>>> thread = api.create_person_with_http_info(
|
|
227
|
+
>>> thread = api.create_person_with_http_info(person_fields, async_req=True)
|
|
228
228
|
>>> result = thread.get()
|
|
229
229
|
|
|
230
|
-
:param
|
|
231
|
-
:type
|
|
230
|
+
:param person_fields: (required)
|
|
231
|
+
:type person_fields: PersonFields
|
|
232
232
|
:param x_request_id: Request header label.
|
|
233
233
|
:type x_request_id: str
|
|
234
234
|
:param async_req: Whether to execute the request asynchronously.
|
|
@@ -257,7 +257,7 @@ class PersonApi(object):
|
|
|
257
257
|
local_var_params = locals()
|
|
258
258
|
|
|
259
259
|
all_params = [
|
|
260
|
-
'
|
|
260
|
+
'person_fields',
|
|
261
261
|
'x_request_id',
|
|
262
262
|
]
|
|
263
263
|
all_params.extend(
|
|
@@ -278,10 +278,10 @@ class PersonApi(object):
|
|
|
278
278
|
)
|
|
279
279
|
local_var_params[key] = val
|
|
280
280
|
del local_var_params['kwargs']
|
|
281
|
-
# verify the required parameter '
|
|
282
|
-
if self.api_client.client_side_validation and ('
|
|
283
|
-
local_var_params['
|
|
284
|
-
raise ApiValueError("Missing the required parameter `
|
|
281
|
+
# verify the required parameter 'person_fields' is set
|
|
282
|
+
if self.api_client.client_side_validation and ('person_fields' not in local_var_params or # noqa: E501
|
|
283
|
+
local_var_params['person_fields'] is None): # noqa: E501
|
|
284
|
+
raise ApiValueError("Missing the required parameter `person_fields` when calling `create_person`") # noqa: E501
|
|
285
285
|
|
|
286
286
|
collection_formats = {}
|
|
287
287
|
|
|
@@ -297,8 +297,8 @@ class PersonApi(object):
|
|
|
297
297
|
local_var_files = {}
|
|
298
298
|
|
|
299
299
|
body_params = None
|
|
300
|
-
if '
|
|
301
|
-
body_params = local_var_params['
|
|
300
|
+
if 'person_fields' in local_var_params:
|
|
301
|
+
body_params = local_var_params['person_fields']
|
|
302
302
|
# HTTP header `Accept`
|
|
303
303
|
header_params['Accept'] = self.api_client.select_header_accept(
|
|
304
304
|
['application/json']) # noqa: E501
|
|
@@ -37,6 +37,8 @@ class AddImageToPersonRequest(object):
|
|
|
37
37
|
'image': 'AddImageToPersonRequestImage',
|
|
38
38
|
'threshold': 'float',
|
|
39
39
|
'limit': 'int',
|
|
40
|
+
'tenant': 'str',
|
|
41
|
+
'env': 'str',
|
|
40
42
|
}
|
|
41
43
|
|
|
42
44
|
attribute_map = {
|
|
@@ -44,9 +46,11 @@ class AddImageToPersonRequest(object):
|
|
|
44
46
|
'image': 'image',
|
|
45
47
|
'threshold': 'threshold',
|
|
46
48
|
'limit': 'limit',
|
|
49
|
+
'tenant': 'tenant',
|
|
50
|
+
'env': 'env',
|
|
47
51
|
}
|
|
48
52
|
|
|
49
|
-
def __init__(self, tag=None, image=None, threshold=None, limit=None, local_vars_configuration=None): # noqa: E501
|
|
53
|
+
def __init__(self, tag=None, image=None, threshold=None, limit=None, tenant=None, env=None, local_vars_configuration=None): # noqa: E501
|
|
50
54
|
"""AddImageToPersonRequest - a model defined in OpenAPI""" # noqa: E501
|
|
51
55
|
if local_vars_configuration is None:
|
|
52
56
|
local_vars_configuration = Configuration()
|
|
@@ -56,6 +60,8 @@ class AddImageToPersonRequest(object):
|
|
|
56
60
|
self._image = None
|
|
57
61
|
self._threshold = None
|
|
58
62
|
self._limit = None
|
|
63
|
+
self._tenant = None
|
|
64
|
+
self._env = None
|
|
59
65
|
self.discriminator = None
|
|
60
66
|
|
|
61
67
|
if tag is not None:
|
|
@@ -65,6 +71,10 @@ class AddImageToPersonRequest(object):
|
|
|
65
71
|
self.threshold = threshold
|
|
66
72
|
if limit is not None:
|
|
67
73
|
self.limit = limit
|
|
74
|
+
if tenant is not None:
|
|
75
|
+
self.tenant = tenant
|
|
76
|
+
if env is not None:
|
|
77
|
+
self.env = env
|
|
68
78
|
|
|
69
79
|
@property
|
|
70
80
|
def tag(self):
|
|
@@ -158,6 +168,52 @@ class AddImageToPersonRequest(object):
|
|
|
158
168
|
|
|
159
169
|
self._limit = limit
|
|
160
170
|
|
|
171
|
+
@property
|
|
172
|
+
def tenant(self):
|
|
173
|
+
"""Gets the tenant of this AddImageToPersonRequest. # noqa: E501
|
|
174
|
+
|
|
175
|
+
A label used to group transactions by customers, applications, or other criteria. # noqa: E501
|
|
176
|
+
|
|
177
|
+
:return: The tenant of this AddImageToPersonRequest. # noqa: E501
|
|
178
|
+
:rtype: str
|
|
179
|
+
"""
|
|
180
|
+
return self._tenant
|
|
181
|
+
|
|
182
|
+
@tenant.setter
|
|
183
|
+
def tenant(self, tenant):
|
|
184
|
+
"""Sets the tenant of this AddImageToPersonRequest.
|
|
185
|
+
|
|
186
|
+
A label used to group transactions by customers, applications, or other criteria. # noqa: E501
|
|
187
|
+
|
|
188
|
+
:param tenant: The tenant of this AddImageToPersonRequest. # noqa: E501
|
|
189
|
+
:type tenant: str
|
|
190
|
+
"""
|
|
191
|
+
|
|
192
|
+
self._tenant = tenant
|
|
193
|
+
|
|
194
|
+
@property
|
|
195
|
+
def env(self):
|
|
196
|
+
"""Gets the env of this AddImageToPersonRequest. # noqa: E501
|
|
197
|
+
|
|
198
|
+
A label used to differentiate transactions by development stages. # noqa: E501
|
|
199
|
+
|
|
200
|
+
:return: The env of this AddImageToPersonRequest. # noqa: E501
|
|
201
|
+
:rtype: str
|
|
202
|
+
"""
|
|
203
|
+
return self._env
|
|
204
|
+
|
|
205
|
+
@env.setter
|
|
206
|
+
def env(self, env):
|
|
207
|
+
"""Sets the env of this AddImageToPersonRequest.
|
|
208
|
+
|
|
209
|
+
A label used to differentiate transactions by development stages. # noqa: E501
|
|
210
|
+
|
|
211
|
+
:param env: The env of this AddImageToPersonRequest. # noqa: E501
|
|
212
|
+
:type env: str
|
|
213
|
+
"""
|
|
214
|
+
|
|
215
|
+
self._env = env
|
|
216
|
+
|
|
161
217
|
def to_dict(self):
|
|
162
218
|
"""Returns the model properties as a dict"""
|
|
163
219
|
result = {}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
Regula
|
|
4
|
+
Regula Face SDK Web API
|
|
5
5
|
|
|
6
|
-
Regula FaceSDK
|
|
6
|
+
<a href=\"https://regulaforensics.com/products/face-recognition-sdk/ \" target=\"_blank\">Regula Face SDK</a> is a cross-platform biometric verification solution for a digital identity verification process and image quality assurance. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-detection\" target=\"_blank\">Face detection and image quality assessment</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-comparison-11\" target=\"_blank\">Face match (1:1)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#face-identification-1n\" target=\"_blank\">Face search (1:N)</a> * <a href=\"https://docs.regulaforensics.com/develop/face-sdk/overview/introduction/#liveness-assessment\" target=\"_blank\">Liveness detection</a> Here is the <a href=\"https://github.com/regulaforensics/FaceSDK-web-openapi \" target=\"_blank\">OpenAPI specification on GitHub</a>. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core # noqa: E501
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 7.2.0
|
|
9
9
|
Generated by: https://openapi-generator.tech
|
|
10
10
|
"""
|
|
11
11
|
|
|
@@ -33,103 +33,75 @@ class SearchRequestAllOf(object):
|
|
|
33
33
|
and the value is json key in definition.
|
|
34
34
|
"""
|
|
35
35
|
openapi_types = {
|
|
36
|
-
'
|
|
37
|
-
'
|
|
38
|
-
'group_ids': '[int]',
|
|
36
|
+
'tenant': 'str',
|
|
37
|
+
'env': 'str',
|
|
39
38
|
}
|
|
40
39
|
|
|
41
40
|
attribute_map = {
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'group_ids': 'group_ids',
|
|
41
|
+
'tenant': 'tenant',
|
|
42
|
+
'env': 'env',
|
|
45
43
|
}
|
|
46
44
|
|
|
47
|
-
def __init__(self,
|
|
45
|
+
def __init__(self, tenant=None, env=None, local_vars_configuration=None): # noqa: E501
|
|
48
46
|
"""SearchRequestAllOf - a model defined in OpenAPI""" # noqa: E501
|
|
49
47
|
if local_vars_configuration is None:
|
|
50
48
|
local_vars_configuration = Configuration()
|
|
51
49
|
self.local_vars_configuration = local_vars_configuration
|
|
52
50
|
|
|
53
|
-
self.
|
|
54
|
-
self.
|
|
55
|
-
self._group_ids = None
|
|
51
|
+
self._tenant = None
|
|
52
|
+
self._env = None
|
|
56
53
|
self.discriminator = None
|
|
57
54
|
|
|
58
|
-
if
|
|
59
|
-
self.
|
|
60
|
-
if
|
|
61
|
-
self.
|
|
62
|
-
if group_ids is not None:
|
|
63
|
-
self.group_ids = group_ids
|
|
55
|
+
if tenant is not None:
|
|
56
|
+
self.tenant = tenant
|
|
57
|
+
if env is not None:
|
|
58
|
+
self.env = env
|
|
64
59
|
|
|
65
60
|
@property
|
|
66
|
-
def
|
|
67
|
-
"""Gets the
|
|
61
|
+
def tenant(self):
|
|
62
|
+
"""Gets the tenant of this SearchRequestAllOf. # noqa: E501
|
|
68
63
|
|
|
69
|
-
|
|
64
|
+
A label used to group transactions by customers, applications, or other criteria. # noqa: E501
|
|
70
65
|
|
|
71
|
-
:return: The
|
|
72
|
-
:rtype:
|
|
66
|
+
:return: The tenant of this SearchRequestAllOf. # noqa: E501
|
|
67
|
+
:rtype: str
|
|
73
68
|
"""
|
|
74
|
-
return self.
|
|
69
|
+
return self._tenant
|
|
75
70
|
|
|
76
|
-
@
|
|
77
|
-
def
|
|
78
|
-
"""Sets the
|
|
71
|
+
@tenant.setter
|
|
72
|
+
def tenant(self, tenant):
|
|
73
|
+
"""Sets the tenant of this SearchRequestAllOf.
|
|
79
74
|
|
|
80
|
-
|
|
75
|
+
A label used to group transactions by customers, applications, or other criteria. # noqa: E501
|
|
81
76
|
|
|
82
|
-
:param
|
|
83
|
-
:type
|
|
77
|
+
:param tenant: The tenant of this SearchRequestAllOf. # noqa: E501
|
|
78
|
+
:type tenant: str
|
|
84
79
|
"""
|
|
85
80
|
|
|
86
|
-
self.
|
|
81
|
+
self._tenant = tenant
|
|
87
82
|
|
|
88
83
|
@property
|
|
89
|
-
def
|
|
90
|
-
"""Gets the
|
|
84
|
+
def env(self):
|
|
85
|
+
"""Gets the env of this SearchRequestAllOf. # noqa: E501
|
|
91
86
|
|
|
92
|
-
|
|
87
|
+
A label used to differentiate transactions by development stages. # noqa: E501
|
|
93
88
|
|
|
94
|
-
:return: The
|
|
95
|
-
:rtype:
|
|
89
|
+
:return: The env of this SearchRequestAllOf. # noqa: E501
|
|
90
|
+
:rtype: str
|
|
96
91
|
"""
|
|
97
|
-
return self.
|
|
92
|
+
return self._env
|
|
98
93
|
|
|
99
|
-
@
|
|
100
|
-
def
|
|
101
|
-
"""Sets the
|
|
94
|
+
@env.setter
|
|
95
|
+
def env(self, env):
|
|
96
|
+
"""Sets the env of this SearchRequestAllOf.
|
|
102
97
|
|
|
103
|
-
|
|
98
|
+
A label used to differentiate transactions by development stages. # noqa: E501
|
|
104
99
|
|
|
105
|
-
:param
|
|
106
|
-
:type
|
|
100
|
+
:param env: The env of this SearchRequestAllOf. # noqa: E501
|
|
101
|
+
:type env: str
|
|
107
102
|
"""
|
|
108
103
|
|
|
109
|
-
self.
|
|
110
|
-
|
|
111
|
-
@property
|
|
112
|
-
def group_ids(self):
|
|
113
|
-
"""Gets the group_ids of this SearchRequestAllOf. # noqa: E501
|
|
114
|
-
|
|
115
|
-
The IDs of the groups in which the search is performed. # noqa: E501
|
|
116
|
-
|
|
117
|
-
:return: The group_ids of this SearchRequestAllOf. # noqa: E501
|
|
118
|
-
:rtype: [int]
|
|
119
|
-
"""
|
|
120
|
-
return self._group_ids
|
|
121
|
-
|
|
122
|
-
@group_ids.setter
|
|
123
|
-
def group_ids(self, group_ids):
|
|
124
|
-
"""Sets the group_ids of this SearchRequestAllOf.
|
|
125
|
-
|
|
126
|
-
The IDs of the groups in which the search is performed. # noqa: E501
|
|
127
|
-
|
|
128
|
-
:param group_ids: The group_ids of this SearchRequestAllOf. # noqa: E501
|
|
129
|
-
:type group_ids: [int]
|
|
130
|
-
"""
|
|
131
|
-
|
|
132
|
-
self._group_ids = group_ids
|
|
104
|
+
self._env = env
|
|
133
105
|
|
|
134
106
|
def to_dict(self):
|
|
135
107
|
"""Returns the model properties as a dict"""
|
|
@@ -74,8 +74,6 @@ from regula.facesdk.webclient.gen.model.person_with_images import PersonWithImag
|
|
|
74
74
|
from regula.facesdk.webclient.gen.model.person_with_images_all_of import PersonWithImagesAllOf
|
|
75
75
|
from regula.facesdk.webclient.gen.model.persons_page import PersonsPage
|
|
76
76
|
from regula.facesdk.webclient.gen.model.persons_page_all_of import PersonsPageAllOf
|
|
77
|
-
from regula.facesdk.webclient.gen.model.persons_request import PersonsRequest
|
|
78
|
-
from regula.facesdk.webclient.gen.model.persons_request_all_of import PersonsRequestAllOf
|
|
79
77
|
from regula.facesdk.webclient.gen.model.process_param import ProcessParam
|
|
80
78
|
from regula.facesdk.webclient.gen.model.process_param_attributes import ProcessParamAttributes
|
|
81
79
|
from regula.facesdk.webclient.gen.model.quality_config import QualityConfig
|
|
@@ -94,6 +92,7 @@ from regula.facesdk.webclient.gen.model.search_parameters_create_person import S
|
|
|
94
92
|
from regula.facesdk.webclient.gen.model.search_person import SearchPerson
|
|
95
93
|
from regula.facesdk.webclient.gen.model.search_person_all_of import SearchPersonAllOf
|
|
96
94
|
from regula.facesdk.webclient.gen.model.search_request import SearchRequest
|
|
95
|
+
from regula.facesdk.webclient.gen.model.search_request_all_of import SearchRequestAllOf
|
|
97
96
|
from regula.facesdk.webclient.gen.model.search_result import SearchResult
|
|
98
97
|
from regula.facesdk.webclient.gen.model.transaction_info import TransactionInfo
|
|
99
98
|
from regula.facesdk.webclient.gen.model.update_group import UpdateGroup
|
|
@@ -6,7 +6,7 @@ regula/facesdk/webclient/ext/common.py,sha256=CivAX7mWEXGghdmZg63q_2suKWz6QN_MyO
|
|
|
6
6
|
regula/facesdk/webclient/ext/api/__init__.py,sha256=QIRwODYedltCAWMYSNhMdm1m2MTpOh-nSIXSJuSn1nI,187
|
|
7
7
|
regula/facesdk/webclient/ext/api/group_api.py,sha256=hrksEGce3IKuz_bMhSN-EGeTDFfNDxeyzS9zf0a9_co,1703
|
|
8
8
|
regula/facesdk/webclient/ext/api/match_api.py,sha256=XCJZrISHr2QvF9rH6qH947IpjFmxI6KTzpduD6h9w_U,2019
|
|
9
|
-
regula/facesdk/webclient/ext/api/person_api.py,sha256=
|
|
9
|
+
regula/facesdk/webclient/ext/api/person_api.py,sha256=GsS4hxbMYvCoFM0uhCvUW-y_yE-MH5e5KM83UfL0AIU,2240
|
|
10
10
|
regula/facesdk/webclient/ext/api/sdk.py,sha256=iBWSN-_AkpuuDXHylQZ2D69ifZ3f81IcCfc31r-EaE4,1091
|
|
11
11
|
regula/facesdk/webclient/ext/api/search_api.py,sha256=7lJErzCN6OJog06cMBhFF_uSgyNbxEX3MvKur1R22ZQ,736
|
|
12
12
|
regula/facesdk/webclient/ext/models/__init__.py,sha256=0edbXIracTJaNbp03U48tDzN8bd3ZqHwSX4PIJJhZ7Y,280
|
|
@@ -26,11 +26,11 @@ regula/facesdk/webclient/gen/api/healthcheck_api.py,sha256=8eeDdjN16cyQKsXNlKjz3
|
|
|
26
26
|
regula/facesdk/webclient/gen/api/liveness_2_0_api.py,sha256=39CPlOe4i8OCMn0qbis-avx5q-i0hVpiz5KwUGitOZY,18411
|
|
27
27
|
regula/facesdk/webclient/gen/api/liveness_api.py,sha256=maiSEZGIGU15uhkww38TgzmMsBA1UGjnq6L-kWkBSD4,18968
|
|
28
28
|
regula/facesdk/webclient/gen/api/match_api.py,sha256=Yxokt2yZWxGjNnf3ZKyIsxXH8fs8gMQqWboVa30pHew,26967
|
|
29
|
-
regula/facesdk/webclient/gen/api/person_api.py,sha256=
|
|
29
|
+
regula/facesdk/webclient/gen/api/person_api.py,sha256=G1FXtxN9V3zYXiBcjwsQUzZr6xcQKLbn1YVx1bTarqQ,61950
|
|
30
30
|
regula/facesdk/webclient/gen/api/search_api.py,sha256=PBz4f_lnj0uUUhF-vgBpBNzwj9bmnmZ7JvCclBw2W5g,9345
|
|
31
31
|
regula/facesdk/webclient/gen/apis/__init__.py,sha256=jALPJEtfrPwELIGM_COy2usC36g-5vBgKS4Wq1npFnQ,821
|
|
32
32
|
regula/facesdk/webclient/gen/model/__init__.py,sha256=N49d9K35V_Hd5lOHWcMeVRl0Iy_-L-03rZgfKXwlESM,348
|
|
33
|
-
regula/facesdk/webclient/gen/model/add_image_to_person_request.py,sha256=
|
|
33
|
+
regula/facesdk/webclient/gen/model/add_image_to_person_request.py,sha256=mNKGSAp0W6FGeZxYwLUcVCIxDdvDMxFcBjGh5AJVIGI,9105
|
|
34
34
|
regula/facesdk/webclient/gen/model/add_image_to_person_request_image.py,sha256=Alg8ErcynH9UKCTTMyMjvQrhTA4pZWJgyFW6MWm9qxg,7721
|
|
35
35
|
regula/facesdk/webclient/gen/model/add_image_to_person_response.py,sha256=NOJNjXP6xts-qEUPPs58I98vg7ww_b-48002RN4-uU8,9291
|
|
36
36
|
regula/facesdk/webclient/gen/model/attribute_config.py,sha256=-IHgpOlWpWb2K22kS5ufLq7NZqdsQ2Qc61P2f22CcrU,4852
|
|
@@ -125,14 +125,14 @@ regula/facesdk/webclient/gen/model/search_parameters_create_person.py,sha256=Dss
|
|
|
125
125
|
regula/facesdk/webclient/gen/model/search_person.py,sha256=1rPH7qCztbQi5V1wDVGP626AdelZXY8umtgmR8oPJwA,12572
|
|
126
126
|
regula/facesdk/webclient/gen/model/search_person_all_of.py,sha256=BEScPTYtUOIy5yMFf2yqEv1hVA9f8Fs4mL-PNhZD0Mo,5754
|
|
127
127
|
regula/facesdk/webclient/gen/model/search_request.py,sha256=VtHkUaBtgaio9Eiqbko4Tuy8ZQNem15859LjZsJwZ7k,13011
|
|
128
|
-
regula/facesdk/webclient/gen/model/search_request_all_of.py,sha256=
|
|
128
|
+
regula/facesdk/webclient/gen/model/search_request_all_of.py,sha256=U3qqyPz9-0dmj8uGqOCiClWNbSfTZHdIQxohLT86Tg0,5857
|
|
129
129
|
regula/facesdk/webclient/gen/model/search_result.py,sha256=kjxQWbLBIHUXfsaxXyeV6cdUxJeFgIskVLtpJjaEzkg,5794
|
|
130
130
|
regula/facesdk/webclient/gen/model/search_result_all_of.py,sha256=b0aT2U4Ii97sG9oS4H-xAYts3e5dpwGKMBsLsey0hRU,3339
|
|
131
131
|
regula/facesdk/webclient/gen/model/transaction_config.py,sha256=lpbiYPiiStKRCq2cebXl8gmC7yfBrOkaeoOAmh7piDs,3067
|
|
132
132
|
regula/facesdk/webclient/gen/model/transaction_info.py,sha256=VqMTyu4GZEHrVW9VMGqcpRqUu180iHETBCHPKykeBjo,12295
|
|
133
133
|
regula/facesdk/webclient/gen/model/update_group.py,sha256=D71ehpLG5Yofj2DnPLMFUOVfvuTCIpwmcS_TF50U6bo,5789
|
|
134
|
-
regula/facesdk/webclient/gen/models/__init__.py,sha256=
|
|
135
|
-
regula_facesdk_webclient-7.2.
|
|
136
|
-
regula_facesdk_webclient-7.2.
|
|
137
|
-
regula_facesdk_webclient-7.2.
|
|
138
|
-
regula_facesdk_webclient-7.2.
|
|
134
|
+
regula/facesdk/webclient/gen/models/__init__.py,sha256=j5nHC-spx6Yj8PIVdyL6BKbv95T2FDVkmaKyb2-86lY,7533
|
|
135
|
+
regula_facesdk_webclient-7.2.369.dev0.dist-info/METADATA,sha256=9SjTf0aoWqYBYK0l5k7RT6TuFHah5AOdR9IJgsmtNew,3088
|
|
136
|
+
regula_facesdk_webclient-7.2.369.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
137
|
+
regula_facesdk_webclient-7.2.369.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
|
|
138
|
+
regula_facesdk_webclient-7.2.369.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|