qi-compute-api-client 0.38.0__py3-none-any.whl → 0.38.2__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.

@@ -63,6 +63,7 @@ from compute_api_client.models.batch_job_in import BatchJobIn
63
63
  from compute_api_client.models.batch_job_status import BatchJobStatus
64
64
  from compute_api_client.models.commit import Commit
65
65
  from compute_api_client.models.commit_in import CommitIn
66
+ from compute_api_client.models.compile_payload import CompilePayload
66
67
  from compute_api_client.models.compile_stage import CompileStage
67
68
  from compute_api_client.models.domain import Domain
68
69
  from compute_api_client.models.file import File
@@ -33,6 +33,7 @@ from typing import Optional
33
33
 
34
34
  from compute_api_client.models.commit import Commit
35
35
  from compute_api_client.models.commit_in import CommitIn
36
+ from compute_api_client.models.compile_payload import CompilePayload
36
37
  from compute_api_client.models.page_commit import PageCommit
37
38
 
38
39
  from compute_api_client.api_client import ApiClient
@@ -53,6 +54,294 @@ class CommitsApi:
53
54
  self.api_client = api_client
54
55
 
55
56
 
57
+ @validate_call
58
+ async def compile_commit_commits_id_compile_post(
59
+ self,
60
+ id: StrictInt,
61
+ compile_payload: CompilePayload,
62
+ _request_timeout: Union[
63
+ None,
64
+ Annotated[StrictFloat, Field(gt=0)],
65
+ Tuple[
66
+ Annotated[StrictFloat, Field(gt=0)],
67
+ Annotated[StrictFloat, Field(gt=0)]
68
+ ]
69
+ ] = None,
70
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
71
+ _content_type: Optional[StrictStr] = None,
72
+ _headers: Optional[Dict[StrictStr, Any]] = None,
73
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
74
+ ) -> None:
75
+ """Compile file in a commit
76
+
77
+ Compile file in a commit.
78
+
79
+ :param id: (required)
80
+ :type id: int
81
+ :param compile_payload: (required)
82
+ :type compile_payload: CompilePayload
83
+ :param _request_timeout: timeout setting for this request. If one
84
+ number provided, it will be total request
85
+ timeout. It can also be a pair (tuple) of
86
+ (connection, read) timeouts.
87
+ :type _request_timeout: int, tuple(int, int), optional
88
+ :param _request_auth: set to override the auth_settings for an a single
89
+ request; this effectively ignores the
90
+ authentication in the spec for a single request.
91
+ :type _request_auth: dict, optional
92
+ :param _content_type: force content-type for the request.
93
+ :type _content_type: str, Optional
94
+ :param _headers: set to override the headers for a single
95
+ request; this effectively ignores the headers
96
+ in the spec for a single request.
97
+ :type _headers: dict, optional
98
+ :param _host_index: set to override the host_index for a single
99
+ request; this effectively ignores the host_index
100
+ in the spec for a single request.
101
+ :type _host_index: int, optional
102
+ :return: Returns the result object.
103
+ """ # noqa: E501
104
+
105
+ _param = self._compile_commit_commits_id_compile_post_serialize(
106
+ id=id,
107
+ compile_payload=compile_payload,
108
+ _request_auth=_request_auth,
109
+ _content_type=_content_type,
110
+ _headers=_headers,
111
+ _host_index=_host_index
112
+ )
113
+
114
+ _response_types_map: Dict[str, Optional[str]] = {
115
+
116
+ }
117
+ response_data = await self.api_client.call_api(
118
+ *_param,
119
+ _request_timeout=_request_timeout
120
+ )
121
+ await response_data.read()
122
+ return self.api_client.response_deserialize(
123
+ response_data=response_data,
124
+ response_types_map=_response_types_map,
125
+ ).data
126
+
127
+
128
+ @validate_call
129
+ async def compile_commit_commits_id_compile_post_with_http_info(
130
+ self,
131
+ id: StrictInt,
132
+ compile_payload: CompilePayload,
133
+ _request_timeout: Union[
134
+ None,
135
+ Annotated[StrictFloat, Field(gt=0)],
136
+ Tuple[
137
+ Annotated[StrictFloat, Field(gt=0)],
138
+ Annotated[StrictFloat, Field(gt=0)]
139
+ ]
140
+ ] = None,
141
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
142
+ _content_type: Optional[StrictStr] = None,
143
+ _headers: Optional[Dict[StrictStr, Any]] = None,
144
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
145
+ ) -> ApiResponse[None]:
146
+ """Compile file in a commit
147
+
148
+ Compile file in a commit.
149
+
150
+ :param id: (required)
151
+ :type id: int
152
+ :param compile_payload: (required)
153
+ :type compile_payload: CompilePayload
154
+ :param _request_timeout: timeout setting for this request. If one
155
+ number provided, it will be total request
156
+ timeout. It can also be a pair (tuple) of
157
+ (connection, read) timeouts.
158
+ :type _request_timeout: int, tuple(int, int), optional
159
+ :param _request_auth: set to override the auth_settings for an a single
160
+ request; this effectively ignores the
161
+ authentication in the spec for a single request.
162
+ :type _request_auth: dict, optional
163
+ :param _content_type: force content-type for the request.
164
+ :type _content_type: str, Optional
165
+ :param _headers: set to override the headers for a single
166
+ request; this effectively ignores the headers
167
+ in the spec for a single request.
168
+ :type _headers: dict, optional
169
+ :param _host_index: set to override the host_index for a single
170
+ request; this effectively ignores the host_index
171
+ in the spec for a single request.
172
+ :type _host_index: int, optional
173
+ :return: Returns the result object.
174
+ """ # noqa: E501
175
+
176
+ _param = self._compile_commit_commits_id_compile_post_serialize(
177
+ id=id,
178
+ compile_payload=compile_payload,
179
+ _request_auth=_request_auth,
180
+ _content_type=_content_type,
181
+ _headers=_headers,
182
+ _host_index=_host_index
183
+ )
184
+
185
+ _response_types_map: Dict[str, Optional[str]] = {
186
+
187
+ }
188
+ response_data = await self.api_client.call_api(
189
+ *_param,
190
+ _request_timeout=_request_timeout
191
+ )
192
+ await response_data.read()
193
+ return self.api_client.response_deserialize(
194
+ response_data=response_data,
195
+ response_types_map=_response_types_map,
196
+ )
197
+
198
+
199
+ @validate_call
200
+ async def compile_commit_commits_id_compile_post_without_preload_content(
201
+ self,
202
+ id: StrictInt,
203
+ compile_payload: CompilePayload,
204
+ _request_timeout: Union[
205
+ None,
206
+ Annotated[StrictFloat, Field(gt=0)],
207
+ Tuple[
208
+ Annotated[StrictFloat, Field(gt=0)],
209
+ Annotated[StrictFloat, Field(gt=0)]
210
+ ]
211
+ ] = None,
212
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
213
+ _content_type: Optional[StrictStr] = None,
214
+ _headers: Optional[Dict[StrictStr, Any]] = None,
215
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
216
+ ) -> RESTResponseType:
217
+ """Compile file in a commit
218
+
219
+ Compile file in a commit.
220
+
221
+ :param id: (required)
222
+ :type id: int
223
+ :param compile_payload: (required)
224
+ :type compile_payload: CompilePayload
225
+ :param _request_timeout: timeout setting for this request. If one
226
+ number provided, it will be total request
227
+ timeout. It can also be a pair (tuple) of
228
+ (connection, read) timeouts.
229
+ :type _request_timeout: int, tuple(int, int), optional
230
+ :param _request_auth: set to override the auth_settings for an a single
231
+ request; this effectively ignores the
232
+ authentication in the spec for a single request.
233
+ :type _request_auth: dict, optional
234
+ :param _content_type: force content-type for the request.
235
+ :type _content_type: str, Optional
236
+ :param _headers: set to override the headers for a single
237
+ request; this effectively ignores the headers
238
+ in the spec for a single request.
239
+ :type _headers: dict, optional
240
+ :param _host_index: set to override the host_index for a single
241
+ request; this effectively ignores the host_index
242
+ in the spec for a single request.
243
+ :type _host_index: int, optional
244
+ :return: Returns the result object.
245
+ """ # noqa: E501
246
+
247
+ _param = self._compile_commit_commits_id_compile_post_serialize(
248
+ id=id,
249
+ compile_payload=compile_payload,
250
+ _request_auth=_request_auth,
251
+ _content_type=_content_type,
252
+ _headers=_headers,
253
+ _host_index=_host_index
254
+ )
255
+
256
+ _response_types_map: Dict[str, Optional[str]] = {
257
+
258
+ }
259
+ response_data = await self.api_client.call_api(
260
+ *_param,
261
+ _request_timeout=_request_timeout
262
+ )
263
+ return response_data.response
264
+
265
+
266
+ def _compile_commit_commits_id_compile_post_serialize(
267
+ self,
268
+ id,
269
+ compile_payload,
270
+ _request_auth,
271
+ _content_type,
272
+ _headers,
273
+ _host_index,
274
+ ) -> Tuple:
275
+
276
+ _host = None
277
+
278
+ _collection_formats: Dict[str, str] = {
279
+
280
+ }
281
+
282
+ _path_params: Dict[str, str] = {}
283
+ _query_params: List[Tuple[str, str]] = []
284
+ _header_params: Dict[str, Optional[str]] = _headers or {}
285
+ _form_params: List[Tuple[str, str]] = []
286
+ _files: Dict[str, str] = {}
287
+ _body_params: Optional[bytes] = None
288
+
289
+ # process the path parameters
290
+ if id is not None:
291
+ _path_params['id'] = id
292
+ # process the query parameters
293
+ # process the header parameters
294
+ # process the form parameters
295
+ # process the body parameter
296
+ if compile_payload is not None:
297
+ _body_params = compile_payload
298
+
299
+
300
+ # set the HTTP header `Accept`
301
+ _header_params['Accept'] = self.api_client.select_header_accept(
302
+ [
303
+ 'application/json'
304
+ ]
305
+ )
306
+
307
+ # set the HTTP header `Content-Type`
308
+ if _content_type:
309
+ _header_params['Content-Type'] = _content_type
310
+ else:
311
+ _default_content_type = (
312
+ self.api_client.select_header_content_type(
313
+ [
314
+ 'application/json'
315
+ ]
316
+ )
317
+ )
318
+ if _default_content_type is not None:
319
+ _header_params['Content-Type'] = _default_content_type
320
+
321
+ # authentication setting
322
+ _auth_settings: List[str] = [
323
+ 'user_bearer',
324
+ 'backend'
325
+ ]
326
+
327
+ return self.api_client.param_serialize(
328
+ method='POST',
329
+ resource_path='/commits/{id}/compile',
330
+ path_params=_path_params,
331
+ query_params=_query_params,
332
+ header_params=_header_params,
333
+ body=_body_params,
334
+ post_params=_form_params,
335
+ files=_files,
336
+ auth_settings=_auth_settings,
337
+ collection_formats=_collection_formats,
338
+ _host=_host,
339
+ _request_auth=_request_auth
340
+ )
341
+
342
+
343
+
344
+
56
345
  @validate_call
