teamdbapi 3.3.0__py3-none-any.whl → 3.4.0__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.
@@ -0,0 +1,401 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Trackside Software TeamDB API v2.0
5
+
6
+ This API enables you to access TeamDB data # noqa: E501
7
+
8
+ OpenAPI spec version: 2.0
9
+ Contact: support@trackside.fr
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+
19
+ class ParameterBinding(object):
20
+ """NOTE: This class is auto generated by the swagger code generator program.
21
+
22
+ Do not edit the class manually.
23
+ """
24
+ """
25
+ Attributes:
26
+ swagger_types (dict): The key is attribute name
27
+ and the value is attribute type.
28
+ attribute_map (dict): The key is attribute name
29
+ and the value is json key in definition.
30
+ """
31
+ swagger_types = {
32
+ 'id': 'str',
33
+ 'name': 'str',
34
+ 'system': 'str',
35
+ 'position': 'str',
36
+ 'x_coordinate': 'float',
37
+ 'y_coordinate': 'float',
38
+ 'z_coordinate': 'float',
39
+ 'type': 'str',
40
+ 'acquisition': 'str',
41
+ 'last_update_date_utc': 'datetime',
42
+ 'last_update_user': 'str'
43
+ }
44
+
45
+ attribute_map = {
46
+ 'id': 'Id',
47
+ 'name': 'Name',
48
+ 'system': 'System',
49
+ 'position': 'Position',
50
+ 'x_coordinate': 'XCoordinate',
51
+ 'y_coordinate': 'YCoordinate',
52
+ 'z_coordinate': 'ZCoordinate',
53
+ 'type': 'Type',
54
+ 'acquisition': 'Acquisition',
55
+ 'last_update_date_utc': 'LastUpdateDateUtc',
56
+ 'last_update_user': 'LastUpdateUser'
57
+ }
58
+
59
+ def __init__(self, id=None, name=None, system=None, position=None, x_coordinate=None, y_coordinate=None, z_coordinate=None, type=None, acquisition=None, last_update_date_utc=None, last_update_user=None): # noqa: E501
60
+ """ParameterBinding - a model defined in Swagger""" # noqa: E501
61
+ self._id = None
62
+ self._name = None
63
+ self._system = None
64
+ self._position = None
65
+ self._x_coordinate = None
66
+ self._y_coordinate = None
67
+ self._z_coordinate = None
68
+ self._type = None
69
+ self._acquisition = None
70
+ self._last_update_date_utc = None
71
+ self._last_update_user = None
72
+ self.discriminator = None
73
+ self.id = id
74
+ self.name = name
75
+ if system is not None:
76
+ self.system = system
77
+ if position is not None:
78
+ self.position = position
79
+ if x_coordinate is not None:
80
+ self.x_coordinate = x_coordinate
81
+ if y_coordinate is not None:
82
+ self.y_coordinate = y_coordinate
83
+ if z_coordinate is not None:
84
+ self.z_coordinate = z_coordinate
85
+ if type is not None:
86
+ self.type = type
87
+ if acquisition is not None:
88
+ self.acquisition = acquisition
89
+ if last_update_date_utc is not None:
90
+ self.last_update_date_utc = last_update_date_utc
91
+ if last_update_user is not None:
92
+ self.last_update_user = last_update_user
93
+
94
+ @property
95
+ def id(self):
96
+ """Gets the id of this ParameterBinding. # noqa: E501
97
+
98
+ ParameterBinding unique identifier. Set the Id to Guid.Empty (00000000-0000-0000-0000-000000000000) if you want to create a new ParameterBinding. # noqa: E501
99
+
100
+ :return: The id of this ParameterBinding. # noqa: E501
101
+ :rtype: str
102
+ """
103
+ return self._id
104
+
105
+ @id.setter
106
+ def id(self, id):
107
+ """Sets the id of this ParameterBinding.
108
+
109
+ ParameterBinding unique identifier. Set the Id to Guid.Empty (00000000-0000-0000-0000-000000000000) if you want to create a new ParameterBinding. # noqa: E501
110
+
111
+ :param id: The id of this ParameterBinding. # noqa: E501
112
+ :type: str
113
+ """
114
+ if id is None:
115
+ raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501
116
+
117
+ self._id = id
118
+
119
+ @property
120
+ def name(self):
121
+ """Gets the name of this ParameterBinding. # noqa: E501
122
+
123
+ Name of the ParameterBinding # noqa: E501
124
+
125
+ :return: The name of this ParameterBinding. # noqa: E501
126
+ :rtype: str
127
+ """
128
+ return self._name
129
+
130
+ @name.setter
131
+ def name(self, name):
132
+ """Sets the name of this ParameterBinding.
133
+
134
+ Name of the ParameterBinding # noqa: E501
135
+
136
+ :param name: The name of this ParameterBinding. # noqa: E501
137
+ :type: str
138
+ """
139
+ if name is None:
140
+ raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
141
+
142
+ self._name = name
143
+
144
+ @property
145
+ def system(self):
146
+ """Gets the system of this ParameterBinding. # noqa: E501
147
+
148
+ ParameterBinding system # noqa: E501
149
+
150
+ :return: The system of this ParameterBinding. # noqa: E501
151
+ :rtype: str
152
+ """
153
+ return self._system
154
+
155
+ @system.setter
156
+ def system(self, system):
157
+ """Sets the system of this ParameterBinding.
158
+
159
+ ParameterBinding system # noqa: E501
160
+
161
+ :param system: The system of this ParameterBinding. # noqa: E501
162
+ :type: str
163
+ """
164
+
165
+ self._system = system
166
+
167
+ @property
168
+ def position(self):
169
+ """Gets the position of this ParameterBinding. # noqa: E501
170
+
171
+ ParameterBinding position # noqa: E501
172
+
173
+ :return: The position of this ParameterBinding. # noqa: E501
174
+ :rtype: str
175
+ """
176
+ return self._position
177
+
178
+ @position.setter
179
+ def position(self, position):
180
+ """Sets the position of this ParameterBinding.
181
+
182
+ ParameterBinding position # noqa: E501
183
+
184
+ :param position: The position of this ParameterBinding. # noqa: E501
185
+ :type: str
186
+ """
187
+
188
+ self._position = position
189
+
190
+ @property
191
+ def x_coordinate(self):
192
+ """Gets the x_coordinate of this ParameterBinding. # noqa: E501
193
+
194
+ X coordinate of the ParameterBinding # noqa: E501
195
+
196
+ :return: The x_coordinate of this ParameterBinding. # noqa: E501
197
+ :rtype: float
198
+ """
199
+ return self._x_coordinate
200
+
201
+ @x_coordinate.setter
202
+ def x_coordinate(self, x_coordinate):
203
+ """Sets the x_coordinate of this ParameterBinding.
204
+
205
+ X coordinate of the ParameterBinding # noqa: E501
206
+
207
+ :param x_coordinate: The x_coordinate of this ParameterBinding. # noqa: E501
208
+ :type: float
209
+ """
210
+
211
+ self._x_coordinate = x_coordinate
212
+
213
+ @property
214
+ def y_coordinate(self):
215
+ """Gets the y_coordinate of this ParameterBinding. # noqa: E501
216
+
217
+ Y coordinate of the ParameterBinding # noqa: E501
218
+
219
+ :return: The y_coordinate of this ParameterBinding. # noqa: E501
220
+ :rtype: float
221
+ """
222
+ return self._y_coordinate
223
+
224
+ @y_coordinate.setter
225
+ def y_coordinate(self, y_coordinate):
226
+ """Sets the y_coordinate of this ParameterBinding.
227
+
228
+ Y coordinate of the ParameterBinding # noqa: E501
229
+
230
+ :param y_coordinate: The y_coordinate of this ParameterBinding. # noqa: E501
231
+ :type: float
232
+ """
233
+
234
+ self._y_coordinate = y_coordinate
235
+
236
+ @property
237
+ def z_coordinate(self):
238
+ """Gets the z_coordinate of this ParameterBinding. # noqa: E501
239
+
240
+ Z coordinate of the ParameterBinding # noqa: E501
241
+
242
+ :return: The z_coordinate of this ParameterBinding. # noqa: E501
243
+ :rtype: float
244
+ """
245
+ return self._z_coordinate
246
+
247
+ @z_coordinate.setter
248
+ def z_coordinate(self, z_coordinate):
249
+ """Sets the z_coordinate of this ParameterBinding.
250
+
251
+ Z coordinate of the ParameterBinding # noqa: E501
252
+
253
+ :param z_coordinate: The z_coordinate of this ParameterBinding. # noqa: E501
254
+ :type: float
255
+ """
256
+
257
+ self._z_coordinate = z_coordinate
258
+
259
+ @property
260
+ def type(self):
261
+ """Gets the type of this ParameterBinding. # noqa: E501
262
+
263
+ ParameterBinding type # noqa: E501
264
+
265
+ :return: The type of this ParameterBinding. # noqa: E501
266
+ :rtype: str
267
+ """
268
+ return self._type
269
+
270
+ @type.setter
271
+ def type(self, type):
272
+ """Sets the type of this ParameterBinding.
273
+
274
+ ParameterBinding type # noqa: E501
275
+
276
+ :param type: The type of this ParameterBinding. # noqa: E501
277
+ :type: str
278
+ """
279
+
280
+ self._type = type
281
+
282
+ @property
283
+ def acquisition(self):
284
+ """Gets the acquisition of this ParameterBinding. # noqa: E501
285
+
286
+ ParameterBinding acquisition mode # noqa: E501
287
+
288
+ :return: The acquisition of this ParameterBinding. # noqa: E501
289
+ :rtype: str
290
+ """
291
+ return self._acquisition
292
+
293
+ @acquisition.setter
294
+ def acquisition(self, acquisition):
295
+ """Sets the acquisition of this ParameterBinding.
296
+
297
+ ParameterBinding acquisition mode # noqa: E501
298
+
299
+ :param acquisition: The acquisition of this ParameterBinding. # noqa: E501
300
+ :type: str
301
+ """
302
+ allowed_values = ["None", "Standard", "Virtual", "xCB"] # noqa: E501
303
+ if acquisition not in allowed_values:
304
+ raise ValueError(
305
+ "Invalid value for `acquisition` ({0}), must be one of {1}" # noqa: E501
306
+ .format(acquisition, allowed_values)
307
+ )
308
+
309
+ self._acquisition = acquisition
310
+
311
+ @property
312
+ def last_update_date_utc(self):
313
+ """Gets the last_update_date_utc of this ParameterBinding. # noqa: E501
314
+
315
+ Last update utc date of the ParameterBinding # noqa: E501
316
+
317
+ :return: The last_update_date_utc of this ParameterBinding. # noqa: E501
318
+ :rtype: datetime
319
+ """
320
+ return self._last_update_date_utc
321
+
322
+ @last_update_date_utc.setter
323
+ def last_update_date_utc(self, last_update_date_utc):
324
+ """Sets the last_update_date_utc of this ParameterBinding.
325
+
326
+ Last update utc date of the ParameterBinding # noqa: E501
327
+
328
+ :param last_update_date_utc: The last_update_date_utc of this ParameterBinding. # noqa: E501
329
+ :type: datetime
330
+ """
331
+
332
+ self._last_update_date_utc = last_update_date_utc
333
+
334
+ @property
335
+ def last_update_user(self):
336
+ """Gets the last_update_user of this ParameterBinding. # noqa: E501
337
+
338
+ The name of the user who performed the last update on the ParameterBinding # noqa: E501
339
+
340
+ :return: The last_update_user of this ParameterBinding. # noqa: E501
341
+ :rtype: str
342
+ """
343
+ return self._last_update_user
344
+
345
+ @last_update_user.setter
346
+ def last_update_user(self, last_update_user):
347
+ """Sets the last_update_user of this ParameterBinding.
348
+
349
+ The name of the user who performed the last update on the ParameterBinding # noqa: E501
350
+
351
+ :param last_update_user: The last_update_user of this ParameterBinding. # noqa: E501
352
+ :type: str
353
+ """
354
+
355
+ self._last_update_user = last_update_user
356
+
357
+ def to_dict(self):
358
+ """Returns the model properties as a dict"""
359
+ result = {}
360
+
361
+ for attr, _ in six.iteritems(self.swagger_types):
362
+ value = getattr(self, attr)
363
+ if isinstance(value, list):
364
+ result[attr] = list(map(
365
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
366
+ value
367
+ ))
368
+ elif hasattr(value, "to_dict"):
369
+ result[attr] = value.to_dict()
370
+ elif isinstance(value, dict):
371
+ result[attr] = dict(map(
372
+ lambda item: (item[0], item[1].to_dict())
373
+ if hasattr(item[1], "to_dict") else item,
374
+ value.items()
375
+ ))
376
+ else:
377
+ result[attr] = value
378
+ if issubclass(ParameterBinding, dict):
379
+ for key, value in self.items():
380
+ result[key] = value
381
+
382
+ return result
383
+
384
+ def to_str(self):
385
+ """Returns the string representation of the model"""
386
+ return pprint.pformat(self.to_dict())
387
+
388
+ def __repr__(self):
389
+ """For `print` and `pprint`"""
390
+ return self.to_str()
391
+
392
+ def __eq__(self, other):
393
+ """Returns true if both objects are equal"""
394
+ if not isinstance(other, ParameterBinding):
395
+ return False
396
+
397
+ return self.__dict__ == other.__dict__
398
+
399
+ def __ne__(self, other):
400
+ """Returns true if both objects are not equal"""
401
+ return not self == other
@@ -40,7 +40,8 @@ class Target(object):
40
40
  'assembly_name_suffix': 'str',
