neurograph-core 1.202601291738__py3-none-any.whl → 1.202601291819__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.
neurograph/v1/__init__.py CHANGED
@@ -281,6 +281,7 @@ __all__ = [
281
281
  "PersonasSupplementalPromptDeleteResponse",
282
282
  "PersonasSupplementalPromptGetManyResponse",
283
283
  "PersonasSupplementalPromptResponse",
284
+ "PersonasSupplementalPromptStatusUpdateRequest",
284
285
  "PersonasUpdateDemographicsRequest",
285
286
  "PersonasUpdateDemographicsResponse",
286
287
  "PgtypeBool",
@@ -704,6 +705,7 @@ from neurograph.v1.models.personas_supplemental_prompt_create_request import Per
704
705
  from neurograph.v1.models.personas_supplemental_prompt_delete_response import PersonasSupplementalPromptDeleteResponse as PersonasSupplementalPromptDeleteResponse
705
706
  from neurograph.v1.models.personas_supplemental_prompt_get_many_response import PersonasSupplementalPromptGetManyResponse as PersonasSupplementalPromptGetManyResponse
706
707
  from neurograph.v1.models.personas_supplemental_prompt_response import PersonasSupplementalPromptResponse as PersonasSupplementalPromptResponse
708
+ from neurograph.v1.models.personas_supplemental_prompt_status_update_request import PersonasSupplementalPromptStatusUpdateRequest as PersonasSupplementalPromptStatusUpdateRequest
707
709
  from neurograph.v1.models.personas_update_demographics_request import PersonasUpdateDemographicsRequest as PersonasUpdateDemographicsRequest
708
710
  from neurograph.v1.models.personas_update_demographics_response import PersonasUpdateDemographicsResponse as PersonasUpdateDemographicsResponse
709
711
  from neurograph.v1.models.pgtype_bool import PgtypeBool as PgtypeBool
@@ -51,6 +51,7 @@ from neurograph.v1.models.personas_supplemental_prompt_create_request import Per
51
51
  from neurograph.v1.models.personas_supplemental_prompt_delete_response import PersonasSupplementalPromptDeleteResponse
52
52
  from neurograph.v1.models.personas_supplemental_prompt_get_many_response import PersonasSupplementalPromptGetManyResponse
53
53
  from neurograph.v1.models.personas_supplemental_prompt_response import PersonasSupplementalPromptResponse
54
+ from neurograph.v1.models.personas_supplemental_prompt_status_update_request import PersonasSupplementalPromptStatusUpdateRequest
54
55
  from neurograph.v1.models.personas_update_demographics_request import PersonasUpdateDemographicsRequest
55
56
  from neurograph.v1.models.personas_update_demographics_response import PersonasUpdateDemographicsResponse
56
57
 
@@ -6364,3 +6365,285 @@ class PersonaApi:
6364
6365
  )
6365
6366
 
6366
6367
 
