teamdbapi 3.2.0__py3-none-any.whl → 3.3.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.
@@ -751,7 +751,7 @@ class AssemblyApi(object):
751
751
 
752
752
  :param async_req bool
753
753
  :param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
754
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : MyFile.m (required)
754
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
755
755
  :return: bool
756
756
  If the method is called asynchronously,
757
757
  returns the request thread.
@@ -773,7 +773,7 @@ class AssemblyApi(object):
773
773
 
774
774
  :param async_req bool
775
775
  :param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
776
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : MyFile.m (required)
776
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
777
777
  :return: bool
778
778
  If the method is called asynchronously,
779
779
  returns the request thread.
@@ -1319,7 +1319,7 @@ class AssemblyApi(object):
1319
1319
  :param str version_id: The version id to which the new assembly will belong
1320
1320
  :param str assembly_name: The assembly name to create
1321
1321
  :param str revision_name: The default revision name used to create the new revisions
1322
- :param str file_path: The file path containing the parameters
1322
+ :param str file_path: The file path containing the parameters. Example: C:/path/myFile.m
1323
1323
  :return: Assembly
1324
1324
  If the method is called asynchronously,
1325
1325
  returns the request thread.
@@ -1343,7 +1343,7 @@ class AssemblyApi(object):
1343
1343
  :param str version_id: The version id to which the new assembly will belong
1344
1344
  :param str assembly_name: The assembly name to create
1345
1345
  :param str revision_name: The default revision name used to create the new revisions
1346
- :param str file_path: The file path containing the parameters
1346
+ :param str file_path: The file path containing the parameters. Example: C:/path/myFile.m
1347
1347
  :return: Assembly
1348
1348
  If the method is called asynchronously,
1349
1349
  returns the request thread.
teamdbapi/api/edit_api.py CHANGED
@@ -137,6 +137,95 @@ class EditApi(object):
137
137
  _request_timeout=params.get('_request_timeout'),
138
138
  collection_formats=collection_formats)
139
139
 
140
+ def get_all_car_parameters_contexts(self, **kwargs): # noqa: E501
141
+ """Get all car parameters contexts in all TeamDB client layouts, or the global context only if the Use Global Context option is active. # noqa: E501
142
+
143
+ This method makes a synchronous HTTP request by default. To make an
144
+ asynchronous HTTP request, please pass async_req=True
145
+ >>> thread = api.get_all_car_parameters_contexts(async_req=True)
146
+ >>> result = thread.get()
147
+
148
+ :param async_req bool
149
+ :param bool include_hidden_layouts: True to include all layouts including hidden ones, False for only the visible ones
150
+ :return: list[CarParametersContext]
151
+ If the method is called asynchronously,
152
+ returns the request thread.
153
+ """
154
+ kwargs['_return_http_data_only'] = True
155
+ if kwargs.get('async_req'):
156
+ return self.get_all_car_parameters_contexts_with_http_info(**kwargs) # noqa: E501
157
+ else:
158
+ (data) = self.get_all_car_parameters_contexts_with_http_info(**kwargs) # noqa: E501
159
+ return data
160
+
161
+ def get_all_car_parameters_contexts_with_http_info(self, **kwargs): # noqa: E501
162
+ """Get all car parameters contexts in all TeamDB client layouts, or the global context only if the Use Global Context option is active. # noqa: E501
163
+
164
+ This method makes a synchronous HTTP request by default. To make an
165
+ asynchronous HTTP request, please pass async_req=True
166
+ >>> thread = api.get_all_car_parameters_contexts_with_http_info(async_req=True)
167
+ >>> result = thread.get()
168
+
169
+ :param async_req bool
170
+ :param bool include_hidden_layouts: True to include all layouts including hidden ones, False for only the visible ones
171
+ :return: list[CarParametersContext]
172
+ If the method is called asynchronously,
173
+ returns the request thread.
174
+ """
175
+
176
+ all_params = ['include_hidden_layouts'] # noqa: E501
177
+ all_params.append('async_req')
178
+ all_params.append('_return_http_data_only')
179
+ all_params.append('_preload_content')
180
+ all_params.append('_request_timeout')
181
+
182
+ params = locals()
183
+ for key, val in six.iteritems(params['kwargs']):
184
+ if key not in all_params:
185
+ raise TypeError(
186
+ "Got an unexpected keyword argument '%s'"
187
+ " to method get_all_car_parameters_contexts" % key
188
+ )
189
+ params[key] = val
190
+ del params['kwargs']
191
+
192
+ collection_formats = {}
193
+
194
+ path_params = {}
195
+
196
+ query_params = []
197
+ if 'include_hidden_layouts' in params:
198
+ query_params.append(('includeHiddenLayouts', params['include_hidden_layouts'])) # noqa: E501
199
+
200
+ header_params = {}
201
+
202
+ form_params = []
203
+ local_var_files = {}
204
+
205
+ body_params = None
206
+ # HTTP header `Accept`
207
+ header_params['Accept'] = self.api_client.select_header_accept(
208
+ ['application/json', 'text/json']) # noqa: E501
209
+
210
+ # Authentication setting
211
+ auth_settings = [] # noqa: E501
212
+
213
+ return self.api_client.call_api(
214
+ '/teamdbapi/v2.0/allCarParametersContext', 'GET',
215
+ path_params,
216
+ query_params,
217
+ header_params,
218
+ body=body_params,
219
+ post_params=form_params,
220
+ files=local_var_files,
221
+ response_type='list[CarParametersContext]', # noqa: E501
222
+ auth_settings=auth_settings,
223
+ async_req=params.get('async_req'),
224
+ _return_http_data_only=params.get('_return_http_data_only'),
225
+ _preload_content=params.get('_preload_content', True),
226
+ _request_timeout=params.get('_request_timeout'),
227
+ collection_formats=collection_formats)
228
+
140
229
  def get_current_car_parameters_selected_context(self, **kwargs): # noqa: E501