41
41
  'show_param_has_new_revision': 'bool',
42
42
  'link_map_to_axis': 'bool',
43
- 'reuse_previous_run_assembly': 'bool'
43
+ 'reuse_previous_run_assembly': 'bool',
44
+ 'auto_generate_assembly_event_type': 'str'
44
45
  }
45
46
 
46
47
  attribute_map = {
@@ -55,10 +56,11 @@ class Target(object):
55
56
  'assembly_name_suffix': 'AssemblyNameSuffix',
56
57
  'show_param_has_new_revision': 'ShowParamHasNewRevision',
57
58
  'link_map_to_axis': 'LinkMapToAxis',
58
- 'reuse_previous_run_assembly': 'ReusePreviousRunAssembly'
59
+ 'reuse_previous_run_assembly': 'ReusePreviousRunAssembly',
60
+ 'auto_generate_assembly_event_type': 'AutoGenerateAssemblyEventType'
59
61
  }
60
62
 
61
- def __init__(self, id=None, name=None, description=None, file_format='M', auto_generate_assembly=None, auto_generate_assembly_version_id=None, revision_merge_comment_mandatory=None, allow_override_limits=None, assembly_name_suffix=None, show_param_has_new_revision=None, link_map_to_axis=None, reuse_previous_run_assembly=None): # noqa: E501
63
+ def __init__(self, id=None, name=None, description=None, file_format='M', auto_generate_assembly=None, auto_generate_assembly_version_id=None, revision_merge_comment_mandatory=None, allow_override_limits=None, assembly_name_suffix=None, show_param_has_new_revision=None, link_map_to_axis=None, reuse_previous_run_assembly=None, auto_generate_assembly_event_type=None): # noqa: E501
62
64
  """Target - a model defined in Swagger""" # noqa: E501