6368
+
6369
+
6370
+ @validate_call
6371
+ def api_v1_persona_supplemental_prompt_prompt_id_status_put(
6372
+ self,
6373
+ prompt_id: Annotated[StrictStr, Field(description="Supplemental Prompt Id")],
6374
+ request: Annotated[PersonasSupplementalPromptStatusUpdateRequest, Field(description="Body")],
6375
+ _request_timeout: Union[
6376
+ None,
6377
+ Annotated[StrictFloat, Field(gt=0)],
6378
+ Tuple[
6379
+ Annotated[StrictFloat, Field(gt=0)],
6380
+ Annotated[StrictFloat, Field(gt=0)]
6381
+ ]
6382
+ ] = None,
6383
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
6384
+ _content_type: Optional[StrictStr] = None,
6385
+ _headers: Optional[Dict[StrictStr, Any]] = None,
6386
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6387
+ ) -> PersonasSupplementalPromptResponse:
6388
+ """Update Persona Supplemental Prompt Status
6389
+
6390
+ Update processing_state for a supplemental prompt.
6391
+
6392
+ :param prompt_id: Supplemental Prompt Id (required)
6393
+ :type prompt_id: str
6394
+ :param request: Body (required)
6395
+ :type request: PersonasSupplementalPromptStatusUpdateRequest
6396
+ :param _request_timeout: timeout setting for this request. If one
6397
+ number provided, it will be total request
6398
+ timeout. It can also be a pair (tuple) of
6399
+ (connection, read) timeouts.
6400
+ :type _request_timeout: int, tuple(int, int), optional
6401
+ :param _request_auth: set to override the auth_settings for an a single
6402
+ request; this effectively ignores the
6403
+ authentication in the spec for a single request.
6404
+ :type _request_auth: dict, optional
6405
+ :param _content_type: force content-type for the request.
6406
+ :type _content_type: str, Optional
6407
+ :param _headers: set to override the headers for a single
6408
+ request; this effectively ignores the headers
6409
+ in the spec for a single request.
6410
+ :type _headers: dict, optional
6411
+ :param _host_index: set to override the host_index for a single
6412
+ request; this effectively ignores the host_index
6413
+ in the spec for a single request.
6414
+ :type _host_index: int, optional
6415
+ :return: Returns the result object.
6416
+ """ # noqa: E501
6417
+
6418
+ _param = self._api_v1_persona_supplemental_prompt_prompt_id_status_put_serialize(
6419
+ prompt_id=prompt_id,
6420
+ request=request,
6421
+ _request_auth=_request_auth,
6422
+ _content_type=_content_type,
6423
+ _headers=_headers,
6424
+ _host_index=_host_index
6425
+ )
6426
+
6427
+ _response_types_map: Dict[str, Optional[str]] = {
6428
+ '200': "PersonasSupplementalPromptResponse",
6429
+ '400': "PersonasSupplementalPromptResponse",
6430
+ '503': "PersonasSupplementalPromptResponse",
6431
+ }
6432
+ response_data = self.api_client.call_api(
6433
+ *_param,
6434
+ _request_timeout=_request_timeout
6435
+ )
6436
+ response_data.read()
6437
+ return self.api_client.response_deserialize(
6438
+ response_data=response_data,
6439
+ response_types_map=_response_types_map,
6440
+ ).data
6441
+
6442
+
6443
+ @validate_call
6444
+ def api_v1_persona_supplemental_prompt_prompt_id_status_put_with_http_info(
6445
+ self,
6446
+ prompt_id: Annotated[StrictStr, Field(description="Supplemental Prompt Id")],
6447
+ request: Annotated[PersonasSupplementalPromptStatusUpdateRequest, Field(description="Body")],
6448
+ _request_timeout: Union[
6449
+ None,
6450
+ Annotated[StrictFloat, Field(gt=0)],
6451
+ Tuple[
6452
+ Annotated[StrictFloat, Field(gt=0)],
6453
+ Annotated[StrictFloat, Field(gt=0)]
6454
+ ]
6455
+ ] = None,
6456
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
6457
+ _content_type: Optional[StrictStr] = None,
6458
+ _headers: Optional[Dict[StrictStr, Any]] = None,
6459
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6460
+ ) -> ApiResponse[PersonasSupplementalPromptResponse]:
6461
+ """Update Persona Supplemental Prompt Status
6462
+
6463
+ Update processing_state for a supplemental prompt.
6464
+
6465
+ :param prompt_id: Supplemental Prompt Id (required)
6466
+ :type prompt_id: str
6467
+ :param request: Body (required)
6468
+ :type request: PersonasSupplementalPromptStatusUpdateRequest
6469
+ :param _request_timeout: timeout setting for this request. If one
6470
+ number provided, it will be total request
6471
+ timeout. It can also be a pair (tuple) of
6472
+ (connection, read) timeouts.
6473
+ :type _request_timeout: int, tuple(int, int), optional
6474
+ :param _request_auth: set to override the auth_settings for an a single
6475
+ request; this effectively ignores the
6476
+ authentication in the spec for a single request.
6477
+ :type _request_auth: dict, optional
6478
+ :param _content_type: force content-type for the request.
6479
+ :type _content_type: str, Optional
6480
+ :param _headers: set to override the headers for a single
6481
+ request; this effectively ignores the headers
6482
+ in the spec for a single request.
6483
+ :type _headers: dict, optional
6484
+ :param _host_index: set to override the host_index for a single
6485
+ request; this effectively ignores the host_index
6486
+ in the spec for a single request.
6487
+ :type _host_index: int, optional
6488
+ :return: Returns the result object.
6489
+ """ # noqa: E501
6490
+
6491
+ _param = self._api_v1_persona_supplemental_prompt_prompt_id_status_put_serialize(
6492
+ prompt_id=prompt_id,
6493
+ request=request,
6494
+ _request_auth=_request_auth,
6495
+ _content_type=_content_type,
6496
+ _headers=_headers,
6497
+ _host_index=_host_index
6498
+ )
6499
+
6500
+ _response_types_map: Dict[str, Optional[str]] = {
6501
+ '200': "PersonasSupplementalPromptResponse",
6502
+ '400': "PersonasSupplementalPromptResponse",
6503
+ '503': "PersonasSupplementalPromptResponse",
6504
+ }
6505
+ response_data = self.api_client.call_api(
6506
+ *_param,
6507
+ _request_timeout=_request_timeout
6508
+ )
6509
+ response_data.read()
6510
+ return self.api_client.response_deserialize(
6511
+ response_data=response_data,
6512
+ response_types_map=_response_types_map,
6513
+ )
6514
+
6515
+
6516
+ @validate_call
6517
+ def api_v1_persona_supplemental_prompt_prompt_id_status_put_without_preload_content(
6518
+ self,
6519
+ prompt_id: Annotated[StrictStr, Field(description="Supplemental Prompt Id")],
6520
+ request: Annotated[PersonasSupplementalPromptStatusUpdateRequest, Field(description="Body")],
6521
+ _request_timeout: Union[
6522
+ None,
6523
+ Annotated[StrictFloat, Field(gt=0)],
6524
+ Tuple[
6525
+ Annotated[StrictFloat, Field(gt=0)],
6526
+ Annotated[StrictFloat, Field(gt=0)]
6527
+ ]
6528
+ ] = None,
6529
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
6530
+ _content_type: Optional[StrictStr] = None,
6531
+ _headers: Optional[Dict[StrictStr, Any]] = None,
6532
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
6533
+ ) -> RESTResponseType:
6534
+ """Update Persona Supplemental Prompt Status
6535
+
6536
+ Update processing_state for a supplemental prompt.
6537
+
6538
+ :param prompt_id: Supplemental Prompt Id (required)
6539
+ :type prompt_id: str
6540
+ :param request: Body (required)
6541
+ :type request: PersonasSupplementalPromptStatusUpdateRequest
6542
+ :param _request_timeout: timeout setting for this request. If one
6543
+ number provided, it will be total request
6544
+ timeout. It can also be a pair (tuple) of
6545
+ (connection, read) timeouts.
6546
+ :type _request_timeout: int, tuple(int, int), optional
6547
+ :param _request_auth: set to override the auth_settings for an a single
6548
+ request; this effectively ignores the
6549
+ authentication in the spec for a single request.
6550
+ :type _request_auth: dict, optional
6551
+ :param _content_type: force content-type for the request.
6552
+ :type _content_type: str, Optional
6553
+ :param _headers: set to override the headers for a single
6554
+ request; this effectively ignores the headers
6555
+ in the spec for a single request.
6556
+ :type _headers: dict, optional
6557
+ :param _host_index: set to override the host_index for a single
6558
+ request; this effectively ignores the host_index
6559
+ in the spec for a single request.
6560
+ :type _host_index: int, optional
6561
+ :return: Returns the result object.
6562
+ """ # noqa: E501
6563
+
6564
+ _param = self._api_v1_persona_supplemental_prompt_prompt_id_status_put_serialize(
6565
+ prompt_id=prompt_id,
6566
+ request=request,
6567
+ _request_auth=_request_auth,
6568
+ _content_type=_content_type,
6569
+ _headers=_headers,
6570
+ _host_index=_host_index
6571
+ )
6572
+
6573
+ _response_types_map: Dict[str, Optional[str]] = {
6574
+ '200': "PersonasSupplementalPromptResponse",
6575
+ '400': "PersonasSupplementalPromptResponse",
6576
+ '503': "PersonasSupplementalPromptResponse",
6577
+ }
6578
+ response_data = self.api_client.call_api(
6579
+ *_param,
6580
+ _request_timeout=_request_timeout
6581
+ )
6582
+ return response_data.response
6583
+
6584
+
6585
+ def _api_v1_persona_supplemental_prompt_prompt_id_status_put_serialize(
6586
+ self,
6587
+ prompt_id,
6588
+ request,
6589
+ _request_auth,
6590
+ _content_type,
6591
+ _headers,
6592
+ _host_index,
6593
+ ) -> RequestSerialized:
6594
+
6595
+ _host = None
6596
+
6597
+ _collection_formats: Dict[str, str] = {
6598
+ }
6599
+
6600
+ _path_params: Dict[str, str] = {}
6601
+ _query_params: List[Tuple[str, str]] = []
6602
+ _header_params: Dict[str, Optional[str]] = _headers or {}
6603
+ _form_params: List[Tuple[str, str]] = []
6604
+ _files: Dict[
6605
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
6606
+ ] = {}
6607
+ _body_params: Optional[bytes] = None
6608
+
6609
+ # process the path parameters
6610
+ if prompt_id is not None:
6611
+ _path_params['prompt_id'] = prompt_id
6612
+ # process the query parameters
6613
+ # process the header parameters
6614
+ # process the form parameters
6615
+ # process the body parameter
6616
+ if request is not None:
6617
+ _body_params = request
6618
+
6619
+
6620
+ # set the HTTP header `Accept`
6621
+ if 'Accept' not in _header_params:
6622
+ _header_params['Accept'] = self.api_client.select_header_accept(
6623
+ [
6624
+ 'application/json'
6625
+ ]
6626
+ )
6627
+
6628
+
6629
+ # authentication setting
6630
+ _auth_settings: List[str] = [
6631
+ 'TokenAuth'
6632
+ ]
6633
+
6634
+ return self.api_client.param_serialize(
6635
+ method='PUT',
6636
+ resource_path='/api/v1/persona/supplemental-prompt/{prompt_id}/status',
6637
+ path_params=_path_params,
6638
+ query_params=_query_params,
6639
+ header_params=_header_params,
6640
+ body=_body_params,
6641
+ post_params=_form_params,
6642
+ files=_files,
6643
+ auth_settings=_auth_settings,
6644
+ collection_formats=_collection_formats,
6645
+ _host=_host,
6646
+ _request_auth=_request_auth
6647
+ )
6648
+
6649
+
@@ -250,6 +250,7 @@ from neurograph.v1.models.personas_supplemental_prompt_create_request import Per
250
250
  from neurograph.v1.models.personas_supplemental_prompt_delete_response import PersonasSupplementalPromptDeleteResponse