141
230
  """Get the current Car Parameters selected context in Parameters Editor view # noqa: E501
142
231
 
@@ -43,7 +43,7 @@ class ImportExportApi(object):
43
43
  :param async_req bool
44
44
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
45
45
  :param str source_id: The Source ID string for which you want to export the data (required)
46
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:\\path\\MyFile.xml (required)
46
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
47
47
  :return: None
48
48
  If the method is called asynchronously,
49
49
  returns the request thread.
@@ -66,7 +66,7 @@ class ImportExportApi(object):
66
66
  :param async_req bool
67
67
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
68
68
  :param str source_id: The Source ID string for which you want to export the data (required)
69
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:\\path\\MyFile.xml (required)
69
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
70
70
  :return: None
71
71
  If the method is called asynchronously,
72
72
  returns the request thread.
@@ -157,7 +157,7 @@ class ImportExportApi(object):
157
157
  :param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
158
158
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
159
159
  :param str source_id: The Source ID string for which you want to export the data (required)
160
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:\\path\\MyFile.xml (required)
160
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
161
161
  :return: None
162
162
  If the method is called asynchronously,
163
163
  returns the request thread.
@@ -185,7 +185,7 @@ class ImportExportApi(object):
185
185
  :param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
186
186
  :param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
187
187
  :param str source_id: The Source ID string for which you want to export the data (required)
188
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:\\path\\MyFile.xml (required)
188
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.xml (required)
189
189
  :return: None
190
190
  If the method is called asynchronously,
191
191
  returns the request thread.
@@ -300,7 +300,7 @@ class ImportExportApi(object):
300
300
 
301
301
  :param async_req bool
302
302
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
303
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
303
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
304
304
  :return: None
305
305
  If the method is called asynchronously,
306
306
  returns the request thread.
@@ -322,7 +322,7 @@ class ImportExportApi(object):
322
322
 
323
323
  :param async_req bool
324
324
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
325
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
325
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
326
326
  :return: None
327
327
  If the method is called asynchronously,
328
328
  returns the request thread.
@@ -402,7 +402,7 @@ class ImportExportApi(object):
402
402
  :param async_req bool
403
403
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
404
404
  :param str sheetname: The sheet name in the file (required)
405
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
405
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
406
406
  :return: None
407
407
  If the method is called asynchronously,
408
408
  returns the request thread.
@@ -425,7 +425,7 @@ class ImportExportApi(object):
425
425
  :param async_req bool
426
426
  :param str source_path: The source path configured in the teamdb fields that you want to import (required)
427
427
  :param str sheetname: The sheet name in the file (required)
428
- :param str input_file_path: The Excel file path you want to import. For example : C:\\path\\MyFile.xlsx (required)
428
+ :param str input_file_path: The Excel file path you want to import. For example : C:/path/MyFile.xlsx (required)
429
429
  :return: None
430
430
  If the method is called asynchronously,
431
431
  returns the request thread.
@@ -510,7 +510,7 @@ class ImportExportApi(object):
510
510
 
511
511
  :param async_req bool
512
512
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
513
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
513
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
514
514
  :return: None
515
515
  If the method is called asynchronously,
516
516
  returns the request thread.
@@ -532,7 +532,7 @@ class ImportExportApi(object):
532
532
 
533
533
  :param async_req bool
534
534
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
535
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
535
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
536
536
  :return: None
537
537
  If the method is called asynchronously,
538
538
  returns the request thread.
@@ -616,7 +616,7 @@ class ImportExportApi(object):
616
616
  :param str run_id: The run ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
617
617
  :param str lap_id: The lap ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
618
618
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
619
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
619
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
620
620
  :return: None
621
621
  If the method is called asynchronously,
622
622
  returns the request thread.
@@ -643,7 +643,7 @@ class ImportExportApi(object):
643
643
  :param str run_id: The run ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
644
644
  :param str lap_id: The lap ID to which perform the import or the empty id 00000000-0000-0000-0000-000000000000 (required)
645
645
  :param str source_id: The source ID configured in the teamdb fields that you want to import (required)
646
- :param str input_file_path: The XML file path you want to import. For example : C:\\path\\MyFile.xml (required)
646
+ :param str input_file_path: The XML file path you want to import. For example : C:/path/MyFile.xml (required)
647
647
  :return: None
648
648
  If the method is called asynchronously,
649
649
  returns the request thread.
@@ -296,7 +296,7 @@ class LapReportApi(object):
296
296
  >>> result = thread.get()
297
297
 
298
298
  :param async_req bool
299
- :param str file_path: The lap report path (required)
299
+ :param str file_path: The lap report path. Example: C:/path/myFile.csv (required)
300
300
  :param str lap_report_file_format: The lap report file format: Wintax or Atlas (required)
301
301
  :param str session_id: The identifier of the session in which the report is to be loaded; if there is none, the report is imported into the current session.
302
302
  :return: None
@@ -319,7 +319,7 @@ class LapReportApi(object):
319
319
  >>> result = thread.get()
320
320
 
321
321
  :param async_req bool
322
- :param str file_path: The lap report path (required)
322
+ :param str file_path: The lap report path. Example: C:/path/myFile.csv (required)
323
323
  :param str lap_report_file_format: The lap report file format: Wintax or Atlas (required)
324
324
  :param str session_id: The identifier of the session in which the report is to be loaded; if there is none, the report is imported into the current session.
325
325
  :return: None
@@ -43,7 +43,7 @@ class ReportApi(object):
43
43
  :param async_req bool
44
44
  :param str report_name: The report name (required)
45
45
  :param str format: The output file format (required)
46
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C://path/MyFile.pdf (required)
46
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.pdf (required)
47
47
  :return: None
48
48
  If the method is called asynchronously,
49
49
  returns the request thread.
@@ -66,7 +66,7 @@ class ReportApi(object):
66
66
  :param async_req bool
67
67
  :param str report_name: The report name (required)
68
68
  :param str format: The output file format (required)
69
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C://path/MyFile.pdf (required)
69
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.pdf (required)
70
70
  :return: None
71
71
  If the method is called asynchronously,
72
72
  returns the request thread.
@@ -372,7 +372,7 @@ class RevisionApi(object):
372
372
  :param async_req bool
373
373
  :param str revision_id: The revision id to export. (required)
374
374
  :param str version_id: The version id to which you want to export the revision value. (required)
375
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : MyFile.m (required)
375
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
376
376
  :return: bool
377
377
  If the method is called asynchronously,
378
378
  returns the request thread.
@@ -395,7 +395,7 @@ class RevisionApi(object):
395
395
  :param async_req bool
396
396
  :param str revision_id: The revision id to export. (required)
397
397
  :param str version_id: The version id to which you want to export the revision value. (required)
398
- :param str output_file_path: The path to the file to create. You have to provide the file extension for example : MyFile.m (required)
398
+ :param str output_file_path: The path to the file to create. You have to provide the file extension for example : C:/path/MyFile.m (required)
399
399
  :return: bool
400
400
  If the method is called asynchronously,
401
401
  returns the request thread.
@@ -453,7 +453,7 @@ class ValueFieldApi(object):
453
453
  >>> result = thread.get()
454
454
 
455
455
  :param async_req bool
456
- :param object body: The value to set in the value field. -Timespan, enter a double value in seconds 125.333 -> 02:05.333. -DateTime, use the following format 2019-02-18T18:14:32.930Z. -Image, enter the path to the file with the following format C:\\\\Users\\\\MyUser\\\\Downloads\\\\MyImage.png (note the double \\) (required)
456
+ :param object body: The value to set in the value field. -Timespan, enter a double value in seconds 125.333 -> 02:05.333. -DateTime, use the following format 2019-02-18T18:14:32.930Z. -Image, enter the path to the file, must be described only by / or \\\\. (required)
457
457
  :param str parent_item_id: The parent item id for which you want to get the value field (required)
458
458
  :param str model_field_id: The model field id for which you want to get the value field (required)
459
459
  :return: ValueField
@@ -476,7 +476,7 @@ class ValueFieldApi(object):
476
476
  >>> result = thread.get()
477
477
 
478
478
  :param async_req bool
479
- :param object body: The value to set in the value field. -Timespan, enter a double value in seconds 125.333 -> 02:05.333. -DateTime, use the following format 2019-02-18T18:14:32.930Z. -Image, enter the path to the file with the following format C:\\\\Users\\\\MyUser\\\\Downloads\\\\MyImage.png (note the double \\) (required)
479
+ :param object body: The value to set in the value field. -Timespan, enter a double value in seconds 125.333 -> 02:05.333. -DateTime, use the following format 2019-02-18T18:14:32.930Z. -Image, enter the path to the file, must be described only by / or \\\\. (required)
480
480
  :param str parent_item_id: The parent item id for which you want to get the value field (required)
481
481
  :param str model_field_id: The model field id for which you want to get the value field (required)
482
482
  :return: ValueField
@@ -31,20 +31,23 @@ class CarParametersContext(object):
31
31
  swagger_types = {
32
32
  'target_id': 'str',
33
33
  'version_id': 'str',
34
- 'assembly_id': 'str'
34
+ 'assembly_id': 'str',
35
+ 'name': 'str'
35
36
  }
36
37
 
37
38
  attribute_map = {
38
39
  'target_id': 'TargetId',
39
40
  'version_id': 'VersionId',
40
- 'assembly_id': 'AssemblyId'
41
+ 'assembly_id': 'AssemblyId',
42
+ 'name': 'Name'
41
43
  }
42
44
 
43
- def __init__(self, target_id=None, version_id=None, assembly_id=None): # noqa: E501
45
+ def __init__(self, target_id=None, version_id=None, assembly_id=None, name=None): # noqa: E501
44
46
  """CarParametersContext - a model defined in Swagger""" # noqa: E501
45
47
  self._target_id = None
46
48
  self._version_id = None
47
49
  self._assembly_id = None
50
+ self._name = None
48
51
  self.discriminator = None
49
52
  if target_id is not None:
50
53
  self.target_id = target_id
@@ -52,6 +55,8 @@ class CarParametersContext(object):
52
55
  self.version_id = version_id
53
56
  if assembly_id is not None:
54
57
  self.assembly_id = assembly_id
58
+ if name is not None:
59
+ self.name = name
55
60
 
56
61
  @property
57
62
  def target_id(self):
@@ -122,6 +127,29 @@ class CarParametersContext(object):
122
127
 
123
128
  self._assembly_id = assembly_id
124
129
 
130
+ @property
131
+ def name(self):
132
+ """Gets the name of this CarParametersContext. # noqa: E501
133
+
134
+ Context name (ie the layout name) or empty for the global context # noqa: E501
135
+
136
+ :return: The name of this CarParametersContext. # noqa: E501
137
+ :rtype: str
138
+ """
139
+ return self._name
140
+
141
+ @name.setter
142
+ def name(self, name):
143
+ """Sets the name of this CarParametersContext.
144
+
145
+ Context name (ie the layout name) or empty for the global context # noqa: E501
146
+
147
+ :param name: The name of this CarParametersContext. # noqa: E501
148
+ :type: str
149
+ """
150
+
151
+ self._name = name
152
+
125
153
  def to_dict(self):
126
154
  """Returns the model properties as a dict"""
127
155
  result = {}
@@ -108,7 +108,7 @@ class CompareOptions(object):
108
108
  def diff_file_path(self):
109
109
  """Gets the diff_file_path of this CompareOptions. # noqa: E501