63
65
  self._id = None
64
66
  self._name = None
@@ -72,6 +74,7 @@ class Target(object):
72
74
  self._show_param_has_new_revision = None
73
75
  self._link_map_to_axis = None
74
76
  self._reuse_previous_run_assembly = None
77
+ self._auto_generate_assembly_event_type = None
75
78
  self.discriminator = None
76
79
  self.id = id
77
80
  self.name = name
@@ -94,6 +97,8 @@ class Target(object):
94
97
  self.link_map_to_axis = link_map_to_axis
95
98
  if reuse_previous_run_assembly is not None:
96
99
  self.reuse_previous_run_assembly = reuse_previous_run_assembly
100
+ if auto_generate_assembly_event_type is not None:
101
+ self.auto_generate_assembly_event_type = auto_generate_assembly_event_type
97
102
 
98
103
  @property
99
104
  def id(self):
@@ -383,6 +388,29 @@ class Target(object):
383
388
 
384
389
  self._reuse_previous_run_assembly = reuse_previous_run_assembly
385
390
 
391
+ @property
392
+ def auto_generate_assembly_event_type(self):
393
+ """Gets the auto_generate_assembly_event_type of this Target. # noqa: E501
394
+
395
+ List of event types separated with ; for which auto generate assembly is allowed. If empty, all the event types are allowed. Example: Race;Test # noqa: E501
396
+
397
+ :return: The auto_generate_assembly_event_type of this Target. # noqa: E501
398
+ :rtype: str
399
+ """
400
+ return self._auto_generate_assembly_event_type
401
+
402
+ @auto_generate_assembly_event_type.setter
403
+ def auto_generate_assembly_event_type(self, auto_generate_assembly_event_type):
404
+ """Sets the auto_generate_assembly_event_type of this Target.
405
+
406
+ List of event types separated with ; for which auto generate assembly is allowed. If empty, all the event types are allowed. Example: Race;Test # noqa: E501
407
+
408
+ :param auto_generate_assembly_event_type: The auto_generate_assembly_event_type of this Target. # noqa: E501
409
+ :type: str
410
+ """
411
+
412
+ self._auto_generate_assembly_event_type = auto_generate_assembly_event_type
413
+
386
414
  def to_dict(self):
