graphscope-flex 0.27.0__4-py2.py3-none-any.whl → 0.28.0__4-py2.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.
@@ -33,7 +33,7 @@ class CreateEdgeType(BaseModel):
33
33
  vertex_type_pair_relations: List[BaseEdgeTypeVertexTypePairRelationsInner]
34
34
  directed: Optional[StrictBool] = None
35
35
  primary_keys: Optional[List[StrictStr]] = None
36
- properties: List[CreatePropertyMeta]
36
+ properties: Optional[List[CreatePropertyMeta]] = None
37
37
  description: Optional[StrictStr] = None
38
38
  __properties: ClassVar[List[str]] = ["type_name", "vertex_type_pair_relations", "directed", "primary_keys", "properties", "description"]
39
39
 
@@ -31,8 +31,8 @@ class EdgeMapping(BaseModel):
31
31
  """ # noqa: E501
32
32
  type_triplet: EdgeMappingTypeTriplet
33
33
  inputs: List[StrictStr]
34
- source_vertex_mappings: List[ColumnMapping]
35
- destination_vertex_mappings: List[ColumnMapping]
34
+ source_vertex_mappings: Optional[List[ColumnMapping]] = None
35
+ destination_vertex_mappings: Optional[List[ColumnMapping]] = None
36
36
  column_mappings: Optional[List[ColumnMapping]] = None
37
37
  __properties: ClassVar[List[str]] = ["type_triplet", "inputs", "source_vertex_mappings", "destination_vertex_mappings", "column_mappings"]
38
38
 
@@ -28,7 +28,8 @@ class UploadFileResponse(BaseModel):
28
28
  UploadFileResponse
29
29
  """ # noqa: E501
30
30
  file_path: StrictStr
31
- __properties: ClassVar[List[str]] = ["file_path"]
31
+ metadata: Dict[str, Any]
32
+ __properties: ClassVar[List[str]] = ["file_path", "metadata"]
32
33
 