110
110
 
111
- The output file path contenaing the differences # noqa: E501
111
+ The output file path contenaing the differences. The path must be described only by / or \\\\\\\\. # noqa: E501
112
112
 
113
113
  :return: The diff_file_path of this CompareOptions. # noqa: E501
114
114
  :rtype: str
@@ -119,7 +119,7 @@ class CompareOptions(object):
119
119
  def diff_file_path(self, diff_file_path):
120
120
  """Sets the diff_file_path of this CompareOptions.
121
121
 
122
- The output file path contenaing the differences # noqa: E501
122
+ The output file path contenaing the differences. The path must be described only by / or \\\\\\\\. # noqa: E501
123
123
 
124
124
  :param diff_file_path: The diff_file_path of this CompareOptions. # noqa: E501
125
125
  :type: str
@@ -60,7 +60,7 @@ class FileRevisionInfo(object):
60
60
  def file_path(self):
61
61
  """Gets the file_path of this FileRevisionInfo. # noqa: E501
62
62
 
63
- The path to the file containing the revisions to import # noqa: E501
63
+ The path to the file containing the revisions to import The path must be described only by / or \\\\\\\\. # noqa: E501
64
64
 
65
65
  :return: The file_path of this FileRevisionInfo. # noqa: E501
66
66
  :rtype: str
