qi-compute-api-client 0.35.0__py3-none-any.whl → 0.37.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.

Potentially problematic release.


This version of qi-compute-api-client might be problematic. Click here for more details.

@@ -786,7 +786,6 @@ class BackendTypesApi:
786
786
 
787
787
  # authentication setting
788
788
  _auth_settings: List[str] = [
789
- 'user_bearer'
790
789
  ]
791
790
 
792
791
  return self.api_client.param_serialize(
@@ -867,6 +867,8 @@ class FilesApi:
867
867
  language_id: Optional[StrictInt] = None,
868
868
  compile_stage: Optional[CompileStage] = None,
869
869
  generated: Optional[StrictBool] = None,
870
+ name__isnull: Optional[StrictBool] = None,
871
+ name: Optional[StrictStr] = None,
870
872
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
871
873
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
872
874
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -900,6 +902,10 @@ class FilesApi:
900
902
  :type compile_stage: CompileStage
901
903
  :param generated:
902
904
  :type generated: bool
905
+ :param name__isnull:
906
+ :type name__isnull: bool
907
+ :param name:
908
+ :type name: str
903
909
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
904
910
  :type sort_by: str
905
911
  :param latest: If True gets the most recently created object.
@@ -937,6 +943,8 @@ class FilesApi:
937
943
  language_id=language_id,
938
944
  compile_stage=compile_stage,
939
945
  generated=generated,
946
+ name__isnull=name__isnull,
947
+ name=name,
940
948
  sort_by=sort_by,
941
949
  latest=latest,
942
950
  page=page,
@@ -972,6 +980,8 @@ class FilesApi:
972
980
  language_id: Optional[StrictInt] = None,
973
981
  compile_stage: Optional[CompileStage] = None,
974
982
  generated: Optional[StrictBool] = None,
983
+ name__isnull: Optional[StrictBool] = None,
984
+ name: Optional[StrictStr] = None,
975
985
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
976
986
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
977
987
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -1005,6 +1015,10 @@ class FilesApi:
1005
1015
  :type compile_stage: CompileStage
1006
1016
  :param generated:
1007
1017
  :type generated: bool
1018
+ :param name__isnull:
1019
+ :type name__isnull: bool
1020
+ :param name:
1021
+ :type name: str
1008
1022
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
1009
1023
  :type sort_by: str
1010
1024
  :param latest: If True gets the most recently created object.
@@ -1042,6 +1056,8 @@ class FilesApi:
1042
1056
  language_id=language_id,
1043
1057
  compile_stage=compile_stage,
1044
1058
  generated=generated,
1059
+ name__isnull=name__isnull,
1060
+ name=name,
1045
1061
  sort_by=sort_by,
1046
1062
  latest=latest,
1047
1063
  page=page,
@@ -1077,6 +1093,8 @@ class FilesApi:
1077
1093
  language_id: Optional[StrictInt] = None,
1078
1094
  compile_stage: Optional[CompileStage] = None,
1079
1095
  generated: Optional[StrictBool] = None,
1096
+ name__isnull: Optional[StrictBool] = None,
1097
+ name: Optional[StrictStr] = None,
1080
1098
  sort_by: Annotated[Optional[StrictStr], Field(description="The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.")] = None,
1081
1099
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1082
1100
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
@@ -1110,6 +1128,10 @@ class FilesApi:
1110
1128
  :type compile_stage: CompileStage
1111
1129
  :param generated:
1112
1130
  :type generated: bool
1131
+ :param name__isnull:
1132
+ :type name__isnull: bool
1133
+ :param name:
1134
+ :type name: str
1113
1135
  :param sort_by: The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'.
1114
1136
  :type sort_by: str
1115
1137
  :param latest: If True gets the most recently created object.
@@ -1147,6 +1169,8 @@ class FilesApi:
1147
1169
  language_id=language_id,
1148
1170
  compile_stage=compile_stage,
1149
1171
  generated=generated,
1172
+ name__isnull=name__isnull,
1173
+ name=name,
1150
1174
  sort_by=sort_by,
1151
1175
  latest=latest,
1152
1176
  page=page,
@@ -1177,6 +1201,8 @@ class FilesApi:
1177
1201
  language_id,
1178
1202
  compile_stage,
1179
1203
  generated,
1204
+ name__isnull,
1205
+ name,
1180
1206
  sort_by,
1181
1207
  latest,
1182
1208
  page,
@@ -1226,6 +1252,14 @@ class FilesApi:
1226
1252
 
1227
1253
  _query_params.append(('generated', generated))
1228
1254
 
1255
+ if name__isnull is not None:
1256
+
1257
+ _query_params.append(('name__isnull', name__isnull))
1258
+
1259
+ if name is not None:
1260
+
1261
+ _query_params.append(('name', name))
1262
+
1229
1263
  if sort_by is not None:
1230
1264
 
1231
1265
  _query_params.append(('sort_by', sort_by))
@@ -29,7 +29,7 @@ from datetime import datetime
29
29
 
30
30
  from pydantic import StrictBool, StrictFloat, StrictInt, StrictStr
31
31
 
32
- from typing import Any, Dict, Optional, Union
32
+ from typing import Optional, Union
33
33
 
34
34
  from compute_api_client.models.page_result import PageResult
35
35
  from compute_api_client.models.result import Result
@@ -876,7 +876,6 @@ class ResultsApi:
876
876
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
877
877
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
878
878
  size: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Page size")] = None,
879
- body: Optional[Dict[str, Any]] = None,
880
879
  _request_timeout: Union[
881
880
  None,
882
881
  Annotated[StrictFloat, Field(gt=0)],
@@ -924,8 +923,6 @@ class ResultsApi:
924
923
  :type page: int
925
924
  :param size: Page size
926
925
  :type size: int
927
- :param body:
928
- :type body: object
929
926
  :param _request_timeout: timeout setting for this request. If one
930
927
  number provided, it will be total request
931
928
  timeout. It can also be a pair (tuple) of
@@ -964,7 +961,6 @@ class ResultsApi:
964
961
  latest=latest,
965
962
  page=page,
966
963
  size=size,
967
- body=body,
968
964
  _request_auth=_request_auth,
969
965
  _content_type=_content_type,
970
966
  _headers=_headers,
@@ -1006,7 +1002,6 @@ class ResultsApi:
1006
1002
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1007
1003
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
1008
1004
  size: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Page size")] = None,
1009
- body: Optional[Dict[str, Any]] = None,
1010
1005
  _request_timeout: Union[
1011
1006
  None,
1012
1007
  Annotated[StrictFloat, Field(gt=0)],
@@ -1054,8 +1049,6 @@ class ResultsApi:
1054
1049
  :type page: int
1055
1050
  :param size: Page size
1056
1051
  :type size: int
1057
- :param body:
1058
- :type body: object
1059
1052
  :param _request_timeout: timeout setting for this request. If one
1060
1053
  number provided, it will be total request
1061
1054
  timeout. It can also be a pair (tuple) of
@@ -1094,7 +1087,6 @@ class ResultsApi:
1094
1087
  latest=latest,
1095
1088
  page=page,
1096
1089
  size=size,
1097
- body=body,
1098
1090
  _request_auth=_request_auth,
1099
1091
  _content_type=_content_type,
1100
1092
  _headers=_headers,
@@ -1136,7 +1128,6 @@ class ResultsApi:
1136
1128
  latest: Annotated[Optional[StrictBool], Field(description="If True gets the most recently created object.")] = None,
1137
1129
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="Page number")] = None,
1138
1130
  size: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Page size")] = None,
1139
- body: Optional[Dict[str, Any]] = None,
1140
1131
  _request_timeout: Union[
1141
1132
  None,
1142
1133
  Annotated[StrictFloat, Field(gt=0)],
@@ -1184,8 +1175,6 @@ class ResultsApi:
1184
1175
  :type page: int
1185
1176
  :param size: Page size
1186
1177
  :type size: int
1187
- :param body:
1188
- :type body: object
1189
1178
  :param _request_timeout: timeout setting for this request. If one
1190
1179
  number provided, it will be total request
1191
1180
  timeout. It can also be a pair (tuple) of
@@ -1224,7 +1213,6 @@ class ResultsApi:
1224
1213
  latest=latest,
1225
1214
  page=page,
1226
1215
  size=size,
1227
- body=body,
1228
1216
  _request_auth=_request_auth,
1229
1217
  _content_type=_content_type,
1230
1218
  _headers=_headers,
@@ -1261,7 +1249,6 @@ class ResultsApi:
1261
1249
  latest,
1262
1250
  page,
1263
1251
  size,
1264
- body,
1265
1252
  _request_auth,
1266
1253
  _content_type,
1267
1254
  _headers,
@@ -1353,8 +1340,6 @@ class ResultsApi:
1353
1340
  # process the header parameters
1354
1341
  # process the form parameters
1355
1342
  # process the body parameter
1356
- if body is not None:
1357
- _body_params = body
1358
1343
 
1359
1344
 
1360
1345
  # set the HTTP header `Accept`
@@ -1364,19 +1349,6 @@ class ResultsApi:
1364
1349
  ]
1365
1350
  )