251
251
  from neurograph.v1.models.personas_supplemental_prompt_get_many_response import PersonasSupplementalPromptGetManyResponse
252
252
  from neurograph.v1.models.personas_supplemental_prompt_response import PersonasSupplementalPromptResponse
253
+ from neurograph.v1.models.personas_supplemental_prompt_status_update_request import PersonasSupplementalPromptStatusUpdateRequest
253
254
  from neurograph.v1.models.personas_update_demographics_request import PersonasUpdateDemographicsRequest
254
255
  from neurograph.v1.models.personas_update_demographics_response import PersonasUpdateDemographicsResponse
255
256
  from neurograph.v1.models.pgtype_bool import PgtypeBool
@@ -0,0 +1,87 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Neurograph Core
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 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
+ from pydantic import BaseModel, ConfigDict, StrictStr
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from typing import Optional, Set
23
+ from typing_extensions import Self
24
+
25
+ class PersonasSupplementalPromptStatusUpdateRequest(BaseModel):
26
+ """
27
+ PersonasSupplementalPromptStatusUpdateRequest
28
+ """ # noqa: E501
29
+ processing_state: Optional[StrictStr] = None
30
+ __properties: ClassVar[List[str]] = ["processing_state"]
31
+
32
+ model_config = ConfigDict(
33
+ populate_by_name=True,
34
+ validate_assignment=True,
35
+ protected_namespaces=(),
36
+ )
37
+
38
+
39
+ def to_str(self) -> str:
40
+ """Returns the string representation of the model using alias"""
41
+ return pprint.pformat(self.model_dump(by_alias=True))
42
+
43
+ def to_json(self) -> str:
44
+ """Returns the JSON representation of the model using alias"""
45
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
46
+ return json.dumps(self.to_dict())
47
+
48
+ @classmethod
49
+ def from_json(cls, json_str: str) -> Optional[Self]:
50
+ """Create an instance of PersonasSupplementalPromptStatusUpdateRequest from a JSON string"""
51
+ return cls.from_dict(json.loads(json_str))
52
+
53
+ def to_dict(self) -> Dict[str, Any]:
54
+ """Return the dictionary representation of the model using alias.
55
+
56
+ This has the following differences from calling pydantic's
57
+ `self.model_dump(by_alias=True)`:
58
+
59
+ * `None` is only added to the output dict for nullable fields that
60
+ were set at model initialization. Other fields with value `None`
61
+ are ignored.
62
+ """
63
+ excluded_fields: Set[str] = set([
64
+ ])
65
+
66
+ _dict = self.model_dump(
67
+ by_alias=True,
68
+ exclude=excluded_fields,
69
+ exclude_none=True,
70
+ )
71
+ return _dict
72
+
73
+ @classmethod
74
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
75
+ """Create an instance of PersonasSupplementalPromptStatusUpdateRequest from a dict"""
76
+ if obj is None:
77
+ return None
78
+
79
+ if not isinstance(obj, dict):
80
+ return cls.model_validate(obj)
81
+
82
+ _obj = cls.model_validate({
83
+ "processing_state": obj.get("processing_state")
84
+ })
85
+ return _obj
86
+
87
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: neurograph-core
3
- Version: 1.202601291738
3
+ Version: 1.202601291819
4
4
  Summary: Neurograph Core
