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.

@@ -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: PersonsRequest, **kwargs) -> Person:
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, persons_request, **kwargs): # noqa: E501
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(persons_request, async_req=True)
196
+ >>> thread = api.create_person(person_fields, async_req=True)
197
197
  >>> result = thread.get()
198
198
 
199
- :param persons_request: (required)
200
- :type persons_request: PersonsRequest
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(persons_request, **kwargs) # noqa: E501
219
+ return self.create_person_with_http_info(person_fields, **kwargs) # noqa: E501
220
220
 
221
- def create_person_with_http_info(self, persons_request, **kwargs): # noqa: E501
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(persons_request, async_req=True)
227
+ >>> thread = api.create_person_with_http_info(person_fields, async_req=True)
228
228
  >>> result = thread.get()
229
229
 
230
- :param persons_request: (required)
231
- :type persons_request: PersonsRequest
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
- 'persons_request',
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 'persons_request' is set
282
- if self.api_client.client_side_validation and ('persons_request' not in local_var_params or # noqa: E501
283
- local_var_params['persons_request'] is None): # noqa: E501
284
- raise ApiValueError("Missing the required parameter `persons_request` when calling `create_person`") # noqa: E501
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 'persons_request' in local_var_params:
301
- body_params = local_var_params['persons_request']
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 FaceSDK Web API
4
+ Regula Face SDK Web API
5
5
 
6
- Regula FaceSDK Web API # 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
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: 4.1.3
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
- 'limit': 'int',
37
- 'threshold': 'float',
38
- 'group_ids': '[int]',
36
+ 'tenant': 'str',
37
+ 'env': 'str',
39
38
  }
40
39
 
41
40
  attribute_map = {
42
- 'limit': 'limit',
43
- 'threshold': 'threshold',
44
- 'group_ids': 'group_ids',
41
+ 'tenant': 'tenant',
42
+ 'env': 'env',
45
43
  }
46
44
 
47
- def __init__(self, limit=100, threshold=None, group_ids=None, local_vars_configuration=None): # noqa: E501
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._limit = None
54
- self._threshold = None
55
- self._group_ids = None
51
+ self._tenant = None
52
+ self._env = None
56
53
  self.discriminator = None
57
54
 
58
- if limit is not None:
59
- self.limit = limit
60
- if threshold is not None:
61
- self.threshold = threshold
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 limit(self):
67
- """Gets the limit of this SearchRequestAllOf. # noqa: E501
61
+ def tenant(self):
62
+ """Gets the tenant of this SearchRequestAllOf. # noqa: E501
68
63
 
69
- The number of returned Persons limit. # noqa: E501
64
+ A label used to group transactions by customers, applications, or other criteria. # noqa: E501
70
65
 
71
- :return: The limit of this SearchRequestAllOf. # noqa: E501
72
- :rtype: int
66
+ :return: The tenant of this SearchRequestAllOf. # noqa: E501
67
+ :rtype: str
73
68
  """
74
- return self._limit
69
+ return self._tenant
75
70
 
76
- @limit.setter
77
- def limit(self, limit):
78
- """Sets the limit of this SearchRequestAllOf.
71
+ @tenant.setter
72
+ def tenant(self, tenant):
73
+ """Sets the tenant of this SearchRequestAllOf.
79
74
 
80
- The number of returned Persons limit. # noqa: E501
75
+ A label used to group transactions by customers, applications, or other criteria. # noqa: E501
81
76
 
82
- :param limit: The limit of this SearchRequestAllOf. # noqa: E501
83
- :type limit: int
77
+ :param tenant: The tenant of this SearchRequestAllOf. # noqa: E501
78
+ :type tenant: str
84
79
  """
85
80
 
86
- self._limit = limit
81
+ self._tenant = tenant
87
82
 
88
83
  @property
89
- def threshold(self):
90
- """Gets the threshold of this SearchRequestAllOf. # noqa: E501
84
+ def env(self):
85
+ """Gets the env of this SearchRequestAllOf. # noqa: E501
91
86
 
92
- Similarity threshold. # noqa: E501
87
+ A label used to differentiate transactions by development stages. # noqa: E501
93
88
 
94
- :return: The threshold of this SearchRequestAllOf. # noqa: E501
95
- :rtype: float
89
+ :return: The env of this SearchRequestAllOf. # noqa: E501
90
+ :rtype: str
96
91
  """
97
- return self._threshold
92
+ return self._env
98
93
 
99
- @threshold.setter
100
- def threshold(self, threshold):
101
- """Sets the threshold of this SearchRequestAllOf.
94
+ @env.setter
95
+ def env(self, env):
96
+ """Sets the env of this SearchRequestAllOf.
102
97
 
103
- Similarity threshold. # noqa: E501
98
+ A label used to differentiate transactions by development stages. # noqa: E501
104
99
 
105
- :param threshold: The threshold of this SearchRequestAllOf. # noqa: E501
106
- :type threshold: float
100
+ :param env: The env of this SearchRequestAllOf. # noqa: E501
101
+ :type env: str
107
102
  """
108
103
 
109
- self._threshold = threshold
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: regula_facesdk_webclient
3
- Version: 7.2.367.dev0
3
+ Version: 7.2.369.dev0
4
4
  Summary: Regula's FaceSDK web python client
5
5
  Home-page: https://regulaforensics.com
6
6
  Author: Regula Forensics, Inc.
@@ -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=rZ1oIUe5UH6POa5sUqV728XO3H6Nb4aDdfqfSr7nwR4,2320
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=GUpHP3KyjNllXutBV7UJe2mWnyav4IknWjZcbQ7p0Y8,61986
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=RKKd2ghXQQ8_O5ybZVSNrufK46IbT7kw-27DEYFJ4Q4,7448
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=d7BwYtTgTnjdjgt67ySwSaRdlGDHkmRdQa_Qj5hQ_xo,5497
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=0rVHcSsLSJChZ4VIbNdFTkzDtVujJwQrrl2KeoF_tVw,7613
135
- regula_facesdk_webclient-7.2.367.dev0.dist-info/METADATA,sha256=sVpXJ6uYbgtQez-fTJ4eqKTN8vUQoTgDG04htQ00zpg,3088
136
- regula_facesdk_webclient-7.2.367.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
137
- regula_facesdk_webclient-7.2.367.dev0.dist-info/top_level.txt,sha256=SFSSVn4j8QDivd3307s97NtpIJ8zOjiWZloAxZIClJY,7
138
- regula_facesdk_webclient-7.2.367.dev0.dist-info/RECORD,,
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,,