387
415
  """Returns the model properties as a dict"""
388
416
  result = {}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: teamdbapi
3
- Version: 3.3.0
3
+ Version: 3.4.0
4
4
  Summary: Easily access the TeamDB Web API.
5
5
  Keywords: teamdbapi,Trackside,Trackside Software,TeamDB
6
6
  Author-email: Trackside Software <support@trackside.fr>
@@ -19,13 +19,13 @@ Project-URL: Homepage, https://www.tracksidesoftware.fr/teamdb
19
19
  # teamdbapi
20
20
  This module enables you to easily access the TeamDB Web API.
21
21
 
22
- - Package version: 3.3.0
22
+ - Package version: 3.4.0
23
23
  - TeamDB Web API version: 2.0
24
24
 
25
25
  ## Requirements.
26
26
 
27
27
  - Python 3.4+
28
- - TeamDB 3.3.0
28
+ - TeamDB 3.4.0
29
29
 
30
30
  ## Installation and usage
31
31
  ### pip install
@@ -1,11 +1,11 @@
1
- teamdbapi/__init__.py,sha256=B003FC9SYLUFoDGs2zIR7m9-hgaqyr4irBhfAyUy87k,5794
1
+ teamdbapi/__init__.py,sha256=koTvaKel_aKpv2mDX-iZQlFUAmjCSxABI9_6_h5qV6c,6020
2
2
  teamdbapi/api_client.py,sha256=bGyO6zVuiX6tGe8LT20ow3SEIg6E7XDgEFcphDWnvnQ,24745