@@ -71,7 +71,7 @@ class FileRevisionInfo(object):
71
71
  def file_path(self, file_path):
72
72
  """Sets the file_path of this FileRevisionInfo.
73
73
 
74
- The path to the file containing the revisions to import # noqa: E501
74
+ The path to the file containing the revisions to import The path must be described only by / or \\\\\\\\. # noqa: E501
75
75
 
76
76
  :param file_path: The file_path of this FileRevisionInfo. # noqa: E501
77
77
  :type: str
@@ -120,7 +120,7 @@ class ImportParametersArgs(object):
120
120
  def file_paths(self):
121
121
  """Gets the file_paths of this ImportParametersArgs. # noqa: E501
122
122
 
123
- The paths to the files to import # noqa: E501
123
+ The paths to the files to import The paths must be described only by / or \\\\\\\\. # noqa: E501
124
124
 
125
125
  :return: The file_paths of this ImportParametersArgs. # noqa: E501
126
126
  :rtype: list[str]
@@ -131,7 +131,7 @@ class ImportParametersArgs(object):
131
131
  def file_paths(self, file_paths):
132
132
  """Sets the file_paths of this ImportParametersArgs.
133
133
 
134
- The paths to the files to import # noqa: E501
134
+ The paths to the files to import The paths must be described only by / or \\\\\\\\. # noqa: E501
135
135
 
136
136
  :param file_paths: The file_paths of this ImportParametersArgs. # noqa: E501
137
137
  :type: list[str]
@@ -111,7 +111,7 @@ class LapReportOptions(object):
111
111
  def lap_report_file_path(self):
112
112
  """Gets the lap_report_file_path of this LapReportOptions. # noqa: E501
113
113
 
114
- The file path to the lap report. You have to provide the file extension and double the \\ characters, for example : C:\\\\\\\\path\\\\\\\\CMyFile.csv # noqa: E501
114
+ The file path to the lap report. You have to provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
115
115
 
116
116
  :return: The lap_report_file_path of this LapReportOptions. # noqa: E501
117
117
  :rtype: str
@@ -122,7 +122,7 @@ class LapReportOptions(object):
122
122
  def lap_report_file_path(self, lap_report_file_path):
123
123
  """Sets the lap_report_file_path of this LapReportOptions.
124
124
 
125
- The file path to the lap report. You have to provide the file extension and double the \\ characters, for example : C:\\\\\\\\path\\\\\\\\CMyFile.csv # noqa: E501
125
+ The file path to the lap report. You have to provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
126
126
 
127
127
  :param lap_report_file_path: The lap_report_file_path of this LapReportOptions. # noqa: E501
128
128
  :type: str
@@ -50,7 +50,7 @@ class ParameterCrossTable(object):
50
50
  def from_parameter_path(self):
51
51
  """Gets the from_parameter_path of this ParameterCrossTable. # noqa: E501
52
52
 
53
- The full parameter path which belongs to the From version # noqa: E501
53
+ The full parameter path which belongs to the From version The path must be described only by / or \\\\\\\\. # noqa: E501
54
54
 
55
55
  :return: The from_parameter_path of this ParameterCrossTable. # noqa: E501
56
56
  :rtype: str
@@ -61,7 +61,7 @@ class ParameterCrossTable(object):
61
61
  def from_parameter_path(self, from_parameter_path):
62
62
  """Sets the from_parameter_path of this ParameterCrossTable.
63
63
 
64
- The full parameter path which belongs to the From version # noqa: E501
64
+ The full parameter path which belongs to the From version The path must be described only by / or \\\\\\\\. # noqa: E501
65
65
 
66
66
  :param from_parameter_path: The from_parameter_path of this ParameterCrossTable. # noqa: E501
67
67
  :type: str
@@ -75,7 +75,7 @@ class ParameterCrossTable(object):
75
75
  def to_parameter_path(self):
76
76
  """Gets the to_parameter_path of this ParameterCrossTable. # noqa: E501
77
77
 
78
- The full parameter path which belongs to the To version # noqa: E501
78
+ The full parameter path which belongs to the To version The path must be described only by / or \\\\\\\\. # noqa: E501
79
79
 