5
5
  Home-page:
6
6
  Author: Neurograph Development Team
@@ -1,5 +1,5 @@
1
1
  neurograph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- neurograph/v1/__init__.py,sha256=wlINlvFKufXkF4pDqXTxtq-thcaxCc3btonH_QDrG84,62526
2
+ neurograph/v1/__init__.py,sha256=Jd_vv-E6jO-h0sxvpFVhkJyFqnEjzDBN5IpFL44Os44,62758
3
3
  neurograph/v1/api_client.py,sha256=Hofqcl3INiVInkW3F_UTSBbk4UkjIaP7fkt1S36AuKc,27789
4
4
  neurograph/v1/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
5
5
  neurograph/v1/configuration.py,sha256=x-DflCQNWAbZAJSoqLEMetFn13UM70fegKyqklEaAis,19460
@@ -17,14 +17,14 @@ neurograph/v1/api/knowledge_extract_api.py,sha256=ggHBzFsfXEqaWJgX21jnDNnE4NRwiJ
17
17
  neurograph/v1/api/lookup_api.py,sha256=Agoj04UIGDyMKWqb13FMViHyZMuUTZDZ9Cp9JqCdlyY,70273
18
18
  neurograph/v1/api/organization_api.py,sha256=rmr9X3agXNKdr_DJlKuSzf72tZ20qCyDyjlt4mntugo,326616