57
346
  async def create_commit_commits_post(
58
347
  self,
@@ -4,12 +4,96 @@ All URIs are relative to *http://localhost*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
+ [**compile_commit_commits_id_compile_post**](CommitsApi.md#compile_commit_commits_id_compile_post) | **POST** /commits/{id}/compile | Compile file in a commit
7
8
  [**create_commit_commits_post**](CommitsApi.md#create_commit_commits_post) | **POST** /commits | Create commit
8
9
  [**delete_commit_commits_id_delete**](CommitsApi.md#delete_commit_commits_id_delete) | **DELETE** /commits/{id} | Destroy commit
9
10
  [**read_commit_commits_id_get**](CommitsApi.md#read_commit_commits_id_get) | **GET** /commits/{id} | Get commit by ID
10
11
  [**read_commits_commits_get**](CommitsApi.md#read_commits_commits_get) | **GET** /commits | List commits
11
12
 
12
13
 
14
+ # **compile_commit_commits_id_compile_post**
15
+ > compile_commit_commits_id_compile_post(id, compile_payload)
16
+
17
+ Compile file in a commit
18
+
19
+ Compile file in a commit.
20
+
21
+ ### Example
22
+
23
+ * OAuth Authentication (user_bearer):
24
+ * Api Key Authentication (backend):
25
+ ```python
26
+ import time
27
+ import os
28
+ import compute_api_client
29
+ from compute_api_client.models.compile_payload import CompilePayload
30
+ from compute_api_client.rest import ApiException
31
+ from pprint import pprint
32
+
33
+ # Defining the host is optional and defaults to http://localhost
34
+ # See configuration.py for a list of all supported configuration parameters.
35
+ configuration = compute_api_client.Configuration(
36
+ host = "http://localhost"
37
+ )
38
+
39
+ # The client must configure the authentication and authorization parameters
40
+ # in accordance with the API server security policy.
41
+ # Examples for each auth method are provided below, use the example that
42
+ # satisfies your auth use case.
43
+
44
+ configuration.access_token = os.environ["ACCESS_TOKEN"]
45
+
46
+ # Configure API key authorization: backend
47
+ configuration.api_key['backend'] = os.environ["API_KEY"]
48
+
49
+ # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
50
+ # configuration.api_key_prefix['backend'] = 'Bearer'
51
+
52
+ # Enter a context with an instance of the API client
53
+ async with compute_api_client.ApiClient(configuration) as api_client:
54
+ # Create an instance of the API class
55
+ api_instance = compute_api_client.CommitsApi(api_client)
56
+ id = 56 # int |
57
+ compile_payload = compute_api_client.CompilePayload() # CompilePayload |
58
+
59
+ try:
60
+ # Compile file in a commit
61
+ await api_instance.compile_commit_commits_id_compile_post(id, compile_payload)
62
+ except Exception as e:
63
+ print("Exception when calling CommitsApi->compile_commit_commits_id_compile_post: %s\n" % e)
64
+ ```
65
+
66
+
67
+
68
+ ### Parameters
69
+
70
+ Name | Type | Description | Notes
71
+ ------------- | ------------- | ------------- | -------------
72
+ **id** | **int**| |
73
+ **compile_payload** | [**CompilePayload**](CompilePayload.md)| |
74
+
75
+ ### Return type
76
+
77
+ void (empty response body)
78
+
79
+ ### Authorization
80
+
81
+ [user_bearer](../README.md#user_bearer), [backend](../README.md#backend)
82
+
83
+ ### HTTP request headers
84
+
85
+ - **Content-Type**: application/json
86
+ - **Accept**: application/json
87
+
88
+ ### HTTP response details
89
+ | Status code | Description | Response headers |
90
+ |-------------|-------------|------------------|
91
+ **204** | Compiled | - |
92
+ **404** | Not Found | - |
93
+ **422** | Validation Error | - |
94
+
95
+ [[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)
96
+
13
97
  # **create_commit_commits_post**
14
98
  > Commit create_commit_commits_post(commit_in)
15
99
 
@@ -0,0 +1,29 @@
1
+ # CompilePayload
2
+
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **compile_stage** | [**CompileStage**](CompileStage.md) | |
8
+ **backend_type_id** | **int** | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from compute_api_client.models.compile_payload import CompilePayload
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of CompilePayload from a JSON string
18
+ compile_payload_instance = CompilePayload.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print CompilePayload.to_json()
21
+
22
+ # convert the object into a dict
23
+ compile_payload_dict = compile_payload_instance.to_dict()
24
+ # create an instance of CompilePayload from a dict
25
+ compile_payload_form_dict = compile_payload.from_dict(compile_payload_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -28,6 +28,7 @@ from compute_api_client.models.batch_job_in import BatchJobIn
28
28
  from compute_api_client.models.batch_job_status import BatchJobStatus
29
29
  from compute_api_client.models.commit import Commit
30
30
  from compute_api_client.models.commit_in import CommitIn
31
+ from compute_api_client.models.compile_payload import CompilePayload
31
32
  from compute_api_client.models.compile_stage import CompileStage
32
33
  from compute_api_client.models.domain import Domain
33
34
  from compute_api_client.models.file import File
@@ -0,0 +1,90 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Quantum Inspire 2
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+
21
+ from typing import Any, ClassVar, Dict, List
22
+ from pydantic import BaseModel, StrictInt
23
+ from compute_api_client.models.compile_stage import CompileStage
24
+ try:
25
+ from typing import Self
26
+ except ImportError:
27
+ from typing_extensions import Self
28
+
29
+ class CompilePayload(BaseModel):
30
+ """
31
+ CompilePayload
32
+ """ # noqa: E501
33
+ compile_stage: CompileStage
34
+ backend_type_id: StrictInt
35
+ __properties: ClassVar[List[str]] = ["compile_stage", "backend_type_id"]
36
+
37
+ model_config = {
38
+ "populate_by_name": True,
39
+ "validate_assignment": True
40
+ }
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Self:
54
+ """Create an instance of CompilePayload from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ """
67
+ _dict = self.model_dump(
68
+ by_alias=True,
69
+ exclude={
70
+ },
71
+ exclude_none=True,
72
+ )
73
+ return _dict
74
+
75
+ @classmethod
76
+ def from_dict(cls, obj: Dict) -> Self:
77
+ """Create an instance of CompilePayload from a dict"""
78
+ if obj is None:
79
+ return None
80
+
81
+ if not isinstance(obj, dict):
82
+ return cls.model_validate(obj)
83
+
84
+ _obj = cls.model_validate({
85
+ "compile_stage": obj.get("compile_stage"),
86
+ "backend_type_id": obj.get("backend_type_id")
87
+ })
88
+ return _obj
89
+
90
+
@@ -35,9 +35,7 @@ class CompileStage(str, Enum):
35
35
  allowed enum values
36
36
  """
37
37
  NONE = 'none'
38
- MAPPED = 'mapped'
39
- NATIVE_GATESET = 'native_gateset'
40
- SCHEDULED = 'scheduled'
38
+ DECOMPOSITION = 'decomposition'
41
39
 
42
40
  @classmethod
43
41
  def from_json(cls, json_str: str) -> Self:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qi-compute-api-client
3
- Version: 0.38.0
3
+ Version: 0.38.2
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
@@ -113,6 +113,7 @@ Class | Method | HTTP request | Description
113
113
  *BatchJobsApi* | [**pop_batch_job_batch_jobs_pop_patch**](compute_api_client/docs/BatchJobsApi.md#pop_batch_job_batch_jobs_pop_patch) | **PATCH** /batch_jobs/pop | Take batch job
114
114
  *BatchJobsApi* | [**read_batch_jobs_batch_jobs_get**](compute_api_client/docs/BatchJobsApi.md#read_batch_jobs_batch_jobs_get) | **GET** /batch_jobs | List batch jobs
115
115
  *BatchJobsApi* | [**unpop_batch_job_batch_jobs_unpop_patch**](compute_api_client/docs/BatchJobsApi.md#unpop_batch_job_batch_jobs_unpop_patch) | **PATCH** /batch_jobs/unpop | Take batch job
116
+ *CommitsApi* | [**compile_commit_commits_id_compile_post**](compute_api_client/docs/CommitsApi.md#compile_commit_commits_id_compile_post) | **POST** /commits/{id}/compile | Compile file in a commit
116
117
  *CommitsApi* | [**create_commit_commits_post**](compute_api_client/docs/CommitsApi.md#create_commit_commits_post) | **POST** /commits | Create commit
117
118
  *CommitsApi* | [**delete_commit_commits_id_delete**](compute_api_client/docs/CommitsApi.md#delete_commit_commits_id_delete) | **DELETE** /commits/{id} | Destroy commit
118
119
  *CommitsApi* | [**read_commit_commits_id_get**](compute_api_client/docs/CommitsApi.md#read_commit_commits_id_get) | **GET** /commits/{id} | Get commit by ID
@@ -184,6 +185,7 @@ Class | Method | HTTP request | Description
184
185
  - [BatchJobStatus](compute_api_client/docs/BatchJobStatus.md)
185
186
  - [Commit](compute_api_client/docs/Commit.md)
186
187
  - [CommitIn](compute_api_client/docs/CommitIn.md)
188
+ - [CompilePayload](compute_api_client/docs/CompilePayload.md)
187
189
  - [CompileStage](compute_api_client/docs/CompileStage.md)
188
190
  - [Domain](compute_api_client/docs/Domain.md)
189
191
  - [File](compute_api_client/docs/File.md)
@@ -248,7 +250,7 @@ Authentication schemes defined for the API:
248
250
 
249
251
  - **Type**: OAuth
250
252
  - **Flow**: accessCode
251
- - **Authorization URL**: https://auth.qi2.quantum-inspire.com/realms/oidc_development/protocol/openid-connect/auth
253
+ - **Authorization URL**: https://auth.qi2.quantum-inspire.com/realms/oidc_staging/protocol/openid-connect/auth
252
254
  - **Scopes**: N/A
253
255
 
254
256
  <a id="backend"></a>
@@ -1,10 +1,10 @@
1
- compute_api_client/__init__.py,sha256=PPvcbRzgr9QBIFU8dThwoJSJ-3Wvvwi61xCPYGxZ2vs,6160
1
+ compute_api_client/__init__.py,sha256=KzYZR60xot6tcs9C3UEJXLx3Zn-6O3AWarbY8qyBvMc,6229
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
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
- compute_api_client/api/commits_api.py,sha256=5V_qvBwjVK9ALOQ3sEgdBw0uKtypUBkhha9dQO4tGVY,46742
7
+ compute_api_client/api/commits_api.py,sha256=ETcosKPwE8EYr_wd3rZItlmJqLtuSu8E2CpJt0t5y_0,57560
8
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
@@ -40,7 +40,8 @@ compute_api_client/docs/BatchJobStatus.md,sha256=UQift_l9A3L0azzYjQtr7UnmYk6X36U
40
40
  compute_api_client/docs/BatchJobsApi.md,sha256=h7MhwjOcDwfSuDOK44XrwYw30oUN4vOw4LrM12L2JtI,20832
41
41
  compute_api_client/docs/Commit.md,sha256=WI3TcSFBdLWRjvJ9OBKiAKSN5AX7gXHs7EZm-Zs77FE,894
42
42
  compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2JDKK9w,843
43
- compute_api_client/docs/CommitsApi.md,sha256=URc0Hg8YCHaqieHbRFEdd33kcM29xmPKvh9yG_ZpUTU,10974
43
+ compute_api_client/docs/CommitsApi.md,sha256=47BwU64D-s9OByJxEc-q7xzhvfF-Tc5u3wrOL4DIIOA,13756
44
+ compute_api_client/docs/CompilePayload.md,sha256=W9x3x0CodJPGgiEbyKiaNm7rl0FzayVS8jv-3SiT8PI,954
44
45
  compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
45
46
  compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
46
47
  compute_api_client/docs/File.md,sha256=D3F6zwqPEKjXBuGfbmh9ZiSWG1vMEpxut2qkJJJUEak,1003
@@ -108,7 +109,7 @@ compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6sr
108
109
  compute_api_client/docs/UsersApi.md,sha256=_i1dIB7AW349xb8JcFtGohvK4l6iovAEYUYKaY5DZYc,10802
109
110
  compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
110
111
  compute_api_client/exceptions.py,sha256=SxnwGBUmd989OJ9knsPWbZ3v59nn3_kipRYzOQZztXE,5451
111
- compute_api_client/models/__init__.py,sha256=4N5O3a7EzozD5Zv4YpRJRb6m-osqgY2rFHE9-yYno5w,4429
112
+ compute_api_client/models/__init__.py,sha256=ZowuC1OJQuy88rfDPgWejU3XpTV30KEJKBA8expO5ME,4498
112
113
  compute_api_client/models/algorithm.py,sha256=eA77q4e5gi8VStOJplR0UF-E9gBr6VFkxsqt8Ohx1Yo,3190
113
114
  compute_api_client/models/algorithm_in.py,sha256=-U2CoNZZSpAGBe6O7KFMJ9yIJAaOGEbPBdCTMIB3s2g,3148
114
115
  compute_api_client/models/algorithm_type.py,sha256=yKefgGvi-f_O6OReG1Tu8Me_u2YZrvx5CFOSlTk8-6M,862
@@ -123,7 +124,8 @@ compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6
123
124
  compute_api_client/models/batch_job_status.py,sha256=5RUAIBC_ZKrkno2pM3KXSyLA5BB91PMUBL9tIA2W50w,941
124
125
  compute_api_client/models/commit.py,sha256=n7E2FeCSYGoxR2GA-Iaynon5WgCbyme5_eXqngV5GVE,2813
125
126
  compute_api_client/models/commit_in.py,sha256=ABzzJRUP9FEc2y6AxRmWUFRxT_KJSH7X_TIfLpLdfLk,2475
126
- compute_api_client/models/compile_stage.py,sha256=tjYzMVSAAtFemNiAchhZs-SOO7sKv5aCkfZWp0UgSwE,919
127
+ compute_api_client/models/compile_payload.py,sha256=QMNv-4WWQcLoFS5LQ6GuYuLLaW_8e_StRkMnP4lNZ74,2576
128
+ compute_api_client/models/compile_stage.py,sha256=qgHZA576Rij7HB_RwrunR4kdJ_G2_YmqpFzI-12L8l4,867
127
129
  compute_api_client/models/domain.py,sha256=74HU4E_VPU84i7035NxJArBJW87yo-MS-YSoT1J7-Ac,875
128
130
  compute_api_client/models/file.py,sha256=PBxeUINDtmevly7zqwWTbg_1gKq21c5__HlGSfD5jqk,3381
129
131
  compute_api_client/models/file_in.py,sha256=MWC-9renc5TKWJ5C-xSEWa7jmtm8xlL0YmcWOa0axRo,3397
@@ -176,7 +178,7 @@ compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm
176
178
  compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
177
179
  compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
178
180
  compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
179
- qi_compute_api_client-0.38.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
180
- qi_compute_api_client-0.38.0.dist-info/METADATA,sha256=Ig24t8o11rndDC1zVaQZxC_itYG4itlJOLPXLwtnQgY,19994
181
- qi_compute_api_client-0.38.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
182
- qi_compute_api_client-0.38.0.dist-info/RECORD,,
181
+ qi_compute_api_client-0.38.2.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
182
+ qi_compute_api_client-0.38.2.dist-info/METADATA,sha256=WMy1dyyIyfMdh-_bKhDY5b-xogtiOG6yb_eHIcftMWk,20251
183
+ qi_compute_api_client-0.38.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
184
+ qi_compute_api_client-0.38.2.dist-info/RECORD,,