teamdbapi 3.10.1__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 +27 -27
- teamdbapi/api/car_api.py +9 -9
- teamdbapi/api/component_api.py +12 -12
- teamdbapi/api/config_api.py +1 -1
- teamdbapi/api/criteria_api.py +6 -6
- teamdbapi/api/edit_api.py +6 -6
- teamdbapi/api/event_api.py +11 -11
- teamdbapi/api/fixed_field_api.py +3 -3
- teamdbapi/api/group_api.py +6 -6
- teamdbapi/api/import_export_api.py +11 -11
- teamdbapi/api/issue_api.py +103 -18
- teamdbapi/api/lap_api.py +7 -7
- teamdbapi/api/lap_report_api.py +5 -5
- teamdbapi/api/model_field_api.py +11 -11
- teamdbapi/api/mounting_api.py +3 -3
- teamdbapi/api/notes_authorization_api.py +5 -5
- teamdbapi/api/overall_api.py +1 -1
- teamdbapi/api/parameter_api.py +15 -15
- teamdbapi/api/parameter_binding_api.py +5 -5
- teamdbapi/api/part_api.py +9 -9
- teamdbapi/api/report_api.py +3 -3
- teamdbapi/api/revision_api.py +20 -20
- teamdbapi/api/revision_editor_selector_api.py +9 -9
- teamdbapi/api/run_api.py +6 -6
- teamdbapi/api/script_api.py +5 -5
- teamdbapi/api/session_api.py +7 -7
- teamdbapi/api/target_api.py +4 -4
- teamdbapi/api/team_db_list_api.py +10 -10
- teamdbapi/api/team_db_view_api.py +5 -5
- teamdbapi/api/tire_api.py +6 -6
- teamdbapi/api/tire_set_api.py +5 -5
- teamdbapi/api/track_api.py +5 -5
- teamdbapi/api/track_layout_api.py +5 -5
- teamdbapi/api/update_request_api.py +2 -2
- teamdbapi/api/user_api.py +5 -5
- teamdbapi/api/value_field_api.py +6 -6
- teamdbapi/api/version_api.py +4 -4
- teamdbapi/configuration.py +7 -0
- 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 +33 -5
- teamdbapi/models/session.py +2 -2
- teamdbapi/models/target.py +2 -2
- teamdbapi/models/team_db_list_item.py +31 -3
- teamdbapi-3.12.0.dist-info/METADATA +135 -0
- {teamdbapi-3.10.1.dist-info → teamdbapi-3.12.0.dist-info}/RECORD +52 -52
- {teamdbapi-3.10.1.dist-info → teamdbapi-3.12.0.dist-info}/licenses/LICENSE +1 -1
- teamdbapi-3.10.1.dist-info/METADATA +0 -91
- {teamdbapi-3.10.1.dist-info → teamdbapi-3.12.0.dist-info}/WHEEL +0 -0
teamdbapi/api/group_api.py
CHANGED
|
@@ -114,7 +114,7 @@ class GroupApi(object):
|
|
|
114
114
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
115
115
|
|
|
116
116
|
# Authentication setting
|
|
117
|
-
auth_settings = [] # noqa: E501
|
|
117
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
118
118
|
|
|
119
119
|
return self.api_client.call_api(
|
|
120
120
|
'/teamdbapi/v2.0/group', 'POST',
|
|
@@ -207,7 +207,7 @@ class GroupApi(object):
|
|
|
207
207
|
['application/json', 'text/json']) # noqa: E501
|
|
208
208
|
|
|
209
209
|
# Authentication setting
|
|
210
|
-
auth_settings = [] # noqa: E501
|
|
210
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
211
211
|
|
|
212
212
|
return self.api_client.call_api(
|
|
213
213
|
'/teamdbapi/v2.0/group/{groupId}', 'DELETE',
|
|
@@ -300,7 +300,7 @@ class GroupApi(object):
|
|
|
300
300
|
['application/json', 'text/json']) # noqa: E501
|
|
301
301
|
|
|
302
302
|
# Authentication setting
|
|
303
|
-
auth_settings = [] # noqa: E501
|
|
303
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
304
304
|
|
|
305
305
|
return self.api_client.call_api(
|
|
306
306
|
'/teamdbapi/v2.0/group/{groupId}', 'GET',
|
|
@@ -393,7 +393,7 @@ class GroupApi(object):
|
|
|
393
393
|
['application/json', 'text/json']) # noqa: E501
|
|
394
394
|
|
|
395
395
|
# Authentication setting
|
|
396
|
-
auth_settings = [] # noqa: E501
|
|
396
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
397
397
|
|
|
398
398
|
return self.api_client.call_api(
|
|
399
399
|
'/teamdbapi/v2.0/group/{groupId}/fullpath', 'GET',
|
|
@@ -486,7 +486,7 @@ class GroupApi(object):
|
|
|
486
486
|
['application/json', 'text/json']) # noqa: E501
|
|
487
487
|
|
|
488
488
|
# Authentication setting
|
|
489
|
-
auth_settings = [] # noqa: E501
|
|
489
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
490
490
|
|
|
491
491
|
return self.api_client.call_api(
|
|
492
492
|
'/teamdbapi/v2.0/version/{versionId}/groups', 'GET',
|
|
@@ -591,7 +591,7 @@ class GroupApi(object):
|
|
|
591
591
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
592
592
|
|
|
593
593
|
# Authentication setting
|
|
594
|
-
auth_settings = [] # noqa: E501
|
|
594
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
595
595
|
|
|
596
596
|
return self.api_client.call_api(
|
|
597
597
|
'/teamdbapi/v2.0/group/{groupId}', 'PUT',
|
|
@@ -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.
|
|
@@ -124,7 +124,7 @@ class ImportExportApi(object):
|
|
|
124
124
|
['application/json', 'text/json']) # noqa: E501
|
|
125
125
|
|
|
126
126
|
# Authentication setting
|
|
127
|
-
auth_settings = [] # noqa: E501
|
|
127
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
128
128
|
|
|
129
129
|
return self.api_client.call_api(
|
|
130
130
|
'/teamdbapi/v2.0/exportxmlfile', 'POST',
|
|
@@ -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.
|
|
@@ -273,7 +273,7 @@ class ImportExportApi(object):
|
|
|
273
273
|
['application/json', 'text/json']) # noqa: E501
|
|
274
274
|
|
|
275
275
|
# Authentication setting
|
|
276
|
-
auth_settings = [] # noqa: E501
|
|
276
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
277
277
|
|
|
278
278
|
return self.api_client.call_api(
|
|
279
279
|
'/teamdbapi/v2.0/eventId/{eventId}/carId/{carId}/sessionId/{sessionId}/runId/{runId}/lapId/{lapId}/exportxmlfile', 'POST',
|
|
@@ -374,7 +374,7 @@ class ImportExportApi(object):
|
|
|
374
374
|
['application/json', 'text/json']) # noqa: E501
|
|
375
375
|
|
|
376
376
|
# Authentication setting
|
|
377
|
-
auth_settings = [] # noqa: E501
|
|
377
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
378
378
|
|
|
379
379
|
return self.api_client.call_api(
|
|
380
380
|
'/teamdbapi/v2.0/importexcelfile', 'POST',
|
|
@@ -483,7 +483,7 @@ class ImportExportApi(object):
|
|
|
483
483
|
['application/json', 'text/json']) # noqa: E501
|
|
484
484
|
|
|
485
485
|
# Authentication setting
|
|
486
|
-
auth_settings = [] # noqa: E501
|
|
486
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
487
487
|
|
|
488
488
|
return self.api_client.call_api(
|
|
489
489
|
'/teamdbapi/v2.0/importexcelsheet', 'POST',
|
|
@@ -584,7 +584,7 @@ class ImportExportApi(object):
|
|
|
584
584
|
['application/json', 'text/json']) # noqa: E501
|
|
585
585
|
|
|
586
586
|
# Authentication setting
|
|
587
|
-
auth_settings = [] # noqa: E501
|
|
587
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
588
588
|
|
|
589
589
|
return self.api_client.call_api(
|
|
590
590
|
'/teamdbapi/v2.0/importxmlfile', 'POST',
|
|
@@ -725,7 +725,7 @@ class ImportExportApi(object):
|
|
|
725
725
|
['application/json', 'text/json']) # noqa: E501
|
|
726
726
|
|
|
727
727
|
# Authentication setting
|
|
728
|
-
auth_settings = [] # noqa: E501
|
|
728
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
729
729
|
|
|
730
730
|
return self.api_client.call_api(
|
|
731
731
|
'/teamdbapi/v2.0/eventId/{eventId}/carId/{carId}/sessionId/{sessionId}/runId/{runId}/lapId/{lapId}/importxmlfiletocontext', 'POST',
|
|
@@ -810,7 +810,7 @@ class ImportExportApi(object):
|
|
|
810
810
|
['application/json', 'text/json']) # noqa: E501
|
|
811
811
|
|
|
812
812
|
# Authentication setting
|
|
813
|
-
auth_settings = [] # noqa: E501
|
|
813
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
814
814
|
|
|
815
815
|
return self.api_client.call_api(
|
|
816
816
|
'/teamdbapi/v2.0/importlifing', 'POST',
|
teamdbapi/api/issue_api.py
CHANGED
|
@@ -112,7 +112,7 @@ class IssueApi(object):
|
|
|
112
112
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
113
113
|
|
|
114
114
|
# Authentication setting
|
|
115
|
-
auth_settings = [] # noqa: E501
|
|
115
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
116
116
|
|
|
117
117
|
return self.api_client.call_api(
|
|
118
118
|
'/teamdbapi/v2.0/issue', 'POST',
|
|
@@ -205,7 +205,7 @@ class IssueApi(object):
|
|
|
205
205
|
['application/json', 'text/json']) # noqa: E501
|
|
206
206
|
|
|
207
207
|
# Authentication setting
|
|
208
|
-
auth_settings = [] # noqa: E501
|
|
208
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
209
209
|
|
|
210
210
|
return self.api_client.call_api(
|
|
211
211
|
'/teamdbapi/v2.0/workflows/{workflowId}/customfields', 'GET',
|
|
@@ -298,7 +298,7 @@ class IssueApi(object):
|
|
|
298
298
|
['application/json', 'text/json']) # noqa: E501
|
|
299
299
|
|
|
300
300
|
# Authentication setting
|
|
301
|
-
auth_settings = [] # noqa: E501
|
|
301
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
302
302
|
|
|
303
303
|
return self.api_client.call_api(
|
|
304
304
|
'/teamdbapi/v2.0/workflows/{workflowId}/priorities', 'GET',
|
|
@@ -383,7 +383,7 @@ class IssueApi(object):
|
|
|
383
383
|
['application/json', 'text/json']) # noqa: E501
|
|
384
384
|
|
|
385
385
|
# Authentication setting
|
|
386
|
-
auth_settings = [] # noqa: E501
|
|
386
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
387
387
|
|
|
388
388
|
return self.api_client.call_api(
|
|
389
389
|
'/teamdbapi/v2.0/projects', 'GET',
|
|
@@ -476,7 +476,7 @@ class IssueApi(object):
|
|
|
476
476
|
['application/json', 'text/json']) # noqa: E501
|
|
477
477
|
|
|
478
478
|
# Authentication setting
|
|
479
|
-
auth_settings = [] # noqa: E501
|
|
479
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
480
480
|
|
|
481
481
|
return self.api_client.call_api(
|
|
482
482
|
'/teamdbapi/v2.0/workflows/{workflowId}/sectors', 'GET',
|
|
@@ -569,7 +569,7 @@ class IssueApi(object):
|
|
|
569
569
|
['application/json', 'text/json']) # noqa: E501
|
|
570
570
|
|
|
571
571
|
# Authentication setting
|
|
572
|
-
auth_settings = [] # noqa: E501
|
|
572
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
573
573
|
|
|
574
574
|
return self.api_client.call_api(
|
|
575
575
|
'/teamdbapi/v2.0/workflows/{workflowId}/status', 'GET',
|
|
@@ -662,7 +662,7 @@ class IssueApi(object):
|
|
|
662
662
|
['application/json', 'text/json']) # noqa: E501
|
|
663
663
|
|
|
664
664
|
# Authentication setting
|
|
665
|
-
auth_settings = [] # noqa: E501
|
|
665
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
666
666
|
|
|
667
667
|
return self.api_client.call_api(
|
|
668
668
|
'/teamdbapi/v2.0/workflows/{workflowId}/types', 'GET',
|
|
@@ -747,7 +747,7 @@ class IssueApi(object):
|
|
|
747
747
|
['application/json', 'text/json']) # noqa: E501
|
|
748
748
|
|
|
749
749
|
# Authentication setting
|
|
750
|
-
auth_settings = [] # noqa: E501
|
|
750
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
751
751
|
|
|
752
752
|
return self.api_client.call_api(
|
|
753
753
|
'/teamdbapi/v2.0/workflows', 'GET',
|
|
@@ -832,7 +832,7 @@ class IssueApi(object):
|
|
|
832
832
|
['application/json', 'text/json']) # noqa: E501
|
|
833
833
|
|
|
834
834
|
# Authentication setting
|
|
835
|
-
auth_settings = [] # noqa: E501
|
|
835
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
836
836
|
|
|
837
837
|
return self.api_client.call_api(
|
|
838
838
|
'/teamdbapi/v2.0/issues', 'GET',
|
|
@@ -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
|
|
|
@@ -917,7 +1002,7 @@ class IssueApi(object):
|
|
|
917
1002
|
['application/json', 'text/json']) # noqa: E501
|
|
918
1003
|
|
|
919
1004
|
# Authentication setting
|
|
920
|
-
auth_settings = [] # noqa: E501
|
|
1005
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
921
1006
|
|
|
922
1007
|
return self.api_client.call_api(
|
|
923
1008
|
'/teamdbapi/v2.0/issue/current', 'GET',
|
|
@@ -1010,7 +1095,7 @@ class IssueApi(object):
|
|
|
1010
1095
|
['application/json', 'text/json']) # noqa: E501
|
|
1011
1096
|
|
|
1012
1097
|
# Authentication setting
|
|
1013
|
-
auth_settings = [] # noqa: E501
|
|
1098
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1014
1099
|
|
|
1015
1100
|
return self.api_client.call_api(
|
|
1016
1101
|
'/teamdbapi/v2.0/issue/{issueId}', 'GET',
|
|
@@ -1103,7 +1188,7 @@ class IssueApi(object):
|
|
|
1103
1188
|
['application/json', 'text/json']) # noqa: E501
|
|
1104
1189
|
|
|
1105
1190
|
# Authentication setting
|
|
1106
|
-
auth_settings = [] # noqa: E501
|
|
1191
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1107
1192
|
|
|
1108
1193
|
return self.api_client.call_api(
|
|
1109
1194
|
'/teamdbapi/v2.0/issue/humanId/{humanId}', 'GET',
|
|
@@ -1196,7 +1281,7 @@ class IssueApi(object):
|
|
|
1196
1281
|
['application/json', 'text/json']) # noqa: E501
|
|
1197
1282
|
|
|
1198
1283
|
# Authentication setting
|
|
1199
|
-
auth_settings = [] # noqa: E501
|
|
1284
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1200
1285
|
|
|
1201
1286
|
return self.api_client.call_api(
|
|
1202
1287
|
'/teamdbapi/v2.0/issue/{issueId}/children', 'GET',
|
|
@@ -1289,7 +1374,7 @@ class IssueApi(object):
|
|
|
1289
1374
|
['application/json', 'text/json']) # noqa: E501
|
|
1290
1375
|
|
|
1291
1376
|
# Authentication setting
|
|
1292
|
-
auth_settings = [] # noqa: E501
|
|
1377
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1293
1378
|
|
|
1294
1379
|
return self.api_client.call_api(
|
|
1295
1380
|
'/teamdbapi/v2.0/issue/{issueId}/parents', 'GET',
|
|
@@ -1394,7 +1479,7 @@ class IssueApi(object):
|
|
|
1394
1479
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
1395
1480
|
|
|
1396
1481
|
# Authentication setting
|
|
1397
|
-
auth_settings = [] # noqa: E501
|
|
1482
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1398
1483
|
|
|
1399
1484
|
return self.api_client.call_api(
|
|
1400
1485
|
'/teamdbapi/v2.0/issue/{issueId}/link', 'POST',
|
|
@@ -1503,7 +1588,7 @@ class IssueApi(object):
|
|
|
1503
1588
|
['application/json', 'text/json']) # noqa: E501
|
|
1504
1589
|
|
|
1505
1590
|
# Authentication setting
|
|
1506
|
-
auth_settings = [] # noqa: E501
|
|
1591
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1507
1592
|
|
|
1508
1593
|
return self.api_client.call_api(
|
|
1509
1594
|
'/teamdbapi/v2.0/issue/{issueId}/linkValueField', 'POST',
|
|
@@ -1608,7 +1693,7 @@ class IssueApi(object):
|
|
|
1608
1693
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
1609
1694
|
|
|
1610
1695
|
# Authentication setting
|
|
1611
|
-
auth_settings = [] # noqa: E501
|
|
1696
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1612
1697
|
|
|
1613
1698
|
return self.api_client.call_api(
|
|
1614
1699
|
'/teamdbapi/v2.0/issue/{issueId}/unlink', 'POST',
|
|
@@ -1713,7 +1798,7 @@ class IssueApi(object):
|
|
|
1713
1798
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
1714
1799
|
|
|
1715
1800
|
# Authentication setting
|
|
1716
|
-
auth_settings = [] # noqa: E501
|
|
1801
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1717
1802
|
|
|
1718
1803
|
return self.api_client.call_api(
|
|
1719
1804
|
'/teamdbapi/v2.0/issue/{issueId}', 'PUT',
|
teamdbapi/api/lap_api.py
CHANGED
|
@@ -108,7 +108,7 @@ class LapApi(object):
|
|
|
108
108
|
['application/json', 'text/json']) # noqa: E501
|
|
109
109
|
|
|
110
110
|
# Authentication setting
|
|
111
|
-
auth_settings = [] # noqa: E501
|
|
111
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
112
112
|
|
|
113
113
|
return self.api_client.call_api(
|
|
114
114
|
'/teamdbapi/v2.0/run/{runId}/addlap', 'POST',
|
|
@@ -201,7 +201,7 @@ class LapApi(object):
|
|
|
201
201
|
['application/json', 'text/json']) # noqa: E501
|
|
202
202
|
|
|
203
203
|
# Authentication setting
|
|
204
|
-
auth_settings = [] # noqa: E501
|
|
204
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
205
205
|
|
|
206
206
|
return self.api_client.call_api(
|
|
207
207
|
'/teamdbapi/v2.0/lap/{lapId}', 'DELETE',
|
|
@@ -286,7 +286,7 @@ class LapApi(object):
|
|
|
286
286
|
['application/json', 'text/json']) # noqa: E501
|
|
287
287
|
|
|
288
288
|
# Authentication setting
|
|
289
|
-
auth_settings = [] # noqa: E501
|
|
289
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
290
290
|
|
|
291
291
|
return self.api_client.call_api(
|
|
292
292
|
'/teamdbapi/v2.0/lap/current', 'GET',
|
|
@@ -379,7 +379,7 @@ class LapApi(object):
|
|
|
379
379
|
['application/json', 'text/json']) # noqa: E501
|
|
380
380
|
|
|
381
381
|
# Authentication setting
|
|
382
|
-
auth_settings = [] # noqa: E501
|
|
382
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
383
383
|
|
|
384
384
|
return self.api_client.call_api(
|
|
385
385
|
'/teamdbapi/v2.0/lap/{lapId}', 'GET',
|
|
@@ -472,7 +472,7 @@ class LapApi(object):
|
|
|
472
472
|
['application/json', 'text/json']) # noqa: E501
|
|
473
473
|
|
|
474
474
|
# Authentication setting
|
|
475
|
-
auth_settings = [] # noqa: E501
|
|
475
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
476
476
|
|
|
477
477
|
return self.api_client.call_api(
|
|
478
478
|
'/teamdbapi/v2.0/run/{runId}/laps', 'GET',
|
|
@@ -577,7 +577,7 @@ class LapApi(object):
|
|
|
577
577
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
578
578
|
|
|
579
579
|
# Authentication setting
|
|
580
|
-
auth_settings = [] # noqa: E501
|
|
580
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
581
581
|
|
|
582
582
|
return self.api_client.call_api(
|
|
583
583
|
'/teamdbapi/v2.0/lap/{lapId}', 'PUT',
|
|
@@ -690,7 +690,7 @@ class LapApi(object):
|
|
|
690
690
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
691
691
|
|
|
692
692
|
# Authentication setting
|
|
693
|
-
auth_settings = [] # noqa: E501
|
|
693
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
694
694
|
|
|
695
695
|
return self.api_client.call_api(
|
|
696
696
|
'/teamdbapi/v2.0/lap/{lapId}/propertyName/{propertyName}', 'PUT',
|
teamdbapi/api/lap_report_api.py
CHANGED
|
@@ -100,7 +100,7 @@ class LapReportApi(object):
|
|
|
100
100
|
['application/json', 'text/json']) # noqa: E501
|
|
101
101
|
|
|
102
102
|
# Authentication setting
|
|
103
|
-
auth_settings = [] # noqa: E501
|
|
103
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
104
104
|
|
|
105
105
|
return self.api_client.call_api(
|
|
106
106
|
'/teamdbapi/v2.0/disablelapreportreading', 'POST',
|
|
@@ -185,7 +185,7 @@ class LapReportApi(object):
|
|
|
185
185
|
['application/json', 'text/json']) # noqa: E501
|
|
186
186
|
|
|
187
187
|
# Authentication setting
|
|
188
|
-
auth_settings = [] # noqa: E501
|
|
188
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
189
189
|
|
|
190
190
|
return self.api_client.call_api(
|
|
191
191
|
'/teamdbapi/v2.0/enablelapreportreading', 'POST',
|
|
@@ -270,7 +270,7 @@ class LapReportApi(object):
|
|
|
270
270
|
['application/json', 'text/json']) # noqa: E501
|
|
271
271
|
|
|
272
272
|
# Authentication setting
|
|
273
|
-
auth_settings = [] # noqa: E501
|
|
273
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
274
274
|
|
|
275
275
|
return self.api_client.call_api(
|
|
276
276
|
'/teamdbapi/v2.0/LapReportOptions', 'GET',
|
|
@@ -379,7 +379,7 @@ class LapReportApi(object):
|
|
|
379
379
|
['application/json', 'text/json']) # noqa: E501
|
|
380
380
|
|
|
381
381
|
# Authentication setting
|
|
382
|
-
auth_settings = [] # noqa: E501
|
|
382
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
383
383
|
|
|
384
384
|
return self.api_client.call_api(
|
|
385
385
|
'/teamdbapi/v2.0/loadlapreport', 'POST',
|
|
@@ -476,7 +476,7 @@ class LapReportApi(object):
|
|
|
476
476
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
477
477
|
|
|
478
478
|
# Authentication setting
|
|
479
|
-
auth_settings = [] # noqa: E501
|
|
479
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
480
480
|
|
|
481
481
|
return self.api_client.call_api(
|
|
482
482
|
'/teamdbapi/v2.0/lapreportoptions', 'POST',
|
teamdbapi/api/model_field_api.py
CHANGED
|
@@ -112,7 +112,7 @@ class ModelFieldApi(object):
|
|
|
112
112
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
113
113
|
|
|
114
114
|
# Authentication setting
|
|
115
|
-
auth_settings = [] # noqa: E501
|
|
115
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
116
116
|
|
|
117
117
|
return self.api_client.call_api(
|
|
118
118
|
'/teamdbapi/v2.0/modelfield', 'POST',
|
|
@@ -205,7 +205,7 @@ class ModelFieldApi(object):
|
|
|
205
205
|
['application/json', 'text/json']) # noqa: E501
|
|
206
206
|
|
|
207
207
|
# Authentication setting
|
|
208
|
-
auth_settings = [] # noqa: E501
|
|
208
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
209
209
|
|
|
210
210
|
return self.api_client.call_api(
|
|
211
211
|
'/teamdbapi/v2.0/modelfield/{modelFieldId}', 'DELETE',
|
|
@@ -298,7 +298,7 @@ class ModelFieldApi(object):
|
|
|
298
298
|
['application/json', 'text/json']) # noqa: E501
|
|
299
299
|
|
|
300
300
|
# Authentication setting
|
|
301
|
-
auth_settings = [] # noqa: E501
|
|
301
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
302
302
|
|
|
303
303
|
return self.api_client.call_api(
|
|
304
304
|
'/teamdbapi/v2.0/modelfield/{modelFieldId}', 'GET',
|
|
@@ -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
|
|
@@ -391,7 +391,7 @@ class ModelFieldApi(object):
|
|
|
391
391
|
['application/json', 'text/json']) # noqa: E501
|
|
392
392
|
|
|
393
393
|
# Authentication setting
|
|
394
|
-
auth_settings = [] # noqa: E501
|
|
394
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
395
395
|
|
|
396
396
|
return self.api_client.call_api(
|
|
397
397
|
'/teamdbapi/v2.0/modelfield/{modelFieldId}/auths', 'GET',
|
|
@@ -484,7 +484,7 @@ class ModelFieldApi(object):
|
|
|
484
484
|
['application/json', 'text/json']) # noqa: E501
|
|
485
485
|
|
|
486
486
|
# Authentication setting
|
|
487
|
-
auth_settings = [] # noqa: E501
|
|
487
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
488
488
|
|
|
489
489
|
return self.api_client.call_api(
|
|
490
490
|
'/teamdbapi/v2.0/modelfields', 'GET',
|
|
@@ -589,7 +589,7 @@ class ModelFieldApi(object):
|
|
|
589
589
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
590
590
|
|
|
591
591
|
# Authentication setting
|
|
592
|
-
auth_settings = [] # noqa: E501
|
|
592
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
593
593
|
|
|
594
594
|
return self.api_client.call_api(
|
|
595
595
|
'/teamdbapi/v2.0/modelfield/{modelFieldId}', 'PUT',
|
|
@@ -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,
|
|
@@ -690,7 +690,7 @@ class ModelFieldApi(object):
|
|
|
690
690
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
691
691
|
|
|
692
692
|
# Authentication setting
|
|
693
|
-
auth_settings = [] # noqa: E501
|
|
693
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
694
694
|
|
|
695
695
|
return self.api_client.call_api(
|
|
696
696
|
'/teamdbapi/v2.0/modelfield/{modelFieldId}/auth', 'PUT',
|
teamdbapi/api/mounting_api.py
CHANGED
|
@@ -108,7 +108,7 @@ class MountingApi(object):
|
|
|
108
108
|
['application/json', 'text/json']) # noqa: E501
|
|
109
109
|
|
|
110
110
|
# Authentication setting
|
|
111
|
-
auth_settings = [] # noqa: E501
|
|
111
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
112
112
|
|
|
113
113
|
return self.api_client.call_api(
|
|
114
114
|
'/teamdbapi/v2.0/run/{runId}/mounting', 'GET',
|
|
@@ -201,7 +201,7 @@ class MountingApi(object):
|
|
|
201
201
|
['application/json', 'text/json']) # noqa: E501
|
|
202
202
|
|
|
203
203
|
# Authentication setting
|
|
204
|
-
auth_settings = [] # noqa: E501
|
|
204
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
205
205
|
|
|
206
206
|
return self.api_client.call_api(
|
|
207
207
|
'/teamdbapi/v2.0/mounting/{revisionId}/content', 'GET',
|
|
@@ -294,7 +294,7 @@ class MountingApi(object):
|
|
|
294
294
|
['application/json', 'text/json']) # noqa: E501
|
|
295
295
|
|
|
296
296
|
# Authentication setting
|
|
297
|
-
auth_settings = [] # noqa: E501
|
|
297
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
298
298
|
|
|
299
299
|
return self.api_client.call_api(
|
|
300
300
|
'/teamdbapi/v2.0/mounting/{revisionId}/includemissings/content', 'GET',
|