3
3
  teamdbapi/configuration.py,sha256=KYYxC9iI_kHB_aV6RUUUx8ChyVX-TEzp82wmurIFGag,7836
4
4
  teamdbapi/rest.py,sha256=8y0WME1GjkIV09mc8C_Y_ZLjNh8Hcl6m6mH4226xh3o,13189
5
- teamdbapi/api/__init__.py,sha256=xlWsNqlAXVbODefivYQX1nYMzPuWDrTHRUsZT-m7b5w,1877
5
+ teamdbapi/api/__init__.py,sha256=VAhVIqa17-d_a6HCVoaOr3dwrrMyXGaSgPMu2DOrJpU,1994
6
6
  teamdbapi/api/assembly_api.py,sha256=YaTJ51Fj6a_5C_3Enu8Jh7HU6APISn-cIt7WZYBg2sY,89145
7
7
  teamdbapi/api/car_api.py,sha256=85dDLIRC2qAFruOVaNcSKcq6i3v1-cSbEZ5oLc8V_Vc,32808
8
- teamdbapi/api/component_api.py,sha256=Sg8V4DZednX82VXnKNZOTO5cTh9saFajs_ZHFGj95Fc,49916
8
+ teamdbapi/api/component_api.py,sha256=5XalDwS1TEE_Y14zVVLMjam_k3v75ys-7ZRVW_446_g,53426
9
9
  teamdbapi/api/config_api.py,sha256=31XfHLKMy7-iaQe1tbElw0CWzl9XjLJ5lpCGf8rpxVw,3841
10
10
  teamdbapi/api/criteria_api.py,sha256=A0lFQk3qF10kMk8etnByWVwNkGVhB_PbI7_XwX6VGEQ,4471
11
11
  teamdbapi/api/edit_api.py,sha256=bvnIwV-55IPfFuWBqiNjsfwNDkl8E22lnxqTALNZ2ds,21793
@@ -19,7 +19,9 @@ teamdbapi/api/lap_report_api.py,sha256=K6vGcpidwUXsgBbzoxJLkzMVSm9W7IdkZKokyKyq-
19
19
  teamdbapi/api/model_field_api.py,sha256=tgQOLZmKH2z_99x-6_65B76BSeg3cj3C42rwneXlXXo,28905
