teamdbapi 3.0.0__py3-none-any.whl → 3.3.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/__init__.py +15 -0
- teamdbapi/api/__init__.py +1 -0
- teamdbapi/api/assembly_api.py +4 -4
- teamdbapi/api/component_api.py +117 -0
- teamdbapi/api/edit_api.py +89 -0
- teamdbapi/api/import_export_api.py +12 -12
- teamdbapi/api/issue_api.py +1537 -0
- teamdbapi/api/lap_report_api.py +2 -2
- teamdbapi/api/part_api.py +481 -0
- teamdbapi/api/report_api.py +2 -2
- teamdbapi/api/revision_api.py +111 -6
- teamdbapi/api/value_field_api.py +2 -2
- teamdbapi/models/__init__.py +14 -0
- teamdbapi/models/add_part_car_parameter_arg.py +396 -0
- teamdbapi/models/car_parameters_context.py +31 -3
- teamdbapi/models/compare_options.py +2 -2
- teamdbapi/models/component.py +87 -3
- teamdbapi/models/file_revision_info.py +199 -0
- teamdbapi/models/import_parameters_args.py +2 -2
- teamdbapi/models/import_revisions_args.py +173 -0
- teamdbapi/models/import_revisions_info.py +197 -0
- teamdbapi/models/import_revisions_results.py +170 -0
- teamdbapi/models/issue.py +674 -0
- teamdbapi/models/issue_custom_field_value.py +319 -0
- teamdbapi/models/issue_priority.py +227 -0
- teamdbapi/models/issue_project.py +229 -0
- teamdbapi/models/issue_sector.py +199 -0
- teamdbapi/models/issue_status.py +284 -0
- teamdbapi/models/issue_type.py +199 -0
- teamdbapi/models/issue_workflow.py +199 -0
- teamdbapi/models/lap_report_options.py +2 -2
- teamdbapi/models/parameter_cross_table.py +4 -4
- teamdbapi/models/part.py +31 -3
- teamdbapi/models/part_car_parameters.py +561 -0
- teamdbapi/models/revision.py +37 -9
- teamdbapi/models/revision_value.py +31 -3
- teamdbapi/models/script.py +2 -2
- teamdbapi/models/target.py +4 -4
- teamdbapi/models/version.py +4 -4
- {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/METADATA +3 -3
- {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/RECORD +43 -28
- {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/LICENSE +0 -0
- {teamdbapi-3.0.0.dist-info → teamdbapi-3.3.0.dist-info}/WHEEL +0 -0
|
@@ -32,22 +32,25 @@ class RevisionValue(object):
|
|
|
32
32
|
'value': 'list[object]',
|
|
33
33
|
'data_axe_x': 'list[float]',
|
|
34
34
|
'data_axe_y': 'list[float]',
|
|
35
|
-
'data_axe_z': 'list[float]'
|
|
35
|
+
'data_axe_z': 'list[float]',
|
|
36
|
+
'is_main_revision': 'bool'
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
attribute_map = {
|
|
39
40
|
'value': 'Value',
|
|
40
41
|
'data_axe_x': 'DataAxeX',
|
|
41
42
|
'data_axe_y': 'DataAxeY',
|
|
42
|
-
'data_axe_z': 'DataAxeZ'
|
|
43
|
+
'data_axe_z': 'DataAxeZ',
|
|
44
|
+
'is_main_revision': 'IsMainRevision'
|
|
43
45
|
}
|
|
44
46
|
|
|
45
|
-
def __init__(self, value=None, data_axe_x=None, data_axe_y=None, data_axe_z=None): # noqa: E501
|
|
47
|
+
def __init__(self, value=None, data_axe_x=None, data_axe_y=None, data_axe_z=None, is_main_revision=None): # noqa: E501
|
|
46
48
|
"""RevisionValue - a model defined in Swagger""" # noqa: E501
|
|
47
49
|
self._value = None
|
|
48
50
|
self._data_axe_x = None
|
|
49
51
|
self._data_axe_y = None
|
|
50
52
|
self._data_axe_z = None
|
|
53
|
+
self._is_main_revision = None
|
|
51
54
|
self.discriminator = None
|
|
52
55
|
self.value = value
|
|
53
56
|
if data_axe_x is not None:
|
|
@@ -56,6 +59,8 @@ class RevisionValue(object):
|
|
|
56
59
|
self.data_axe_y = data_axe_y
|
|
57
60
|
if data_axe_z is not None:
|
|
58
61
|
self.data_axe_z = data_axe_z
|
|
62
|
+
if is_main_revision is not None:
|
|
63
|
+
self.is_main_revision = is_main_revision
|
|
59
64
|
|
|
60
65
|
@property
|
|
61
66
|
def value(self):
|
|
@@ -151,6 +156,29 @@ class RevisionValue(object):
|
|
|
151
156
|
|
|
152
157
|
self._data_axe_z = data_axe_z
|
|
153
158
|
|
|
159
|
+
@property
|
|
160
|
+
def is_main_revision(self):
|
|
161
|
+
"""Gets the is_main_revision of this RevisionValue. # noqa: E501
|
|
162
|
+
|
|
163
|
+
When true, the revision is used in priority when importing revision from a Lifing mounting to a car parameters assembly. Otherwise, the most recent revision will be used. # noqa: E501
|
|
164
|
+
|
|
165
|
+
:return: The is_main_revision of this RevisionValue. # noqa: E501
|
|
166
|
+
:rtype: bool
|
|
167
|
+
"""
|
|
168
|
+
return self._is_main_revision
|
|
169
|
+
|
|
170
|
+
@is_main_revision.setter
|
|
171
|
+
def is_main_revision(self, is_main_revision):
|
|
172
|
+
"""Sets the is_main_revision of this RevisionValue.
|
|
173
|
+
|
|
174
|
+
When true, the revision is used in priority when importing revision from a Lifing mounting to a car parameters assembly. Otherwise, the most recent revision will be used. # noqa: E501
|
|
175
|
+
|
|
176
|
+
:param is_main_revision: The is_main_revision of this RevisionValue. # noqa: E501
|
|
177
|
+
:type: bool
|
|
178
|
+
"""
|
|
179
|
+
|
|
180
|
+
self._is_main_revision = is_main_revision
|
|
181
|
+
|
|
154
182
|
def to_dict(self):
|
|
155
183
|
"""Returns the model properties as a dict"""
|
|
156
184
|
result = {}
|
teamdbapi/models/script.py
CHANGED
|
@@ -120,7 +120,7 @@ class Script(object):
|
|
|
120
120
|
def path(self):
|
|
121
121
|
"""Gets the path of this Script. # noqa: E501
|
|
122
122
|
|
|
123
|
-
The script file path. # noqa: E501
|
|
123
|
+
The script file path. The path must be described only by / or \\\\\\\\. # noqa: E501
|
|
124
124
|
|
|
125
125
|
:return: The path of this Script. # noqa: E501
|
|
126
126
|
:rtype: str
|
|
@@ -131,7 +131,7 @@ class Script(object):
|
|
|
131
131
|
def path(self, path):
|
|
132
132
|
"""Sets the path of this Script.
|
|
133
133
|
|
|
134
|
-
The script file path. # noqa: E501
|
|
134
|
+
The script file path. The path must be described only by / or \\\\\\\\. # noqa: E501
|
|
135
135
|
|
|
136
136
|
:param path: The path of this Script. # noqa: E501
|
|
137
137
|
:type: str
|
teamdbapi/models/target.py
CHANGED
|
@@ -203,7 +203,7 @@ class Target(object):
|
|
|
203
203
|
def auto_generate_assembly(self):
|
|
204
204
|
"""Gets the auto_generate_assembly of this Target. # noqa: E501
|
|
205
205
|
|
|
206
|
-
True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled # noqa: E501
|
|
206
|
+
True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled Must be set to false when creating a new Target # noqa: E501
|
|
207
207
|
|
|
208
208
|
:return: The auto_generate_assembly of this Target. # noqa: E501
|
|
209
209
|
:rtype: bool
|
|
@@ -214,7 +214,7 @@ class Target(object):
|
|
|
214
214
|
def auto_generate_assembly(self, auto_generate_assembly):
|
|
215
215
|
"""Sets the auto_generate_assembly of this Target.
|
|
216
216
|
|
|
217
|
-
True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled # noqa: E501
|
|
217
|
+
True if we want to automatically generate assemblies when new Runs are created If true, then ReusePreviousRunAssembly is disabled Must be set to false when creating a new Target # noqa: E501
|
|
218
218
|
|
|
219
219
|
:param auto_generate_assembly: The auto_generate_assembly of this Target. # noqa: E501
|
|
220
220
|
:type: bool
|
|
@@ -226,7 +226,7 @@ class Target(object):
|
|
|
226
226
|
def auto_generate_assembly_version_id(self):
|
|
227
227
|
"""Gets the auto_generate_assembly_version_id of this Target. # noqa: E501
|
|
228
228
|
|
|
229
|
-
The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. # noqa: E501
|
|
229
|
+
The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. Must be set to Guid.Empty (00000000-0000-0000-0000-000000000000) when creating a new Target. # noqa: E501
|
|
230
230
|
|
|
231
231
|
:return: The auto_generate_assembly_version_id of this Target. # noqa: E501
|
|
232
232
|
:rtype: str
|
|
@@ -237,7 +237,7 @@ class Target(object):
|
|
|
237
237
|
def auto_generate_assembly_version_id(self, auto_generate_assembly_version_id):
|
|
238
238
|
"""Sets the auto_generate_assembly_version_id of this Target.
|
|
239
239
|
|
|
240
|
-
The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. # noqa: E501
|
|
240
|
+
The version unqiue Id used as reference to create the assemblies when AutoGenerateAssembly is true. It is also used to display the current version in the drop down list. Must be set to Guid.Empty (00000000-0000-0000-0000-000000000000) when creating a new Target. # noqa: E501
|
|
241
241
|
|
|
242
242
|
:param auto_generate_assembly_version_id: The auto_generate_assembly_version_id of this Target. # noqa: E501
|
|
243
243
|
:type: str
|
teamdbapi/models/version.py
CHANGED
|
@@ -190,7 +190,7 @@ class Version(object):
|
|
|
190
190
|
def reference_files(self):
|
|
191
191
|
"""Gets the reference_files of this Version. # noqa: E501
|
|
192
192
|
|
|
193
|
-
The path to the file used to create the version.
|
|
193
|
+
The path to the file used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
|
|
194
194
|
|
|
195
195
|
:return: The reference_files of this Version. # noqa: E501
|
|
196
196
|
:rtype: str
|
|
@@ -201,7 +201,7 @@ class Version(object):
|
|
|
201
201
|
def reference_files(self, reference_files):
|
|
202
202
|
"""Sets the reference_files of this Version.
|
|
203
203
|
|
|
204
|
-
The path to the file used to create the version.
|
|
204
|
+
The path to the file used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
|
|
205
205
|
|
|
206
206
|
:param reference_files: The reference_files of this Version. # noqa: E501
|
|
207
207
|
:type: str
|
|
@@ -338,7 +338,7 @@ class Version(object):
|
|
|
338
338
|
def a2l_files(self):
|
|
339
339
|
"""Gets the a2l_files of this Version. # noqa: E501
|
|
340
340
|
|
|
341
|
-
The path to the A2L files used to create the version.
|
|
341
|
+
The path to the A2L files used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
|
|
342
342
|
|
|
343
343
|
:return: The a2l_files of this Version. # noqa: E501
|
|
344
344
|
:rtype: str
|
|
@@ -349,7 +349,7 @@ class Version(object):
|
|
|
349
349
|
def a2l_files(self, a2l_files):
|
|
350
350
|
"""Sets the a2l_files of this Version.
|
|
351
351
|
|
|
352
|
-
The path to the A2L files used to create the version.
|
|
352
|
+
The path to the A2L files used to create the version. The path must be described only by / or \\\\\\\\. For example : C:/path/MyFile.m To specify multiple files, separate each path with: \\r\\n # noqa: E501
|
|
353
353
|
|
|
354
354
|
:param a2l_files: The a2l_files of this Version. # noqa: E501
|
|
355
355
|
:type: str
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: teamdbapi
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.0
|
|
4
4
|
Summary: Easily access the TeamDB Web API.
|
|
5
5
|
Keywords: teamdbapi,Trackside,Trackside Software,TeamDB
|
|
6
6
|
Author-email: Trackside Software <support@trackside.fr>
|
|
@@ -19,13 +19,13 @@ Project-URL: Homepage, https://www.tracksidesoftware.fr/teamdb
|
|
|
19
19
|
# teamdbapi
|
|
20
20
|
This module enables you to easily access the TeamDB Web API.
|
|
21
21
|
|
|
22
|
-
- Package version: 3.
|
|
22
|
+
- Package version: 3.3.0
|
|
23
23
|
- TeamDB Web API version: 2.0
|
|
24
24
|
|
|
25
25
|
## Requirements.
|
|
26
26
|
|
|
27
27
|
- Python 3.4+
|
|
28
|
-
- TeamDB 3.
|
|
28
|
+
- TeamDB 3.3.0
|
|
29
29
|
|
|
30
30
|
## Installation and usage
|
|
31
31
|
### pip install
|
|
@@ -1,27 +1,28 @@
|
|
|
1
|
-
teamdbapi/__init__.py,sha256=
|
|
1
|
+
teamdbapi/__init__.py,sha256=B003FC9SYLUFoDGs2zIR7m9-hgaqyr4irBhfAyUy87k,5794
|
|
2
2
|
teamdbapi/api_client.py,sha256=bGyO6zVuiX6tGe8LT20ow3SEIg6E7XDgEFcphDWnvnQ,24745
|
|
3
3
|
teamdbapi/configuration.py,sha256=KYYxC9iI_kHB_aV6RUUUx8ChyVX-TEzp82wmurIFGag,7836
|
|
4
4
|
teamdbapi/rest.py,sha256=8y0WME1GjkIV09mc8C_Y_ZLjNh8Hcl6m6mH4226xh3o,13189
|
|
5
|
-
teamdbapi/api/__init__.py,sha256=
|
|
6
|
-
teamdbapi/api/assembly_api.py,sha256=
|
|
5
|
+
teamdbapi/api/__init__.py,sha256=xlWsNqlAXVbODefivYQX1nYMzPuWDrTHRUsZT-m7b5w,1877
|
|
6
|
+
teamdbapi/api/assembly_api.py,sha256=YaTJ51Fj6a_5C_3Enu8Jh7HU6APISn-cIt7WZYBg2sY,89145
|
|
7
7
|
teamdbapi/api/car_api.py,sha256=85dDLIRC2qAFruOVaNcSKcq6i3v1-cSbEZ5oLc8V_Vc,32808
|
|
8
|
-
teamdbapi/api/component_api.py,sha256=
|
|
8
|
+
teamdbapi/api/component_api.py,sha256=Sg8V4DZednX82VXnKNZOTO5cTh9saFajs_ZHFGj95Fc,49916
|
|
9
9
|
teamdbapi/api/config_api.py,sha256=31XfHLKMy7-iaQe1tbElw0CWzl9XjLJ5lpCGf8rpxVw,3841
|
|
10
10
|
teamdbapi/api/criteria_api.py,sha256=A0lFQk3qF10kMk8etnByWVwNkGVhB_PbI7_XwX6VGEQ,4471
|
|
11
|
-
teamdbapi/api/edit_api.py,sha256=
|
|
11
|
+
teamdbapi/api/edit_api.py,sha256=bvnIwV-55IPfFuWBqiNjsfwNDkl8E22lnxqTALNZ2ds,21793
|
|
12
12
|
teamdbapi/api/event_api.py,sha256=dqR61zBREzTaufMVZqiGGwVJypGQCjWjKU98ATq8h2Y,33882
|
|
13
13
|
teamdbapi/api/fixed_field_api.py,sha256=l9-5Hq2GlyGyXNbqXUmcPVlPMCLq1G1B_N0Or3Tql6I,12976
|
|
14
14
|
teamdbapi/api/group_api.py,sha256=5pbECIOv7KOVF11MrRLrz2xLGrCmkFFcxPYqavpxEG0,23593
|
|
15
|
-
teamdbapi/api/import_export_api.py,sha256=
|
|
15
|
+
teamdbapi/api/import_export_api.py,sha256=baJOU3jHRs-y-Xm8aRSIaRDN4zieBtmqqiwFn7nVp0s,40957
|
|
16
|
+
teamdbapi/api/issue_api.py,sha256=uDwsCcQbs-fvmudBsUtw69ojqw32jzF3ezTtnJNIPZA,60980
|
|
16
17
|
teamdbapi/api/lap_api.py,sha256=U44YcnvQwqX4iX7h1eZn6U0exXFa1jUepBafOGxphVk,27360
|
|
17
|
-
teamdbapi/api/lap_report_api.py,sha256=
|
|
18
|
+
teamdbapi/api/lap_report_api.py,sha256=K6vGcpidwUXsgBbzoxJLkzMVSm9W7IdkZKokyKyq-Kw,18902
|
|
18
19
|
teamdbapi/api/model_field_api.py,sha256=tgQOLZmKH2z_99x-6_65B76BSeg3cj3C42rwneXlXXo,28905
|
|
19
20
|
teamdbapi/api/mounting_api.py,sha256=0Jk8yXd3rUz9lRE0-zQwg7rf4rNklgRwIZ0UkB4ticA,8591
|
|
20
21
|
teamdbapi/api/notes_authorization_api.py,sha256=HdC22O8BqPAuEPTSvk9IZdl0X8MrrrbuT_m1IW16plo,14202
|
|
21
22
|
teamdbapi/api/parameter_api.py,sha256=xoDU8ck8n8Rzgq-R2wvtT08tigWuR5sY8v2qxLoC-uU,53260
|
|
22
|
-
teamdbapi/api/part_api.py,sha256=
|
|
23
|
-
teamdbapi/api/report_api.py,sha256=
|
|
24
|
-
teamdbapi/api/revision_api.py,sha256=
|
|
23
|
+
teamdbapi/api/part_api.py,sha256=ElrOiI_Ni1NSQS9o9D3S2zWFCz_qzfyrNzgb2SHUm64,31345
|
|
24
|
+
teamdbapi/api/report_api.py,sha256=0b9v8VWvMxdX-AGxr-FG1iPPDSMWx-PUxnT6qeQLpzQ,5816
|
|
25
|
+
teamdbapi/api/revision_api.py,sha256=aC39-6TlKB50_8cxHWLm98lkTcg-LVNT_nJtd01AoXo,72304
|
|
25
26
|
teamdbapi/api/revision_editor_selector_api.py,sha256=87FuzhhXwByfzsHpj2Zxlk0d1h_4Pf3a_kvy6y4IPcI,47839
|
|
26
27
|
teamdbapi/api/run_api.py,sha256=MUrJLoOW3rT9dBNyAf8-RXIDrg_HyW2jyjNKTirvBjU,23653
|
|
27
28
|
teamdbapi/api/script_api.py,sha256=qHIcYsICTK5moTgSNdSI9aRKK1tIp1UTCzIbc9aF7ys,18418
|
|
@@ -35,48 +36,62 @@ teamdbapi/api/track_api.py,sha256=iOtSH-KssiWpKg-P60DDW_N2UbhkEuL3Jxt3x9PTXuM,18
|
|
|
35
36
|
teamdbapi/api/track_layout_api.py,sha256=B3kwP8eo1tV7Av76EJb1AYGUk7HbOhZlSJiAedWnVO8,20515
|
|
36
37
|
teamdbapi/api/update_request_api.py,sha256=JtGr6tz9oRwEHrE3qRcDJ8wdV3BwDPWwbr63xCNaxY4,9754
|
|
37
38
|
teamdbapi/api/user_api.py,sha256=UujgPEo_opOTx43vzMzTkf5braW3XC1z1g4bTSEbIbk,17146
|
|
38
|
-
teamdbapi/api/value_field_api.py,sha256=
|
|
39
|
+
teamdbapi/api/value_field_api.py,sha256=kdl4i8J-b6Q-O027JFsHJjYLtzMKEcK5nGH1Ki6Fgtw,25577
|
|
39
40
|
teamdbapi/api/version_api.py,sha256=obqmDP5Tl8_Iy0IYqPYJ3tdMNZ3xGdMEzLewPfxBYWM,19187
|
|
40
|
-
teamdbapi/models/__init__.py,sha256=
|
|
41
|
+
teamdbapi/models/__init__.py,sha256=ljO2lrmJUThBeLtlY0x3i1dldZ3yP7MU4NyMJ2yMBhY,3862
|
|
42
|
+
teamdbapi/models/add_part_car_parameter_arg.py,sha256=qTz6Sf23qVT2TsXLYpyP1ShFYJ2gFIzxW3gPvQBdYb4,14421
|
|
41
43
|
teamdbapi/models/assembly.py,sha256=JwYxeGEkyOFsTae3nGpxjUJqifVBD_glkEBuVx8jsf0,19631
|
|
42
44
|
teamdbapi/models/bleed_adjustment.py,sha256=l4xXWVLo0uXI_ALBxG2YQ94EdGu9252UNRqzlpZeBPs,4351
|
|
43
45
|
teamdbapi/models/calibration.py,sha256=g9B5n0sCRTWFry4djld15IRtfm4Zr15XDxz3AJ0KvXY,22345
|
|
44
46
|
teamdbapi/models/car.py,sha256=Pt_nqPfDIHeJ-NL5i7ccZ990SEzFs_ry0YupBlBLQBw,12621
|
|
45
|
-
teamdbapi/models/car_parameters_context.py,sha256=
|
|
46
|
-
teamdbapi/models/compare_options.py,sha256=
|
|
47
|
+
teamdbapi/models/car_parameters_context.py,sha256=pJLifIcbJLNm925maS0XsIPk4Mwegi3AjMELJppPYGE,5672
|
|
48
|
+
teamdbapi/models/compare_options.py,sha256=UpxfagyeCJtDlxEGODOIvY3MOQoOVcfis5-dRPGzA8Q,7112
|
|
47
49
|
teamdbapi/models/compare_result.py,sha256=oFedEGB-3XxJHhi7oqtOig2tgffvJJ3mFRHAqOGA7AY,7081
|
|
48
50
|
teamdbapi/models/compare_result_detail.py,sha256=vX9BN-2lgF80s2lVoeD_MNI1GcPRHj26YyOmi2Jv7VY,6256
|
|
49
|
-
teamdbapi/models/component.py,sha256=
|
|
51
|
+
teamdbapi/models/component.py,sha256=xsFJ7oaSDY8LdF--zKEwrR-iHK7r6rJGsMHGTyXdT0s,43001
|
|
50
52
|
teamdbapi/models/copy_from_tags_args.py,sha256=zjtCUPCbz78j-b9_lqDYsObkALfui2LAxaaJpuvjezU,3741
|
|
51
53
|
teamdbapi/models/couple_guid_text.py,sha256=KoRMib3O9fR662gWNiXHVukCrl9tDgoNppzXQd_k3_k,3569
|
|
52
54
|
teamdbapi/models/criteria.py,sha256=0QAjE070I-66jPNM5bgan9Joc86cUoc_K4KTC5vcmis,13378
|
|
53
55
|
teamdbapi/models/criteria_value.py,sha256=Km1ZDrxI5E9CKc_Okjcx3t5wo-Y9VelVwuTqDbY4wIE,5729
|
|
54
56
|
teamdbapi/models/event.py,sha256=TY951vb1UtiJZdGU_ae8xnILLgnCbqIOFIPaQfRqTY8,13073
|
|
57
|
+
teamdbapi/models/file_revision_info.py,sha256=QoFVEP33K6iiASRL4GdGqix9elhIJnTuKpnGaq47pX8,6577
|
|
55
58
|
teamdbapi/models/fixed_field.py,sha256=kv2sDc26ZMRPMzQgRSGycZKUcLGMa5rp3jy-YvVzuFM,11166
|
|
56
59
|
teamdbapi/models/group.py,sha256=JJl4KM5eJFiHwbpCgOAALc9LidJfb7hapqiZny0qKZs,8473
|
|
57
|
-
teamdbapi/models/import_parameters_args.py,sha256=
|
|
60
|
+
teamdbapi/models/import_parameters_args.py,sha256=I3bFCPap5WgykoYOU3PVlyivShy1Cib_4cucvz6siso,17619
|
|
58
61
|
teamdbapi/models/import_parameters_results.py,sha256=AWqZ-lrOwkqLpH9izRsj1SxfeJoewdnOrxDVHZhT-qI,5496
|
|
62
|
+
teamdbapi/models/import_revisions_args.py,sha256=MzYxg9ea08lOUnvP1_w9DeE0sGQ8JLPjXegI_hY-ujU,6176
|
|
63
|
+
teamdbapi/models/import_revisions_info.py,sha256=bTrrqAU6dlLzlUxLi-0jtx559e3O6lXx8rwcHH9_nlA,6113
|
|
64
|
+
teamdbapi/models/import_revisions_results.py,sha256=vra_p0djyr8qwIGIhuGZZ9yU3kvIlw01bv4_n4okh6M,5556
|
|
65
|
+
teamdbapi/models/issue.py,sha256=zyvPCl6QPpwLwpb_TADQSl831NyM6BBw9vh-KnUIkec,18833
|
|
66
|
+
teamdbapi/models/issue_custom_field_value.py,sha256=m0LYvk6tbHHXm5kFolpGsRjRGhmdMS7mzCbJdGYydj8,9997
|
|
67
|
+
teamdbapi/models/issue_priority.py,sha256=UDfxWY31Rk4Q8Kx2wsbIBTUv-kq3VrJfbsDw8hLzFRc,6502
|
|
68
|
+
teamdbapi/models/issue_project.py,sha256=1vKXzfRS1nmPDxYiAdveHK5fuDN5T6LFdR0OIEexuI4,6839
|
|
69
|
+
teamdbapi/models/issue_sector.py,sha256=enkHO7FMyP_DU4krqAXAjOqZbjUaJ_5yPt14TpT3Vrk,5657
|
|
70
|
+
teamdbapi/models/issue_status.py,sha256=OXVMuD9WD0qQrOjQmwhWpr0CQa8y1V1c-ssWLeGu-Rk,8136
|
|
71
|
+
teamdbapi/models/issue_type.py,sha256=2Fzk6E8HA5vkGqvLBvNKnVmvYluwmpXkPWRhKxswGr8,5617
|
|
72
|
+
teamdbapi/models/issue_workflow.py,sha256=JgYEmJqTttwpEM4Tay-wyKLKRVgBYQpvMlaZWm9kGQY,5945
|
|
59
73
|
teamdbapi/models/item_value.py,sha256=8pRNudP9djjiYUq0snWP0_fcNpaHf9QxuMvECY_GDgo,5153
|
|
60
74
|
teamdbapi/models/item_value_key.py,sha256=AvcOhW9ta34oh7wvUYIjikfRYXW8_r668ls9cgirbe4,4515
|
|
61
75
|
teamdbapi/models/lap.py,sha256=Tj-8BufCIKsDAER7LDER9k9DqQCq7hyyt3DCde_jqTo,21717
|
|
62
|
-
teamdbapi/models/lap_report_options.py,sha256=
|
|
76
|
+
teamdbapi/models/lap_report_options.py,sha256=ObVOVOdsi9BgAblC58F5RSzHYQLDl3eirvJviATxqoY,6550
|
|
63
77
|
teamdbapi/models/model_field.py,sha256=MEmLjaKWj9J8bMmgM_gjNFX-wWukxKGOTvANGlCvQa8,27754
|
|
64
78
|
teamdbapi/models/model_field_authorization.py,sha256=QAOqqx-ONbEyPxFOXjETj11Ej7QGQyP2G7B27L__bXc,8477
|
|
65
79
|
teamdbapi/models/mounting.py,sha256=wcIfr5KnVni_1KFa0IS5bv9k5OjDRcPrajKh5kIhtjY,16139
|
|
66
80
|
teamdbapi/models/notes_authorization.py,sha256=EMIvSc0y2BUanLUGFZzD_s48FfqJNDjdPow3wkfNFCs,7514
|
|
67
81
|
teamdbapi/models/notes_context.py,sha256=RXmOU1Xsf4rDeNDDNfcFtXDHnWKzDqem_sNoEHDEtpg,6003
|
|
68
82
|
teamdbapi/models/parameter.py,sha256=C3L2_MPCZyTuBsbHhTx80fWG9w1w_8ryQSyQ4B7juKM,13632
|
|
69
|
-
teamdbapi/models/parameter_cross_table.py,sha256=
|
|
70
|
-
teamdbapi/models/part.py,sha256=
|
|
83
|
+
teamdbapi/models/parameter_cross_table.py,sha256=Z__-cmZzN8x005Dlsmh0fJkQp0DKJ8gWD3eB2TZlXtw,4939
|
|
84
|
+
teamdbapi/models/part.py,sha256=rMZQt_1mwrtm-2spPlnHDjFLCPOMq1kuKyRi8LXAZSI,29998
|
|
85
|
+
teamdbapi/models/part_car_parameters.py,sha256=phmdQ3riH83_3GDoqx99BIshFivZyVwV2C0IJFCxKLA,20009
|
|
71
86
|
teamdbapi/models/part_count.py,sha256=yNbtdZPRFPy_-Ouvoiwdf-3l7Wj6Tmags_uoRpLNXzE,7293
|
|
72
87
|
teamdbapi/models/problem_details.py,sha256=ytDvHCX3MDccVdCOEyqSHa_XjYcmuDTLL7L6uxEX5wA,2439
|
|
73
|
-
teamdbapi/models/revision.py,sha256=
|
|
74
|
-
teamdbapi/models/revision_value.py,sha256=
|
|
88
|
+
teamdbapi/models/revision.py,sha256=S1uLkcJMBlcUklhpawqHUtAWrLFC_GSSLWXUUnlhw1U,24065
|
|
89
|
+
teamdbapi/models/revision_value.py,sha256=9A6yJVPG5GevUyq-NcA4VNF2fp2f8pI9xS9Y61H4VYg,8400
|
|
75
90
|
teamdbapi/models/run.py,sha256=ipY4TsknX1nwMSs0yXMuZVBwpA63UsLYKl311ghU-ZQ,16778
|
|
76
|
-
teamdbapi/models/script.py,sha256=
|
|
91
|
+
teamdbapi/models/script.py,sha256=1wiGWWKsBfiVRRCLtJ8929urMmOE-BQhzYuvgQLBF7s,7344
|
|
77
92
|
teamdbapi/models/session.py,sha256=07sjC7bjfAO-XF3glFl9ulr0dZDFr4AWfWO8Mb5aYh0,16999
|
|
78
93
|
teamdbapi/models/string_with_font_style.py,sha256=RNETcCUe1ElC5Qh1ownZO3ofJxNyB1pIEx-Nng25z4o,8191
|
|
79
|
-
teamdbapi/models/target.py,sha256=
|
|
94
|
+
teamdbapi/models/target.py,sha256=T5xNsyGHk0yOVsF1FN29Y1x5tvORhn6fFfzLrJeltdo,16416
|
|
80
95
|
teamdbapi/models/team_db_list.py,sha256=Lx2aqqOXe1LUh9XLILf-3GuGP0bGpek5jrPdftox9jw,4055
|
|
81
96
|
teamdbapi/models/team_db_list_item.py,sha256=NS0sNgLtuhemUvNeYXrX6EHtRnyGjZACqQyRka3oOwQ,5795
|
|
82
97
|
teamdbapi/models/tire.py,sha256=QaEWnRGuzXZiSaoBGOrcsCSoNhh0UfWCbfSWS5iFaHo,26570
|
|
@@ -86,8 +101,8 @@ teamdbapi/models/track_layout.py,sha256=81OiUghi8BZiQcd_SNmp2whWD_JhF8j8xgy80CGu
|
|
|
86
101
|
teamdbapi/models/user.py,sha256=1VSU2NzosU-uybP6-aEzOP_UIURZcFIZ9gJ0gpdyow4,3771
|
|
87
102
|
teamdbapi/models/user_group.py,sha256=07-kop2hu_K1i3TI7AMiDxZm8eFJ_ujdqR-L-7E9J4o,3855
|
|
88
103
|
teamdbapi/models/value_field.py,sha256=mJNrh3oxamsKGeF0j8HDF_RL7mURCIFzNl8ne9z4r00,9300
|
|
89
|
-
teamdbapi/models/version.py,sha256=
|
|
90
|
-
teamdbapi-3.
|
|
91
|
-
teamdbapi-3.
|
|
92
|
-
teamdbapi-3.
|
|
93
|
-
teamdbapi-3.
|
|
104
|
+
teamdbapi/models/version.py,sha256=wYmr5LOgpdTfRZMT6ztBztTSzY4EsbBGqekZU7NAOQM,14295
|
|
105
|
+
teamdbapi-3.3.0.dist-info/LICENSE,sha256=vwnGuuzuV_Xwrmy2iggjNV3RVLrhWdIM4VXT68N4CxE,1074
|
|
106
|
+
teamdbapi-3.3.0.dist-info/WHEEL,sha256=4TfKIB_xu-04bc2iKz6_zFt-gEFEEDU_31HGhqzOCE8,81
|
|
107
|
+
teamdbapi-3.3.0.dist-info/METADATA,sha256=scp7ddg8sW5lZZfbyop4FTGMc9LWqSa_PrD0M2efK_k,2367
|
|
108
|
+
teamdbapi-3.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|