teamdbapi 3.11.0__py3-none-any.whl → 3.12.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.
- teamdbapi/api/assembly_api.py +6 -6
- teamdbapi/api/event_api.py +2 -2
- teamdbapi/api/import_export_api.py +4 -4
- teamdbapi/api/issue_api.py +85 -0
- teamdbapi/api/model_field_api.py +4 -4
- teamdbapi/api/notes_authorization_api.py +2 -2
- teamdbapi/api/parameter_api.py +4 -4
- teamdbapi/api/report_api.py +2 -2
- teamdbapi/api/revision_api.py +6 -6
- teamdbapi/models/calibration.py +4 -4
- teamdbapi/models/group.py +2 -2
- teamdbapi/models/lap.py +2 -2
- teamdbapi/models/lap_report_options.py +2 -2
- teamdbapi/models/parameter.py +2 -2
- teamdbapi/models/part.py +35 -7
- teamdbapi/models/part_count.py +31 -3
- teamdbapi/models/session.py +2 -2
- teamdbapi/models/target.py +2 -2
- {teamdbapi-3.11.0.dist-info → teamdbapi-3.12.0.dist-info}/METADATA +3 -3
- {teamdbapi-3.11.0.dist-info → teamdbapi-3.12.0.dist-info}/RECORD +22 -22
- {teamdbapi-3.11.0.dist-info → teamdbapi-3.12.0.dist-info}/WHEEL +0 -0
- {teamdbapi-3.11.0.dist-info → teamdbapi-3.12.0.dist-info}/licenses/LICENSE +0 -0
teamdbapi/api/assembly_api.py
CHANGED
|
@@ -446,7 +446,7 @@ class AssemblyApi(object):
|
|
|
446
446
|
collection_formats=collection_formats)
|
|
447
447
|
|
|
448
448
|
def create_assembly(self, assembly, **kwargs): # noqa: E501
|
|
449
|
-
"""Create an assembly. The revisions list content will be ignored. You
|
|
449
|
+
"""Create an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
|
|
450
450
|
|
|
451
451
|
Set Assembly.Id empty (00000000-0000-0000-0000-000000000000) in order to create a new assembly. # noqa: E501
|
|
452
452
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -468,7 +468,7 @@ class AssemblyApi(object):
|
|
|
468
468
|
return data
|
|
469
469
|
|
|
470
470
|
def create_assembly_with_http_info(self, assembly, **kwargs): # noqa: E501
|
|
471
|
-
"""Create an assembly. The revisions list content will be ignored. You
|
|
471
|
+
"""Create an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
|
|
472
472
|
|
|
473
473
|
Set Assembly.Id empty (00000000-0000-0000-0000-000000000000) in order to create a new assembly. # noqa: E501
|
|
474
474
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -744,7 +744,7 @@ class AssemblyApi(object):
|
|
|
744
744
|
|
|
745
745
|
:param async_req bool
|
|
746
746
|
:param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
|
|
747
|
-
:param str output_file_path: The path to the file to create. You
|
|
747
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
|
|
748
748
|
:return: bool
|
|
749
749
|
If the method is called asynchronously,
|
|
750
750
|
returns the request thread.
|
|
@@ -766,7 +766,7 @@ class AssemblyApi(object):
|
|
|
766
766
|
|
|
767
767
|
:param async_req bool
|
|
768
768
|
:param str assembly_id: The unique assembly id corresponding to the assembly to export. (required)
|
|
769
|
-
:param str output_file_path: The path to the file to create. You
|
|
769
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
|
|
770
770
|
:return: bool
|
|
771
771
|
If the method is called asynchronously,
|
|
772
772
|
returns the request thread.
|
|
@@ -2004,7 +2004,7 @@ class AssemblyApi(object):
|
|
|
2004
2004
|
collection_formats=collection_formats)
|
|
2005
2005
|
|
|
2006
2006
|
def update_assembly(self, assembly_id, assembly, **kwargs): # noqa: E501
|
|
2007
|
-
"""Update an assembly. The revisions list content will be ignored. You
|
|
2007
|
+
"""Update an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
|
|
2008
2008
|
|
|
2009
2009
|
This method makes a synchronous HTTP request by default. To make an
|
|
2010
2010
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -2026,7 +2026,7 @@ class AssemblyApi(object):
|
|
|
2026
2026
|
return data
|
|
2027
2027
|
|
|
2028
2028
|
def update_assembly_with_http_info(self, assembly_id, assembly, **kwargs): # noqa: E501
|
|
2029
|
-
"""Update an assembly. The revisions list content will be ignored. You
|
|
2029
|
+
"""Update an assembly. The revisions list content will be ignored. You must call AddRevisionsToAssembly to add revisions to an assembly. # noqa: E501
|
|
2030
2030
|
|
|
2031
2031
|
This method makes a synchronous HTTP request by default. To make an
|
|
2032
2032
|
asynchronous HTTP request, please pass async_req=True
|
teamdbapi/api/event_api.py
CHANGED
|
@@ -593,7 +593,7 @@ class EventApi(object):
|
|
|
593
593
|
|
|
594
594
|
:param async_req bool
|
|
595
595
|
:param str event_id: The unique event id for which you want to lock the event (required)
|
|
596
|
-
:param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts
|
|
596
|
+
:param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts during the next replication of the databases and corrupt them.
|
|
597
597
|
:return: Event
|
|
598
598
|
If the method is called asynchronously,
|
|
599
599
|
returns the request thread.
|
|
@@ -615,7 +615,7 @@ class EventApi(object):
|
|
|
615
615
|
|
|
616
616
|
:param async_req bool
|
|
617
617
|
:param str event_id: The unique event id for which you want to lock the event (required)
|
|
618
|
-
:param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts
|
|
618
|
+
:param bool force_on_my_server: If true force the lock on your server even if it exists a lock on another server. If you force the lock on this server, this may cause conflicts during the next replication of the databases and corrupt them.
|
|
619
619
|
:return: Event
|
|
620
620
|
If the method is called asynchronously,
|
|
621
621
|
returns the request thread.
|
|
@@ -44,7 +44,7 @@ class ImportExportApi(object):
|
|
|
44
44
|
:param async_req bool
|
|
45
45
|
:param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
|
|
46
46
|
:param str source_id: The Source ID string for which you want to export the data (required)
|
|
47
|
-
:param str output_file_path: The path to the file to create. You
|
|
47
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
|
|
48
48
|
:return: None
|
|
49
49
|
If the method is called asynchronously,
|
|
50
50
|
returns the request thread.
|
|
@@ -67,7 +67,7 @@ class ImportExportApi(object):
|
|
|
67
67
|
:param async_req bool
|
|
68
68
|
:param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
|
|
69
69
|
:param str source_id: The Source ID string for which you want to export the data (required)
|
|
70
|
-
:param str output_file_path: The path to the file to create. You
|
|
70
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
|
|
71
71
|
:return: None
|
|
72
72
|
If the method is called asynchronously,
|
|
73
73
|
returns the request thread.
|
|
@@ -158,7 +158,7 @@ class ImportExportApi(object):
|
|
|
158
158
|
:param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
|
|
159
159
|
:param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
|
|
160
160
|
:param str source_id: The Source ID string for which you want to export the data (required)
|
|
161
|
-
:param str output_file_path: The path to the file to create. You
|
|
161
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
|
|
162
162
|
:return: None
|
|
163
163
|
If the method is called asynchronously,
|
|
164
164
|
returns the request thread.
|
|
@@ -186,7 +186,7 @@ class ImportExportApi(object):
|
|
|
186
186
|
:param str lap_id: The lap ID from which perform the export or the empty id 00000000-0000-0000-0000-000000000000 (required)
|
|
187
187
|
:param str xml_data_format: The XML file format (Wintax or TeamDB) (required)
|
|
188
188
|
:param str source_id: The Source ID string for which you want to export the data (required)
|
|
189
|
-
:param str output_file_path: The path to the file to create. You
|
|
189
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.xml (required)
|
|
190
190
|
:return: None
|
|
191
191
|
If the method is called asynchronously,
|
|
192
192
|
returns the request thread.
|
teamdbapi/api/issue_api.py
CHANGED
|
@@ -850,6 +850,91 @@ class IssueApi(object):
|
|
|
850
850
|
_request_timeout=params.get('_request_timeout'),
|
|
851
851
|
collection_formats=collection_formats)
|
|
852
852
|
|
|
853
|
+
def get_all_issues_selected(self, **kwargs): # noqa: E501
|
|
854
|
+
"""Get the list of all Issues currently selected in the Issues list view opened on the client. # noqa: E501
|
|
855
|
+
|
|
856
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
857
|
+
asynchronous HTTP request, please pass async_req=True
|
|
858
|
+
>>> thread = api.get_all_issues_selected(async_req=True)
|
|
859
|
+
>>> result = thread.get()
|
|
860
|
+
|
|
861
|
+
:param async_req bool
|
|
862
|
+
:return: list[Issue]
|
|
863
|
+
If the method is called asynchronously,
|
|
864
|
+
returns the request thread.
|
|
865
|
+
"""
|
|
866
|
+
kwargs['_return_http_data_only'] = True
|
|
867
|
+
if kwargs.get('async_req'):
|
|
868
|
+
return self.get_all_issues_selected_with_http_info(**kwargs) # noqa: E501
|
|
869
|
+
else:
|
|
870
|
+
(data) = self.get_all_issues_selected_with_http_info(**kwargs) # noqa: E501
|
|
871
|
+
return data
|
|
872
|
+
|
|
873
|
+
def get_all_issues_selected_with_http_info(self, **kwargs): # noqa: E501
|
|
874
|
+
"""Get the list of all Issues currently selected in the Issues list view opened on the client. # noqa: E501
|
|
875
|
+
|
|
876
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
877
|
+
asynchronous HTTP request, please pass async_req=True
|
|
878
|
+
>>> thread = api.get_all_issues_selected_with_http_info(async_req=True)
|
|
879
|
+
>>> result = thread.get()
|
|
880
|
+
|
|
881
|
+
:param async_req bool
|
|
882
|
+
:return: list[Issue]
|
|
883
|
+
If the method is called asynchronously,
|
|
884
|
+
returns the request thread.
|
|
885
|
+
"""
|
|
886
|
+
|
|
887
|
+
all_params = [] # noqa: E501
|
|
888
|
+
all_params.append('async_req')
|
|
889
|
+
all_params.append('_return_http_data_only')
|
|
890
|
+
all_params.append('_preload_content')
|
|
891
|
+
all_params.append('_request_timeout')
|
|
892
|
+
|
|
893
|
+
params = locals()
|
|
894
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
895
|
+
if key not in all_params:
|
|
896
|
+
raise TypeError(
|
|
897
|
+
"Got an unexpected keyword argument '%s'"
|
|
898
|
+
" to method get_all_issues_selected" % key
|
|
899
|
+
)
|
|
900
|
+
params[key] = val
|
|
901
|
+
del params['kwargs']
|
|
902
|
+
|
|
903
|
+
collection_formats = {}
|
|
904
|
+
|
|
905
|
+
path_params = {}
|
|
906
|
+
|
|
907
|
+
query_params = []
|
|
908
|
+
|
|
909
|
+
header_params = {}
|
|
910
|
+
|
|
911
|
+
form_params = []
|
|
912
|
+
local_var_files = {}
|
|
913
|
+
|
|
914
|
+
body_params = None
|
|
915
|
+
# HTTP header `Accept`
|
|
916
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
917
|
+
['application/json', 'text/json']) # noqa: E501
|
|
918
|
+
|
|
919
|
+
# Authentication setting
|
|
920
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
921
|
+
|
|
922
|
+
return self.api_client.call_api(
|
|
923
|
+
'/teamdbapi/v2.0/issues/selected', 'GET',
|
|
924
|
+
path_params,
|
|
925
|
+
query_params,
|
|
926
|
+
header_params,
|
|
927
|
+
body=body_params,
|
|
928
|
+
post_params=form_params,
|
|
929
|
+
files=local_var_files,
|
|
930
|
+
response_type='list[Issue]', # noqa: E501
|
|
931
|
+
auth_settings=auth_settings,
|
|
932
|
+
async_req=params.get('async_req'),
|
|
933
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
934
|
+
_preload_content=params.get('_preload_content', True),
|
|
935
|
+
_request_timeout=params.get('_request_timeout'),
|
|
936
|
+
collection_formats=collection_formats)
|
|
937
|
+
|
|
853
938
|
def get_current_issue(self, **kwargs): # noqa: E501
|
|
854
939
|
"""Get the current Issue. # noqa: E501
|
|
855
940
|
|
teamdbapi/api/model_field_api.py
CHANGED
|
@@ -317,7 +317,7 @@ class ModelFieldApi(object):
|
|
|
317
317
|
collection_formats=collection_formats)
|
|
318
318
|
|
|
319
319
|
def get_model_field_authorizations(self, model_field_id, **kwargs): # noqa: E501
|
|
320
|
-
"""Get
|
|
320
|
+
"""Get authorisations for a model field via its unique id. # noqa: E501
|
|
321
321
|
|
|
322
322
|
This method makes a synchronous HTTP request by default. To make an
|
|
323
323
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -338,7 +338,7 @@ class ModelFieldApi(object):
|
|
|
338
338
|
return data
|
|
339
339
|
|
|
340
340
|
def get_model_field_authorizations_with_http_info(self, model_field_id, **kwargs): # noqa: E501
|
|
341
|
-
"""Get
|
|
341
|
+
"""Get authorisations for a model field via its unique id. # noqa: E501
|
|
342
342
|
|
|
343
343
|
This method makes a synchronous HTTP request by default. To make an
|
|
344
344
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -616,7 +616,7 @@ class ModelFieldApi(object):
|
|
|
616
616
|
>>> result = thread.get()
|
|
617
617
|
|
|
618
618
|
:param async_req bool
|
|
619
|
-
:param str model_field_id: The unique model field id for which you want to set/update the
|
|
619
|
+
:param str model_field_id: The unique model field id for which you want to set/update the authorisations (required)
|
|
620
620
|
:param ModelFieldAuthorization authorization: The authorization for the model field.
|
|
621
621
|
:return: ModelFieldAuthorization
|
|
622
622
|
If the method is called asynchronously,
|
|
@@ -638,7 +638,7 @@ class ModelFieldApi(object):
|
|
|
638
638
|
>>> result = thread.get()
|
|
639
639
|
|
|
640
640
|
:param async_req bool
|
|
641
|
-
:param str model_field_id: The unique model field id for which you want to set/update the
|
|
641
|
+
:param str model_field_id: The unique model field id for which you want to set/update the authorisations (required)
|
|
642
642
|
:param ModelFieldAuthorization authorization: The authorization for the model field.
|
|
643
643
|
:return: ModelFieldAuthorization
|
|
644
644
|
If the method is called asynchronously,
|
|
@@ -34,7 +34,7 @@ class NotesAuthorizationApi(object):
|
|
|
34
34
|
self.api_client = api_client
|
|
35
35
|
|
|
36
36
|
def get_notes_authorizations(self, itembase_id, **kwargs): # noqa: E501
|
|
37
|
-
"""Get the list of
|
|
37
|
+
"""Get the list of authorisations for a given Id corresponding to an Event or a Car # noqa: E501
|
|
38
38
|
|
|
39
39
|
This method makes a synchronous HTTP request by default. To make an
|
|
40
40
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -55,7 +55,7 @@ class NotesAuthorizationApi(object):
|
|
|
55
55
|
return data
|
|
56
56
|
|
|
57
57
|
def get_notes_authorizations_with_http_info(self, itembase_id, **kwargs): # noqa: E501
|
|
58
|
-
"""Get the list of
|
|
58
|
+
"""Get the list of authorisations for a given Id corresponding to an Event or a Car # noqa: E501
|
|
59
59
|
|
|
60
60
|
This method makes a synchronous HTTP request by default. To make an
|
|
61
61
|
asynchronous HTTP request, please pass async_req=True
|
teamdbapi/api/parameter_api.py
CHANGED
|
@@ -874,8 +874,8 @@ class ParameterApi(object):
|
|
|
874
874
|
>>> result = thread.get()
|
|
875
875
|
|
|
876
876
|
:param async_req bool
|
|
877
|
-
:param str version_id: The version unique id to which the responsibles will be
|
|
878
|
-
:param list[str] param_ids: The parameters list to which the responsibles will be
|
|
877
|
+
:param str version_id: The version unique id to which the responsibles will be reset (required)
|
|
878
|
+
:param list[str] param_ids: The parameters list to which the responsibles will be reset (required)
|
|
879
879
|
:return: None
|
|
880
880
|
If the method is called asynchronously,
|
|
881
881
|
returns the request thread.
|
|
@@ -896,8 +896,8 @@ class ParameterApi(object):
|
|
|
896
896
|
>>> result = thread.get()
|
|
897
897
|
|
|
898
898
|
:param async_req bool
|
|
899
|
-
:param str version_id: The version unique id to which the responsibles will be
|
|
900
|
-
:param list[str] param_ids: The parameters list to which the responsibles will be
|
|
899
|
+
:param str version_id: The version unique id to which the responsibles will be reset (required)
|
|
900
|
+
:param list[str] param_ids: The parameters list to which the responsibles will be reset (required)
|
|
901
901
|
:return: None
|
|
902
902
|
If the method is called asynchronously,
|
|
903
903
|
returns the request thread.
|
teamdbapi/api/report_api.py
CHANGED
|
@@ -44,7 +44,7 @@ class ReportApi(object):
|
|
|
44
44
|
:param async_req bool
|
|
45
45
|
:param str report_name: The report name (required)
|
|
46
46
|
:param str format: The output file format (required)
|
|
47
|
-
:param str output_file_path: The path to the file to create. You
|
|
47
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.pdf (required)
|
|
48
48
|
:return: None
|
|
49
49
|
If the method is called asynchronously,
|
|
50
50
|
returns the request thread.
|
|
@@ -67,7 +67,7 @@ class ReportApi(object):
|
|
|
67
67
|
:param async_req bool
|
|
68
68
|
:param str report_name: The report name (required)
|
|
69
69
|
:param str format: The output file format (required)
|
|
70
|
-
:param str output_file_path: The path to the file to create. You
|
|
70
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.pdf (required)
|
|
71
71
|
:return: None
|
|
72
72
|
If the method is called asynchronously,
|
|
73
73
|
returns the request thread.
|
teamdbapi/api/revision_api.py
CHANGED
|
@@ -34,7 +34,7 @@ class RevisionApi(object):
|
|
|
34
34
|
self.api_client = api_client
|
|
35
35
|
|
|
36
36
|
def create_revision(self, version_id, revision, **kwargs): # noqa: E501
|
|
37
|
-
"""Create a revision. You
|
|
37
|
+
"""Create a revision. You must specify a version id to which the revision is created. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
|
|
38
38
|
|
|
39
39
|
Set the Revision.Id to empty (00000000-0000-0000-0000-000000000000), it will be generated by the server. # noqa: E501
|
|
40
40
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -57,7 +57,7 @@ class RevisionApi(object):
|
|
|
57
57
|
return data
|
|
58
58
|
|
|
59
59
|
def create_revision_with_http_info(self, version_id, revision, **kwargs): # noqa: E501
|
|
60
|
-
"""Create a revision. You
|
|
60
|
+
"""Create a revision. You must specify a version id to which the revision is created. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
|
|
61
61
|
|
|
62
62
|
Set the Revision.Id to empty (00000000-0000-0000-0000-000000000000), it will be generated by the server. # noqa: E501
|
|
63
63
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -373,7 +373,7 @@ class RevisionApi(object):
|
|
|
373
373
|
:param async_req bool
|
|
374
374
|
:param str revision_id: The revision id to export. (required)
|
|
375
375
|
:param str version_id: The version id to which you want to export the revision value. (required)
|
|
376
|
-
:param str output_file_path: The path to the file to create. You
|
|
376
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
|
|
377
377
|
:return: bool
|
|
378
378
|
If the method is called asynchronously,
|
|
379
379
|
returns the request thread.
|
|
@@ -396,7 +396,7 @@ class RevisionApi(object):
|
|
|
396
396
|
:param async_req bool
|
|
397
397
|
:param str revision_id: The revision id to export. (required)
|
|
398
398
|
:param str version_id: The version id to which you want to export the revision value. (required)
|
|
399
|
-
:param str output_file_path: The path to the file to create. You
|
|
399
|
+
:param str output_file_path: The path to the file to create. You must provide the file extension for example : C:/path/MyFile.m (required)
|
|
400
400
|
:return: bool
|
|
401
401
|
If the method is called asynchronously,
|
|
402
402
|
returns the request thread.
|
|
@@ -1409,7 +1409,7 @@ class RevisionApi(object):
|
|
|
1409
1409
|
collection_formats=collection_formats)
|
|
1410
1410
|
|
|
1411
1411
|
def update_revision(self, revision_id, version_id, revision, **kwargs): # noqa: E501
|
|
1412
|
-
"""Update a revision. You
|
|
1412
|
+
"""Update a revision. You must specify a version id to which the revision is updated. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
|
|
1413
1413
|
|
|
1414
1414
|
This method makes a synchronous HTTP request by default. To make an
|
|
1415
1415
|
asynchronous HTTP request, please pass async_req=True
|
|
@@ -1433,7 +1433,7 @@ class RevisionApi(object):
|
|
|
1433
1433
|
return data
|
|
1434
1434
|
|
|
1435
1435
|
def update_revision_with_http_info(self, revision_id, version_id, revision, **kwargs): # noqa: E501
|
|
1436
|
-
"""Update a revision. You
|
|
1436
|
+
"""Update a revision. You must specify a version id to which the revision is updated. This is mandatory because the system needs to ensure that the revision data are consistent with the version definition. # noqa: E501
|
|
1437
1437
|
|
|
1438
1438
|
This method makes a synchronous HTTP request by default. To make an
|
|
1439
1439
|
asynchronous HTTP request, please pass async_req=True
|
teamdbapi/models/calibration.py
CHANGED
|
@@ -640,7 +640,7 @@ class Calibration(object):
|
|
|
640
640
|
def UpperLimit(self):
|
|
641
641
|
"""Gets the UpperLimit of this Calibration. # noqa: E501
|
|
642
642
|
|
|
643
|
-
The upper value
|
|
643
|
+
The upper value authorised # noqa: E501
|
|
644
644
|
|
|
645
645
|
:return: The UpperLimit of this Calibration. # noqa: E501
|
|
646
646
|
:rtype: float
|
|
@@ -651,7 +651,7 @@ class Calibration(object):
|
|
|
651
651
|
def UpperLimit(self, UpperLimit):
|
|
652
652
|
"""Sets the UpperLimit of this Calibration.
|
|
653
653
|
|
|
654
|
-
The upper value
|
|
654
|
+
The upper value authorised # noqa: E501
|
|
655
655
|
|
|
656
656
|
:param UpperLimit: The UpperLimit of this Calibration. # noqa: E501
|
|
657
657
|
:type: float
|
|
@@ -663,7 +663,7 @@ class Calibration(object):
|
|
|
663
663
|
def LowerLimit(self):
|
|
664
664
|
"""Gets the LowerLimit of this Calibration. # noqa: E501
|
|
665
665
|
|
|
666
|
-
The lower value
|
|
666
|
+
The lower value authorised # noqa: E501
|
|
667
667
|
|
|
668
668
|
:return: The LowerLimit of this Calibration. # noqa: E501
|
|
669
669
|
:rtype: float
|
|
@@ -674,7 +674,7 @@ class Calibration(object):
|
|
|
674
674
|
def LowerLimit(self, LowerLimit):
|
|
675
675
|
"""Sets the LowerLimit of this Calibration.
|
|
676
676
|
|
|
677
|
-
The lower value
|
|
677
|
+
The lower value authorised # noqa: E501
|
|
678
678
|
|
|
679
679
|
:param LowerLimit: The LowerLimit of this Calibration. # noqa: E501
|
|
680
680
|
:type: float
|
teamdbapi/models/group.py
CHANGED
|
@@ -156,7 +156,7 @@ class Group(object):
|
|
|
156
156
|
def ParentGroupId(self):
|
|
157
157
|
"""Gets the ParentGroupId of this Group. # noqa: E501
|
|
158
158
|
|
|
159
|
-
The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group
|
|
159
|
+
The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group does not have parent. # noqa: E501
|
|
160
160
|
|
|
161
161
|
:return: The ParentGroupId of this Group. # noqa: E501
|
|
162
162
|
:rtype: str
|
|
@@ -167,7 +167,7 @@ class Group(object):
|
|
|
167
167
|
def ParentGroupId(self, ParentGroupId):
|
|
168
168
|
"""Sets the ParentGroupId of this Group.
|
|
169
169
|
|
|
170
|
-
The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group
|
|
170
|
+
The parent group id to which the group belongs to. Leave the property to Guid.Empty (00000000-0000-0000-0000-000000000000) if the group does not have parent. # noqa: E501
|
|
171
171
|
|
|
172
172
|
:param ParentGroupId: The ParentGroupId of this Group. # noqa: E501
|
|
173
173
|
:type: str
|
teamdbapi/models/lap.py
CHANGED
|
@@ -559,7 +559,7 @@ class Lap(object):
|
|
|
559
559
|
def LapTimePower(self):
|
|
560
560
|
"""Gets the LapTimePower of this Lap. # noqa: E501
|
|
561
561
|
|
|
562
|
-
Time
|
|
562
|
+
Time elapsed in power # noqa: E501
|
|
563
563
|
|
|
564
564
|
:return: The LapTimePower of this Lap. # noqa: E501
|
|
565
565
|
:rtype: float
|
|
@@ -570,7 +570,7 @@ class Lap(object):
|
|
|
570
570
|
def LapTimePower(self, LapTimePower):
|
|
571
571
|
"""Sets the LapTimePower of this Lap.
|
|
572
572
|
|
|
573
|
-
Time
|
|
573
|
+
Time elapsed in power # noqa: E501
|
|
574
574
|
|
|
575
575
|
:param LapTimePower: The LapTimePower of this Lap. # noqa: E501
|
|
576
576
|
:type: float
|
|
@@ -121,7 +121,7 @@ class LapReportOptions(object):
|
|
|
121
121
|
def LapReportFilePath(self):
|
|
122
122
|
"""Gets the LapReportFilePath of this LapReportOptions. # noqa: E501
|
|
123
123
|
|
|
124
|
-
The file path to the lap report. You
|
|
124
|
+
The file path to the lap report. You must provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
|
|
125
125
|
|
|
126
126
|
:return: The LapReportFilePath of this LapReportOptions. # noqa: E501
|
|
127
127
|
:rtype: str
|
|
@@ -132,7 +132,7 @@ class LapReportOptions(object):
|
|
|
132
132
|
def LapReportFilePath(self, LapReportFilePath):
|
|
133
133
|
"""Sets the LapReportFilePath of this LapReportOptions.
|
|
134
134
|
|
|
135
|
-
The file path to the lap report. You
|
|
135
|
+
The file path to the lap report. You must provide the file extension for example : C:/path/MyFile.csv. The path must be described only by / or \\\\\\\\. # noqa: E501
|
|
136
136
|
|
|
137
137
|
:param LapReportFilePath: The LapReportFilePath of this LapReportOptions. # noqa: E501
|
|
138
138
|
:type: str
|
teamdbapi/models/parameter.py
CHANGED
|
@@ -186,7 +186,7 @@ class Parameter(object):
|
|
|
186
186
|
def TargetId(self):
|
|
187
187
|
"""Gets the TargetId of this Parameter. # noqa: E501
|
|
188
188
|
|
|
189
|
-
The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you
|
|
189
|
+
The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you do not have to care about this. Just call th parameters Api function and provide a version id to which you want to get the parameters. # noqa: E501
|
|
190
190
|
|
|
191
191
|
:return: The TargetId of this Parameter. # noqa: E501
|
|
192
192
|
:rtype: str
|
|
@@ -197,7 +197,7 @@ class Parameter(object):
|
|
|
197
197
|
def TargetId(self, TargetId):
|
|
198
198
|
"""Sets the TargetId of this Parameter.
|
|
199
199
|
|
|
200
|
-
The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you
|
|
200
|
+
The target id to which the parameter belongs to. Parameters are linked to the version through the VersionParam object. But you do not have to care about this. Just call th parameters Api function and provide a version id to which you want to get the parameters. # noqa: E501
|
|
201
201
|
|
|
202
202
|
:param TargetId: The TargetId of this Parameter. # noqa: E501
|
|
203
203
|
:type: str
|
teamdbapi/models/part.py
CHANGED
|
@@ -68,7 +68,8 @@ class Part(object):
|
|
|
68
68
|
'DnuDistance': 'float',
|
|
69
69
|
'DnuTime': 'float',
|
|
70
70
|
'DnuEnergy': 'float',
|
|
71
|
-
'DnuDistanceFactored': 'float'
|
|
71
|
+
'DnuDistanceFactored': 'float',
|
|
72
|
+
'SupportedClassTags': 'str'
|
|
72
73
|
}
|
|
73
74
|
|
|
74
75
|
attribute_map = {
|
|
@@ -107,10 +108,11 @@ class Part(object):
|
|
|
107
108
|
'DnuDistance': 'DnuDistance',
|
|
108
109
|
'DnuTime': 'DnuTime',
|
|
109
110
|
'DnuEnergy': 'DnuEnergy',
|
|
110
|
-
'DnuDistanceFactored': 'DnuDistanceFactored'
|
|
111
|
+
'DnuDistanceFactored': 'DnuDistanceFactored',
|
|
112
|
+
'SupportedClassTags': 'SupportedClassTags'
|
|
111
113
|
}
|
|
112
114
|
|
|
113
|
-
def __init__(self, PartId=None, IsLifed=None, PartName=None, ManufacturerNumber=None, Description=None, Tags=None, IsClass=None, HasExpirationDate=None, MaxDistance=None, MinDistance=None, MaxTime=None, DateCreationUtc=None, Creator=None, LastUpdateDateUtc=None, LastUpdateUser=None, PartStatus=None, PartType=None, Manufacturer=None, ParentPartClass=None, IconId=None, Department=None, Annotation=None, MultiManufacturer=None, ClassificationCode=None, MaxDistanceFactored=None, FactorId=None, MaxEnergy=None, CriteriaSetId=None, InheritedStatus=None, MinWeight=None, MaxWeight=None, IsSensor=None, DnuDistance=None, DnuTime=None, DnuEnergy=None, DnuDistanceFactored=None, _configuration=None): # noqa: E501
|
|
115
|
+
def __init__(self, PartId=None, IsLifed=None, PartName=None, ManufacturerNumber=None, Description=None, Tags=None, IsClass=None, HasExpirationDate=None, MaxDistance=None, MinDistance=None, MaxTime=None, DateCreationUtc=None, Creator=None, LastUpdateDateUtc=None, LastUpdateUser=None, PartStatus=None, PartType=None, Manufacturer=None, ParentPartClass=None, IconId=None, Department=None, Annotation=None, MultiManufacturer=None, ClassificationCode=None, MaxDistanceFactored=None, FactorId=None, MaxEnergy=None, CriteriaSetId=None, InheritedStatus=None, MinWeight=None, MaxWeight=None, IsSensor=None, DnuDistance=None, DnuTime=None, DnuEnergy=None, DnuDistanceFactored=None, SupportedClassTags=None, _configuration=None): # noqa: E501
|
|
114
116
|
"""Part - a model defined in Swagger""" # noqa: E501
|
|
115
117
|
if _configuration is None:
|
|
116
118
|
_configuration = Configuration()
|
|
@@ -152,6 +154,7 @@ class Part(object):
|
|
|
152
154
|
self._DnuTime = None
|
|
153
155
|
self._DnuEnergy = None
|
|
154
156
|
self._DnuDistanceFactored = None
|
|
157
|
+
self._SupportedClassTags = None
|
|
155
158
|
self.discriminator = None
|
|
156
159
|
|
|
157
160
|
self.PartId = PartId
|
|
@@ -222,6 +225,8 @@ class Part(object):
|
|
|
222
225
|
self.DnuEnergy = DnuEnergy
|
|
223
226
|
if DnuDistanceFactored is not None:
|
|
224
227
|
self.DnuDistanceFactored = DnuDistanceFactored
|
|
228
|
+
if SupportedClassTags is not None:
|
|
229
|
+
self.SupportedClassTags = SupportedClassTags
|
|
225
230
|
|
|
226
231
|
@property
|
|
227
232
|
def PartId(self):
|
|
@@ -915,7 +920,7 @@ class Part(object):
|
|
|
915
920
|
def MinWeight(self):
|
|
916
921
|
"""Gets the MinWeight of this Part. # noqa: E501
|
|
917
922
|
|
|
918
|
-
Minimum
|
|
923
|
+
Minimum authorised weight for the part # noqa: E501
|
|
919
924
|
|
|
920
925
|
:return: The MinWeight of this Part. # noqa: E501
|
|
921
926
|
:rtype: float
|
|
@@ -926,7 +931,7 @@ class Part(object):
|
|
|
926
931
|
def MinWeight(self, MinWeight):
|
|
927
932
|
"""Sets the MinWeight of this Part.
|
|
928
933
|
|
|
929
|
-
Minimum
|
|
934
|
+
Minimum authorised weight for the part # noqa: E501
|
|
930
935
|
|
|
931
936
|
:param MinWeight: The MinWeight of this Part. # noqa: E501
|
|
932
937
|
:type: float
|
|
@@ -938,7 +943,7 @@ class Part(object):
|
|
|
938
943
|
def MaxWeight(self):
|
|
939
944
|
"""Gets the MaxWeight of this Part. # noqa: E501
|
|
940
945
|
|
|
941
|
-
Maximum
|
|
946
|
+
Maximum authorised weight for the part # noqa: E501
|
|
942
947
|
|
|
943
948
|
:return: The MaxWeight of this Part. # noqa: E501
|
|
944
949
|
:rtype: float
|
|
@@ -949,7 +954,7 @@ class Part(object):
|
|
|
949
954
|
def MaxWeight(self, MaxWeight):
|
|
950
955
|
"""Sets the MaxWeight of this Part.
|
|
951
956
|
|
|
952
|
-
Maximum
|
|
957
|
+
Maximum authorised weight for the part # noqa: E501
|
|
953
958
|
|
|
954
959
|
:param MaxWeight: The MaxWeight of this Part. # noqa: E501
|
|
955
960
|
:type: float
|
|
@@ -1072,6 +1077,29 @@ class Part(object):
|
|
|
1072
1077
|
|
|
1073
1078
|
self._DnuDistanceFactored = DnuDistanceFactored
|
|
1074
1079
|
|
|
1080
|
+
@property
|
|
1081
|
+
def SupportedClassTags(self):
|
|
1082
|
+
"""Gets the SupportedClassTags of this Part. # noqa: E501
|
|
1083
|
+
|
|
1084
|
+
Contient la liste de tous les tags supportés par la part si elle est de type Class Contient la liste du sous ensemble des tags supportés par la part si elle dérive d'une part class (sous ensemble des tags appartient aux tags de la part class). # noqa: E501
|
|
1085
|
+
|
|
1086
|
+
:return: The SupportedClassTags of this Part. # noqa: E501
|
|
1087
|
+
:rtype: str
|
|
1088
|
+
"""
|
|
1089
|
+
return self._SupportedClassTags
|
|
1090
|
+
|
|
1091
|
+
@SupportedClassTags.setter
|
|
1092
|
+
def SupportedClassTags(self, SupportedClassTags):
|
|
1093
|
+
"""Sets the SupportedClassTags of this Part.
|
|
1094
|
+
|
|
1095
|
+
Contient la liste de tous les tags supportés par la part si elle est de type Class Contient la liste du sous ensemble des tags supportés par la part si elle dérive d'une part class (sous ensemble des tags appartient aux tags de la part class). # noqa: E501
|
|
1096
|
+
|
|
1097
|
+
:param SupportedClassTags: The SupportedClassTags of this Part. # noqa: E501
|
|
1098
|
+
:type: str
|
|
1099
|
+
"""
|
|
1100
|
+
|
|
1101
|
+
self._SupportedClassTags = SupportedClassTags
|
|
1102
|
+
|
|
1075
1103
|
def to_dict(self):
|
|
1076
1104
|
"""Returns the model properties as a dict"""
|
|
1077
1105
|
result = {}
|
teamdbapi/models/part_count.py
CHANGED
|
@@ -37,7 +37,8 @@ class PartCount(object):
|
|
|
37
37
|
'PartChildId': 'str',
|
|
38
38
|
'Count': 'int',
|
|
39
39
|
'LastUpdateDateUtc': 'datetime',
|
|
40
|
-
'LastUpdateUser': 'str'
|
|
40
|
+
'LastUpdateUser': 'str',
|
|
41
|
+
'ClassTags': 'str'
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
attribute_map = {
|
|
@@ -45,10 +46,11 @@ class PartCount(object):
|
|
|
45
46
|
'PartChildId': 'PartChildId',
|
|
46
47
|
'Count': 'Count',
|
|
47
48
|
'LastUpdateDateUtc': 'LastUpdateDateUtc',
|
|
48
|
-
'LastUpdateUser': 'LastUpdateUser'
|
|
49
|
+
'LastUpdateUser': 'LastUpdateUser',
|
|
50
|
+
'ClassTags': 'ClassTags'
|
|
49
51
|
}
|
|
50
52
|
|
|
51
|
-
def __init__(self, PartParentId=None, PartChildId=None, Count=None, LastUpdateDateUtc=None, LastUpdateUser=None, _configuration=None): # noqa: E501
|
|
53
|
+
def __init__(self, PartParentId=None, PartChildId=None, Count=None, LastUpdateDateUtc=None, LastUpdateUser=None, ClassTags=None, _configuration=None): # noqa: E501
|
|
52
54
|
"""PartCount - a model defined in Swagger""" # noqa: E501
|
|
53
55
|
if _configuration is None:
|
|
54
56
|
_configuration = Configuration()
|
|
@@ -59,6 +61,7 @@ class PartCount(object):
|
|
|
59
61
|
self._Count = None
|
|
60
62
|
self._LastUpdateDateUtc = None
|
|
61
63
|
self._LastUpdateUser = None
|
|
64
|
+
self._ClassTags = None
|
|
62
65
|
self.discriminator = None
|
|
63
66
|
|
|
64
67
|
self.PartParentId = PartParentId
|
|
@@ -68,6 +71,8 @@ class PartCount(object):
|
|
|
68
71
|
self.LastUpdateDateUtc = LastUpdateDateUtc
|
|
69
72
|
if LastUpdateUser is not None:
|
|
70
73
|
self.LastUpdateUser = LastUpdateUser
|
|
74
|
+
if ClassTags is not None:
|
|
75
|
+
self.ClassTags = ClassTags
|
|
71
76
|
|
|
72
77
|
@property
|
|
73
78
|
def PartParentId(self):
|
|
@@ -190,6 +195,29 @@ class PartCount(object):
|
|
|
190
195
|
|
|
191
196
|
self._LastUpdateUser = LastUpdateUser
|
|
192
197
|
|
|
198
|
+
@property
|
|
199
|
+
def ClassTags(self):
|
|
200
|
+
"""Gets the ClassTags of this PartCount. # noqa: E501
|
|
201
|
+
|
|
202
|
+
Les tags contenant les valeurs des classes dérivées possibles pour le part count # noqa: E501
|
|
203
|
+
|
|
204
|
+
:return: The ClassTags of this PartCount. # noqa: E501
|
|
205
|
+
:rtype: str
|
|
206
|
+
"""
|
|
207
|
+
return self._ClassTags
|
|
208
|
+
|
|
209
|
+
@ClassTags.setter
|
|
210
|
+
def ClassTags(self, ClassTags):
|
|
211
|
+
"""Sets the ClassTags of this PartCount.
|
|
212
|
+
|
|
213
|
+
Les tags contenant les valeurs des classes dérivées possibles pour le part count # noqa: E501
|
|
214
|
+
|
|
215
|
+
:param ClassTags: The ClassTags of this PartCount. # noqa: E501
|
|
216
|
+
:type: str
|
|
217
|
+
"""
|
|
218
|
+
|
|
219
|
+
self._ClassTags = ClassTags
|
|
220
|
+
|
|
193
221
|
def to_dict(self):
|
|
194
222
|
"""Returns the model properties as a dict"""
|
|
195
223
|
result = {}
|
teamdbapi/models/session.py
CHANGED
|
@@ -469,7 +469,7 @@ class Session(object):
|
|
|
469
469
|
def DefaultAssemblies(self):
|
|
470
470
|
"""Gets the DefaultAssemblies of this Session. # noqa: E501
|
|
471
471
|
|
|
472
|
-
List of the default Assemblies used to create the first session's run. You
|
|
472
|
+
List of the default Assemblies used to create the first session's run. You must specify one assemblies by target. # noqa: E501
|
|
473
473
|
|
|
474
474
|
:return: The DefaultAssemblies of this Session. # noqa: E501
|
|
475
475
|
:rtype: list[str]
|
|
@@ -480,7 +480,7 @@ class Session(object):
|
|
|
480
480
|
def DefaultAssemblies(self, DefaultAssemblies):
|
|
481
481
|
"""Sets the DefaultAssemblies of this Session.
|
|
482
482
|
|
|
483
|
-
List of the default Assemblies used to create the first session's run. You
|
|
483
|
+
List of the default Assemblies used to create the first session's run. You must specify one assemblies by target. # noqa: E501
|
|
484
484
|
|
|
485
485
|
:param DefaultAssemblies: The DefaultAssemblies of this Session. # noqa: E501
|
|
486
486
|
:type: list[str]
|
teamdbapi/models/target.py
CHANGED
|
@@ -405,7 +405,7 @@ class Target(object):
|
|
|
405
405
|
def AutoGenerateAssemblyEventType(self):
|
|
406
406
|
"""Gets the AutoGenerateAssemblyEventType of this Target. # noqa: E501
|
|
407
407
|
|
|
408
|
-
List of event types separated with ; for which auto
|
|
408
|
+
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
|
|
409
409
|
|
|
410
410
|
:return: The AutoGenerateAssemblyEventType of this Target. # noqa: E501
|
|
411
411
|
:rtype: str
|
|
@@ -416,7 +416,7 @@ class Target(object):
|
|
|
416
416
|
def AutoGenerateAssemblyEventType(self, AutoGenerateAssemblyEventType):
|
|
417
417
|
"""Sets the AutoGenerateAssemblyEventType of this Target.
|
|
418
418
|
|
|
419
|
-
List of event types separated with ; for which auto
|
|
419
|
+
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
|
|
420
420
|
|
|
421
421
|
:param AutoGenerateAssemblyEventType: The AutoGenerateAssemblyEventType of this Target. # noqa: E501
|
|
422
422
|
:type: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: teamdbapi
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.12.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>
|
|
@@ -20,13 +20,13 @@ Project-URL: Home, https://www.tracksidesoftware.fr/teamdb
|
|
|
20
20
|
# teamdbapi
|
|
21
21
|
This module enables you to easily access the TeamDB Web API.
|
|
22
22
|
|
|
23
|
-
- Package version: 3.
|
|
23
|
+
- Package version: 3.12.0
|
|
24
24
|
- TeamDB Web API version: 2.0
|
|
25
25
|
|
|
26
26
|
## Requirements.
|
|
27
27
|
|
|
28
28
|
- Python 3.4+
|
|
29
|
-
- TeamDB 3.
|
|
29
|
+
- TeamDB 3.12.0
|
|
30
30
|
|
|
31
31
|
## Installation and usage
|
|
32
32
|
### pip install
|
|
@@ -3,28 +3,28 @@ teamdbapi/api_client.py,sha256=HSi8G_KA7_rkkGEsy6BHtSPdDj1SDRoq7Em_XEf0N44,25710
|
|
|
3
3
|
teamdbapi/configuration.py,sha256=ZRE0xMgxq6FQZA-YDAjnC2-kqkdxRPJpzhFE_aYq5iU,8528
|
|
4
4
|
teamdbapi/rest.py,sha256=AeH3u0A94ZziOpUJCzWooYawxc2m7V-b6kKeXwnQMh0,13510
|
|
5
5
|
teamdbapi/api/__init__.py,sha256=bzTXDK-Z0iDBDPlq8nikwo5vW3e5qslWv3b84qdP_7Y,2036
|
|
6
|
-
teamdbapi/api/assembly_api.py,sha256=
|
|
6
|
+
teamdbapi/api/assembly_api.py,sha256=mOXwBUbhWyEpBrp4bsuB_NJJ5DO7rk2AtdGbArzKWao,94748
|
|
7
7
|
teamdbapi/api/car_api.py,sha256=MXZw-mdKPRi5IqWpg3m_ZtC1dkHrkaIx7lMKAplvPf8,34836
|
|
8
8
|
teamdbapi/api/component_api.py,sha256=AiuNLOb0Zi6iI8rG7hFwupsV8EgIgpqSFwRR8GKDXjs,61854
|
|
9
9
|
teamdbapi/api/config_api.py,sha256=wLSINgmIGsdD4OnfUO2LslsEJm_J_GW8pYWpD1Co_Tg,3972
|
|
10
10
|
teamdbapi/api/criteria_api.py,sha256=X5BjCsbt9Sf6Ikh731KiNYvyoDTWDfEFj_TRj5AP-hE,23558
|
|
11
11
|
teamdbapi/api/edit_api.py,sha256=3uP05b3tCZTLzmrYWZF-IJRwuUnmNgssIlArD2xbRas,27641
|
|
12
|
-
teamdbapi/api/event_api.py,sha256=
|
|
12
|
+
teamdbapi/api/event_api.py,sha256=ImYrGGEIt5jE1pF724h-0fdlT3QenBA-qYpGsCb7kCA,35837
|
|
13
13
|
teamdbapi/api/fixed_field_api.py,sha256=sdyZkK5IFrai2BDfvGp6QRPF2p8_12Y_m8-7eUT41-c,13715
|
|
14
14
|
teamdbapi/api/group_api.py,sha256=mXWvexGzxQkAzShPMJiHjYsTjTM9yowlEIPw9XI5L5E,24972
|
|
15
|
-
teamdbapi/api/import_export_api.py,sha256=
|
|
16
|
-
teamdbapi/api/issue_api.py,sha256=
|
|
15
|
+
teamdbapi/api/import_export_api.py,sha256=hkOqhg5supqjzqlS1c0a__2PwMJZJ1MnxfFZttKXLAo,44252
|
|
16
|
+
teamdbapi/api/issue_api.py,sha256=AJrSscvoHx6fmeM-J9ROpwR7LWYsoGH0S8pdr5pfPJM,77099
|
|
17
17
|
teamdbapi/api/lap_api.py,sha256=4yAySQsyXkJ5hMpjt4btmE2k89E2sjFohYR92XqHpJ8,29167
|
|
18
18
|
teamdbapi/api/lap_report_api.py,sha256=Bpd57Vrcnn_yhjQ2SrPwMUgBozEygmQUpdCqW2rEWn4,20346
|
|
19
|
-
teamdbapi/api/model_field_api.py,sha256=
|
|
19
|
+
teamdbapi/api/model_field_api.py,sha256=Y9NFR2YsQHwrh0uKfflryH4tS2YcAaRlYjpSsghkVhw,30895
|
|
20
20
|
teamdbapi/api/mounting_api.py,sha256=gwYqdf0Dcuyu9xlsiyszRNoVlx1jAH2UufwSnI58JgI,13663
|
|
21
|
-
teamdbapi/api/notes_authorization_api.py,sha256=
|
|
21
|
+
teamdbapi/api/notes_authorization_api.py,sha256=5at9dXGmaMCN-pvI4xMxxJvCrOFrILL5PTgVhQLHXl4,15080
|
|
22
22
|
teamdbapi/api/overall_api.py,sha256=JAzPhBeFSnvKn0c1mA6XMlXecw1LAitb6lvvgOaFwHU,3941
|
|
23
|
-
teamdbapi/api/parameter_api.py,sha256=
|
|
23
|
+
teamdbapi/api/parameter_api.py,sha256=e7aPth3Ig1RASB7f8f7zeBf1nZfFNIwyIN51_UCrrkk,57209
|
|
24
24
|
teamdbapi/api/parameter_binding_api.py,sha256=4pP51RJA6WeEfDHnoNjamn51QKsgPYLtzj09ImPCl7s,22216
|
|
25
25
|
teamdbapi/api/part_api.py,sha256=6snmR2WOefvTEG6t0Jlfjly3g4qwxWftSPM7SMrQ93o,37993
|
|
26
|
-
teamdbapi/api/report_api.py,sha256=
|
|
27
|
-
teamdbapi/api/revision_api.py,sha256=
|
|
26
|
+
teamdbapi/api/report_api.py,sha256=lIUM31MQeGumV95OI10hsVzUpov8IBeePUI6VaJp_r0,6253
|
|
27
|
+
teamdbapi/api/revision_api.py,sha256=u3Xl4DB8lNyDwZw1NYtk-b70SA315m31yrlBIrAiOtI,77911
|
|
28
28
|
teamdbapi/api/revision_editor_selector_api.py,sha256=CggcEygJzL4ld3JHnhe_fsalYwmBZFGqFhRNrtrxYpI,51072
|
|
29
29
|
teamdbapi/api/run_api.py,sha256=JFW7sTJDjDMG4ctCn7yr9oWvkHhli5KvD3qwGd6Iz9g,25021
|
|
30
30
|
teamdbapi/api/script_api.py,sha256=XX9MY9pKZBVbRAfJ_4L09IaqAHn_dsU-0C7kbf48opw,19337
|
|
@@ -44,7 +44,7 @@ teamdbapi/models/__init__.py,sha256=_MeQCSjpOiS-iHO9cz9diGcrOvto4btYUKCHVD03RYE,
|
|
|
44
44
|
teamdbapi/models/add_part_car_parameter_arg.py,sha256=K9XnbTa4P8HK1mdUOQuOjY6TwfCbdI7pf8pknNZvaFM,14927
|
|
45
45
|
teamdbapi/models/assembly.py,sha256=KHT-oN0ZvY2fXQ7LG6677WmEANH29KP9-AgUkHBi8vg,20504
|
|
46
46
|
teamdbapi/models/bleed_adjustment.py,sha256=oh-MIBGLlAjz80Yc7t64cbmTlO3G47YEzL5SBtFnjmA,4967
|
|
47
|
-
teamdbapi/models/calibration.py,sha256=
|
|
47
|
+
teamdbapi/models/calibration.py,sha256=DA8qCv-pCvoKpvIt5JOHlbuCmTInuPpr3hQNXKpPC7w,23154
|
|
48
48
|
teamdbapi/models/car.py,sha256=St3v5lMmsTaOwD8CekeH_4-sDNlmpTpoIi8NsKhmrEA,13529
|
|
49
49
|
teamdbapi/models/car_parameters_context.py,sha256=z_hiMV56fLvUz-9ph3MB3-3yVTWf3n2S6B_bQ-4VPYg,6142
|
|
50
50
|
teamdbapi/models/compare_options.py,sha256=sn8GslV5fD1va7_RNpIyhqiVMf7pz127hK_8NhrVX4E,7532
|
|
@@ -60,7 +60,7 @@ teamdbapi/models/criteria_value_detail.py,sha256=0f7WEQyvtC7B0nsqbwSp-hVvdo3xYCU
|
|
|
60
60
|
teamdbapi/models/event.py,sha256=gQQqTKIuzWTmCoT-is1vrlggfuK8eTs_jnuDfuZzRLE,14094
|
|
61
61
|
teamdbapi/models/file_revision_info.py,sha256=Meb2z_eAG02JAclZI7hcrXWCvkloxNF3DP2Le1ovcxg,8153
|
|
62
62
|
teamdbapi/models/fixed_field.py,sha256=o_8JKxFz6jqBO6uBWXngUcawcKRzwEzqnp5uwIAdKdY,12564
|
|
63
|
-
teamdbapi/models/group.py,sha256=
|
|
63
|
+
teamdbapi/models/group.py,sha256=m3ASUfEOKeu64S0Md3f_y_wPU__CrO_cdqLXY-9tmV4,9247
|
|
64
64
|
teamdbapi/models/import_parameters_args.py,sha256=NI7RjE4ajoqxs4knFVq1_YnhYG3EiWJM85o36eGp0-I,18950
|
|
65
65
|
teamdbapi/models/import_parameters_results.py,sha256=745wdYMbdUk990waY_xiyJkUSpE5Qu-VWd0oQPSUNGU,5817
|
|
66
66
|
teamdbapi/models/import_revisions_args.py,sha256=7WYL-XUR0beBXwwXAcunF-dtqJBTXJkV-NGT5s6pcdc,6596
|
|
@@ -76,27 +76,27 @@ teamdbapi/models/issue_type.py,sha256=-2W7G32L5nQ06nECZPoZIqsaaFwLYfleJdf6F-zeyk
|
|
|
76
76
|
teamdbapi/models/issue_workflow.py,sha256=vL-_kTdn9zwVIC2FfS1_5dLhpejB78wbZagEfM1hkyg,6736
|
|
77
77
|
teamdbapi/models/item_value.py,sha256=6qSHQMbAfne57z-Er5_4CuYJl_71unvRTKHA0lNAlLw,5639
|
|
78
78
|
teamdbapi/models/item_value_key.py,sha256=tSGw_goKqmOqpHBb_dq0f1fvLRRT6q1BR2-dE4xgwjQ,4976
|
|
79
|
-
teamdbapi/models/lap.py,sha256=
|
|
80
|
-
teamdbapi/models/lap_report_options.py,sha256=
|
|
79
|
+
teamdbapi/models/lap.py,sha256=Nr0vNnX9HI6tVTpWXmePRJsBTUIWgSJ5QhjRBBOVKe8,22532
|
|
80
|
+
teamdbapi/models/lap_report_options.py,sha256=BsnGVOiCJfH_5pti-odEHWU2OORd9VdEIGlBrQqYUOc,7003
|
|
81
81
|
teamdbapi/models/model_field.py,sha256=0G0VlDySveV5_bSN_qEIOe5NGePPLW-_YoIPavCmGOk,28719
|
|
82
82
|
teamdbapi/models/model_field_authorization.py,sha256=2c6iuHt3mCcmcl1ub23tM6Cy7KL61EvNJEzrwtIEZqc,9014
|
|
83
83
|
teamdbapi/models/mounting.py,sha256=GRhlJlTd9mkUfDy78bBQqdWyH_3ZX6_bqQ-I9cOFKic,17408
|
|
84
84
|
teamdbapi/models/notes_authorization.py,sha256=ghHZXM1tplcZomc8szkCX0x1E2Mk1HUAYmLL4devquU,8084
|
|
85
85
|
teamdbapi/models/notes_context.py,sha256=TQZtkv9QHprx9Vz7ru6PFjda2d6gGkxiY8hApfbBn2o,6437
|
|
86
86
|
teamdbapi/models/overall.py,sha256=MpISVoargfxqTOFFPAyXL5_0OPTUg993U8-4B6JmZL4,6717
|
|
87
|
-
teamdbapi/models/parameter.py,sha256=
|
|
87
|
+
teamdbapi/models/parameter.py,sha256=AxJlA281Vh0PEvySsB_yk6jI95M3GR9gEsOVoN7qR50,14563
|
|
88
88
|
teamdbapi/models/parameter_binding.py,sha256=Spk3Vkz6eY3iOrjIcrAB8gcTFrHxEntJfyGOpxhinG0,13188
|
|
89
89
|
teamdbapi/models/parameter_cross_table.py,sha256=iNw7hLvj9azGZffViIJZ3hNAsbQiJJiy09UvsTC4SjE,5941
|
|
90
|
-
teamdbapi/models/part.py,sha256=
|
|
90
|
+
teamdbapi/models/part.py,sha256=ZcqxRYlrc1ofx2Q7KjDgdm676QqDgJvkSeCO1zoO8IA,36676
|
|
91
91
|
teamdbapi/models/part_car_parameters.py,sha256=tpvfqSXVqhugRKfZg5qeXKj-0IAADdwoRdVnla-1SlM,20366
|
|
92
|
-
teamdbapi/models/part_count.py,sha256=
|
|
92
|
+
teamdbapi/models/part_count.py,sha256=5BCh6xApQCWWTcX1OMou365yBh8HYbrlAVh-JzvpQkk,8681
|
|
93
93
|
teamdbapi/models/revision.py,sha256=aIQUF_lD1jPsbcOyD_EC1HISmy47utfx7-hGwBeERXM,24871
|
|
94
94
|
teamdbapi/models/revision_value.py,sha256=nnHrjHkwceiBtxoZ_S4JsWxq2pHjlP9JaFm9pRjrFYk,8826
|
|
95
95
|
teamdbapi/models/run.py,sha256=nc1qWRuP3iP2eM7EiYC0Z8b_tbJLWR85L9GjooLuqBU,17833
|
|
96
96
|
teamdbapi/models/script.py,sha256=BOWGJFkwm5dhn6sOvEHOqUSj3ksri9XUqC2xalcGtN8,8089
|
|
97
|
-
teamdbapi/models/session.py,sha256=
|
|
97
|
+
teamdbapi/models/session.py,sha256=NMgGaKHTXRXbJ3sZcx0u6LdgWl8GLd6K9EiwRUhxk4s,18143
|
|
98
98
|
teamdbapi/models/string_with_font_style.py,sha256=cYtYvpe2ozU9sHzu1EdNFZ-oqq5H9QgYPdoslsvf3E0,8933
|
|
99
|
-
teamdbapi/models/target.py,sha256=
|
|
99
|
+
teamdbapi/models/target.py,sha256=sk5251KgqpAyhGeev7nkkjQ3Hw4gM1uaWRYgtojEqYA,18539
|
|
100
100
|
teamdbapi/models/team_db_list.py,sha256=pttugUcdrmh1GHMX_4haTy9kaJ3LGId0Pr7LQHNm8T8,4825
|
|
101
101
|
teamdbapi/models/team_db_list_item.py,sha256=h4SUzxcfHyrAbts65cptqMyGrLSrIwfnBRUslFhXd-U,7414
|
|
102
102
|
teamdbapi/models/tire.py,sha256=iHp5Edk473d72Zws4KmBCLgcRYe7wT2cTqEXLQ_f-2Y,27302
|
|
@@ -107,7 +107,7 @@ teamdbapi/models/user.py,sha256=fRgeDO-Nx_fJfZOMasAX8y_iXS_j8G5hUiQofmOwny8,4535
|
|
|
107
107
|
teamdbapi/models/user_group.py,sha256=qHkFO_ueJlag0lZFxPZr9GV9hrzYxHrsEGu4T5S4kD8,4624
|
|
108
108
|
teamdbapi/models/value_field.py,sha256=LHRDgcI9hPBd1Lo4vBhY2gjVva9cSeWFQ6Q55a5Z25k,9833
|
|
109
109
|
teamdbapi/models/version.py,sha256=nMBNdx60aMgU7Oh84LkVhz1mxGD_Eu20q-xNGNNeO5w,15538
|
|
110
|
-
teamdbapi-3.
|
|
111
|
-
teamdbapi-3.
|
|
112
|
-
teamdbapi-3.
|
|
113
|
-
teamdbapi-3.
|
|
110
|
+
teamdbapi-3.12.0.dist-info/licenses/LICENSE,sha256=Y4BoCAz16chUPxys7LVSKxSU4gEVCKxid6OFFR-t0xE,1076
|
|
111
|
+
teamdbapi-3.12.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
112
|
+
teamdbapi-3.12.0.dist-info/METADATA,sha256=XaNEq2Zuq8yi3kJybhXNrNaqLB-pbbZWU92fbPNvMEY,4094
|
|
113
|
+
teamdbapi-3.12.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|