20
20
  teamdbapi/api/mounting_api.py,sha256=0Jk8yXd3rUz9lRE0-zQwg7rf4rNklgRwIZ0UkB4ticA,8591
21
21
  teamdbapi/api/notes_authorization_api.py,sha256=HdC22O8BqPAuEPTSvk9IZdl0X8MrrrbuT_m1IW16plo,14202
22
+ teamdbapi/api/overall_api.py,sha256=Wk-jifopCAiQ4zgogZ5tCyKZXIP0zZ8P2eXBCA73HHc,3810
22
23
  teamdbapi/api/parameter_api.py,sha256=xoDU8ck8n8Rzgq-R2wvtT08tigWuR5sY8v2qxLoC-uU,53260
24
+ teamdbapi/api/parameter_binding_api.py,sha256=-taSLwjL7gykLH2J3Rr_ZA4SXkX4v5QE3JfW6DYkAQ4,20781
23
25
  teamdbapi/api/part_api.py,sha256=ElrOiI_Ni1NSQS9o9D3S2zWFCz_qzfyrNzgb2SHUm64,31345
24
26
  teamdbapi/api/report_api.py,sha256=0b9v8VWvMxdX-AGxr-FG1iPPDSMWx-PUxnT6qeQLpzQ,5816
25
27
  teamdbapi/api/revision_api.py,sha256=aC39-6TlKB50_8cxHWLm98lkTcg-LVNT_nJtd01AoXo,72304
@@ -36,9 +38,9 @@ teamdbapi/api/track_api.py,sha256=iOtSH-KssiWpKg-P60DDW_N2UbhkEuL3Jxt3x9PTXuM,18
36
38
  teamdbapi/api/track_layout_api.py,sha256=B3kwP8eo1tV7Av76EJb1AYGUk7HbOhZlSJiAedWnVO8,20515
37
39
  teamdbapi/api/update_request_api.py,sha256=JtGr6tz9oRwEHrE3qRcDJ8wdV3BwDPWwbr63xCNaxY4,9754
38
40
  teamdbapi/api/user_api.py,sha256=UujgPEo_opOTx43vzMzTkf5braW3XC1z1g4bTSEbIbk,17146
39
- teamdbapi/api/value_field_api.py,sha256=kdl4i8J-b6Q-O027JFsHJjYLtzMKEcK5nGH1Ki6Fgtw,25577
41
+ teamdbapi/api/value_field_api.py,sha256=vRhLtRF9BTeXj_UDqvrnqoHuRRrQe4FIr8HoBbkqP4A,30186
40
42
  teamdbapi/api/version_api.py,sha256=obqmDP5Tl8_Iy0IYqPYJ3tdMNZ3xGdMEzLewPfxBYWM,19187
41
- teamdbapi/models/__init__.py,sha256=ljO2lrmJUThBeLtlY0x3i1dldZ3yP7MU4NyMJ2yMBhY,3862
43
+ teamdbapi/models/__init__.py,sha256=rNxTNtRZSlkSUnn95ZaCVCDN2Ike4o8HdPQpCzHT_zA,3971
42
44
  teamdbapi/models/add_part_car_parameter_arg.py,sha256=qTz6Sf23qVT2TsXLYpyP1ShFYJ2gFIzxW3gPvQBdYb4,14421
43
45
  teamdbapi/models/assembly.py,sha256=JwYxeGEkyOFsTae3nGpxjUJqifVBD_glkEBuVx8jsf0,19631
44
46
  teamdbapi/models/bleed_adjustment.py,sha256=l4xXWVLo0uXI_ALBxG2YQ94EdGu9252UNRqzlpZeBPs,4351
@@ -48,14 +50,14 @@ teamdbapi/models/car_parameters_context.py,sha256=pJLifIcbJLNm925maS0XsIPk4Mwegi
48
50
  teamdbapi/models/compare_options.py,sha256=UpxfagyeCJtDlxEGODOIvY3MOQoOVcfis5-dRPGzA8Q,7112
49
51
  teamdbapi/models/compare_result.py,sha256=oFedEGB-3XxJHhi7oqtOig2tgffvJJ3mFRHAqOGA7AY,7081
