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/assembly_api.py
CHANGED
|
@@ -120,7 +120,7 @@ class AssemblyApi(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/assembly/{assemblyId}/addrevisions', 'POST',
|
|
@@ -225,7 +225,7 @@ class AssemblyApi(object):
|
|
|
225
225
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
226
226
|
|
|
227
227
|
# Authentication setting
|
|
228
|
-
auth_settings = [] # noqa: E501
|
|
228
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
229
229
|
|
|
230
230
|
return self.api_client.call_api(
|
|
231
231
|
'/teamdbapi/v2.0/assembly/{assemblyId}/addtag', 'POST',
|
|
@@ -318,7 +318,7 @@ class AssemblyApi(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/run/{runId}/assemblies', 'GET',
|
|
@@ -427,7 +427,7 @@ class AssemblyApi(object):
|
|
|
427
427
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
428
428
|
|
|
429
429
|
# Authentication setting
|
|
430
|
-
auth_settings = [] # noqa: E501
|
|
430
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
431
431
|
|
|
432
432
|
return self.api_client.call_api(
|
|
433
433
|
'/teamdbapi/v2.0/assembly/compare', 'POST',
|
|
@@ -526,7 +526,7 @@ class AssemblyApi(object):
|
|
|
526
526
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
527
527
|
|
|
528
528
|
# Authentication setting
|
|
529
|
-
auth_settings = [] # noqa: E501
|
|
529
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
530
530
|
|
|
531
531
|
return self.api_client.call_api(
|
|
532
532
|
'/teamdbapi/v2.0/assembly', 'POST',
|
|
@@ -619,7 +619,7 @@ class AssemblyApi(object):
|
|
|
619
619
|
['application/json', 'text/json']) # noqa: E501
|
|
620
620
|
|
|
621
621
|
# Authentication setting
|
|
622
|
-
auth_settings = [] # noqa: E501
|
|
622
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
623
623
|
|
|
624
624
|
return self.api_client.call_api(
|
|
625
625
|
'/teamdbapi/v2.0/assembly/{assemblyId}', 'DELETE',
|
|
@@ -716,7 +716,7 @@ class AssemblyApi(object):
|
|
|
716
716
|
['application/json', 'text/json']) # noqa: E501
|
|
717
717
|
|
|
718
718
|
# Authentication setting
|
|
719
|
-
auth_settings = [] # noqa: E501
|
|
719
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
720
720
|
|
|
721
721
|
return self.api_client.call_api(
|
|
722
722
|
'/teamdbapi/v2.0/assembly/{assemblyId}/duplicate', 'POST',
|
|
@@ -817,7 +817,7 @@ class AssemblyApi(object):
|
|
|
817
817
|
['application/json', 'text/json']) # noqa: E501
|
|
818
818
|
|
|
819
819
|
# Authentication setting
|
|
820
|
-
auth_settings = [] # noqa: E501
|
|
820
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
821
821
|
|
|
822
822
|
return self.api_client.call_api(
|
|
823
823
|
'/teamdbapi/v2.0/assembly/{assemblyId}/export', 'POST',
|
|
@@ -910,7 +910,7 @@ class AssemblyApi(object):
|
|
|
910
910
|
['application/json', 'text/json']) # noqa: E501
|
|
911
911
|
|
|
912
912
|
# Authentication setting
|
|
913
|
-
auth_settings = [] # noqa: E501
|
|
913
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
914
914
|
|
|
915
915
|
return self.api_client.call_api(
|
|
916
916
|
'/teamdbapi/v2.0/version/{versionId}/assemblies', 'GET',
|
|
@@ -1003,7 +1003,7 @@ class AssemblyApi(object):
|
|
|
1003
1003
|
['application/json', 'text/json']) # noqa: E501
|
|
1004
1004
|
|
|
1005
1005
|
# Authentication setting
|
|
1006
|
-
auth_settings = [] # noqa: E501
|
|
1006
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1007
1007
|
|
|
1008
1008
|
return self.api_client.call_api(
|
|
1009
1009
|
'/teamdbapi/v2.0/assembly/{assemblyId}', 'GET',
|
|
@@ -1088,7 +1088,7 @@ class AssemblyApi(object):
|
|
|
1088
1088
|
['application/json', 'text/json']) # noqa: E501
|
|
1089
1089
|
|
|
1090
1090
|
# Authentication setting
|
|
1091
|
-
auth_settings = [] # noqa: E501
|
|
1091
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1092
1092
|
|
|
1093
1093
|
return self.api_client.call_api(
|
|
1094
1094
|
'/teamdbapi/v2.0/assembly/current', 'GET',
|
|
@@ -1181,7 +1181,7 @@ class AssemblyApi(object):
|
|
|
1181
1181
|
['application/json', 'text/json']) # noqa: E501
|
|
1182
1182
|
|
|
1183
1183
|
# Authentication setting
|
|
1184
|
-
auth_settings = [] # noqa: E501
|
|
1184
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1185
1185
|
|
|
1186
1186
|
return self.api_client.call_api(
|
|
1187
1187
|
'/teamdbapi/v2.0/assembly/{assemblyId}/grouprevisions', 'GET',
|
|
@@ -1282,7 +1282,7 @@ class AssemblyApi(object):
|
|
|
1282
1282
|
['application/json', 'text/json']) # noqa: E501
|
|
1283
1283
|
|
|
1284
1284
|
# Authentication setting
|
|
1285
|
-
auth_settings = [] # noqa: E501
|
|
1285
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1286
1286
|
|
|
1287
1287
|
return self.api_client.call_api(
|
|
1288
1288
|
'/teamdbapi/v2.0/assembly/{assemblyId}/group/{groupId}/revisions', 'GET',
|
|
@@ -1383,7 +1383,7 @@ class AssemblyApi(object):
|
|
|
1383
1383
|
['application/json', 'text/json']) # noqa: E501
|
|
1384
1384
|
|
|
1385
1385
|
# Authentication setting
|
|
1386
|
-
auth_settings = [] # noqa: E501
|
|
1386
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1387
1387
|
|
|
1388
1388
|
return self.api_client.call_api(
|
|
1389
1389
|
'/teamdbapi/v2.0/assembly/import', 'POST',
|
|
@@ -1484,7 +1484,7 @@ class AssemblyApi(object):
|
|
|
1484
1484
|
['application/json', 'text/json']) # noqa: E501
|
|
1485
1485
|
|
|
1486
1486
|
# Authentication setting
|
|
1487
|
-
auth_settings = [] # noqa: E501
|
|
1487
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1488
1488
|
|
|
1489
1489
|
return self.api_client.call_api(
|
|
1490
1490
|
'/teamdbapi/v2.0/run/{runId}/linkassembly', 'POST',
|
|
@@ -1585,7 +1585,7 @@ class AssemblyApi(object):
|
|
|
1585
1585
|
['application/json', 'text/json']) # noqa: E501
|
|
1586
1586
|
|
|
1587
1587
|
# Authentication setting
|
|
1588
|
-
auth_settings = [] # noqa: E501
|
|
1588
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1589
1589
|
|
|
1590
1590
|
return self.api_client.call_api(
|
|
1591
1591
|
'/teamdbapi/v2.0/assembly/{assemblyId}/lock', 'POST',
|
|
@@ -1690,7 +1690,7 @@ class AssemblyApi(object):
|
|
|
1690
1690
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
1691
1691
|
|
|
1692
1692
|
# Authentication setting
|
|
1693
|
-
auth_settings = [] # noqa: E501
|
|
1693
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1694
1694
|
|
|
1695
1695
|
return self.api_client.call_api(
|
|
1696
1696
|
'/teamdbapi/v2.0/assembly/{assemblyId}/removerevisions', 'POST',
|
|
@@ -1791,7 +1791,7 @@ class AssemblyApi(object):
|
|
|
1791
1791
|
['application/json', 'text/json']) # noqa: E501
|
|
1792
1792
|
|
|
1793
1793
|
# Authentication setting
|
|
1794
|
-
auth_settings = [] # noqa: E501
|
|
1794
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1795
1795
|
|
|
1796
1796
|
return self.api_client.call_api(
|
|
1797
1797
|
'/teamdbapi/v2.0/assembly/{assemblyId}/removetag', 'POST',
|
|
@@ -1884,7 +1884,7 @@ class AssemblyApi(object):
|
|
|
1884
1884
|
['application/json', 'text/json']) # noqa: E501
|
|
1885
1885
|
|
|
1886
1886
|
# Authentication setting
|
|
1887
|
-
auth_settings = [] # noqa: E501
|
|
1887
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1888
1888
|
|
|
1889
1889
|
return self.api_client.call_api(
|
|
1890
1890
|
'/teamdbapi/v2.0/assembly/current', 'POST',
|
|
@@ -1985,7 +1985,7 @@ class AssemblyApi(object):
|
|
|
1985
1985
|
['application/json', 'text/json']) # noqa: E501
|
|
1986
1986
|
|
|
1987
1987
|
# Authentication setting
|
|
1988
|
-
auth_settings = [] # noqa: E501
|
|
1988
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1989
1989
|
|
|
1990
1990
|
return self.api_client.call_api(
|
|
1991
1991
|
'/teamdbapi/v2.0/run/{runId}/unlinkassembly', 'POST',
|
|
@@ -2090,7 +2090,7 @@ class AssemblyApi(object):
|
|
|
2090
2090
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
2091
2091
|
|
|
2092
2092
|
# Authentication setting
|
|
2093
|
-
auth_settings = [] # noqa: E501
|
|
2093
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
2094
2094
|
|
|
2095
2095
|
return self.api_client.call_api(
|
|
2096
2096
|
'/teamdbapi/v2.0/assembly/{assemblyId}', 'PUT',
|
teamdbapi/api/car_api.py
CHANGED
|
@@ -112,7 +112,7 @@ class CarApi(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/car', 'POST',
|
|
@@ -209,7 +209,7 @@ class CarApi(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/cartype', 'POST',
|
|
@@ -302,7 +302,7 @@ class CarApi(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/car/{carId}', 'DELETE',
|
|
@@ -395,7 +395,7 @@ class CarApi(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/cartype/{carTypeId}', 'DELETE',
|
|
@@ -488,7 +488,7 @@ class CarApi(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/car/{carId}', 'GET',
|
|
@@ -581,7 +581,7 @@ class CarApi(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/event/{eventId}/cars', 'GET',
|
|
@@ -666,7 +666,7 @@ class CarApi(object):
|
|
|
666
666
|
['application/json', 'text/json']) # noqa: E501
|
|
667
667
|
|
|
668
668
|
# Authentication setting
|
|
669
|
-
auth_settings = [] # noqa: E501
|
|
669
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
670
670
|
|
|
671
671
|
return self.api_client.call_api(
|
|
672
672
|
'/teamdbapi/v2.0/cartypes', 'GET',
|
|
@@ -751,7 +751,7 @@ class CarApi(object):
|
|
|
751
751
|
['application/json', 'text/json']) # noqa: E501
|
|
752
752
|
|
|
753
753
|
# Authentication setting
|
|
754
|
-
auth_settings = [] # noqa: E501
|
|
754
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
755
755
|
|
|
756
756
|
return self.api_client.call_api(
|
|
757
757
|
'/teamdbapi/v2.0/car/current', 'GET',
|
|
@@ -856,7 +856,7 @@ class CarApi(object):
|
|
|
856
856
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
857
857
|
|
|
858
858
|
# Authentication setting
|
|
859
|
-
auth_settings = [] # noqa: E501
|
|
859
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
860
860
|
|
|
861
861
|
return self.api_client.call_api(
|
|
862
862
|
'/teamdbapi/v2.0/car/{carId}', 'PUT',
|
teamdbapi/api/component_api.py
CHANGED
|
@@ -124,7 +124,7 @@ class ComponentApi(object):
|
|
|
124
124
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+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/component/{componentId}/revision/{revisionId}/addcontent', 'POST',
|
|
@@ -225,7 +225,7 @@ class ComponentApi(object):
|
|
|
225
225
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
226
226
|
|
|
227
227
|
# Authentication setting
|
|
228
|
-
auth_settings = [] # noqa: E501
|
|
228
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
229
229
|
|
|
230
230
|
return self.api_client.call_api(
|
|
231
231
|
'/teamdbapi/v2.0/part/{partId}/component', 'POST',
|
|
@@ -326,7 +326,7 @@ class ComponentApi(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/component/{componentId}/revision/{revisionId}', 'GET',
|
|
@@ -427,7 +427,7 @@ class ComponentApi(object):
|
|
|
427
427
|
['application/json', 'text/json']) # noqa: E501
|
|
428
428
|
|
|
429
429
|
# Authentication setting
|
|
430
|
-
auth_settings = [] # noqa: E501
|
|
430
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
431
431
|
|
|
432
432
|
return self.api_client.call_api(
|
|
433
433
|
'/teamdbapi/v2.0/component/{componentId}/revision/{revisionId}/content', 'GET',
|
|
@@ -528,7 +528,7 @@ class ComponentApi(object):
|
|
|
528
528
|
['application/json', 'text/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/component/{componentId}/revision/{revisionId}/criteria', 'GET',
|
|
@@ -629,7 +629,7 @@ class ComponentApi(object):
|
|
|
629
629
|
['application/json', 'text/json']) # noqa: E501
|
|
630
630
|
|
|
631
631
|
# Authentication setting
|
|
632
|
-
auth_settings = [] # noqa: E501
|
|
632
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
633
633
|
|
|
634
634
|
return self.api_client.call_api(
|
|
635
635
|
'/teamdbapi/v2.0/component/{componentId}/revision/{revisionId}/criteriadetails', 'GET',
|
|
@@ -722,7 +722,7 @@ class ComponentApi(object):
|
|
|
722
722
|
['application/json', 'text/json']) # noqa: E501
|
|
723
723
|
|
|
724
724
|
# Authentication setting
|
|
725
|
-
auth_settings = [] # noqa: E501
|
|
725
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
726
726
|
|
|
727
727
|
return self.api_client.call_api(
|
|
728
728
|
'/teamdbapi/v2.0/component/{componentId}/revisions', 'GET',
|
|
@@ -815,7 +815,7 @@ class ComponentApi(object):
|
|
|
815
815
|
['application/json', 'text/json']) # noqa: E501
|
|
816
816
|
|
|
817
817
|
# Authentication setting
|
|
818
|
-
auth_settings = [] # noqa: E501
|
|
818
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
819
819
|
|
|
820
820
|
return self.api_client.call_api(
|
|
821
821
|
'/teamdbapi/v2.0/part/{partId}/components', 'GET',
|
|
@@ -924,7 +924,7 @@ class ComponentApi(object):
|
|
|
924
924
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
925
925
|
|
|
926
926
|
# Authentication setting
|
|
927
|
-
auth_settings = [] # noqa: E501
|
|
927
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
928
928
|
|
|
929
929
|
return self.api_client.call_api(
|
|
930
930
|
'/teamdbapi/v2.0/component/{componentId}/revision/{revisionId}/removecontent', 'POST',
|
|
@@ -1041,7 +1041,7 @@ class ComponentApi(object):
|
|
|
1041
1041
|
['application/json', 'text/json']) # noqa: E501
|
|
1042
1042
|
|
|
1043
1043
|
# Authentication setting
|
|
1044
|
-
auth_settings = [] # noqa: E501
|
|
1044
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1045
1045
|
|
|
1046
1046
|
return self.api_client.call_api(
|
|
1047
1047
|
'/teamdbapi/v2.0/component/{componentId}/revision/{revisionId}/subComponent/{subComponentRevisionId}/parameterBinding/{parameterBinding}', 'PUT',
|
|
@@ -1126,7 +1126,7 @@ class ComponentApi(object):
|
|
|
1126
1126
|
['application/json', 'text/json']) # noqa: E501
|
|
1127
1127
|
|
|
1128
1128
|
# Authentication setting
|
|
1129
|
-
auth_settings = [] # noqa: E501
|
|
1129
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1130
1130
|
|
|
1131
1131
|
return self.api_client.call_api(
|
|
1132
1132
|
'/teamdbapi/v2.0/component/export', 'POST',
|
|
@@ -1239,7 +1239,7 @@ class ComponentApi(object):
|
|
|
1239
1239
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
1240
1240
|
|
|
1241
1241
|
# Authentication setting
|
|
1242
|
-
auth_settings = [] # noqa: E501
|
|
1242
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
1243
1243
|
|
|
1244
1244
|
return self.api_client.call_api(
|
|
1245
1245
|
'/teamdbapi/v2.0/component/{componentId}/revision/{revisionId}', 'PUT',
|
teamdbapi/api/config_api.py
CHANGED
|
@@ -100,7 +100,7 @@ class ConfigApi(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/server/uri', 'GET',
|
teamdbapi/api/criteria_api.py
CHANGED
|
@@ -114,7 +114,7 @@ class CriteriaApi(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/criteriaset', 'POST',
|
|
@@ -199,7 +199,7 @@ class CriteriaApi(object):
|
|
|
199
199
|
['application/json', 'text/json']) # noqa: E501
|
|
200
200
|
|
|
201
201
|
# Authentication setting
|
|
202
|
-
auth_settings = [] # noqa: E501
|
|
202
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
203
203
|
|
|
204
204
|
return self.api_client.call_api(
|
|
205
205
|
'/teamdbapi/v2.0/criteria', 'GET',
|
|
@@ -284,7 +284,7 @@ class CriteriaApi(object):
|
|
|
284
284
|
['application/json', 'text/json']) # noqa: E501
|
|
285
285
|
|
|
286
286
|
# Authentication setting
|
|
287
|
-
auth_settings = [] # noqa: E501
|
|
287
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
288
288
|
|
|
289
289
|
return self.api_client.call_api(
|
|
290
290
|
'/teamdbapi/v2.0/criteriaset', 'GET',
|
|
@@ -377,7 +377,7 @@ class CriteriaApi(object):
|
|
|
377
377
|
['application/json', 'text/json']) # noqa: E501
|
|
378
378
|
|
|
379
379
|
# Authentication setting
|
|
380
|
-
auth_settings = [] # noqa: E501
|
|
380
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
381
381
|
|
|
382
382
|
return self.api_client.call_api(
|
|
383
383
|
'/teamdbapi/v2.0/criteria/{criteriaId}', 'GET',
|
|
@@ -470,7 +470,7 @@ class CriteriaApi(object):
|
|
|
470
470
|
['application/json', 'text/json']) # noqa: E501
|
|
471
471
|
|
|
472
472
|
# Authentication setting
|
|
473
|
-
auth_settings = [] # noqa: E501
|
|
473
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
474
474
|
|
|
475
475
|
return self.api_client.call_api(
|
|
476
476
|
'/teamdbapi/v2.0/criteriaset/{criteriasetId}', 'GET',
|
|
@@ -567,7 +567,7 @@ class CriteriaApi(object):
|
|
|
567
567
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
568
568
|
|
|
569
569
|
# Authentication setting
|
|
570
|
-
auth_settings = [] # noqa: E501
|
|
570
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
571
571
|
|
|
572
572
|
return self.api_client.call_api(
|
|
573
573
|
'/teamdbapi/v2.0/criteriaset', 'PUT',
|
teamdbapi/api/edit_api.py
CHANGED
|
@@ -120,7 +120,7 @@ class EditApi(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/tag/{tag}/copy', 'POST',
|
|
@@ -209,7 +209,7 @@ class EditApi(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/allCarParametersContext', 'GET',
|
|
@@ -294,7 +294,7 @@ class EditApi(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/currentCarParametersContext', 'GET',
|
|
@@ -379,7 +379,7 @@ class EditApi(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/currentcontext', 'GET',
|
|
@@ -476,7 +476,7 @@ class EditApi(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/CarParametersContexts', 'POST',
|
|
@@ -601,7 +601,7 @@ class EditApi(object):
|
|
|
601
601
|
['application/json', 'text/json']) # noqa: E501
|
|
602
602
|
|
|
603
603
|
# Authentication setting
|
|
604
|
-
auth_settings = [] # noqa: E501
|
|
604
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
605
605
|
|
|
606
606
|
return self.api_client.call_api(
|
|
607
607
|
'/teamdbapi/v2.0/currentcontext', 'POST',
|
teamdbapi/api/event_api.py
CHANGED
|
@@ -112,7 +112,7 @@ class EventApi(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/event', 'POST',
|
|
@@ -205,7 +205,7 @@ class EventApi(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/event/{eventId}', 'DELETE',
|
|
@@ -290,7 +290,7 @@ class EventApi(object):
|
|
|
290
290
|
['application/json', 'text/json']) # noqa: E501
|
|
291
291
|
|
|
292
292
|
# Authentication setting
|
|
293
|
-
auth_settings = [] # noqa: E501
|
|
293
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
294
294
|
|
|
295
295
|
return self.api_client.call_api(
|
|
296
296
|
'/teamdbapi/v2.0/event/current', 'GET',
|
|
@@ -383,7 +383,7 @@ class EventApi(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/event/{eventId}', 'GET',
|
|
@@ -468,7 +468,7 @@ class EventApi(object):
|
|
|
468
468
|
['application/json', 'text/json']) # noqa: E501
|
|
469
469
|
|
|
470
470
|
# Authentication setting
|
|
471
|
-
auth_settings = [] # noqa: E501
|
|
471
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
472
472
|
|
|
473
473
|
return self.api_client.call_api(
|
|
474
474
|
'/teamdbapi/v2.0/events', 'GET',
|
|
@@ -565,7 +565,7 @@ class EventApi(object):
|
|
|
565
565
|
['application/json', 'text/json']) # noqa: E501
|
|
566
566
|
|
|
567
567
|
# Authentication setting
|
|
568
|
-
auth_settings = [] # noqa: E501
|
|
568
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
569
569
|
|
|
570
570
|
return self.api_client.call_api(
|
|
571
571
|
'/teamdbapi/v2.0/event/{eventId}/loadalldata', 'POST',
|
|
@@ -662,7 +662,7 @@ class EventApi(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/event/{eventId}/lock', 'POST',
|
|
@@ -755,7 +755,7 @@ class EventApi(object):
|
|
|
755
755
|
['application/json', 'text/json']) # noqa: E501
|
|
756
756
|
|
|
757
757
|
# Authentication setting
|
|
758
|
-
auth_settings = [] # noqa: E501
|
|
758
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
759
759
|
|
|
760
760
|
return self.api_client.call_api(
|
|
761
761
|
'/teamdbapi/v2.0/event/{eventId}/release', 'POST',
|
|
@@ -860,7 +860,7 @@ class EventApi(object):
|
|
|
860
860
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
861
861
|
|
|
862
862
|
# Authentication setting
|
|
863
|
-
auth_settings = [] # noqa: E501
|
|
863
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
864
864
|
|
|
865
865
|
return self.api_client.call_api(
|
|
866
866
|
'/teamdbapi/v2.0/event/{eventId}', 'PUT',
|
teamdbapi/api/fixed_field_api.py
CHANGED
|
@@ -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',
|
teamdbapi/api/group_api.py
CHANGED
|
@@ -114,7 +114,7 @@ class GroupApi(object):
|
|
|
114
114
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
115
115
|
|
|
116
116
|
# Authentication setting
|
|
117
|
-
auth_settings = [] # noqa: E501
|
|
117
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
118
118
|
|
|
119
119
|
return self.api_client.call_api(
|
|
120
120
|
'/teamdbapi/v2.0/group', 'POST',
|
|
@@ -207,7 +207,7 @@ class GroupApi(object):
|
|
|
207
207
|
['application/json', 'text/json']) # noqa: E501
|
|
208
208
|
|
|
209
209
|
# Authentication setting
|
|
210
|
-
auth_settings = [] # noqa: E501
|
|
210
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
211
211
|
|
|
212
212
|
return self.api_client.call_api(
|
|
213
213
|
'/teamdbapi/v2.0/group/{groupId}', 'DELETE',
|
|
@@ -300,7 +300,7 @@ class GroupApi(object):
|
|
|
300
300
|
['application/json', 'text/json']) # noqa: E501
|
|
301
301
|
|
|
302
302
|
# Authentication setting
|
|
303
|
-
auth_settings = [] # noqa: E501
|
|
303
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
304
304
|
|
|
305
305
|
return self.api_client.call_api(
|
|
306
306
|
'/teamdbapi/v2.0/group/{groupId}', 'GET',
|
|
@@ -393,7 +393,7 @@ class GroupApi(object):
|
|
|
393
393
|
['application/json', 'text/json']) # noqa: E501
|
|
394
394
|
|
|
395
395
|
# Authentication setting
|
|
396
|
-
auth_settings = [] # noqa: E501
|
|
396
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
397
397
|
|
|
398
398
|
return self.api_client.call_api(
|
|
399
399
|
'/teamdbapi/v2.0/group/{groupId}/fullpath', 'GET',
|
|
@@ -486,7 +486,7 @@ class GroupApi(object):
|
|
|
486
486
|
['application/json', 'text/json']) # noqa: E501
|
|
487
487
|
|
|
488
488
|
# Authentication setting
|
|
489
|
-
auth_settings = [] # noqa: E501
|
|
489
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
490
490
|
|
|
491
491
|
return self.api_client.call_api(
|
|
492
492
|
'/teamdbapi/v2.0/version/{versionId}/groups', 'GET',
|
|
@@ -591,7 +591,7 @@ class GroupApi(object):
|
|
|
591
591
|
['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # noqa: E501
|
|
592
592
|
|
|
593
593
|
# Authentication setting
|
|
594
|
-
auth_settings = [] # noqa: E501
|
|
594
|
+
auth_settings = ['TdbApiKey'] # noqa: E501
|
|
595
595
|
|
|
596
596
|
return self.api_client.call_api(
|
|
597
597
|
'/teamdbapi/v2.0/group/{groupId}', 'PUT',
|