1366
1351
 
1367
- # set the HTTP header `Content-Type`
1368
- if _content_type:
1369
- _header_params['Content-Type'] = _content_type
1370
- else:
1371
- _default_content_type = (
1372
- self.api_client.select_header_content_type(
1373
- [
1374
- 'application/json'
1375
- ]
1376
- )
1377
- )
1378
- if _default_content_type is not None:
1379
- _header_params['Content-Type'] = _default_content_type
1380
1352
 
1381
1353
  # authentication setting
1382
1354
  _auth_settings: List[str] = [
@@ -93,7 +93,6 @@ Read backend types.
93
93
 
94
94
  ### Example
95
95
 
96
- * OAuth Authentication (user_bearer):
97
96
  ```python
98
97
  import time
99
98
  import os
@@ -109,12 +108,6 @@ configuration = compute_api_client.Configuration(
109
108
  host = "http://localhost"
110
109
  )
111
110
 
112
- # The client must configure the authentication and authorization parameters
113
- # in accordance with the API server security policy.
114
- # Examples for each auth method are provided below, use the example that
115
- # satisfies your auth use case.
116
-
117
- configuration.access_token = os.environ["ACCESS_TOKEN"]
118
111
 
119
112
  # Enter a context with an instance of the API client
120
113
  async with compute_api_client.ApiClient(configuration) as api_client:
@@ -171,7 +164,7 @@ Name | Type | Description | Notes
171
164
 
172
165
  ### Authorization
173
166
 
174
- [user_bearer](../README.md#user_bearer)
167
+ No authorization required
175
168
 
176
169
  ### HTTP request headers
177
170
 
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **compile_stage** | [**CompileStage**](CompileStage.md) | |
12
12
  **compile_properties** | **object** | |
13
13
  **generated** | **bool** | |
14
+ **name** | **str** | | [optional]
14
15
 
15
16
  ## Example
16
17
 
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
10
10
  **compile_stage** | [**CompileStage**](CompileStage.md) | |
11
11
  **compile_properties** | **object** | |
12
12
  **generated** | **bool** | | [optional] [default to False]
13
+ **name** | **str** | | [optional]
13
14
 
14
15
  ## Example
15
16
 
@@ -243,7 +243,7 @@ Name | Type | Description | Notes
243
243
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
244
244
 
245
245
  # **read_files_files_get**
246
- > PageFile read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, sort_by=sort_by, latest=latest, page=page, size=size)
246
+ > PageFile read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, name__isnull=name__isnull, name=name, sort_by=sort_by, latest=latest, page=page, size=size)
247
247
 
248
248
  List files
249
249
 
@@ -284,6 +284,8 @@ async with compute_api_client.ApiClient(configuration) as api_client:
284
284
  language_id = 56 # int | (optional)
285
285
  compile_stage = compute_api_client.CompileStage() # CompileStage | (optional)
286
286
  generated = True # bool | (optional)
287
+ name__isnull = True # bool | (optional)
288
+ name = 'name_example' # str | (optional)
287
289
  sort_by = 'sort_by_example' # str | The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. (optional)
288
290
  latest = True # bool | If True gets the most recently created object. (optional)
289
291
  page = 1 # int | Page number (optional) (default to 1)
@@ -291,7 +293,7 @@ async with compute_api_client.ApiClient(configuration) as api_client:
291
293
 
292
294
  try:
293
295
  # List files
294
- api_response = await api_instance.read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, sort_by=sort_by, latest=latest, page=page, size=size)
296
+ api_response = await api_instance.read_files_files_get(id=id, commit_id=commit_id, content=content, language_id=language_id, compile_stage=compile_stage, generated=generated, name__isnull=name__isnull, name=name, sort_by=sort_by, latest=latest, page=page, size=size)
295
297
  print("The response of FilesApi->read_files_files_get:\n")
296
298
  pprint(api_response)
297
299
  except Exception as e:
@@ -310,6 +312,8 @@ Name | Type | Description | Notes
310
312
  **language_id** | **int**| | [optional]
311
313
  **compile_stage** | [**CompileStage**](.md)| | [optional]
312
314
  **generated** | **bool**| | [optional]
315
+ **name__isnull** | **bool**| | [optional]
316
+ **name** | **str**| | [optional]
313
317
  **sort_by** | **str**| The field name to sort on. Prefix with '-' for descending order. E.g., '-created_on'. | [optional]
314
318
  **latest** | **bool**| If True gets the most recently created object. | [optional]
315
319
  **page** | **int**| Page number | [optional] [default to 1]
@@ -245,7 +245,7 @@ Name | Type | Description | Notes
245
245
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
246
246
 
247
247
  # **read_results_by_algorithm_id_results_algorithm_algorithm_id_get**
248
- > PageResult read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size, body=body)
248
+ > PageResult read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size)
249
249
 
250
250
  Retrieve results by algorithm ID
251
251
 
@@ -294,11 +294,10 @@ async with compute_api_client.ApiClient(configuration) as api_client:
294
294
  latest = True # bool | If True gets the most recently created object. (optional)
295
295
  page = 1 # int | Page number (optional) (default to 1)
296
296
  size = 50 # int | Page size (optional) (default to 50)
297
- body = None # object | (optional)
298
297
 
299
298
  try:
300
299
  # Retrieve results by algorithm ID
301
- api_response = await api_instance.read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size, body=body)
300
+ api_response = await api_instance.read_results_by_algorithm_id_results_algorithm_algorithm_id_get(algorithm_id, id=id, created_on=created_on, job_id=job_id, metadata_id=metadata_id, execution_time_in_seconds=execution_time_in_seconds, shots_requested__isnull=shots_requested__isnull, shots_requested=shots_requested, shots_done__isnull=shots_done__isnull, shots_done=shots_done, results__isnull=results__isnull, sort_by=sort_by, latest=latest, page=page, size=size)
302
301
  print("The response of ResultsApi->read_results_by_algorithm_id_results_algorithm_algorithm_id_get:\n")
303
302
  pprint(api_response)
304
303
  except Exception as e:
@@ -326,7 +325,6 @@ Name | Type | Description | Notes
326
325
  **latest** | **bool**| If True gets the most recently created object. | [optional]
327
326
  **page** | **int**| Page number | [optional] [default to 1]
328
327
  **size** | **int**| Page size | [optional] [default to 50]
329
- **body** | **object**| | [optional]
330
328
 
331
329
  ### Return type
332
330
 
@@ -338,7 +336,7 @@ Name | Type | Description | Notes
338
336
 
339
337
  ### HTTP request headers
340
338
 
341
- - **Content-Type**: application/json
339
+ - **Content-Type**: Not defined
342
340
  - **Accept**: application/json
343
341
 
344
342
  ### HTTP response details
@@ -18,8 +18,10 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
 
21
- from typing import Any, ClassVar, Dict, List, Union
21
+ from typing import Any, ClassVar, Dict, List, Optional, Union
22
22
  from pydantic import BaseModel, StrictBool, StrictInt, StrictStr
23
+ from pydantic import Field
24
+ from typing_extensions import Annotated
23
25
  from compute_api_client.models.compile_stage import CompileStage
24
26
  try:
25
27
  from typing import Self
@@ -37,7 +39,8 @@ class File(BaseModel):
37
39
  compile_stage: CompileStage
38
40
  compile_properties: Union[str, Any]
39
41
  generated: StrictBool
40
- __properties: ClassVar[List[str]] = ["id", "commit_id", "content", "language_id", "compile_stage", "compile_properties", "generated"]
42
+ name: Optional[Annotated[str, Field(strict=True, max_length=255)]] = None
43
+ __properties: ClassVar[List[str]] = ["id", "commit_id", "content", "language_id", "compile_stage", "compile_properties", "generated", "name"]
41
44
 
42
45
  model_config = {
43
46
  "populate_by_name": True,
@@ -75,6 +78,11 @@ class File(BaseModel):
75
78
  },
76
79
  exclude_none=True,
77
80
  )
81
+ # set to None if name (nullable) is None
82
+ # and model_fields_set contains the field
83
+ if self.name is None and "name" in self.model_fields_set:
84
+ _dict['name'] = None
85
+
78
86
  return _dict
79
87
 
80
88
  @classmethod
@@ -93,7 +101,8 @@ class File(BaseModel):
93
101
  "language_id": obj.get("language_id"),
94
102
  "compile_stage": obj.get("compile_stage"),
95
103
  "compile_properties": obj.get("compile_properties"),
96
- "generated": obj.get("generated")
104
+ "generated": obj.get("generated"),
105
+ "name": obj.get("name")
97
106
  })
98
107
  return _obj
99
108
 
@@ -20,6 +20,8 @@ import json
20
20
 
21
21
  from typing import Any, ClassVar, Dict, List, Optional, Union
22
22
  from pydantic import BaseModel, StrictBool, StrictInt, StrictStr
23
+ from pydantic import Field
24
+ from typing_extensions import Annotated
23
25
  from compute_api_client.models.compile_stage import CompileStage
24
26
  try:
25
27
  from typing import Self
@@ -36,7 +38,8 @@ class FileIn(BaseModel):
36
38
  compile_stage: CompileStage
37
39
  compile_properties: Union[str, Any]
38
40
  generated: Optional[StrictBool] = False
39
- __properties: ClassVar[List[str]] = ["commit_id", "content", "language_id", "compile_stage", "compile_properties", "generated"]
41
+ name: Optional[Annotated[str, Field(strict=True, max_length=255)]] = None
42
+ __properties: ClassVar[List[str]] = ["commit_id", "content", "language_id", "compile_stage", "compile_properties", "generated", "name"]
40
43
 
41
44
  model_config = {
42
45
  "populate_by_name": True,
@@ -74,6 +77,11 @@ class FileIn(BaseModel):
74
77
  },
75
78
  exclude_none=True,
76
79
  )
80
+ # set to None if name (nullable) is None
81
+ # and model_fields_set contains the field
82
+ if self.name is None and "name" in self.model_fields_set:
83
+ _dict['name'] = None
84
+
77
85
  return _dict
78
86
 
79
87
  @classmethod
@@ -91,7 +99,8 @@ class FileIn(BaseModel):
91
99
  "language_id": obj.get("language_id"),
92
100
  "compile_stage": obj.get("compile_stage"),
93
101
  "compile_properties": obj.get("compile_properties"),
94
- "generated": obj.get("generated") if obj.get("generated") is not None else False
102
+ "generated": obj.get("generated") if obj.get("generated") is not None else False,
103
+ "name": obj.get("name")
95
104
  })
96
105
  return _obj
97
106
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qi-compute-api-client
3
- Version: 0.35.0
3
+ Version: 0.37.0
4
4
  Summary: An API client for the Compute Job Manager of Quantum Inspire.
5
5
  Home-page: https://github.com/QuTech-Delft/compute-api-client
6
6
  License: Apache-2.0
@@ -2,10 +2,10 @@ compute_api_client/__init__.py,sha256=PPvcbRzgr9QBIFU8dThwoJSJ-3Wvvwi61xCPYGxZ2v
2
2
  compute_api_client/api/__init__.py,sha256=r1XAqXSWdvgMGLPSoqbjUEHsf6p2tYHMg7Aejad7u24,1199
3
3
  compute_api_client/api/algorithms_api.py,sha256=Iq3X7347R8ZsF3hDoIlEA8girl0ww_k1orMPMc6ygDE,59489
4
4
  compute_api_client/api/backend_api.py,sha256=zNX_CYAm-6IrCuR7hlgHOCTwOkR1YQXn-3Ck9VUsCK8,57958
5
- compute_api_client/api/backend_types_api.py,sha256=RV57i8F30r4aMVYpRNaBLKtmIb0TcUikn6d82rSBuhM,30054
5
+ compute_api_client/api/backend_types_api.py,sha256=8JU5Xchm8ptc_vDzyTSkWrpFLlED1Bse2X3Ax_QSeeQ,30028
6
6
  compute_api_client/api/batch_jobs_api.py,sha256=OB9EsaNpLvr80Tq3CUkNoJlwrO4CnDnVBeHne3FVJa8,83892
7
7
  compute_api_client/api/commits_api.py,sha256=5V_qvBwjVK9ALOQ3sEgdBw0uKtypUBkhha9dQO4tGVY,46742
8
- compute_api_client/api/files_api.py,sha256=N4xCc9gK17IJi-wZt9t9RCraJB6DCkHm-wAj1ZUYXlM,46808
8
+ compute_api_client/api/files_api.py,sha256=eItVegQVnni7AK2yyT_6Paj4WB01vUwM8fIwxwJEZuk,47862
9
9
  compute_api_client/api/final_results_api.py,sha256=zfr4Yn44Q5KhNSHAk2aC_ZfLa1yASHHq3D3_MJ3ToNg,31894
10
10
  compute_api_client/api/health_api.py,sha256=7oW14fRdmsHaQjlTUXMCksFb7wfmKybQhL6zqiFa2bg,10223
11
11
  compute_api_client/api/jobs_api.py,sha256=Pr-nutBW3a7eeymnoPUJRLWrFFb_lVyRi50_k4aZv4M,62808
@@ -15,7 +15,7 @@ compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUy
15
15
  compute_api_client/api/permissions_api.py,sha256=-8Y7YJa4lpaCVHckoVwYa-cJYiWD-98_IL0su1ArsEI,49598
16
16
  compute_api_client/api/projects_api.py,sha256=URa3DDiCqiHdR7NWfWR-Y7-9RuQ7UOAWQKxEVyWMDf8,71112
17
17
  compute_api_client/api/reservations_api.py,sha256=28sDPr3slUvdtEzBDeNOHvjzX5A_oxPSgPEkgagChlw,50193
18
- compute_api_client/api/results_api.py,sha256=VOvtVlcEbHGHCKD58Gj_ef431K-5p6oRAH27428IHbo,65279
18
+ compute_api_client/api/results_api.py,sha256=Avnsaj6aHcR43YI-wbanGEbOL3cgWqfSLoCL3OxTiEM,64357
19
19
  compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
20
20
  compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
21
21
  compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
@@ -32,7 +32,7 @@ compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA
32
32
  compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
33
33
  compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
34
34
  compute_api_client/docs/BackendType.md,sha256=mHhQKSZ7a-8g02F5vOsfosavoTaYcsVvw3J4ZAlNaR4,1320
35
- compute_api_client/docs/BackendTypesApi.md,sha256=hfKaNCifgyNLw2p1f68ggQNmBOSsmO8TePhNkRnnJxA,7306
35
+ compute_api_client/docs/BackendTypesApi.md,sha256=bO8kCraT-jqXiu7HPPVDfYEI6m-P19ARmW21CrqzPnU,6963
36
36
  compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
37
37
  compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
38
38
  compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
@@ -43,9 +43,9 @@ compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2
43
43
  compute_api_client/docs/CommitsApi.md,sha256=URc0Hg8YCHaqieHbRFEdd33kcM29xmPKvh9yG_ZpUTU,10974
44
44
  compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
45
45
  compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
46
- compute_api_client/docs/File.md,sha256=Sv44g-54NNYcZL-sJeruJhohCHVNmCaue0u-xfsAHLw,967
47
- compute_api_client/docs/FileIn.md,sha256=yRMAH_chHNZo4YskPGdw_nx14-sPn6S_OPdfm4-ej_U,1006
48
- compute_api_client/docs/FilesApi.md,sha256=PB9Lw50m0-qJTRPvAuQgTfJjo6ASbA89_bMGBffmExA,10955
46
+ compute_api_client/docs/File.md,sha256=D3F6zwqPEKjXBuGfbmh9ZiSWG1vMEpxut2qkJJJUEak,1003
47
+ compute_api_client/docs/FileIn.md,sha256=bLMQCgfGCu0eI56UqRu8k2yAlk5BS7Suf9xisN7IAlE,1042
48
+ compute_api_client/docs/FilesApi.md,sha256=GC4e2AiIb0IVxw5e2pEHulw0bnYVexBRxdR1ouSYAyg,11203
49
49
  compute_api_client/docs/FinalResult.md,sha256=sRCvqIH3TXruJvgaHp4s6zyfCEkuBReVoaqr2iHVkJU,939
50
50
  compute_api_client/docs/FinalResultIn.md,sha256=9RSstFSQ08-we_4TtoEAP1_KIq6FBdftRyc-DDkAGLQ,913
51
51
  compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIlhYR84PiH3kG9A,8167
@@ -96,7 +96,7 @@ compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxG
96
96
  compute_api_client/docs/ReservationsApi.md,sha256=ru49lUSCPKg6uyDcSWuxtGgqOwBMkWKpS7YKJZqj0Ok,12069
97
97
  compute_api_client/docs/Result.md,sha256=dCqJTUZpwJQyoQh4-m45RhqlJQowbta06mBTyTH961U,1009
98
98
  compute_api_client/docs/ResultIn.md,sha256=HFOPIzX-tVPrIUMYYdgyGoq9I_1KFNLDnGIJal0hdag,1027
99
- compute_api_client/docs/ResultsApi.md,sha256=FA2dUSrch2a6udi3BrWenAbDS_gzQSvQ4CwB3JDZClg,15706
99
+ compute_api_client/docs/ResultsApi.md,sha256=UNuPnLNQJh_QhknWbZbrRxakAWoB438XiTw_cCgHglw,15601
100
100
  compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
101
101
  compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
102
102
  compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
@@ -125,8 +125,8 @@ compute_api_client/models/commit.py,sha256=n7E2FeCSYGoxR2GA-Iaynon5WgCbyme5_eXqn
125
125
  compute_api_client/models/commit_in.py,sha256=ABzzJRUP9FEc2y6AxRmWUFRxT_KJSH7X_TIfLpLdfLk,2475
126
126
  compute_api_client/models/compile_stage.py,sha256=tjYzMVSAAtFemNiAchhZs-SOO7sKv5aCkfZWp0UgSwE,919
127
127
  compute_api_client/models/domain.py,sha256=74HU4E_VPU84i7035NxJArBJW87yo-MS-YSoT1J7-Ac,875
128
- compute_api_client/models/file.py,sha256=VShw2-IDR7byr4BwzITD7ge-EwwwNJc9kCZTDyOeofg,2982
129
- compute_api_client/models/file_in.py,sha256=f-hMvyY0y6puLicSf1ngbIZ5QkHBxDyksWd4nVIIxp8,3008
128
+ compute_api_client/models/file.py,sha256=PBxeUINDtmevly7zqwWTbg_1gKq21c5__HlGSfD5jqk,3381
129
+ compute_api_client/models/file_in.py,sha256=MWC-9renc5TKWJ5C-xSEWa7jmtm8xlL0YmcWOa0axRo,3397
130
130
  compute_api_client/models/final_result.py,sha256=nikP4R6CF4otZ3kPmw1_VlrS51-y-2c1UdDhiVFmi28,2643
131
131
  compute_api_client/models/final_result_in.py,sha256=0a3BDpM21XdfMp-kdr7DQ3peU4IDa_Pe-2z6v_D1s_8,2477
132
132
  compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
@@ -176,7 +176,7 @@ compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm
176
176
  compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
177
177
  compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
178
178
  compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
179
- qi_compute_api_client-0.35.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
180
- qi_compute_api_client-0.35.0.dist-info/METADATA,sha256=5wmg_Z6ssa8h71E--c_nmn71B382FG-rSmMFp-CcCrw,19940
181
- qi_compute_api_client-0.35.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
182
- qi_compute_api_client-0.35.0.dist-info/RECORD,,
179
+ qi_compute_api_client-0.37.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
180
+ qi_compute_api_client-0.37.0.dist-info/METADATA,sha256=ve61Ysbu247fG4E43wUMb-fh7sQNJFA8MRfRcgm99rY,19940
181
+ qi_compute_api_client-0.37.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
182
+ qi_compute_api_client-0.37.0.dist-info/RECORD,,