19
19
  neurograph/v1/api/organization_metadata_api.py,sha256=PtwuBFSY0FjCAB7fuR710CRkQbtR-xpruX9780hGQxk,34860
20
- neurograph/v1/api/persona_api.py,sha256=vLlnDP9rUvdThi9x8tpoHV-gvFzpDBuF3dbeHLV0_is,257214
20
+ neurograph/v1/api/persona_api.py,sha256=ukgVhzeY_8eF11DTo5JUJW66jHof_AhrlMHATipjuPc,269036
21
21
  neurograph/v1/api/pixel_api.py,sha256=1tmF0IWix3KbgAhDFkOgpZOv0X8P2H4xknjQfHrSXTQ,22853
22
22
  neurograph/v1/api/reporting_api.py,sha256=YyxE-OTsQVZY0T0mJLW7ZeJkfLlP6kRDIpcrXYAzzlU,169520
23
23
  neurograph/v1/api/reports_api.py,sha256=wc3eq8ydpIHlh61TtP5miiGE45bV5RYQAoqm27K0dIo,207082
24
24
  neurograph/v1/api/signal_api.py,sha256=TDpLWN6thcxgz5jDVG3vyhx3dFkl7lKTihhW63qfLKs,22729
25
25
  neurograph/v1/api/user_api.py,sha256=0Y4xYK1n7WxkfAY8X6umW0y21mFkeKEaEWcLO9ub20o,10366