80
80
  :return: The to_parameter_path of this ParameterCrossTable. # noqa: E501
81
81
  :rtype: str
@@ -86,7 +86,7 @@ class ParameterCrossTable(object):
86
86
  def to_parameter_path(self, to_parameter_path):
87
87
  """Sets the to_parameter_path of this ParameterCrossTable.
88
88
 
89
- The full parameter path which belongs to the To version # noqa: E501
89
+ The full parameter path which belongs to the To version The path must be described only by / or \\\\\\\\. # noqa: E501
90
90
 
91
91
  :param to_parameter_path: The to_parameter_path of this ParameterCrossTable. # noqa: E501
92
92
  :type: str
@@ -120,7 +120,7 @@ class Script(object):
120
120
  def path(self):
121
121
  """Gets the path of this Script. # noqa: E501
122
122
 
123
- The script file path. # noqa: E501
123
+ The script file path. The path must be described only by / or \\\\\\\\. # noqa: E501
124
124
 
125
125
  :return: The path of this Script. # noqa: E501
126
126
  :rtype: str
@@ -131,7 +131,7 @@ class Script(object):
131
131
  def path(self, path):
132
132
  """Sets the path of this Script.
133
133
 
134
- The script file path. # noqa: E501
134
+ The script file path. The path must be described only by / or \\\\\\\\. # noqa: E501
135
135
 
136
136
  :param path: The path of this Script. # noqa: E501
137
137
  :type: str
@@ -203,7 +203,7 @@ class Target(object):
203
203
  def auto_generate_assembly(self):
204
204
  """Gets the auto_generate_assembly of this Target. # noqa: E501
205
205
 
206
- True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled # noqa: E501
206
+ True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled Must be set to false when creating a new Target # noqa: E501
207
207
 
208
208
  :return: The auto_generate_assembly of this Target. # noqa: E501
209
209
  :rtype: bool
@@ -214,7 +214,7 @@ class Target(object):
214
214
  def auto_generate_assembly(self, auto_generate_assembly):
215
215
  """Sets the auto_generate_assembly of this Target.
216
216
 
217
- True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled # noqa: E501
217
+ True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled Must be set to false when creating a new Target # noqa: E501
218
218
 
219
219
  :param auto_generate_assembly: The auto_generate_assembly of this Target. # noqa: E501
220
220
  :type: bool
@@ -226,7 +226,7 @@ class Target(object):
226
226
  def auto_generate_assembly_version_id(self):
227
227
  """Gets the auto_generate_assembly_version_id of this Target. # noqa: E501
228
228
 
229
- The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. # noqa: E501
229
+ The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. Must be set to Guid.Empty (00000000-0000-0000-0000-000000000000) when creating a new Target. # noqa: E501
230
230
 
231
231
  :return: The auto_generate_assembly_version_id of this Target. # noqa: E501
232
232
  :rtype: str
@@ -237,7 +237,7 @@ class Target(object):
237
237
  def auto_generate_assembly_version_id(self, auto_generate_assembly_version_id):
238
238
  """Sets the auto_generate_assembly_version_id of this Target.
239
239
 
240
- The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. # noqa: E501
240
+ The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. Must be set to Guid.Empty (00000000-0000-0000-0000-000000000000) when creating a new Target. # noqa: E501
241
241
 
242
242
  :param auto_generate_assembly_version_id: The auto_generate_assembly_version_id of this Target. # noqa: E501
243
243
  :type: str
@@ -190,7 +190,7 @@ class Version(object):
190
190
  def reference_files(self):
191
191
  """Gets the reference_files of this Version. # noqa: E501
192
192
 
193
- The path to the file used to create the version. In json, you have to double the \\ in the path. For example : C:\\\\\\\\MyFolder\\\\\\\\MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
193
+ The path to the file used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
194
194
 
195
195
  :return: The reference_files of this Version. # noqa: E501
196
196
  :rtype: str
@@ -201,7 +201,7 @@ class Version(object):
201
201
  def reference_files(self, reference_files):
202
202
  """Sets the reference_files of this Version.
203
203
 
204
- The path to the file used to create the version. In json, you have to double the \\ in the path. For example : C:\\\\\\\\MyFolder\\\\\\\\MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
204
+ The path to the file used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
205
205
 
206
206
  :param reference_files: The reference_files of this Version. # noqa: E501
207
207
  :type: str
@@ -338,7 +338,7 @@ class Version(object):
338
338
  def a2l_files(self):
339
339
  """Gets the a2l_files of this Version. # noqa: E501
340
340
 
341
- The path to the A2L files used to create the version. In json, you have to double the \\ in the path. For example : C:\\\\\\\\MyFolder\\\\\\\\MyFile.a2l To specify multiple files, separate each path with: \\r\\n # noqa: E501
341
+ The path to the A2L files used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
342
342
 
343
343
  :return: The a2l_files of this Version. # noqa: E501
344
344
  :rtype: str
@@ -349,7 +349,7 @@ class Version(object):
349
349
  def a2l_files(self, a2l_files):
