teamdbapi 3.10.1__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.
- teamdbapi/api/assembly_api.py +21 -21
- 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 +9 -9
- teamdbapi/api/fixed_field_api.py +3 -3
- teamdbapi/api/group_api.py +6 -6
- teamdbapi/api/import_export_api.py +7 -7
- teamdbapi/api/issue_api.py +18 -18
- teamdbapi/api/lap_api.py +7 -7
- teamdbapi/api/lap_report_api.py +5 -5
- teamdbapi/api/model_field_api.py +7 -7
- teamdbapi/api/mounting_api.py +3 -3
- teamdbapi/api/notes_authorization_api.py +3 -3
- teamdbapi/api/overall_api.py +1 -1
- teamdbapi/api/parameter_api.py +11 -11
- teamdbapi/api/parameter_binding_api.py +5 -5
- teamdbapi/api/part_api.py +9 -9
- teamdbapi/api/report_api.py +1 -1
- teamdbapi/api/revision_api.py +14 -14
- 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/part_count.py +2 -2
- teamdbapi/models/team_db_list_item.py +31 -3
- teamdbapi-3.11.0.dist-info/METADATA +135 -0
- {teamdbapi-3.10.1.dist-info → teamdbapi-3.11.0.dist-info}/RECORD +44 -44
- {teamdbapi-3.10.1.dist-info → teamdbapi-3.11.0.dist-info}/licenses/LICENSE +1 -1
- teamdbapi-3.10.1.dist-info/METADATA +0 -91
- {teamdbapi-3.10.1.dist-info → teamdbapi-3.11.0.dist-info}/WHEEL +0 -0
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',
|
teamdbapi/api/report_api.py
CHANGED
|
@@ -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',
|
teamdbapi/api/revision_api.py
CHANGED
|
@@ -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',
|
|
@@ -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',
|
|
@@ -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',
|
teamdbapi/api/script_api.py
CHANGED
|
@@ -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',
|
teamdbapi/api/session_api.py
CHANGED
|
@@ -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',
|
teamdbapi/api/target_api.py
CHANGED
|
@@ -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',
|