26
26
  neurograph/v1/api/workbench_api.py,sha256=BMhqbbd_PSZ27br7idOgyZFdxMQ0N7O4fFQq8n_6JVs,34221
27
- neurograph/v1/models/__init__.py,sha256=bBOQYEB1iSpfJTNKtAuAFKn_LQES-pk0Zp7Aj2D5-48,35214
27
+ neurograph/v1/models/__init__.py,sha256=DuNDeypTvESFMTDplXqiE3c1lgkbndFF4_bJuqNeL9Q,35344
28
28
  neurograph/v1/models/admin_permission_response.py,sha256=RPM3v7iutgJKHnZbVo5ALwqMO8UDc6K0DzHdEoRgubo,2936
29
29
  neurograph/v1/models/admin_reset_password_request.py,sha256=Ta56g3BpdgCXx9OPAipWLK68JOC98OzXPG5BhTRw0TI,2846
30
30
  neurograph/v1/models/admin_reset_password_response.py,sha256=O6jGhIYC6MX7EKNZHUnw-muPE-_K3ewIL6IyePocFys,2859
@@ -262,6 +262,7 @@ neurograph/v1/models/personas_supplemental_prompt_create_request.py,sha256=lVwqp
262
262
  neurograph/v1/models/personas_supplemental_prompt_delete_response.py,sha256=DFfdTxOdhq-0EzTK4gtuT_BKGLEcCmdTiGzw-iDAwf0,2952
263
263
  neurograph/v1/models/personas_supplemental_prompt_get_many_response.py,sha256=I6YshrvxQ4o2UvRZ3FvSdWXX4DnJYlv706uCmVg9DtU,3248
264
264
  neurograph/v1/models/personas_supplemental_prompt_response.py,sha256=QRWwbAq2nHi8_OVGxk5pWSdRC7RK9CPCs0ql77xpQCQ,3374
265
+ neurograph/v1/models/personas_supplemental_prompt_status_update_request.py,sha256=ShGXcv_jNQUYBofbTrMQq0r4xQlIHLh-7YYOoE8zCGU,2677
265
266
  neurograph/v1/models/personas_update_demographics_request.py,sha256=_Of3WbiNdAKnUpQdXKNhr0wZyn80XrB-lqQfy9GSplo,3056
266
267
  neurograph/v1/models/personas_update_demographics_response.py,sha256=8rlyym8HlGprJIhzfPWxZSlYZlj6ba98aXlQtEihttg,3220
267
268
  neurograph/v1/models/pgtype_bool.py,sha256=59BuMUPusQWmwzE0CKHOY9gVPqexlMGEy4y0d9vf-Lk,2578
@@ -415,7 +416,7 @@ neurograph/v1/models/workbench_workbench_version.py,sha256=AsgikzRU6BRj99gRFGGTl
415
416
  neurograph/v1/models/workbench_workbench_version_many_response.py,sha256=xuOxnMscyIo8DhsR-yyir1rruExSgNWMu3yMWzgWbc0,3195
416
417
  neurograph/v1/models/workbench_workbench_version_response.py,sha256=nMupKXBsoi4eXD-fsp_5PHrMislATwoBpVIZU7mG9RM,3283
417
418
  neurograph/v1/models/workbench_workbench_version_upsert_request.py,sha256=bAxjBeFe8EG3bXPUrLjfntlC65lK5p_ddPs_0yX3A9g,2994
418
- neurograph_core-1.202601291738.dist-info/METADATA,sha256=Y7IavGj84KuT-b5FNurX_Vmpb7VjkwR7OP3_ceTx6d8,1902
419
- neurograph_core-1.202601291738.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
420
- neurograph_core-1.202601291738.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
421
- neurograph_core-1.202601291738.dist-info/RECORD,,
419
+ neurograph_core-1.202601291819.dist-info/METADATA,sha256=YJ-E8_bjBNSHYsgxLNIuC2kBtPt4Qs2W8Be_25AXtc0,1902
420
+ neurograph_core-1.202601291819.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
421
+ neurograph_core-1.202601291819.dist-info/top_level.txt,sha256=iajcSUfGanaBq4McklJQ4IXVuwV24WJhY7FRzlQybxI,11
422
+ neurograph_core-1.202601291819.dist-info/RECORD,,