350
350
  """Sets the a2l_files of this Version.
351
351
 
352
- The path to the A2L files used to create the version. In json, you have to double the \\ in the path. For example : C:\\\\\\\\MyFolder\\\\\\\\MyFile.a2l To specify multiple files, separate each path with: \\r\\n # noqa: E501
352
+ The path to the A2L files used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
353
353
 
354
354
  :param a2l_files: The a2l_files of this Version. # noqa: E501
355
355
  :type: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: teamdbapi
3
- Version: 3.2.0
3
+ Version: 3.3.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.2.0
22
+ - Package version: 3.3.0
23
23
  - TeamDB Web API version: 2.0
24
24
 
25
25
  ## Requirements.
26
26
 
27
27
  - Python 3.4+
28
- - TeamDB 3.2.0
28
+ - TeamDB 3.3.0
29
29
 
30
30
  ## Installation and usage
31
31
  ### pip install
@@ -3,26 +3,26 @@ 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
5
  teamdbapi/api/__init__.py,sha256=xlWsNqlAXVbODefivYQX1nYMzPuWDrTHRUsZT-m7b5w,1877
6
- teamdbapi/api/assembly_api.py,sha256=6lzIYiqiaiwcKqbmsRPI1tjGRoxGZAvFdw7G6UmTXBk,89075
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
8
  teamdbapi/api/component_api.py,sha256=Sg8V4DZednX82VXnKNZOTO5cTh9saFajs_ZHFGj95Fc,49916
9
9
  teamdbapi/api/config_api.py,sha256=31XfHLKMy7-iaQe1tbElw0CWzl9XjLJ5lpCGf8rpxVw,3841
10
10
  teamdbapi/api/criteria_api.py,sha256=A0lFQk3qF10kMk8etnByWVwNkGVhB_PbI7_XwX6VGEQ,4471
11
- teamdbapi/api/edit_api.py,sha256=ApKUxhGhWG3Rox_dUFj5wGGAVuZaTHo59HeoWpnPtLg,17971
11
+ teamdbapi/api/edit_api.py,sha256=bvnIwV-55IPfFuWBqiNjsfwNDkl8E22lnxqTALNZ2ds,21793
12
12
  teamdbapi/api/event_api.py,sha256=dqR61zBREzTaufMVZqiGGwVJypGQCjWjKU98ATq8h2Y,33882
13
13
  teamdbapi/api/fixed_field_api.py,sha256=l9-5Hq2GlyGyXNbqXUmcPVlPMCLq1G1B_N0Or3Tql6I,12976
14
14
  teamdbapi/api/group_api.py,sha256=5pbECIOv7KOVF11MrRLrz2xLGrCmkFFcxPYqavpxEG0,23593
15
- teamdbapi/api/import_export_api.py,sha256=oea1TThZwPEBeD-z1Sj78Dx6t6Dtq4AzmFm3OYWlFLM,40981
15
+ teamdbapi/api/import_export_api.py,sha256=baJOU3jHRs-y-Xm8aRSIaRDN4zieBtmqqiwFn7nVp0s,40957
16
16
  teamdbapi/api/issue_api.py,sha256=uDwsCcQbs-fvmudBsUtw69ojqw32jzF3ezTtnJNIPZA,60980
17
17
  teamdbapi/api/lap_api.py,sha256=U44YcnvQwqX4iX7h1eZn6U0exXFa1jUepBafOGxphVk,27360
18
- teamdbapi/api/lap_report_api.py,sha256=t8T3_nnydQzDydWaViROirIbVjjePT-hs63F-WW-Adg,18844
18
+ teamdbapi/api/lap_report_api.py,sha256=K6vGcpidwUXsgBbzoxJLkzMVSm9W7IdkZKokyKyq-Kw,18902
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
22
  teamdbapi/api/parameter_api.py,sha256=xoDU8ck8n8Rzgq-R2wvtT08tigWuR5sY8v2qxLoC-uU,53260
23
23
  teamdbapi/api/part_api.py,sha256=ElrOiI_Ni1NSQS9o9D3S2zWFCz_qzfyrNzgb2SHUm64,31345
24
- teamdbapi/api/report_api.py,sha256=qYr8lcLseer7ZsoGB08pYrGA9xw4e-VrPxoru_Hkk2Q,5818
25
- teamdbapi/api/revision_api.py,sha256=xiYB745-ZN9odf1efK6RXDYmhvmSS_u6jcF7Vi4DqW4,72288
24
+ teamdbapi/api/report_api.py,sha256=0b9v8VWvMxdX-AGxr-FG1iPPDSMWx-PUxnT6qeQLpzQ,5816
25
+ teamdbapi/api/revision_api.py,sha256=aC39-6TlKB50_8cxHWLm98lkTcg-LVNT_nJtd01AoXo,72304
26
26
  teamdbapi/api/revision_editor_selector_api.py,sha256=87FuzhhXwByfzsHpj2Zxlk0d1h_4Pf3a_kvy6y4IPcI,47839
27
27
  teamdbapi/api/run_api.py,sha256=MUrJLoOW3rT9dBNyAf8-RXIDrg_HyW2jyjNKTirvBjU,23653
28
28
  teamdbapi/api/script_api.py,sha256=qHIcYsICTK5moTgSNdSI9aRKK1tIp1UTCzIbc9aF7ys,18418
@@ -36,7 +36,7 @@ teamdbapi/api/track_api.py,sha256=iOtSH-KssiWpKg-P60DDW_N2UbhkEuL3Jxt3x9PTXuM,18
36
36
  teamdbapi/api/track_layout_api.py,sha256=B3kwP8eo1tV7Av76EJb1AYGUk7HbOhZlSJiAedWnVO8,20515
37
37
  teamdbapi/api/update_request_api.py,sha256=JtGr6tz9oRwEHrE3qRcDJ8wdV3BwDPWwbr63xCNaxY4,9754
38
38
  teamdbapi/api/user_api.py,sha256=UujgPEo_opOTx43vzMzTkf5braW3XC1z1g4bTSEbIbk,17146
39
- teamdbapi/api/value_field_api.py,sha256=fSdfGVZSi5zeml_D6sRfqktb1enksPylWY4K9FhLkxw,25695
39
+ teamdbapi/api/value_field_api.py,sha256=kdl4i8J-b6Q-O027JFsHJjYLtzMKEcK5nGH1Ki6Fgtw,25577
40
40
  teamdbapi/api/version_api.py,sha256=obqmDP5Tl8_Iy0IYqPYJ3tdMNZ3xGdMEzLewPfxBYWM,19187
41
41
  teamdbapi/models/__init__.py,sha256=ljO2lrmJUThBeLtlY0x3i1dldZ3yP7MU4NyMJ2yMBhY,3862
42
42
  teamdbapi/models/add_part_car_parameter_arg.py,sha256=qTz6Sf23qVT2TsXLYpyP1ShFYJ2gFIzxW3gPvQBdYb4,14421
@@ -44,8 +44,8 @@ teamdbapi/models/assembly.py,sha256=JwYxeGEkyOFsTae3nGpxjUJqifVBD_glkEBuVx8jsf0,
44
44
  teamdbapi/models/bleed_adjustment.py,sha256=l4xXWVLo0uXI_ALBxG2YQ94EdGu9252UNRqzlpZeBPs,4351
45
45
  teamdbapi/models/calibration.py,sha256=g9B5n0sCRTWFry4djld15IRtfm4Zr15XDxz3AJ0KvXY,22345
46
46
  teamdbapi/models/car.py,sha256=Pt_nqPfDIHeJ-NL5i7ccZ990SEzFs_ry0YupBlBLQBw,12621
47
- teamdbapi/models/car_parameters_context.py,sha256=dqILwW-e3Y_d9_QNdra1Ti2z_RQSfoO9adf3M56Nygk,4887
48
- teamdbapi/models/compare_options.py,sha256=KNM7jsPSPT1dZAMHRRewnNjk85XMQ5tSB8XcfRk5XZU,7006
47
+ teamdbapi/models/car_parameters_context.py,sha256=pJLifIcbJLNm925maS0XsIPk4Mwegi3AjMELJppPYGE,5672
48
+ teamdbapi/models/compare_options.py,sha256=UpxfagyeCJtDlxEGODOIvY3MOQoOVcfis5-dRPGzA8Q,7112
49
49
  teamdbapi/models/compare_result.py,sha256=oFedEGB-3XxJHhi7oqtOig2tgffvJJ3mFRHAqOGA7AY,7081
50
50
  teamdbapi/models/compare_result_detail.py,sha256=vX9BN-2lgF80s2lVoeD_MNI1GcPRHj26YyOmi2Jv7VY,6256
51
51
  teamdbapi/models/component.py,sha256=xsFJ7oaSDY8LdF--zKEwrR-iHK7r6rJGsMHGTyXdT0s,43001
@@ -54,10 +54,10 @@ teamdbapi/models/couple_guid_text.py,sha256=KoRMib3O9fR662gWNiXHVukCrl9tDgoNppzX
54
54
  teamdbapi/models/criteria.py,sha256=0QAjE070I-66jPNM5bgan9Joc86cUoc_K4KTC5vcmis,13378
55
55
  teamdbapi/models/criteria_value.py,sha256=Km1ZDrxI5E9CKc_Okjcx3t5wo-Y9VelVwuTqDbY4wIE,5729
56
56
  teamdbapi/models/event.py,sha256=TY951vb1UtiJZdGU_ae8xnILLgnCbqIOFIPaQfRqTY8,13073
57
- teamdbapi/models/file_revision_info.py,sha256=1Y0oZXL257m1RaEu3DKRB8fcrBnsuSMFWoOdPmQGrq4,6475
57
+ teamdbapi/models/file_revision_info.py,sha256=QoFVEP33K6iiASRL4GdGqix9elhIJnTuKpnGaq47pX8,6577
58
58
  teamdbapi/models/fixed_field.py,sha256=kv2sDc26ZMRPMzQgRSGycZKUcLGMa5rp3jy-YvVzuFM,11166
59
59
  teamdbapi/models/group.py,sha256=JJl4KM5eJFiHwbpCgOAALc9LidJfb7hapqiZny0qKZs,8473
60
- teamdbapi/models/import_parameters_args.py,sha256=GrfTWsA8q-iGv9toCEv_L5j7QT1MsehpMvpuHeVu_Eg,17515
60
+ teamdbapi/models/import_parameters_args.py,sha256=I3bFCPap5WgykoYOU3PVlyivShy1Cib_4cucvz6siso,17619
61
61
  teamdbapi/models/import_parameters_results.py,sha256=AWqZ-lrOwkqLpH9izRsj1SxfeJoewdnOrxDVHZhT-qI,5496
62
62
  teamdbapi/models/import_revisions_args.py,sha256=MzYxg9ea08lOUnvP1_w9DeE0sGQ8JLPjXegI_hY-ujU,6176
63
63
  teamdbapi/models/import_revisions_info.py,sha256=bTrrqAU6dlLzlUxLi-0jtx559e3O6lXx8rwcHH9_nlA,6113
@@ -73,14 +73,14 @@ teamdbapi/models/issue_workflow.py,sha256=JgYEmJqTttwpEM4Tay-wyKLKRVgBYQpvMlaZWm
73
73
  teamdbapi/models/item_value.py,sha256=8pRNudP9djjiYUq0snWP0_fcNpaHf9QxuMvECY_GDgo,5153
74
74
  teamdbapi/models/item_value_key.py,sha256=AvcOhW9ta34oh7wvUYIjikfRYXW8_r668ls9cgirbe4,4515
75
75
  teamdbapi/models/lap.py,sha256=Tj-8BufCIKsDAER7LDER9k9DqQCq7hyyt3DCde_jqTo,21717
76
- teamdbapi/models/lap_report_options.py,sha256=VkeDKeU01yyJgI-z6v_oSmyhFC0T4xTenyTmBSnlK3Y,6532
76
+ teamdbapi/models/lap_report_options.py,sha256=ObVOVOdsi9BgAblC58F5RSzHYQLDl3eirvJviATxqoY,6550
77
77
  teamdbapi/models/model_field.py,sha256=MEmLjaKWj9J8bMmgM_gjNFX-wWukxKGOTvANGlCvQa8,27754
78
78
  teamdbapi/models/model_field_authorization.py,sha256=QAOqqx-ONbEyPxFOXjETj11Ej7QGQyP2G7B27L__bXc,8477
79
79
  teamdbapi/models/mounting.py,sha256=wcIfr5KnVni_1KFa0IS5bv9k5OjDRcPrajKh5kIhtjY,16139
80
80
  teamdbapi/models/notes_authorization.py,sha256=EMIvSc0y2BUanLUGFZzD_s48FfqJNDjdPow3wkfNFCs,7514
81
81
  teamdbapi/models/notes_context.py,sha256=RXmOU1Xsf4rDeNDDNfcFtXDHnWKzDqem_sNoEHDEtpg,6003
82
82
  teamdbapi/models/parameter.py,sha256=C3L2_MPCZyTuBsbHhTx80fWG9w1w_8ryQSyQ4B7juKM,13632
83
- teamdbapi/models/parameter_cross_table.py,sha256=uhjfmqbxcaVMV-SZnK31rklt6F-qX1OS-mR1e67UJn4,4735
83
+ teamdbapi/models/parameter_cross_table.py,sha256=Z__-cmZzN8x005Dlsmh0fJkQp0DKJ8gWD3eB2TZlXtw,4939
84
84
  teamdbapi/models/part.py,sha256=rMZQt_1mwrtm-2spPlnHDjFLCPOMq1kuKyRi8LXAZSI,29998
85
85
  teamdbapi/models/part_car_parameters.py,sha256=phmdQ3riH83_3GDoqx99BIshFivZyVwV2C0IJFCxKLA,20009
86
86
  teamdbapi/models/part_count.py,sha256=yNbtdZPRFPy_-Ouvoiwdf-3l7Wj6Tmags_uoRpLNXzE,7293
@@ -88,10 +88,10 @@ teamdbapi/models/problem_details.py,sha256=ytDvHCX3MDccVdCOEyqSHa_XjYcmuDTLL7L6u
88
88
  teamdbapi/models/revision.py,sha256=S1uLkcJMBlcUklhpawqHUtAWrLFC_GSSLWXUUnlhw1U,24065
89
89
  teamdbapi/models/revision_value.py,sha256=9A6yJVPG5GevUyq-NcA4VNF2fp2f8pI9xS9Y61H4VYg,8400
90
90
  teamdbapi/models/run.py,sha256=ipY4TsknX1nwMSs0yXMuZVBwpA63UsLYKl311ghU-ZQ,16778
91
- teamdbapi/models/script.py,sha256=bqxzglaEcLYQKPgz1KlKA5BpIc_VDiHNyWqdrxI5WlI,7242
91
+ teamdbapi/models/script.py,sha256=1wiGWWKsBfiVRRCLtJ8929urMmOE-BQhzYuvgQLBF7s,7344
92
92
  teamdbapi/models/session.py,sha256=07sjC7bjfAO-XF3glFl9ulr0dZDFr4AWfWO8Mb5aYh0,16999
93
93
  teamdbapi/models/string_with_font_style.py,sha256=RNETcCUe1ElC5Qh1ownZO3ofJxNyB1pIEx-Nng25z4o,8191
94
- teamdbapi/models/target.py,sha256=FPZl0Ok2pH8NM0hvSdCZvSlX349N0lLIg43aZ3Wi-Xo,16130
94
+ teamdbapi/models/target.py,sha256=T5xNsyGHk0yOVsF1FN29Y1x5tvORhn6fFfzLrJeltdo,16416
95
95
  teamdbapi/models/team_db_list.py,sha256=Lx2aqqOXe1LUh9XLILf-3GuGP0bGpek5jrPdftox9jw,4055
96
96
  teamdbapi/models/team_db_list_item.py,sha256=NS0sNgLtuhemUvNeYXrX6EHtRnyGjZACqQyRka3oOwQ,5795
97
97
  teamdbapi/models/tire.py,sha256=QaEWnRGuzXZiSaoBGOrcsCSoNhh0UfWCbfSWS5iFaHo,26570
@@ -101,8 +101,8 @@ teamdbapi/models/track_layout.py,sha256=81OiUghi8BZiQcd_SNmp2whWD_JhF8j8xgy80CGu
101
101
  teamdbapi/models/user.py,sha256=1VSU2NzosU-uybP6-aEzOP_UIURZcFIZ9gJ0gpdyow4,3771
102
102
  teamdbapi/models/user_group.py,sha256=07-kop2hu_K1i3TI7AMiDxZm8eFJ_ujdqR-L-7E9J4o,3855
103
103
  teamdbapi/models/value_field.py,sha256=mJNrh3oxamsKGeF0j8HDF_RL7mURCIFzNl8ne9z4r00,9300
104
- teamdbapi/models/version.py,sha256=_HFy5etDogWZV8pjMFftal7RYMyLu1EBX7WdtTCIVSs,14363
105
- teamdbapi-3.2.0.dist-info/LICENSE,sha256=vwnGuuzuV_Xwrmy2iggjNV3RVLrhWdIM4VXT68N4CxE,1074
106
- teamdbapi-3.2.0.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81
107
- teamdbapi-3.2.0.dist-info/METADATA,sha256=OWRKuT1wijY1YRCM_W_BnzMkWg_0kpl5uoHGjdpVWTU,2367
108
- teamdbapi-3.2.0.dist-info/RECORD,,
104
+ 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,,