50
52
  teamdbapi/models/compare_result_detail.py,sha256=vX9BN-2lgF80s2lVoeD_MNI1GcPRHj26YyOmi2Jv7VY,6256
51
- teamdbapi/models/component.py,sha256=xsFJ7oaSDY8LdF--zKEwrR-iHK7r6rJGsMHGTyXdT0s,43001
53
+ teamdbapi/models/component.py,sha256=aXvDAwhMu86IPgr9f90M6v8_T94HsKfA2VG2g5ZEu5s,44214
52
54
  teamdbapi/models/copy_from_tags_args.py,sha256=zjtCUPCbz78j-b9_lqDYsObkALfui2LAxaaJpuvjezU,3741
53
55
  teamdbapi/models/couple_guid_text.py,sha256=KoRMib3O9fR662gWNiXHVukCrl9tDgoNppzXQd_k3_k,3569
54
- teamdbapi/models/criteria.py,sha256=0QAjE070I-66jPNM5bgan9Joc86cUoc_K4KTC5vcmis,13378
56
+ teamdbapi/models/criteria.py,sha256=eFnEJi-mYImwb7WDtPWPPjWmxG83X6M3LzgnUYH3jpM,13366
55
57
  teamdbapi/models/criteria_value.py,sha256=Km1ZDrxI5E9CKc_Okjcx3t5wo-Y9VelVwuTqDbY4wIE,5729
56
58
  teamdbapi/models/event.py,sha256=TY951vb1UtiJZdGU_ae8xnILLgnCbqIOFIPaQfRqTY8,13073
57
59
  teamdbapi/models/file_revision_info.py,sha256=QoFVEP33K6iiASRL4GdGqix9elhIJnTuKpnGaq47pX8,6577
58
- teamdbapi/models/fixed_field.py,sha256=kv2sDc26ZMRPMzQgRSGycZKUcLGMa5rp3jy-YvVzuFM,11166
60
+ teamdbapi/models/fixed_field.py,sha256=rOMhXkVPmBlV1XfXqXL3UF5__rO3kFoOagn0a11rUg4,11177
59
61
  teamdbapi/models/group.py,sha256=JJl4KM5eJFiHwbpCgOAALc9LidJfb7hapqiZny0qKZs,8473
60
62
  teamdbapi/models/import_parameters_args.py,sha256=I3bFCPap5WgykoYOU3PVlyivShy1Cib_4cucvz6siso,17619
61
63
  teamdbapi/models/import_parameters_results.py,sha256=AWqZ-lrOwkqLpH9izRsj1SxfeJoewdnOrxDVHZhT-qI,5496
@@ -74,12 +76,14 @@ teamdbapi/models/item_value.py,sha256=8pRNudP9djjiYUq0snWP0_fcNpaHf9QxuMvECY_GDg
74
76
  teamdbapi/models/item_value_key.py,sha256=AvcOhW9ta34oh7wvUYIjikfRYXW8_r668ls9cgirbe4,4515
75
77
  teamdbapi/models/lap.py,sha256=Tj-8BufCIKsDAER7LDER9k9DqQCq7hyyt3DCde_jqTo,21717
76
78
  teamdbapi/models/lap_report_options.py,sha256=ObVOVOdsi9BgAblC58F5RSzHYQLDl3eirvJviATxqoY,6550
77
- teamdbapi/models/model_field.py,sha256=MEmLjaKWj9J8bMmgM_gjNFX-wWukxKGOTvANGlCvQa8,27754
79
+ teamdbapi/models/model_field.py,sha256=FhSpBUOE6mOA5zUR_tCrJFavqdgRMpcY_7226fzfdKM,27765
78
80
  teamdbapi/models/model_field_authorization.py,sha256=QAOqqx-ONbEyPxFOXjETj11Ej7QGQyP2G7B27L__bXc,8477
79
81
  teamdbapi/models/mounting.py,sha256=wcIfr5KnVni_1KFa0IS5bv9k5OjDRcPrajKh5kIhtjY,16139
80
82
  teamdbapi/models/notes_authorization.py,sha256=EMIvSc0y2BUanLUGFZzD_s48FfqJNDjdPow3wkfNFCs,7514
81
83
  teamdbapi/models/notes_context.py,sha256=RXmOU1Xsf4rDeNDDNfcFtXDHnWKzDqem_sNoEHDEtpg,6003