33
34
  model_config = {
34
35
  "populate_by_name": True,
@@ -81,7 +82,8 @@ class UploadFileResponse(BaseModel):
81
82
  return cls.model_validate(obj)
82
83
 
83
84
  _obj = cls.model_validate({
84
- "file_path": obj.get("file_path")
85
+ "file_path": obj.get("file_path"),
86
+ "metadata": obj.get("metadata")
85
87
  })
86
88
  return _obj
87
89
 
@@ -19,7 +19,7 @@ import re # noqa: F401
19
19
  import json
20
20
 
21
21
  from pydantic import BaseModel, StrictStr
22
- from typing import Any, ClassVar, Dict, List
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
23
  from graphscope.flex.rest.models.column_mapping import ColumnMapping
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
@@ -30,7 +30,7 @@ class VertexMapping(BaseModel):
30
30
  """ # noqa: E501
31
31
  type_name: StrictStr
32
32
  inputs: List[StrictStr]
33
- column_mappings: List[ColumnMapping]
33
+ column_mappings: Optional[List[ColumnMapping]] = None
34
34
  __properties: ClassVar[List[str]] = ["type_name", "inputs", "column_mappings"]
35
35
 
36
36
  model_config = {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: graphscope-flex
3
- Version: 0.27.0
3
+ Version: 0.28.0
4
4
  Summary: GraphScope FLEX HTTP SERVICE API
5
5
  Home-page:
6
6
  Author: GraphScope
@@ -26,7 +26,7 @@ graphscope/flex/rest/models/column_mapping_column.py,sha256=rHHHfXR8jCC9WFyqWw18
26
26
  graphscope/flex/rest/models/create_alert_receiver_request.py,sha256=gxN8qgwDSXtbVj6RtfJnGr_NUJcvCMlm2X00AxHBA70,3480
27
27
  graphscope/flex/rest/models/create_alert_rule_request.py,sha256=u63mmcikxEAWVSQ4cbBfioygRCab54_dP2h7jas6zik,3931
28
28
  graphscope/flex/rest/models/create_dataloading_job_response.py,sha256=8pX22Si5X2Qq35KAwKdQeFET-KWrrsjI17uZV2HmoiE,2878
29
- graphscope/flex/rest/models/create_edge_type.py,sha256=MOhPoSOoHwmuWVprqxyRKf4U1iQnbTKscZ5pMvfI5EI,4612
29
+ graphscope/flex/rest/models/create_edge_type.py,sha256=afCCqKxZArAPvJ2Gm0cH0QIMtTop6N6fdwWUxb4TBVk,4629
30
30
  graphscope/flex/rest/models/create_graph_request.py,sha256=ubt6njE_O8CMurDVJKNdPOBKpuGgpZ3fX6PnIw6JJbc,4151
31
31
  graphscope/flex/rest/models/create_graph_response.py,sha256=7IbMjMEgbSNgKEOtVnasM_S7p9uZxHdTc4qtt4Ze-BE,2850
32
32
  graphscope/flex/rest/models/create_graph_schema_request.py,sha256=2FfrrPPHS0mXeprmh1Z3G9zfwJ-SIHYps-hU8Ljda_o,3962
@@ -39,7 +39,7 @@ graphscope/flex/rest/models/dataloading_job_config_edges_inner.py,sha256=WmRdrIh
39
39
  graphscope/flex/rest/models/dataloading_job_config_loading_config.py,sha256=lslDvNzN1Uvrm6BkL8UBKq-md8O-bd4uRC5VAI60R3U,3793
40
40
  graphscope/flex/rest/models/dataloading_job_config_loading_config_format.py,sha256=NhB7ofmHmKuUn8COn1LA91JYatfE-wE_wgISJ49V5kg,3044
41
41
  graphscope/flex/rest/models/dataloading_job_config_vertices_inner.py,sha256=ZovUnekKd7_u-0OZviWkxL5AK9mQ2g65z9Qzgz8f_VM,2937
42
- graphscope/flex/rest/models/edge_mapping.py,sha256=7fTI95CQiNrGTethZdIpE9SpaTC-hXL-pLZ31G80FI8,5196
42
+ graphscope/flex/rest/models/edge_mapping.py,sha256=nZVDcP2BXnxDQsDsij_OisWEHRWoHqK1GPGVczo2K-s,5230
43
43
  graphscope/flex/rest/models/edge_mapping_type_triplet.py,sha256=LXkyd4j0-IVizwKddFRH4Chm0oW62n3Me-XCrVnYi8Q,3095
44
44
  graphscope/flex/rest/models/error.py,sha256=O55OpEGtNUTJjZWWDwuAOa93LxMZ5I2fKkGtAz1-G0Q,2944
45
45
  graphscope/flex/rest/models/get_alert_message_response.py,sha256=JMB4AaDLQERlZFveZ5h5oeGZ_RwMpvOTWoAKdvgdmuM,4326
@@ -69,9 +69,9 @@ graphscope/flex/rest/models/string_type.py,sha256=3Fpp5PRUzYUXHissCa13vqok_lfs04
69
69
  graphscope/flex/rest/models/string_type_string.py,sha256=SjCziWETwRz9tTUWw0pWf6X0cGHs66m65qaLgXtNOt0,4829
70
70
  graphscope/flex/rest/models/update_alert_message_status_request.py,sha256=0mD2QWIXm7WllYHytsYNVY2cWRKlun_LfuVMqpIoMrg,3291
71
71
  graphscope/flex/rest/models/update_stored_proc_request.py,sha256=jI6p-Bo9f6xlOHtechZEns1FkG608fetoGybieOBmmw,2878
72
- graphscope/flex/rest/models/upload_file_response.py,sha256=v8ckbKP5PqwQ1jj-qfZ5bIN-2022T3BYfcX2CJIPq2k,2850
73
- graphscope/flex/rest/models/vertex_mapping.py,sha256=5jyb3rm7rjKMLjb3RTDPM9j7Rx5X3N1BERyaYKd7v58,3528
74
- graphscope_flex-0.27.0.dist-info/METADATA,sha256=tHPsjLhgeIQ-nj2YNm_Vn-W271DvvpdNGp1DoM2PKBU,855
75
- graphscope_flex-0.27.0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
76
- graphscope_flex-0.27.0.dist-info/top_level.txt,sha256=_6VvFKT8k3gGfOyNYDHGabL2O-Xzhfm87uy3kVRzWV0,11
77
- graphscope_flex-0.27.0.dist-info/RECORD,,
72
+ graphscope/flex/rest/models/upload_file_response.py,sha256=gopVaKnZxGb1A-M7NpB2Ey3T1x7ljGT5Oj0V8wympu4,2936
73
+ graphscope/flex/rest/models/vertex_mapping.py,sha256=ATeObRFvsFyLT_5B3Hp5G4SN2fybTOkDVblLDAcT8KA,3555
74
+ graphscope_flex-0.28.0.dist-info/METADATA,sha256=JCBHZzC9LEQT-55Q8gT9t_TQinS10A-7jQqtM8ZFOJo,855
75
+ graphscope_flex-0.28.0.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
76
+ graphscope_flex-0.28.0.dist-info/top_level.txt,sha256=_6VvFKT8k3gGfOyNYDHGabL2O-Xzhfm87uy3kVRzWV0,11
77
+ graphscope_flex-0.28.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.36.2)
2
+ Generator: bdist_wheel (0.37.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any