teamdbapi 3.10.0__py3-none-any.whl → 3.11.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 (45) hide show
  1. teamdbapi/api/assembly_api.py +44 -44
  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 +9 -9
  8. teamdbapi/api/fixed_field_api.py +3 -3
  9. teamdbapi/api/group_api.py +6 -6
  10. teamdbapi/api/import_export_api.py +7 -7
  11. teamdbapi/api/issue_api.py +18 -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 +7 -7
  15. teamdbapi/api/mounting_api.py +3 -3
  16. teamdbapi/api/notes_authorization_api.py +3 -3
  17. teamdbapi/api/overall_api.py +1 -1
  18. teamdbapi/api/parameter_api.py +11 -11
  19. teamdbapi/api/parameter_binding_api.py +5 -5
  20. teamdbapi/api/part_api.py +9 -9
  21. teamdbapi/api/report_api.py +1 -1
  22. teamdbapi/api/revision_api.py +14 -14
  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/part_count.py +2 -2
  40. teamdbapi/models/team_db_list_item.py +31 -3
  41. teamdbapi-3.11.0.dist-info/METADATA +135 -0
  42. {teamdbapi-3.10.0.dist-info → teamdbapi-3.11.0.dist-info}/RECORD +44 -44
  43. {teamdbapi-3.10.0.dist-info → teamdbapi-3.11.0.dist-info}/licenses/LICENSE +1 -1
  44. teamdbapi-3.10.0.dist-info/METADATA +0 -91
  45. {teamdbapi-3.10.0.dist-info → teamdbapi-3.11.0.dist-info}/WHEEL +0 -0
@@ -108,7 +108,7 @@ class FixedFieldApi(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/fixedfield/{fixedFieldId}', 'GET',
@@ -209,7 +209,7 @@ class FixedFieldApi(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/fixedfield/{fixedFieldId}/value', 'GET',
@@ -302,7 +302,7 @@ class FixedFieldApi(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/fixedfields/{fieldType}', 'GET',
@@ -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',
@@ -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',
@@ -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',
@@ -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',
@@ -917,7 +917,7 @@ class IssueApi(object):
917
917
  ['application/json', 'text/json']) # noqa: E501
918
918
 
919
919
  # Authentication setting
920
- auth_settings = [] # noqa: E501
920
+ auth_settings = ['TdbApiKey'] # noqa: E501
921
921
 
922
922
  return self.api_client.call_api(
923
923
  '/teamdbapi/v2.0/issue/current', 'GET',
@@ -1010,7 +1010,7 @@ class IssueApi(object):
1010
1010
  ['application/json', 'text/json']) # noqa: E501
1011
1011
 
1012
1012
  # Authentication setting
1013
- auth_settings = [] # noqa: E501
1013
+ auth_settings = ['TdbApiKey'] # noqa: E501
1014
1014
 
1015
1015
  return self.api_client.call_api(
1016
1016
  '/teamdbapi/v2.0/issue/{issueId}', 'GET',
@@ -1103,7 +1103,7 @@ class IssueApi(object):
1103
1103
  ['application/json', 'text/json']) # noqa: E501
1104
1104
 
1105
1105
  # Authentication setting
1106
- auth_settings = [] # noqa: E501
1106
+ auth_settings = ['TdbApiKey'] # noqa: E501
1107
1107
 
1108
1108
  return self.api_client.call_api(
1109
1109
  '/teamdbapi/v2.0/issue/humanId/{humanId}', 'GET',
@@ -1196,7 +1196,7 @@ class IssueApi(object):
1196
1196
  ['application/json', 'text/json']) # noqa: E501
1197
1197
 
1198
1198
  # Authentication setting
1199
- auth_settings = [] # noqa: E501
1199
+ auth_settings = ['TdbApiKey'] # noqa: E501
1200
1200
 
1201
1201
  return self.api_client.call_api(
1202
1202
  '/teamdbapi/v2.0/issue/{issueId}/children', 'GET',
@@ -1289,7 +1289,7 @@ class IssueApi(object):
1289
1289
  ['application/json', 'text/json']) # noqa: E501
1290
1290
 
1291
1291
  # Authentication setting
1292
- auth_settings = [] # noqa: E501
1292
+ auth_settings = ['TdbApiKey'] # noqa: E501
1293
1293
 
1294
1294
  return self.api_client.call_api(
1295
1295
  '/teamdbapi/v2.0/issue/{issueId}/parents', 'GET',
@@ -1394,7 +1394,7 @@ class IssueApi(object):
1394
1394
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1395
1395
 
1396
1396
  # Authentication setting
1397
- auth_settings = [] # noqa: E501
1397
+ auth_settings = ['TdbApiKey'] # noqa: E501
1398
1398
 
1399
1399
  return self.api_client.call_api(
1400
1400
  '/teamdbapi/v2.0/issue/{issueId}/link', 'POST',
@@ -1503,7 +1503,7 @@ class IssueApi(object):
1503
1503
  ['application/json', 'text/json']) # noqa: E501
1504
1504
 
1505
1505
  # Authentication setting
1506
- auth_settings = [] # noqa: E501
1506
+ auth_settings = ['TdbApiKey'] # noqa: E501
1507
1507
 
1508
1508
  return self.api_client.call_api(
1509
1509
  '/teamdbapi/v2.0/issue/{issueId}/linkValueField', 'POST',
@@ -1608,7 +1608,7 @@ class IssueApi(object):
1608
1608
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1609
1609
 
1610
1610
  # Authentication setting
1611
- auth_settings = [] # noqa: E501
1611
+ auth_settings = ['TdbApiKey'] # noqa: E501
1612
1612
 
1613
1613
  return self.api_client.call_api(
1614
1614
  '/teamdbapi/v2.0/issue/{issueId}/unlink', 'POST',
@@ -1713,7 +1713,7 @@ class IssueApi(object):
1713
1713
  ['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
1714
1714
 
1715
1715
  # Authentication setting
1716
- auth_settings = [] # noqa: E501
1716
+ auth_settings = ['TdbApiKey'] # noqa: E501
1717
1717
 
1718
1718
  return self.api_client.call_api(
1719
1719
  '/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',
@@ -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',
@@ -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',
@@ -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',
@@ -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',
@@ -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',
@@ -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',
@@ -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',