84
+ teamdbapi/models/overall.py,sha256=RXKVvCP1oxmUp3szrJzvYjigmBQ_l5B71wcMrW9MBR4,6268
82
85
  teamdbapi/models/parameter.py,sha256=C3L2_MPCZyTuBsbHhTx80fWG9w1w_8ryQSyQ4B7juKM,13632
86
+ teamdbapi/models/parameter_binding.py,sha256=98MEdnW2xHTpZLK4GIZG4aQnZZAXgG_it6TZ6Cs3Ybk,12240
83
87
  teamdbapi/models/parameter_cross_table.py,sha256=Z__-cmZzN8x005Dlsmh0fJkQp0DKJ8gWD3eB2TZlXtw,4939
84
88
  teamdbapi/models/part.py,sha256=rMZQt_1mwrtm-2spPlnHDjFLCPOMq1kuKyRi8LXAZSI,29998
85
89
  teamdbapi/models/part_car_parameters.py,sha256=phmdQ3riH83_3GDoqx99BIshFivZyVwV2C0IJFCxKLA,20009
@@ -91,7 +95,7 @@ teamdbapi/models/run.py,sha256=ipY4TsknX1nwMSs0yXMuZVBwpA63UsLYKl311ghU-ZQ,16778
91
95
  teamdbapi/models/script.py,sha256=1wiGWWKsBfiVRRCLtJ8929urMmOE-BQhzYuvgQLBF7s,7344
92
96
  teamdbapi/models/session.py,sha256=07sjC7bjfAO-XF3glFl9ulr0dZDFr4AWfWO8Mb5aYh0,16999
93
97
  teamdbapi/models/string_with_font_style.py,sha256=RNETcCUe1ElC5Qh1ownZO3ofJxNyB1pIEx-Nng25z4o,8191
94
- teamdbapi/models/target.py,sha256=T5xNsyGHk0yOVsF1FN29Y1x5tvORhn6fFfzLrJeltdo,16416
98
+ teamdbapi/models/target.py,sha256=XSZB8E4WmzqLxHJzCdc0EEY4tyBi-ZEvtsSQEu_mLe8,17881
95
99
  teamdbapi/models/team_db_list.py,sha256=Lx2aqqOXe1LUh9XLILf-3GuGP0bGpek5jrPdftox9jw,4055
96
100
  teamdbapi/models/team_db_list_item.py,sha256=NS0sNgLtuhemUvNeYXrX6EHtRnyGjZACqQyRka3oOwQ,5795
97
101
  teamdbapi/models/tire.py,sha256=QaEWnRGuzXZiSaoBGOrcsCSoNhh0UfWCbfSWS5iFaHo,26570
@@ -102,7 +106,7 @@ teamdbapi/models/user.py,sha256=1VSU2NzosU-uybP6-aEzOP_UIURZcFIZ9gJ0gpdyow4,3771
102
106
  teamdbapi/models/user_group.py,sha256=07-kop2hu_K1i3TI7AMiDxZm8eFJ_ujdqR-L-7E9J4o,3855
103
107
  teamdbapi/models/value_field.py,sha256=mJNrh3oxamsKGeF0j8HDF_RL7mURCIFzNl8ne9z4r00,9300
104
108
  teamdbapi/models/version.py,sha256=wYmr5LOgpdTfRZMT6ztBztTSzY4EsbBGqekZU7NAOQM,14295
105
- teamdbapi-3.3.0.dist-info/LICENSE,sha256=vwnGuuzuV_Xwrmy2iggjNV3RVLrhWdIM4VXT68N4CxE,1074
106
- teamdbapi-3.3.0.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81
107
- teamdbapi-3.3.0.dist-info/METADATA,sha256=scp7ddg8sW5lZZfbyop4FTGMc9LWqSa_PrD0M2efK_k,2367
108
- teamdbapi-3.3.0.dist-info/RECORD,,
109
+ teamdbapi-3.4.0.dist-info/LICENSE,sha256=vwnGuuzuV_Xwrmy2iggjNV3RVLrhWdIM4VXT68N4CxE,1074
110
+ teamdbapi-3.4.0.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81
111
+ teamdbapi-3.4.0.dist-info/METADATA,sha256=wpbTSYkn0lp3DOuqMeKqeXo9CiYXgA4KIJRTE1AQDjw,2367
112
+ teamdbapi-3.4.0.dist-info/RECORD,,