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
@@ -108,7 +108,7 @@ class ScriptApi(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/script/{id}/execute', 'POST',
@@ -201,7 +201,7 @@ class ScriptApi(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/script/executebyname', 'POST',
@@ -294,7 +294,7 @@ class ScriptApi(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/script/{id}', 'GET',
@@ -387,7 +387,7 @@ class ScriptApi(object):
387
387
  ['application/json', 'text/json']) # noqa: E501
388
388
 
389
389
  # Authentication setting
390
- auth_settings = [] # noqa: E501
390
+ auth_settings = ['TdbApiKey'] # noqa: E501
391
391
 
392
392
  return self.api_client.call_api(
393
393
  '/teamdbapi/v2.0/script', 'GET',
@@ -472,7 +472,7 @@ class ScriptApi(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/scripts', 'GET',
@@ -120,7 +120,7 @@ class SessionApi(object):
120
120
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
121
121
 
122
122
  # Authentication setting
123
- auth_settings = [] # noqa: E501
123
+ auth_settings = ['TdbApiKey'] # noqa: E501
124
124
 
125
125
  return self.api_client.call_api(
126
126
  '/teamdbapi/v2.0/car/{carId}/session', 'POST',
@@ -213,7 +213,7 @@ class SessionApi(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/session/{sessionId}', 'DELETE',
@@ -298,7 +298,7 @@ class SessionApi(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/session/current', 'GET',
@@ -391,7 +391,7 @@ class SessionApi(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/session/{sessionId}', 'GET',
@@ -484,7 +484,7 @@ class SessionApi(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/car/{carId}/sessions', 'GET',
@@ -589,7 +589,7 @@ class SessionApi(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/session/{sessionId}', 'PUT',
@@ -702,7 +702,7 @@ class SessionApi(object):
702
702
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
703
703
 
704
704
  # Authentication setting
705
- auth_settings = [] # noqa: E501
705
+ auth_settings = ['TdbApiKey'] # noqa: E501
706
706
 
707
707
  return self.api_client.call_api(
708
708
  '/teamdbapi/v2.0/session/{sessionId}/propertyName/{propertyName}', 'PUT',
@@ -114,7 +114,7 @@ class TargetApi(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/target', 'POST',
@@ -207,7 +207,7 @@ class TargetApi(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/target/{id}', 'GET',
@@ -292,7 +292,7 @@ class TargetApi(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/targets', 'GET',
@@ -397,7 +397,7 @@ class TargetApi(object):
397
397
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
398
398
 
399
399
  # Authentication setting
400
- auth_settings = [] # noqa: E501
400
+ auth_settings = ['TdbApiKey'] # noqa: E501
401
401
 
402
402
  return self.api_client.call_api(
403
403
  '/teamdbapi/v2.0/target/{targetId}', 'PUT',
@@ -112,7 +112,7 @@ class TeamDBListApi(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/teamdblist', 'POST',
@@ -209,7 +209,7 @@ class TeamDBListApi(object):
209
209
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+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/teamdblistitem', 'POST',
@@ -302,7 +302,7 @@ class TeamDBListApi(object):
302
302
  ['application/json', 'text/json']) # noqa: E501
303
303
 
304
304
  # Authentication setting
305
- auth_settings = [] # noqa: E501
305
+ auth_settings = ['TdbApiKey'] # noqa: E501
306
306
 
307
307
  return self.api_client.call_api(
308
308
  '/teamdbapi/v2.0/teamdblist/{listId}', 'DELETE',
@@ -395,7 +395,7 @@ class TeamDBListApi(object):
395
395
  ['application/json', 'text/json']) # noqa: E501
396
396
 
397
397
  # Authentication setting
398
- auth_settings = [] # noqa: E501
398
+ auth_settings = ['TdbApiKey'] # noqa: E501
399
399
 
400
400
  return self.api_client.call_api(
401
401
  '/teamdbapi/v2.0/teamdblistitem/{itemId}', 'DELETE',
@@ -488,7 +488,7 @@ class TeamDBListApi(object):
488
488
  ['application/json', 'text/json']) # noqa: E501
489
489
 
490
490
  # Authentication setting
491
- auth_settings = [] # noqa: E501
491
+ auth_settings = ['TdbApiKey'] # noqa: E501
492
492
 
493
493
  return self.api_client.call_api(
494
494
  '/teamdbapi/v2.0/teamdblist/{listId}', 'GET',
@@ -581,7 +581,7 @@ class TeamDBListApi(object):
581
581
  ['application/json', 'text/json']) # noqa: E501
582
582
 
583
583
  # Authentication setting
584
- auth_settings = [] # noqa: E501
584
+ auth_settings = ['TdbApiKey'] # noqa: E501
585
585
 
586
586
  return self.api_client.call_api(
587
587
  '/teamdbapi/v2.0/teamdblistitem/{itemId}', 'GET',
@@ -674,7 +674,7 @@ class TeamDBListApi(object):
674
674
  ['application/json', 'text/json']) # noqa: E501
675
675
 
676
676
  # Authentication setting
677
- auth_settings = [] # noqa: E501
677
+ auth_settings = ['TdbApiKey'] # noqa: E501
678
678
 
679
679
  return self.api_client.call_api(
680
680
  '/teamdbapi/v2.0/teamdblist/{listId}/items', 'GET',
@@ -759,7 +759,7 @@ class TeamDBListApi(object):
759
759
  ['application/json', 'text/json']) # noqa: E501
760
760
 
761
761
  # Authentication setting
762
- auth_settings = [] # noqa: E501
762
+ auth_settings = ['TdbApiKey'] # noqa: E501
763
763
 
764
764
  return self.api_client.call_api(
765
765
  '/teamdbapi/v2.0/teamdblists', 'GET',
@@ -864,7 +864,7 @@ class TeamDBListApi(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/teamdblist/{listId}', 'PUT',
@@ -969,7 +969,7 @@ class TeamDBListApi(object):
969
969
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
970
970
 
971
971
  # Authentication setting
972
- auth_settings = [] # noqa: E501
972
+ auth_settings = ['TdbApiKey'] # noqa: E501
973
973
 
974
974
  return self.api_client.call_api(
975
975
  '/teamdbapi/v2.0/teamdblistitem/{itemId}', 'PUT',
@@ -112,7 +112,7 @@ class TeamDBViewApi(object):
112
112
  ['application/json', 'text/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/fieldsinsideview', 'GET',
@@ -197,7 +197,7 @@ class TeamDBViewApi(object):
197
197
  ['application/json', 'text/json']) # noqa: E501
198
198
 
199
199
  # Authentication setting
200
- auth_settings = [] # noqa: E501
200
+ auth_settings = ['TdbApiKey'] # noqa: E501
201
201
 
202
202
  return self.api_client.call_api(
203
203
  '/teamdbapi/v2.0/layouts', 'GET',
@@ -282,7 +282,7 @@ class TeamDBViewApi(object):
282
282
  ['application/json', 'text/json']) # noqa: E501
283
283
 
284
284
  # Authentication setting
285
- auth_settings = [] # noqa: E501
285
+ auth_settings = ['TdbApiKey'] # noqa: E501
286
286
 
287
287
  return self.api_client.call_api(
288
288
  '/teamdbapi/v2.0/views', 'GET',
@@ -375,7 +375,7 @@ class TeamDBViewApi(object):
375
375
  ['application/json', 'text/json']) # noqa: E501
376
376
 
377
377
  # Authentication setting
378
- auth_settings = [] # noqa: E501
378
+ auth_settings = ['TdbApiKey'] # noqa: E501
379
379
 
380
380
  return self.api_client.call_api(
381
381
  '/teamdbapi/v2.0/layout/{layoutId}/views', 'GET',
@@ -464,7 +464,7 @@ class TeamDBViewApi(object):
464
464
  ['application/json', 'text/json']) # noqa: E501
465
465
 
466
466
  # Authentication setting
467
- auth_settings = [] # noqa: E501
467
+ auth_settings = ['TdbApiKey'] # noqa: E501
468
468
 
469
469
  return self.api_client.call_api(
470
470
  '/teamdbapi/v2.0/viewusingfield', 'GET',
teamdbapi/api/tire_api.py CHANGED
@@ -112,7 +112,7 @@ class TireApi(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/tire', 'POST',
@@ -205,7 +205,7 @@ class TireApi(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/tire/{tireId}', 'DELETE',
@@ -298,7 +298,7 @@ class TireApi(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/tire/{tireId}', 'GET',
@@ -391,7 +391,7 @@ class TireApi(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/event/{eventId}/tires', 'GET',
@@ -476,7 +476,7 @@ class TireApi(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/typeTireRubbers', 'GET',
@@ -581,7 +581,7 @@ class TireApi(object):
581
581
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
582
582
 
583
583
  # Authentication setting
584
- auth_settings = [] # noqa: E501
584
+ auth_settings = ['TdbApiKey'] # noqa: E501
585
585
 
586
586
  return self.api_client.call_api(
587
587
  '/teamdbapi/v2.0/tire/{tireId}', 'PUT',
@@ -112,7 +112,7 @@ class TireSetApi(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/tireset', 'POST',
@@ -205,7 +205,7 @@ class TireSetApi(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/tireset/{tireSetId}', 'DELETE',
@@ -298,7 +298,7 @@ class TireSetApi(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/tireset/{tireSetId}', 'GET',
@@ -391,7 +391,7 @@ class TireSetApi(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/event/{eventId}/tiresets', 'GET',
@@ -496,7 +496,7 @@ class TireSetApi(object):
496
496
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
497
497
 
498
498
  # Authentication setting
499
- auth_settings = [] # noqa: E501
499
+ auth_settings = ['TdbApiKey'] # noqa: E501
500
500
 
501
501
  return self.api_client.call_api(
502
502
  '/teamdbapi/v2.0/tireset/{tireSetId}', 'PUT',
@@ -112,7 +112,7 @@ class TrackApi(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/track', 'POST',
@@ -205,7 +205,7 @@ class TrackApi(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/track/{trackId}', 'DELETE',
@@ -298,7 +298,7 @@ class TrackApi(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/track/{trackId}', 'GET',
@@ -383,7 +383,7 @@ class TrackApi(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/tracks', 'GET',
@@ -488,7 +488,7 @@ class TrackApi(object):
488
488
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
489
489
 
490
490
  # Authentication setting
491
- auth_settings = [] # noqa: E501
491
+ auth_settings = ['TdbApiKey'] # noqa: E501
492
492
 
493
493
  return self.api_client.call_api(
494
494
  '/teamdbapi/v2.0/track/{trackId}', 'PUT',
@@ -112,7 +112,7 @@ class TrackLayoutApi(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/tracklayout', 'POST',
@@ -205,7 +205,7 @@ class TrackLayoutApi(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/tracklayout/{trackLayoutId}', 'DELETE',
@@ -298,7 +298,7 @@ class TrackLayoutApi(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/tracklayout/{trackLayoutId}', 'GET',
@@ -391,7 +391,7 @@ class TrackLayoutApi(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/track/{trackId}/layouts', 'GET',
@@ -496,7 +496,7 @@ class TrackLayoutApi(object):
496
496
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
497
497
 
498
498
  # Authentication setting
499
- auth_settings = [] # noqa: E501
499
+ auth_settings = ['TdbApiKey'] # noqa: E501
500
500
 
501
501
  return self.api_client.call_api(
502
502
  '/teamdbapi/v2.0/tracklayout/{trackLayoutId}', 'PUT',
@@ -116,7 +116,7 @@ class UpdateRequestApi(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
  '/updaterequeststatus/target/{targetId}/car/{carId}', 'GET',
@@ -217,7 +217,7 @@ class UpdateRequestApi(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
  '/updaterequeststatus/reset/target/{targetId}/car/{carId}', 'POST',
teamdbapi/api/user_api.py CHANGED
@@ -100,7 +100,7 @@ class UserApi(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/user/current', 'GET',
@@ -193,7 +193,7 @@ class UserApi(object):
193
193
  ['application/json', 'text/json']) # noqa: E501
194
194
 
195
195
  # Authentication setting
196
- auth_settings = [] # noqa: E501
196
+ auth_settings = ['TdbApiKey'] # noqa: E501
197
197
 
198
198
  return self.api_client.call_api(
199
199
  '/teamdbapi/v2.0/user/{userId}', 'GET',
@@ -286,7 +286,7 @@ class UserApi(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/usergroup/{userGroupId}', 'GET',
@@ -371,7 +371,7 @@ class UserApi(object):
371
371
  ['application/json', 'text/json']) # noqa: E501
372
372
 
373
373
  # Authentication setting
374
- auth_settings = [] # noqa: E501
374
+ auth_settings = ['TdbApiKey'] # noqa: E501
375
375
 
376
376
  return self.api_client.call_api(
377
377
  '/teamdbapi/v2.0/usergroups', 'GET',
@@ -456,7 +456,7 @@ class UserApi(object):
456
456
  ['application/json', 'text/json']) # noqa: E501
457
457
 
458
458
  # Authentication setting
459
- auth_settings = [] # noqa: E501
459
+ auth_settings = ['TdbApiKey'] # noqa: E501
460
460
 
461
461
  return self.api_client.call_api(
462
462
  '/teamdbapi/v2.0/users', 'GET',
@@ -112,7 +112,7 @@ class ValueFieldApi(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/valuefields', 'POST',
@@ -221,7 +221,7 @@ class ValueFieldApi(object):
221
221
  ['application/json', 'text/json']) # noqa: E501
222
222
 
223
223
  # Authentication setting
224
- auth_settings = [] # noqa: E501
224
+ auth_settings = ['TdbApiKey'] # noqa: E501
225
225
 
226
226
  return self.api_client.call_api(
227
227
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/valuefield', 'GET',
@@ -330,7 +330,7 @@ class ValueFieldApi(object):
330
330
  ['application/json', 'text/json']) # noqa: E501
331
331
 
332
332
  # Authentication setting
333
- auth_settings = [] # noqa: E501
333
+ auth_settings = ['TdbApiKey'] # noqa: E501
334
334
 
335
335
  return self.api_client.call_api(
336
336
  '/teamdbapi/v2.0/modelfield/{fieldName}/fieldType/{fieldType}/valuefield', 'GET',
@@ -431,7 +431,7 @@ class ValueFieldApi(object):
431
431
  ['application/json', 'text/json']) # noqa: E501
432
432
 
433
433
  # Authentication setting
434
- auth_settings = [] # noqa: E501
434
+ auth_settings = ['TdbApiKey'] # noqa: E501
435
435
 
436
436
  return self.api_client.call_api(
437
437
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/openMediaFile', 'POST',
@@ -528,7 +528,7 @@ class ValueFieldApi(object):
528
528
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
529
529
 
530
530
  # Authentication setting
531
- auth_settings = [] # noqa: E501
531
+ auth_settings = ['TdbApiKey'] # noqa: E501
532
532
 
533
533
  return self.api_client.call_api(
534
534
  '/teamdbapi/v2.0/valuefields', 'PUT',
@@ -641,7 +641,7 @@ class ValueFieldApi(object):
641
641
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
642
642
 
643
643
  # Authentication setting
644
- auth_settings = [] # noqa: E501
644
+ auth_settings = ['TdbApiKey'] # noqa: E501
645
645
 
646
646
  return self.api_client.call_api(
647
647
  '/teamdbapi/v2.0/modelfield/{modelFieldId}/valuefield', 'PUT',
@@ -140,7 +140,7 @@ class VersionApi(object):
140
140
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
141
141
 
142
142
  # Authentication setting
143
- auth_settings = [] # noqa: E501
143
+ auth_settings = ['TdbApiKey'] # noqa: E501
144
144
 
145
145
  return self.api_client.call_api(
146
146
  '/teamdbapi/v2.0/version', 'POST',
@@ -233,7 +233,7 @@ class VersionApi(object):
233
233
  ['application/json', 'text/json']) # noqa: E501
234
234
 
235
235
  # Authentication setting
236
- auth_settings = [] # noqa: E501
236
+ auth_settings = ['TdbApiKey'] # noqa: E501
237
237
 
238
238
  return self.api_client.call_api(
239
239
  '/teamdbapi/v2.0/version/{versionId}', 'GET',
@@ -326,7 +326,7 @@ class VersionApi(object):
326
326
  ['application/json', 'text/json']) # noqa: E501
327
327
 
328
328
  # Authentication setting
329
- auth_settings = [] # noqa: E501
329
+ auth_settings = ['TdbApiKey'] # noqa: E501
330
330
 
331
331
  return self.api_client.call_api(
332
332
  '/teamdbapi/v2.0/target/{targetId}/versions', 'GET',
@@ -431,7 +431,7 @@ class VersionApi(object):
431
431
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
432
432
 
433
433
  # Authentication setting
434
- auth_settings = [] # noqa: E501
434
+ auth_settings = ['TdbApiKey'] # noqa: E501
435
435
 
436
436
  return self.api_client.call_api(
437
437
  '/teamdbapi/v2.0/version/{versionId}', 'PUT',
@@ -235,6 +235,13 @@ class Configuration(object):
235
235
  :return: The Auth Settings information dict.
236
236
  """
237
237
  return {
238
+ 'TdbApiKey':
239
+ {
240
+ 'type': 'api_key',
241
+ 'in': 'header',
242
+ 'key': 'TDB_API_Key',
243
+ 'value': self.get_api_key_with_prefix('TDB_API_Key')
244
+ },
238
245
 
239
246
  }
240
247
 
@@ -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 authorized # noqa: E501
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 authorized # noqa: E501
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 authorized # noqa: E501
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 authorized # noqa: E501
677
+ The lower value authorised # noqa: E501
678
678
 
679
679
  :param LowerLimit: The LowerLimit of this Calibration. # noqa: E501
680
680
  :type: float