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.
Files changed (53) hide show
  1. teamdbapi/api/assembly_api.py +27 -27
  2. teamdbapi/api/car_api.py +9 -9
  3. teamdbapi/api/component_api.py +12 -12
  4. teamdbapi/api/config_api.py +1 -1
  5. teamdbapi/api/criteria_api.py +6 -6
  6. teamdbapi/api/edit_api.py +6 -6
  7. teamdbapi/api/event_api.py +11 -11
  8. teamdbapi/api/fixed_field_api.py +3 -3
  9. teamdbapi/api/group_api.py +6 -6
  10. teamdbapi/api/import_export_api.py +11 -11
  11. teamdbapi/api/issue_api.py +103 -18
  12. teamdbapi/api/lap_api.py +7 -7
  13. teamdbapi/api/lap_report_api.py +5 -5
  14. teamdbapi/api/model_field_api.py +11 -11
  15. teamdbapi/api/mounting_api.py +3 -3
  16. teamdbapi/api/notes_authorization_api.py +5 -5
  17. teamdbapi/api/overall_api.py +1 -1
  18. teamdbapi/api/parameter_api.py +15 -15
  19. teamdbapi/api/parameter_binding_api.py +5 -5
  20. teamdbapi/api/part_api.py +9 -9
  21. teamdbapi/api/report_api.py +3 -3
  22. teamdbapi/api/revision_api.py +20 -20
  23. teamdbapi/api/revision_editor_selector_api.py +9 -9
  24. teamdbapi/api/run_api.py +6 -6
  25. teamdbapi/api/script_api.py +5 -5
  26. teamdbapi/api/session_api.py +7 -7
  27. teamdbapi/api/target_api.py +4 -4
  28. teamdbapi/api/team_db_list_api.py +10 -10
  29. teamdbapi/api/team_db_view_api.py +5 -5
  30. teamdbapi/api/tire_api.py +6 -6
  31. teamdbapi/api/tire_set_api.py +5 -5
  32. teamdbapi/api/track_api.py +5 -5
  33. teamdbapi/api/track_layout_api.py +5 -5
  34. teamdbapi/api/update_request_api.py +2 -2
  35. teamdbapi/api/user_api.py +5 -5
  36. teamdbapi/api/value_field_api.py +6 -6
  37. teamdbapi/api/version_api.py +4 -4
  38. teamdbapi/configuration.py +7 -0
  39. teamdbapi/models/calibration.py +4 -4
  40. teamdbapi/models/group.py +2 -2
  41. teamdbapi/models/lap.py +2 -2
  42. teamdbapi/models/lap_report_options.py +2 -2
  43. teamdbapi/models/parameter.py +2 -2
  44. teamdbapi/models/part.py +35 -7
  45. teamdbapi/models/part_count.py +33 -5
  46. teamdbapi/models/session.py +2 -2
  47. teamdbapi/models/target.py +2 -2
  48. teamdbapi/models/team_db_list_item.py +31 -3
  49. teamdbapi-3.12.0.dist-info/METADATA +135 -0
  50. {teamdbapi-3.10.1.dist-info → teamdbapi-3.12.0.dist-info}/RECORD +52 -52
  51. {teamdbapi-3.10.1.dist-info → teamdbapi-3.12.0.dist-info}/licenses/LICENSE +1 -1
  52. teamdbapi-3.10.1.dist-info/METADATA +0 -91
  53. {teamdbapi-3.10.1.dist-info → teamdbapi-3.12.0.dist-info}/WHEEL +0 -0
@@ -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 authorizations for a given Id corresponding to an Event or a Car # noqa: E501
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 authorizations for a given Id corresponding to an Event or a Car # noqa: E501
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
@@ -108,7 +108,7 @@ class NotesAuthorizationApi(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/itembase/{itembaseId}/notesauthorizations', 'GET',
@@ -209,7 +209,7 @@ class NotesAuthorizationApi(object):
209
209
  ['application/json', 'text/json']) # noqa: E501
210
210
 
211
211
  # Authentication setting
212
- auth_settings = [] # noqa: E501
212
+ auth_settings = ['TdbApiKey'] # noqa: E501
213
213
 
214
214
  return self.api_client.call_api(
215
215
  '/teamdbapi/v2.0/itembase/{itembaseId}/hasacces', 'GET',
@@ -306,7 +306,7 @@ class NotesAuthorizationApi(object):
306
306
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
307
307
 
308
308
  # Authentication setting
309
- auth_settings = [] # noqa: E501
309
+ auth_settings = ['TdbApiKey'] # noqa: E501
310
310
 
311
311
  return self.api_client.call_api(
312
312
  '/teamdbapi/v2.0/notesauthorizations', 'POST',
@@ -100,7 +100,7 @@ class OverallApi(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/overall/current', 'GET',
@@ -108,7 +108,7 @@ class ParameterApi(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/currentVersion/parameter', 'GET',
@@ -209,7 +209,7 @@ class ParameterApi(object):
209
209
  ['application/json', 'text/json']) # noqa: E501
210
210
 
211
211
  # Authentication setting
212
- auth_settings = [] # noqa: E501
212
+ auth_settings = ['TdbApiKey'] # noqa: E501
213
213
 
214
214
  return self.api_client.call_api(
215
215
  '/teamdbapi/v2.0/version/{versionId}/parameter/{paramId}', 'GET',
@@ -310,7 +310,7 @@ class ParameterApi(object):
310
310
  ['application/json', 'text/json']) # noqa: E501
311
311
 
312
312
  # Authentication setting
313
- auth_settings = [] # noqa: E501
313
+ auth_settings = ['TdbApiKey'] # noqa: E501
314
314
 
315
315
  return self.api_client.call_api(
316
316
  '/teamdbapi/v2.0/version/{versionId}/parameter', 'GET',
@@ -403,7 +403,7 @@ class ParameterApi(object):
403
403
  ['application/json', 'text/json']) # noqa: E501
404
404
 
405
405
  # Authentication setting
406
- auth_settings = [] # noqa: E501
406
+ auth_settings = ['TdbApiKey'] # noqa: E501
407
407
 
408
408
  return self.api_client.call_api(
409
409
  '/teamdbapi/v2.0/version/{versionId}/parameters', 'GET',
@@ -504,7 +504,7 @@ class ParameterApi(object):
504
504
  ['application/json', 'text/json']) # noqa: E501
505
505
 
506
506
  # Authentication setting
507
- auth_settings = [] # noqa: E501
507
+ auth_settings = ['TdbApiKey'] # noqa: E501
508
508
 
509
509
  return self.api_client.call_api(
510
510
  '/teamdbapi/v2.0/version/{versionId}/group/{groupId}/parameters', 'GET',
@@ -609,7 +609,7 @@ class ParameterApi(object):
609
609
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
610
610
 
611
611
  # Authentication setting
612
- auth_settings = [] # noqa: E501
612
+ auth_settings = ['TdbApiKey'] # noqa: E501
613
613
 
614
614
  return self.api_client.call_api(
615
615
  '/teamdbapi/v2.0/version/{versionId}/parameter/import', 'POST',
@@ -724,7 +724,7 @@ class ParameterApi(object):
724
724
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
725
725
 
726
726
  # Authentication setting
727
- auth_settings = [] # noqa: E501
727
+ auth_settings = ['TdbApiKey'] # noqa: E501
728
728
 
729
729
  return self.api_client.call_api(
730
730
  '/teamdbapi/v2.0/version/{versionId}/group/{groupId}/moveparameter', 'POST',
@@ -847,7 +847,7 @@ class ParameterApi(object):
847
847
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
848
848
 
849
849
  # Authentication setting
850
- auth_settings = [] # noqa: E501
850
+ auth_settings = ['TdbApiKey'] # noqa: E501
851
851
 
852
852
  return self.api_client.call_api(
853
853
  '/teamdbapi/v2.0/version/{versionId}/group/{groupId}/moveparameterupdaterevision', 'POST',
@@ -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 reseted (required)
878
- :param list[str] param_ids: The parameters list to which the responsibles will be reseted (required)
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 reseted (required)
900
- :param list[str] param_ids: The parameters list to which the responsibles will be reseted (required)
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.
@@ -952,7 +952,7 @@ class ParameterApi(object):
952
952
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
953
953
 
954
954
  # Authentication setting
955
- auth_settings = [] # noqa: E501
955
+ auth_settings = ['TdbApiKey'] # noqa: E501
956
956
 
957
957
  return self.api_client.call_api(
958
958
  '/teamdbapi/v2.0/version/{versionId}/parameter/resetresponsible', 'POST',
@@ -1045,7 +1045,7 @@ class ParameterApi(object):
1045
1045
  ['application/json', 'text/json']) # noqa: E501
1046
1046
 
1047
1047
  # Authentication setting
1048
- auth_settings = [] # noqa: E501
1048
+ auth_settings = ['TdbApiKey'] # noqa: E501
1049
1049
 
1050
1050
  return self.api_client.call_api(
1051
1051
  '/teamdbapi/v2.0/parameter/{parameterId}/select', 'POST',
@@ -1158,7 +1158,7 @@ class ParameterApi(object):
1158
1158
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1159
1159
 
1160
1160
  # Authentication setting
1161
- auth_settings = [] # noqa: E501
1161
+ auth_settings = ['TdbApiKey'] # noqa: E501
1162
1162
 
1163
1163
  return self.api_client.call_api(
1164
1164
  '/teamdbapi/v2.0/version/{versionId}/parameter/setresponsible', 'POST',
@@ -114,7 +114,7 @@ class ParameterBindingApi(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/parameterbinding', 'POST',
@@ -207,7 +207,7 @@ class ParameterBindingApi(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/parameterbinding/{parameterBindingId}', 'DELETE',
@@ -292,7 +292,7 @@ class ParameterBindingApi(object):
292
292
  ['application/json', 'text/json']) # noqa: E501
293
293
 
294
294
  # Authentication setting
295
- auth_settings = [] # noqa: E501
295
+ auth_settings = ['TdbApiKey'] # noqa: E501
296
296
 
297
297
  return self.api_client.call_api(
298
298
  '/teamdbapi/v2.0/parameterbindings', 'GET',
@@ -385,7 +385,7 @@ class ParameterBindingApi(object):
385
385
  ['application/json', 'text/json']) # noqa: E501
386
386
 
387
387
  # Authentication setting
388
- auth_settings = [] # noqa: E501
388
+ auth_settings = ['TdbApiKey'] # noqa: E501
389
389
 
390
390
  return self.api_client.call_api(
391
391
  '/teamdbapi/v2.0/parameterbinding/{parameterBindingId}', 'GET',
@@ -490,7 +490,7 @@ class ParameterBindingApi(object):
490
490
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
491
491
 
492
492
  # Authentication setting
493
- auth_settings = [] # noqa: E501
493
+ auth_settings = ['TdbApiKey'] # noqa: E501
494
494
 
495
495
  return self.api_client.call_api(
496
496
  '/teamdbapi/v2.0/parameterbinding/{parameterBindingId}', 'PUT',
teamdbapi/api/part_api.py CHANGED
@@ -112,7 +112,7 @@ class PartApi(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/part/carparameter', 'POST',
@@ -213,7 +213,7 @@ class PartApi(object):
213
213
  ['application/json', 'text/json']) # noqa: E501
214
214
 
215
215
  # Authentication setting
216
- auth_settings = [] # noqa: E501
216
+ auth_settings = ['TdbApiKey'] # noqa: E501
217
217
 
218
218
  return self.api_client.call_api(
219
219
  '/teamdbapi/v2.0/part/{partId}/carParameter/{parameterId}', 'DELETE',
@@ -306,7 +306,7 @@ class PartApi(object):
306
306
  ['application/json', 'text/json']) # noqa: E501
307
307
 
308
308
  # Authentication setting
309
- auth_settings = [] # noqa: E501
309
+ auth_settings = ['TdbApiKey'] # noqa: E501
310
310
 
311
311
  return self.api_client.call_api(
312
312
  '/teamdbapi/v2.0/part/{partId}', 'GET',
@@ -399,7 +399,7 @@ class PartApi(object):
399
399
  ['application/json', 'text/json']) # noqa: E501
400
400
 
401
401
  # Authentication setting
402
- auth_settings = [] # noqa: E501
402
+ auth_settings = ['TdbApiKey'] # noqa: E501
403
403
 
404
404
  return self.api_client.call_api(
405
405
  '/teamdbapi/v2.0/partnumber/{partNumber}/part', 'GET',
@@ -492,7 +492,7 @@ class PartApi(object):
492
492
  ['application/json', 'text/json']) # noqa: E501
493
493
 
494
494
  # Authentication setting
495
- auth_settings = [] # noqa: E501
495
+ auth_settings = ['TdbApiKey'] # noqa: E501
496
496
 
497
497
  return self.api_client.call_api(
498
498
  '/teamdbapi/v2.0/part/{partId}/carparameters', 'GET',
@@ -585,7 +585,7 @@ class PartApi(object):
585
585
  ['application/json', 'text/json']) # noqa: E501
586
586
 
587
587
  # Authentication setting
588
- auth_settings = [] # noqa: E501
588
+ auth_settings = ['TdbApiKey'] # noqa: E501
589
589
 
590
590
  return self.api_client.call_api(
591
591
  '/teamdbapi/v2.0/part/{partId}/content', 'GET',
@@ -670,7 +670,7 @@ class PartApi(object):
670
670
  ['application/json', 'text/json']) # noqa: E501
671
671
 
672
672
  # Authentication setting
673
- auth_settings = [] # noqa: E501
673
+ auth_settings = ['TdbApiKey'] # noqa: E501
674
674
 
675
675
  return self.api_client.call_api(
676
676
  '/teamdbapi/v2.0/parts', 'GET',
@@ -767,7 +767,7 @@ class PartApi(object):
767
767
 
768
768
  body_params = None
769
769
  # Authentication setting
770
- auth_settings = [] # noqa: E501
770
+ auth_settings = ['TdbApiKey'] # noqa: E501
771
771
 
772
772
  return self.api_client.call_api(
773
773
  '/teamdbapi/v2.0/part/{partId}/associatewithcriteriaset', 'POST',
@@ -864,7 +864,7 @@ class PartApi(object):
864
864
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
865
865
 
866
866
  # Authentication setting
867
- auth_settings = [] # noqa: E501
867
+ auth_settings = ['TdbApiKey'] # noqa: E501
868
868
 
869
869
  return self.api_client.call_api(
870
870
  '/teamdbapi/v2.0/part/carParameter', 'PUT',
@@ -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 have to provide the file extension for example : C:/path/MyFile.pdf (required)
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 have to provide the file extension for example : C:/path/MyFile.pdf (required)
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.
@@ -124,7 +124,7 @@ class ReportApi(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/exportreport', 'POST',
@@ -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 have to 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
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 have to 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
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
@@ -122,7 +122,7 @@ class RevisionApi(object):
122
122
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
123
123
 
124
124
  # Authentication setting
125
- auth_settings = [] # noqa: E501
125
+ auth_settings = ['TdbApiKey'] # noqa: E501
126
126
 
127
127
  return self.api_client.call_api(
128
128
  '/teamdbapi/v2.0/version/{versionId}/revision', 'POST',
@@ -251,7 +251,7 @@ class RevisionApi(object):
251
251
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
252
252
 
253
253
  # Authentication setting
254
- auth_settings = [] # noqa: E501
254
+ auth_settings = ['TdbApiKey'] # noqa: E501
255
255
 
256
256
  return self.api_client.call_api(
257
257
  '/teamdbapi/v2.0/partNumber/{partNumber}/serialNumber/{serialNumber}/parameterPath/{parameterPath}/targetName/{targetName}/revision', 'POST',
@@ -344,7 +344,7 @@ class RevisionApi(object):
344
344
  ['application/json', 'text/json']) # noqa: E501
345
345
 
346
346
  # Authentication setting
347
- auth_settings = [] # noqa: E501
347
+ auth_settings = ['TdbApiKey'] # noqa: E501
348
348
 
349
349
  return self.api_client.call_api(
350
350
  '/teamdbapi/v2.0/revision/{revisionId}', 'DELETE',
@@ -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 have to provide the file extension for example : C:/path/MyFile.m (required)
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 have to provide the file extension for example : C:/path/MyFile.m (required)
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.
@@ -453,7 +453,7 @@ class RevisionApi(object):
453
453
  ['application/json', 'text/json']) # noqa: E501
454
454
 
455
455
  # Authentication setting
456
- auth_settings = [] # noqa: E501
456
+ auth_settings = ['TdbApiKey'] # noqa: E501
457
457
 
458
458
  return self.api_client.call_api(
459
459
  '/teamdbapi/v2.0/revision/{revisionId}/export', 'POST',
@@ -554,7 +554,7 @@ class RevisionApi(object):
554
554
  ['application/json', 'text/json']) # noqa: E501
555
555
 
556
556
  # Authentication setting
557
- auth_settings = [] # noqa: E501
557
+ auth_settings = ['TdbApiKey'] # noqa: E501
558
558
 
559
559
  return self.api_client.call_api(
560
560
  '/teamdbapi/v2.0/partNumber/{partNumber}/serialNumber/{serialNumber}/revisions', 'GET',
@@ -671,7 +671,7 @@ class RevisionApi(object):
671
671
  ['application/json', 'text/json']) # noqa: E501
672
672
 
673
673
  # Authentication setting
674
- auth_settings = [] # noqa: E501
674
+ auth_settings = ['TdbApiKey'] # noqa: E501
675
675
 
676
676
  return self.api_client.call_api(
677
677
  '/teamdbapi/v2.0/partNumber/{partNumber}/serialNumber/{serialNumber}/parameterPath/{parameterPath}/targetName/{targetName}/revisions', 'GET',
@@ -764,7 +764,7 @@ class RevisionApi(object):
764
764
  ['application/json', 'text/json']) # noqa: E501
765
765
 
766
766
  # Authentication setting
767
- auth_settings = [] # noqa: E501
767
+ auth_settings = ['TdbApiKey'] # noqa: E501
768
768
 
769
769
  return self.api_client.call_api(
770
770
  '/teamdbapi/v2.0/revision/{revisionId}', 'GET',
@@ -865,7 +865,7 @@ class RevisionApi(object):
865
865
  ['application/json', 'text/json']) # noqa: E501
866
866
 
867
867
  # Authentication setting
868
- auth_settings = [] # noqa: E501
868
+ auth_settings = ['TdbApiKey'] # noqa: E501
869
869
 
870
870
  return self.api_client.call_api(
871
871
  '/teamdbapi/v2.0/assembly/{assemblyId}/parameter/{parameterId}/revision', 'GET',
@@ -958,7 +958,7 @@ class RevisionApi(object):
958
958
  ['application/json', 'text/json']) # noqa: E501
959
959
 
960
960
  # Authentication setting
961
- auth_settings = [] # noqa: E501
961
+ auth_settings = ['TdbApiKey'] # noqa: E501
962
962
 
963
963
  return self.api_client.call_api(
964
964
  '/teamdbapi/v2.0/version/{versionId}/revisions', 'GET',
@@ -1059,7 +1059,7 @@ class RevisionApi(object):
1059
1059
  ['application/json', 'text/json']) # noqa: E501
1060
1060
 
1061
1061
  # Authentication setting
1062
- auth_settings = [] # noqa: E501
1062
+ auth_settings = ['TdbApiKey'] # noqa: E501
1063
1063
 
1064
1064
  return self.api_client.call_api(
1065
1065
  '/teamdbapi/v2.0/version/{versionId}/parameter/{parameterId}/revisions', 'GET',
@@ -1180,7 +1180,7 @@ class RevisionApi(object):
1180
1180
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1181
1181
 
1182
1182
  # Authentication setting
1183
- auth_settings = [] # noqa: E501
1183
+ auth_settings = ['TdbApiKey'] # noqa: E501
1184
1184
 
1185
1185
  return self.api_client.call_api(
1186
1186
  '/teamdbapi/v2.0/versionFrom/{versionFromId}/versionTo/{versionToId}/withGroupRevisionCopy/{copyGroupRevisions}/revisions', 'POST',
@@ -1285,7 +1285,7 @@ class RevisionApi(object):
1285
1285
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1286
1286
 
1287
1287
  # Authentication setting
1288
- auth_settings = [] # noqa: E501
1288
+ auth_settings = ['TdbApiKey'] # noqa: E501
1289
1289
 
1290
1290
  return self.api_client.call_api(
1291
1291
  '/teamdbapi/v2.0/version/{versionId}/revisions/import', 'POST',
@@ -1390,7 +1390,7 @@ class RevisionApi(object):
1390
1390
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1391
1391
 
1392
1392
  # Authentication setting
1393
- auth_settings = [] # noqa: E501
1393
+ auth_settings = ['TdbApiKey'] # noqa: E501
1394
1394
 
1395
1395
  return self.api_client.call_api(
1396
1396
  '/teamdbapi/v2.0/version/{versionId}/revision/exists', 'POST',
@@ -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 have to 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
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 have to 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
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
@@ -1507,7 +1507,7 @@ class RevisionApi(object):
1507
1507
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1508
1508
 
1509
1509
  # Authentication setting
1510
- auth_settings = [] # noqa: E501
1510
+ auth_settings = ['TdbApiKey'] # noqa: E501
1511
1511
 
1512
1512
  return self.api_client.call_api(
1513
1513
  '/teamdbapi/v2.0/version/{versionId}/revision/{revisionId}', 'PUT',
@@ -116,7 +116,7 @@ class RevisionEditorSelectorApi(object):
116
116
  ['application/json', 'text/json']) # noqa: E501
117
117
 
118
118
  # Authentication setting
119
- auth_settings = [] # noqa: E501
119
+ auth_settings = ['TdbApiKey'] # noqa: E501
120
120
 
121
121
  return self.api_client.call_api(
122
122
  '/teamdbapi/v2.0/event/{eventId}/clearrevisionselectorfilters', 'POST',
@@ -217,7 +217,7 @@ class RevisionEditorSelectorApi(object):
217
217
  ['application/json', 'text/json']) # noqa: E501
218
218
 
219
219
  # Authentication setting
220
- auth_settings = [] # noqa: E501
220
+ auth_settings = ['TdbApiKey'] # noqa: E501
221
221
 
222
222
  return self.api_client.call_api(
223
223
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/revisioneditorvalue', 'GET',
@@ -318,7 +318,7 @@ class RevisionEditorSelectorApi(object):
318
318
  ['application/json', 'text/json']) # noqa: E501
319
319
 
320
320
  # Authentication setting
321
- auth_settings = [] # noqa: E501
321
+ auth_settings = ['TdbApiKey'] # noqa: E501
322
322
 
323
323
  return self.api_client.call_api(
324
324
  '/teamdbapi/v2.0/event/{eventId}/revisionselectorfilters', 'GET',
@@ -419,7 +419,7 @@ class RevisionEditorSelectorApi(object):
419
419
  ['application/json', 'text/json']) # noqa: E501
420
420
 
421
421
  # Authentication setting
422
- auth_settings = [] # noqa: E501
422
+ auth_settings = ['TdbApiKey'] # noqa: E501
423
423
 
424
424
  return self.api_client.call_api(
425
425
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/revisionselectorvalues', 'GET',
@@ -520,7 +520,7 @@ class RevisionEditorSelectorApi(object):
520
520
  ['application/json', 'text/json']) # noqa: E501
521
521
 
522
522
  # Authentication setting
523
- auth_settings = [] # noqa: E501
523
+ auth_settings = ['TdbApiKey'] # noqa: E501
524
524
 
525
525
  return self.api_client.call_api(
526
526
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/revisionselectorvalue', 'GET',
@@ -633,7 +633,7 @@ class RevisionEditorSelectorApi(object):
633
633
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
634
634
 
635
635
  # Authentication setting
636
- auth_settings = [] # noqa: E501
636
+ auth_settings = ['TdbApiKey'] # noqa: E501
637
637
 
638
638
  return self.api_client.call_api(
639
639
  '/teamdbapi/v2.0/event/{eventId}/removerevisionselectorfilters', 'POST',
@@ -746,7 +746,7 @@ class RevisionEditorSelectorApi(object):
746
746
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
747
747
 
748
748
  # Authentication setting
749
- auth_settings = [] # noqa: E501
749
+ auth_settings = ['TdbApiKey'] # noqa: E501
750
750
 
751
751
  return self.api_client.call_api(
752
752
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/revisioneditorvalue', 'POST',
@@ -859,7 +859,7 @@ class RevisionEditorSelectorApi(object):
859
859
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
860
860
 
861
861
  # Authentication setting
862
- auth_settings = [] # noqa: E501
862
+ auth_settings = ['TdbApiKey'] # noqa: E501
863
863
 
864
864
  return self.api_client.call_api(
865
865
  '/teamdbapi/v2.0/event/{eventId}/revisionselectorfilters', 'POST',
@@ -972,7 +972,7 @@ class RevisionEditorSelectorApi(object):
972
972
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
973
973
 
974
974
  # Authentication setting
975
- auth_settings = [] # noqa: E501
975
+ auth_settings = ['TdbApiKey'] # noqa: E501
976
976
 
977
977
  return self.api_client.call_api(
978
978
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/revisionselectorvalue', 'POST',
teamdbapi/api/run_api.py CHANGED
@@ -108,7 +108,7 @@ class RunApi(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/session/{sessionId}/run', 'POST',
@@ -201,7 +201,7 @@ class RunApi(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/run/{runId}', 'DELETE',
@@ -286,7 +286,7 @@ class RunApi(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/run/current', 'GET',
@@ -379,7 +379,7 @@ class RunApi(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/run/{runId}', 'GET',
@@ -472,7 +472,7 @@ class RunApi(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/session/{sessionId}/runs', 'GET',
@@ -585,7 +585,7 @@ class RunApi(object):
585
585
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
586
586
 
587
587
  # Authentication setting
588
- auth_settings = [] # noqa: E501
588
+ auth_settings = ['TdbApiKey'] # noqa: E501
589
589
 
590
590
  return self.api_client.call_api(
591
591
  '/teamdbapi/v2.0/run/{runId}/propertyName/{propertyName}', 'PUT',